@plasmicapp/react-web 1.0.13 → 1.0.14
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 +5 -1
- package/package.json +4 -4
package/dist/all.d.ts
CHANGED
|
@@ -12153,6 +12153,11 @@ interface CommonTypeBase {
|
|
|
12153
12153
|
* If true, does not allow the user to use a dynamic expression for this prop
|
|
12154
12154
|
*/
|
|
12155
12155
|
disableDynamicValue?: boolean;
|
|
12156
|
+
/**
|
|
12157
|
+
* Mark field as required (not null / undefined). Editor will attempt to
|
|
12158
|
+
* enforce the field is present, but it is not guaranteed.
|
|
12159
|
+
*/
|
|
12160
|
+
required?: boolean;
|
|
12156
12161
|
}
|
|
12157
12162
|
interface Defaultable<Ctx extends any[], T> {
|
|
12158
12163
|
/**
|
|
@@ -12681,7 +12686,6 @@ ControlExtras>;
|
|
|
12681
12686
|
type ComponentContextConfig<Props, R> = ContextDependentConfig<ComponentControlContext<Props>, R>;
|
|
12682
12687
|
interface PropTypeBase<Ctx extends any[]> extends CommonTypeBase {
|
|
12683
12688
|
displayName?: string;
|
|
12684
|
-
required?: boolean;
|
|
12685
12689
|
readOnly?: boolean | ContextDependentConfig<Ctx, boolean>;
|
|
12686
12690
|
/**
|
|
12687
12691
|
* If set to true, the component will be remounted when the prop value is updated.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicapp/react-web",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
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
|
},
|
|
87
87
|
"dependencies": {
|
|
88
88
|
"@plasmicapp/auth-react": "0.0.27",
|
|
89
|
-
"@plasmicapp/data-sources": "1.0.
|
|
89
|
+
"@plasmicapp/data-sources": "1.0.13",
|
|
90
90
|
"@plasmicapp/data-sources-context": "0.1.23",
|
|
91
|
-
"@plasmicapp/host": "2.0.
|
|
91
|
+
"@plasmicapp/host": "2.0.6",
|
|
92
92
|
"@plasmicapp/loader-splits": "1.0.70",
|
|
93
93
|
"@plasmicapp/nextjs-app-router": "1.0.23",
|
|
94
94
|
"@plasmicapp/prepass": "1.0.24",
|
|
@@ -142,5 +142,5 @@
|
|
|
142
142
|
"react": ">=18.0.0",
|
|
143
143
|
"react-dom": ">=18.0.0"
|
|
144
144
|
},
|
|
145
|
-
"gitHead": "
|
|
145
|
+
"gitHead": "baa35758ccd16c32259942faebbcbd62d5f174a4"
|
|
146
146
|
}
|