@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
|
@@ -2,11 +2,12 @@ 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;
|
|
9
9
|
readonly defaultHighlightedValue?: DateValue;
|
|
10
|
+
readonly referenceDate?: DateValue;
|
|
10
11
|
readonly defaultView?: PickerRootSlotProps['viewMode'];
|
|
11
12
|
readonly open?: boolean;
|
|
12
13
|
readonly defaultOpen?: boolean;
|
|
@@ -16,221 +17,14 @@ export interface DateTimePickerRootProps {
|
|
|
16
17
|
readonly label?: string;
|
|
17
18
|
readonly policies?: DateTimePickerOptions['policies'];
|
|
18
19
|
}
|
|
19
|
-
export declare const DateTimePickerRoot: import("
|
|
20
|
-
|
|
21
|
-
type: import("vue").PropType<import("./internal/date-picker.js").PickerValue>;
|
|
22
|
-
default: undefined;
|
|
23
|
-
};
|
|
24
|
-
defaultValue: {
|
|
25
|
-
type: import("vue").PropType<import("./internal/date-picker.js").PickerValue>;
|
|
26
|
-
default: null;
|
|
27
|
-
};
|
|
28
|
-
open: {
|
|
29
|
-
type: BooleanConstructor;
|
|
30
|
-
default: undefined;
|
|
31
|
-
};
|
|
32
|
-
defaultOpen: {
|
|
33
|
-
type: BooleanConstructor;
|
|
34
|
-
default: boolean;
|
|
35
|
-
};
|
|
36
|
-
highlightedValue: {
|
|
37
|
-
type: import("vue").PropType<DateValue>;
|
|
38
|
-
default: undefined;
|
|
39
|
-
};
|
|
40
|
-
defaultHighlightedValue: {
|
|
41
|
-
type: import("vue").PropType<DateValue>;
|
|
42
|
-
default: undefined;
|
|
43
|
-
};
|
|
44
|
-
defaultView: {
|
|
45
|
-
type: import("vue").PropType<import("@sectile/temporal/calendar").CalendarViewMode>;
|
|
46
|
-
default: import("@sectile/temporal/calendar").CalendarViewMode;
|
|
47
|
-
};
|
|
48
|
-
disabled: {
|
|
49
|
-
type: BooleanConstructor;
|
|
50
|
-
default: boolean;
|
|
51
|
-
};
|
|
52
|
-
readonly: {
|
|
53
|
-
type: BooleanConstructor;
|
|
54
|
-
default: boolean;
|
|
55
|
-
};
|
|
56
|
-
required: {
|
|
57
|
-
type: BooleanConstructor;
|
|
58
|
-
default: boolean;
|
|
59
|
-
};
|
|
60
|
-
label: {
|
|
61
|
-
type: StringConstructor;
|
|
62
|
-
default: undefined;
|
|
63
|
-
};
|
|
64
|
-
policies: {
|
|
65
|
-
type: import("vue").PropType<Readonly<Record<string, unknown>>>;
|
|
66
|
-
default: undefined;
|
|
67
|
-
};
|
|
68
|
-
as: {
|
|
69
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
70
|
-
default: string;
|
|
71
|
-
};
|
|
72
|
-
asChild: {
|
|
73
|
-
type: BooleanConstructor;
|
|
74
|
-
default: boolean;
|
|
75
|
-
};
|
|
76
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
77
|
-
'update:modelValue': (_value: import("./internal/date-picker.js").PickerValue) => boolean;
|
|
78
|
-
'update:open': (_value: boolean) => boolean;
|
|
79
|
-
'update:highlightedValue': (_value: DateValue) => boolean;
|
|
80
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
81
|
-
modelValue: {
|
|
82
|
-
type: import("vue").PropType<import("./internal/date-picker.js").PickerValue>;
|
|
83
|
-
default: undefined;
|
|
84
|
-
};
|
|
85
|
-
defaultValue: {
|
|
86
|
-
type: import("vue").PropType<import("./internal/date-picker.js").PickerValue>;
|
|
87
|
-
default: null;
|
|
88
|
-
};
|
|
89
|
-
open: {
|
|
90
|
-
type: BooleanConstructor;
|
|
91
|
-
default: undefined;
|
|
92
|
-
};
|
|
93
|
-
defaultOpen: {
|
|
94
|
-
type: BooleanConstructor;
|
|
95
|
-
default: boolean;
|
|
96
|
-
};
|
|
97
|
-
highlightedValue: {
|
|
98
|
-
type: import("vue").PropType<DateValue>;
|
|
99
|
-
default: undefined;
|
|
100
|
-
};
|
|
101
|
-
defaultHighlightedValue: {
|
|
102
|
-
type: import("vue").PropType<DateValue>;
|
|
103
|
-
default: undefined;
|
|
104
|
-
};
|
|
105
|
-
defaultView: {
|
|
106
|
-
type: import("vue").PropType<import("@sectile/temporal/calendar").CalendarViewMode>;
|
|
107
|
-
default: import("@sectile/temporal/calendar").CalendarViewMode;
|
|
108
|
-
};
|
|
109
|
-
disabled: {
|
|
110
|
-
type: BooleanConstructor;
|
|
111
|
-
default: boolean;
|
|
112
|
-
};
|
|
113
|
-
readonly: {
|
|
114
|
-
type: BooleanConstructor;
|
|
115
|
-
default: boolean;
|
|
116
|
-
};
|
|
117
|
-
required: {
|
|
118
|
-
type: BooleanConstructor;
|
|
119
|
-
default: boolean;
|
|
120
|
-
};
|
|
121
|
-
label: {
|
|
122
|
-
type: StringConstructor;
|
|
123
|
-
default: undefined;
|
|
124
|
-
};
|
|
125
|
-
policies: {
|
|
126
|
-
type: import("vue").PropType<Readonly<Record<string, unknown>>>;
|
|
127
|
-
default: undefined;
|
|
128
|
-
};
|
|
129
|
-
as: {
|
|
130
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
131
|
-
default: string;
|
|
132
|
-
};
|
|
133
|
-
asChild: {
|
|
134
|
-
type: BooleanConstructor;
|
|
135
|
-
default: boolean;
|
|
136
|
-
};
|
|
137
|
-
}>> & Readonly<{
|
|
138
|
-
"onUpdate:highlightedValue"?: (_value: DateValue) => any;
|
|
139
|
-
"onUpdate:modelValue"?: (_value: import("./internal/date-picker.js").PickerValue) => any;
|
|
140
|
-
"onUpdate:open"?: (_value: boolean) => any;
|
|
141
|
-
}>, {
|
|
142
|
-
modelValue: import("./internal/date-picker.js").PickerValue;
|
|
143
|
-
defaultValue: import("./internal/date-picker.js").PickerValue;
|
|
144
|
-
open: boolean;
|
|
145
|
-
defaultOpen: boolean;
|
|
146
|
-
highlightedValue: DateValue;
|
|
147
|
-
defaultHighlightedValue: DateValue;
|
|
148
|
-
defaultView: import("@sectile/temporal/calendar").CalendarViewMode;
|
|
149
|
-
disabled: boolean;
|
|
150
|
-
readonly: boolean;
|
|
151
|
-
required: boolean;
|
|
152
|
-
label: string;
|
|
153
|
-
policies: Readonly<Record<string, unknown>>;
|
|
154
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
155
|
-
asChild: boolean;
|
|
156
|
-
}, import("vue").SlotsType<{
|
|
157
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
158
|
-
}>, {}, {}, 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>;
|
|
159
22
|
export type DateTimePickerValueChangeHandler = NonNullable<InstanceType<typeof DateTimePickerRoot>['$props']['onUpdate:modelValue']>;
|
|
160
23
|
export type DateTimePickerOpenChangeHandler = NonNullable<InstanceType<typeof DateTimePickerRoot>['$props']['onUpdate:open']>;
|
|
161
24
|
export type DateTimePickerHighlightedValueChangeHandler = NonNullable<InstanceType<typeof DateTimePickerRoot>['$props']['onUpdate:highlightedValue']>;
|
|
162
|
-
export declare const DateTimePickerTrigger: import("
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
default: string;
|
|
166
|
-
};
|
|
167
|
-
asChild: {
|
|
168
|
-
type: BooleanConstructor;
|
|
169
|
-
default: boolean;
|
|
170
|
-
};
|
|
171
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
172
|
-
as: {
|
|
173
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
174
|
-
default: string;
|
|
175
|
-
};
|
|
176
|
-
asChild: {
|
|
177
|
-
type: BooleanConstructor;
|
|
178
|
-
default: boolean;
|
|
179
|
-
};
|
|
180
|
-
}>> & Readonly<{}>, {
|
|
181
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
182
|
-
asChild: boolean;
|
|
183
|
-
}, import("vue").SlotsType<{
|
|
184
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
185
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
186
|
-
export declare const DateTimePickerContent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
187
|
-
as: {
|
|
188
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
189
|
-
default: string;
|
|
190
|
-
};
|
|
191
|
-
asChild: {
|
|
192
|
-
type: BooleanConstructor;
|
|
193
|
-
default: boolean;
|
|
194
|
-
};
|
|
195
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
196
|
-
as: {
|
|
197
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
198
|
-
default: string;
|
|
199
|
-
};
|
|
200
|
-
asChild: {
|
|
201
|
-
type: BooleanConstructor;
|
|
202
|
-
default: boolean;
|
|
203
|
-
};
|
|
204
|
-
}>> & Readonly<{}>, {
|
|
205
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
206
|
-
asChild: boolean;
|
|
207
|
-
}, import("vue").SlotsType<{
|
|
208
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
209
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
210
|
-
export declare const DateTimePickerGrid: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
211
|
-
as: {
|
|
212
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
213
|
-
default: string;
|
|
214
|
-
};
|
|
215
|
-
asChild: {
|
|
216
|
-
type: BooleanConstructor;
|
|
217
|
-
default: boolean;
|
|
218
|
-
};
|
|
219
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
220
|
-
as: {
|
|
221
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
222
|
-
default: string;
|
|
223
|
-
};
|
|
224
|
-
asChild: {
|
|
225
|
-
type: BooleanConstructor;
|
|
226
|
-
default: boolean;
|
|
227
|
-
};
|
|
228
|
-
}>> & Readonly<{}>, {
|
|
229
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
230
|
-
asChild: boolean;
|
|
231
|
-
}, import("vue").SlotsType<{
|
|
232
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
233
|
-
}>, {}, {}, 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">;
|
|
234
28
|
export declare const DateTimePickerCell: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
235
29
|
value: {
|
|
236
30
|
type: import("vue").PropType<DateValue>;
|
|
@@ -265,7 +59,7 @@ export declare const DateTimePickerCell: import("vue").DefineComponent<import("v
|
|
|
265
59
|
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
266
60
|
export declare const DateTimePickerMonthCell: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
267
61
|
value: {
|
|
268
|
-
type: import("vue").PropType<import("@sectile/
|
|
62
|
+
type: import("vue").PropType<import("@sectile/temporal").CalendarMonthValue>;
|
|
269
63
|
required: true;
|
|
270
64
|
};
|
|
271
65
|
as: {
|
|
@@ -278,7 +72,7 @@ export declare const DateTimePickerMonthCell: import("vue").DefineComponent<impo
|
|
|
278
72
|
};
|
|
279
73
|
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
280
74
|
value: {
|
|
281
|
-
type: import("vue").PropType<import("@sectile/
|
|
75
|
+
type: import("vue").PropType<import("@sectile/temporal").CalendarMonthValue>;
|
|
282
76
|
required: true;
|
|
283
77
|
};
|
|
284
78
|
as: {
|
|
@@ -415,221 +209,14 @@ export declare const DateTimePickerTimeInput: import("vue").DefineComponent<impo
|
|
|
415
209
|
as: import("./primitive.js").PrimitiveAs;
|
|
416
210
|
asChild: boolean;
|
|
417
211
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
418
|
-
export declare const DateTimePickerPreviousWeek: import("
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
as: {
|
|
429
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
430
|
-
default: string;
|
|
431
|
-
};
|
|
432
|
-
asChild: {
|
|
433
|
-
type: BooleanConstructor;
|
|
434
|
-
default: boolean;
|
|
435
|
-
};
|
|
436
|
-
}>> & Readonly<{}>, {
|
|
437
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
438
|
-
asChild: boolean;
|
|
439
|
-
}, import("vue").SlotsType<{
|
|
440
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
441
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
442
|
-
export declare const DateTimePickerNextWeek: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
443
|
-
as: {
|
|
444
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
445
|
-
default: string;
|
|
446
|
-
};
|
|
447
|
-
asChild: {
|
|
448
|
-
type: BooleanConstructor;
|
|
449
|
-
default: boolean;
|
|
450
|
-
};
|
|
451
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
452
|
-
as: {
|
|
453
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
454
|
-
default: string;
|
|
455
|
-
};
|
|
456
|
-
asChild: {
|
|
457
|
-
type: BooleanConstructor;
|
|
458
|
-
default: boolean;
|
|
459
|
-
};
|
|
460
|
-
}>> & Readonly<{}>, {
|
|
461
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
462
|
-
asChild: boolean;
|
|
463
|
-
}, import("vue").SlotsType<{
|
|
464
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
465
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
466
|
-
export declare const DateTimePickerPreviousMonth: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
467
|
-
as: {
|
|
468
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
469
|
-
default: string;
|
|
470
|
-
};
|
|
471
|
-
asChild: {
|
|
472
|
-
type: BooleanConstructor;
|
|
473
|
-
default: boolean;
|
|
474
|
-
};
|
|
475
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
476
|
-
as: {
|
|
477
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
478
|
-
default: string;
|
|
479
|
-
};
|
|
480
|
-
asChild: {
|
|
481
|
-
type: BooleanConstructor;
|
|
482
|
-
default: boolean;
|
|
483
|
-
};
|
|
484
|
-
}>> & Readonly<{}>, {
|
|
485
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
486
|
-
asChild: boolean;
|
|
487
|
-
}, import("vue").SlotsType<{
|
|
488
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
489
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
490
|
-
export declare const DateTimePickerNextMonth: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
491
|
-
as: {
|
|
492
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
493
|
-
default: string;
|
|
494
|
-
};
|
|
495
|
-
asChild: {
|
|
496
|
-
type: BooleanConstructor;
|
|
497
|
-
default: boolean;
|
|
498
|
-
};
|
|
499
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
500
|
-
as: {
|
|
501
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
502
|
-
default: string;
|
|
503
|
-
};
|
|
504
|
-
asChild: {
|
|
505
|
-
type: BooleanConstructor;
|
|
506
|
-
default: boolean;
|
|
507
|
-
};
|
|
508
|
-
}>> & Readonly<{}>, {
|
|
509
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
510
|
-
asChild: boolean;
|
|
511
|
-
}, import("vue").SlotsType<{
|
|
512
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
513
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
514
|
-
export declare const DateTimePickerPreviousYear: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
515
|
-
as: {
|
|
516
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
517
|
-
default: string;
|
|
518
|
-
};
|
|
519
|
-
asChild: {
|
|
520
|
-
type: BooleanConstructor;
|
|
521
|
-
default: boolean;
|
|
522
|
-
};
|
|
523
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
524
|
-
as: {
|
|
525
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
526
|
-
default: string;
|
|
527
|
-
};
|
|
528
|
-
asChild: {
|
|
529
|
-
type: BooleanConstructor;
|
|
530
|
-
default: boolean;
|
|
531
|
-
};
|
|
532
|
-
}>> & Readonly<{}>, {
|
|
533
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
534
|
-
asChild: boolean;
|
|
535
|
-
}, import("vue").SlotsType<{
|
|
536
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
537
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
538
|
-
export declare const DateTimePickerNextYear: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
539
|
-
as: {
|
|
540
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
541
|
-
default: string;
|
|
542
|
-
};
|
|
543
|
-
asChild: {
|
|
544
|
-
type: BooleanConstructor;
|
|
545
|
-
default: boolean;
|
|
546
|
-
};
|
|
547
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
548
|
-
as: {
|
|
549
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
550
|
-
default: string;
|
|
551
|
-
};
|
|
552
|
-
asChild: {
|
|
553
|
-
type: BooleanConstructor;
|
|
554
|
-
default: boolean;
|
|
555
|
-
};
|
|
556
|
-
}>> & Readonly<{}>, {
|
|
557
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
558
|
-
asChild: boolean;
|
|
559
|
-
}, import("vue").SlotsType<{
|
|
560
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
561
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
562
|
-
export declare const DateTimePickerWeekViewTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
563
|
-
as: {
|
|
564
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
565
|
-
default: string;
|
|
566
|
-
};
|
|
567
|
-
asChild: {
|
|
568
|
-
type: BooleanConstructor;
|
|
569
|
-
default: boolean;
|
|
570
|
-
};
|
|
571
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
572
|
-
as: {
|
|
573
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
574
|
-
default: string;
|
|
575
|
-
};
|
|
576
|
-
asChild: {
|
|
577
|
-
type: BooleanConstructor;
|
|
578
|
-
default: boolean;
|
|
579
|
-
};
|
|
580
|
-
}>> & Readonly<{}>, {
|
|
581
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
582
|
-
asChild: boolean;
|
|
583
|
-
}, import("vue").SlotsType<{
|
|
584
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
585
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
586
|
-
export declare const DateTimePickerMonthViewTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
587
|
-
as: {
|
|
588
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
589
|
-
default: string;
|
|
590
|
-
};
|
|
591
|
-
asChild: {
|
|
592
|
-
type: BooleanConstructor;
|
|
593
|
-
default: boolean;
|
|
594
|
-
};
|
|
595
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
596
|
-
as: {
|
|
597
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
598
|
-
default: string;
|
|
599
|
-
};
|
|
600
|
-
asChild: {
|
|
601
|
-
type: BooleanConstructor;
|
|
602
|
-
default: boolean;
|
|
603
|
-
};
|
|
604
|
-
}>> & Readonly<{}>, {
|
|
605
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
606
|
-
asChild: boolean;
|
|
607
|
-
}, import("vue").SlotsType<{
|
|
608
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
609
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
610
|
-
export declare const DateTimePickerYearViewTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
611
|
-
as: {
|
|
612
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
613
|
-
default: string;
|
|
614
|
-
};
|
|
615
|
-
asChild: {
|
|
616
|
-
type: BooleanConstructor;
|
|
617
|
-
default: boolean;
|
|
618
|
-
};
|
|
619
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
620
|
-
as: {
|
|
621
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
622
|
-
default: string;
|
|
623
|
-
};
|
|
624
|
-
asChild: {
|
|
625
|
-
type: BooleanConstructor;
|
|
626
|
-
default: boolean;
|
|
627
|
-
};
|
|
628
|
-
}>> & Readonly<{}>, {
|
|
629
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
630
|
-
asChild: boolean;
|
|
631
|
-
}, import("vue").SlotsType<{
|
|
632
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
633
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
634
|
-
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 };
|
|
635
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"}
|