@plasmicapp/react-web 0.2.409 → 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.
Files changed (2) hide show
  1. package/dist/all.d.ts +4 -3
  2. package/package.json +4 -4
package/dist/all.d.ts CHANGED
@@ -11445,11 +11445,12 @@ interface ObjectTypeBaseCore<Ctx extends any[], Fields> {
11445
11445
  nameFunc?: (item: any, ...args: Ctx) => string | undefined;
11446
11446
  /**
11447
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
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.
11450
11451
  * @default "popup"
11451
11452
  */
11452
- display?: "inline" | "popup";
11453
+ display?: "inline" | "popup" | "flatten";
11453
11454
  }
11454
11455
  interface ArrayTypeBaseCore<Ctx extends any[], Fields> {
11455
11456
  type: "array";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasmicapp/react-web",
3
- "version": "0.2.409",
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.194",
99
+ "@plasmicapp/data-sources": "0.1.195",
100
100
  "@plasmicapp/data-sources-context": "0.1.22",
101
- "@plasmicapp/host": "1.0.230",
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": "38173d19290002d5a09d67da44e4c9f1c1682d37"
156
+ "gitHead": "6b9428c7b4f35d9b84241981523e746e18e2abb7"
157
157
  }