vlite3 1.2.15 → 1.2.17
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/components/Button.vue.js +69 -69
- package/components/Carousel/Carousel.vue.d.ts +210 -240
- package/components/Carousel/Carousel.vue.js +2 -2
- package/components/Carousel/Carousel.vue2.js +31 -23
- package/components/Carousel/types.d.ts +76 -14
- package/components/CommandPalette/CommandPaletteContent.vue2.js +1 -1
- package/components/CommandPalette/{CommandPaletteItem.vue2.js → CommandPaletteItem.vue.js} +1 -1
- package/components/FadeOverlay.vue.d.ts +31 -0
- package/components/FadeOverlay.vue.js +55 -0
- package/components/FadeOverlay.vue2.js +4 -0
- package/components/NavbarCommandPalette.vue.js +1 -1
- package/components/Workbook/WorkbookAddButton.vue.js +4 -4
- package/index.d.ts +1 -0
- package/index.js +76 -74
- package/package.json +2 -2
- package/style.css +20 -19
|
@@ -10,7 +10,7 @@ declare function __VLS_template(): {
|
|
|
10
10
|
pagination: import('vue-carousel-lite').PaginationType | import('vue-carousel-lite').PaginationType[];
|
|
11
11
|
paginationVisibility: import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[];
|
|
12
12
|
direction: "horizontal" | "vertical";
|
|
13
|
-
paginationSize: "sm" | "md" | "lg";
|
|
13
|
+
paginationSize: "xs" | "sm" | "md" | "lg" | "xl";
|
|
14
14
|
itemsToShow: number | import('vue-carousel-lite').SlidesPerView;
|
|
15
15
|
paginationHoverEdgeThreshold: number;
|
|
16
16
|
paginationHoverInitialTimeout: number;
|
|
@@ -34,26 +34,26 @@ declare function __VLS_template(): {
|
|
|
34
34
|
readonly easing: string;
|
|
35
35
|
readonly gap: number;
|
|
36
36
|
readonly pagination: import('vue-carousel-lite').PaginationType | import('vue-carousel-lite').PaginationType[];
|
|
37
|
-
readonly
|
|
38
|
-
readonly paginationVisibility: import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[];
|
|
39
|
-
readonly paginationHoverInitialTimeout: number;
|
|
40
|
-
readonly paginationHoverEdgeThreshold: number;
|
|
41
|
-
readonly autoPlay: boolean;
|
|
42
|
-
readonly autoPlayInterval: number;
|
|
43
|
-
readonly itemsToShow: number | import('vue-carousel-lite').SlidesPerView;
|
|
37
|
+
readonly loop: boolean;
|
|
44
38
|
readonly speed: number;
|
|
39
|
+
readonly autoPlay: boolean;
|
|
45
40
|
readonly mousewheel: boolean;
|
|
46
|
-
readonly
|
|
41
|
+
readonly autoFocus: boolean;
|
|
42
|
+
readonly autoPlayInterval: number;
|
|
47
43
|
readonly currentItem: number;
|
|
44
|
+
readonly paginationSize: "xs" | "sm" | "md" | "lg" | "xl";
|
|
45
|
+
readonly itemsToShow: number | import('vue-carousel-lite').SlidesPerView;
|
|
46
|
+
readonly paginationVisibility: import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[];
|
|
47
|
+
readonly paginationHoverEdgeThreshold: number;
|
|
48
|
+
readonly paginationHoverInitialTimeout: number;
|
|
49
|
+
readonly wheelOptions: import('vue-carousel-lite/types').WheelOptions;
|
|
48
50
|
readonly bufferSize: number;
|
|
49
51
|
readonly maxDomElements: number;
|
|
50
|
-
readonly
|
|
51
|
-
readonly wheelOptions: import('vue-carousel-lite/types').WheelOptions;
|
|
52
|
+
readonly paginationBackground?: boolean;
|
|
52
53
|
readonly paginationPosition?: import('vue-carousel-lite').PaginationPosition | import('vue-carousel-lite').PaginationPosition[];
|
|
53
54
|
readonly updateKey?: string | number;
|
|
54
|
-
readonly paginationBackground?: boolean;
|
|
55
55
|
readonly "onSlide-change"?: ((index: number) => any) | undefined;
|
|
56
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "direction" | "draggable" | "easing" | "gap" | "pagination" | "
|
|
56
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "direction" | "draggable" | "easing" | "gap" | "pagination" | "loop" | "speed" | "autoPlay" | "mousewheel" | "autoFocus" | "autoPlayInterval" | "currentItem" | "paginationSize" | "itemsToShow" | "paginationVisibility" | "paginationHoverEdgeThreshold" | "paginationHoverInitialTimeout" | "wheelOptions" | "bufferSize" | "maxDomElements">;
|
|
57
57
|
$attrs: {
|
|
58
58
|
[x: string]: unknown;
|
|
59
59
|
};
|
|
@@ -93,22 +93,11 @@ declare function __VLS_template(): {
|
|
|
93
93
|
type: import('vue').PropType<import('vue-carousel-lite').PaginationType | import('vue-carousel-lite').PaginationType[]>;
|
|
94
94
|
default: string;
|
|
95
95
|
};
|
|
96
|
-
|
|
97
|
-
type: import('vue').PropType<
|
|
98
|
-
default:
|
|
99
|
-
};
|
|
100
|
-
paginationPosition: {
|
|
101
|
-
type: import('vue').PropType<import('vue-carousel-lite').PaginationPosition | import('vue-carousel-lite').PaginationPosition[]>;
|
|
102
|
-
};
|
|
103
|
-
paginationVisibility: {
|
|
104
|
-
type: import('vue').PropType<import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[]>;
|
|
105
|
-
default: string;
|
|
106
|
-
};
|
|
107
|
-
paginationHoverInitialTimeout: {
|
|
108
|
-
type: import('vue').PropType<number>;
|
|
109
|
-
default: number;
|
|
96
|
+
loop: {
|
|
97
|
+
type: import('vue').PropType<boolean>;
|
|
98
|
+
default: boolean;
|
|
110
99
|
};
|
|
111
|
-
|
|
100
|
+
speed: {
|
|
112
101
|
type: import('vue').PropType<number>;
|
|
113
102
|
default: number;
|
|
114
103
|
};
|
|
@@ -116,47 +105,47 @@ declare function __VLS_template(): {
|
|
|
116
105
|
type: import('vue').PropType<boolean>;
|
|
117
106
|
default: boolean;
|
|
118
107
|
};
|
|
119
|
-
autoPlayInterval: {
|
|
120
|
-
type: import('vue').PropType<number>;
|
|
121
|
-
default: number;
|
|
122
|
-
};
|
|
123
|
-
itemsToShow: {
|
|
124
|
-
type: import('vue').PropType<number | import('vue-carousel-lite').SlidesPerView>;
|
|
125
|
-
default: number;
|
|
126
|
-
};
|
|
127
|
-
speed: {
|
|
128
|
-
type: import('vue').PropType<number>;
|
|
129
|
-
default: number;
|
|
130
|
-
};
|
|
131
108
|
mousewheel: {
|
|
132
109
|
type: import('vue').PropType<boolean>;
|
|
133
110
|
default: boolean;
|
|
134
111
|
};
|
|
135
|
-
|
|
112
|
+
autoFocus: {
|
|
136
113
|
type: import('vue').PropType<boolean>;
|
|
137
114
|
default: boolean;
|
|
138
115
|
};
|
|
139
|
-
|
|
116
|
+
autoPlayInterval: {
|
|
140
117
|
type: import('vue').PropType<number>;
|
|
141
118
|
default: number;
|
|
142
119
|
};
|
|
143
|
-
|
|
120
|
+
currentItem: {
|
|
144
121
|
type: import('vue').PropType<number>;
|
|
145
122
|
default: number;
|
|
146
123
|
};
|
|
147
|
-
|
|
148
|
-
type: import('vue').PropType<
|
|
124
|
+
paginationBackground: {
|
|
125
|
+
type: import('vue').PropType<boolean>;
|
|
126
|
+
};
|
|
127
|
+
paginationSize: {
|
|
128
|
+
type: import('vue').PropType<"sm" | "md" | "lg" | "xl" | "xs">;
|
|
129
|
+
default: string;
|
|
130
|
+
};
|
|
131
|
+
itemsToShow: {
|
|
132
|
+
type: import('vue').PropType<number | import('vue-carousel-lite').SlidesPerView>;
|
|
149
133
|
default: number;
|
|
150
134
|
};
|
|
151
|
-
|
|
152
|
-
type: import('vue').PropType<
|
|
135
|
+
paginationPosition: {
|
|
136
|
+
type: import('vue').PropType<import('vue-carousel-lite').PaginationPosition | import('vue-carousel-lite').PaginationPosition[]>;
|
|
153
137
|
};
|
|
154
|
-
|
|
155
|
-
type: import('vue').PropType<
|
|
156
|
-
default:
|
|
138
|
+
paginationVisibility: {
|
|
139
|
+
type: import('vue').PropType<import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[]>;
|
|
140
|
+
default: string;
|
|
157
141
|
};
|
|
158
|
-
|
|
159
|
-
type: import('vue').PropType<
|
|
142
|
+
paginationHoverEdgeThreshold: {
|
|
143
|
+
type: import('vue').PropType<number>;
|
|
144
|
+
default: number;
|
|
145
|
+
};
|
|
146
|
+
paginationHoverInitialTimeout: {
|
|
147
|
+
type: import('vue').PropType<number>;
|
|
148
|
+
default: number;
|
|
160
149
|
};
|
|
161
150
|
wheelOptions: {
|
|
162
151
|
type: import('vue').PropType<import('vue-carousel-lite/types').WheelOptions>;
|
|
@@ -169,6 +158,17 @@ declare function __VLS_template(): {
|
|
|
169
158
|
stopPropagation: boolean;
|
|
170
159
|
};
|
|
171
160
|
};
|
|
161
|
+
bufferSize: {
|
|
162
|
+
type: import('vue').PropType<number>;
|
|
163
|
+
default: number;
|
|
164
|
+
};
|
|
165
|
+
maxDomElements: {
|
|
166
|
+
type: import('vue').PropType<number>;
|
|
167
|
+
default: number;
|
|
168
|
+
};
|
|
169
|
+
updateKey: {
|
|
170
|
+
type: import('vue').PropType<string | number>;
|
|
171
|
+
};
|
|
172
172
|
}>> & Readonly<{
|
|
173
173
|
"onSlide-change"?: ((index: number) => any) | undefined;
|
|
174
174
|
}>, {
|
|
@@ -191,7 +191,7 @@ declare function __VLS_template(): {
|
|
|
191
191
|
pagination: import('vue-carousel-lite').PaginationType | import('vue-carousel-lite').PaginationType[];
|
|
192
192
|
paginationVisibility: import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[];
|
|
193
193
|
direction: "horizontal" | "vertical";
|
|
194
|
-
paginationSize: "sm" | "md" | "lg";
|
|
194
|
+
paginationSize: "xs" | "sm" | "md" | "lg" | "xl";
|
|
195
195
|
itemsToShow: number | import('vue-carousel-lite').SlidesPerView;
|
|
196
196
|
paginationHoverEdgeThreshold: number;
|
|
197
197
|
paginationHoverInitialTimeout: number;
|
|
@@ -232,7 +232,7 @@ declare function __VLS_template(): {
|
|
|
232
232
|
pagination: import('vue-carousel-lite').PaginationType | import('vue-carousel-lite').PaginationType[];
|
|
233
233
|
paginationVisibility: import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[];
|
|
234
234
|
direction: "horizontal" | "vertical";
|
|
235
|
-
paginationSize: "sm" | "md" | "lg";
|
|
235
|
+
paginationSize: "xs" | "sm" | "md" | "lg" | "xl";
|
|
236
236
|
itemsToShow: number | import('vue-carousel-lite').SlidesPerView;
|
|
237
237
|
paginationHoverEdgeThreshold: number;
|
|
238
238
|
paginationHoverInitialTimeout: number;
|
|
@@ -274,22 +274,11 @@ declare function __VLS_template(): {
|
|
|
274
274
|
type: import('vue').PropType<import('vue-carousel-lite').PaginationType | import('vue-carousel-lite').PaginationType[]>;
|
|
275
275
|
default: string;
|
|
276
276
|
};
|
|
277
|
-
|
|
278
|
-
type: import('vue').PropType<
|
|
279
|
-
default:
|
|
280
|
-
};
|
|
281
|
-
paginationPosition: {
|
|
282
|
-
type: import('vue').PropType<import('vue-carousel-lite').PaginationPosition | import('vue-carousel-lite').PaginationPosition[]>;
|
|
283
|
-
};
|
|
284
|
-
paginationVisibility: {
|
|
285
|
-
type: import('vue').PropType<import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[]>;
|
|
286
|
-
default: string;
|
|
287
|
-
};
|
|
288
|
-
paginationHoverInitialTimeout: {
|
|
289
|
-
type: import('vue').PropType<number>;
|
|
290
|
-
default: number;
|
|
277
|
+
loop: {
|
|
278
|
+
type: import('vue').PropType<boolean>;
|
|
279
|
+
default: boolean;
|
|
291
280
|
};
|
|
292
|
-
|
|
281
|
+
speed: {
|
|
293
282
|
type: import('vue').PropType<number>;
|
|
294
283
|
default: number;
|
|
295
284
|
};
|
|
@@ -297,47 +286,47 @@ declare function __VLS_template(): {
|
|
|
297
286
|
type: import('vue').PropType<boolean>;
|
|
298
287
|
default: boolean;
|
|
299
288
|
};
|
|
300
|
-
autoPlayInterval: {
|
|
301
|
-
type: import('vue').PropType<number>;
|
|
302
|
-
default: number;
|
|
303
|
-
};
|
|
304
|
-
itemsToShow: {
|
|
305
|
-
type: import('vue').PropType<number | import('vue-carousel-lite').SlidesPerView>;
|
|
306
|
-
default: number;
|
|
307
|
-
};
|
|
308
|
-
speed: {
|
|
309
|
-
type: import('vue').PropType<number>;
|
|
310
|
-
default: number;
|
|
311
|
-
};
|
|
312
289
|
mousewheel: {
|
|
313
290
|
type: import('vue').PropType<boolean>;
|
|
314
291
|
default: boolean;
|
|
315
292
|
};
|
|
316
|
-
|
|
293
|
+
autoFocus: {
|
|
317
294
|
type: import('vue').PropType<boolean>;
|
|
318
295
|
default: boolean;
|
|
319
296
|
};
|
|
320
|
-
|
|
297
|
+
autoPlayInterval: {
|
|
321
298
|
type: import('vue').PropType<number>;
|
|
322
299
|
default: number;
|
|
323
300
|
};
|
|
324
|
-
|
|
301
|
+
currentItem: {
|
|
325
302
|
type: import('vue').PropType<number>;
|
|
326
303
|
default: number;
|
|
327
304
|
};
|
|
328
|
-
|
|
329
|
-
type: import('vue').PropType<
|
|
305
|
+
paginationBackground: {
|
|
306
|
+
type: import('vue').PropType<boolean>;
|
|
307
|
+
};
|
|
308
|
+
paginationSize: {
|
|
309
|
+
type: import('vue').PropType<"sm" | "md" | "lg" | "xl" | "xs">;
|
|
310
|
+
default: string;
|
|
311
|
+
};
|
|
312
|
+
itemsToShow: {
|
|
313
|
+
type: import('vue').PropType<number | import('vue-carousel-lite').SlidesPerView>;
|
|
330
314
|
default: number;
|
|
331
315
|
};
|
|
332
|
-
|
|
333
|
-
type: import('vue').PropType<
|
|
316
|
+
paginationPosition: {
|
|
317
|
+
type: import('vue').PropType<import('vue-carousel-lite').PaginationPosition | import('vue-carousel-lite').PaginationPosition[]>;
|
|
334
318
|
};
|
|
335
|
-
|
|
336
|
-
type: import('vue').PropType<
|
|
337
|
-
default:
|
|
319
|
+
paginationVisibility: {
|
|
320
|
+
type: import('vue').PropType<import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[]>;
|
|
321
|
+
default: string;
|
|
338
322
|
};
|
|
339
|
-
|
|
340
|
-
type: import('vue').PropType<
|
|
323
|
+
paginationHoverEdgeThreshold: {
|
|
324
|
+
type: import('vue').PropType<number>;
|
|
325
|
+
default: number;
|
|
326
|
+
};
|
|
327
|
+
paginationHoverInitialTimeout: {
|
|
328
|
+
type: import('vue').PropType<number>;
|
|
329
|
+
default: number;
|
|
341
330
|
};
|
|
342
331
|
wheelOptions: {
|
|
343
332
|
type: import('vue').PropType<import('vue-carousel-lite/types').WheelOptions>;
|
|
@@ -350,9 +339,20 @@ declare function __VLS_template(): {
|
|
|
350
339
|
stopPropagation: boolean;
|
|
351
340
|
};
|
|
352
341
|
};
|
|
342
|
+
bufferSize: {
|
|
343
|
+
type: import('vue').PropType<number>;
|
|
344
|
+
default: number;
|
|
345
|
+
};
|
|
346
|
+
maxDomElements: {
|
|
347
|
+
type: import('vue').PropType<number>;
|
|
348
|
+
default: number;
|
|
349
|
+
};
|
|
350
|
+
updateKey: {
|
|
351
|
+
type: import('vue').PropType<string | number>;
|
|
352
|
+
};
|
|
353
353
|
}>> & Readonly<{
|
|
354
354
|
"onSlide-change"?: ((index: number) => any) | undefined;
|
|
355
|
-
}>, "state" | "focus" | "direction" | "draggable" | "easing" | "gap" | "goNext" | "pagination" | "
|
|
355
|
+
}>, "state" | "focus" | "direction" | "draggable" | "easing" | "gap" | "goNext" | "pagination" | "loop" | "speed" | "autoPlay" | "mousewheel" | "autoFocus" | "autoPlayInterval" | "currentItem" | "paginationSize" | "itemsToShow" | "paginationVisibility" | "paginationHoverEdgeThreshold" | "paginationHoverInitialTimeout" | "wheelOptions" | "bufferSize" | "maxDomElements" | "goToSlide" | "goPrev" | "canGoNext" | "canGoPrev"> & import('vue').ShallowUnwrapRef<{
|
|
356
356
|
goToSlide: (index: number, smooth?: boolean) => void;
|
|
357
357
|
goNext: (smooth?: boolean) => void;
|
|
358
358
|
goPrev: (smooth?: boolean) => void;
|
|
@@ -380,26 +380,7 @@ declare function __VLS_template(): {
|
|
|
380
380
|
rootEl: HTMLDivElement;
|
|
381
381
|
};
|
|
382
382
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
383
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
384
|
-
data: () => any[];
|
|
385
|
-
pagination: string;
|
|
386
|
-
paginationSize: string;
|
|
387
|
-
paginationPosition: string;
|
|
388
|
-
direction: string;
|
|
389
|
-
autoPlay: boolean;
|
|
390
|
-
draggable: boolean;
|
|
391
|
-
autoPlayInterval: number;
|
|
392
|
-
itemsToShow: number;
|
|
393
|
-
gap: number;
|
|
394
|
-
speed: number;
|
|
395
|
-
easing: string;
|
|
396
|
-
mousewheel: boolean;
|
|
397
|
-
loop: boolean;
|
|
398
|
-
currentItem: number;
|
|
399
|
-
bufferSize: number;
|
|
400
|
-
maxDomElements: number;
|
|
401
|
-
updateKey: any;
|
|
402
|
-
}>>, {
|
|
383
|
+
declare const __VLS_component: import('vue').DefineComponent<CarouselProps, {
|
|
403
384
|
goToSlide: (index: number, smooth?: boolean) => void;
|
|
404
385
|
goNext: (smooth?: boolean) => void;
|
|
405
386
|
goPrev: (smooth?: boolean) => void;
|
|
@@ -407,28 +388,34 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
407
388
|
goPrevPage: (smooth?: boolean) => void;
|
|
408
389
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
409
390
|
"slide-change": (index: number) => any;
|
|
410
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
direction: string;
|
|
416
|
-
autoPlay: boolean;
|
|
391
|
+
}, string, import('vue').PublicProps, Readonly<CarouselProps> & Readonly<{
|
|
392
|
+
"onSlide-change"?: (index: number) => any;
|
|
393
|
+
}>, {
|
|
394
|
+
data: any[];
|
|
395
|
+
direction: "horizontal" | "vertical";
|
|
417
396
|
draggable: boolean;
|
|
418
|
-
|
|
419
|
-
itemsToShow: number;
|
|
397
|
+
easing: string;
|
|
420
398
|
gap: number;
|
|
399
|
+
pagination: import('./types').PaginationType | import('./types').PaginationType[];
|
|
400
|
+
loop: boolean;
|
|
421
401
|
speed: number;
|
|
422
|
-
|
|
402
|
+
autoPlay: boolean;
|
|
423
403
|
mousewheel: boolean;
|
|
424
|
-
|
|
404
|
+
autoFocus: boolean;
|
|
405
|
+
autoPlayInterval: number;
|
|
425
406
|
currentItem: number;
|
|
407
|
+
paginationBackground: boolean;
|
|
408
|
+
paginationSize: "xs" | "sm" | "md" | "lg" | "xl";
|
|
409
|
+
itemsToShow: number | import('./types').SlidesPerView;
|
|
410
|
+
paginationPosition: import('./types').PaginationPosition | import('./types').PaginationPosition[];
|
|
411
|
+
paginationVisibility: import('./types').PaginationVisibility | import('./types').PaginationVisibility[];
|
|
412
|
+
paginationHoverEdgeThreshold: number;
|
|
413
|
+
paginationHoverInitialTimeout: number;
|
|
414
|
+
wheelOptions: import('./types').WheelOptions;
|
|
426
415
|
bufferSize: number;
|
|
427
416
|
maxDomElements: number;
|
|
428
|
-
updateKey:
|
|
429
|
-
}
|
|
430
|
-
"onSlide-change"?: (index: number) => any;
|
|
431
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
417
|
+
updateKey: string | number;
|
|
418
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
432
419
|
carouselRef: {
|
|
433
420
|
$: import('vue').ComponentInternalInstance;
|
|
434
421
|
$data: {};
|
|
@@ -436,7 +423,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
436
423
|
pagination: import('vue-carousel-lite').PaginationType | import('vue-carousel-lite').PaginationType[];
|
|
437
424
|
paginationVisibility: import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[];
|
|
438
425
|
direction: "horizontal" | "vertical";
|
|
439
|
-
paginationSize: "sm" | "md" | "lg";
|
|
426
|
+
paginationSize: "xs" | "sm" | "md" | "lg" | "xl";
|
|
440
427
|
itemsToShow: number | import('vue-carousel-lite').SlidesPerView;
|
|
441
428
|
paginationHoverEdgeThreshold: number;
|
|
442
429
|
paginationHoverInitialTimeout: number;
|
|
@@ -460,26 +447,26 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
460
447
|
readonly easing: string;
|
|
461
448
|
readonly gap: number;
|
|
462
449
|
readonly pagination: import('vue-carousel-lite').PaginationType | import('vue-carousel-lite').PaginationType[];
|
|
463
|
-
readonly
|
|
464
|
-
readonly paginationVisibility: import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[];
|
|
465
|
-
readonly paginationHoverInitialTimeout: number;
|
|
466
|
-
readonly paginationHoverEdgeThreshold: number;
|
|
467
|
-
readonly autoPlay: boolean;
|
|
468
|
-
readonly autoPlayInterval: number;
|
|
469
|
-
readonly itemsToShow: number | import('vue-carousel-lite').SlidesPerView;
|
|
450
|
+
readonly loop: boolean;
|
|
470
451
|
readonly speed: number;
|
|
452
|
+
readonly autoPlay: boolean;
|
|
471
453
|
readonly mousewheel: boolean;
|
|
472
|
-
readonly
|
|
454
|
+
readonly autoFocus: boolean;
|
|
455
|
+
readonly autoPlayInterval: number;
|
|
473
456
|
readonly currentItem: number;
|
|
457
|
+
readonly paginationSize: "xs" | "sm" | "md" | "lg" | "xl";
|
|
458
|
+
readonly itemsToShow: number | import('vue-carousel-lite').SlidesPerView;
|
|
459
|
+
readonly paginationVisibility: import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[];
|
|
460
|
+
readonly paginationHoverEdgeThreshold: number;
|
|
461
|
+
readonly paginationHoverInitialTimeout: number;
|
|
462
|
+
readonly wheelOptions: import('vue-carousel-lite/types').WheelOptions;
|
|
474
463
|
readonly bufferSize: number;
|
|
475
464
|
readonly maxDomElements: number;
|
|
476
|
-
readonly
|
|
477
|
-
readonly wheelOptions: import('vue-carousel-lite/types').WheelOptions;
|
|
465
|
+
readonly paginationBackground?: boolean;
|
|
478
466
|
readonly paginationPosition?: import('vue-carousel-lite').PaginationPosition | import('vue-carousel-lite').PaginationPosition[];
|
|
479
467
|
readonly updateKey?: string | number;
|
|
480
|
-
readonly paginationBackground?: boolean;
|
|
481
468
|
readonly "onSlide-change"?: ((index: number) => any) | undefined;
|
|
482
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "direction" | "draggable" | "easing" | "gap" | "pagination" | "
|
|
469
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "direction" | "draggable" | "easing" | "gap" | "pagination" | "loop" | "speed" | "autoPlay" | "mousewheel" | "autoFocus" | "autoPlayInterval" | "currentItem" | "paginationSize" | "itemsToShow" | "paginationVisibility" | "paginationHoverEdgeThreshold" | "paginationHoverInitialTimeout" | "wheelOptions" | "bufferSize" | "maxDomElements">;
|
|
483
470
|
$attrs: {
|
|
484
471
|
[x: string]: unknown;
|
|
485
472
|
};
|
|
@@ -519,22 +506,11 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
519
506
|
type: import('vue').PropType<import('vue-carousel-lite').PaginationType | import('vue-carousel-lite').PaginationType[]>;
|
|
520
507
|
default: string;
|
|
521
508
|
};
|
|
522
|
-
|
|
523
|
-
type: import('vue').PropType<
|
|
524
|
-
default:
|
|
525
|
-
};
|
|
526
|
-
paginationPosition: {
|
|
527
|
-
type: import('vue').PropType<import('vue-carousel-lite').PaginationPosition | import('vue-carousel-lite').PaginationPosition[]>;
|
|
528
|
-
};
|
|
529
|
-
paginationVisibility: {
|
|
530
|
-
type: import('vue').PropType<import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[]>;
|
|
531
|
-
default: string;
|
|
532
|
-
};
|
|
533
|
-
paginationHoverInitialTimeout: {
|
|
534
|
-
type: import('vue').PropType<number>;
|
|
535
|
-
default: number;
|
|
509
|
+
loop: {
|
|
510
|
+
type: import('vue').PropType<boolean>;
|
|
511
|
+
default: boolean;
|
|
536
512
|
};
|
|
537
|
-
|
|
513
|
+
speed: {
|
|
538
514
|
type: import('vue').PropType<number>;
|
|
539
515
|
default: number;
|
|
540
516
|
};
|
|
@@ -542,47 +518,47 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
542
518
|
type: import('vue').PropType<boolean>;
|
|
543
519
|
default: boolean;
|
|
544
520
|
};
|
|
545
|
-
autoPlayInterval: {
|
|
546
|
-
type: import('vue').PropType<number>;
|
|
547
|
-
default: number;
|
|
548
|
-
};
|
|
549
|
-
itemsToShow: {
|
|
550
|
-
type: import('vue').PropType<number | import('vue-carousel-lite').SlidesPerView>;
|
|
551
|
-
default: number;
|
|
552
|
-
};
|
|
553
|
-
speed: {
|
|
554
|
-
type: import('vue').PropType<number>;
|
|
555
|
-
default: number;
|
|
556
|
-
};
|
|
557
521
|
mousewheel: {
|
|
558
522
|
type: import('vue').PropType<boolean>;
|
|
559
523
|
default: boolean;
|
|
560
524
|
};
|
|
561
|
-
|
|
525
|
+
autoFocus: {
|
|
562
526
|
type: import('vue').PropType<boolean>;
|
|
563
527
|
default: boolean;
|
|
564
528
|
};
|
|
565
|
-
|
|
529
|
+
autoPlayInterval: {
|
|
566
530
|
type: import('vue').PropType<number>;
|
|
567
531
|
default: number;
|
|
568
532
|
};
|
|
569
|
-
|
|
533
|
+
currentItem: {
|
|
570
534
|
type: import('vue').PropType<number>;
|
|
571
535
|
default: number;
|
|
572
536
|
};
|
|
573
|
-
|
|
574
|
-
type: import('vue').PropType<
|
|
537
|
+
paginationBackground: {
|
|
538
|
+
type: import('vue').PropType<boolean>;
|
|
539
|
+
};
|
|
540
|
+
paginationSize: {
|
|
541
|
+
type: import('vue').PropType<"sm" | "md" | "lg" | "xl" | "xs">;
|
|
542
|
+
default: string;
|
|
543
|
+
};
|
|
544
|
+
itemsToShow: {
|
|
545
|
+
type: import('vue').PropType<number | import('vue-carousel-lite').SlidesPerView>;
|
|
575
546
|
default: number;
|
|
576
547
|
};
|
|
577
|
-
|
|
578
|
-
type: import('vue').PropType<
|
|
548
|
+
paginationPosition: {
|
|
549
|
+
type: import('vue').PropType<import('vue-carousel-lite').PaginationPosition | import('vue-carousel-lite').PaginationPosition[]>;
|
|
579
550
|
};
|
|
580
|
-
|
|
581
|
-
type: import('vue').PropType<
|
|
582
|
-
default:
|
|
551
|
+
paginationVisibility: {
|
|
552
|
+
type: import('vue').PropType<import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[]>;
|
|
553
|
+
default: string;
|
|
583
554
|
};
|
|
584
|
-
|
|
585
|
-
type: import('vue').PropType<
|
|
555
|
+
paginationHoverEdgeThreshold: {
|
|
556
|
+
type: import('vue').PropType<number>;
|
|
557
|
+
default: number;
|
|
558
|
+
};
|
|
559
|
+
paginationHoverInitialTimeout: {
|
|
560
|
+
type: import('vue').PropType<number>;
|
|
561
|
+
default: number;
|
|
586
562
|
};
|
|
587
563
|
wheelOptions: {
|
|
588
564
|
type: import('vue').PropType<import('vue-carousel-lite/types').WheelOptions>;
|
|
@@ -595,6 +571,17 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
595
571
|
stopPropagation: boolean;
|
|
596
572
|
};
|
|
597
573
|
};
|
|
574
|
+
bufferSize: {
|
|
575
|
+
type: import('vue').PropType<number>;
|
|
576
|
+
default: number;
|
|
577
|
+
};
|
|
578
|
+
maxDomElements: {
|
|
579
|
+
type: import('vue').PropType<number>;
|
|
580
|
+
default: number;
|
|
581
|
+
};
|
|
582
|
+
updateKey: {
|
|
583
|
+
type: import('vue').PropType<string | number>;
|
|
584
|
+
};
|
|
598
585
|
}>> & Readonly<{
|
|
599
586
|
"onSlide-change"?: ((index: number) => any) | undefined;
|
|
600
587
|
}>, {
|
|
@@ -617,7 +604,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
617
604
|
pagination: import('vue-carousel-lite').PaginationType | import('vue-carousel-lite').PaginationType[];
|
|
618
605
|
paginationVisibility: import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[];
|
|
619
606
|
direction: "horizontal" | "vertical";
|
|
620
|
-
paginationSize: "sm" | "md" | "lg";
|
|
607
|
+
paginationSize: "xs" | "sm" | "md" | "lg" | "xl";
|
|
621
608
|
itemsToShow: number | import('vue-carousel-lite').SlidesPerView;
|
|
622
609
|
paginationHoverEdgeThreshold: number;
|
|
623
610
|
paginationHoverInitialTimeout: number;
|
|
@@ -658,7 +645,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
658
645
|
pagination: import('vue-carousel-lite').PaginationType | import('vue-carousel-lite').PaginationType[];
|
|
659
646
|
paginationVisibility: import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[];
|
|
660
647
|
direction: "horizontal" | "vertical";
|
|
661
|
-
paginationSize: "sm" | "md" | "lg";
|
|
648
|
+
paginationSize: "xs" | "sm" | "md" | "lg" | "xl";
|
|
662
649
|
itemsToShow: number | import('vue-carousel-lite').SlidesPerView;
|
|
663
650
|
paginationHoverEdgeThreshold: number;
|
|
664
651
|
paginationHoverInitialTimeout: number;
|
|
@@ -700,22 +687,11 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
700
687
|
type: import('vue').PropType<import('vue-carousel-lite').PaginationType | import('vue-carousel-lite').PaginationType[]>;
|
|
701
688
|
default: string;
|
|
702
689
|
};
|
|
703
|
-
|
|
704
|
-
type: import('vue').PropType<
|
|
705
|
-
default:
|
|
706
|
-
};
|
|
707
|
-
paginationPosition: {
|
|
708
|
-
type: import('vue').PropType<import('vue-carousel-lite').PaginationPosition | import('vue-carousel-lite').PaginationPosition[]>;
|
|
709
|
-
};
|
|
710
|
-
paginationVisibility: {
|
|
711
|
-
type: import('vue').PropType<import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[]>;
|
|
712
|
-
default: string;
|
|
713
|
-
};
|
|
714
|
-
paginationHoverInitialTimeout: {
|
|
715
|
-
type: import('vue').PropType<number>;
|
|
716
|
-
default: number;
|
|
690
|
+
loop: {
|
|
691
|
+
type: import('vue').PropType<boolean>;
|
|
692
|
+
default: boolean;
|
|
717
693
|
};
|
|
718
|
-
|
|
694
|
+
speed: {
|
|
719
695
|
type: import('vue').PropType<number>;
|
|
720
696
|
default: number;
|
|
721
697
|
};
|
|
@@ -723,47 +699,47 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
723
699
|
type: import('vue').PropType<boolean>;
|
|
724
700
|
default: boolean;
|
|
725
701
|
};
|
|
726
|
-
autoPlayInterval: {
|
|
727
|
-
type: import('vue').PropType<number>;
|
|
728
|
-
default: number;
|
|
729
|
-
};
|
|
730
|
-
itemsToShow: {
|
|
731
|
-
type: import('vue').PropType<number | import('vue-carousel-lite').SlidesPerView>;
|
|
732
|
-
default: number;
|
|
733
|
-
};
|
|
734
|
-
speed: {
|
|
735
|
-
type: import('vue').PropType<number>;
|
|
736
|
-
default: number;
|
|
737
|
-
};
|
|
738
702
|
mousewheel: {
|
|
739
703
|
type: import('vue').PropType<boolean>;
|
|
740
704
|
default: boolean;
|
|
741
705
|
};
|
|
742
|
-
|
|
706
|
+
autoFocus: {
|
|
743
707
|
type: import('vue').PropType<boolean>;
|
|
744
708
|
default: boolean;
|
|
745
709
|
};
|
|
746
|
-
|
|
710
|
+
autoPlayInterval: {
|
|
747
711
|
type: import('vue').PropType<number>;
|
|
748
712
|
default: number;
|
|
749
713
|
};
|
|
750
|
-
|
|
714
|
+
currentItem: {
|
|
751
715
|
type: import('vue').PropType<number>;
|
|
752
716
|
default: number;
|
|
753
717
|
};
|
|
754
|
-
|
|
755
|
-
type: import('vue').PropType<
|
|
718
|
+
paginationBackground: {
|
|
719
|
+
type: import('vue').PropType<boolean>;
|
|
720
|
+
};
|
|
721
|
+
paginationSize: {
|
|
722
|
+
type: import('vue').PropType<"sm" | "md" | "lg" | "xl" | "xs">;
|
|
723
|
+
default: string;
|
|
724
|
+
};
|
|
725
|
+
itemsToShow: {
|
|
726
|
+
type: import('vue').PropType<number | import('vue-carousel-lite').SlidesPerView>;
|
|
756
727
|
default: number;
|
|
757
728
|
};
|
|
758
|
-
|
|
759
|
-
type: import('vue').PropType<
|
|
729
|
+
paginationPosition: {
|
|
730
|
+
type: import('vue').PropType<import('vue-carousel-lite').PaginationPosition | import('vue-carousel-lite').PaginationPosition[]>;
|
|
760
731
|
};
|
|
761
|
-
|
|
762
|
-
type: import('vue').PropType<
|
|
763
|
-
default:
|
|
732
|
+
paginationVisibility: {
|
|
733
|
+
type: import('vue').PropType<import('vue-carousel-lite/types').PaginationVisibility | import('vue-carousel-lite/types').PaginationVisibility[]>;
|
|
734
|
+
default: string;
|
|
764
735
|
};
|
|
765
|
-
|
|
766
|
-
type: import('vue').PropType<
|
|
736
|
+
paginationHoverEdgeThreshold: {
|
|
737
|
+
type: import('vue').PropType<number>;
|
|
738
|
+
default: number;
|
|
739
|
+
};
|
|
740
|
+
paginationHoverInitialTimeout: {
|
|
741
|
+
type: import('vue').PropType<number>;
|
|
742
|
+
default: number;
|
|
767
743
|
};
|
|
768
744
|
wheelOptions: {
|
|
769
745
|
type: import('vue').PropType<import('vue-carousel-lite/types').WheelOptions>;
|
|
@@ -776,9 +752,20 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
776
752
|
stopPropagation: boolean;
|
|
777
753
|
};
|
|
778
754
|
};
|
|
755
|
+
bufferSize: {
|
|
756
|
+
type: import('vue').PropType<number>;
|
|
757
|
+
default: number;
|
|
758
|
+
};
|
|
759
|
+
maxDomElements: {
|
|
760
|
+
type: import('vue').PropType<number>;
|
|
761
|
+
default: number;
|
|
762
|
+
};
|
|
763
|
+
updateKey: {
|
|
764
|
+
type: import('vue').PropType<string | number>;
|
|
765
|
+
};
|
|
779
766
|
}>> & Readonly<{
|
|
780
767
|
"onSlide-change"?: ((index: number) => any) | undefined;
|
|
781
|
-
}>, "state" | "focus" | "direction" | "draggable" | "easing" | "gap" | "goNext" | "pagination" | "
|
|
768
|
+
}>, "state" | "focus" | "direction" | "draggable" | "easing" | "gap" | "goNext" | "pagination" | "loop" | "speed" | "autoPlay" | "mousewheel" | "autoFocus" | "autoPlayInterval" | "currentItem" | "paginationSize" | "itemsToShow" | "paginationVisibility" | "paginationHoverEdgeThreshold" | "paginationHoverInitialTimeout" | "wheelOptions" | "bufferSize" | "maxDomElements" | "goToSlide" | "goPrev" | "canGoNext" | "canGoPrev"> & import('vue').ShallowUnwrapRef<{
|
|
782
769
|
goToSlide: (index: number, smooth?: boolean) => void;
|
|
783
770
|
goNext: (smooth?: boolean) => void;
|
|
784
771
|
goPrev: (smooth?: boolean) => void;
|
|
@@ -805,25 +792,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
805
792
|
}, HTMLDivElement>;
|
|
806
793
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
807
794
|
export default _default;
|
|
808
|
-
type __VLS_WithDefaults<P, D> = {
|
|
809
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
810
|
-
default: D[K];
|
|
811
|
-
}> : P[K];
|
|
812
|
-
};
|
|
813
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
814
|
-
type __VLS_TypePropsToOption<T> = {
|
|
815
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
816
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
817
|
-
} : {
|
|
818
|
-
type: import('vue').PropType<T[K]>;
|
|
819
|
-
required: true;
|
|
820
|
-
};
|
|
821
|
-
};
|
|
822
795
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
823
796
|
new (): {
|
|
824
797
|
$slots: S;
|
|
825
798
|
};
|
|
826
799
|
};
|
|
827
|
-
type __VLS_PrettifyLocal<T> = {
|
|
828
|
-
[K in keyof T]: T[K];
|
|
829
|
-
} & {};
|