@sectile/vue 0.6.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/dist/calendar.d.ts +12 -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 +16 -439
- 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 +16 -439
- 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 +16 -439
- 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 +16 -439
- 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/internal/date-picker.d.ts +36 -155
- package/dist/internal/date-picker.d.ts.map +1 -1
- package/dist/internal/date-picker.js +33 -28
- 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/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 +10 -271
- 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 +10 -271
- 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/range-calendar.d.ts +12 -295
- 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 +5 -5
- package/dist/virtual.d.ts.map +1 -1
- package/dist/virtual.js +11 -6
- package/dist/virtual.js.map +1 -1
- package/dist/year-picker.d.ts +10 -271
- 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 +10 -271
- 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 +7 -4
|
@@ -2,7 +2,7 @@ import type { DateTimePickerOptions } from '@sectile/dom/date-time-picker';
|
|
|
2
2
|
import type { DateValue } from '@sectile/dom/date-field';
|
|
3
3
|
import type { DateTimeValue } from '@sectile/dom/date-time-field';
|
|
4
4
|
import { type PickerCellSlotProps, type PickerMonthCellSlotProps, type PickerPartProps, type PickerRootSlotProps } from './internal/date-picker.js';
|
|
5
|
-
export interface DateTimePickerRootProps {
|
|
5
|
+
export interface DateTimePickerRootProps extends PickerPartProps {
|
|
6
6
|
readonly modelValue?: DateTimeValue | null;
|
|
7
7
|
readonly defaultValue?: DateTimeValue | null;
|
|
8
8
|
readonly highlightedValue?: DateValue;
|
|
@@ -17,230 +17,14 @@ export interface DateTimePickerRootProps {
|
|
|
17
17
|
readonly label?: string;
|
|
18
18
|
readonly policies?: DateTimePickerOptions['policies'];
|
|
19
19
|
}
|
|
20
|
-
export declare const DateTimePickerRoot: import("
|
|
21
|
-
|
|
22
|
-
type: import("vue").PropType<import("./internal/date-picker.js").PickerValue>;
|
|
23
|
-
default: undefined;
|
|
24
|
-
};
|
|
25
|
-
defaultValue: {
|
|
26
|
-
type: import("vue").PropType<import("./internal/date-picker.js").PickerValue>;
|
|
27
|
-
default: null;
|
|
28
|
-
};
|
|
29
|
-
open: {
|
|
30
|
-
type: BooleanConstructor;
|
|
31
|
-
default: undefined;
|
|
32
|
-
};
|
|
33
|
-
defaultOpen: {
|
|
34
|
-
type: BooleanConstructor;
|
|
35
|
-
default: boolean;
|
|
36
|
-
};
|
|
37
|
-
highlightedValue: {
|
|
38
|
-
type: import("vue").PropType<DateValue>;
|
|
39
|
-
default: undefined;
|
|
40
|
-
};
|
|
41
|
-
defaultHighlightedValue: {
|
|
42
|
-
type: import("vue").PropType<DateValue>;
|
|
43
|
-
default: undefined;
|
|
44
|
-
};
|
|
45
|
-
referenceDate: {
|
|
46
|
-
type: import("vue").PropType<DateValue>;
|
|
47
|
-
default: undefined;
|
|
48
|
-
};
|
|
49
|
-
defaultView: {
|
|
50
|
-
type: import("vue").PropType<import("@sectile/temporal").CalendarViewMode>;
|
|
51
|
-
default: import("@sectile/temporal").CalendarViewMode;
|
|
52
|
-
};
|
|
53
|
-
disabled: {
|
|
54
|
-
type: BooleanConstructor;
|
|
55
|
-
default: boolean;
|
|
56
|
-
};
|
|
57
|
-
readonly: {
|
|
58
|
-
type: BooleanConstructor;
|
|
59
|
-
default: boolean;
|
|
60
|
-
};
|
|
61
|
-
required: {
|
|
62
|
-
type: BooleanConstructor;
|
|
63
|
-
default: boolean;
|
|
64
|
-
};
|
|
65
|
-
label: {
|
|
66
|
-
type: StringConstructor;
|
|
67
|
-
default: undefined;
|
|
68
|
-
};
|
|
69
|
-
policies: {
|
|
70
|
-
type: import("vue").PropType<Readonly<Record<string, unknown>>>;
|
|
71
|
-
default: undefined;
|
|
72
|
-
};
|
|
73
|
-
as: {
|
|
74
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
75
|
-
default: string;
|
|
76
|
-
};
|
|
77
|
-
asChild: {
|
|
78
|
-
type: BooleanConstructor;
|
|
79
|
-
default: boolean;
|
|
80
|
-
};
|
|
81
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
82
|
-
'update:modelValue': (_value: import("./internal/date-picker.js").PickerValue) => boolean;
|
|
83
|
-
'update:open': (_value: boolean) => boolean;
|
|
84
|
-
'update:highlightedValue': (_value: DateValue) => boolean;
|
|
85
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
86
|
-
modelValue: {
|
|
87
|
-
type: import("vue").PropType<import("./internal/date-picker.js").PickerValue>;
|
|
88
|
-
default: undefined;
|
|
89
|
-
};
|
|
90
|
-
defaultValue: {
|
|
91
|
-
type: import("vue").PropType<import("./internal/date-picker.js").PickerValue>;
|
|
92
|
-
default: null;
|
|
93
|
-
};
|
|
94
|
-
open: {
|
|
95
|
-
type: BooleanConstructor;
|
|
96
|
-
default: undefined;
|
|
97
|
-
};
|
|
98
|
-
defaultOpen: {
|
|
99
|
-
type: BooleanConstructor;
|
|
100
|
-
default: boolean;
|
|
101
|
-
};
|
|
102
|
-
highlightedValue: {
|
|
103
|
-
type: import("vue").PropType<DateValue>;
|
|
104
|
-
default: undefined;
|
|
105
|
-
};
|
|
106
|
-
defaultHighlightedValue: {
|
|
107
|
-
type: import("vue").PropType<DateValue>;
|
|
108
|
-
default: undefined;
|
|
109
|
-
};
|
|
110
|
-
referenceDate: {
|
|
111
|
-
type: import("vue").PropType<DateValue>;
|
|
112
|
-
default: undefined;
|
|
113
|
-
};
|
|
114
|
-
defaultView: {
|
|
115
|
-
type: import("vue").PropType<import("@sectile/temporal").CalendarViewMode>;
|
|
116
|
-
default: import("@sectile/temporal").CalendarViewMode;
|
|
117
|
-
};
|
|
118
|
-
disabled: {
|
|
119
|
-
type: BooleanConstructor;
|
|
120
|
-
default: boolean;
|
|
121
|
-
};
|
|
122
|
-
readonly: {
|
|
123
|
-
type: BooleanConstructor;
|
|
124
|
-
default: boolean;
|
|
125
|
-
};
|
|
126
|
-
required: {
|
|
127
|
-
type: BooleanConstructor;
|
|
128
|
-
default: boolean;
|
|
129
|
-
};
|
|
130
|
-
label: {
|
|
131
|
-
type: StringConstructor;
|
|
132
|
-
default: undefined;
|
|
133
|
-
};
|
|
134
|
-
policies: {
|
|
135
|
-
type: import("vue").PropType<Readonly<Record<string, unknown>>>;
|
|
136
|
-
default: undefined;
|
|
137
|
-
};
|
|
138
|
-
as: {
|
|
139
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
140
|
-
default: string;
|
|
141
|
-
};
|
|
142
|
-
asChild: {
|
|
143
|
-
type: BooleanConstructor;
|
|
144
|
-
default: boolean;
|
|
145
|
-
};
|
|
146
|
-
}>> & Readonly<{
|
|
147
|
-
"onUpdate:highlightedValue"?: (_value: DateValue) => any;
|
|
148
|
-
"onUpdate:modelValue"?: (_value: import("./internal/date-picker.js").PickerValue) => any;
|
|
149
|
-
"onUpdate:open"?: (_value: boolean) => any;
|
|
150
|
-
}>, {
|
|
151
|
-
modelValue: import("./internal/date-picker.js").PickerValue;
|
|
152
|
-
defaultValue: import("./internal/date-picker.js").PickerValue;
|
|
153
|
-
open: boolean;
|
|
154
|
-
defaultOpen: boolean;
|
|
155
|
-
highlightedValue: DateValue;
|
|
156
|
-
defaultHighlightedValue: DateValue;
|
|
157
|
-
referenceDate: DateValue;
|
|
158
|
-
defaultView: import("@sectile/temporal").CalendarViewMode;
|
|
159
|
-
disabled: boolean;
|
|
160
|
-
readonly: boolean;
|
|
161
|
-
required: boolean;
|
|
162
|
-
label: string;
|
|
163
|
-
policies: Readonly<Record<string, unknown>>;
|
|
164
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
165
|
-
asChild: boolean;
|
|
166
|
-
}, import("vue").SlotsType<{
|
|
167
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
168
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
20
|
+
export declare const DateTimePickerRoot: import("./internal/date-picker.js").PickerRootComponent<"date-time">;
|
|
21
|
+
export type DateTimePickerRootSlotProps = PickerRootSlotProps<DateTimeValue | null>;
|
|
169
22
|
export type DateTimePickerValueChangeHandler = NonNullable<InstanceType<typeof DateTimePickerRoot>['$props']['onUpdate:modelValue']>;
|
|
170
23
|
export type DateTimePickerOpenChangeHandler = NonNullable<InstanceType<typeof DateTimePickerRoot>['$props']['onUpdate:open']>;
|
|
171
24
|
export type DateTimePickerHighlightedValueChangeHandler = NonNullable<InstanceType<typeof DateTimePickerRoot>['$props']['onUpdate:highlightedValue']>;
|
|
172
|
-
export declare const DateTimePickerTrigger: import("
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
default: string;
|
|
176
|
-
};
|
|
177
|
-
asChild: {
|
|
178
|
-
type: BooleanConstructor;
|
|
179
|
-
default: boolean;
|
|
180
|
-
};
|
|
181
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
182
|
-
as: {
|
|
183
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
184
|
-
default: string;
|
|
185
|
-
};
|
|
186
|
-
asChild: {
|
|
187
|
-
type: BooleanConstructor;
|
|
188
|
-
default: boolean;
|
|
189
|
-
};
|
|
190
|
-
}>> & Readonly<{}>, {
|
|
191
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
192
|
-
asChild: boolean;
|
|
193
|
-
}, import("vue").SlotsType<{
|
|
194
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
195
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
196
|
-
export declare const DateTimePickerContent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
197
|
-
as: {
|
|
198
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
199
|
-
default: string;
|
|
200
|
-
};
|
|
201
|
-
asChild: {
|
|
202
|
-
type: BooleanConstructor;
|
|
203
|
-
default: boolean;
|
|
204
|
-
};
|
|
205
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
206
|
-
as: {
|
|
207
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
208
|
-
default: string;
|
|
209
|
-
};
|
|
210
|
-
asChild: {
|
|
211
|
-
type: BooleanConstructor;
|
|
212
|
-
default: boolean;
|
|
213
|
-
};
|
|
214
|
-
}>> & Readonly<{}>, {
|
|
215
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
216
|
-
asChild: boolean;
|
|
217
|
-
}, import("vue").SlotsType<{
|
|
218
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
219
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
220
|
-
export declare const DateTimePickerGrid: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
221
|
-
as: {
|
|
222
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
223
|
-
default: string;
|
|
224
|
-
};
|
|
225
|
-
asChild: {
|
|
226
|
-
type: BooleanConstructor;
|
|
227
|
-
default: boolean;
|
|
228
|
-
};
|
|
229
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
230
|
-
as: {
|
|
231
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
232
|
-
default: string;
|
|
233
|
-
};
|
|
234
|
-
asChild: {
|
|
235
|
-
type: BooleanConstructor;
|
|
236
|
-
default: boolean;
|
|
237
|
-
};
|
|
238
|
-
}>> & Readonly<{}>, {
|
|
239
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
240
|
-
asChild: boolean;
|
|
241
|
-
}, import("vue").SlotsType<{
|
|
242
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
243
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
25
|
+
export declare const DateTimePickerTrigger: import("./internal/date-picker.js").PickerRootPartComponent<"date-time">;
|
|
26
|
+
export declare const DateTimePickerContent: import("./internal/date-picker.js").PickerRootPartComponent<"date-time">;
|
|
27
|
+
export declare const DateTimePickerGrid: import("./internal/date-picker.js").PickerRootPartComponent<"date-time">;
|
|
244
28
|
export declare const DateTimePickerCell: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
245
29
|
value: {
|
|
246
30
|
type: import("vue").PropType<DateValue>;
|
|
@@ -425,221 +209,14 @@ export declare const DateTimePickerTimeInput: import("vue").DefineComponent<impo
|
|
|
425
209
|
as: import("./primitive.js").PrimitiveAs;
|
|
426
210
|
asChild: boolean;
|
|
427
211
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
428
|
-
export declare const DateTimePickerPreviousWeek: import("
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
as: {
|
|
439
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
440
|
-
default: string;
|
|
441
|
-
};
|
|
442
|
-
asChild: {
|
|
443
|
-
type: BooleanConstructor;
|
|
444
|
-
default: boolean;
|
|
445
|
-
};
|
|
446
|
-
}>> & Readonly<{}>, {
|
|
447
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
448
|
-
asChild: boolean;
|
|
449
|
-
}, import("vue").SlotsType<{
|
|
450
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
451
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
452
|
-
export declare const DateTimePickerNextWeek: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
453
|
-
as: {
|
|
454
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
455
|
-
default: string;
|
|
456
|
-
};
|
|
457
|
-
asChild: {
|
|
458
|
-
type: BooleanConstructor;
|
|
459
|
-
default: boolean;
|
|
460
|
-
};
|
|
461
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
462
|
-
as: {
|
|
463
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
464
|
-
default: string;
|
|
465
|
-
};
|
|
466
|
-
asChild: {
|
|
467
|
-
type: BooleanConstructor;
|
|
468
|
-
default: boolean;
|
|
469
|
-
};
|
|
470
|
-
}>> & Readonly<{}>, {
|
|
471
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
472
|
-
asChild: boolean;
|
|
473
|
-
}, import("vue").SlotsType<{
|
|
474
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
475
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
476
|
-
export declare const DateTimePickerPreviousMonth: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
477
|
-
as: {
|
|
478
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
479
|
-
default: string;
|
|
480
|
-
};
|
|
481
|
-
asChild: {
|
|
482
|
-
type: BooleanConstructor;
|
|
483
|
-
default: boolean;
|
|
484
|
-
};
|
|
485
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
486
|
-
as: {
|
|
487
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
488
|
-
default: string;
|
|
489
|
-
};
|
|
490
|
-
asChild: {
|
|
491
|
-
type: BooleanConstructor;
|
|
492
|
-
default: boolean;
|
|
493
|
-
};
|
|
494
|
-
}>> & Readonly<{}>, {
|
|
495
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
496
|
-
asChild: boolean;
|
|
497
|
-
}, import("vue").SlotsType<{
|
|
498
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
499
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
500
|
-
export declare const DateTimePickerNextMonth: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
501
|
-
as: {
|
|
502
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
503
|
-
default: string;
|
|
504
|
-
};
|
|
505
|
-
asChild: {
|
|
506
|
-
type: BooleanConstructor;
|
|
507
|
-
default: boolean;
|
|
508
|
-
};
|
|
509
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
510
|
-
as: {
|
|
511
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
512
|
-
default: string;
|
|
513
|
-
};
|
|
514
|
-
asChild: {
|
|
515
|
-
type: BooleanConstructor;
|
|
516
|
-
default: boolean;
|
|
517
|
-
};
|
|
518
|
-
}>> & Readonly<{}>, {
|
|
519
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
520
|
-
asChild: boolean;
|
|
521
|
-
}, import("vue").SlotsType<{
|
|
522
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
523
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
524
|
-
export declare const DateTimePickerPreviousYear: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
525
|
-
as: {
|
|
526
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
527
|
-
default: string;
|
|
528
|
-
};
|
|
529
|
-
asChild: {
|
|
530
|
-
type: BooleanConstructor;
|
|
531
|
-
default: boolean;
|
|
532
|
-
};
|
|
533
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
534
|
-
as: {
|
|
535
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
536
|
-
default: string;
|
|
537
|
-
};
|
|
538
|
-
asChild: {
|
|
539
|
-
type: BooleanConstructor;
|
|
540
|
-
default: boolean;
|
|
541
|
-
};
|
|
542
|
-
}>> & Readonly<{}>, {
|
|
543
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
544
|
-
asChild: boolean;
|
|
545
|
-
}, import("vue").SlotsType<{
|
|
546
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
547
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
548
|
-
export declare const DateTimePickerNextYear: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
549
|
-
as: {
|
|
550
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
551
|
-
default: string;
|
|
552
|
-
};
|
|
553
|
-
asChild: {
|
|
554
|
-
type: BooleanConstructor;
|
|
555
|
-
default: boolean;
|
|
556
|
-
};
|
|
557
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
558
|
-
as: {
|
|
559
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
560
|
-
default: string;
|
|
561
|
-
};
|
|
562
|
-
asChild: {
|
|
563
|
-
type: BooleanConstructor;
|
|
564
|
-
default: boolean;
|
|
565
|
-
};
|
|
566
|
-
}>> & Readonly<{}>, {
|
|
567
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
568
|
-
asChild: boolean;
|
|
569
|
-
}, import("vue").SlotsType<{
|
|
570
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
571
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
572
|
-
export declare const DateTimePickerWeekViewTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
573
|
-
as: {
|
|
574
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
575
|
-
default: string;
|
|
576
|
-
};
|
|
577
|
-
asChild: {
|
|
578
|
-
type: BooleanConstructor;
|
|
579
|
-
default: boolean;
|
|
580
|
-
};
|
|
581
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
582
|
-
as: {
|
|
583
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
584
|
-
default: string;
|
|
585
|
-
};
|
|
586
|
-
asChild: {
|
|
587
|
-
type: BooleanConstructor;
|
|
588
|
-
default: boolean;
|
|
589
|
-
};
|
|
590
|
-
}>> & Readonly<{}>, {
|
|
591
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
592
|
-
asChild: boolean;
|
|
593
|
-
}, import("vue").SlotsType<{
|
|
594
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
595
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
596
|
-
export declare const DateTimePickerMonthViewTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
597
|
-
as: {
|
|
598
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
599
|
-
default: string;
|
|
600
|
-
};
|
|
601
|
-
asChild: {
|
|
602
|
-
type: BooleanConstructor;
|
|
603
|
-
default: boolean;
|
|
604
|
-
};
|
|
605
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
606
|
-
as: {
|
|
607
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
608
|
-
default: string;
|
|
609
|
-
};
|
|
610
|
-
asChild: {
|
|
611
|
-
type: BooleanConstructor;
|
|
612
|
-
default: boolean;
|
|
613
|
-
};
|
|
614
|
-
}>> & Readonly<{}>, {
|
|
615
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
616
|
-
asChild: boolean;
|
|
617
|
-
}, import("vue").SlotsType<{
|
|
618
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
619
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
620
|
-
export declare const DateTimePickerYearViewTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
621
|
-
as: {
|
|
622
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
623
|
-
default: string;
|
|
624
|
-
};
|
|
625
|
-
asChild: {
|
|
626
|
-
type: BooleanConstructor;
|
|
627
|
-
default: boolean;
|
|
628
|
-
};
|
|
629
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
630
|
-
as: {
|
|
631
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
632
|
-
default: string;
|
|
633
|
-
};
|
|
634
|
-
asChild: {
|
|
635
|
-
type: BooleanConstructor;
|
|
636
|
-
default: boolean;
|
|
637
|
-
};
|
|
638
|
-
}>> & Readonly<{}>, {
|
|
639
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
640
|
-
asChild: boolean;
|
|
641
|
-
}, import("vue").SlotsType<{
|
|
642
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
643
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
644
|
-
export type { DateTimeValue, DateValue, PickerCellSlotProps as DateTimePickerCellSlotProps, PickerMonthCellSlotProps as DateTimePickerMonthCellSlotProps, PickerPartProps as DateTimePickerPartProps, PickerRootSlotProps as DateTimePickerRootSlotProps };
|
|
212
|
+
export declare const DateTimePickerPreviousWeek: import("./internal/date-picker.js").PickerRootPartComponent<"date-time">;
|
|
213
|
+
export declare const DateTimePickerNextWeek: import("./internal/date-picker.js").PickerRootPartComponent<"date-time">;
|
|
214
|
+
export declare const DateTimePickerPreviousMonth: import("./internal/date-picker.js").PickerRootPartComponent<"date-time">;
|
|
215
|
+
export declare const DateTimePickerNextMonth: import("./internal/date-picker.js").PickerRootPartComponent<"date-time">;
|
|
216
|
+
export declare const DateTimePickerPreviousYear: import("./internal/date-picker.js").PickerRootPartComponent<"date-time">;
|
|
217
|
+
export declare const DateTimePickerNextYear: import("./internal/date-picker.js").PickerRootPartComponent<"date-time">;
|
|
218
|
+
export declare const DateTimePickerWeekViewTrigger: import("./internal/date-picker.js").PickerRootPartComponent<"date-time">;
|
|
219
|
+
export declare const DateTimePickerMonthViewTrigger: import("./internal/date-picker.js").PickerRootPartComponent<"date-time">;
|
|
220
|
+
export declare const DateTimePickerYearViewTrigger: import("./internal/date-picker.js").PickerRootPartComponent<"date-time">;
|
|
221
|
+
export type { DateTimeValue, DateValue, PickerCellSlotProps as DateTimePickerCellSlotProps, PickerMonthCellSlotProps as DateTimePickerMonthCellSlotProps, PickerPartProps as DateTimePickerPartProps };
|
|
645
222
|
//# sourceMappingURL=date-time-picker.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"date-time-picker.d.ts","sourceRoot":"","sources":["../src/date-time-picker.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AACzD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAClE,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-time-picker.d.ts","sourceRoot":"","sources":["../src/date-time-picker.ts"],"names":[],"mappings":"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"}
|
package/dist/date-time-picker.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
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 DateTimePickerRoot = createPickerRoot('date-time', 'SectileDateTimePickerRoot');
|
|
3
|
-
export const DateTimePickerTrigger = PickerTrigger;
|
|
4
|
-
export const DateTimePickerContent = PickerContent;
|
|
5
|
-
export const DateTimePickerGrid = PickerGrid;
|
|
3
|
+
export const DateTimePickerTrigger = specializePickerRootPart('date-time', PickerTrigger);
|
|
4
|
+
export const DateTimePickerContent = specializePickerRootPart('date-time', PickerContent);
|
|
5
|
+
export const DateTimePickerGrid = specializePickerRootPart('date-time', PickerGrid);
|
|
6
6
|
export const DateTimePickerCell = PickerCell;
|
|
7
7
|
export const DateTimePickerMonthCell = PickerMonthCell;
|
|
8
8
|
export const DateTimePickerDateTimeInput = createPickerInput('date-time-input', 'SectileDateTimePickerDateTimeInput');
|
|
9
9
|
export const DateTimePickerDateInput = createPickerInput('date-input', 'SectileDateTimePickerDateInput');
|
|
10
10
|
export const DateTimePickerTimeInput = createPickerInput('time-input', 'SectileDateTimePickerTimeInput');
|
|
11
|
-
export const DateTimePickerPreviousWeek = createPickerMove('week', -1, 'SectileDateTimePickerPreviousWeek');
|
|
12
|
-
export const DateTimePickerNextWeek = createPickerMove('week', 1, 'SectileDateTimePickerNextWeek');
|
|
13
|
-
export const DateTimePickerPreviousMonth = createPickerMove('month', -1, 'SectileDateTimePickerPreviousMonth');
|
|
14
|
-
export const DateTimePickerNextMonth = createPickerMove('month', 1, 'SectileDateTimePickerNextMonth');
|
|
15
|
-
export const DateTimePickerPreviousYear = createPickerMove('year', -1, 'SectileDateTimePickerPreviousYear');
|
|
16
|
-
export const DateTimePickerNextYear = createPickerMove('year', 1, 'SectileDateTimePickerNextYear');
|
|
17
|
-
export const DateTimePickerWeekViewTrigger = createPickerViewTrigger('week', 'SectileDateTimePickerWeekViewTrigger');
|
|
18
|
-
export const DateTimePickerMonthViewTrigger = createPickerViewTrigger('month', 'SectileDateTimePickerMonthViewTrigger');
|
|
19
|
-
export const DateTimePickerYearViewTrigger = createPickerViewTrigger('year', 'SectileDateTimePickerYearViewTrigger');
|
|
11
|
+
export const DateTimePickerPreviousWeek = specializePickerRootPart('date-time', createPickerMove('week', -1, 'SectileDateTimePickerPreviousWeek'));
|
|
12
|
+
export const DateTimePickerNextWeek = specializePickerRootPart('date-time', createPickerMove('week', 1, 'SectileDateTimePickerNextWeek'));
|
|
13
|
+
export const DateTimePickerPreviousMonth = specializePickerRootPart('date-time', createPickerMove('month', -1, 'SectileDateTimePickerPreviousMonth'));
|
|
14
|
+
export const DateTimePickerNextMonth = specializePickerRootPart('date-time', createPickerMove('month', 1, 'SectileDateTimePickerNextMonth'));
|
|
15
|
+
export const DateTimePickerPreviousYear = specializePickerRootPart('date-time', createPickerMove('year', -1, 'SectileDateTimePickerPreviousYear'));
|
|
16
|
+
export const DateTimePickerNextYear = specializePickerRootPart('date-time', createPickerMove('year', 1, 'SectileDateTimePickerNextYear'));
|
|
17
|
+
export const DateTimePickerWeekViewTrigger = specializePickerRootPart('date-time', createPickerViewTrigger('week', 'SectileDateTimePickerWeekViewTrigger'));
|
|
18
|
+
export const DateTimePickerMonthViewTrigger = specializePickerRootPart('date-time', createPickerViewTrigger('month', 'SectileDateTimePickerMonthViewTrigger'));
|
|
19
|
+
export const DateTimePickerYearViewTrigger = specializePickerRootPart('date-time', createPickerViewTrigger('year', 'SectileDateTimePickerYearViewTrigger'));
|
|
20
20
|
//# sourceMappingURL=date-time-picker.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"date-time-picker.js","sourceRoot":"","sources":["../src/date-time-picker.ts"],"names":[],"mappings":"AAGA,OAAO,EACL,UAAU,EAAE,aAAa,EAAE,UAAU,EAAE,eAAe,EAAE,aAAa,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,uBAAuB,
|
|
1
|
+
{"version":3,"file":"date-time-picker.js","sourceRoot":"","sources":["../src/date-time-picker.ts"],"names":[],"mappings":"AAGA,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,kBAAkB,GAAG,gBAAgB,CAAC,WAAW,EAAE,2BAA2B,CAAC,CAAC;AAK7F,MAAM,CAAC,MAAM,qBAAqB,GAAG,wBAAwB,CAAC,WAAW,EAAE,aAAa,CAAC,CAAC;AAC1F,MAAM,CAAC,MAAM,qBAAqB,GAAG,wBAAwB,CAAC,WAAW,EAAE,aAAa,CAAC,CAAC;AAC1F,MAAM,CAAC,MAAM,kBAAkB,GAAG,wBAAwB,CAAC,WAAW,EAAE,UAAU,CAAC,CAAC;AACpF,MAAM,CAAC,MAAM,kBAAkB,GAAG,UAAU,CAAC;AAC7C,MAAM,CAAC,MAAM,uBAAuB,GAAG,eAAe,CAAC;AACvD,MAAM,CAAC,MAAM,2BAA2B,GAAG,iBAAiB,CAAC,iBAAiB,EAAE,oCAAoC,CAAC,CAAC;AACtH,MAAM,CAAC,MAAM,uBAAuB,GAAG,iBAAiB,CAAC,YAAY,EAAE,gCAAgC,CAAC,CAAC;AACzG,MAAM,CAAC,MAAM,uBAAuB,GAAG,iBAAiB,CAAC,YAAY,EAAE,gCAAgC,CAAC,CAAC;AACzG,MAAM,CAAC,MAAM,0BAA0B,GAAG,wBAAwB,CAAC,WAAW,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAC,CAAC,EAAE,mCAAmC,CAAC,CAAC,CAAC;AACnJ,MAAM,CAAC,MAAM,sBAAsB,GAAG,wBAAwB,CAAC,WAAW,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAC,EAAE,+BAA+B,CAAC,CAAC,CAAC;AAC1I,MAAM,CAAC,MAAM,2BAA2B,GAAG,wBAAwB,CAAC,WAAW,EAAE,gBAAgB,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,oCAAoC,CAAC,CAAC,CAAC;AACtJ,MAAM,CAAC,MAAM,uBAAuB,GAAG,wBAAwB,CAAC,WAAW,EAAE,gBAAgB,CAAC,OAAO,EAAE,CAAC,EAAE,gCAAgC,CAAC,CAAC,CAAC;AAC7I,MAAM,CAAC,MAAM,0BAA0B,GAAG,wBAAwB,CAAC,WAAW,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAC,CAAC,EAAE,mCAAmC,CAAC,CAAC,CAAC;AACnJ,MAAM,CAAC,MAAM,sBAAsB,GAAG,wBAAwB,CAAC,WAAW,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAC,EAAE,+BAA+B,CAAC,CAAC,CAAC;AAC1I,MAAM,CAAC,MAAM,6BAA6B,GAAG,wBAAwB,CAAC,WAAW,EAAE,uBAAuB,CAAC,MAAM,EAAE,sCAAsC,CAAC,CAAC,CAAC;AAC5J,MAAM,CAAC,MAAM,8BAA8B,GAAG,wBAAwB,CAAC,WAAW,EAAE,uBAAuB,CAAC,OAAO,EAAE,uCAAuC,CAAC,CAAC,CAAC;AAC/J,MAAM,CAAC,MAAM,6BAA6B,GAAG,wBAAwB,CAAC,WAAW,EAAE,uBAAuB,CAAC,MAAM,EAAE,sCAAsC,CAAC,CAAC,CAAC"}
|