@delightui/components 0.1.162 → 0.1.164
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/cjs/components/molecules/DatePicker/DateInput/DateInput.types.d.ts +8 -0
- package/dist/cjs/components/molecules/ProgressBar/ProgressBar.types.d.ts +4 -0
- package/dist/cjs/library.js +1 -1
- package/dist/cjs/library.js.map +1 -1
- package/dist/esm/components/molecules/DatePicker/DateInput/DateInput.types.d.ts +8 -0
- package/dist/esm/components/molecules/ProgressBar/ProgressBar.types.d.ts +4 -0
- package/dist/esm/library.js +2 -2
- package/dist/esm/library.js.map +1 -1
- package/dist/index.d.ts +12 -0
- package/package.json +2 -2
|
@@ -12,4 +12,12 @@ export type DateInputProps = DatePickerBaseSharedProps & {
|
|
|
12
12
|
* Icon to be displayed after the input.
|
|
13
13
|
*/
|
|
14
14
|
trailingIcon?: React.ReactNode;
|
|
15
|
+
/**
|
|
16
|
+
* Accessible label (used as base for input and child suffixes e.g. --open-calendar).
|
|
17
|
+
*/
|
|
18
|
+
ariaLabel?: string;
|
|
19
|
+
/**
|
|
20
|
+
* ID(s) of element(s) that label this component (used as base for child suffixes).
|
|
21
|
+
*/
|
|
22
|
+
ariaLabelledBy?: string;
|
|
15
23
|
};
|