@nimbus-ds/components 5.24.0 → 5.26.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 +12 -0
- package/dist/Accordion/index.js +1 -1
- package/dist/Alert/index.js +1 -1
- package/dist/CHANGELOG.md +12 -0
- package/dist/Chip/index.js +1 -1
- package/dist/Divider/index.d.ts +30 -0
- package/dist/Divider/index.js +2 -0
- package/dist/FileUploader/index.js +1 -1
- package/dist/Input/index.js +1 -1
- package/dist/Modal/index.js +1 -1
- package/dist/MultiSelect/index.js +1 -1
- package/dist/Pagination/index.js +1 -1
- package/dist/Select/index.js +1 -1
- package/dist/Stepper/index.js +1 -1
- package/dist/Tag/index.d.ts +1 -1
- package/dist/Thumbnail/index.js +1 -1
- package/dist/Toast/index.js +1 -1
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +20 -1
- package/dist/index.js +1 -1
- package/package.json +6 -2
package/dist/index.d.ts
CHANGED
|
@@ -2845,7 +2845,7 @@ export interface TagProperties {
|
|
|
2845
2845
|
* Change the visual style of the tag.
|
|
2846
2846
|
* @default neutral
|
|
2847
2847
|
*/
|
|
2848
|
-
appearance?: "primary" | "success" | "warning" | "danger" | "neutral";
|
|
2848
|
+
appearance?: "primary" | "success" | "warning" | "danger" | "neutral" | "ai-generative";
|
|
2849
2849
|
}
|
|
2850
2850
|
export type TagProps = TagProperties & HTMLAttributes<HTMLDivElement>;
|
|
2851
2851
|
export declare const Tag: React.FC<TagProps> & TagComponents;
|
|
@@ -3069,6 +3069,25 @@ export interface ProgressBarProperties {
|
|
|
3069
3069
|
*/
|
|
3070
3070
|
export declare const ProgressBar: React.ForwardRefExoticComponent<ProgressBarProperties & Omit<React.HTMLAttributes<HTMLDivElement>, keyof ProgressBarProperties> & React.RefAttributes<HTMLDivElement>> & ProgressBarComponents;
|
|
3071
3071
|
export type ProgressBarProps = ComponentPropsWithRef<typeof ProgressBar>;
|
|
3072
|
+
export interface DividerProperties {
|
|
3073
|
+
/**
|
|
3074
|
+
* Defines the orientation of the divider.
|
|
3075
|
+
* @default horizontal
|
|
3076
|
+
*/
|
|
3077
|
+
orientation?: "horizontal" | "vertical";
|
|
3078
|
+
/**
|
|
3079
|
+
* Visual appearance color.
|
|
3080
|
+
* @default neutral
|
|
3081
|
+
*/
|
|
3082
|
+
appearance?: "neutral";
|
|
3083
|
+
/**
|
|
3084
|
+
* Thickness level based on shape.border.width tokens.
|
|
3085
|
+
* @default 1
|
|
3086
|
+
*/
|
|
3087
|
+
thickness?: 1 | 2 | 3;
|
|
3088
|
+
}
|
|
3089
|
+
export type DividerProps = DividerProperties & HTMLAttributes<HTMLHRElement>;
|
|
3090
|
+
export declare const Divider: React.FC<DividerProps>;
|
|
3072
3091
|
export interface AccordionBodyProperties {
|
|
3073
3092
|
/**
|
|
3074
3093
|
* The content of the accordion body.
|