756354952c
fix(android): prevent rehydration on destroyed dialogs ( #10414 )
2023-10-23 17:48:57 -07:00
e8c093d7a2
feat(android): allow shared element transitions to work with ListView/CollectionView/Pager ( #10411 )
2023-10-23 17:47:23 -07:00
22c21b7e06
fix(core): page frame reference not unset on native view disposal ( #10417 )
2023-10-22 19:50:48 -07:00
c78ea79f0f
fix(ios): shadow position after translate transform ( #10413 )
2023-10-16 15:41:59 -07:00
ee87b52ac3
fix(ios): add/remove shadow for reusable views ( #10409 )
2023-10-14 14:25:37 -07:00
c23695c477
fix(core): box-shadow 'none' handling ( #10405 )
2023-10-14 14:22:15 -07:00
212d086676
fix(ios): property mask on 'undefined' during view disposal ( #10404 )
2023-10-13 18:58:35 -07:00
d6478237ec
feat(css): text-stroke support ( #10399 )
...
closes https://github.com/NativeScript/NativeScript/issues/3597
closes https://github.com/NativeScript/NativeScript/issues/3972
2023-10-09 12:00:21 -07:00
0a2b2202f3
fix(testing): e2e flag no longer needed, testID is now applicable in dev or prod builds ( #10396 )
...
- you can now test on development or production with testID set
- for android, this changes testID to use resource id instead of content description
- you no longer need to pass `--env.e2e`. e2e is simply usable if testID is set
- the `testID` property will also set `accessibilityIdentifier` and `accessibilityIdentifier` property will set `testID` only if there is a `testID` already set
2023-10-04 08:49:26 -07:00
c1f52b989e
chore: 8.6.0 next
2023-09-28 18:26:39 -07:00
bbede5d795
feat(visionos): Vision Pro support ( #10392 )
2023-09-28 17:55:40 -07:00
6f599fef1c
perf(core): cache default view paddings on android ( #10390 )
2023-09-27 18:00:46 -07:00
f54ebbb2bf
fix(ios): Shadow layer origin point update ( #10376 )
2023-09-07 06:39:42 -07:00
39eed526c1
feat(ios): improved shadow handling with background UI rework ( #10374 )
...
BREAKING CHANGES:
`CSSShadow` was renamed into `ShadowCSSValues`
2023-09-06 08:17:29 -07:00
8d25d251cd
feat(css): support for text-overflow ( #10369 )
2023-08-27 15:32:09 -07:00
e4fe276bed
fix(core): Scroll listener register failure after unregister ( #10368 )
2023-08-25 15:23:17 -07:00
f5f4666e04
fix: class name typo ( #10364 )
2023-08-25 15:22:00 -07:00
d3a0f2c9a6
chore: TypeScript 5.1 with Nx 16.6 migrations ( #10338 )
2023-08-11 07:09:32 -07:00
9f715c0c5f
feat(shared-transition): pageOut option for more dynamic page animations ( #10350 )
2023-07-26 18:12:49 -07:00
2e732ae79f
fix(core): fix Page event overload resolution ( #10347 )
2023-07-23 19:48:13 -07:00
bd8e1b8e79
fix(application): explicitly pass rootView to initRootView ( #10345 )
...
fixes occasional crashes when resuming the app.
2023-07-18 17:47:50 +02:00
6effd554f2
fix(datepicker): max, min and date value binding handling ( #10343 )
2023-07-17 12:19:20 -07:00
685d61cf54
fix(animation): css keyframes
2023-06-19 13:55:40 -07:00
25cc49d4f4
fix(shared-transition): race condition with interactive updates ( #10312 )
2023-06-13 10:13:33 -07:00
622f3659d8
fix(animation): avoid uncaught reject on cancel ( #10309 )
2023-06-12 19:54:00 -07:00
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
963d0243de
fix(ios): prevent usage of viewControllers that are being dismissed ( #10291 )
2023-05-15 20:18:29 -07:00
874f6b6e65
fix(root-layout): check type for translate and scale values ( #10288 )
2023-05-10 19:14:52 -07:00
b7d02c9c86
perf: faster nativeView accessors ( #10279 )
...
`this.nativeViewProtected` is faster than `this.ios`
Co-authored-by: Nathan Walker <walkerrunpdx@gmail.com>
2023-05-01 14:56:13 -07:00
a14becdc6a
fix(ios): FormattedString and Span a11y font scale ( #10281 )
2023-05-01 12:29:36 -07:00
4551da075b
fix(ios): resilience to nativeView access under edge cases ( #10276 )
2023-04-24 13:45:31 -07:00
f4b2722bf4
feat(transitions): support zIndex on ios shared elements + support page props on android ( #10261 )
2023-04-17 08:54:09 -07:00
b3abc5f5ae
feat(text): valueFormatter for easy and flexible input auto-formatting ( #10264 )
...
https://github.com/NativeScript/NativeScript/issues/10249
2023-04-12 08:45:21 -07:00
f54966707d
fix(core): improve strong type src of Image ( #10265 )
2023-04-10 22:59:57 -07:00
2b64e179a5
fix(core): RootLayout view and shade cover should animate in parallel ( #10256 )
2023-04-06 11:30:52 -07:00
7aaa1d899d
feat(ios): new a11y properties for managing font scale ( #10260 )
2023-04-05 16:20:15 -07:00
59369fbc19
feat(core): Shared Element Transitions ( #10022 )
2023-03-28 20:04:29 +02:00
a11d577a14
revert: "perf: reduce amount of layout calls and debounce layouts when needed ( #10164 )"
...
This reverts commit 8b721c149689acb5eec4e033002b2869ded529cd.
2023-03-28 10:44:21 -07:00
8da1ca910a
revert: "chore: ios relayout condition cleanup ( #10241 )"
...
This reverts commit 7eaafa519e8fa3579a92fc3ca9f2310182e5eb34.
2023-03-28 10:43:31 -07:00
2f4c318276
fix: global declarations fix ( #10247 )
2023-03-23 10:55:38 -07:00
7edd21a688
fix(android): dialogs activity usage ( #10246 )
2023-03-22 18:20:01 -07:00
95f3772e77
fix(ios): support for a11y font scale ( #10207 )
2023-03-22 15:13:46 -07:00
ab436dbfe6
fix(core): CSS animation parsing ( #10245 )
2023-03-22 14:16:15 -07:00
e560cb1374
fix(core): improved handling for unsupported '!important' css rule ( #10243 )
2023-03-22 08:13:35 -07:00
7eaafa519e
chore: ios relayout condition cleanup ( #10241 )
2023-03-17 12:10:13 -07:00
8b721c1496
perf: reduce amount of layout calls and debounce layouts when needed ( #10164 )
2023-03-17 10:07:22 -07:00
9ed3c9b256
fix(ios): guard against no nativeView in createBackgroundUIColor ( #10229 )
2023-03-17 08:27:30 -07:00
a23c8bda31
fix(android): Label now defaults to vertical-align middle ( #10233 )
...
closes https://github.com/NativeScript/NativeScript/issues/3829
https://github.com/NativeScript/NativeScript/issues/5977
https://github.com/NativeScript/NativeScript/pull/8216
2023-03-13 09:32:29 -07:00
a19568c0d0
fix(core): RootLayout shade cover asynchronous execution ( #10228 )
2023-03-09 20:57:15 -08:00
4e62b00ddb
fix(core): Frame to Page property propagation ( #10225 )
2023-03-02 08:39:32 -08:00