@qasa/qds-ui 0.17.1 → 0.18.0
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 +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +81 -81
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -5190,6 +5190,11 @@ interface SelectOptions extends SelectBaseOptions {
|
|
|
5190
5190
|
* Text that provides additional guidance to the user
|
|
5191
5191
|
*/
|
|
5192
5192
|
helperText?: string;
|
|
5193
|
+
/**
|
|
5194
|
+
* If `true`, the select field will display an optional indicator.
|
|
5195
|
+
* If the `isRequired` prop is also `true`, this prop will be ignored.
|
|
5196
|
+
*/
|
|
5197
|
+
isOptional?: boolean;
|
|
5193
5198
|
}
|
|
5194
5199
|
type OmittedProps$2 = 'readOnly' | 'size';
|
|
5195
5200
|
interface SelectProps extends Omit<HTMLQdsProps<'select'>, OmittedProps$2>, SelectOptions {
|
package/dist/index.d.ts
CHANGED
|
@@ -5190,6 +5190,11 @@ interface SelectOptions extends SelectBaseOptions {
|
|
|
5190
5190
|
* Text that provides additional guidance to the user
|
|
5191
5191
|
*/
|
|
5192
5192
|
helperText?: string;
|
|
5193
|
+
/**
|
|
5194
|
+
* If `true`, the select field will display an optional indicator.
|
|
5195
|
+
* If the `isRequired` prop is also `true`, this prop will be ignored.
|
|
5196
|
+
*/
|
|
5197
|
+
isOptional?: boolean;
|
|
5193
5198
|
}
|
|
5194
5199
|
type OmittedProps$2 = 'readOnly' | 'size';
|
|
5195
5200
|
interface SelectProps extends Omit<HTMLQdsProps<'select'>, OmittedProps$2>, SelectOptions {
|