@vuetify/nightly 3.4.0-beta.1-dev.2023-11-08 → 3.4.0-dev.2023-12-01
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/CHANGELOG.md +7 -2
- package/dist/json/attributes.json +2066 -2074
- package/dist/json/importMap.json +96 -96
- package/dist/json/tags.json +5 -7
- package/dist/json/web-types.json +3991 -4113
- package/dist/vuetify-labs.css +1886 -1885
- package/dist/vuetify-labs.d.ts +89 -136
- package/dist/vuetify-labs.esm.js +125 -112
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +124 -111
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +161 -160
- package/dist/vuetify.d.ts +118 -165
- package/dist/vuetify.esm.js +125 -112
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +124 -111
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +141 -140
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtn/VBtn.css +0 -1
- package/lib/components/VBtn/_variables.scss +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.css +0 -1
- package/lib/components/VCarousel/index.d.mts +24 -1
- package/lib/components/VDataTable/VDataTableServer.mjs +2 -2
- package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +2 -2
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +24 -24
- package/lib/components/VGrid/VSpacer.mjs +3 -0
- package/lib/components/VGrid/VSpacer.mjs.map +1 -1
- package/lib/components/VImg/VImg.css +3 -0
- package/lib/components/VImg/VImg.mjs +14 -3
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VImg/VImg.sass +3 -0
- package/lib/components/VImg/_variables.scss +3 -0
- package/lib/components/VImg/index.d.mts +24 -1
- package/lib/components/VStepper/VStepperWindow.mjs +8 -6
- package/lib/components/VStepper/VStepperWindow.mjs.map +1 -1
- package/lib/components/VStepper/VStepperWindowItem.mjs +3 -1
- package/lib/components/VStepper/VStepperWindowItem.mjs.map +1 -1
- package/lib/components/VStepper/index.d.mts +18 -140
- package/lib/components/index.d.mts +89 -136
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.mts +29 -29
- package/package.json +2 -2
|
@@ -26,6 +26,7 @@ declare const VImg: {
|
|
|
26
26
|
options: IntersectionObserverInit;
|
|
27
27
|
cover: boolean;
|
|
28
28
|
src: string | srcObject;
|
|
29
|
+
rounded: string | number | boolean;
|
|
29
30
|
}> & Omit<{
|
|
30
31
|
inline: boolean;
|
|
31
32
|
transition: string | boolean | (vue.TransitionProps & {
|
|
@@ -39,6 +40,7 @@ declare const VImg: {
|
|
|
39
40
|
height?: string | number | undefined;
|
|
40
41
|
width?: string | number | undefined;
|
|
41
42
|
aspectRatio?: string | number | undefined;
|
|
43
|
+
color?: string | undefined;
|
|
42
44
|
maxHeight?: string | number | undefined;
|
|
43
45
|
maxWidth?: string | number | undefined;
|
|
44
46
|
minHeight?: string | number | undefined;
|
|
@@ -52,6 +54,7 @@ declare const VImg: {
|
|
|
52
54
|
sizes?: string | undefined;
|
|
53
55
|
srcset?: string | undefined;
|
|
54
56
|
contentClass?: string | undefined;
|
|
57
|
+
rounded?: string | number | boolean | undefined;
|
|
55
58
|
gradient?: string | undefined;
|
|
56
59
|
lazySrc?: string | undefined;
|
|
57
60
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -87,6 +90,7 @@ declare const VImg: {
|
|
|
87
90
|
height?: string | number | undefined;
|
|
88
91
|
width?: string | number | undefined;
|
|
89
92
|
aspectRatio?: string | number | undefined;
|
|
93
|
+
color?: string | undefined;
|
|
90
94
|
maxHeight?: string | number | undefined;
|
|
91
95
|
maxWidth?: string | number | undefined;
|
|
92
96
|
minHeight?: string | number | undefined;
|
|
@@ -100,6 +104,7 @@ declare const VImg: {
|
|
|
100
104
|
sizes?: string | undefined;
|
|
101
105
|
srcset?: string | undefined;
|
|
102
106
|
contentClass?: string | undefined;
|
|
107
|
+
rounded?: string | number | boolean | undefined;
|
|
103
108
|
gradient?: string | undefined;
|
|
104
109
|
lazySrc?: string | undefined;
|
|
105
110
|
} & {
|
|
@@ -124,7 +129,7 @@ declare const VImg: {
|
|
|
124
129
|
onError?: ((value: string | undefined) => any) | undefined;
|
|
125
130
|
onLoad?: ((value: string | undefined) => any) | undefined;
|
|
126
131
|
onLoadstart?: ((value: string | undefined) => any) | undefined;
|
|
127
|
-
}, "inline" | "transition" | "style" | "draggable" | "eager" | "options" | "cover" | "src">;
|
|
132
|
+
}, "inline" | "transition" | "style" | "draggable" | "eager" | "options" | "cover" | "src" | "rounded">;
|
|
128
133
|
$attrs: {
|
|
129
134
|
[x: string]: unknown;
|
|
130
135
|
};
|
|
@@ -163,6 +168,7 @@ declare const VImg: {
|
|
|
163
168
|
height?: string | number | undefined;
|
|
164
169
|
width?: string | number | undefined;
|
|
165
170
|
aspectRatio?: string | number | undefined;
|
|
171
|
+
color?: string | undefined;
|
|
166
172
|
maxHeight?: string | number | undefined;
|
|
167
173
|
maxWidth?: string | number | undefined;
|
|
168
174
|
minHeight?: string | number | undefined;
|
|
@@ -176,6 +182,7 @@ declare const VImg: {
|
|
|
176
182
|
sizes?: string | undefined;
|
|
177
183
|
srcset?: string | undefined;
|
|
178
184
|
contentClass?: string | undefined;
|
|
185
|
+
rounded?: string | number | boolean | undefined;
|
|
179
186
|
gradient?: string | undefined;
|
|
180
187
|
lazySrc?: string | undefined;
|
|
181
188
|
} & {
|
|
@@ -221,6 +228,7 @@ declare const VImg: {
|
|
|
221
228
|
options: IntersectionObserverInit;
|
|
222
229
|
cover: boolean;
|
|
223
230
|
src: string | srcObject;
|
|
231
|
+
rounded: string | number | boolean;
|
|
224
232
|
}, {}, string, vue.SlotsType<Partial<{
|
|
225
233
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
226
234
|
[key: string]: any;
|
|
@@ -268,6 +276,7 @@ declare const VImg: {
|
|
|
268
276
|
height?: string | number | undefined;
|
|
269
277
|
width?: string | number | undefined;
|
|
270
278
|
aspectRatio?: string | number | undefined;
|
|
279
|
+
color?: string | undefined;
|
|
271
280
|
maxHeight?: string | number | undefined;
|
|
272
281
|
maxWidth?: string | number | undefined;
|
|
273
282
|
minHeight?: string | number | undefined;
|
|
@@ -281,6 +290,7 @@ declare const VImg: {
|
|
|
281
290
|
sizes?: string | undefined;
|
|
282
291
|
srcset?: string | undefined;
|
|
283
292
|
contentClass?: string | undefined;
|
|
293
|
+
rounded?: string | number | boolean | undefined;
|
|
284
294
|
gradient?: string | undefined;
|
|
285
295
|
lazySrc?: string | undefined;
|
|
286
296
|
} & {
|
|
@@ -329,6 +339,7 @@ declare const VImg: {
|
|
|
329
339
|
height?: string | number | undefined;
|
|
330
340
|
width?: string | number | undefined;
|
|
331
341
|
aspectRatio?: string | number | undefined;
|
|
342
|
+
color?: string | undefined;
|
|
332
343
|
maxHeight?: string | number | undefined;
|
|
333
344
|
maxWidth?: string | number | undefined;
|
|
334
345
|
minHeight?: string | number | undefined;
|
|
@@ -342,6 +353,7 @@ declare const VImg: {
|
|
|
342
353
|
sizes?: string | undefined;
|
|
343
354
|
srcset?: string | undefined;
|
|
344
355
|
contentClass?: string | undefined;
|
|
356
|
+
rounded?: string | number | boolean | undefined;
|
|
345
357
|
gradient?: string | undefined;
|
|
346
358
|
lazySrc?: string | undefined;
|
|
347
359
|
} & {
|
|
@@ -387,6 +399,7 @@ declare const VImg: {
|
|
|
387
399
|
options: IntersectionObserverInit;
|
|
388
400
|
cover: boolean;
|
|
389
401
|
src: string | srcObject;
|
|
402
|
+
rounded: string | number | boolean;
|
|
390
403
|
}, {}, string, vue.SlotsType<Partial<{
|
|
391
404
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
392
405
|
[key: string]: any;
|
|
@@ -408,6 +421,10 @@ declare const VImg: {
|
|
|
408
421
|
default: string;
|
|
409
422
|
validator: (val: unknown) => boolean;
|
|
410
423
|
};
|
|
424
|
+
rounded: {
|
|
425
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
426
|
+
default: undefined;
|
|
427
|
+
};
|
|
411
428
|
class: PropType<any>;
|
|
412
429
|
style: {
|
|
413
430
|
type: PropType<vue.StyleValue>;
|
|
@@ -424,6 +441,7 @@ declare const VImg: {
|
|
|
424
441
|
inline: BooleanConstructor;
|
|
425
442
|
alt: StringConstructor;
|
|
426
443
|
cover: BooleanConstructor;
|
|
444
|
+
color: StringConstructor;
|
|
427
445
|
draggable: {
|
|
428
446
|
type: PropType<boolean | "false" | "true">;
|
|
429
447
|
default: undefined;
|
|
@@ -456,6 +474,10 @@ declare const VImg: {
|
|
|
456
474
|
default: string;
|
|
457
475
|
validator: (val: unknown) => boolean;
|
|
458
476
|
};
|
|
477
|
+
rounded: {
|
|
478
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
479
|
+
default: undefined;
|
|
480
|
+
};
|
|
459
481
|
class: PropType<any>;
|
|
460
482
|
style: {
|
|
461
483
|
type: PropType<vue.StyleValue>;
|
|
@@ -472,6 +494,7 @@ declare const VImg: {
|
|
|
472
494
|
inline: BooleanConstructor;
|
|
473
495
|
alt: StringConstructor;
|
|
474
496
|
cover: BooleanConstructor;
|
|
497
|
+
color: StringConstructor;
|
|
475
498
|
draggable: {
|
|
476
499
|
type: PropType<boolean | "false" | "true">;
|
|
477
500
|
default: undefined;
|
|
@@ -3,12 +3,10 @@ import { createVNode as _createVNode, mergeProps as _mergeProps, resolveDirectiv
|
|
|
3
3
|
import { makeVWindowProps, VWindow } from "../VWindow/VWindow.mjs"; // Composables
|
|
4
4
|
import { useProxiedModel } from "../../composables/proxiedModel.mjs"; // Utilities
|
|
5
5
|
import { computed, inject } from 'vue';
|
|
6
|
-
import { genericComponent, propsFactory, useRender } from "../../util/index.mjs"; // Types
|
|
6
|
+
import { genericComponent, omit, propsFactory, useRender } from "../../util/index.mjs"; // Types
|
|
7
7
|
export const VStepperSymbol = Symbol.for('vuetify:v-stepper');
|
|
8
8
|
export const makeVStepperWindowProps = propsFactory({
|
|
9
|
-
...makeVWindowProps(
|
|
10
|
-
mandatory: false
|
|
11
|
-
})
|
|
9
|
+
...omit(makeVWindowProps(), ['continuous', 'nextIcon', 'prevIcon', 'showArrows', 'touch', 'mandatory'])
|
|
12
10
|
}, 'VStepperWindow');
|
|
13
11
|
export const VStepperWindow = genericComponent()({
|
|
14
12
|
name: 'VStepperWindow',
|
|
@@ -38,10 +36,14 @@ export const VStepperWindow = genericComponent()({
|
|
|
38
36
|
});
|
|
39
37
|
useRender(() => {
|
|
40
38
|
const windowProps = VWindow.filterProps(props);
|
|
41
|
-
return _createVNode(VWindow, _mergeProps(
|
|
39
|
+
return _createVNode(VWindow, _mergeProps({
|
|
40
|
+
"_as": "VStepperWindow"
|
|
41
|
+
}, windowProps, {
|
|
42
42
|
"modelValue": model.value,
|
|
43
43
|
"onUpdate:modelValue": $event => model.value = $event,
|
|
44
|
-
"class": "v-stepper-window"
|
|
44
|
+
"class": "v-stepper-window",
|
|
45
|
+
"mandatory": false,
|
|
46
|
+
"touch": false
|
|
45
47
|
}), slots);
|
|
46
48
|
});
|
|
47
49
|
return {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VStepperWindow.mjs","names":["makeVWindowProps","VWindow","useProxiedModel","computed","inject","genericComponent","propsFactory","useRender","VStepperSymbol","Symbol","for","makeVStepperWindowProps","
|
|
1
|
+
{"version":3,"file":"VStepperWindow.mjs","names":["makeVWindowProps","VWindow","useProxiedModel","computed","inject","genericComponent","omit","propsFactory","useRender","VStepperSymbol","Symbol","for","makeVStepperWindowProps","VStepperWindow","name","props","emits","v","setup","_ref","slots","group","_model","model","get","value","items","find","item","selected","includes","id","set","val","windowProps","filterProps","_createVNode","_mergeProps","$event"],"sources":["../../../src/components/VStepper/VStepperWindow.tsx"],"sourcesContent":["// Components\nimport { makeVWindowProps, VWindow } from '@/components/VWindow/VWindow'\n\n// Composables\nimport { useProxiedModel } from '@/composables/proxiedModel'\n\n// Utilities\nimport { computed, inject } from 'vue'\nimport { genericComponent, omit, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { InjectionKey } from 'vue'\nimport type { GroupProvide } from '@/composables/group'\n\nexport const VStepperSymbol: InjectionKey<GroupProvide> = Symbol.for('vuetify:v-stepper')\n\nexport const makeVStepperWindowProps = propsFactory({\n ...omit(makeVWindowProps(), ['continuous', 'nextIcon', 'prevIcon', 'showArrows', 'touch', 'mandatory']),\n}, 'VStepperWindow')\n\nexport const VStepperWindow = genericComponent()({\n name: 'VStepperWindow',\n\n props: makeVStepperWindowProps(),\n\n emits: {\n 'update:modelValue': (v: unknown) => true,\n },\n\n setup (props, { slots }) {\n const group = inject(VStepperSymbol, null)\n const _model = useProxiedModel(props, 'modelValue')\n\n const model = computed({\n get () {\n // Always return modelValue if defined\n // or if not within a VStepper group\n if (_model.value != null || !group) return _model.value\n\n // If inside of a VStepper, find the currently selected\n // item by id. Item value may be assigned by its index\n return group.items.value.find(item => group.selected.value.includes(item.id))?.value\n },\n set (val) {\n _model.value = val\n },\n })\n\n useRender(() => {\n const windowProps = VWindow.filterProps(props)\n\n return (\n <VWindow\n _as=\"VStepperWindow\"\n { ...windowProps }\n v-model={ model.value }\n class=\"v-stepper-window\"\n mandatory={ false }\n touch={ false }\n v-slots={ slots }\n />\n )\n })\n\n return {}\n },\n})\n\nexport type VStepperWindow = InstanceType<typeof VStepperWindow>\n"],"mappings":";AAAA;AAAA,SACSA,gBAAgB,EAAEC,OAAO,kCAElC;AAAA,SACSC,eAAe,8CAExB;AACA,SAASC,QAAQ,EAAEC,MAAM,QAAQ,KAAK;AAAA,SAC7BC,gBAAgB,EAAEC,IAAI,EAAEC,YAAY,EAAEC,SAAS,gCAExD;AAIA,OAAO,MAAMC,cAA0C,GAAGC,MAAM,CAACC,GAAG,CAAC,mBAAmB,CAAC;AAEzF,OAAO,MAAMC,uBAAuB,GAAGL,YAAY,CAAC;EAClD,GAAGD,IAAI,CAACN,gBAAgB,EAAE,EAAE,CAAC,YAAY,EAAE,UAAU,EAAE,UAAU,EAAE,YAAY,EAAE,OAAO,EAAE,WAAW,CAAC;AACxG,CAAC,EAAE,gBAAgB,CAAC;AAEpB,OAAO,MAAMa,cAAc,GAAGR,gBAAgB,EAAE,CAAC;EAC/CS,IAAI,EAAE,gBAAgB;EAEtBC,KAAK,EAAEH,uBAAuB,EAAE;EAEhCI,KAAK,EAAE;IACL,mBAAmB,EAAGC,CAAU,IAAK;EACvC,CAAC;EAEDC,KAAKA,CAAEH,KAAK,EAAAI,IAAA,EAAa;IAAA,IAAX;MAAEC;IAAM,CAAC,GAAAD,IAAA;IACrB,MAAME,KAAK,GAAGjB,MAAM,CAACK,cAAc,EAAE,IAAI,CAAC;IAC1C,MAAMa,MAAM,GAAGpB,eAAe,CAACa,KAAK,EAAE,YAAY,CAAC;IAEnD,MAAMQ,KAAK,GAAGpB,QAAQ,CAAC;MACrBqB,GAAGA,CAAA,EAAI;QACL;QACA;QACA,IAAIF,MAAM,CAACG,KAAK,IAAI,IAAI,IAAI,CAACJ,KAAK,EAAE,OAAOC,MAAM,CAACG,KAAK;;QAEvD;QACA;QACA,OAAOJ,KAAK,CAACK,KAAK,CAACD,KAAK,CAACE,IAAI,CAACC,IAAI,IAAIP,KAAK,CAACQ,QAAQ,CAACJ,KAAK,CAACK,QAAQ,CAACF,IAAI,CAACG,EAAE,CAAC,CAAC,EAAEN,KAAK;MACtF,CAAC;MACDO,GAAGA,CAAEC,GAAG,EAAE;QACRX,MAAM,CAACG,KAAK,GAAGQ,GAAG;MACpB;IACF,CAAC,CAAC;IAEFzB,SAAS,CAAC,MAAM;MACd,MAAM0B,WAAW,GAAGjC,OAAO,CAACkC,WAAW,CAACpB,KAAK,CAAC;MAE9C,OAAAqB,YAAA,CAAAnC,OAAA,EAAAoC,WAAA;QAAA,OAEQ;MAAgB,GACfH,WAAW;QAAA,cACNX,KAAK,CAACE,KAAK;QAAA,uBAAAa,MAAA,IAAXf,KAAK,CAACE,KAAK,GAAAa,MAAA;QAAA,SACf,kBAAkB;QAAA,aACZ,KAAK;QAAA,SACT;MAAK,IACHlB,KAAK;IAGrB,CAAC,CAAC;IAEF,OAAO,CAAC,CAAC;EACX;AACF,CAAC,CAAC"}
|
|
@@ -14,7 +14,9 @@ export const VStepperWindowItem = genericComponent()({
|
|
|
14
14
|
} = _ref;
|
|
15
15
|
useRender(() => {
|
|
16
16
|
const windowItemProps = VWindowItem.filterProps(props);
|
|
17
|
-
return _createVNode(VWindowItem, _mergeProps(
|
|
17
|
+
return _createVNode(VWindowItem, _mergeProps({
|
|
18
|
+
"_as": "VStepperWindowItem"
|
|
19
|
+
}, windowItemProps, {
|
|
18
20
|
"class": "v-stepper-window-item"
|
|
19
21
|
}), slots);
|
|
20
22
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VStepperWindowItem.mjs","names":["makeVWindowItemProps","VWindowItem","genericComponent","propsFactory","useRender","makeVStepperWindowItemProps","VStepperWindowItem","name","props","setup","_ref","slots","windowItemProps","filterProps","_createVNode","_mergeProps"],"sources":["../../../src/components/VStepper/VStepperWindowItem.tsx"],"sourcesContent":["// Components\nimport { makeVWindowItemProps, VWindowItem } from '@/components/VWindow/VWindowItem'\n\n// Utilities\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\nexport const makeVStepperWindowItemProps = propsFactory({\n ...makeVWindowItemProps(),\n}, 'VStepperWindowItem')\n\nexport const VStepperWindowItem = genericComponent()({\n name: 'VStepperWindowItem',\n\n props: makeVStepperWindowItemProps(),\n\n setup (props, { slots }) {\n useRender(() => {\n const windowItemProps = VWindowItem.filterProps(props)\n\n return (\n <VWindowItem\n { ...windowItemProps }\n class=\"v-stepper-window-item\"\n v-slots={ slots }\n />\n )\n })\n\n return {}\n },\n})\n\nexport type VStepperWindowItem = InstanceType<typeof VStepperWindowItem>\n"],"mappings":";AAAA;AAAA,SACSA,oBAAoB,EAAEC,WAAW,sCAE1C;AAAA,SACSC,gBAAgB,EAAEC,YAAY,EAAEC,SAAS;AAElD,OAAO,MAAMC,2BAA2B,GAAGF,YAAY,CAAC;EACtD,GAAGH,oBAAoB;AACzB,CAAC,EAAE,oBAAoB,CAAC;AAExB,OAAO,MAAMM,kBAAkB,GAAGJ,gBAAgB,EAAE,CAAC;EACnDK,IAAI,EAAE,oBAAoB;EAE1BC,KAAK,EAAEH,2BAA2B,EAAE;EAEpCI,KAAKA,CAAED,KAAK,EAAAE,IAAA,EAAa;IAAA,IAAX;MAAEC;IAAM,CAAC,GAAAD,IAAA;IACrBN,SAAS,CAAC,MAAM;MACd,MAAMQ,eAAe,GAAGX,WAAW,CAACY,WAAW,CAACL,KAAK,CAAC;MAEtD,OAAAM,YAAA,CAAAb,WAAA,EAAAc,WAAA,
|
|
1
|
+
{"version":3,"file":"VStepperWindowItem.mjs","names":["makeVWindowItemProps","VWindowItem","genericComponent","propsFactory","useRender","makeVStepperWindowItemProps","VStepperWindowItem","name","props","setup","_ref","slots","windowItemProps","filterProps","_createVNode","_mergeProps"],"sources":["../../../src/components/VStepper/VStepperWindowItem.tsx"],"sourcesContent":["// Components\nimport { makeVWindowItemProps, VWindowItem } from '@/components/VWindow/VWindowItem'\n\n// Utilities\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\nexport const makeVStepperWindowItemProps = propsFactory({\n ...makeVWindowItemProps(),\n}, 'VStepperWindowItem')\n\nexport const VStepperWindowItem = genericComponent()({\n name: 'VStepperWindowItem',\n\n props: makeVStepperWindowItemProps(),\n\n setup (props, { slots }) {\n useRender(() => {\n const windowItemProps = VWindowItem.filterProps(props)\n\n return (\n <VWindowItem\n _as=\"VStepperWindowItem\"\n { ...windowItemProps }\n class=\"v-stepper-window-item\"\n v-slots={ slots }\n />\n )\n })\n\n return {}\n },\n})\n\nexport type VStepperWindowItem = InstanceType<typeof VStepperWindowItem>\n"],"mappings":";AAAA;AAAA,SACSA,oBAAoB,EAAEC,WAAW,sCAE1C;AAAA,SACSC,gBAAgB,EAAEC,YAAY,EAAEC,SAAS;AAElD,OAAO,MAAMC,2BAA2B,GAAGF,YAAY,CAAC;EACtD,GAAGH,oBAAoB;AACzB,CAAC,EAAE,oBAAoB,CAAC;AAExB,OAAO,MAAMM,kBAAkB,GAAGJ,gBAAgB,EAAE,CAAC;EACnDK,IAAI,EAAE,oBAAoB;EAE1BC,KAAK,EAAEH,2BAA2B,EAAE;EAEpCI,KAAKA,CAAED,KAAK,EAAAE,IAAA,EAAa;IAAA,IAAX;MAAEC;IAAM,CAAC,GAAAD,IAAA;IACrBN,SAAS,CAAC,MAAM;MACd,MAAMQ,eAAe,GAAGX,WAAW,CAACY,WAAW,CAACL,KAAK,CAAC;MAEtD,OAAAM,YAAA,CAAAb,WAAA,EAAAc,WAAA;QAAA,OAEQ;MAAoB,GACnBH,eAAe;QAAA,SACd;MAAuB,IACnBD,KAAK;IAGrB,CAAC,CAAC;IAEF,OAAO,CAAC,CAAC;EACX;AACF,CAAC,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as vue from 'vue';
|
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, PropType
|
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
declare const block: readonly ["top", "bottom"];
|
|
5
5
|
declare const inline: readonly ["start", "end", "left", "right"];
|
|
@@ -1703,35 +1703,6 @@ declare const VStepperHeader: {
|
|
|
1703
1703
|
}>>;
|
|
1704
1704
|
type VStepperHeader = InstanceType<typeof VStepperHeader>;
|
|
1705
1705
|
|
|
1706
|
-
interface TouchHandlers {
|
|
1707
|
-
start?: (wrapperEvent: {
|
|
1708
|
-
originalEvent: TouchEvent;
|
|
1709
|
-
} & TouchData) => void;
|
|
1710
|
-
end?: (wrapperEvent: {
|
|
1711
|
-
originalEvent: TouchEvent;
|
|
1712
|
-
} & TouchData) => void;
|
|
1713
|
-
move?: (wrapperEvent: {
|
|
1714
|
-
originalEvent: TouchEvent;
|
|
1715
|
-
} & TouchData) => void;
|
|
1716
|
-
left?: (wrapper: TouchData) => void;
|
|
1717
|
-
right?: (wrapper: TouchData) => void;
|
|
1718
|
-
up?: (wrapper: TouchData) => void;
|
|
1719
|
-
down?: (wrapper: TouchData) => void;
|
|
1720
|
-
}
|
|
1721
|
-
interface TouchData {
|
|
1722
|
-
touchstartX: number;
|
|
1723
|
-
touchstartY: number;
|
|
1724
|
-
touchmoveX: number;
|
|
1725
|
-
touchmoveY: number;
|
|
1726
|
-
touchendX: number;
|
|
1727
|
-
touchendY: number;
|
|
1728
|
-
offsetX: number;
|
|
1729
|
-
offsetY: number;
|
|
1730
|
-
}
|
|
1731
|
-
|
|
1732
|
-
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
|
1733
|
-
declare const IconValue: PropType<IconValue>;
|
|
1734
|
-
|
|
1735
1706
|
declare const VStepperWindow: {
|
|
1736
1707
|
new (...args: any[]): {
|
|
1737
1708
|
$: vue.ComponentInternalInstance;
|
|
@@ -1742,28 +1713,17 @@ declare const VStepperWindow: {
|
|
|
1742
1713
|
style: vue.StyleValue;
|
|
1743
1714
|
disabled: boolean;
|
|
1744
1715
|
tag: string;
|
|
1745
|
-
mandatory: NonNullable<boolean | "force">;
|
|
1746
|
-
touch: boolean | TouchHandlers;
|
|
1747
1716
|
selectedClass: string;
|
|
1748
|
-
continuous: boolean;
|
|
1749
|
-
nextIcon: IconValue;
|
|
1750
|
-
prevIcon: IconValue;
|
|
1751
1717
|
}> & Omit<{
|
|
1752
1718
|
reverse: boolean;
|
|
1753
1719
|
direction: "horizontal" | "vertical";
|
|
1754
1720
|
style: vue.StyleValue;
|
|
1755
1721
|
disabled: boolean;
|
|
1756
1722
|
tag: string;
|
|
1757
|
-
mandatory: NonNullable<boolean | "force">;
|
|
1758
1723
|
selectedClass: string;
|
|
1759
|
-
continuous: boolean;
|
|
1760
|
-
nextIcon: IconValue;
|
|
1761
|
-
prevIcon: IconValue;
|
|
1762
1724
|
class?: any;
|
|
1763
|
-
touch?: boolean | TouchHandlers | undefined;
|
|
1764
1725
|
theme?: string | undefined;
|
|
1765
1726
|
modelValue?: any;
|
|
1766
|
-
showArrows?: string | boolean | undefined;
|
|
1767
1727
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1768
1728
|
default?: (() => vue.VNodeChild) | undefined;
|
|
1769
1729
|
};
|
|
@@ -1778,17 +1738,11 @@ declare const VStepperWindow: {
|
|
|
1778
1738
|
style: vue.StyleValue;
|
|
1779
1739
|
disabled: boolean;
|
|
1780
1740
|
tag: string;
|
|
1781
|
-
mandatory: NonNullable<boolean | "force">;
|
|
1782
1741
|
selectedClass: string;
|
|
1783
|
-
continuous: boolean;
|
|
1784
|
-
nextIcon: IconValue;
|
|
1785
|
-
prevIcon: IconValue;
|
|
1786
1742
|
} & {
|
|
1787
1743
|
class?: any;
|
|
1788
|
-
touch?: boolean | TouchHandlers | undefined;
|
|
1789
1744
|
theme?: string | undefined;
|
|
1790
1745
|
modelValue?: any;
|
|
1791
|
-
showArrows?: string | boolean | undefined;
|
|
1792
1746
|
} & {
|
|
1793
1747
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1794
1748
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1800,7 +1754,7 @@ declare const VStepperWindow: {
|
|
|
1800
1754
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
1801
1755
|
} & {
|
|
1802
1756
|
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
1803
|
-
}, "reverse" | "direction" | "style" | "disabled" | "tag" | "
|
|
1757
|
+
}, "reverse" | "direction" | "style" | "disabled" | "tag" | "selectedClass">;
|
|
1804
1758
|
$attrs: {
|
|
1805
1759
|
[x: string]: unknown;
|
|
1806
1760
|
};
|
|
@@ -1822,17 +1776,11 @@ declare const VStepperWindow: {
|
|
|
1822
1776
|
style: vue.StyleValue;
|
|
1823
1777
|
disabled: boolean;
|
|
1824
1778
|
tag: string;
|
|
1825
|
-
mandatory: NonNullable<boolean | "force">;
|
|
1826
1779
|
selectedClass: string;
|
|
1827
|
-
continuous: boolean;
|
|
1828
|
-
nextIcon: IconValue;
|
|
1829
|
-
prevIcon: IconValue;
|
|
1830
1780
|
} & {
|
|
1831
1781
|
class?: any;
|
|
1832
|
-
touch?: boolean | TouchHandlers | undefined;
|
|
1833
1782
|
theme?: string | undefined;
|
|
1834
1783
|
modelValue?: any;
|
|
1835
|
-
showArrows?: string | boolean | undefined;
|
|
1836
1784
|
} & {
|
|
1837
1785
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1838
1786
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1852,12 +1800,7 @@ declare const VStepperWindow: {
|
|
|
1852
1800
|
style: vue.StyleValue;
|
|
1853
1801
|
disabled: boolean;
|
|
1854
1802
|
tag: string;
|
|
1855
|
-
mandatory: NonNullable<boolean | "force">;
|
|
1856
|
-
touch: boolean | TouchHandlers;
|
|
1857
1803
|
selectedClass: string;
|
|
1858
|
-
continuous: boolean;
|
|
1859
|
-
nextIcon: IconValue;
|
|
1860
|
-
prevIcon: IconValue;
|
|
1861
1804
|
}, {}, string, vue.SlotsType<Partial<{
|
|
1862
1805
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
1863
1806
|
[key: string]: any;
|
|
@@ -1888,17 +1831,11 @@ declare const VStepperWindow: {
|
|
|
1888
1831
|
style: vue.StyleValue;
|
|
1889
1832
|
disabled: boolean;
|
|
1890
1833
|
tag: string;
|
|
1891
|
-
mandatory: NonNullable<boolean | "force">;
|
|
1892
1834
|
selectedClass: string;
|
|
1893
|
-
continuous: boolean;
|
|
1894
|
-
nextIcon: IconValue;
|
|
1895
|
-
prevIcon: IconValue;
|
|
1896
1835
|
} & {
|
|
1897
1836
|
class?: any;
|
|
1898
|
-
touch?: boolean | TouchHandlers | undefined;
|
|
1899
1837
|
theme?: string | undefined;
|
|
1900
1838
|
modelValue?: any;
|
|
1901
|
-
showArrows?: string | boolean | undefined;
|
|
1902
1839
|
} & {
|
|
1903
1840
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1904
1841
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1920,17 +1857,11 @@ declare const VStepperWindow: {
|
|
|
1920
1857
|
style: vue.StyleValue;
|
|
1921
1858
|
disabled: boolean;
|
|
1922
1859
|
tag: string;
|
|
1923
|
-
mandatory: NonNullable<boolean | "force">;
|
|
1924
1860
|
selectedClass: string;
|
|
1925
|
-
continuous: boolean;
|
|
1926
|
-
nextIcon: IconValue;
|
|
1927
|
-
prevIcon: IconValue;
|
|
1928
1861
|
} & {
|
|
1929
1862
|
class?: any;
|
|
1930
|
-
touch?: boolean | TouchHandlers | undefined;
|
|
1931
1863
|
theme?: string | undefined;
|
|
1932
1864
|
modelValue?: any;
|
|
1933
|
-
showArrows?: string | boolean | undefined;
|
|
1934
1865
|
} & {
|
|
1935
1866
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1936
1867
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1950,108 +1881,55 @@ declare const VStepperWindow: {
|
|
|
1950
1881
|
style: vue.StyleValue;
|
|
1951
1882
|
disabled: boolean;
|
|
1952
1883
|
tag: string;
|
|
1953
|
-
mandatory: NonNullable<boolean | "force">;
|
|
1954
|
-
touch: boolean | TouchHandlers;
|
|
1955
1884
|
selectedClass: string;
|
|
1956
|
-
continuous: boolean;
|
|
1957
|
-
nextIcon: IconValue;
|
|
1958
|
-
prevIcon: IconValue;
|
|
1959
1885
|
}, {}, string, vue.SlotsType<Partial<{
|
|
1960
1886
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
1961
1887
|
[key: string]: any;
|
|
1962
1888
|
}>[];
|
|
1963
1889
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
type:
|
|
1890
|
+
reverse: BooleanConstructor;
|
|
1891
|
+
direction: {
|
|
1892
|
+
type: vue.PropType<"horizontal" | "vertical">;
|
|
1967
1893
|
default: string;
|
|
1968
1894
|
};
|
|
1969
|
-
class: vue.PropType<any>;
|
|
1970
1895
|
style: {
|
|
1971
1896
|
type: vue.PropType<vue.StyleValue>;
|
|
1972
1897
|
default: null;
|
|
1973
1898
|
};
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
};
|
|
1979
|
-
prevIcon: {
|
|
1980
|
-
type: vue.PropType<IconValue>;
|
|
1981
|
-
default: string;
|
|
1982
|
-
};
|
|
1983
|
-
reverse: BooleanConstructor;
|
|
1984
|
-
showArrows: {
|
|
1985
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
1986
|
-
validator: (v: any) => boolean;
|
|
1987
|
-
};
|
|
1988
|
-
touch: {
|
|
1989
|
-
type: vue.PropType<boolean | TouchHandlers>;
|
|
1990
|
-
default: undefined;
|
|
1991
|
-
};
|
|
1992
|
-
direction: {
|
|
1993
|
-
type: vue.PropType<"horizontal" | "vertical">;
|
|
1899
|
+
disabled: BooleanConstructor;
|
|
1900
|
+
class: vue.PropType<any>;
|
|
1901
|
+
tag: {
|
|
1902
|
+
type: StringConstructor;
|
|
1994
1903
|
default: string;
|
|
1995
1904
|
};
|
|
1905
|
+
theme: StringConstructor;
|
|
1996
1906
|
modelValue: null;
|
|
1997
|
-
disabled: BooleanConstructor;
|
|
1998
1907
|
selectedClass: {
|
|
1999
1908
|
type: StringConstructor;
|
|
2000
1909
|
default: string;
|
|
2001
1910
|
};
|
|
2002
|
-
mandatory: Omit<{
|
|
2003
|
-
type: vue.PropType<boolean | "force">;
|
|
2004
|
-
default: "force";
|
|
2005
|
-
}, "type" | "default"> & {
|
|
2006
|
-
type: vue.PropType<NonNullable<boolean | "force">>;
|
|
2007
|
-
default: NonNullable<boolean | "force">;
|
|
2008
|
-
};
|
|
2009
1911
|
}, vue.ExtractPropTypes<{
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
type:
|
|
1912
|
+
reverse: BooleanConstructor;
|
|
1913
|
+
direction: {
|
|
1914
|
+
type: vue.PropType<"horizontal" | "vertical">;
|
|
2013
1915
|
default: string;
|
|
2014
1916
|
};
|
|
2015
|
-
class: vue.PropType<any>;
|
|
2016
1917
|
style: {
|
|
2017
1918
|
type: vue.PropType<vue.StyleValue>;
|
|
2018
1919
|
default: null;
|
|
2019
1920
|
};
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
};
|
|
2025
|
-
prevIcon: {
|
|
2026
|
-
type: vue.PropType<IconValue>;
|
|
2027
|
-
default: string;
|
|
2028
|
-
};
|
|
2029
|
-
reverse: BooleanConstructor;
|
|
2030
|
-
showArrows: {
|
|
2031
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
2032
|
-
validator: (v: any) => boolean;
|
|
2033
|
-
};
|
|
2034
|
-
touch: {
|
|
2035
|
-
type: vue.PropType<boolean | TouchHandlers>;
|
|
2036
|
-
default: undefined;
|
|
2037
|
-
};
|
|
2038
|
-
direction: {
|
|
2039
|
-
type: vue.PropType<"horizontal" | "vertical">;
|
|
1921
|
+
disabled: BooleanConstructor;
|
|
1922
|
+
class: vue.PropType<any>;
|
|
1923
|
+
tag: {
|
|
1924
|
+
type: StringConstructor;
|
|
2040
1925
|
default: string;
|
|
2041
1926
|
};
|
|
1927
|
+
theme: StringConstructor;
|
|
2042
1928
|
modelValue: null;
|
|
2043
|
-
disabled: BooleanConstructor;
|
|
2044
1929
|
selectedClass: {
|
|
2045
1930
|
type: StringConstructor;
|
|
2046
1931
|
default: string;
|
|
2047
1932
|
};
|
|
2048
|
-
mandatory: Omit<{
|
|
2049
|
-
type: vue.PropType<boolean | "force">;
|
|
2050
|
-
default: "force";
|
|
2051
|
-
}, "type" | "default"> & {
|
|
2052
|
-
type: vue.PropType<NonNullable<boolean | "force">>;
|
|
2053
|
-
default: NonNullable<boolean | "force">;
|
|
2054
|
-
};
|
|
2055
1933
|
}>>;
|
|
2056
1934
|
type VStepperWindow = InstanceType<typeof VStepperWindow>;
|
|
2057
1935
|
|