@builder.io/sdk-react-native 0.0.6-2 โ 0.0.6-3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -1
- package/CHANGELOG.md +0 -42
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@builder.io/sdk-react-native",
|
|
3
3
|
"description": "Builder.io SDK for React Native",
|
|
4
|
-
"version": "0.0.6-
|
|
4
|
+
"version": "0.0.6-3",
|
|
5
5
|
"main": "src/index.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"src"
|
|
8
|
+
],
|
|
6
9
|
"scripts": {
|
|
7
10
|
"release:patch": "npm version patch --no-git-tag-version && npm publish --access public",
|
|
8
11
|
"release:dev": "npm version prerelease --no-git-tag-version && npm publish --tag dev --access public"
|
package/CHANGELOG.md
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
### 0.0.1-56
|
|
2
|
-
|
|
3
|
-
๐ Fix: image block `srcSet` was incorrectly set as `srcset`
|
|
4
|
-
|
|
5
|
-
### 0.0.1-55
|
|
6
|
-
|
|
7
|
-
๐ Fix: custom components were not rendering correctly
|
|
8
|
-
๐ Fix: Image component's `srcSet` was not being set correctly
|
|
9
|
-
|
|
10
|
-
### 0.0.1-52
|
|
11
|
-
|
|
12
|
-
๐งจ Breaking change: the format of the `customComponents` prop has changed from `[{ component, info }]` to `[{ component, ...info }]`.
|
|
13
|
-
See [builder-registered-components.ts](/packages/sdks/src/constants/builder-registered-components.ts) for examples of how to do so, or see the example provided for this SDK.
|
|
14
|
-
|
|
15
|
-
### 0.0.1-51
|
|
16
|
-
|
|
17
|
-
โ ๏ธ Deprecation notice: Registering components via `registerComponent(component, info)` is now deprecated.
|
|
18
|
-
To register your custom components in Builder, you must now provide a `customComponents` array to the `RenderContent` component containing `[{ component, info }]`.
|
|
19
|
-
See [builder-registered-components.ts](/packages/sdks/src/constants/builder-registered-components.ts) for examples of how to do so, or see the example provided for this SDK.
|
|
20
|
-
|
|
21
|
-
### 0.0.1-50
|
|
22
|
-
|
|
23
|
-
- feat: ๐ธ export `isPreviewing()` (https://github.com/BuilderIO/builder/pull/951)
|
|
24
|
-
- feat: ๐ธ Add support for Symbols (https://github.com/BuilderIO/builder/pull/951)
|
|
25
|
-
- feat: ๐ธ Add support for Data Bindings https://github.com/BuilderIO/builder/pull/970
|
|
26
|
-
|
|
27
|
-
- BREAKING CHANGE: ๐งจ RenderContent must now be provided the `apiKey` as a prop (https://github.com/BuilderIO/builder/pull/951)
|
|
28
|
-
|
|
29
|
-
### 0.0.1-49
|
|
30
|
-
|
|
31
|
-
- Fix: show the "+ add block" button on empty pages https://github.com/BuilderIO/builder/pull/934
|
|
32
|
-
- Add `getBuilderSearchParams` helper export to easily view current drafts on your production site. https://github.com/BuilderIO/builder/pull/883
|
|
33
|
-
|
|
34
|
-
### 0.0.1-44
|
|
35
|
-
|
|
36
|
-
Changes:
|
|
37
|
-
|
|
38
|
-
- Fixes `getAllContent` to traverse all nested data from symbols/references https://github.com/BuilderIO/builder/pull/718
|
|
39
|
-
- Fixes `getContent` (broken due to missing URL polyfill) https://github.com/BuilderIO/builder/pull/880
|
|
40
|
-
- Strips invalid `this.` left from Mitosis compilation https://github.com/BuilderIO/builder/pull/717/commits/b1947c86db769f74a7408965dac70f22dfcc538d
|
|
41
|
-
- Fix identification of react-native environment https://github.com/BuilderIO/builder/pull/717/commits/9d2a207ceca39bf83d5bbdc4bd67351e86105d78
|
|
42
|
-
- Fix Aspect Ratio handling (this adds support for Pixel Tracking) https://github.com/BuilderIO/builder/pull/749, preceeded by https://github.com/BuilderIO/builder/pull/687
|