@plasmicapp/react-web 0.2.335 → 0.2.337
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 +10 -0
- package/package.json +4 -4
package/dist/all.d.ts
CHANGED
|
@@ -11556,6 +11556,15 @@ interface CodeComponentMeta<P> {
|
|
|
11556
11556
|
* The description of the component to be shown in Studio.
|
|
11557
11557
|
*/
|
|
11558
11558
|
description?: string;
|
|
11559
|
+
/**
|
|
11560
|
+
* A specific section to which the component should be displayed in Studio. By default, the component will be displayed in the "Custom Components" section.
|
|
11561
|
+
* A new section will be created to display the components with the same `section` value.
|
|
11562
|
+
*/
|
|
11563
|
+
section?: string;
|
|
11564
|
+
/**
|
|
11565
|
+
* A link to an image that will be displayed as a thumbnail of the component in the Studio, if the component has a `section` specified.
|
|
11566
|
+
*/
|
|
11567
|
+
thumbnailUrl?: string;
|
|
11559
11568
|
/**
|
|
11560
11569
|
* The javascript name to be used when generating code. Optional: if not
|
|
11561
11570
|
* provided, `meta.name` is used.
|
|
@@ -12039,6 +12048,7 @@ interface CustomChoiceType<P> extends ChoiceTypeBase<P, string | number | boolea
|
|
|
12039
12048
|
type ChoiceType<P> = SingleChoiceType<P> | MultiChoiceType<P> | CustomChoiceType<P>;
|
|
12040
12049
|
interface RichSlotType<P> {
|
|
12041
12050
|
type: "slot";
|
|
12051
|
+
description?: string;
|
|
12042
12052
|
/**
|
|
12043
12053
|
* The unique names of all code components that can be placed in the slot
|
|
12044
12054
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicapp/react-web",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.337",
|
|
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",
|
|
@@ -97,9 +97,9 @@
|
|
|
97
97
|
},
|
|
98
98
|
"dependencies": {
|
|
99
99
|
"@plasmicapp/auth-react": "0.0.21",
|
|
100
|
-
"@plasmicapp/data-sources": "0.1.
|
|
100
|
+
"@plasmicapp/data-sources": "0.1.155",
|
|
101
101
|
"@plasmicapp/data-sources-context": "0.1.21",
|
|
102
|
-
"@plasmicapp/host": "1.0.
|
|
102
|
+
"@plasmicapp/host": "1.0.196",
|
|
103
103
|
"@plasmicapp/loader-splits": "1.0.60",
|
|
104
104
|
"@plasmicapp/nextjs-app-router": "1.0.11",
|
|
105
105
|
"@plasmicapp/prepass": "1.0.17",
|
|
@@ -168,5 +168,5 @@
|
|
|
168
168
|
"react": ">=16.8.0",
|
|
169
169
|
"react-dom": ">=16.8.0"
|
|
170
170
|
},
|
|
171
|
-
"gitHead": "
|
|
171
|
+
"gitHead": "5cf999c17e183de929006aad562af5a0f56d047c"
|
|
172
172
|
}
|