@plasmicapp/react-web 0.2.414 → 0.2.416
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 +9 -1
- package/package.json +4 -4
package/dist/all.d.ts
CHANGED
|
@@ -12262,13 +12262,21 @@ interface SimplifiedField {
|
|
|
12262
12262
|
type: "text" | "number" | "boolean" | "date" | "time" | "datetime" | "select" | "multiselect" | "treeselect" | "treemultiselect" | string;
|
|
12263
12263
|
label?: string;
|
|
12264
12264
|
defaultValue?: unknown;
|
|
12265
|
+
operators?: readonly string[];
|
|
12265
12266
|
fieldSettings?: {};
|
|
12266
12267
|
}
|
|
12267
12268
|
|
|
12268
12269
|
type FunctionControlContext<P> = GenericContext<Partial<P>, // Partial function props
|
|
12269
12270
|
any>;
|
|
12270
12271
|
type FunctionContextConfig<Args extends any[], R> = ContextDependentConfig<FunctionControlContext<Args>, R>;
|
|
12271
|
-
|
|
12272
|
+
interface TypeBaseDefault<Ctx extends any[], T> extends CommonTypeBase, Defaultable<Ctx, T> {
|
|
12273
|
+
displayName?: string;
|
|
12274
|
+
/**
|
|
12275
|
+
* Function for whether this prop should be hidden in the right panel,
|
|
12276
|
+
* given the current props for this component
|
|
12277
|
+
*/
|
|
12278
|
+
hidden?: ContextDependentConfig<Ctx, boolean>;
|
|
12279
|
+
}
|
|
12272
12280
|
interface PlainStringType<T extends Nullish<string> = string> extends TypeBaseDefault<any[], T> {
|
|
12273
12281
|
type: "string" | `'${T}'`;
|
|
12274
12282
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicapp/react-web",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.416",
|
|
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.25",
|
|
99
|
-
"@plasmicapp/data-sources": "0.1.
|
|
99
|
+
"@plasmicapp/data-sources": "0.1.200",
|
|
100
100
|
"@plasmicapp/data-sources-context": "0.1.22",
|
|
101
|
-
"@plasmicapp/host": "1.0.
|
|
101
|
+
"@plasmicapp/host": "1.0.235",
|
|
102
102
|
"@plasmicapp/loader-splits": "1.0.68",
|
|
103
103
|
"@plasmicapp/nextjs-app-router": "1.0.20",
|
|
104
104
|
"@plasmicapp/prepass": "1.0.22",
|
|
@@ -153,5 +153,5 @@
|
|
|
153
153
|
"react": ">=16.8.0",
|
|
154
154
|
"react-dom": ">=16.8.0"
|
|
155
155
|
},
|
|
156
|
-
"gitHead": "
|
|
156
|
+
"gitHead": "380a91b2e7eac342c9b2ddafdacd84b4a812b795"
|
|
157
157
|
}
|