@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 { DateTimeRangePickerOptions } from '@sectile/dom/date-time-range-pi
|
|
|
2
2
|
import type { DateValue } from '@sectile/dom/date-field';
|
|
3
3
|
import type { DateTimeRange } 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 DateTimeRangePickerRootProps {
|
|
5
|
+
export interface DateTimeRangePickerRootProps extends PickerPartProps {
|
|
6
6
|
readonly modelValue?: DateTimeRange | null;
|
|
7
7
|
readonly defaultValue?: DateTimeRange | null;
|
|
8
8
|
readonly highlightedValue?: DateValue;
|
|
@@ -17,230 +17,14 @@ export interface DateTimeRangePickerRootProps {
|
|
|
17
17
|
readonly label?: string;
|
|
18
18
|
readonly policies?: DateTimeRangePickerOptions['policies'];
|
|
19
19
|
}
|
|
20
|
-
export declare const DateTimeRangePickerRoot: 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 DateTimeRangePickerRoot: import("./internal/date-picker.js").PickerRootComponent<"date-time-range">;
|
|
21
|
+
export type DateTimeRangePickerRootSlotProps = PickerRootSlotProps<DateTimeRange | null>;
|
|
169
22
|
export type DateTimeRangePickerValueChangeHandler = NonNullable<InstanceType<typeof DateTimeRangePickerRoot>['$props']['onUpdate:modelValue']>;
|
|
170
23
|
export type DateTimeRangePickerOpenChangeHandler = NonNullable<InstanceType<typeof DateTimeRangePickerRoot>['$props']['onUpdate:open']>;
|
|
171
24
|
export type DateTimeRangePickerHighlightedValueChangeHandler = NonNullable<InstanceType<typeof DateTimeRangePickerRoot>['$props']['onUpdate:highlightedValue']>;
|
|
172
|
-
export declare const DateTimeRangePickerTrigger: 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 DateTimeRangePickerContent: 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 DateTimeRangePickerGrid: 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 DateTimeRangePickerTrigger: import("./internal/date-picker.js").PickerRootPartComponent<"date-time-range">;
|
|
26
|
+
export declare const DateTimeRangePickerContent: import("./internal/date-picker.js").PickerRootPartComponent<"date-time-range">;
|
|
27
|
+
export declare const DateTimeRangePickerGrid: import("./internal/date-picker.js").PickerRootPartComponent<"date-time-range">;
|
|
244
28
|
export declare const DateTimeRangePickerCell: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
245
29
|
value: {
|
|
246
30
|
type: import("vue").PropType<DateValue>;
|
|
@@ -545,221 +329,14 @@ export declare const DateTimeRangePickerEndTimeInput: import("vue").DefineCompon
|
|
|
545
329
|
as: import("./primitive.js").PrimitiveAs;
|
|
546
330
|
asChild: boolean;
|
|
547
331
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
548
|
-
export declare const DateTimeRangePickerPreviousWeek: import("
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
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 DateTimeRangePickerNextWeek: 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 DateTimeRangePickerPreviousMonth: 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 DateTimeRangePickerNextMonth: 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 declare const DateTimeRangePickerPreviousYear: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
645
|
-
as: {
|
|
646
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
647
|
-
default: string;
|
|
648
|
-
};
|
|
649
|
-
asChild: {
|
|
650
|
-
type: BooleanConstructor;
|
|
651
|
-
default: boolean;
|
|
652
|
-
};
|
|
653
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
654
|
-
as: {
|
|
655
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
656
|
-
default: string;
|
|
657
|
-
};
|
|
658
|
-
asChild: {
|
|
659
|
-
type: BooleanConstructor;
|
|
660
|
-
default: boolean;
|
|
661
|
-
};
|
|
662
|
-
}>> & Readonly<{}>, {
|
|
663
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
664
|
-
asChild: boolean;
|
|
665
|
-
}, import("vue").SlotsType<{
|
|
666
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
667
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
668
|
-
export declare const DateTimeRangePickerNextYear: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
669
|
-
as: {
|
|
670
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
671
|
-
default: string;
|
|
672
|
-
};
|
|
673
|
-
asChild: {
|
|
674
|
-
type: BooleanConstructor;
|
|
675
|
-
default: boolean;
|
|
676
|
-
};
|
|
677
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
678
|
-
as: {
|
|
679
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
680
|
-
default: string;
|
|
681
|
-
};
|
|
682
|
-
asChild: {
|
|
683
|
-
type: BooleanConstructor;
|
|
684
|
-
default: boolean;
|
|
685
|
-
};
|
|
686
|
-
}>> & Readonly<{}>, {
|
|
687
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
688
|
-
asChild: boolean;
|
|
689
|
-
}, import("vue").SlotsType<{
|
|
690
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
691
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
692
|
-
export declare const DateTimeRangePickerWeekViewTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
693
|
-
as: {
|
|
694
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
695
|
-
default: string;
|
|
696
|
-
};
|
|
697
|
-
asChild: {
|
|
698
|
-
type: BooleanConstructor;
|
|
699
|
-
default: boolean;
|
|
700
|
-
};
|
|
701
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
702
|
-
as: {
|
|
703
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
704
|
-
default: string;
|
|
705
|
-
};
|
|
706
|
-
asChild: {
|
|
707
|
-
type: BooleanConstructor;
|
|
708
|
-
default: boolean;
|
|
709
|
-
};
|
|
710
|
-
}>> & Readonly<{}>, {
|
|
711
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
712
|
-
asChild: boolean;
|
|
713
|
-
}, import("vue").SlotsType<{
|
|
714
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
715
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
716
|
-
export declare const DateTimeRangePickerMonthViewTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
717
|
-
as: {
|
|
718
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
719
|
-
default: string;
|
|
720
|
-
};
|
|
721
|
-
asChild: {
|
|
722
|
-
type: BooleanConstructor;
|
|
723
|
-
default: boolean;
|
|
724
|
-
};
|
|
725
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
726
|
-
as: {
|
|
727
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
728
|
-
default: string;
|
|
729
|
-
};
|
|
730
|
-
asChild: {
|
|
731
|
-
type: BooleanConstructor;
|
|
732
|
-
default: boolean;
|
|
733
|
-
};
|
|
734
|
-
}>> & Readonly<{}>, {
|
|
735
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
736
|
-
asChild: boolean;
|
|
737
|
-
}, import("vue").SlotsType<{
|
|
738
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
739
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
740
|
-
export declare const DateTimeRangePickerYearViewTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
741
|
-
as: {
|
|
742
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
743
|
-
default: string;
|
|
744
|
-
};
|
|
745
|
-
asChild: {
|
|
746
|
-
type: BooleanConstructor;
|
|
747
|
-
default: boolean;
|
|
748
|
-
};
|
|
749
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
750
|
-
as: {
|
|
751
|
-
type: import("vue").PropType<import("./primitive.js").PrimitiveAs>;
|
|
752
|
-
default: string;
|
|
753
|
-
};
|
|
754
|
-
asChild: {
|
|
755
|
-
type: BooleanConstructor;
|
|
756
|
-
default: boolean;
|
|
757
|
-
};
|
|
758
|
-
}>> & Readonly<{}>, {
|
|
759
|
-
as: import("./primitive.js").PrimitiveAs;
|
|
760
|
-
asChild: boolean;
|
|
761
|
-
}, import("vue").SlotsType<{
|
|
762
|
-
default: (props: PickerRootSlotProps) => import("vue").VNodeChild;
|
|
763
|
-
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
764
|
-
export type { DateTimeRange, DateValue, PickerCellSlotProps as DateTimeRangePickerCellSlotProps, PickerMonthCellSlotProps as DateTimeRangePickerMonthCellSlotProps, PickerPartProps as DateTimeRangePickerPartProps, PickerRootSlotProps as DateTimeRangePickerRootSlotProps };
|
|
332
|
+
export declare const DateTimeRangePickerPreviousWeek: import("./internal/date-picker.js").PickerRootPartComponent<"date-time-range">;
|
|
333
|
+
export declare const DateTimeRangePickerNextWeek: import("./internal/date-picker.js").PickerRootPartComponent<"date-time-range">;
|
|
334
|
+
export declare const DateTimeRangePickerPreviousMonth: import("./internal/date-picker.js").PickerRootPartComponent<"date-time-range">;
|
|
335
|
+
export declare const DateTimeRangePickerNextMonth: import("./internal/date-picker.js").PickerRootPartComponent<"date-time-range">;
|
|
336
|
+
export declare const DateTimeRangePickerPreviousYear: import("./internal/date-picker.js").PickerRootPartComponent<"date-time-range">;
|
|
337
|
+
export declare const DateTimeRangePickerNextYear: import("./internal/date-picker.js").PickerRootPartComponent<"date-time-range">;
|
|
338
|
+
export declare const DateTimeRangePickerWeekViewTrigger: import("./internal/date-picker.js").PickerRootPartComponent<"date-time-range">;
|
|
339
|
+
export declare const DateTimeRangePickerMonthViewTrigger: import("./internal/date-picker.js").PickerRootPartComponent<"date-time-range">;
|
|
340
|
+
export declare const DateTimeRangePickerYearViewTrigger: import("./internal/date-picker.js").PickerRootPartComponent<"date-time-range">;
|
|
341
|
+
export type { DateTimeRange, DateValue, PickerCellSlotProps as DateTimeRangePickerCellSlotProps, PickerMonthCellSlotProps as DateTimeRangePickerMonthCellSlotProps, PickerPartProps as DateTimeRangePickerPartProps };
|
|
765
342
|
//# sourceMappingURL=date-time-range-picker.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"date-time-range-picker.d.ts","sourceRoot":"","sources":["../src/date-time-range-picker.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,qCAAqC,CAAC;AACtF,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-range-picker.d.ts","sourceRoot":"","sources":["../src/date-time-range-picker.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,8 +1,8 @@
|
|
|
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 DateTimeRangePickerRoot = createPickerRoot('date-time-range', 'SectileDateTimeRangePickerRoot');
|
|
3
|
-
export const DateTimeRangePickerTrigger = PickerTrigger;
|
|
4
|
-
export const DateTimeRangePickerContent = PickerContent;
|
|
5
|
-
export const DateTimeRangePickerGrid = PickerGrid;
|
|
3
|
+
export const DateTimeRangePickerTrigger = specializePickerRootPart('date-time-range', PickerTrigger);
|
|
4
|
+
export const DateTimeRangePickerContent = specializePickerRootPart('date-time-range', PickerContent);
|
|
5
|
+
export const DateTimeRangePickerGrid = specializePickerRootPart('date-time-range', PickerGrid);
|
|
6
6
|
export const DateTimeRangePickerCell = PickerCell;
|
|
7
7
|
export const DateTimeRangePickerMonthCell = PickerMonthCell;
|
|
8
8
|
export const DateTimeRangePickerStartDateTimeInput = createPickerInput('start-date-time-input', 'SectileDateTimeRangePickerStartDateTimeInput');
|
|
@@ -11,13 +11,13 @@ export const DateTimeRangePickerStartDateInput = createPickerInput('start-date-i
|
|
|
11
11
|
export const DateTimeRangePickerEndDateInput = createPickerInput('end-date-input', 'SectileDateTimeRangePickerEndDateInput');
|
|
12
12
|
export const DateTimeRangePickerStartTimeInput = createPickerInput('start-time-input', 'SectileDateTimeRangePickerStartTimeInput');
|
|
13
13
|
export const DateTimeRangePickerEndTimeInput = createPickerInput('end-time-input', 'SectileDateTimeRangePickerEndTimeInput');
|
|
14
|
-
export const DateTimeRangePickerPreviousWeek = createPickerMove('week', -1, 'SectileDateTimeRangePickerPreviousWeek');
|
|
15
|
-
export const DateTimeRangePickerNextWeek = createPickerMove('week', 1, 'SectileDateTimeRangePickerNextWeek');
|
|
16
|
-
export const DateTimeRangePickerPreviousMonth = createPickerMove('month', -1, 'SectileDateTimeRangePickerPreviousMonth');
|
|
17
|
-
export const DateTimeRangePickerNextMonth = createPickerMove('month', 1, 'SectileDateTimeRangePickerNextMonth');
|
|
18
|
-
export const DateTimeRangePickerPreviousYear = createPickerMove('year', -1, 'SectileDateTimeRangePickerPreviousYear');
|
|
19
|
-
export const DateTimeRangePickerNextYear = createPickerMove('year', 1, 'SectileDateTimeRangePickerNextYear');
|
|
20
|
-
export const DateTimeRangePickerWeekViewTrigger = createPickerViewTrigger('week', 'SectileDateTimeRangePickerWeekViewTrigger');
|
|
21
|
-
export const DateTimeRangePickerMonthViewTrigger = createPickerViewTrigger('month', 'SectileDateTimeRangePickerMonthViewTrigger');
|
|
22
|
-
export const DateTimeRangePickerYearViewTrigger = createPickerViewTrigger('year', 'SectileDateTimeRangePickerYearViewTrigger');
|
|
14
|
+
export const DateTimeRangePickerPreviousWeek = specializePickerRootPart('date-time-range', createPickerMove('week', -1, 'SectileDateTimeRangePickerPreviousWeek'));
|
|
15
|
+
export const DateTimeRangePickerNextWeek = specializePickerRootPart('date-time-range', createPickerMove('week', 1, 'SectileDateTimeRangePickerNextWeek'));
|
|
16
|
+
export const DateTimeRangePickerPreviousMonth = specializePickerRootPart('date-time-range', createPickerMove('month', -1, 'SectileDateTimeRangePickerPreviousMonth'));
|
|
17
|
+
export const DateTimeRangePickerNextMonth = specializePickerRootPart('date-time-range', createPickerMove('month', 1, 'SectileDateTimeRangePickerNextMonth'));
|
|
18
|
+
export const DateTimeRangePickerPreviousYear = specializePickerRootPart('date-time-range', createPickerMove('year', -1, 'SectileDateTimeRangePickerPreviousYear'));
|
|
19
|
+
export const DateTimeRangePickerNextYear = specializePickerRootPart('date-time-range', createPickerMove('year', 1, 'SectileDateTimeRangePickerNextYear'));
|
|
20
|
+
export const DateTimeRangePickerWeekViewTrigger = specializePickerRootPart('date-time-range', createPickerViewTrigger('week', 'SectileDateTimeRangePickerWeekViewTrigger'));
|
|
21
|
+
export const DateTimeRangePickerMonthViewTrigger = specializePickerRootPart('date-time-range', createPickerViewTrigger('month', 'SectileDateTimeRangePickerMonthViewTrigger'));
|
|
22
|
+
export const DateTimeRangePickerYearViewTrigger = specializePickerRootPart('date-time-range', createPickerViewTrigger('year', 'SectileDateTimeRangePickerYearViewTrigger'));
|
|
23
23
|
//# sourceMappingURL=date-time-range-picker.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"date-time-range-picker.js","sourceRoot":"","sources":["../src/date-time-range-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-range-picker.js","sourceRoot":"","sources":["../src/date-time-range-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,uBAAuB,GAAG,gBAAgB,CAAC,iBAAiB,EAAE,gCAAgC,CAAC,CAAC;AAK7G,MAAM,CAAC,MAAM,0BAA0B,GAAG,wBAAwB,CAAC,iBAAiB,EAAE,aAAa,CAAC,CAAC;AACrG,MAAM,CAAC,MAAM,0BAA0B,GAAG,wBAAwB,CAAC,iBAAiB,EAAE,aAAa,CAAC,CAAC;AACrG,MAAM,CAAC,MAAM,uBAAuB,GAAG,wBAAwB,CAAC,iBAAiB,EAAE,UAAU,CAAC,CAAC;AAC/F,MAAM,CAAC,MAAM,uBAAuB,GAAG,UAAU,CAAC;AAClD,MAAM,CAAC,MAAM,4BAA4B,GAAG,eAAe,CAAC;AAC5D,MAAM,CAAC,MAAM,qCAAqC,GAAG,iBAAiB,CAAC,uBAAuB,EAAE,8CAA8C,CAAC,CAAC;AAChJ,MAAM,CAAC,MAAM,mCAAmC,GAAG,iBAAiB,CAAC,qBAAqB,EAAE,4CAA4C,CAAC,CAAC;AAC1I,MAAM,CAAC,MAAM,iCAAiC,GAAG,iBAAiB,CAAC,kBAAkB,EAAE,0CAA0C,CAAC,CAAC;AACnI,MAAM,CAAC,MAAM,+BAA+B,GAAG,iBAAiB,CAAC,gBAAgB,EAAE,wCAAwC,CAAC,CAAC;AAC7H,MAAM,CAAC,MAAM,iCAAiC,GAAG,iBAAiB,CAAC,kBAAkB,EAAE,0CAA0C,CAAC,CAAC;AACnI,MAAM,CAAC,MAAM,+BAA+B,GAAG,iBAAiB,CAAC,gBAAgB,EAAE,wCAAwC,CAAC,CAAC;AAC7H,MAAM,CAAC,MAAM,+BAA+B,GAAG,wBAAwB,CAAC,iBAAiB,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAC,CAAC,EAAE,wCAAwC,CAAC,CAAC,CAAC;AACnK,MAAM,CAAC,MAAM,2BAA2B,GAAG,wBAAwB,CAAC,iBAAiB,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAC,EAAE,oCAAoC,CAAC,CAAC,CAAC;AAC1J,MAAM,CAAC,MAAM,gCAAgC,GAAG,wBAAwB,CAAC,iBAAiB,EAAE,gBAAgB,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,yCAAyC,CAAC,CAAC,CAAC;AACtK,MAAM,CAAC,MAAM,4BAA4B,GAAG,wBAAwB,CAAC,iBAAiB,EAAE,gBAAgB,CAAC,OAAO,EAAE,CAAC,EAAE,qCAAqC,CAAC,CAAC,CAAC;AAC7J,MAAM,CAAC,MAAM,+BAA+B,GAAG,wBAAwB,CAAC,iBAAiB,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAC,CAAC,EAAE,wCAAwC,CAAC,CAAC,CAAC;AACnK,MAAM,CAAC,MAAM,2BAA2B,GAAG,wBAAwB,CAAC,iBAAiB,EAAE,gBAAgB,CAAC,MAAM,EAAE,CAAC,EAAE,oCAAoC,CAAC,CAAC,CAAC;AAC1J,MAAM,CAAC,MAAM,kCAAkC,GAAG,wBAAwB,CAAC,iBAAiB,EAAE,uBAAuB,CAAC,MAAM,EAAE,2CAA2C,CAAC,CAAC,CAAC;AAC5K,MAAM,CAAC,MAAM,mCAAmC,GAAG,wBAAwB,CAAC,iBAAiB,EAAE,uBAAuB,CAAC,OAAO,EAAE,4CAA4C,CAAC,CAAC,CAAC;AAC/K,MAAM,CAAC,MAAM,kCAAkC,GAAG,wBAAwB,CAAC,iBAAiB,EAAE,uBAAuB,CAAC,MAAM,EAAE,2CAA2C,CAAC,CAAC,CAAC"}
|