@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/CHANGELOG.md +6 -0
- package/dist/CHANGELOG.md +6 -0
- package/dist/Select/index.d.ts +7 -1
- package/dist/Select/index.js +1 -1
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
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>;
|