sit-onyx 1.0.0-beta.24 → 1.0.0-beta.26
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/components/OnyxSelect/types.d.ts +4 -0
- package/dist/index.cjs +3 -3
- package/dist/index.js +841 -831
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -75,6 +75,10 @@ export type OnyxSelectProps<TValue extends SelectOptionValue = SelectOptionValue
|
|
|
75
75
|
* @example: { label: "Your Animal", listLabel: "List of animals" }
|
|
76
76
|
*/
|
|
77
77
|
listLabel: string;
|
|
78
|
+
/**
|
|
79
|
+
* Text describing the list of options which will be displayed at the bottom of the flyout.
|
|
80
|
+
*/
|
|
81
|
+
listDescription?: string;
|
|
78
82
|
/**
|
|
79
83
|
* Available options to choose from.
|
|
80
84
|
*/
|