Mustafa Ateş Uzun
f5f4666e04
fix: class name typo ( #10364 )
2023-08-25 15:22:00 -07:00
Nathan Walker
d3a0f2c9a6
chore: TypeScript 5.1 with Nx 16.6 migrations ( #10338 )
2023-08-11 07:09:32 -07:00
Nathan Walker
9f715c0c5f
feat(shared-transition): pageOut option for more dynamic page animations ( #10350 )
2023-07-26 18:12:49 -07:00
Jason Cassidy
2e732ae79f
fix(core): fix Page event overload resolution ( #10347 )
2023-07-23 19:48:13 -07:00
Jason Cassidy
bd8e1b8e79
fix(application): explicitly pass rootView to initRootView ( #10345 )
...
fixes occasional crashes when resuming the app.
2023-07-18 17:47:50 +02:00
Nathan Walker
6effd554f2
fix(datepicker): max, min and date value binding handling ( #10343 )
2023-07-17 12:19:20 -07:00
Nathan Walker
685d61cf54
fix(animation): css keyframes
2023-06-19 13:55:40 -07:00
Nathan Walker
25cc49d4f4
fix(shared-transition): race condition with interactive updates ( #10312 )
2023-06-13 10:13:33 -07:00
Nathan Walker
622f3659d8
fix(animation): avoid uncaught reject on cancel ( #10309 )
2023-06-12 19:54:00 -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
Samuel Schultze
963d0243de
fix(ios): prevent usage of viewControllers that are being dismissed ( #10291 )
2023-05-15 20:18:29 -07:00
Shiva Prasad
874f6b6e65
fix(root-layout): check type for translate and scale values ( #10288 )
2023-05-10 19:14:52 -07:00
farfromrefuge
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
Dimitris-Rafail Katsampas
a14becdc6a
fix(ios): FormattedString and Span a11y font scale ( #10281 )
2023-05-01 12:29:36 -07:00
Nathan Walker
4551da075b
fix(ios): resilience to nativeView access under edge cases ( #10276 )
2023-04-24 13:45:31 -07:00
Nathan Walker
f4b2722bf4
feat(transitions): support zIndex on ios shared elements + support page props on android ( #10261 )
2023-04-17 08:54:09 -07:00
Nathan Walker
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
Juan de Dios Martínez Vallejo
f54966707d
fix(core): improve strong type src of Image ( #10265 )
2023-04-10 22:59:57 -07:00
Dimitris-Rafail Katsampas
2b64e179a5
fix(core): RootLayout view and shade cover should animate in parallel ( #10256 )
2023-04-06 11:30:52 -07:00
Dimitris-Rafail Katsampas
7aaa1d899d
feat(ios): new a11y properties for managing font scale ( #10260 )
2023-04-05 16:20:15 -07:00
Nathan Walker
59369fbc19
feat(core): Shared Element Transitions ( #10022 )
2023-03-28 20:04:29 +02:00
Nathan Walker
a11d577a14
revert: "perf: reduce amount of layout calls and debounce layouts when needed ( #10164 )"
...
This reverts commit 8b721c1496 .
2023-03-28 10:44:21 -07:00
Nathan Walker
8da1ca910a
revert: "chore: ios relayout condition cleanup ( #10241 )"
...
This reverts commit 7eaafa519e .
2023-03-28 10:43:31 -07:00
farfromrefuge
2f4c318276
fix: global declarations fix ( #10247 )
2023-03-23 10:55:38 -07:00
Nathan Walker
7edd21a688
fix(android): dialogs activity usage ( #10246 )
2023-03-22 18:20:01 -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
Dimitris-Rafail Katsampas
e560cb1374
fix(core): improved handling for unsupported '!important' css rule ( #10243 )
2023-03-22 08:13:35 -07:00
Eduardo Speroni
7eaafa519e
chore: ios relayout condition cleanup ( #10241 )
2023-03-17 12:10:13 -07:00
Eduardo Speroni
8b721c1496
perf: reduce amount of layout calls and debounce layouts when needed ( #10164 )
2023-03-17 10:07:22 -07:00
Igor Randjelovic
9ed3c9b256
fix(ios): guard against no nativeView in createBackgroundUIColor ( #10229 )
2023-03-17 08:27:30 -07:00
Nathan Walker
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
Dimitris-Rafail Katsampas
a19568c0d0
fix(core): RootLayout shade cover asynchronous execution ( #10228 )
2023-03-09 20:57:15 -08:00
Dimitris-Rafail Katsampas
4e62b00ddb
fix(core): Frame to Page property propagation ( #10225 )
2023-03-02 08:39:32 -08:00
Ben Delaney
fd35d6c19c
fix(core): autofillTypes correction ( #10210 )
2023-02-19 16:35:48 -08:00
Douglas Machado
48ef249684
fix(core): classes .ns-light and .ns-dark apply to dialogs ( #10201 )
2023-02-18 20:12:02 -08:00
Dimitris-Rafail Katsampas
dcf6a365cd
fix(core): unset css values of type Property ( #10199 )
2023-02-05 09:16:01 -08:00
Dimitris-Rafail Katsampas
b993a83f23
fix(core): added item template handling for external renderers ( #10196 )
2023-02-02 21:58:01 -08:00
Jamie Birch
485fb61947
fix(core): Observable event types consistency ( #10181 )
2023-01-31 07:42:09 -08:00
Igor Randjelovic
571d5156ec
fix(core): add equalityComparer to border-radius properties ( #10185 )
2023-01-30 22:22:42 -08:00
Nathan Walker
497b2d737e
chore: Nx 15.6, jest latest and TypeScript 4.9 ( #10191 )
2023-01-30 19:17:49 -08:00
Nathan Walker
c42c3c5f26
fix(ios): race conditions with nativeView ( #10182 )
2023-01-23 12:08:00 -08:00
Adam Atri
ed14e24283
fix(ios): race condition when setting preferredContentSize on view controller ( #10179 )
2023-01-20 20:24:44 -08:00
Nathan Walker
75821ead07
fix(core): ScrollView event wiring sequencing improvement ( #10178 )
2023-01-19 12:28:56 -08:00
Nathan Walker
18b911ed84
fix(core): improve loaded/unloaded handling
2023-01-16 11:41:04 -08:00
Nathan Walker
c9e29aa9af
fix(core): improve loaded/unloaded handling to be stable and consistent ( #10170 )
2023-01-15 19:49:28 -08:00
farfromrefuge
0632215793
chore: eslint cleanup ( #10160 )
2023-01-09 09:40:20 -08:00
farfromrefuge
bff35e5163
feat(core): new autoFillTypes for newUsername, newPassword and oneTimeCode ( #10159 )
2023-01-09 09:38:28 -08:00
Prabu Devarrajan
84440876fe
fix(android): WebView url and event handling ( #10147 ) ( #10148 )
...
closes https://github.com/NativeScript/NativeScript/issues/10147
2023-01-03 18:38:33 -08:00
Nathan Walker
00944bb1b5
fix(ios): TextField keyboard handling with emoji, autofill, and shortcuts ( #10154 )
...
closes https://github.com/NativeScript/NativeScript/issues/10108
2023-01-03 17:36:56 -08:00