@solace-health/ui 0.10.1 → 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 +172 -166
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -3
- package/dist/index.d.ts +5 -3
- package/dist/index.js +151 -145
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -521,7 +521,7 @@ declare const _default$2: {
|
|
|
521
521
|
CheckboxGroup: ({ name, label, details, options, inline, previewOnly, other, errorMessage, formOptions, ...inputProps }: {
|
|
522
522
|
[inputProps: string]: unknown;
|
|
523
523
|
name: string;
|
|
524
|
-
label
|
|
524
|
+
label?: string | react.ReactElement<any, string | react.JSXElementConstructor<any>> | undefined;
|
|
525
525
|
details?: string | undefined;
|
|
526
526
|
inline?: boolean | undefined;
|
|
527
527
|
previewOnly?: boolean | undefined;
|
|
@@ -664,7 +664,7 @@ declare const _default$2: {
|
|
|
664
664
|
} | undefined;
|
|
665
665
|
defaultValue?: string | undefined;
|
|
666
666
|
}) => react_jsx_runtime.JSX.Element;
|
|
667
|
-
Signature: ({ label: labelText, name, formOptions, description, previewOnly, errorMessage,
|
|
667
|
+
Signature: ({ label: labelText, name, formOptions, description, previewOnly, errorMessage, signatureType, date, isAdvocate, showIcon, formStyle, ...inputProps }: {
|
|
668
668
|
[inputProps: string]: unknown;
|
|
669
669
|
label: string;
|
|
670
670
|
name: string;
|
|
@@ -673,8 +673,10 @@ declare const _default$2: {
|
|
|
673
673
|
description?: string | JSX.Element | undefined;
|
|
674
674
|
errorMessage?: string | undefined;
|
|
675
675
|
showIcon?: boolean | undefined;
|
|
676
|
-
|
|
676
|
+
signatureType?: "client" | "advocate" | undefined;
|
|
677
|
+
date?: Date | null | undefined;
|
|
677
678
|
formStyle?: string | undefined;
|
|
679
|
+
isAdvocate?: boolean | undefined;
|
|
678
680
|
}) => react_jsx_runtime.JSX.Element;
|
|
679
681
|
Submit: ({ label, isSubmitting, hideWhenInvalid, ...extraProps }: {
|
|
680
682
|
[extraProps: string]: unknown;
|
package/dist/index.d.ts
CHANGED
|
@@ -521,7 +521,7 @@ declare const _default$2: {
|
|
|
521
521
|
CheckboxGroup: ({ name, label, details, options, inline, previewOnly, other, errorMessage, formOptions, ...inputProps }: {
|
|
522
522
|
[inputProps: string]: unknown;
|
|
523
523
|
name: string;
|
|
524
|
-
label
|
|
524
|
+
label?: string | react.ReactElement<any, string | react.JSXElementConstructor<any>> | undefined;
|
|
525
525
|
details?: string | undefined;
|
|
526
526
|
inline?: boolean | undefined;
|
|
527
527
|
previewOnly?: boolean | undefined;
|
|
@@ -664,7 +664,7 @@ declare const _default$2: {
|
|
|
664
664
|
} | undefined;
|
|
665
665
|
defaultValue?: string | undefined;
|
|
666
666
|
}) => react_jsx_runtime.JSX.Element;
|
|
667
|
-
Signature: ({ label: labelText, name, formOptions, description, previewOnly, errorMessage,
|
|
667
|
+
Signature: ({ label: labelText, name, formOptions, description, previewOnly, errorMessage, signatureType, date, isAdvocate, showIcon, formStyle, ...inputProps }: {
|
|
668
668
|
[inputProps: string]: unknown;
|
|
669
669
|
label: string;
|
|
670
670
|
name: string;
|
|
@@ -673,8 +673,10 @@ declare const _default$2: {
|
|
|
673
673
|
description?: string | JSX.Element | undefined;
|
|
674
674
|
errorMessage?: string | undefined;
|
|
675
675
|
showIcon?: boolean | undefined;
|
|
676
|
-
|
|
676
|
+
signatureType?: "client" | "advocate" | undefined;
|
|
677
|
+
date?: Date | null | undefined;
|
|
677
678
|
formStyle?: string | undefined;
|
|
679
|
+
isAdvocate?: boolean | undefined;
|
|
678
680
|
}) => react_jsx_runtime.JSX.Element;
|
|
679
681
|
Submit: ({ label, isSubmitting, hideWhenInvalid, ...extraProps }: {
|
|
680
682
|
[extraProps: string]: unknown;
|