@solace-health/ui 0.10.78 → 0.10.80
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 +259 -240
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +210 -191
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -819,11 +819,13 @@ declare const _default$3: {
|
|
|
819
819
|
illustration: "Clock" | "Coffee" | "Medication" | "Notepad";
|
|
820
820
|
}[];
|
|
821
821
|
}) => react_jsx_runtime.JSX.Element;
|
|
822
|
-
InputLabel: ({ label, isLabelBold, required, details, }: {
|
|
822
|
+
InputLabel: ({ label, isLabelBold, required, details, helpContent, helpLabel, }: {
|
|
823
823
|
label?: string | JSX.Element | null | undefined;
|
|
824
824
|
isLabelBold?: boolean | undefined;
|
|
825
825
|
required?: boolean | undefined;
|
|
826
826
|
details?: string | null | undefined;
|
|
827
|
+
helpContent?: string | JSX.Element | undefined;
|
|
828
|
+
helpLabel?: string | JSX.Element | undefined;
|
|
827
829
|
}) => react_jsx_runtime.JSX.Element | null;
|
|
828
830
|
DateSelect: ({ label, isLabelBold, name, details, disabled, defaultValue, startRange, endRange, formOptions, errorMessage, options, style, format, ...inputProps }: {
|
|
829
831
|
[inputProps: string]: unknown;
|
|
@@ -841,7 +843,7 @@ declare const _default$3: {
|
|
|
841
843
|
endRange?: string | null | undefined;
|
|
842
844
|
format?: string | undefined;
|
|
843
845
|
}) => react_jsx_runtime.JSX.Element;
|
|
844
|
-
TextInput: ({ name, label, details, type, formOptions, previewOnly, textArea, marginBottom, isLabelBold, format, errorMessage, ...inputProps }: {
|
|
846
|
+
TextInput: ({ name, label, details, type, formOptions, previewOnly, textArea, marginBottom, isLabelBold, helpContent, helpLabel, format, errorMessage, ...inputProps }: {
|
|
845
847
|
[inputProps: string]: unknown;
|
|
846
848
|
name: string;
|
|
847
849
|
label?: string | JSX.Element | null | undefined;
|
|
@@ -853,6 +855,8 @@ declare const _default$3: {
|
|
|
853
855
|
marginBottom?: string | undefined;
|
|
854
856
|
placeholder?: string | undefined;
|
|
855
857
|
isLabelBold?: boolean | undefined;
|
|
858
|
+
helpContent?: string | JSX.Element | undefined;
|
|
859
|
+
helpLabel?: string | JSX.Element | undefined;
|
|
856
860
|
controlled?: boolean | undefined;
|
|
857
861
|
format?: string | unknown[] | undefined;
|
|
858
862
|
errorMessage?: string | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -819,11 +819,13 @@ declare const _default$3: {
|
|
|
819
819
|
illustration: "Clock" | "Coffee" | "Medication" | "Notepad";
|
|
820
820
|
}[];
|
|
821
821
|
}) => react_jsx_runtime.JSX.Element;
|
|
822
|
-
InputLabel: ({ label, isLabelBold, required, details, }: {
|
|
822
|
+
InputLabel: ({ label, isLabelBold, required, details, helpContent, helpLabel, }: {
|
|
823
823
|
label?: string | JSX.Element | null | undefined;
|
|
824
824
|
isLabelBold?: boolean | undefined;
|
|
825
825
|
required?: boolean | undefined;
|
|
826
826
|
details?: string | null | undefined;
|
|
827
|
+
helpContent?: string | JSX.Element | undefined;
|
|
828
|
+
helpLabel?: string | JSX.Element | undefined;
|
|
827
829
|
}) => react_jsx_runtime.JSX.Element | null;
|
|
828
830
|
DateSelect: ({ label, isLabelBold, name, details, disabled, defaultValue, startRange, endRange, formOptions, errorMessage, options, style, format, ...inputProps }: {
|
|
829
831
|
[inputProps: string]: unknown;
|
|
@@ -841,7 +843,7 @@ declare const _default$3: {
|
|
|
841
843
|
endRange?: string | null | undefined;
|
|
842
844
|
format?: string | undefined;
|
|
843
845
|
}) => react_jsx_runtime.JSX.Element;
|
|
844
|
-
TextInput: ({ name, label, details, type, formOptions, previewOnly, textArea, marginBottom, isLabelBold, format, errorMessage, ...inputProps }: {
|
|
846
|
+
TextInput: ({ name, label, details, type, formOptions, previewOnly, textArea, marginBottom, isLabelBold, helpContent, helpLabel, format, errorMessage, ...inputProps }: {
|
|
845
847
|
[inputProps: string]: unknown;
|
|
846
848
|
name: string;
|
|
847
849
|
label?: string | JSX.Element | null | undefined;
|
|
@@ -853,6 +855,8 @@ declare const _default$3: {
|
|
|
853
855
|
marginBottom?: string | undefined;
|
|
854
856
|
placeholder?: string | undefined;
|
|
855
857
|
isLabelBold?: boolean | undefined;
|
|
858
|
+
helpContent?: string | JSX.Element | undefined;
|
|
859
|
+
helpLabel?: string | JSX.Element | undefined;
|
|
856
860
|
controlled?: boolean | undefined;
|
|
857
861
|
format?: string | unknown[] | undefined;
|
|
858
862
|
errorMessage?: string | undefined;
|