@solace-health/ui 0.10.0 → 0.10.2
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 +190 -184
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -4
- package/dist/index.d.ts +10 -4
- package/dist/index.js +157 -151
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -193,6 +193,9 @@ declare const _default$5: {
|
|
|
193
193
|
active?: boolean | undefined;
|
|
194
194
|
color?: string | undefined;
|
|
195
195
|
}) => react_jsx_runtime.JSX.Element;
|
|
196
|
+
InfoCircleOutlined: ({ color }: {
|
|
197
|
+
color?: string | undefined;
|
|
198
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
196
199
|
NoteDocument: () => react_jsx_runtime.JSX.Element;
|
|
197
200
|
CircleExclamation: ({ color }: {
|
|
198
201
|
color?: string | undefined;
|
|
@@ -518,7 +521,7 @@ declare const _default$2: {
|
|
|
518
521
|
CheckboxGroup: ({ name, label, details, options, inline, previewOnly, other, errorMessage, formOptions, ...inputProps }: {
|
|
519
522
|
[inputProps: string]: unknown;
|
|
520
523
|
name: string;
|
|
521
|
-
label
|
|
524
|
+
label?: string | react.ReactElement<any, string | react.JSXElementConstructor<any>> | undefined;
|
|
522
525
|
details?: string | undefined;
|
|
523
526
|
inline?: boolean | undefined;
|
|
524
527
|
previewOnly?: boolean | undefined;
|
|
@@ -549,7 +552,7 @@ declare const _default$2: {
|
|
|
549
552
|
defaultValue?: string | undefined;
|
|
550
553
|
options?: object | undefined;
|
|
551
554
|
}) => react_jsx_runtime.JSX.Element;
|
|
552
|
-
TextInput: ({ name, label, details, type, formOptions, previewOnly, textArea, marginBottom, isLabelBold, format, errorMessage, ...inputProps }: {
|
|
555
|
+
TextInput: ({ name, label, details, type, formOptions, previewOnly, textArea, marginBottom, isLabelBold, format, errorMessage, isMask, ...inputProps }: {
|
|
553
556
|
[inputProps: string]: unknown;
|
|
554
557
|
name: string;
|
|
555
558
|
label?: string | JSX.Element | null | undefined;
|
|
@@ -564,6 +567,7 @@ declare const _default$2: {
|
|
|
564
567
|
controlled?: boolean | undefined;
|
|
565
568
|
format?: any;
|
|
566
569
|
errorMessage?: string | undefined;
|
|
570
|
+
isMask?: boolean | undefined;
|
|
567
571
|
}) => react_jsx_runtime.JSX.Element;
|
|
568
572
|
TimeSelect: ({ label, name, ...inputProps }: {
|
|
569
573
|
[inputProps: string]: unknown;
|
|
@@ -660,7 +664,7 @@ declare const _default$2: {
|
|
|
660
664
|
} | undefined;
|
|
661
665
|
defaultValue?: string | undefined;
|
|
662
666
|
}) => react_jsx_runtime.JSX.Element;
|
|
663
|
-
Signature: ({ label: labelText, name, formOptions, description, previewOnly, errorMessage,
|
|
667
|
+
Signature: ({ label: labelText, name, formOptions, description, previewOnly, errorMessage, signatureType, date, isAdvocate, showIcon, formStyle, ...inputProps }: {
|
|
664
668
|
[inputProps: string]: unknown;
|
|
665
669
|
label: string;
|
|
666
670
|
name: string;
|
|
@@ -669,8 +673,10 @@ declare const _default$2: {
|
|
|
669
673
|
description?: string | JSX.Element | undefined;
|
|
670
674
|
errorMessage?: string | undefined;
|
|
671
675
|
showIcon?: boolean | undefined;
|
|
672
|
-
|
|
676
|
+
signatureType?: "client" | "advocate" | undefined;
|
|
677
|
+
date?: Date | null | undefined;
|
|
673
678
|
formStyle?: string | undefined;
|
|
679
|
+
isAdvocate?: boolean | undefined;
|
|
674
680
|
}) => react_jsx_runtime.JSX.Element;
|
|
675
681
|
Submit: ({ label, isSubmitting, hideWhenInvalid, ...extraProps }: {
|
|
676
682
|
[extraProps: string]: unknown;
|
package/dist/index.d.ts
CHANGED
|
@@ -193,6 +193,9 @@ declare const _default$5: {
|
|
|
193
193
|
active?: boolean | undefined;
|
|
194
194
|
color?: string | undefined;
|
|
195
195
|
}) => react_jsx_runtime.JSX.Element;
|
|
196
|
+
InfoCircleOutlined: ({ color }: {
|
|
197
|
+
color?: string | undefined;
|
|
198
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
196
199
|
NoteDocument: () => react_jsx_runtime.JSX.Element;
|
|
197
200
|
CircleExclamation: ({ color }: {
|
|
198
201
|
color?: string | undefined;
|
|
@@ -518,7 +521,7 @@ declare const _default$2: {
|
|
|
518
521
|
CheckboxGroup: ({ name, label, details, options, inline, previewOnly, other, errorMessage, formOptions, ...inputProps }: {
|
|
519
522
|
[inputProps: string]: unknown;
|
|
520
523
|
name: string;
|
|
521
|
-
label
|
|
524
|
+
label?: string | react.ReactElement<any, string | react.JSXElementConstructor<any>> | undefined;
|
|
522
525
|
details?: string | undefined;
|
|
523
526
|
inline?: boolean | undefined;
|
|
524
527
|
previewOnly?: boolean | undefined;
|
|
@@ -549,7 +552,7 @@ declare const _default$2: {
|
|
|
549
552
|
defaultValue?: string | undefined;
|
|
550
553
|
options?: object | undefined;
|
|
551
554
|
}) => react_jsx_runtime.JSX.Element;
|
|
552
|
-
TextInput: ({ name, label, details, type, formOptions, previewOnly, textArea, marginBottom, isLabelBold, format, errorMessage, ...inputProps }: {
|
|
555
|
+
TextInput: ({ name, label, details, type, formOptions, previewOnly, textArea, marginBottom, isLabelBold, format, errorMessage, isMask, ...inputProps }: {
|
|
553
556
|
[inputProps: string]: unknown;
|
|
554
557
|
name: string;
|
|
555
558
|
label?: string | JSX.Element | null | undefined;
|
|
@@ -564,6 +567,7 @@ declare const _default$2: {
|
|
|
564
567
|
controlled?: boolean | undefined;
|
|
565
568
|
format?: any;
|
|
566
569
|
errorMessage?: string | undefined;
|
|
570
|
+
isMask?: boolean | undefined;
|
|
567
571
|
}) => react_jsx_runtime.JSX.Element;
|
|
568
572
|
TimeSelect: ({ label, name, ...inputProps }: {
|
|
569
573
|
[inputProps: string]: unknown;
|
|
@@ -660,7 +664,7 @@ declare const _default$2: {
|
|
|
660
664
|
} | undefined;
|
|
661
665
|
defaultValue?: string | undefined;
|
|
662
666
|
}) => react_jsx_runtime.JSX.Element;
|
|
663
|
-
Signature: ({ label: labelText, name, formOptions, description, previewOnly, errorMessage,
|
|
667
|
+
Signature: ({ label: labelText, name, formOptions, description, previewOnly, errorMessage, signatureType, date, isAdvocate, showIcon, formStyle, ...inputProps }: {
|
|
664
668
|
[inputProps: string]: unknown;
|
|
665
669
|
label: string;
|
|
666
670
|
name: string;
|
|
@@ -669,8 +673,10 @@ declare const _default$2: {
|
|
|
669
673
|
description?: string | JSX.Element | undefined;
|
|
670
674
|
errorMessage?: string | undefined;
|
|
671
675
|
showIcon?: boolean | undefined;
|
|
672
|
-
|
|
676
|
+
signatureType?: "client" | "advocate" | undefined;
|
|
677
|
+
date?: Date | null | undefined;
|
|
673
678
|
formStyle?: string | undefined;
|
|
679
|
+
isAdvocate?: boolean | undefined;
|
|
674
680
|
}) => react_jsx_runtime.JSX.Element;
|
|
675
681
|
Submit: ({ label, isSubmitting, hideWhenInvalid, ...extraProps }: {
|
|
676
682
|
[extraProps: string]: unknown;
|