229 Commits

Author SHA1 Message Date
c9102f2de9 chore: tests 2022-07-22 13:32:22 -07:00
4f56d8650b chore: e2e automated tests 2022-07-22 11:31:10 -07:00
c8bff74e67 fix(core): missing export for maxLinesProperty (#9965) 2022-07-22 08:12:28 -07:00
0477044d6f fix(core): FormattedString.spans is now restored (#9960) 2022-07-17 19:48:07 -07:00
3681fd4384 fix(ios): do not convert tap event data to device pixels twice (#9935)
BREAKING CHANGE:

tapData.getX() and tapData.getY() will now return correctly in DIP, so any extra conversions (like calling toDevicePixels) twice must be changed.
2022-07-09 10:09:43 -07:00
38142a6aeb fix(core): navigatingToEvent allows access to resolvedPage now (#9954)
BREAKING CHANGE:

When using `navigatingToEvent` event.entry, the `backstackEntry` object is now returned which has an `entry` property on it if you still need it.
2022-07-09 10:05:29 -07:00
e5fffa1dad fix(RootLayout): resilience around shadeCover options 2022-07-09 09:02:45 -07:00
8d0c3285ed chore: cleanup uifont cache logs to be trace enabled 2022-07-09 09:02:45 -07:00
8756df30d4 perf: cache UIFont construction based on FontDescriptor (#9948)
Reduces unnecessary UIFont creation by reusing existing UIFonts matching the same font parameters.
2022-07-09 09:02:45 -07:00
2ff0891f93 fix(ios): label measure correct height when using custom numberOfLines (#9945) 2022-07-09 09:02:45 -07:00
9fcd440690 fix(android): content uri handling improvements (#9936) 2022-07-09 09:02:45 -07:00
4db4e4af27 fix(ios): memory leak after using 'showModal' passing any Page as parameter (#9939) 2022-07-09 09:02:45 -07:00
957af32859 fix(ios): memory leak after using the 'presentViewControllerNavigation' (#9934) 2022-07-09 09:02:45 -07:00
50fd3c06f8 revert: "fix(ios): apply proper border radius to box shadow and view sublayers (#9881)" (#9917)
This reverts commit 3d882b0999ca25cbab104700eb483bc5d5d9a1ab.
2022-07-09 09:02:45 -07:00
7b11b6acfe feat(RootLayout): add opened and closed events (#9893) 2022-07-09 09:02:45 -07:00
665009b863 fix(live-sync): navigation history is now maintained (#9889) 2022-07-09 09:02:45 -07:00
7ccc949712 fix(TabView): item styling improvements for iOS 15+ (#9888) 2022-07-09 09:02:45 -07:00
58a720699f fix(core): android wrong background state + current value accessors (#9883) 2022-07-09 09:02:45 -07:00
f548fdc735 fix(ios): proper disposal and recreation of iOS native views (#9879) 2022-07-09 09:02:45 -07:00
b7e6128576 fix(ios): apply proper border radius to box shadow and view sublayers (#9881) 2022-07-09 09:02:45 -07:00
0a082b3403 fix: ensure reusable ProxyViewContainer re-adds native children (#9882) 2022-07-09 09:02:45 -07:00
7ff7233737 feat(core): maxLines support for all text components (#9884) 2022-07-09 09:02:45 -07:00
fbd1e23c1c fix(android): Textfield focus fix (#9885) 2022-07-09 09:02:45 -07:00
6ccf5a22e6 fix(core): allow View subclass to force onLayoutChangeListener (#9886) 2022-07-09 09:02:45 -07:00
cd5d2c2f4d fix(core): trace log using a wrong parameter (#9951) 2022-07-05 22:34:13 -07:00
464ea18737 fix(android): race condition on offBackgroundColor view change detection (#9922) 2022-06-20 07:20:10 -07:00
aee1d05651 fix(ios): not responding after rotation (#9931) 2022-06-15 08:29:59 -07:00
32567ef361 feat(core): allow removal of specific CSS variables (#9896) 2022-06-04 10:24:13 -07:00
8c69ab5596 chore: format 2022-06-04 10:18:03 -07:00
81f57dc0c2 docs(typo): fix typo in view/index.ios.ts (#9926)
overriden -> overridden
2022-06-01 16:34:11 +02:00
834b4bf5e1 fix(webview): android not loading local content (#9923) 2022-05-24 19:48:54 -07:00
74e42fcb8b fix: removed unecessary console.log (#9877) 2022-04-20 22:14:49 +02:00
54f454f881 fix(android): ensure android application is created before setting listeners (#9876)
Co-authored-by: Osei Fortune <fortune.osei@yahoo.com>
2022-04-19 18:40:21 +02:00
3537858b6d perf: Improved live-sync functionality for RootLayout (#9836) 2022-04-06 19:03:16 -07:00
c05145bd9b feat(TouchManager): touchDelay property for nested tap control 2022-04-05 11:26:33 -07:00
da3bd2c6fb fix(css): borderColor parse handling for hsl(a) color values (#9857) 2022-04-05 19:24:09 +02:00
2664783dfa fix(android): gesture events fix (#9842)
native `recognizer` should be reported as `android` and not `ios`
2022-04-01 14:27:58 -07:00
f88c158b38 fix(ios): navigation button now allows using custom icon (#9835) 2022-03-19 16:15:31 -07:00
694146689b fix(RootLayout): close popup views on live-sync (#9834) 2022-03-19 16:12:35 -07:00
efa80c728b fix(ActionItem): rendering threw errors if it had a nested child. (#9821) 2022-03-19 14:55:10 -07:00
3bb8fc28e9 feat(RootLayout): added topmost method to retrieve view at top (#9826) 2022-03-16 15:11:21 -07:00
8be543bcc7 feat: testID property for use with e2e testing without interfering with a11y (#9793)
* fix(android): nested frames were sometimes not recreated (#9748)

Co-authored-by: Eduardo Speroni <edusperoni@gmail.com>

* feat: testID property for use with e2e testing without interfering with a11y

* feat: better testID support along a11y

wip

* fix: make sure we have a defined id

* feat: --env.e2e to enable testID

* chore: return if using testID

* chore: cleanup

Co-authored-by: Eduardo Speroni <edusperoni@gmail.com>
Co-authored-by: Igor Randjelovic <rigor789@gmail.com>
2022-03-08 23:25:05 +01:00
a1772c0005 feat: proper handling for bindings with converters that were undefined (#9813) 2022-03-08 07:36:58 -08:00
ac2e944fd3 fix(android): fragment creation loaded/unloaded protection 2022-03-07 09:51:06 -08:00
e096cf2b76 revert: "fix: ensure we clear ios view in _tearDownUI (#9671)"
This reverts commit 6a60b83d49a9daa3825f9ee340d61b55ba4b85ff.

We identified issues with this change that cause errors in `onUnloaded()` callbacks.
2022-03-06 19:35:57 +01:00
c5856c6dae feat: improved converter and function call parsing mechanism for XML expressions (#9805) 2022-03-05 09:24:05 -08:00
6a60b83d49 fix: ensure we clear ios view in _tearDownUI (#9671)
This had side effects for example: https://github.com/NativeScript/NativeScript/issues/7469.
2022-03-04 19:49:52 -08:00
ab4e47a1c1 feat(datepicker): ability to show time via showTime property (#9570) 2022-03-04 19:32:47 -08:00
402a7bba2e fix(ios): do not redraw if background image is 'none' (#9800) 2022-03-01 13:22:36 -08:00
5550e6943e Merge branch 'master' into release/8.2.0 2022-03-01 13:21:10 -08:00