@qasa/qds-ui 0.17.1 → 0.18.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.d.mts CHANGED
@@ -3793,9 +3793,6 @@ declare const getSizeStyles$2: (theme: {
3793
3793
  yellow70: string;
3794
3794
  yellow60: string;
3795
3795
  yellow50: string;
3796
- /**
3797
- * Size of the label
3798
- */
3799
3796
  yellow40: string;
3800
3797
  yellow30: string;
3801
3798
  yellow20: string;
@@ -4681,10 +4678,6 @@ declare const getSizeStyles: (theme: {
4681
4678
  brandPrimary: string;
4682
4679
  brandPrimaryHover: string;
4683
4680
  brandPrimaryActive: string;
4684
- /**
4685
- * Sets the color of the text
4686
- * @default 'normal'
4687
- */
4688
4681
  brandSecondary: string;
4689
4682
  brandSecondaryHover: string;
4690
4683
  brandSecondaryActive: string;
@@ -5190,6 +5183,11 @@ interface SelectOptions extends SelectBaseOptions {
5190
5183
  * Text that provides additional guidance to the user
5191
5184
  */
5192
5185
  helperText?: string;
5186
+ /**
5187
+ * If `true`, the select field will display an optional indicator.
5188
+ * If the `isRequired` prop is also `true`, this prop will be ignored.
5189
+ */
5190
+ isOptional?: boolean;
5193
5191
  }
5194
5192
  type OmittedProps$2 = 'readOnly' | 'size';
5195
5193
  interface SelectProps extends Omit<HTMLQdsProps<'select'>, OmittedProps$2>, SelectOptions {
package/dist/index.d.ts CHANGED
@@ -3793,9 +3793,6 @@ declare const getSizeStyles$2: (theme: {
3793
3793
  yellow70: string;
3794
3794
  yellow60: string;
3795
3795
  yellow50: string;
3796
- /**
3797
- * Size of the label
3798
- */
3799
3796
  yellow40: string;
3800
3797
  yellow30: string;
3801
3798
  yellow20: string;
@@ -4681,10 +4678,6 @@ declare const getSizeStyles: (theme: {
4681
4678
  brandPrimary: string;
4682
4679
  brandPrimaryHover: string;
4683
4680
  brandPrimaryActive: string;
4684
- /**
4685
- * Sets the color of the text
4686
- * @default 'normal'
4687
- */
4688
4681
  brandSecondary: string;
4689
4682
  brandSecondaryHover: string;
4690
4683
  brandSecondaryActive: string;
@@ -5190,6 +5183,11 @@ interface SelectOptions extends SelectBaseOptions {
5190
5183
  * Text that provides additional guidance to the user
5191
5184
  */
5192
5185
  helperText?: string;
5186
+ /**
5187
+ * If `true`, the select field will display an optional indicator.
5188
+ * If the `isRequired` prop is also `true`, this prop will be ignored.
5189
+ */
5190
+ isOptional?: boolean;
5193
5191
  }
5194
5192
  type OmittedProps$2 = 'readOnly' | 'size';
5195
5193
  interface SelectProps extends Omit<HTMLQdsProps<'select'>, OmittedProps$2>, SelectOptions {