Commit Graph

64 Commits

Author SHA1 Message Date
Nathan Walker
5aeaac787a Merge remote-tracking branch 'origin/main' into refactor/circular-deps 2025-07-24 22:49:06 -07:00
Nathan Walker
17ac48f36b chore: cleanup 2025-07-23 11:54:26 -07:00
Dimitris-Rafail Katsampas
f820dc144d revert: "fix(ios): corrected rotate animation (#10676)" (#10765) 2025-07-20 15:44:41 -07:00
Dimitris-Rafail Katsampas
46d9827960 chore(ios): removed forced background update during safe area inset calculation (#10767) 2025-07-20 12:33:53 -07:00
Nathan Walker
2fb70c1f10 chore: cleanup android refs 2025-07-15 12:01:45 -07:00
Nathan Walker
a6279e218f Merge remote-tracking branch 'origin/main' into refactor/circular-deps-next 2025-07-11 16:37:12 -07:00
Dimitris-Rafail Katsampas
bca3452722 feat(ios): improved handling for navigation events (#10757) 2025-07-11 16:13:20 -07:00
Nathan Walker
e7ab426ee2 refactor: circular deps part 14 2025-07-10 15:47:29 -07:00
Nathan Walker
cb9dddeb96 fix: e2e test that should have never passed in first place 2025-07-09 22:31:29 -07:00
Nathan Walker
579a25d583 refactor: circular deps part 13 2025-07-09 20:07:56 -07:00
Nathan Walker
1db6259763 refactor: circular deps part 10 2025-07-09 09:19:40 -07:00
Nathan Walker
47c72081dd refactor: circular deps part 2 2025-07-07 19:12:02 -07:00
Nathan Walker
a11ccd8753 chore: workflow permissions 2025-06-26 11:37:23 -07:00
Nathan Walker
cfc27ebb90 feat(css): color-mix (#10719) 2025-03-16 15:48:40 -07:00
Dimitris-Rafail Katsampas
2d71ada46d feat(core): CSS wide keywords (#10709) 2025-02-25 19:15:47 -08:00
Dimitris-Rafail Katsampas
e545f5869c fix(ios): corrected rotate animation (#10676)
[skip ci]
2025-01-25 11:38:07 -08:00
Dimitris-Rafail Katsampas
accf841f13 test: disabled safe area check for background change test (#10665) 2025-01-13 09:33:23 -08:00
Dimitris-Rafail Katsampas
f970455007 feat(core): support for simultaneous pseudo states (#10656) 2025-01-12 19:18:08 -08:00
Nathan Walker
a2aa2613c6 feat(types-ios): 18.x sdk types (#10629) 2024-11-01 23:06:37 -07:00
Dimitris-Rafail Katsampas
9fd361c2e6 feat(core): css media query support (#10530) 2024-07-01 09:28:59 -07:00
farfromrefuge
6dd441d6ba perf(android): gridlayout with less JNI calls (#10402) 2024-07-01 09:20:14 -07:00
Dimitris-Rafail Katsampas
4abcb216da feat(android): background color/image handling improvements (#10451) 2024-06-28 15:07:10 -07:00
Dimitris-Rafail Katsampas
2fb4f23670 feat(core): css-what parser for CSS selectors + support for :not(), :is(), and :where() Level 4 and ~ (#10514) 2024-06-28 13:57:29 -07:00
Jamie Birch
3b77fffad5 fix(core): stop accepting GestureTypes enum as an eventName (#10537) 2024-05-06 11:04:53 -07:00
Nathan Walker
01d537bf15 feat(visionos): ui-mobile-base supporting xros plus improvements to window handling (#10478) 2024-04-05 17:07:16 -07:00
kefahB
3a0afdb9cc feat(SegmentedBar): selectedTextColor added and selectedBackgroundColor improvements (#10474) 2024-01-19 10:39:59 -08:00
Nathan Walker
4762699fa1 fix(time-picker): properly handle 0 on hour and minutes with valueChanged (#10460)
closes https://github.com/NativeScript/NativeScript/issues/10457
2023-12-17 15:17:32 -08:00
Nathan Walker
7c2938d2ac chore: TypeScript 5.2 with Nx 16.8.1 (#10380) 2023-09-09 08:55:39 -07:00
Nathan Walker
d3a0f2c9a6 chore: TypeScript 5.1 with Nx 16.6 migrations (#10338) 2023-08-11 07:09:32 -07:00
Igor Randjelovic
f64355ba7a refactor: improved core barrel exports and Application class (#10286)
BREAKING CHANGES:

`Application.orientation` is no longer a function.

Migration: Remove `()` from the `Application.orientation()` call:
```diff
import { Application } from "@nativescript/core";

-console.log(Application.orientation());
+console.log(Application.orientation);
```


`Application.systemAppearance` is no longer a function.

Migration: Remove `()` from the `Application.systemAppearance()` call:
```diff
import { Application } from "@nativescript/core";

-console.log(Application.systemAppearance());
+console.log(Application.systemAppearance);
```
2023-05-25 07:45:39 -07:00
Dimitris-Rafail Katsampas
a14becdc6a fix(ios): FormattedString and Span a11y font scale (#10281) 2023-05-01 12:29:36 -07:00
Dimitris-Rafail Katsampas
7aaa1d899d feat(ios): new a11y properties for managing font scale (#10260) 2023-04-05 16:20:15 -07:00
Dimitris-Rafail Katsampas
671603ab4b test: a11y scale (#10251) 2023-03-27 15:12:38 -07:00
Dimitris-Rafail Katsampas
95f3772e77 fix(ios): support for a11y font scale (#10207) 2023-03-22 15:13:46 -07:00
Igor Randjelovic
ab436dbfe6 fix(core): CSS animation parsing (#10245) 2023-03-22 14:16:15 -07:00
Eduardo Speroni
5f96ffe7d9 test: fix safe area tests on iOS (#10240) 2023-03-22 08:14:21 -07:00
Tim Gates
191f83b8dc docs: typos (#10145)
There were small typos in:
- apps/automated/src/ui/web-view/web-view.md
- tools/notes/DevelopmentWorkflow.md

Fixes:
- Should read `describe` rather than `decribe`.
- Should read `control` rather than `controll`.

Signed-off-by: Tim Gates <tim.gates@iress.com>
2023-01-03 18:40:39 -08:00
Nathan Walker
046f9314a8 chore: cleanup utils packaging 2022-11-23 22:42:43 -08:00
Nathan Walker
5a86a60b61 test: additional coverage for backgroundColor and borderColor 2022-11-23 21:24:14 -08:00
Nathan Walker
7f069a7093 feat: TypeScript 4.8+ support and NativeClass decorator improvements (#10081) 2022-11-08 15:18:10 -08:00
Nathan Walker
f9b52b9aac chore: tests 2022-07-28 20:45:31 -07:00
Nathan Walker
4f56d8650b chore: e2e automated tests 2022-07-22 11:31:10 -07:00
Dimitris - Rafail Katsampas
f548fdc735 fix(ios): proper disposal and recreation of iOS native views (#9879) 2022-07-09 09:02:45 -07:00
Igor Randjelovic
a8f2c4d14b chore: cleanup automated app tests (#9779) 2022-03-01 12:32:39 -08:00
Dimitris - Rafail Katsampas
608bb1ed24 fix(core): animation iteration correct for android css animations and iOS rotation (#9628)
closes #7712

Co-authored-by: Nathan Walker <walkerrunpdx@gmail.com>
2022-03-01 12:32:39 -08:00
Ruslan Lekhman
388d7eaa7d feat(core): support RGB alpha notation (#9699)
Functional notation: rgb[a](R G B[ / A])
CSS Colors Level 4 adds support for space-separated values in the functional notation.
See https://www.w3.org/TR/css-color-4/#rgb-functions

Co-authored-by: Nathan Walker <walkerrunpdx@gmail.com>
2022-03-01 12:32:39 -08:00
Dimitris - Rafail Katsampas
90ceed15d3 feat: new expression parser for xml bindings (#9729) 2022-03-01 12:32:39 -08:00
Igor Randjelovic
a88cacab89 chore(migrate): apps/* to webpack5 (#9606) 2021-12-21 09:47:33 -08:00
Sergey Mell
2a4563716a fix(styling): change transform parameters parsing (#9481)
Fixed the incorrectly applied short form of "transform: translate" style property.

closes #5202
2021-09-08 16:07:39 -07:00
Nathan Walker
0ae39097bd chore: fix tests for ios 2021-09-08 16:07:39 -07:00