@weaverse/core 1.1.9 → 1.1.11
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/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -285,9 +285,10 @@ interface BasicInput<ConfigsType = AdditionalInputConfigs> {
|
|
|
285
285
|
* `imagesPerRow.gt.1`
|
|
286
286
|
*/
|
|
287
287
|
condition?: string;
|
|
288
|
-
defaultValue
|
|
288
|
+
defaultValue?: string | number | boolean;
|
|
289
289
|
placeholder?: string;
|
|
290
290
|
helpText?: string;
|
|
291
|
+
shouldRevalidate?: boolean;
|
|
291
292
|
}
|
|
292
293
|
type AdditionalInputConfigs = SelectInputConfigs | ToggleGroupConfigs | RangeInputConfigs | ChildrenSortInputConfigs | DataSortInputConfigs;
|
|
293
294
|
interface SelectInputConfigs {
|
package/dist/index.d.ts
CHANGED
|
@@ -285,9 +285,10 @@ interface BasicInput<ConfigsType = AdditionalInputConfigs> {
|
|
|
285
285
|
* `imagesPerRow.gt.1`
|
|
286
286
|
*/
|
|
287
287
|
condition?: string;
|
|
288
|
-
defaultValue
|
|
288
|
+
defaultValue?: string | number | boolean;
|
|
289
289
|
placeholder?: string;
|
|
290
290
|
helpText?: string;
|
|
291
|
+
shouldRevalidate?: boolean;
|
|
291
292
|
}
|
|
292
293
|
type AdditionalInputConfigs = SelectInputConfigs | ToggleGroupConfigs | RangeInputConfigs | ChildrenSortInputConfigs | DataSortInputConfigs;
|
|
293
294
|
interface SelectInputConfigs {
|
package/package.json
CHANGED