@sectile/vue 0.5.0 → 0.7.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/README.md +5 -0
- package/dist/calendar.d.ts +13 -265
- package/dist/calendar.d.ts.map +1 -1
- package/dist/calendar.js +12 -12
- package/dist/calendar.js.map +1 -1
- package/dist/date-field.d.ts +1 -1
- package/dist/date-field.d.ts.map +1 -1
- package/dist/date-field.js.map +1 -1
- package/dist/date-picker.d.ts +17 -430
- package/dist/date-picker.d.ts.map +1 -1
- package/dist/date-picker.js +13 -13
- package/dist/date-picker.js.map +1 -1
- package/dist/date-range-picker.d.ts +19 -432
- package/dist/date-range-picker.d.ts.map +1 -1
- package/dist/date-range-picker.js +13 -13
- package/dist/date-range-picker.js.map +1 -1
- package/dist/date-time-field.d.ts +1 -1
- package/dist/date-time-field.d.ts.map +1 -1
- package/dist/date-time-field.js.map +1 -1
- package/dist/date-time-picker.d.ts +19 -432
- package/dist/date-time-picker.d.ts.map +1 -1
- package/dist/date-time-picker.js +13 -13
- package/dist/date-time-picker.js.map +1 -1
- package/dist/date-time-range-picker.d.ts +19 -432
- package/dist/date-time-range-picker.d.ts.map +1 -1
- package/dist/date-time-range-picker.js +13 -13
- package/dist/date-time-range-picker.js.map +1 -1
- package/dist/host-provider.d.ts +12 -0
- package/dist/host-provider.d.ts.map +1 -1
- package/dist/host-provider.js +16 -0
- package/dist/host-provider.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/internal/date-picker.d.ts +37 -146
- package/dist/internal/date-picker.d.ts.map +1 -1
- package/dist/internal/date-picker.js +41 -24
- package/dist/internal/date-picker.js.map +1 -1
- package/dist/internal/native-field.d.ts +7 -7
- package/dist/internal/native-field.d.ts.map +1 -1
- package/dist/internal/native-field.js.map +1 -1
- package/dist/internal/popup.d.ts.map +1 -1
- package/dist/internal/popup.js +21 -17
- package/dist/internal/popup.js.map +1 -1
- package/dist/menu.d.ts +262 -316
- package/dist/menu.d.ts.map +1 -1
- package/dist/menu.js +29 -23
- package/dist/menu.js.map +1 -1
- package/dist/month-picker.d.ts +11 -262
- package/dist/month-picker.d.ts.map +1 -1
- package/dist/month-picker.js +6 -6
- package/dist/month-picker.js.map +1 -1
- package/dist/month-range-picker.d.ts +13 -264
- package/dist/month-range-picker.d.ts.map +1 -1
- package/dist/month-range-picker.js +6 -6
- package/dist/month-range-picker.js.map +1 -1
- package/dist/number-field.d.ts +2 -1
- package/dist/number-field.d.ts.map +1 -1
- package/dist/number-field.js +1 -1
- package/dist/number-field.js.map +1 -1
- package/dist/pin-input.d.ts.map +1 -1
- package/dist/pin-input.js +3 -1
- package/dist/pin-input.js.map +1 -1
- package/dist/primitive.d.ts.map +1 -1
- package/dist/primitive.js +5 -2
- package/dist/primitive.js.map +1 -1
- package/dist/range-calendar.d.ts +13 -286
- package/dist/range-calendar.d.ts.map +1 -1
- package/dist/range-calendar.js +7 -7
- package/dist/range-calendar.js.map +1 -1
- package/dist/select.d.ts +6 -6
- package/dist/select.d.ts.map +1 -1
- package/dist/select.js.map +1 -1
- package/dist/spin-button.d.ts +9 -6
- package/dist/spin-button.d.ts.map +1 -1
- package/dist/spin-button.js.map +1 -1
- package/dist/time-field.d.ts +1 -1
- package/dist/time-field.d.ts.map +1 -1
- package/dist/time-field.js.map +1 -1
- package/dist/virtual.d.ts +205 -0
- package/dist/virtual.d.ts.map +1 -0
- package/dist/virtual.js +299 -0
- package/dist/virtual.js.map +1 -0
- package/dist/year-picker.d.ts +11 -262
- package/dist/year-picker.d.ts.map +1 -1
- package/dist/year-picker.js +6 -6
- package/dist/year-picker.js.map +1 -1
- package/dist/year-range-picker.d.ts +11 -262
- package/dist/year-range-picker.d.ts.map +1 -1
- package/dist/year-range-picker.js +6 -6
- package/dist/year-range-picker.js.map +1 -1
- package/package.json +14 -4
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import type { DateRangePickerOptions } from '@sectile/dom/date-range-picker';
|
|
2
2
|
import type { DateRange, DateValue } from '@sectile/dom/date-field';
|
|
3
3
|
import { type PickerCellSlotProps, type PickerMonthCellSlotProps, type PickerPartProps, type PickerRootSlotProps } from './internal/date-picker.js';
|
|
4
|
-
export interface DateRangePickerRootProps {
|
|
4
|
+
export interface DateRangePickerRootProps extends PickerPartProps {
|
|
5
5
|
readonly modelValue?: DateRange | null;
|
|
6
6
|
readonly defaultValue?: DateRange | null;
|
|
7
7
|
readonly highlightedValue?: DateValue;
|
|
8
8
|
readonly defaultHighlightedValue?: DateValue;
|
|
9
|
+
readonly referenceDate?: DateValue;
|
|
9
10
|
readonly defaultView?: PickerRootSlotProps['viewMode'];
|
|
10
11
|
readonly open?: boolean;
|
|
11
12
|
readonly defaultOpen?: boolean;
|
|
@@ -15,221 +16,14 @@ export interface DateRangePickerRootProps {
|
|
|
15
16
|
readonly label?: string;
|
|
16
17
|
readonly policies?: DateRangePickerOptions['policies'];
|
|
17
18
|
}
|
|
18
|
-
export declare const DateRangePickerRoot: import("
|
|
19
|
-
|
|
20
|
-
type: import("vue").PropType<import("./internal/date-picker.js").PickerValue>;
|
|
21
|
-
default: undefined;
|
|
22
|
-
};
|
|
23
|
-
defaultValue: {
|
|
24
|
-
type: import("vue").PropType<import("./internal/date-picker.js").PickerValue>;
|
|
25
|
-
default: null;
|
|
26
|
-
};
|
|
27
|
-
open: {
|
|
28
|
-
type: BooleanConstructor;
|
|
29
|
-
default: undefined;
|
|
30
|
-
};
|
|
31
|
-
defaultOpen: {
|
|
32
|
-
type: BooleanConstructor;
|
|
33
|
-
default: boolean;
|
|
34
|
-
};
|
|
35
|
-
highlightedValue: {
|
|
36
|
-
type: import("vue").PropType<DateValue>;
|
|
37
|
-
default: undefined;
|
|
38
|
-
};
|
|
39
|
-
defaultHighlightedValue: {
|
|
40
|
-
type: import("vue").PropType<DateValue>;
|
|
41
|
-
default: undefined;
|
|
42
|
-
};
|
|
43
|
-
defaultView: {
|
|
44
|
-
type: import("vue").PropType<import("@sectile/temporal/calendar").CalendarViewMode>;
|
|
45
|
-
default: import("@sectile/temporal/calendar").CalendarViewMode;
|
|
46
|
-
};
|
|
47
|
-
disabled: {
|
|
48
|
-
type: BooleanConstructor;
|
|
49
|
-
default: boolean;
|
|
50
|
-
};
|
|
51
|
-
readonly: {
|
|
52
|
-
type: BooleanConstructor;
|
|
53
|
-
default: boolean;
|
|
54
|
-
};
|
|
55
|
-
required: {
|
|
56
|
-
type: BooleanConstructor;
|
|
57
|
-
default: boolean;
|
|
58
|
-
};
|
|
59
|
-
label: {
|
|
60
|
-
type: StringConstructor;
|
|
61
|
-
default: undefined;
|
|
62
|
-
};
|
|
63
|
-
policies: {
|
|
64
|
-
type: import("vue").PropType<Readonly<Record<string, unknown>>>;
|
|
65
|
-
default: undefined;
|
|
66
|
-
};
|
|
67
|
-
as: {
|
|
68
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
69
|
-
default: string;
|
|
70
|
-
};
|
|
71
|
-
asChild: {
|
|
72
|
-
type: BooleanConstructor;
|
|
73
|
-
default: boolean;
|
|
74
|
-
};
|
|
75
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
76
|
-
'update:modelValue': (_value: import("./internal/date-picker.js").PickerValue) => boolean;
|
|
77
|
-
'update:open': (_value: boolean) => boolean;
|
|
78
|
-
'update:highlightedValue': (_value: DateValue) => boolean;
|
|
79
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
80
|
-
modelValue: {
|
|
81
|
-
type: import("vue").PropType<import("./internal/date-picker.js").PickerValue>;
|
|
82
|
-
default: undefined;
|
|
83
|
-
};
|
|
84
|
-
defaultValue: {
|
|
85
|
-
type: import("vue").PropType<import("./internal/date-picker.js").PickerValue>;
|
|
86
|
-
default: null;
|
|
87
|
-
};
|
|
88
|
-
open: {
|
|
89
|
-
type: BooleanConstructor;
|
|
90
|
-
default: undefined;
|
|
91
|
-
};
|
|
92
|
-
defaultOpen: {
|
|
93
|
-
type: BooleanConstructor;
|
|
94
|
-
default: boolean;
|
|
95
|
-
};
|
|
96
|
-
highlightedValue: {
|
|
97
|
-
type: import("vue").PropType<DateValue>;
|
|
98
|
-
default: undefined;
|
|
99
|
-
};
|
|
100
|
-
defaultHighlightedValue: {
|
|
101
|
-
type: import("vue").PropType<DateValue>;
|
|
102
|
-
default: undefined;
|
|
103
|
-
};
|
|
104
|
-
defaultView: {
|
|
105
|
-
type: import("vue").PropType<import("@sectile/temporal/calendar").CalendarViewMode>;
|
|
106
|
-
default: import("@sectile/temporal/calendar").CalendarViewMode;
|
|
107
|
-
};
|
|
108
|
-
disabled: {
|
|
109
|
-
type: BooleanConstructor;
|
|
110
|
-
default: boolean;
|
|
111
|
-
};
|
|
112
|
-
readonly: {
|
|
113
|
-
type: BooleanConstructor;
|
|
114
|
-
default: boolean;
|
|
115
|
-
};
|
|
116
|
-
required: {
|
|
117
|
-
type: BooleanConstructor;
|
|
118
|
-
default: boolean;
|
|
119
|
-
};
|
|
120
|
-
label: {
|
|
121
|
-
type: StringConstructor;
|
|
122
|
-
default: undefined;
|
|
123
|
-
};
|
|
124
|
-
policies: {
|
|
125
|
-
type: import("vue").PropType<Readonly<Record<string, unknown>>>;
|
|
126
|
-
default: undefined;
|
|
127
|
-
};
|
|
128
|
-
as: {
|
|
129
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
130
|
-
default: string;
|
|
131
|
-
};
|
|
132
|
-
asChild: {
|
|
133
|
-
type: BooleanConstructor;
|
|
134
|
-
default: boolean;
|
|
135
|
-
};
|
|
136
|
-
}>> & Readonly<{
|
|
137
|
-
"onUpdate:highlightedValue"?: (_value: DateValue) => any;
|
|
138
|
-
"onUpdate:modelValue"?: (_value: import("./internal/date-picker.js").PickerValue) => any;
|
|
139
|
-
"onUpdate:open"?: (_value: boolean) => any;
|
|
140
|
-
}>, {
|
|
141
|
-
modelValue: import("./internal/date-picker.js").PickerValue;
|
|
142
|
-
defaultValue: import("./internal/date-picker.js").PickerValue;
|
|
143
|
-
open: boolean;
|
|
144
|
-
defaultOpen: boolean;
|
|
145
|
-
highlightedValue: DateValue;
|
|
146
|
-
defaultHighlightedValue: DateValue;
|
|
147
|
-
defaultView: import("@sectile/temporal/calendar").CalendarViewMode;
|
|
148
|
-
disabled: boolean;
|
|
149
|
-
readonly: boolean;
|
|
150
|
-
required: boolean;
|
|
151
|
-
label: string;
|
|
152
|
-
policies: Readonly<Record<string, unknown>>;
|
|
153
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
154
|
-
asChild: boolean;
|
|
155
|
-
}, import("vue").SlotsType<{
|
|
156
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
157
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
19
|
+
export declare const DateRangePickerRoot: import("./internal/date-picker.js").PickerRootComponent<"date-range">;
|
|
20
|
+
export type DateRangePickerRootSlotProps = PickerRootSlotProps<DateRange | null>;
|
|
158
21
|
export type DateRangePickerValueChangeHandler = NonNullable<InstanceType<typeof DateRangePickerRoot>['$props']['onUpdate:modelValue']>;
|
|
159
22
|
export type DateRangePickerOpenChangeHandler = NonNullable<InstanceType<typeof DateRangePickerRoot>['$props']['onUpdate:open']>;
|
|
160
23
|
export type DateRangePickerHighlightedValueChangeHandler = NonNullable<InstanceType<typeof DateRangePickerRoot>['$props']['onUpdate:highlightedValue']>;
|
|
161
|
-
export declare const DateRangePickerTrigger: import("
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
default: string;
|
|
165
|
-
};
|
|
166
|
-
asChild: {
|
|
167
|
-
type: BooleanConstructor;
|
|
168
|
-
default: boolean;
|
|
169
|
-
};
|
|
170
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
171
|
-
as: {
|
|
172
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
173
|
-
default: string;
|
|
174
|
-
};
|
|
175
|
-
asChild: {
|
|
176
|
-
type: BooleanConstructor;
|
|
177
|
-
default: boolean;
|
|
178
|
-
};
|
|
179
|
-
}>> & Readonly<{}>, {
|
|
180
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
181
|
-
asChild: boolean;
|
|
182
|
-
}, import("vue").SlotsType<{
|
|
183
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
184
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
185
|
-
export declare const DateRangePickerContent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
186
|
-
as: {
|
|
187
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
188
|
-
default: string;
|
|
189
|
-
};
|
|
190
|
-
asChild: {
|
|
191
|
-
type: BooleanConstructor;
|
|
192
|
-
default: boolean;
|
|
193
|
-
};
|
|
194
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
195
|
-
as: {
|
|
196
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
197
|
-
default: string;
|
|
198
|
-
};
|
|
199
|
-
asChild: {
|
|
200
|
-
type: BooleanConstructor;
|
|
201
|
-
default: boolean;
|
|
202
|
-
};
|
|
203
|
-
}>> & Readonly<{}>, {
|
|
204
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
205
|
-
asChild: boolean;
|
|
206
|
-
}, import("vue").SlotsType<{
|
|
207
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
208
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
209
|
-
export declare const DateRangePickerGrid: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
210
|
-
as: {
|
|
211
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
212
|
-
default: string;
|
|
213
|
-
};
|
|
214
|
-
asChild: {
|
|
215
|
-
type: BooleanConstructor;
|
|
216
|
-
default: boolean;
|
|
217
|
-
};
|
|
218
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
219
|
-
as: {
|
|
220
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
221
|
-
default: string;
|
|
222
|
-
};
|
|
223
|
-
asChild: {
|
|
224
|
-
type: BooleanConstructor;
|
|
225
|
-
default: boolean;
|
|
226
|
-
};
|
|
227
|
-
}>> & Readonly<{}>, {
|
|
228
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
229
|
-
asChild: boolean;
|
|
230
|
-
}, import("vue").SlotsType<{
|
|
231
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
232
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
24
|
+
export declare const DateRangePickerTrigger: import("./internal/date-picker.js").PickerRootPartComponent<"date-range">;
|
|
25
|
+
export declare const DateRangePickerContent: import("./internal/date-picker.js").PickerRootPartComponent<"date-range">;
|
|
26
|
+
export declare const DateRangePickerGrid: import("./internal/date-picker.js").PickerRootPartComponent<"date-range">;
|
|
233
27
|
export declare const DateRangePickerCell: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
234
28
|
value: {
|
|
235
29
|
type: import("vue").PropType<DateValue>;
|
|
@@ -264,7 +58,7 @@ export declare const DateRangePickerCell: import("vue").DefineComponent<import("
|
|
|
264
58
|
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
265
59
|
export declare const DateRangePickerMonthCell: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
266
60
|
value: {
|
|
267
|
-
type: import("vue").PropType<import("@sectile/
|
|
61
|
+
type: import("vue").PropType<import("@sectile/temporal").CalendarMonthValue>;
|
|
268
62
|
required: true;
|
|
269
63
|
};
|
|
270
64
|
as: {
|
|
@@ -277,7 +71,7 @@ export declare const DateRangePickerMonthCell: import("vue").DefineComponent<imp
|
|
|
277
71
|
};
|
|
278
72
|
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
279
73
|
value: {
|
|
280
|
-
type: import("vue").PropType<import("@sectile/
|
|
74
|
+
type: import("vue").PropType<import("@sectile/temporal").CalendarMonthValue>;
|
|
281
75
|
required: true;
|
|
282
76
|
};
|
|
283
77
|
as: {
|
|
@@ -374,221 +168,14 @@ export declare const DateRangePickerEndInput: import("vue").DefineComponent<impo
|
|
|
374
168
|
as: import("./primitive.js").PrimitiveAs;
|
|
375
169
|
asChild: boolean;
|
|
376
170
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
377
|
-
export declare const DateRangePickerPreviousWeek: import("
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
as: {
|
|
388
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
389
|
-
default: string;
|
|
390
|
-
};
|
|
391
|
-
asChild: {
|
|
392
|
-
type: BooleanConstructor;
|
|
393
|
-
default: boolean;
|
|
394
|
-
};
|
|
395
|
-
}>> & Readonly<{}>, {
|
|
396
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
397
|
-
asChild: boolean;
|
|
398
|
-
}, import("vue").SlotsType<{
|
|
399
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
400
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
401
|
-
export declare const DateRangePickerNextWeek: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
402
|
-
as: {
|
|
403
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
404
|
-
default: string;
|
|
405
|
-
};
|
|
406
|
-
asChild: {
|
|
407
|
-
type: BooleanConstructor;
|
|
408
|
-
default: boolean;
|
|
409
|
-
};
|
|
410
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
411
|
-
as: {
|
|
412
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
413
|
-
default: string;
|
|
414
|
-
};
|
|
415
|
-
asChild: {
|
|
416
|
-
type: BooleanConstructor;
|
|
417
|
-
default: boolean;
|
|
418
|
-
};
|
|
419
|
-
}>> & Readonly<{}>, {
|
|
420
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
421
|
-
asChild: boolean;
|
|
422
|
-
}, import("vue").SlotsType<{
|
|
423
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
424
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
425
|
-
export declare const DateRangePickerPreviousMonth: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
426
|
-
as: {
|
|
427
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
428
|
-
default: string;
|
|
429
|
-
};
|
|
430
|
-
asChild: {
|
|
431
|
-
type: BooleanConstructor;
|
|
432
|
-
default: boolean;
|
|
433
|
-
};
|
|
434
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
435
|
-
as: {
|
|
436
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
437
|
-
default: string;
|
|
438
|
-
};
|
|
439
|
-
asChild: {
|
|
440
|
-
type: BooleanConstructor;
|
|
441
|
-
default: boolean;
|
|
442
|
-
};
|
|
443
|
-
}>> & Readonly<{}>, {
|
|
444
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
445
|
-
asChild: boolean;
|
|
446
|
-
}, import("vue").SlotsType<{
|
|
447
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
448
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
449
|
-
export declare const DateRangePickerNextMonth: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
450
|
-
as: {
|
|
451
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
452
|
-
default: string;
|
|
453
|
-
};
|
|
454
|
-
asChild: {
|
|
455
|
-
type: BooleanConstructor;
|
|
456
|
-
default: boolean;
|
|
457
|
-
};
|
|
458
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
459
|
-
as: {
|
|
460
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
461
|
-
default: string;
|
|
462
|
-
};
|
|
463
|
-
asChild: {
|
|
464
|
-
type: BooleanConstructor;
|
|
465
|
-
default: boolean;
|
|
466
|
-
};
|
|
467
|
-
}>> & Readonly<{}>, {
|
|
468
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
469
|
-
asChild: boolean;
|
|
470
|
-
}, import("vue").SlotsType<{
|
|
471
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
472
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
473
|
-
export declare const DateRangePickerPreviousYear: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
474
|
-
as: {
|
|
475
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
476
|
-
default: string;
|
|
477
|
-
};
|
|
478
|
-
asChild: {
|
|
479
|
-
type: BooleanConstructor;
|
|
480
|
-
default: boolean;
|
|
481
|
-
};
|
|
482
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
483
|
-
as: {
|
|
484
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
485
|
-
default: string;
|
|
486
|
-
};
|
|
487
|
-
asChild: {
|
|
488
|
-
type: BooleanConstructor;
|
|
489
|
-
default: boolean;
|
|
490
|
-
};
|
|
491
|
-
}>> & Readonly<{}>, {
|
|
492
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
493
|
-
asChild: boolean;
|
|
494
|
-
}, import("vue").SlotsType<{
|
|
495
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
496
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
497
|
-
export declare const DateRangePickerNextYear: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
498
|
-
as: {
|
|
499
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
500
|
-
default: string;
|
|
501
|
-
};
|
|
502
|
-
asChild: {
|
|
503
|
-
type: BooleanConstructor;
|
|
504
|
-
default: boolean;
|
|
505
|
-
};
|
|
506
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
507
|
-
as: {
|
|
508
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
509
|
-
default: string;
|
|
510
|
-
};
|
|
511
|
-
asChild: {
|
|
512
|
-
type: BooleanConstructor;
|
|
513
|
-
default: boolean;
|
|
514
|
-
};
|
|
515
|
-
}>> & Readonly<{}>, {
|
|
516
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
517
|
-
asChild: boolean;
|
|
518
|
-
}, import("vue").SlotsType<{
|
|
519
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
520
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
521
|
-
export declare const DateRangePickerWeekViewTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
522
|
-
as: {
|
|
523
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
524
|
-
default: string;
|
|
525
|
-
};
|
|
526
|
-
asChild: {
|
|
527
|
-
type: BooleanConstructor;
|
|
528
|
-
default: boolean;
|
|
529
|
-
};
|
|
530
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
531
|
-
as: {
|
|
532
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
533
|
-
default: string;
|
|
534
|
-
};
|
|
535
|
-
asChild: {
|
|
536
|
-
type: BooleanConstructor;
|
|
537
|
-
default: boolean;
|
|
538
|
-
};
|
|
539
|
-
}>> & Readonly<{}>, {
|
|
540
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
541
|
-
asChild: boolean;
|
|
542
|
-
}, import("vue").SlotsType<{
|
|
543
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
544
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
545
|
-
export declare const DateRangePickerMonthViewTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
546
|
-
as: {
|
|
547
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
548
|
-
default: string;
|
|
549
|
-
};
|
|
550
|
-
asChild: {
|
|
551
|
-
type: BooleanConstructor;
|
|
552
|
-
default: boolean;
|
|
553
|
-
};
|
|
554
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
555
|
-
as: {
|
|
556
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
557
|
-
default: string;
|
|
558
|
-
};
|
|
559
|
-
asChild: {
|
|
560
|
-
type: BooleanConstructor;
|
|
561
|
-
default: boolean;
|
|
562
|
-
};
|
|
563
|
-
}>> & Readonly<{}>, {
|
|
564
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
565
|
-
asChild: boolean;
|
|
566
|
-
}, import("vue").SlotsType<{
|
|
567
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
568
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
569
|
-
export declare const DateRangePickerYearViewTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
570
|
-
as: {
|
|
571
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
572
|
-
default: string;
|
|
573
|
-
};
|
|
574
|
-
asChild: {
|
|
575
|
-
type: BooleanConstructor;
|
|
576
|
-
default: boolean;
|
|
577
|
-
};
|
|
578
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
579
|
-
as: {
|
|
580
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
581
|
-
default: string;
|
|
582
|
-
};
|
|
583
|
-
asChild: {
|
|
584
|
-
type: BooleanConstructor;
|
|
585
|
-
default: boolean;
|
|
586
|
-
};
|
|
587
|
-
}>> & Readonly<{}>, {
|
|
588
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
589
|
-
asChild: boolean;
|
|
590
|
-
}, import("vue").SlotsType<{
|
|
591
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
592
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
593
|
-
export type { DateRange, DateValue, PickerCellSlotProps as DateRangePickerCellSlotProps, PickerMonthCellSlotProps as DateRangePickerMonthCellSlotProps, PickerPartProps as DateRangePickerPartProps, PickerRootSlotProps as DateRangePickerRootSlotProps };
|
|
171
|
+
export declare const DateRangePickerPreviousWeek: import("./internal/date-picker.js").PickerRootPartComponent<"date-range">;
|
|
172
|
+
export declare const DateRangePickerNextWeek: import("./internal/date-picker.js").PickerRootPartComponent<"date-range">;
|
|
173
|
+
export declare const DateRangePickerPreviousMonth: import("./internal/date-picker.js").PickerRootPartComponent<"date-range">;
|
|
174
|
+
export declare const DateRangePickerNextMonth: import("./internal/date-picker.js").PickerRootPartComponent<"date-range">;
|
|
175
|
+
export declare const DateRangePickerPreviousYear: import("./internal/date-picker.js").PickerRootPartComponent<"date-range">;
|
|
176
|
+
export declare const DateRangePickerNextYear: import("./internal/date-picker.js").PickerRootPartComponent<"date-range">;
|
|
177
|
+
export declare const DateRangePickerWeekViewTrigger: import("./internal/date-picker.js").PickerRootPartComponent<"date-range">;
|
|
178
|
+
export declare const DateRangePickerMonthViewTrigger: import("./internal/date-picker.js").PickerRootPartComponent<"date-range">;
|
|
179
|
+
export declare const DateRangePickerYearViewTrigger: import("./internal/date-picker.js").PickerRootPartComponent<"date-range">;
|
|
180
|
+
export type { DateRange, DateValue, PickerCellSlotProps as DateRangePickerCellSlotProps, PickerMonthCellSlotProps as DateRangePickerMonthCellSlotProps, PickerPartProps as DateRangePickerPartProps };
|
|
594
181
|
//# sourceMappingURL=date-range-picker.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"date-range-picker.d.ts","sourceRoot":"","sources":["../src/date-range-picker.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAEa,KAAK,mBAAmB,EAAE,KAAK,wBAAwB,EAAE,KAAK,eAAe,EAAE,KAAK,mBAAmB,EAC1H,MAAM,2BAA2B,CAAC;AAEnC,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"date-range-picker.d.ts","sourceRoot":"","sources":["../src/date-range-picker.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { PickerCell, PickerContent, PickerGrid, PickerMonthCell, PickerTrigger, createPickerInput, createPickerMove, createPickerViewTrigger, createPickerRoot, } from './internal/date-picker.js';
|
|
1
|
+
import { PickerCell, PickerContent, PickerGrid, PickerMonthCell, PickerTrigger, createPickerInput, createPickerMove, createPickerViewTrigger, specializePickerRootPart, createPickerRoot, } from './internal/date-picker.js';
|
|
2
2
|
export const DateRangePickerRoot = createPickerRoot('date-range', 'SectileDateRangePickerRoot');
|
|
3
|
-
export const DateRangePickerTrigger = PickerTrigger;
|
|
4
|
-
export const DateRangePickerContent = PickerContent;
|
|
5
|
-
export const DateRangePickerGrid = PickerGrid;
|
|
3
|
+
export const DateRangePickerTrigger = specializePickerRootPart('date-range', PickerTrigger);
|
|
4
|
+
export const DateRangePickerContent = specializePickerRootPart('date-range', PickerContent);
|
|
5
|
+
export const DateRangePickerGrid = specializePickerRootPart('date-range', PickerGrid);
|
|
6
6
|
export const DateRangePickerCell = PickerCell;
|
|
7
7
|
export const DateRangePickerMonthCell = PickerMonthCell;
|
|
8
8
|
export const DateRangePickerStartInput = createPickerInput('start-input', 'SectileDateRangePickerStartInput');
|
|
9
9
|
export const DateRangePickerEndInput = createPickerInput('end-input', 'SectileDateRangePickerEndInput');
|
|
10
|
-
export const DateRangePickerPreviousWeek = createPickerMove('week', -1, 'SectileDateRangePickerPreviousWeek');
|
|
11
|
-
export const DateRangePickerNextWeek = createPickerMove('week', 1, 'SectileDateRangePickerNextWeek');
|
|
12
|
-
export const DateRangePickerPreviousMonth = createPickerMove('month', -1, 'SectileDateRangePickerPreviousMonth');
|
|
13
|
-
export const DateRangePickerNextMonth = createPickerMove('month', 1, 'SectileDateRangePickerNextMonth');
|
|
14
|
-
export const DateRangePickerPreviousYear = createPickerMove('year', -1, 'SectileDateRangePickerPreviousYear');
|
|
15
|
-
export const DateRangePickerNextYear = createPickerMove('year', 1, 'SectileDateRangePickerNextYear');
|
|
16
|
-
export const DateRangePickerWeekViewTrigger = createPickerViewTrigger('week', 'SectileDateRangePickerWeekViewTrigger');
|
|
17
|
-
export const DateRangePickerMonthViewTrigger = createPickerViewTrigger('month', 'SectileDateRangePickerMonthViewTrigger');
|
|
18
|
-
export const DateRangePickerYearViewTrigger = createPickerViewTrigger('year', 'SectileDateRangePickerYearViewTrigger');
|
|
10
|
+
export const DateRangePickerPreviousWeek = specializePickerRootPart('date-range', createPickerMove('week', -1, 'SectileDateRangePickerPreviousWeek'));
|
|
11
|
+
export const DateRangePickerNextWeek = specializePickerRootPart('date-range', createPickerMove('week', 1, 'SectileDateRangePickerNextWeek'));
|
|
12
|
+
export const DateRangePickerPreviousMonth = specializePickerRootPart('date-range', createPickerMove('month', -1, 'SectileDateRangePickerPreviousMonth'));
|
|
13
|
+
export const DateRangePickerNextMonth = specializePickerRootPart('date-range', createPickerMove('month', 1, 'SectileDateRangePickerNextMonth'));
|
|
14
|
+
export const DateRangePickerPreviousYear = specializePickerRootPart('date-range', createPickerMove('year', -1, 'SectileDateRangePickerPreviousYear'));
|
|
15
|
+
export const DateRangePickerNextYear = specializePickerRootPart('date-range', createPickerMove('year', 1, 'SectileDateRangePickerNextYear'));
|
|
16
|
+
export const DateRangePickerWeekViewTrigger = specializePickerRootPart('date-range', createPickerViewTrigger('week', 'SectileDateRangePickerWeekViewTrigger'));
|
|
17
|
+
export const DateRangePickerMonthViewTrigger = specializePickerRootPart('date-range', createPickerViewTrigger('month', 'SectileDateRangePickerMonthViewTrigger'));
|
|
18
|
+
export const DateRangePickerYearViewTrigger = specializePickerRootPart('date-range', createPickerViewTrigger('year', 'SectileDateRangePickerYearViewTrigger'));
|
|
19
19
|
//# sourceMappingURL=date-range-picker.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"date-range-picker.js","sourceRoot":"","sources":["../src/date-range-picker.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,UAAU,EAAE,aAAa,EAAE,UAAU,EAAE,eAAe,EAAE,aAAa,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,uBAAuB,
|
|
1
|
+
{"version":3,"file":"date-range-picker.js","sourceRoot":"","sources":["../src/date-range-picker.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,UAAU,EAAE,aAAa,EAAE,UAAU,EAAE,eAAe,EAAE,aAAa,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,uBAAuB,EAAE,wBAAwB,EAC7J,gBAAgB,GACjB,MAAM,2BAA2B,CAAC;AASnC,MAAM,CAAC,MAAM,mBAAmB,GAAG,gBAAgB,CAAC,YAAY,EAAE,4BAA4B,CAAC,CAAC;AAKhG,MAAM,CAAC,MAAM,sBAAsB,GAAG,wBAAwB,CAAC,YAAY,EAAE,aAAa,CAAC,CAAC;AAC5F,MAAM,CAAC,MAAM,sBAAsB,GAAG,wBAAwB,CAAC,YAAY,EAAE,aAAa,CAAC,CAAC;AAC5F,MAAM,CAAC,MAAM,mBAAmB,GAAG,wBAAwB,CAAC,YAAY,EAAE,UAAU,CAAC,CAAC;AACtF,MAAM,CAAC,MAAM,mBAAmB,GAAG,UAAU,CAAC;AAC9C,MAAM,CAAC,MAAM,wBAAwB,GAAG,eAAe,CAAC;AACxD,MAAM,CAAC,MAAM,yBAAyB,GAAG,iBAAiB,CAAC,aAAa,EAAE,kCAAkC,CAAC,CAAC;AAC9G,MAAM,CAAC,MAAM,uBAAuB,GAAG,iBAAiB,CAAC,WAAW,EAAE,gCAAgC,CAAC,CAAC;AACxG,MAAM,CAAC,MAAM,2BAA2B,GAAG,wBAAwB,CAAC,YAAY,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAC,CAAC,EAAE,oCAAoC,CAAC,CAAC,CAAC;AACtJ,MAAM,CAAC,MAAM,uBAAuB,GAAG,wBAAwB,CAAC,YAAY,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAC,EAAE,gCAAgC,CAAC,CAAC,CAAC;AAC7I,MAAM,CAAC,MAAM,4BAA4B,GAAG,wBAAwB,CAAC,YAAY,EAAE,gBAAgB,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,qCAAqC,CAAC,CAAC,CAAC;AACzJ,MAAM,CAAC,MAAM,wBAAwB,GAAG,wBAAwB,CAAC,YAAY,EAAE,gBAAgB,CAAC,OAAO,EAAE,CAAC,EAAE,iCAAiC,CAAC,CAAC,CAAC;AAChJ,MAAM,CAAC,MAAM,2BAA2B,GAAG,wBAAwB,CAAC,YAAY,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAC,CAAC,EAAE,oCAAoC,CAAC,CAAC,CAAC;AACtJ,MAAM,CAAC,MAAM,uBAAuB,GAAG,wBAAwB,CAAC,YAAY,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAC,EAAE,gCAAgC,CAAC,CAAC,CAAC;AAC7I,MAAM,CAAC,MAAM,8BAA8B,GAAG,wBAAwB,CAAC,YAAY,EAAE,uBAAuB,CAAC,MAAM,EAAE,uCAAuC,CAAC,CAAC,CAAC;AAC/J,MAAM,CAAC,MAAM,+BAA+B,GAAG,wBAAwB,CAAC,YAAY,EAAE,uBAAuB,CAAC,OAAO,EAAE,wCAAwC,CAAC,CAAC,CAAC;AAClK,MAAM,CAAC,MAAM,8BAA8B,GAAG,wBAAwB,CAAC,YAAY,EAAE,uBAAuB,CAAC,MAAM,EAAE,uCAAuC,CAAC,CAAC,CAAC"}
|
|
@@ -10,6 +10,6 @@ export interface DateTimeFieldProps {
|
|
|
10
10
|
readonly label?: string;
|
|
11
11
|
readonly native?: boolean;
|
|
12
12
|
}
|
|
13
|
-
export declare const DateTimeField: import("vue").DefineComponent<import("./internal/native-field.js").NativeFieldPublicProps<import("@sectile/temporal/date-time-field").DateTimeValue>>;
|
|
13
|
+
export declare const DateTimeField: import("vue").DefineComponent<import("./internal/native-field.js").NativeFieldPublicProps<import("@sectile/temporal/date-time-field").DateTimeValue, import("@sectile/temporal").DateTimeFieldPolicies>>;
|
|
14
14
|
export type DateTimeFieldValueChangeHandler = (value: DateTimeValue | null) => void;
|
|
15
15
|
//# sourceMappingURL=date-time-field.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"date-time-field.d.ts","sourceRoot":"","sources":["../src/date-time-field.ts"],"names":[],"mappings":"AACA,OAAO,EAIL,KAAK,oBAAoB,EAC1B,MAAM,8BAA8B,CAAC;AAGtC,MAAM,MAAM,aAAa,GAAG,WAAW,CAAC,oBAAoB,CAAC,OAAO,CAAC,CAAC,CAAC;AACvE,MAAM,WAAW,kBAAkB;IACjC,QAAQ,CAAC,UAAU,CAAC,EAAE,aAAa,GAAG,IAAI,CAAC;IAC3C,QAAQ,CAAC,YAAY,CAAC,EAAE,aAAa,GAAG,IAAI,CAAC;IAC7C,QAAQ,CAAC,QAAQ,CAAC,EAAE,oBAAoB,CAAC,UAAU,CAAC,CAAC;IACrD,QAAQ,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC;IAC5B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC;IAC5B,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC;CAC3B;
|
|
1
|
+
{"version":3,"file":"date-time-field.d.ts","sourceRoot":"","sources":["../src/date-time-field.ts"],"names":[],"mappings":"AACA,OAAO,EAIL,KAAK,oBAAoB,EAC1B,MAAM,8BAA8B,CAAC;AAGtC,MAAM,MAAM,aAAa,GAAG,WAAW,CAAC,oBAAoB,CAAC,OAAO,CAAC,CAAC,CAAC;AACvE,MAAM,WAAW,kBAAkB;IACjC,QAAQ,CAAC,UAAU,CAAC,EAAE,aAAa,GAAG,IAAI,CAAC;IAC3C,QAAQ,CAAC,YAAY,CAAC,EAAE,aAAa,GAAG,IAAI,CAAC;IAC7C,QAAQ,CAAC,QAAQ,CAAC,EAAE,oBAAoB,CAAC,UAAU,CAAC,CAAC;IACrD,QAAQ,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC;IAC5B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC;IAC5B,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC;CAC3B;AAID,eAAO,MAAM,aAAa,0MAcxB,CAAC;AACH,MAAM,MAAM,+BAA+B,GAAG,CAAC,KAAK,EAAE,aAAa,GAAG,IAAI,KAAK,IAAI,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"date-time-field.js","sourceRoot":"","sources":["../src/date-time-field.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiB,MAAM,KAAK,CAAC;AACpC,OAAO,EACL,mBAAmB,EACnB,mBAAmB,GAGpB,MAAM,8BAA8B,CAAC;AACtC,OAAO,EAAE,0BAA0B,EAAkC,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"date-time-field.js","sourceRoot":"","sources":["../src/date-time-field.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiB,MAAM,KAAK,CAAC;AACpC,OAAO,EACL,mBAAmB,EACnB,mBAAmB,GAGpB,MAAM,8BAA8B,CAAC;AACtC,OAAO,EAAE,0BAA0B,EAAkC,MAAM,4BAA4B,CAAC;AAgBxG,MAAM,CAAC,MAAM,aAAa,GAAG,0BAA0B,CAAuC;IAC5F,IAAI,EAAE,sBAAsB;IAC5B,KAAK,EAAE,iBAAiB;IACxB,SAAS,EAAE,MAAM;IACjB,eAAe,EAAE,gBAAgB;IACjC,WAAW,EAAE,kBAAkB;IAC/B,WAAW,EAAE,mBAAmB;IAChC,SAAS,EAAE,MAAwC;IACnD,MAAM,EAAE,CAAC,OAAwE,EAA2B,EAAE,CAAC,mBAAmB,CAAC;QACjI,GAAG,OAAO;QACV,GAAG,CAAC,OAAO,CAAC,QAAQ,KAAK,SAAS;YAChC,CAAC,CAAC,EAAE;YACJ,CAAC,CAAC,EAAE,QAAQ,EAAE,OAAO,CAAC,QAAQ,EAAE,CAAC;KACpC,CAAC;CACH,CAAC,CAAC"}
|