@mobileaction/action-kit 1.50.0 → 1.50.1-beta.0
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-CfMoeM0X.js → annotations-nuDYR8LD.js} +1 -1
- package/dist/chevron-down-CzSqR4FP.js +21 -0
- package/dist/chevron-down-Lk3y9-EJ.js +8 -0
- package/dist/chevron-left-BkwBmyAi.js +8 -0
- package/dist/chevron-left-zdjquVMb.js +21 -0
- package/dist/chevron-right-CN0zA9ac.js +21 -0
- package/dist/chevron-right-NaqeyBjQ.js +8 -0
- package/dist/chevron-up-C0iZfZ_U.js +12 -0
- package/dist/chevron-up-CZ2Ee4Ma.js +18 -0
- package/dist/chevrons-down-Dl2nFBLr.js +7 -0
- package/dist/{export-data-B7f_MCXl.js → export-data-CuSWwgWD.js} +1 -1
- package/dist/{exporting-BSj6WvVs.js → exporting-B9qu_91x.js} +1 -1
- package/dist/{index-CX4QicLf.js → index-DFJoEOFc.js} +1586 -1542
- package/dist/{map-BYKxCxtD.js → map-D5KwUZSw.js} +1 -1
- package/dist/{offline-exporting--HQMr9IJ.js → offline-exporting-QVHvrRwG.js} +1 -1
- package/dist/src/components/checkbox-2/stories/default.stories.d.ts +1 -0
- package/dist/src/components/checkbox-2/types.d.ts +1 -0
- package/dist/src/components/date-picker-2/index.vue.d.ts +3 -0
- package/dist/src/components/date-picker-2/stories/default.stories.d.ts +3 -0
- package/dist/src/components/date-picker-2/stories/range.stories.d.ts +3 -0
- package/dist/src/components/date-picker-2/types.d.ts +15 -0
- package/dist/{stock-Cd3QANJY.js → stock-Cba-k-EP.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/{venn-7a3V9lq4.js → venn-B6QPLruI.js} +1 -1
- package/dist/{wordcloud-DsOEk4Mw.js → wordcloud-Cck6VRF8.js} +1 -1
- package/package.json +3 -3
- package/dist/chevron-down-Deuidy6-.js +0 -8
- package/dist/chevron-down-DrCpz6-F.js +0 -22
- package/dist/chevron-left-Ctlppl-V.js +0 -8
- package/dist/chevron-left-D1VFsSAl.js +0 -22
- package/dist/chevron-right-2ieak7bv.js +0 -8
- package/dist/chevron-right-CCAJL6SJ.js +0 -22
- package/dist/chevron-up-B92vqATr.js +0 -22
- package/dist/chevron-up-D_7NtGL8.js +0 -8
- package/dist/chevrons-down-OM00VHS8.js +0 -7
|
@@ -6,6 +6,7 @@ declare function __VLS_template(): {
|
|
|
6
6
|
value: string;
|
|
7
7
|
isMenuOpen: boolean;
|
|
8
8
|
}): any;
|
|
9
|
+
hint?(_: {}): any;
|
|
9
10
|
"ma-calendar-preset"?(_: {
|
|
10
11
|
label: any;
|
|
11
12
|
value: any;
|
|
@@ -121,6 +122,7 @@ declare const __VLS_component: import("vue").DefineComponent<MaDatePickerProps,
|
|
|
121
122
|
disabled: boolean;
|
|
122
123
|
value: import("@vuepic/vue-datepicker").ModelValue;
|
|
123
124
|
overlayClassName: string;
|
|
125
|
+
hasError: boolean;
|
|
124
126
|
position: typeof import("./types").MaDatePickerPositions[number];
|
|
125
127
|
format: string | ((date: Date) => string) | ((dates: Date[]) => string);
|
|
126
128
|
teleport: boolean | string | HTMLElement;
|
|
@@ -134,6 +136,7 @@ declare const __VLS_component: import("vue").DefineComponent<MaDatePickerProps,
|
|
|
134
136
|
applyButtonText: string;
|
|
135
137
|
multiCalendars: boolean;
|
|
136
138
|
hideCalendarIcon: boolean;
|
|
139
|
+
timePicker: boolean;
|
|
137
140
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
138
141
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
139
142
|
export default _default;
|
|
@@ -25,3 +25,6 @@ export declare const FocusStartDate: Story;
|
|
|
25
25
|
export declare const CustomSlots: Story;
|
|
26
26
|
export declare const Clearable: Story;
|
|
27
27
|
export declare const AlwaysClearable: Story;
|
|
28
|
+
export declare const HasError: Story;
|
|
29
|
+
export declare const HintText: Story;
|
|
30
|
+
export declare const DateWithTime: Story;
|
|
@@ -26,3 +26,6 @@ export declare const FocusStartDate: Story;
|
|
|
26
26
|
export declare const CustomSlots: Story;
|
|
27
27
|
export declare const Clearable: Story;
|
|
28
28
|
export declare const AlwaysClearable: Story;
|
|
29
|
+
export declare const HasError: Story;
|
|
30
|
+
export declare const HintText: Story;
|
|
31
|
+
export declare const RangeWithTime: Story;
|
|
@@ -187,6 +187,21 @@ export interface MaDatePickerProps {
|
|
|
187
187
|
* @default undefined
|
|
188
188
|
*/
|
|
189
189
|
overlayClassName?: string;
|
|
190
|
+
/**
|
|
191
|
+
* error state of the datepicker
|
|
192
|
+
* @default false
|
|
193
|
+
*/
|
|
194
|
+
hasError?: boolean;
|
|
195
|
+
/**
|
|
196
|
+
* hint description of the datepicker selector
|
|
197
|
+
* @default undefined
|
|
198
|
+
*/
|
|
199
|
+
hintText?: string;
|
|
200
|
+
/**
|
|
201
|
+
* configures the time picker to display under the calendar rather than opening it as an overlay.
|
|
202
|
+
* @default false
|
|
203
|
+
*/
|
|
204
|
+
timePicker?: boolean;
|
|
190
205
|
}
|
|
191
206
|
export declare const MaDefaultVisibleDateFormat = "MMM D, YYYY";
|
|
192
207
|
export declare const MaDefaultDateFormat = "YYYY-MM-DD";
|