@datacrest/dcuikit 1.0.21 → 1.0.23
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/build/components/Molecule/DatePicker/const.d.ts +8 -0
- package/build/components/Molecule/DatePicker/types.d.ts +1 -0
- package/build/components/Molecule/Dialog/index.d.ts +1 -1
- package/build/components/Molecule/Separator/Separator.d.ts +4 -0
- package/build/components/Molecule/Separator/Separator.stories.d.ts +6 -0
- package/build/components/Molecule/Separator/Separator.test.d.ts +1 -0
- package/build/components/Molecule/Separator/index.d.ts +2 -0
- package/build/components/Molecule/Separator/types.d.ts +18 -0
- package/build/index.css +2 -2
- package/build/index.d.ts +1 -0
- package/build/index.esm.css +2 -2
- package/build/index.esm.js +2 -2
- package/build/index.esm.js.map +1 -1
- package/build/index.js +2 -2
- package/build/index.js.map +1 -1
- package/build/tsconfig.prod.tsbuildinfo +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
export type SeparatorOrientation = 'horizontal' | 'vertical';
|
|
3
|
+
export type SeparatorWeight = 'small' | 'medium' | 'large';
|
|
4
|
+
export type SeparatorVariant = 'solid' | 'dashed' | 'dotted';
|
|
5
|
+
export type SeparatorColor = 'default' | 'primary' | 'secondary' | 'tertiary' | 'danger' | 'warning' | 'harford' | 'muted' | 'accent' | 'border' | 'input' | 'background' | 'foreground' | 'light' | 'dark';
|
|
6
|
+
export declare const orientations: SeparatorOrientation[];
|
|
7
|
+
export declare const weights: SeparatorWeight[];
|
|
8
|
+
export declare const variants: SeparatorVariant[];
|
|
9
|
+
export declare const colors: SeparatorColor[];
|
|
10
|
+
export interface SeparatorProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
11
|
+
orientation?: SeparatorOrientation;
|
|
12
|
+
weight?: SeparatorWeight;
|
|
13
|
+
variant?: SeparatorVariant;
|
|
14
|
+
color?: SeparatorColor;
|
|
15
|
+
fluid?: boolean;
|
|
16
|
+
className?: string;
|
|
17
|
+
style?: CSSProperties;
|
|
18
|
+
}
|