uikit-react-public 0.40.5 → 0.42.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/components/Callout/Callout.d.ts +13 -0
- package/dist/components/Callout/Callout.stories.d.ts +48 -0
- package/dist/components/Callout/__tests__/Callout.test.d.ts +1 -0
- package/dist/components/Callout/index.d.ts +2 -0
- package/dist/components/ProgressBar/ProgressBar.d.ts +24 -0
- package/dist/components/ProgressBar/ProgressBar.stories.d.ts +77 -0
- package/dist/components/ProgressBar/__tests__/ProgressBar.test.d.ts +1 -0
- package/dist/components/ProgressBar/index.d.ts +2 -0
- package/dist/components/index.d.ts +4 -0
- package/dist/index.js +5094 -4877
- package/lib/components/Callout/Callout.stories.tsx +56 -0
- package/lib/components/Callout/Callout.tsx +109 -0
- package/lib/components/Callout/__tests__/Callout.test.tsx +59 -0
- package/lib/components/Callout/index.ts +2 -0
- package/lib/components/ProgressBar/ProgressBar.stories.tsx +131 -0
- package/lib/components/ProgressBar/ProgressBar.tsx +220 -0
- package/lib/components/ProgressBar/__tests__/ProgressBar.test.tsx +120 -0
- package/lib/components/ProgressBar/index.ts +6 -0
- package/lib/components/index.ts +10 -0
- package/package.json +1 -1
package/lib/components/index.ts
CHANGED
|
@@ -13,6 +13,9 @@ export type { StandaloneLinkProps } from './StandaloneLink';
|
|
|
13
13
|
export { default as Button } from './Button';
|
|
14
14
|
export type { ButtonProps } from './Button';
|
|
15
15
|
|
|
16
|
+
export { default as Callout } from './Callout';
|
|
17
|
+
export type { CalloutProps } from './Callout';
|
|
18
|
+
|
|
16
19
|
export { default as Label } from './Label';
|
|
17
20
|
export type { LabelProps } from './Label';
|
|
18
21
|
|
|
@@ -46,6 +49,13 @@ export type { BaseCheckboxProps, BaseCheckboxState } from './BaseCheckbox';
|
|
|
46
49
|
export { default as Spinner } from './Spinner';
|
|
47
50
|
export type { SpinnerProps } from './Spinner';
|
|
48
51
|
|
|
52
|
+
export { default as ProgressBar } from './ProgressBar';
|
|
53
|
+
export type {
|
|
54
|
+
ProgressBarProps,
|
|
55
|
+
ProgressBarSize,
|
|
56
|
+
ProgressBarVariant,
|
|
57
|
+
} from './ProgressBar';
|
|
58
|
+
|
|
49
59
|
export { default as Textarea } from './Textarea';
|
|
50
60
|
export type { TextareaProps } from './Textarea';
|
|
51
61
|
|