7267 Commits

Author SHA1 Message Date
71f2bc017d release: @nativescript/core 8.5.6 8.5.6-core 2023-06-22 12:57:40 -07:00
c278430240 fix(core): unhandled error typings (#10320)
NativeScriptError type def used to come from packages/core/global-types.d.ts now comes from packages/core/application/application-interfaces.ts, so fixed there now.
2023-06-22 12:19:56 -07:00
0873894a27 fix: early access to context and packageName (#10321) 2023-06-22 11:46:08 -07:00
4917bffa03 release: @nativescript/webpack 5.0.16 5.0.16-webpack 2023-06-21 16:27:17 +02:00
dd10bfccc2 feat(webpack): angular 16.1 support (#10317) 2023-06-21 16:24:41 +02:00
42d22a2aa5 chore: bump next 2023-06-19 14:33:14 -07:00
78e8652824 release: @nativescript/core 8.5.5 8.5.5-core 2023-06-19 14:30:36 -07:00
61a4f72db7 chore: bump next 2023-06-19 13:55:57 -07:00
685d61cf54 fix(animation): css keyframes 2023-06-19 13:55:40 -07:00
7f09b925bd fix(Application): orientation & systemAppearance root classes 2023-06-19 21:43:08 +02:00
4424645abb release: @nativescript/core 8.5.4 8.5.4-core 2023-06-17 10:24:57 -07:00
77f252e551 fix(android): improve content uri handling (#10316) 2023-06-17 10:14:28 -07:00
0401b09a43 fix: ensure Application instance initialized early (#10315) 2023-06-15 10:30:13 -07:00
e430555cb2 fix(Application): inBackground handling & missing once (#10307) 2023-06-14 13:09:41 -07:00
b50812f724 chore: cleanup readme 2023-06-14 13:08:36 -07:00
6f87dbcd6c chore: add license scan report and status (#10313)
Signed off by: fossabot <badges@fossa.com>
2023-06-13 13:28:07 -07:00
6ebe7e8673 chore: readme and bump next 2023-06-13 11:57:48 -07:00
25cc49d4f4 fix(shared-transition): race condition with interactive updates (#10312) 2023-06-13 10:13:33 -07:00
ab5fa941bc refactor: Application barrel changes without breaking changes (#10311) 2023-06-13 09:29:39 -07:00
0956cb0f91 fix(shared-transitions): layer opacity set back to original on next tick (#10310) 2023-06-12 20:44:15 -07:00
622f3659d8 fix(animation): avoid uncaught reject on cancel (#10309) 2023-06-12 19:54:00 -07:00
109dad13ad release: @nativescript/webpack 5.0.15 5.0.15-webpack 2023-06-06 16:56:30 +02:00
9627a80f27 fix(webpack): angular 16 build with terser (#10302) 2023-06-06 16:54:25 +02: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
204e876866 feat(types-ios): iOS 16.4 types (#10287) 2023-05-10 08:28:42 -07:00
ab32aeaaa3 feat(file-system): append, appendText & createFile (#10285) 2023-05-04 20:45:01 -07:00
7bb0918e08 release: @nativescript/core 8.5.3 8.5.3-core 2023-05-03 18:51:48 -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
b8a548f009 fix(shared-transition): iOS snapshot opacity (#10278) 2023-04-26 11:17:39 -07:00
f24ac1d713 release: @nativescript/core 8.5.2 8.5.2-core 2023-04-25 11:34:08 -07:00
18bba2bc11 feat(file-system): allow copy when opening a File (#10274)
* feat: add copy file to file-system

* feat(file-system): allow temp copy of files opened with File.fromPath

* chore: remove log

* chore: remove log

* fix: only copy if true

---------

Co-authored-by: Nathan Walker <walkerrunpdx@gmail.com>
2023-04-25 00:30:28 -04:00
4551da075b fix(ios): resilience to nativeView access under edge cases (#10276) 2023-04-24 13:45:31 -07:00
c63a50a196 feat(file): copy sync and async support (#10273) 2023-04-21 20:36:01 -07:00
1b17e23bb6 release: @nativescript/core 8.5.1 8.5.1-core 2023-04-17 10:00:53 -07:00
71c42f3a19 revert: "fix(core/platform): fixed types for sdkVersion and osVersion" (#10270)
Revert "fix(core): sdkVersion and osVersion type adjustments (#10269)"

This reverts commit f8edee43a0b28f523d510c6dd7d54015a0bc7e10.
2023-04-17 09:42:15 -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
f8edee43a0 fix(core): sdkVersion and osVersion type adjustments (#10269)
- These two return a number in Android (can't test iOS). Adding this fix would make expressions such as `Device.sdkVersion >= 23` possible without the need to add `@ts-ignore` before

- Updated JSDoc to reflect Android behavior
2023-04-17 08:51:24 -07:00
0a2f002b57 fix(core): unhandled error typings (#10268) 2023-04-13 16:49:01 -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
2f9e5c0b84 ci: use python3 2023-04-04 21:57:19 +02:00
2fe1bc3de7 release: @nativescript/core 8.5.0 8.5.0-core 2023-03-28 11:29:31 -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