@plasmicapp/react-web 0.2.408 → 0.2.410
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 +8 -0
- package/package.json +4 -4
package/dist/all.d.ts
CHANGED
|
@@ -11443,6 +11443,14 @@ 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": Displays the object in a popup (default)
|
|
11449
|
+
* - "inline": Displays the object fields inline
|
|
11450
|
+
* - "flatten": Displays the object fields inline at the parent level. The parent label is not displayed.
|
|
11451
|
+
* @default "popup"
|
|
11452
|
+
*/
|
|
11453
|
+
display?: "inline" | "popup" | "flatten";
|
|
11446
11454
|
}
|
|
11447
11455
|
interface ArrayTypeBaseCore<Ctx extends any[], Fields> {
|
|
11448
11456
|
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.410",
|
|
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.195",
|
|
100
100
|
"@plasmicapp/data-sources-context": "0.1.22",
|
|
101
|
-
"@plasmicapp/host": "1.0.
|
|
101
|
+
"@plasmicapp/host": "1.0.231",
|
|
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": "6b9428c7b4f35d9b84241981523e746e18e2abb7"
|
|
157
157
|
}
|