@solace-health/ui 0.9.55 → 0.9.56
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 +77 -76
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +73 -72
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -66,8 +66,9 @@ declare type Props$a = {
|
|
|
66
66
|
placeholder?: string | null;
|
|
67
67
|
className?: string | null;
|
|
68
68
|
hasError?: boolean;
|
|
69
|
+
disabled?: boolean;
|
|
69
70
|
};
|
|
70
|
-
declare const DateSelect: ({ value, onChange, startRange, endRange, defaultValue, format, placeholder, className, hasError, }: Props$a) => react_jsx_runtime.JSX.Element;
|
|
71
|
+
declare const DateSelect: ({ value, onChange, startRange, endRange, defaultValue, format, placeholder, className, hasError, disabled, }: Props$a) => react_jsx_runtime.JSX.Element;
|
|
71
72
|
|
|
72
73
|
declare type Props$9 = {
|
|
73
74
|
isOpen: boolean;
|
|
@@ -510,12 +511,13 @@ declare const _default$2: {
|
|
|
510
511
|
value: string;
|
|
511
512
|
}[];
|
|
512
513
|
}) => react_jsx_runtime.JSX.Element;
|
|
513
|
-
DateSelect: ({ label, isLabelBold, name, required, options, ...inputProps }: {
|
|
514
|
+
DateSelect: ({ label, isLabelBold, name, required, disabled, options, ...inputProps }: {
|
|
514
515
|
[inputProps: string]: unknown;
|
|
515
516
|
label?: string | JSX.Element | null | undefined;
|
|
516
517
|
isLabelBold?: boolean | undefined;
|
|
517
518
|
name: string;
|
|
518
519
|
required?: boolean | undefined;
|
|
520
|
+
disabled?: boolean | undefined;
|
|
519
521
|
options?: object | undefined;
|
|
520
522
|
}) => react_jsx_runtime.JSX.Element;
|
|
521
523
|
TextInput: ({ name, label, details, type, options, previewOnly, textArea, marginBottom, defaultValue, isLabelBold, format, errorMessage, required, ...inputProps }: {
|
package/dist/index.d.ts
CHANGED
|
@@ -66,8 +66,9 @@ declare type Props$a = {
|
|
|
66
66
|
placeholder?: string | null;
|
|
67
67
|
className?: string | null;
|
|
68
68
|
hasError?: boolean;
|
|
69
|
+
disabled?: boolean;
|
|
69
70
|
};
|
|
70
|
-
declare const DateSelect: ({ value, onChange, startRange, endRange, defaultValue, format, placeholder, className, hasError, }: Props$a) => react_jsx_runtime.JSX.Element;
|
|
71
|
+
declare const DateSelect: ({ value, onChange, startRange, endRange, defaultValue, format, placeholder, className, hasError, disabled, }: Props$a) => react_jsx_runtime.JSX.Element;
|
|
71
72
|
|
|
72
73
|
declare type Props$9 = {
|
|
73
74
|
isOpen: boolean;
|
|
@@ -510,12 +511,13 @@ declare const _default$2: {
|
|
|
510
511
|
value: string;
|
|
511
512
|
}[];
|
|
512
513
|
}) => react_jsx_runtime.JSX.Element;
|
|
513
|
-
DateSelect: ({ label, isLabelBold, name, required, options, ...inputProps }: {
|
|
514
|
+
DateSelect: ({ label, isLabelBold, name, required, disabled, options, ...inputProps }: {
|
|
514
515
|
[inputProps: string]: unknown;
|
|
515
516
|
label?: string | JSX.Element | null | undefined;
|
|
516
517
|
isLabelBold?: boolean | undefined;
|
|
517
518
|
name: string;
|
|
518
519
|
required?: boolean | undefined;
|
|
520
|
+
disabled?: boolean | undefined;
|
|
519
521
|
options?: object | undefined;
|
|
520
522
|
}) => react_jsx_runtime.JSX.Element;
|
|
521
523
|
TextInput: ({ name, label, details, type, options, previewOnly, textArea, marginBottom, defaultValue, isLabelBold, format, errorMessage, required, ...inputProps }: {
|