@solace-health/ui 0.6.6 → 0.7.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/index.cjs +114 -107
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +94 -88
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -72,6 +72,9 @@ declare const _default$2: {
|
|
|
72
72
|
direction?: "left" | "right" | "up" | "down" | undefined;
|
|
73
73
|
}) => react_jsx_runtime.JSX.Element;
|
|
74
74
|
Calendar: () => react_jsx_runtime.JSX.Element;
|
|
75
|
+
Checkbox: ({ checked }: {
|
|
76
|
+
checked?: boolean | undefined;
|
|
77
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
75
78
|
CircleExclamation: ({ color }: {
|
|
76
79
|
color?: string | undefined;
|
|
77
80
|
}) => react_jsx_runtime.JSX.Element;
|
|
@@ -168,6 +171,11 @@ declare type Props$5 = {
|
|
|
168
171
|
};
|
|
169
172
|
declare const Modal: ({ children, isOpen, onClose, width, style, bodyStyle, }: Props$5) => react_jsx_runtime.JSX.Element;
|
|
170
173
|
|
|
174
|
+
declare const Progress: ({ percent, size }: {
|
|
175
|
+
percent?: number | undefined;
|
|
176
|
+
size?: number | undefined;
|
|
177
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
178
|
+
|
|
171
179
|
declare type Props$4 = {
|
|
172
180
|
onChange: (value: string) => void;
|
|
173
181
|
options: string[] | number[] | Array<{
|
|
@@ -440,4 +448,4 @@ declare const VantaLogo: ({ contentfulConfig, size, }: {
|
|
|
440
448
|
size?: number | undefined;
|
|
441
449
|
}) => react_jsx_runtime.JSX.Element | null;
|
|
442
450
|
|
|
443
|
-
export { Avatar, _default$3 as Button, Contentful, ContentfulLottieFileSlug, DateSelect, Drawer, _default$1 as Form, _default$2 as Icons, LoadingSpinner, LottieAnimation, Modal, Segmented, Size, SolaceLogo, SolaceThemeProvider, Tabs, TimeSelect, Toggle, Tooltip, _default as Typography, VantaLogo };
|
|
451
|
+
export { Avatar, _default$3 as Button, Contentful, ContentfulLottieFileSlug, DateSelect, Drawer, _default$1 as Form, _default$2 as Icons, LoadingSpinner, LottieAnimation, Modal, Progress, Segmented, Size, SolaceLogo, SolaceThemeProvider, Tabs, TimeSelect, Toggle, Tooltip, _default as Typography, VantaLogo };
|
package/dist/index.d.ts
CHANGED
|
@@ -72,6 +72,9 @@ declare const _default$2: {
|
|
|
72
72
|
direction?: "left" | "right" | "up" | "down" | undefined;
|
|
73
73
|
}) => react_jsx_runtime.JSX.Element;
|
|
74
74
|
Calendar: () => react_jsx_runtime.JSX.Element;
|
|
75
|
+
Checkbox: ({ checked }: {
|
|
76
|
+
checked?: boolean | undefined;
|
|
77
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
75
78
|
CircleExclamation: ({ color }: {
|
|
76
79
|
color?: string | undefined;
|
|
77
80
|
}) => react_jsx_runtime.JSX.Element;
|
|
@@ -168,6 +171,11 @@ declare type Props$5 = {
|
|
|
168
171
|
};
|
|
169
172
|
declare const Modal: ({ children, isOpen, onClose, width, style, bodyStyle, }: Props$5) => react_jsx_runtime.JSX.Element;
|
|
170
173
|
|
|
174
|
+
declare const Progress: ({ percent, size }: {
|
|
175
|
+
percent?: number | undefined;
|
|
176
|
+
size?: number | undefined;
|
|
177
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
178
|
+
|
|
171
179
|
declare type Props$4 = {
|
|
172
180
|
onChange: (value: string) => void;
|
|
173
181
|
options: string[] | number[] | Array<{
|
|
@@ -440,4 +448,4 @@ declare const VantaLogo: ({ contentfulConfig, size, }: {
|
|
|
440
448
|
size?: number | undefined;
|
|
441
449
|
}) => react_jsx_runtime.JSX.Element | null;
|
|
442
450
|
|
|
443
|
-
export { Avatar, _default$3 as Button, Contentful, ContentfulLottieFileSlug, DateSelect, Drawer, _default$1 as Form, _default$2 as Icons, LoadingSpinner, LottieAnimation, Modal, Segmented, Size, SolaceLogo, SolaceThemeProvider, Tabs, TimeSelect, Toggle, Tooltip, _default as Typography, VantaLogo };
|
|
451
|
+
export { Avatar, _default$3 as Button, Contentful, ContentfulLottieFileSlug, DateSelect, Drawer, _default$1 as Form, _default$2 as Icons, LoadingSpinner, LottieAnimation, Modal, Progress, Segmented, Size, SolaceLogo, SolaceThemeProvider, Tabs, TimeSelect, Toggle, Tooltip, _default as Typography, VantaLogo };
|