@plasmicapp/react-web 0.2.408 → 0.2.409
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 +7 -0
- package/package.json +4 -4
package/dist/all.d.ts
CHANGED
|
@@ -11443,6 +11443,13 @@ interface ObjectTypeBaseCore<Ctx extends any[], Fields> {
|
|
|
11443
11443
|
type: "object";
|
|
11444
11444
|
fields?: Record<string, Fields>;
|
|
11445
11445
|
nameFunc?: (item: any, ...args: Ctx) => string | undefined;
|
|
11446
|
+
/**
|
|
11447
|
+
* Controls how the object editor is displayed in the UI.
|
|
11448
|
+
* - "popup": Opens a modal/popover to edit the object (default)
|
|
11449
|
+
* - "inline": Renders the object fields directly inline in the property panel
|
|
11450
|
+
* @default "popup"
|
|
11451
|
+
*/
|
|
11452
|
+
display?: "inline" | "popup";
|
|
11446
11453
|
}
|
|
11447
11454
|
interface ArrayTypeBaseCore<Ctx extends any[], Fields> {
|
|
11448
11455
|
type: "array";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicapp/react-web",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.409",
|
|
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",
|
|
@@ -96,9 +96,9 @@
|
|
|
96
96
|
},
|
|
97
97
|
"dependencies": {
|
|
98
98
|
"@plasmicapp/auth-react": "0.0.24",
|
|
99
|
-
"@plasmicapp/data-sources": "0.1.
|
|
99
|
+
"@plasmicapp/data-sources": "0.1.194",
|
|
100
100
|
"@plasmicapp/data-sources-context": "0.1.22",
|
|
101
|
-
"@plasmicapp/host": "1.0.
|
|
101
|
+
"@plasmicapp/host": "1.0.230",
|
|
102
102
|
"@plasmicapp/loader-splits": "1.0.66",
|
|
103
103
|
"@plasmicapp/nextjs-app-router": "1.0.19",
|
|
104
104
|
"@plasmicapp/prepass": "1.0.21",
|
|
@@ -153,5 +153,5 @@
|
|
|
153
153
|
"react": ">=16.8.0",
|
|
154
154
|
"react-dom": ">=16.8.0"
|
|
155
155
|
},
|
|
156
|
-
"gitHead": "
|
|
156
|
+
"gitHead": "38173d19290002d5a09d67da44e4c9f1c1682d37"
|
|
157
157
|
}
|