7a353eca14
release: @nativescript/webpack 5.0.17
5.0.17-webpack
2023-08-03 22:44:28 +02:00
3325b3ec0b
feat(webpack): place hidden sourceMaps in platforms folder ( #10352 )
2023-08-03 22:40:42 +02:00
0efb84ff44
fix(webpack): force experimentalDecorators on NativeClass ( #10356 )
2023-08-03 22:08:12 +02:00
74e68145a2
fix(css): prevent duplicate system classes ( #10355 )
2023-08-01 20:55:39 -07:00
9f715c0c5f
feat(shared-transition): pageOut option for more dynamic page animations ( #10350 )
2023-07-26 18:12:49 -07:00
b93cb99479
chore: bump next
2023-07-24 09:15:01 -07:00
af5b2f6225
release: @nativescript/core 8.5.7
8.5.9-core
2023-07-24 09:14:30 -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
08049340b5
fix(application): restore AndroidApplication.on etc. ( #10336 )
2023-07-10 09:45:12 +02:00
5359153a11
fix(application): wrap native classes in initialisers ( #10335 )
...
fixes : #10334
2023-07-10 09:44:45 +02:00
a7d99be025
chore: bump next
2023-06-23 11:54:58 -07:00
6ff8506b16
release: @nativescript/core 8.5.7
8.5.7-core
2023-06-23 11:53:55 -07:00
09037196d8
fix: trigger css update when setting root classes ( #10328 )
...
Co-authored-by: Nathan Walker <walkerrunpdx@gmail.com>
2023-06-23 09:20:10 -07:00
fce2e88cba
fix(Connectivity): androidApp is not defined on SDK <28 ( #10324 )
...
fixes #10323
Co-authored-by: Nathan Walker <walkerrunpdx@gmail.com>
2023-06-23 09:18:51 -07:00
029ed4fe5d
fix(Application): getNativeApplication wrong ActivityThread ( #10326 )
...
fixes #10325
2023-06-23 09:16:54 -07:00
ed0989d96e
chore: bump next
2023-06-22 12:58:05 -07:00
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