@nimbus-ds/components 5.25.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 +6 -0
- package/dist/CHANGELOG.md +6 -0
- package/dist/Divider/index.d.ts +30 -0
- package/dist/Divider/index.js +2 -0
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +19 -0
- package/dist/index.js +1 -1
- package/package.json +5 -1
package/dist/index.d.ts
CHANGED
|
@@ -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.
|