@plasmicapp/react-web 0.2.316 → 0.2.318
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 +6 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/react-web.esm.js +1 -1
- package/dist/react-web.esm.js.map +1 -1
- package/package.json +4 -4
- package/skinny/dist/plume/text-input/index.js +1 -1
- package/skinny/dist/plume/text-input/index.js.map +1 -1
package/dist/all.d.ts
CHANGED
|
@@ -12027,6 +12027,12 @@ interface RichSlotType<P> {
|
|
|
12027
12027
|
* The unique names of all code components that can be placed in the slot
|
|
12028
12028
|
*/
|
|
12029
12029
|
allowedComponents?: string[];
|
|
12030
|
+
/**
|
|
12031
|
+
* Wheter Plasmic Components with a root component included in the
|
|
12032
|
+
* "allowedComponents" list are valid or not.
|
|
12033
|
+
* Only used if the "allowedComponents" list is set.
|
|
12034
|
+
*/
|
|
12035
|
+
allowRootWrapper?: boolean;
|
|
12030
12036
|
/**
|
|
12031
12037
|
* Whether the "empty slot" placeholder should be hidden in the canvas.
|
|
12032
12038
|
*/
|
package/dist/index.cjs.js
CHANGED
|
@@ -3919,7 +3919,7 @@ function useTextInput(plasmicClass, props, config, ref) {
|
|
|
3919
3919
|
},
|
|
3920
3920
|
},
|
|
3921
3921
|
_c[config.input] = {
|
|
3922
|
-
props: __assign(__assign({}, omit.apply(void 0, __spreadArray(__spreadArray([rest], __read(plasmicClass.internalArgProps.filter(function (prop) { return prop !== "required"; })), false), __read(plasmicClass.internalVariantProps), false))), { disabled: isDisabled, ref: inputRef, className: inputClassName, style: inputStyle }),
|
|
3922
|
+
props: __assign(__assign({}, omit.apply(void 0, __spreadArray(__spreadArray([rest], __read(plasmicClass.internalArgProps.filter(function (prop) { return prop !== "required" && prop !== "onChange"; })), false), __read(plasmicClass.internalVariantProps), false))), { disabled: isDisabled, ref: inputRef, className: inputClassName, style: inputStyle }),
|
|
3923
3923
|
},
|
|
3924
3924
|
_c);
|
|
3925
3925
|
return {
|