@woven-planet/lakefront 6.12.0 → 6.13.1
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.cjs.d.ts +8 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.d.ts +8 -1
- package/dist/index.esm.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.d.ts
CHANGED
|
@@ -749,7 +749,14 @@ interface SelectProps {
|
|
|
749
749
|
* This is the default text before an option is selected.
|
|
750
750
|
*/
|
|
751
751
|
placeholder?: string;
|
|
752
|
-
|
|
752
|
+
/**
|
|
753
|
+
* The value of the select component (if you want to control externally).
|
|
754
|
+
*/
|
|
755
|
+
value?: any[] | string | number;
|
|
756
|
+
/**
|
|
757
|
+
* A value to initially set the multi-select component to.
|
|
758
|
+
*/
|
|
759
|
+
multiDefaultValue?: SelectOption$0[];
|
|
753
760
|
}
|
|
754
761
|
/**
|
|
755
762
|
* The select component is used to render a dropdown with options. The user can set a selected option by default.
|