@solace-health/ui 0.10.5 → 0.10.7
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 +213 -182
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -3
- package/dist/index.d.ts +12 -3
- package/dist/index.js +187 -157
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/dist/index.d.cts
CHANGED
|
@@ -38,6 +38,7 @@ declare type Props$c = {
|
|
|
38
38
|
title: React.ReactNode | string;
|
|
39
39
|
color?: string;
|
|
40
40
|
};
|
|
41
|
+
color?: string;
|
|
41
42
|
[extraProps: string]: unknown;
|
|
42
43
|
};
|
|
43
44
|
declare const _default$7: {
|
|
@@ -45,7 +46,7 @@ declare const _default$7: {
|
|
|
45
46
|
Outline: ({ children, isSubmitting, toolTip, ...extraProps }: Props$c) => react_jsx_runtime.JSX.Element;
|
|
46
47
|
Unstyled: ({ children, isSubmitting, toolTip, ...extraProps }: Props$c) => react_jsx_runtime.JSX.Element;
|
|
47
48
|
Secondary: ({ children, isSubmitting, toolTip, ...extraProps }: Props$c) => react_jsx_runtime.JSX.Element;
|
|
48
|
-
Link: ({ children, toolTip, ...extraProps }: Props$c) => react_jsx_runtime.JSX.Element;
|
|
49
|
+
Link: ({ children, toolTip, color, ...extraProps }: Props$c) => react_jsx_runtime.JSX.Element;
|
|
49
50
|
};
|
|
50
51
|
|
|
51
52
|
declare type Item = {
|
|
@@ -565,7 +566,7 @@ declare const _default$2: {
|
|
|
565
566
|
placeholder?: string | undefined;
|
|
566
567
|
isLabelBold?: boolean | undefined;
|
|
567
568
|
controlled?: boolean | undefined;
|
|
568
|
-
format?: string | undefined;
|
|
569
|
+
format?: string | unknown[] | undefined;
|
|
569
570
|
errorMessage?: string | undefined;
|
|
570
571
|
}) => react_jsx_runtime.JSX.Element;
|
|
571
572
|
TimeSelect: ({ label, name, ...inputProps }: {
|
|
@@ -773,6 +774,14 @@ declare const _default: {
|
|
|
773
774
|
}) => react_jsx_runtime.JSX.Element;
|
|
774
775
|
};
|
|
775
776
|
|
|
777
|
+
declare enum FormatType {
|
|
778
|
+
Phone = "phone",
|
|
779
|
+
Currency = "currency",
|
|
780
|
+
Email = "email",
|
|
781
|
+
Zipcode = "zipcode",
|
|
782
|
+
ShortDate = "shortDate"
|
|
783
|
+
}
|
|
784
|
+
|
|
776
785
|
declare const VantaLogo: ({ contentfulConfig, size, }: {
|
|
777
786
|
contentfulConfig: {
|
|
778
787
|
space: string;
|
|
@@ -781,4 +790,4 @@ declare const VantaLogo: ({ contentfulConfig, size, }: {
|
|
|
781
790
|
size?: number | undefined;
|
|
782
791
|
}) => react_jsx_runtime.JSX.Element | null;
|
|
783
792
|
|
|
784
|
-
export { Avatar, _default$7 as Button, Collapse, Contentful, ContentfulLottieFileSlug, DateSelect, Drawer, Dropdown, ErrorTypography, _default$6 as File, _default$2 as Form, _default$5 as Icons, LoadingSpinner, LottieAnimation, _default$4 as Menu, Modal, _default$1 as NavigationMenu, _default$3 as NumberedProgressSteps, Pill, Progress, Segmented, Size, SolaceLogo, SolaceThemeProvider, Tabs, TimeSelect, Toggle, Tooltip, _default as Typography, VantaLogo };
|
|
793
|
+
export { Avatar, _default$7 as Button, Collapse, Contentful, ContentfulLottieFileSlug, DateSelect, Drawer, Dropdown, ErrorTypography, _default$6 as File, _default$2 as Form, FormatType, _default$5 as Icons, LoadingSpinner, LottieAnimation, _default$4 as Menu, Modal, _default$1 as NavigationMenu, _default$3 as NumberedProgressSteps, Pill, Progress, Segmented, Size, SolaceLogo, SolaceThemeProvider, Tabs, TimeSelect, Toggle, Tooltip, _default as Typography, VantaLogo };
|
package/dist/index.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ declare type Props$c = {
|
|
|
38
38
|
title: React.ReactNode | string;
|
|
39
39
|
color?: string;
|
|
40
40
|
};
|
|
41
|
+
color?: string;
|
|
41
42
|
[extraProps: string]: unknown;
|
|
42
43
|
};
|
|
43
44
|
declare const _default$7: {
|
|
@@ -45,7 +46,7 @@ declare const _default$7: {
|
|
|
45
46
|
Outline: ({ children, isSubmitting, toolTip, ...extraProps }: Props$c) => react_jsx_runtime.JSX.Element;
|
|
46
47
|
Unstyled: ({ children, isSubmitting, toolTip, ...extraProps }: Props$c) => react_jsx_runtime.JSX.Element;
|
|
47
48
|
Secondary: ({ children, isSubmitting, toolTip, ...extraProps }: Props$c) => react_jsx_runtime.JSX.Element;
|
|
48
|
-
Link: ({ children, toolTip, ...extraProps }: Props$c) => react_jsx_runtime.JSX.Element;
|
|
49
|
+
Link: ({ children, toolTip, color, ...extraProps }: Props$c) => react_jsx_runtime.JSX.Element;
|
|
49
50
|
};
|
|
50
51
|
|
|
51
52
|
declare type Item = {
|
|
@@ -565,7 +566,7 @@ declare const _default$2: {
|
|
|
565
566
|
placeholder?: string | undefined;
|
|
566
567
|
isLabelBold?: boolean | undefined;
|
|
567
568
|
controlled?: boolean | undefined;
|
|
568
|
-
format?: string | undefined;
|
|
569
|
+
format?: string | unknown[] | undefined;
|
|
569
570
|
errorMessage?: string | undefined;
|
|
570
571
|
}) => react_jsx_runtime.JSX.Element;
|
|
571
572
|
TimeSelect: ({ label, name, ...inputProps }: {
|
|
@@ -773,6 +774,14 @@ declare const _default: {
|
|
|
773
774
|
}) => react_jsx_runtime.JSX.Element;
|
|
774
775
|
};
|
|
775
776
|
|
|
777
|
+
declare enum FormatType {
|
|
778
|
+
Phone = "phone",
|
|
779
|
+
Currency = "currency",
|
|
780
|
+
Email = "email",
|
|
781
|
+
Zipcode = "zipcode",
|
|
782
|
+
ShortDate = "shortDate"
|
|
783
|
+
}
|
|
784
|
+
|
|
776
785
|
declare const VantaLogo: ({ contentfulConfig, size, }: {
|
|
777
786
|
contentfulConfig: {
|
|
778
787
|
space: string;
|
|
@@ -781,4 +790,4 @@ declare const VantaLogo: ({ contentfulConfig, size, }: {
|
|
|
781
790
|
size?: number | undefined;
|
|
782
791
|
}) => react_jsx_runtime.JSX.Element | null;
|
|
783
792
|
|
|
784
|
-
export { Avatar, _default$7 as Button, Collapse, Contentful, ContentfulLottieFileSlug, DateSelect, Drawer, Dropdown, ErrorTypography, _default$6 as File, _default$2 as Form, _default$5 as Icons, LoadingSpinner, LottieAnimation, _default$4 as Menu, Modal, _default$1 as NavigationMenu, _default$3 as NumberedProgressSteps, Pill, Progress, Segmented, Size, SolaceLogo, SolaceThemeProvider, Tabs, TimeSelect, Toggle, Tooltip, _default as Typography, VantaLogo };
|
|
793
|
+
export { Avatar, _default$7 as Button, Collapse, Contentful, ContentfulLottieFileSlug, DateSelect, Drawer, Dropdown, ErrorTypography, _default$6 as File, _default$2 as Form, FormatType, _default$5 as Icons, LoadingSpinner, LottieAnimation, _default$4 as Menu, Modal, _default$1 as NavigationMenu, _default$3 as NumberedProgressSteps, Pill, Progress, Segmented, Size, SolaceLogo, SolaceThemeProvider, Tabs, TimeSelect, Toggle, Tooltip, _default as Typography, VantaLogo };
|