@nimbus-ds/components 5.27.0 → 5.28.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.ts CHANGED
@@ -2806,7 +2806,13 @@ export interface SelectProperties {
2806
2806
  * Change the visual style of the select.
2807
2807
  * @default neutral
2808
2808
  */
2809
- appearance?: "success" | "warning" | "danger" | "neutral";
2809
+ appearance?: "success" | "warning" | "danger" | "neutral" | "ai-generative";
2810
+ /**
2811
+ * Shows ai-generative appearance with active ai focus shadow.
2812
+ * When true, this styling takes precedence over `appearance`.
2813
+ * @default false
2814
+ */
2815
+ aiGenerated?: boolean;
2810
2816
  }
2811
2817
  export declare const Select: React.ForwardRefExoticComponent<SelectProperties & React.SelectHTMLAttributes<HTMLSelectElement> & React.InputHTMLAttributes<HTMLSelectElement> & React.RefAttributes<HTMLSelectElement>> & SelectComponents;
2812
2818
  export type SelectProps = ComponentPropsWithRef<typeof Select>;