Skip to content

Commit 151261e

Browse files
committed
Update changelog
1 parent ff11003 commit 151261e

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
- support for `prop:` directive to set the value of the containing node to the nativeView of the current node e.g `<gridLayout prop:mainContent>` for sideDrawer
1515
- Added a parameter to NativeElementNode that configures the prop: behaviour and defines the correct casing of any property
1616
- Added a parameter `setsParentProp` to NativeElementNode that specifies a property on the perent node to set to constructed element when inserted.
17+
- Added registerNativeViewElement and registerNativeConfigElement exports. These help change:
18+
```
19+
registerElement('myTag', () => new NativeViewElementNode('myTag', require('some-tns-plugin/mytag').MyTag))
20+
```
21+
into
22+
```
23+
registerNativeViewElement('myTag', () => require('some-tns-plugin/mytag').MyTag )
24+
```
25+
- Added `svelteNativeNoFrame` which allows you to launch your app without an implicit root frame. Great for when you are using RadSidebar
26+
1727

1828
### Changes
1929
- Refactored property name normalization to cache based on object prototype so we aren't walking all defined properties every time we get or set.
30+
- Use the new 'scoped styles' boolean parameter when calling addCss if we don't detect any :global() styles. This should improve perf.
31+
2032

2133
## [0.5.3]
2234
- Add support for itemTemplateSelector closes [#86](https://github.com/halfnelson/svelte-native/issues/86)

0 commit comments

Comments
 (0)