@qasa/qds-ui 0.17.0 → 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 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 {
@@ -5223,12 +5228,12 @@ interface StackOptions {
5223
5228
  * The CSS `justify-content` property.
5224
5229
  * Controls the alignment of items on the main axis.
5225
5230
  */
5226
- justifyContent?: JustifyContent;
5231
+ justifyContent?: ResponsiveProp<JustifyContent>;
5227
5232
  /**
5228
5233
  * The CSS `align-items` property.
5229
5234
  * Controls the alignment of items on the cross axis.
5230
5235
  */
5231
- alignItems?: AlignItems;
5236
+ alignItems?: ResponsiveProp<AlignItems>;
5232
5237
  /**
5233
5238
  * The CSS `flex-wrap` property.
5234
5239
  * Controls whether children can wrap onto multiple lines.
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 {
@@ -5223,12 +5228,12 @@ interface StackOptions {
5223
5228
  * The CSS `justify-content` property.
5224
5229
  * Controls the alignment of items on the main axis.
5225
5230
  */
5226
- justifyContent?: JustifyContent;
5231
+ justifyContent?: ResponsiveProp<JustifyContent>;
5227
5232
  /**
5228
5233
  * The CSS `align-items` property.
5229
5234
  * Controls the alignment of items on the cross axis.
5230
5235
  */
5231
- alignItems?: AlignItems;
5236
+ alignItems?: ResponsiveProp<AlignItems>;
5232
5237
  /**
5233
5238
  * The CSS `flex-wrap` property.
5234
5239
  * Controls whether children can wrap onto multiple lines.