@plasmicapp/react-web 0.2.302 → 0.2.304
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/dist/all.d.ts +2 -1
- package/package.json +4 -4
package/dist/all.d.ts
CHANGED
|
@@ -11159,6 +11159,7 @@ interface ActionProps<P> {
|
|
|
11159
11159
|
appendToSlot: (element: PlasmicElement, slotName: string) => void;
|
|
11160
11160
|
removeFromSlotAt: (pos: number, slotName: string) => void;
|
|
11161
11161
|
updateProps: (newValues: any) => void;
|
|
11162
|
+
updateStates: (newValues: any) => void;
|
|
11162
11163
|
};
|
|
11163
11164
|
/**
|
|
11164
11165
|
* The document that the component will be rendered into; instead of using
|
|
@@ -11773,7 +11774,7 @@ interface RichSlotType<P> {
|
|
|
11773
11774
|
* Furthermore, the component further shows the props of whatever is in the slot on
|
|
11774
11775
|
* the parent component for the user's convenience. Handy for various “wrapper" components, form fields, and so on.
|
|
11775
11776
|
*/
|
|
11776
|
-
mergeWithParent?: ContextDependentConfig<P, boolean>;
|
|
11777
|
+
mergeWithParent?: boolean | ContextDependentConfig<P, boolean>;
|
|
11777
11778
|
/**
|
|
11778
11779
|
* A function that returns true to hide the merged props conditionally.
|
|
11779
11780
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicapp/react-web",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.304",
|
|
4
4
|
"description": "plasmic library for rendering in the presentational style",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -87,9 +87,9 @@
|
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
89
|
"@plasmicapp/auth-react": "0.0.19",
|
|
90
|
-
"@plasmicapp/data-sources": "0.1.
|
|
90
|
+
"@plasmicapp/data-sources": "0.1.142",
|
|
91
91
|
"@plasmicapp/data-sources-context": "0.1.20",
|
|
92
|
-
"@plasmicapp/host": "1.0.
|
|
92
|
+
"@plasmicapp/host": "1.0.184",
|
|
93
93
|
"@plasmicapp/loader-splits": "1.0.49",
|
|
94
94
|
"@plasmicapp/prepass": "1.0.13",
|
|
95
95
|
"@plasmicapp/query": "0.1.77",
|
|
@@ -157,5 +157,5 @@
|
|
|
157
157
|
"react": ">=16.8.0",
|
|
158
158
|
"react-dom": ">=16.8.0"
|
|
159
159
|
},
|
|
160
|
-
"gitHead": "
|
|
160
|
+
"gitHead": "a8f605abed1743390d128368cf18d42f967f9b8b"
|
|
161
161
|
}
|