@plasmicapp/react-web 0.2.241 → 0.2.243
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 +11 -0
- package/package.json +4 -4
package/dist/all.d.ts
CHANGED
|
@@ -11350,6 +11350,17 @@ interface CodeComponentMeta<P> {
|
|
|
11350
11350
|
* looking at the tree.
|
|
11351
11351
|
*/
|
|
11352
11352
|
treeLabel?: ContextDependentConfig<P, string>;
|
|
11353
|
+
/**
|
|
11354
|
+
* The value of the CSS display property used by this component.
|
|
11355
|
+
* Plasmic passes in a class name prop to components to let users style them,
|
|
11356
|
+
* but normally this does not include layout properties like display.
|
|
11357
|
+
* However, if the user has set the components visibility to be visible
|
|
11358
|
+
* (for instance, in the base variant it was set to not visible ie display none,
|
|
11359
|
+
* but in a variant it's overridden to be visible), then Plasmic needs to know
|
|
11360
|
+
* what display property to set.
|
|
11361
|
+
* Defaults to "flex".
|
|
11362
|
+
*/
|
|
11363
|
+
defaultDisplay?: string;
|
|
11353
11364
|
}
|
|
11354
11365
|
interface FunctionParam<P> {
|
|
11355
11366
|
name: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicapp/react-web",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.243",
|
|
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",
|
|
@@ -86,9 +86,9 @@
|
|
|
86
86
|
"prettier": {},
|
|
87
87
|
"dependencies": {
|
|
88
88
|
"@plasmicapp/auth-react": "0.0.6",
|
|
89
|
-
"@plasmicapp/data-sources": "0.1.
|
|
89
|
+
"@plasmicapp/data-sources": "0.1.101",
|
|
90
90
|
"@plasmicapp/data-sources-context": "0.1.11",
|
|
91
|
-
"@plasmicapp/host": "1.0.
|
|
91
|
+
"@plasmicapp/host": "1.0.156",
|
|
92
92
|
"@plasmicapp/prepass": "1.0.1",
|
|
93
93
|
"@plasmicapp/query": "0.1.67",
|
|
94
94
|
"@react-aria/checkbox": "^3.5.0",
|
|
@@ -155,5 +155,5 @@
|
|
|
155
155
|
"react": ">=16.8.0",
|
|
156
156
|
"react-dom": ">=16.8.0"
|
|
157
157
|
},
|
|
158
|
-
"gitHead": "
|
|
158
|
+
"gitHead": "bad6fad8d377645b740133976cff201b1b20dc8d"
|
|
159
159
|
}
|