@mobileaction/action-kit 1.45.2 → 1.45.3
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/CHANGELOG.md +7 -0
- package/dist/action-kit.mjs +1 -1
- package/dist/{annotations-DJexnIAc.js → annotations-Cc8-hzTY.js} +1 -1
- package/dist/{export-data-CjRujjX4.js → export-data-CRYwjurw.js} +1 -1
- package/dist/{exporting-C0PAvbsc.js → exporting-BtNhop-z.js} +1 -1
- package/dist/{index-BlFaxM2B.js → index-B6v0tisE.js} +849 -847
- package/dist/{map-D9nlD3zg.js → map-DgZGHNvi.js} +1 -1
- package/dist/{offline-exporting-BLnEcdCT.js → offline-exporting-CxNsbsAZ.js} +1 -1
- package/dist/src/components/date-picker-2/index.vue.d.ts +1 -0
- package/dist/src/components/date-picker-2/stories/default.stories.d.ts +2 -0
- package/dist/src/components/date-picker-2/stories/range.stories.d.ts +2 -0
- package/dist/src/components/date-picker-2/types.d.ts +5 -1
- package/dist/{stock-BWDjlVRw.js → stock-cgogCbmp.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/{venn-DF9EOpiq.js → venn-DdB-2edP.js} +1 -1
- package/dist/{wordcloud-BhcHo_Kt.js → wordcloud-BKutD0Dx.js} +1 -1
- package/package.json +1 -1
|
@@ -130,6 +130,7 @@ declare const __VLS_component: import("vue").DefineComponent<MaDatePickerProps,
|
|
|
130
130
|
autoPosition: typeof import("./types").MaDatePickerVerticalPositions[number];
|
|
131
131
|
preventMinMaxNavigation: boolean;
|
|
132
132
|
clearable: boolean;
|
|
133
|
+
alwaysClearable: boolean;
|
|
133
134
|
applyButtonText: string;
|
|
134
135
|
multiCalendars: boolean;
|
|
135
136
|
hideCalendarIcon: boolean;
|
|
@@ -159,9 +159,13 @@ export interface MaDatePickerProps {
|
|
|
159
159
|
*/
|
|
160
160
|
focusStartDate?: boolean;
|
|
161
161
|
/**
|
|
162
|
-
* Add a clear icon to the input field
|
|
162
|
+
* Add a clear icon to the input field that is visible only when there is a value and on hover
|
|
163
163
|
*/
|
|
164
164
|
clearable?: boolean;
|
|
165
|
+
/**
|
|
166
|
+
* Keeps the clear icon only when there is a value in the calendar
|
|
167
|
+
*/
|
|
168
|
+
alwaysClearable?: boolean;
|
|
165
169
|
/**
|
|
166
170
|
* The text of the apply button
|
|
167
171
|
* @default Apply
|