@vuetify/nightly 3.4.0-dev.2023-11-09 → 3.4.0-dev.2023-12-07
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 +8 -2
- package/dist/json/attributes.json +1850 -1834
- package/dist/json/importMap.json +44 -44
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +3295 -3259
- package/dist/vuetify-labs.css +1383 -1380
- package/dist/vuetify-labs.d.ts +48 -2
- package/dist/vuetify-labs.esm.js +111 -101
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +110 -100
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +182 -179
- package/dist/vuetify.d.ts +59 -13
- package/dist/vuetify.esm.js +111 -101
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +110 -100
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +133 -132
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VCarousel/index.d.mts +24 -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/index.d.mts +48 -2
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +11 -11
- package/lib/locale/index.d.mts +124 -22
- package/lib/locale/index.mjs +2 -0
- package/lib/locale/index.mjs.map +1 -1
- package/lib/locale/km.mjs +100 -0
- package/lib/locale/km.mjs.map +1 -0
- package/package.json +1 -1
|
@@ -14420,6 +14420,7 @@ declare const VImg: {
|
|
|
14420
14420
|
options: IntersectionObserverInit;
|
|
14421
14421
|
cover: boolean;
|
|
14422
14422
|
src: string | srcObject;
|
|
14423
|
+
rounded: string | number | boolean;
|
|
14423
14424
|
}> & Omit<{
|
|
14424
14425
|
inline: boolean;
|
|
14425
14426
|
transition: string | boolean | (vue.TransitionProps & {
|
|
@@ -14433,6 +14434,7 @@ declare const VImg: {
|
|
|
14433
14434
|
height?: string | number | undefined;
|
|
14434
14435
|
width?: string | number | undefined;
|
|
14435
14436
|
aspectRatio?: string | number | undefined;
|
|
14437
|
+
color?: string | undefined;
|
|
14436
14438
|
maxHeight?: string | number | undefined;
|
|
14437
14439
|
maxWidth?: string | number | undefined;
|
|
14438
14440
|
minHeight?: string | number | undefined;
|
|
@@ -14446,6 +14448,7 @@ declare const VImg: {
|
|
|
14446
14448
|
sizes?: string | undefined;
|
|
14447
14449
|
srcset?: string | undefined;
|
|
14448
14450
|
contentClass?: string | undefined;
|
|
14451
|
+
rounded?: string | number | boolean | undefined;
|
|
14449
14452
|
gradient?: string | undefined;
|
|
14450
14453
|
lazySrc?: string | undefined;
|
|
14451
14454
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -14481,6 +14484,7 @@ declare const VImg: {
|
|
|
14481
14484
|
height?: string | number | undefined;
|
|
14482
14485
|
width?: string | number | undefined;
|
|
14483
14486
|
aspectRatio?: string | number | undefined;
|
|
14487
|
+
color?: string | undefined;
|
|
14484
14488
|
maxHeight?: string | number | undefined;
|
|
14485
14489
|
maxWidth?: string | number | undefined;
|
|
14486
14490
|
minHeight?: string | number | undefined;
|
|
@@ -14494,6 +14498,7 @@ declare const VImg: {
|
|
|
14494
14498
|
sizes?: string | undefined;
|
|
14495
14499
|
srcset?: string | undefined;
|
|
14496
14500
|
contentClass?: string | undefined;
|
|
14501
|
+
rounded?: string | number | boolean | undefined;
|
|
14497
14502
|
gradient?: string | undefined;
|
|
14498
14503
|
lazySrc?: string | undefined;
|
|
14499
14504
|
} & {
|
|
@@ -14518,7 +14523,7 @@ declare const VImg: {
|
|
|
14518
14523
|
onError?: ((value: string | undefined) => any) | undefined;
|
|
14519
14524
|
onLoad?: ((value: string | undefined) => any) | undefined;
|
|
14520
14525
|
onLoadstart?: ((value: string | undefined) => any) | undefined;
|
|
14521
|
-
}, "inline" | "transition" | "style" | "draggable" | "eager" | "options" | "cover" | "src">;
|
|
14526
|
+
}, "inline" | "transition" | "style" | "draggable" | "eager" | "options" | "cover" | "src" | "rounded">;
|
|
14522
14527
|
$attrs: {
|
|
14523
14528
|
[x: string]: unknown;
|
|
14524
14529
|
};
|
|
@@ -14557,6 +14562,7 @@ declare const VImg: {
|
|
|
14557
14562
|
height?: string | number | undefined;
|
|
14558
14563
|
width?: string | number | undefined;
|
|
14559
14564
|
aspectRatio?: string | number | undefined;
|
|
14565
|
+
color?: string | undefined;
|
|
14560
14566
|
maxHeight?: string | number | undefined;
|
|
14561
14567
|
maxWidth?: string | number | undefined;
|
|
14562
14568
|
minHeight?: string | number | undefined;
|
|
@@ -14570,6 +14576,7 @@ declare const VImg: {
|
|
|
14570
14576
|
sizes?: string | undefined;
|
|
14571
14577
|
srcset?: string | undefined;
|
|
14572
14578
|
contentClass?: string | undefined;
|
|
14579
|
+
rounded?: string | number | boolean | undefined;
|
|
14573
14580
|
gradient?: string | undefined;
|
|
14574
14581
|
lazySrc?: string | undefined;
|
|
14575
14582
|
} & {
|
|
@@ -14615,6 +14622,7 @@ declare const VImg: {
|
|
|
14615
14622
|
options: IntersectionObserverInit;
|
|
14616
14623
|
cover: boolean;
|
|
14617
14624
|
src: string | srcObject;
|
|
14625
|
+
rounded: string | number | boolean;
|
|
14618
14626
|
}, {}, string, vue.SlotsType<Partial<{
|
|
14619
14627
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
14620
14628
|
[key: string]: any;
|
|
@@ -14662,6 +14670,7 @@ declare const VImg: {
|
|
|
14662
14670
|
height?: string | number | undefined;
|
|
14663
14671
|
width?: string | number | undefined;
|
|
14664
14672
|
aspectRatio?: string | number | undefined;
|
|
14673
|
+
color?: string | undefined;
|
|
14665
14674
|
maxHeight?: string | number | undefined;
|
|
14666
14675
|
maxWidth?: string | number | undefined;
|
|
14667
14676
|
minHeight?: string | number | undefined;
|
|
@@ -14675,6 +14684,7 @@ declare const VImg: {
|
|
|
14675
14684
|
sizes?: string | undefined;
|
|
14676
14685
|
srcset?: string | undefined;
|
|
14677
14686
|
contentClass?: string | undefined;
|
|
14687
|
+
rounded?: string | number | boolean | undefined;
|
|
14678
14688
|
gradient?: string | undefined;
|
|
14679
14689
|
lazySrc?: string | undefined;
|
|
14680
14690
|
} & {
|
|
@@ -14723,6 +14733,7 @@ declare const VImg: {
|
|
|
14723
14733
|
height?: string | number | undefined;
|
|
14724
14734
|
width?: string | number | undefined;
|
|
14725
14735
|
aspectRatio?: string | number | undefined;
|
|
14736
|
+
color?: string | undefined;
|
|
14726
14737
|
maxHeight?: string | number | undefined;
|
|
14727
14738
|
maxWidth?: string | number | undefined;
|
|
14728
14739
|
minHeight?: string | number | undefined;
|
|
@@ -14736,6 +14747,7 @@ declare const VImg: {
|
|
|
14736
14747
|
sizes?: string | undefined;
|
|
14737
14748
|
srcset?: string | undefined;
|
|
14738
14749
|
contentClass?: string | undefined;
|
|
14750
|
+
rounded?: string | number | boolean | undefined;
|
|
14739
14751
|
gradient?: string | undefined;
|
|
14740
14752
|
lazySrc?: string | undefined;
|
|
14741
14753
|
} & {
|
|
@@ -14781,6 +14793,7 @@ declare const VImg: {
|
|
|
14781
14793
|
options: IntersectionObserverInit;
|
|
14782
14794
|
cover: boolean;
|
|
14783
14795
|
src: string | srcObject;
|
|
14796
|
+
rounded: string | number | boolean;
|
|
14784
14797
|
}, {}, string, vue.SlotsType<Partial<{
|
|
14785
14798
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
14786
14799
|
[key: string]: any;
|
|
@@ -14802,6 +14815,10 @@ declare const VImg: {
|
|
|
14802
14815
|
default: string;
|
|
14803
14816
|
validator: (val: unknown) => boolean;
|
|
14804
14817
|
};
|
|
14818
|
+
rounded: {
|
|
14819
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
14820
|
+
default: undefined;
|
|
14821
|
+
};
|
|
14805
14822
|
class: PropType<any>;
|
|
14806
14823
|
style: {
|
|
14807
14824
|
type: PropType<vue.StyleValue>;
|
|
@@ -14818,6 +14835,7 @@ declare const VImg: {
|
|
|
14818
14835
|
inline: BooleanConstructor;
|
|
14819
14836
|
alt: StringConstructor;
|
|
14820
14837
|
cover: BooleanConstructor;
|
|
14838
|
+
color: StringConstructor;
|
|
14821
14839
|
draggable: {
|
|
14822
14840
|
type: PropType<boolean | "false" | "true">;
|
|
14823
14841
|
default: undefined;
|
|
@@ -14850,6 +14868,10 @@ declare const VImg: {
|
|
|
14850
14868
|
default: string;
|
|
14851
14869
|
validator: (val: unknown) => boolean;
|
|
14852
14870
|
};
|
|
14871
|
+
rounded: {
|
|
14872
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
14873
|
+
default: undefined;
|
|
14874
|
+
};
|
|
14853
14875
|
class: PropType<any>;
|
|
14854
14876
|
style: {
|
|
14855
14877
|
type: PropType<vue.StyleValue>;
|
|
@@ -14866,6 +14888,7 @@ declare const VImg: {
|
|
|
14866
14888
|
inline: BooleanConstructor;
|
|
14867
14889
|
alt: StringConstructor;
|
|
14868
14890
|
cover: BooleanConstructor;
|
|
14891
|
+
color: StringConstructor;
|
|
14869
14892
|
draggable: {
|
|
14870
14893
|
type: PropType<boolean | "false" | "true">;
|
|
14871
14894
|
default: undefined;
|
|
@@ -14907,6 +14930,7 @@ declare const VCarouselItem: {
|
|
|
14907
14930
|
options: IntersectionObserverInit;
|
|
14908
14931
|
cover: boolean;
|
|
14909
14932
|
src: string | srcObject;
|
|
14933
|
+
rounded: string | number | boolean;
|
|
14910
14934
|
reverseTransition: string | boolean;
|
|
14911
14935
|
}> & Omit<{
|
|
14912
14936
|
inline: boolean;
|
|
@@ -14919,6 +14943,7 @@ declare const VCarouselItem: {
|
|
|
14919
14943
|
height?: string | number | undefined;
|
|
14920
14944
|
width?: string | number | undefined;
|
|
14921
14945
|
aspectRatio?: string | number | undefined;
|
|
14946
|
+
color?: string | undefined;
|
|
14922
14947
|
maxHeight?: string | number | undefined;
|
|
14923
14948
|
maxWidth?: string | number | undefined;
|
|
14924
14949
|
minHeight?: string | number | undefined;
|
|
@@ -14934,6 +14959,7 @@ declare const VCarouselItem: {
|
|
|
14934
14959
|
sizes?: string | undefined;
|
|
14935
14960
|
srcset?: string | undefined;
|
|
14936
14961
|
contentClass?: string | undefined;
|
|
14962
|
+
rounded?: string | number | boolean | undefined;
|
|
14937
14963
|
gradient?: string | undefined;
|
|
14938
14964
|
lazySrc?: string | undefined;
|
|
14939
14965
|
selectedClass?: string | undefined;
|
|
@@ -14966,6 +14992,7 @@ declare const VCarouselItem: {
|
|
|
14966
14992
|
height?: string | number | undefined;
|
|
14967
14993
|
width?: string | number | undefined;
|
|
14968
14994
|
aspectRatio?: string | number | undefined;
|
|
14995
|
+
color?: string | undefined;
|
|
14969
14996
|
maxHeight?: string | number | undefined;
|
|
14970
14997
|
maxWidth?: string | number | undefined;
|
|
14971
14998
|
minHeight?: string | number | undefined;
|
|
@@ -14981,6 +15008,7 @@ declare const VCarouselItem: {
|
|
|
14981
15008
|
sizes?: string | undefined;
|
|
14982
15009
|
srcset?: string | undefined;
|
|
14983
15010
|
contentClass?: string | undefined;
|
|
15011
|
+
rounded?: string | number | boolean | undefined;
|
|
14984
15012
|
gradient?: string | undefined;
|
|
14985
15013
|
lazySrc?: string | undefined;
|
|
14986
15014
|
selectedClass?: string | undefined;
|
|
@@ -15003,7 +15031,7 @@ declare const VCarouselItem: {
|
|
|
15003
15031
|
"v-slot:placeholder"?: false | (() => vue.VNodeChild) | undefined;
|
|
15004
15032
|
"v-slot:error"?: false | (() => vue.VNodeChild) | undefined;
|
|
15005
15033
|
"v-slot:sources"?: false | (() => vue.VNodeChild) | undefined;
|
|
15006
|
-
}, "inline" | "transition" | "style" | "draggable" | "eager" | "disabled" | "options" | "cover" | "src" | "reverseTransition">;
|
|
15034
|
+
}, "inline" | "transition" | "style" | "draggable" | "eager" | "disabled" | "options" | "cover" | "src" | "rounded" | "reverseTransition">;
|
|
15007
15035
|
$attrs: {
|
|
15008
15036
|
[x: string]: unknown;
|
|
15009
15037
|
};
|
|
@@ -15040,6 +15068,7 @@ declare const VCarouselItem: {
|
|
|
15040
15068
|
height?: string | number | undefined;
|
|
15041
15069
|
width?: string | number | undefined;
|
|
15042
15070
|
aspectRatio?: string | number | undefined;
|
|
15071
|
+
color?: string | undefined;
|
|
15043
15072
|
maxHeight?: string | number | undefined;
|
|
15044
15073
|
maxWidth?: string | number | undefined;
|
|
15045
15074
|
minHeight?: string | number | undefined;
|
|
@@ -15055,6 +15084,7 @@ declare const VCarouselItem: {
|
|
|
15055
15084
|
sizes?: string | undefined;
|
|
15056
15085
|
srcset?: string | undefined;
|
|
15057
15086
|
contentClass?: string | undefined;
|
|
15087
|
+
rounded?: string | number | boolean | undefined;
|
|
15058
15088
|
gradient?: string | undefined;
|
|
15059
15089
|
lazySrc?: string | undefined;
|
|
15060
15090
|
selectedClass?: string | undefined;
|
|
@@ -15087,6 +15117,7 @@ declare const VCarouselItem: {
|
|
|
15087
15117
|
options: IntersectionObserverInit;
|
|
15088
15118
|
cover: boolean;
|
|
15089
15119
|
src: string | srcObject;
|
|
15120
|
+
rounded: string | number | boolean;
|
|
15090
15121
|
reverseTransition: string | boolean;
|
|
15091
15122
|
}, {}, string, vue.SlotsType<Partial<{
|
|
15092
15123
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -15133,6 +15164,7 @@ declare const VCarouselItem: {
|
|
|
15133
15164
|
height?: string | number | undefined;
|
|
15134
15165
|
width?: string | number | undefined;
|
|
15135
15166
|
aspectRatio?: string | number | undefined;
|
|
15167
|
+
color?: string | undefined;
|
|
15136
15168
|
maxHeight?: string | number | undefined;
|
|
15137
15169
|
maxWidth?: string | number | undefined;
|
|
15138
15170
|
minHeight?: string | number | undefined;
|
|
@@ -15148,6 +15180,7 @@ declare const VCarouselItem: {
|
|
|
15148
15180
|
sizes?: string | undefined;
|
|
15149
15181
|
srcset?: string | undefined;
|
|
15150
15182
|
contentClass?: string | undefined;
|
|
15183
|
+
rounded?: string | number | boolean | undefined;
|
|
15151
15184
|
gradient?: string | undefined;
|
|
15152
15185
|
lazySrc?: string | undefined;
|
|
15153
15186
|
selectedClass?: string | undefined;
|
|
@@ -15186,6 +15219,7 @@ declare const VCarouselItem: {
|
|
|
15186
15219
|
height?: string | number | undefined;
|
|
15187
15220
|
width?: string | number | undefined;
|
|
15188
15221
|
aspectRatio?: string | number | undefined;
|
|
15222
|
+
color?: string | undefined;
|
|
15189
15223
|
maxHeight?: string | number | undefined;
|
|
15190
15224
|
maxWidth?: string | number | undefined;
|
|
15191
15225
|
minHeight?: string | number | undefined;
|
|
@@ -15201,6 +15235,7 @@ declare const VCarouselItem: {
|
|
|
15201
15235
|
sizes?: string | undefined;
|
|
15202
15236
|
srcset?: string | undefined;
|
|
15203
15237
|
contentClass?: string | undefined;
|
|
15238
|
+
rounded?: string | number | boolean | undefined;
|
|
15204
15239
|
gradient?: string | undefined;
|
|
15205
15240
|
lazySrc?: string | undefined;
|
|
15206
15241
|
selectedClass?: string | undefined;
|
|
@@ -15233,6 +15268,7 @@ declare const VCarouselItem: {
|
|
|
15233
15268
|
options: IntersectionObserverInit;
|
|
15234
15269
|
cover: boolean;
|
|
15235
15270
|
src: string | srcObject;
|
|
15271
|
+
rounded: string | number | boolean;
|
|
15236
15272
|
reverseTransition: string | boolean;
|
|
15237
15273
|
}, {}, string, vue.SlotsType<Partial<{
|
|
15238
15274
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -15265,6 +15301,10 @@ declare const VCarouselItem: {
|
|
|
15265
15301
|
type: (StringConstructor | BooleanConstructor)[];
|
|
15266
15302
|
default: undefined;
|
|
15267
15303
|
};
|
|
15304
|
+
rounded: {
|
|
15305
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
15306
|
+
default: undefined;
|
|
15307
|
+
};
|
|
15268
15308
|
height: (StringConstructor | NumberConstructor)[];
|
|
15269
15309
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
15270
15310
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
@@ -15276,6 +15316,7 @@ declare const VCarouselItem: {
|
|
|
15276
15316
|
inline: BooleanConstructor;
|
|
15277
15317
|
alt: StringConstructor;
|
|
15278
15318
|
cover: BooleanConstructor;
|
|
15319
|
+
color: StringConstructor;
|
|
15279
15320
|
draggable: {
|
|
15280
15321
|
type: vue.PropType<boolean | "false" | "true">;
|
|
15281
15322
|
default: undefined;
|
|
@@ -15317,6 +15358,10 @@ declare const VCarouselItem: {
|
|
|
15317
15358
|
type: (StringConstructor | BooleanConstructor)[];
|
|
15318
15359
|
default: undefined;
|
|
15319
15360
|
};
|
|
15361
|
+
rounded: {
|
|
15362
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
15363
|
+
default: undefined;
|
|
15364
|
+
};
|
|
15320
15365
|
height: (StringConstructor | NumberConstructor)[];
|
|
15321
15366
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
15322
15367
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
@@ -15328,6 +15373,7 @@ declare const VCarouselItem: {
|
|
|
15328
15373
|
inline: BooleanConstructor;
|
|
15329
15374
|
alt: StringConstructor;
|
|
15330
15375
|
cover: BooleanConstructor;
|
|
15376
|
+
color: StringConstructor;
|
|
15331
15377
|
draggable: {
|
|
15332
15378
|
type: vue.PropType<boolean | "false" | "true">;
|
|
15333
15379
|
default: undefined;
|
package/lib/entry-bundler.mjs
CHANGED
|
@@ -15,7 +15,7 @@ export const createVuetify = function () {
|
|
|
15
15
|
...options
|
|
16
16
|
});
|
|
17
17
|
};
|
|
18
|
-
export const version = "3.4.0-dev.2023-
|
|
18
|
+
export const version = "3.4.0-dev.2023-12-07";
|
|
19
19
|
createVuetify.version = version;
|
|
20
20
|
export { components, directives };
|
|
21
21
|
export * from "./composables/index.mjs";
|
package/lib/framework.mjs
CHANGED
package/lib/index.d.mts
CHANGED
|
@@ -438,22 +438,22 @@ declare module '@vue/runtime-core' {
|
|
|
438
438
|
|
|
439
439
|
export interface GlobalComponents {
|
|
440
440
|
VApp: typeof import('vuetify/components')['VApp']
|
|
441
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
|
442
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
443
441
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
444
442
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
445
443
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
444
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
445
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
446
446
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
447
447
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
448
448
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
449
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
|
450
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
451
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
449
452
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
450
453
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
451
454
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
452
455
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
453
456
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
454
|
-
VBanner: typeof import('vuetify/components')['VBanner']
|
|
455
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
456
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
457
457
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
458
458
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
459
459
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
@@ -479,6 +479,12 @@ declare module '@vue/runtime-core' {
|
|
|
479
479
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
480
480
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
481
481
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
482
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
483
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
484
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
485
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
486
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
487
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
482
488
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
483
489
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
484
490
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
@@ -587,12 +593,6 @@ declare module '@vue/runtime-core' {
|
|
|
587
593
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
588
594
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
589
595
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
590
|
-
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
591
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
592
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
593
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
594
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
595
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
596
596
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
597
597
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
598
598
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
package/lib/locale/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default$
|
|
1
|
+
declare const _default$G: {
|
|
2
2
|
badge: string;
|
|
3
3
|
open: string;
|
|
4
4
|
close: string;
|
|
@@ -99,7 +99,7 @@ declare const _default$F: {
|
|
|
99
99
|
};
|
|
100
100
|
//# sourceMappingURL=af.d.ts.map
|
|
101
101
|
|
|
102
|
-
declare const _default$
|
|
102
|
+
declare const _default$F: {
|
|
103
103
|
badge: string;
|
|
104
104
|
open: string;
|
|
105
105
|
close: string;
|
|
@@ -200,7 +200,7 @@ declare const _default$E: {
|
|
|
200
200
|
};
|
|
201
201
|
//# sourceMappingURL=ar.d.ts.map
|
|
202
202
|
|
|
203
|
-
declare const _default$
|
|
203
|
+
declare const _default$E: {
|
|
204
204
|
badge: string;
|
|
205
205
|
open: string;
|
|
206
206
|
close: string;
|
|
@@ -301,7 +301,7 @@ declare const _default$D: {
|
|
|
301
301
|
};
|
|
302
302
|
//# sourceMappingURL=bg.d.ts.map
|
|
303
303
|
|
|
304
|
-
declare const _default$
|
|
304
|
+
declare const _default$D: {
|
|
305
305
|
badge: string;
|
|
306
306
|
open: string;
|
|
307
307
|
close: string;
|
|
@@ -402,7 +402,7 @@ declare const _default$C: {
|
|
|
402
402
|
};
|
|
403
403
|
//# sourceMappingURL=ca.d.ts.map
|
|
404
404
|
|
|
405
|
-
declare const _default$
|
|
405
|
+
declare const _default$C: {
|
|
406
406
|
badge: string;
|
|
407
407
|
open: string;
|
|
408
408
|
close: string;
|
|
@@ -503,7 +503,7 @@ declare const _default$B: {
|
|
|
503
503
|
};
|
|
504
504
|
//# sourceMappingURL=ckb.d.ts.map
|
|
505
505
|
|
|
506
|
-
declare const _default$
|
|
506
|
+
declare const _default$B: {
|
|
507
507
|
badge: string;
|
|
508
508
|
open: string;
|
|
509
509
|
close: string;
|
|
@@ -604,7 +604,7 @@ declare const _default$A: {
|
|
|
604
604
|
};
|
|
605
605
|
//# sourceMappingURL=cs.d.ts.map
|
|
606
606
|
|
|
607
|
-
declare const _default$
|
|
607
|
+
declare const _default$A: {
|
|
608
608
|
badge: string;
|
|
609
609
|
open: string;
|
|
610
610
|
close: string;
|
|
@@ -705,7 +705,7 @@ declare const _default$z: {
|
|
|
705
705
|
};
|
|
706
706
|
//# sourceMappingURL=da.d.ts.map
|
|
707
707
|
|
|
708
|
-
declare const _default$
|
|
708
|
+
declare const _default$z: {
|
|
709
709
|
badge: string;
|
|
710
710
|
open: string;
|
|
711
711
|
close: string;
|
|
@@ -806,7 +806,7 @@ declare const _default$y: {
|
|
|
806
806
|
};
|
|
807
807
|
//# sourceMappingURL=de.d.ts.map
|
|
808
808
|
|
|
809
|
-
declare const _default$
|
|
809
|
+
declare const _default$y: {
|
|
810
810
|
badge: string;
|
|
811
811
|
open: string;
|
|
812
812
|
close: string;
|
|
@@ -907,7 +907,7 @@ declare const _default$x: {
|
|
|
907
907
|
};
|
|
908
908
|
//# sourceMappingURL=el.d.ts.map
|
|
909
909
|
|
|
910
|
-
declare const _default$
|
|
910
|
+
declare const _default$x: {
|
|
911
911
|
badge: string;
|
|
912
912
|
open: string;
|
|
913
913
|
close: string;
|
|
@@ -1008,7 +1008,7 @@ declare const _default$w: {
|
|
|
1008
1008
|
};
|
|
1009
1009
|
//# sourceMappingURL=en.d.ts.map
|
|
1010
1010
|
|
|
1011
|
-
declare const _default$
|
|
1011
|
+
declare const _default$w: {
|
|
1012
1012
|
badge: string;
|
|
1013
1013
|
open: string;
|
|
1014
1014
|
close: string;
|
|
@@ -1109,7 +1109,7 @@ declare const _default$v: {
|
|
|
1109
1109
|
};
|
|
1110
1110
|
//# sourceMappingURL=es.d.ts.map
|
|
1111
1111
|
|
|
1112
|
-
declare const _default$
|
|
1112
|
+
declare const _default$v: {
|
|
1113
1113
|
badge: string;
|
|
1114
1114
|
open: string;
|
|
1115
1115
|
close: string;
|
|
@@ -1210,7 +1210,7 @@ declare const _default$u: {
|
|
|
1210
1210
|
};
|
|
1211
1211
|
//# sourceMappingURL=et.d.ts.map
|
|
1212
1212
|
|
|
1213
|
-
declare const _default$
|
|
1213
|
+
declare const _default$u: {
|
|
1214
1214
|
badge: string;
|
|
1215
1215
|
open: string;
|
|
1216
1216
|
close: string;
|
|
@@ -1311,7 +1311,7 @@ declare const _default$t: {
|
|
|
1311
1311
|
};
|
|
1312
1312
|
//# sourceMappingURL=fa.d.ts.map
|
|
1313
1313
|
|
|
1314
|
-
declare const _default$
|
|
1314
|
+
declare const _default$t: {
|
|
1315
1315
|
badge: string;
|
|
1316
1316
|
open: string;
|
|
1317
1317
|
close: string;
|
|
@@ -1412,7 +1412,7 @@ declare const _default$s: {
|
|
|
1412
1412
|
};
|
|
1413
1413
|
//# sourceMappingURL=fi.d.ts.map
|
|
1414
1414
|
|
|
1415
|
-
declare const _default$
|
|
1415
|
+
declare const _default$s: {
|
|
1416
1416
|
badge: string;
|
|
1417
1417
|
open: string;
|
|
1418
1418
|
close: string;
|
|
@@ -1513,7 +1513,7 @@ declare const _default$r: {
|
|
|
1513
1513
|
};
|
|
1514
1514
|
//# sourceMappingURL=fr.d.ts.map
|
|
1515
1515
|
|
|
1516
|
-
declare const _default$
|
|
1516
|
+
declare const _default$r: {
|
|
1517
1517
|
badge: string;
|
|
1518
1518
|
open: string;
|
|
1519
1519
|
close: string;
|
|
@@ -1614,7 +1614,7 @@ declare const _default$q: {
|
|
|
1614
1614
|
};
|
|
1615
1615
|
//# sourceMappingURL=hr.d.ts.map
|
|
1616
1616
|
|
|
1617
|
-
declare const _default$
|
|
1617
|
+
declare const _default$q: {
|
|
1618
1618
|
badge: string;
|
|
1619
1619
|
open: string;
|
|
1620
1620
|
close: string;
|
|
@@ -1715,7 +1715,7 @@ declare const _default$p: {
|
|
|
1715
1715
|
};
|
|
1716
1716
|
//# sourceMappingURL=hu.d.ts.map
|
|
1717
1717
|
|
|
1718
|
-
declare const _default$
|
|
1718
|
+
declare const _default$p: {
|
|
1719
1719
|
badge: string;
|
|
1720
1720
|
open: string;
|
|
1721
1721
|
close: string;
|
|
@@ -1816,7 +1816,7 @@ declare const _default$o: {
|
|
|
1816
1816
|
};
|
|
1817
1817
|
//# sourceMappingURL=he.d.ts.map
|
|
1818
1818
|
|
|
1819
|
-
declare const _default$
|
|
1819
|
+
declare const _default$o: {
|
|
1820
1820
|
badge: string;
|
|
1821
1821
|
open: string;
|
|
1822
1822
|
close: string;
|
|
@@ -1917,7 +1917,7 @@ declare const _default$n: {
|
|
|
1917
1917
|
};
|
|
1918
1918
|
//# sourceMappingURL=id.d.ts.map
|
|
1919
1919
|
|
|
1920
|
-
declare const _default$
|
|
1920
|
+
declare const _default$n: {
|
|
1921
1921
|
badge: string;
|
|
1922
1922
|
open: string;
|
|
1923
1923
|
close: string;
|
|
@@ -2018,7 +2018,7 @@ declare const _default$m: {
|
|
|
2018
2018
|
};
|
|
2019
2019
|
//# sourceMappingURL=it.d.ts.map
|
|
2020
2020
|
|
|
2021
|
-
declare const _default$
|
|
2021
|
+
declare const _default$m: {
|
|
2022
2022
|
badge: string;
|
|
2023
2023
|
open: string;
|
|
2024
2024
|
close: string;
|
|
@@ -2119,6 +2119,107 @@ declare const _default$l: {
|
|
|
2119
2119
|
};
|
|
2120
2120
|
//# sourceMappingURL=ja.d.ts.map
|
|
2121
2121
|
|
|
2122
|
+
declare const _default$l: {
|
|
2123
|
+
badge: string;
|
|
2124
|
+
open: string;
|
|
2125
|
+
close: string;
|
|
2126
|
+
confirmEdit: {
|
|
2127
|
+
ok: string;
|
|
2128
|
+
cancel: string;
|
|
2129
|
+
};
|
|
2130
|
+
dataIterator: {
|
|
2131
|
+
noResultsText: string;
|
|
2132
|
+
loadingText: string;
|
|
2133
|
+
};
|
|
2134
|
+
dataTable: {
|
|
2135
|
+
itemsPerPageText: string;
|
|
2136
|
+
ariaLabel: {
|
|
2137
|
+
sortDescending: string;
|
|
2138
|
+
sortAscending: string;
|
|
2139
|
+
sortNone: string;
|
|
2140
|
+
activateNone: string;
|
|
2141
|
+
activateDescending: string;
|
|
2142
|
+
activateAscending: string;
|
|
2143
|
+
};
|
|
2144
|
+
sortBy: string;
|
|
2145
|
+
};
|
|
2146
|
+
dataFooter: {
|
|
2147
|
+
itemsPerPageText: string;
|
|
2148
|
+
itemsPerPageAll: string;
|
|
2149
|
+
nextPage: string;
|
|
2150
|
+
prevPage: string;
|
|
2151
|
+
firstPage: string;
|
|
2152
|
+
lastPage: string;
|
|
2153
|
+
pageText: string;
|
|
2154
|
+
};
|
|
2155
|
+
dateRangeInput: {
|
|
2156
|
+
divider: string;
|
|
2157
|
+
};
|
|
2158
|
+
datePicker: {
|
|
2159
|
+
itemsSelected: string;
|
|
2160
|
+
range: {
|
|
2161
|
+
title: string;
|
|
2162
|
+
header: string;
|
|
2163
|
+
};
|
|
2164
|
+
title: string;
|
|
2165
|
+
header: string;
|
|
2166
|
+
input: {
|
|
2167
|
+
placeholder: string;
|
|
2168
|
+
};
|
|
2169
|
+
};
|
|
2170
|
+
noDataText: string;
|
|
2171
|
+
carousel: {
|
|
2172
|
+
prev: string;
|
|
2173
|
+
next: string;
|
|
2174
|
+
ariaLabel: {
|
|
2175
|
+
delimiter: string;
|
|
2176
|
+
};
|
|
2177
|
+
};
|
|
2178
|
+
calendar: {
|
|
2179
|
+
moreEvents: string;
|
|
2180
|
+
};
|
|
2181
|
+
input: {
|
|
2182
|
+
clear: string;
|
|
2183
|
+
prependAction: string;
|
|
2184
|
+
appendAction: string;
|
|
2185
|
+
otp: string;
|
|
2186
|
+
};
|
|
2187
|
+
fileInput: {
|
|
2188
|
+
counter: string;
|
|
2189
|
+
counterSize: string;
|
|
2190
|
+
};
|
|
2191
|
+
timePicker: {
|
|
2192
|
+
am: string;
|
|
2193
|
+
pm: string;
|
|
2194
|
+
};
|
|
2195
|
+
pagination: {
|
|
2196
|
+
ariaLabel: {
|
|
2197
|
+
root: string;
|
|
2198
|
+
next: string;
|
|
2199
|
+
previous: string;
|
|
2200
|
+
page: string;
|
|
2201
|
+
currentPage: string;
|
|
2202
|
+
first: string;
|
|
2203
|
+
last: string;
|
|
2204
|
+
};
|
|
2205
|
+
};
|
|
2206
|
+
stepper: {
|
|
2207
|
+
next: string;
|
|
2208
|
+
prev: string;
|
|
2209
|
+
};
|
|
2210
|
+
rating: {
|
|
2211
|
+
ariaLabel: {
|
|
2212
|
+
item: string;
|
|
2213
|
+
};
|
|
2214
|
+
};
|
|
2215
|
+
loading: string;
|
|
2216
|
+
infiniteScroll: {
|
|
2217
|
+
loadMore: string;
|
|
2218
|
+
empty: string;
|
|
2219
|
+
};
|
|
2220
|
+
};
|
|
2221
|
+
//# sourceMappingURL=km.d.ts.map
|
|
2222
|
+
|
|
2122
2223
|
declare const _default$k: {
|
|
2123
2224
|
badge: string;
|
|
2124
2225
|
open: string;
|
|
@@ -4261,6 +4362,7 @@ declare const defaultRtl: {
|
|
|
4261
4362
|
id: boolean;
|
|
4262
4363
|
it: boolean;
|
|
4263
4364
|
ja: boolean;
|
|
4365
|
+
km: boolean;
|
|
4264
4366
|
ko: boolean;
|
|
4265
4367
|
lv: boolean;
|
|
4266
4368
|
lt: boolean;
|
|
@@ -4284,4 +4386,4 @@ declare const defaultRtl: {
|
|
|
4284
4386
|
zhHant: boolean;
|
|
4285
4387
|
};
|
|
4286
4388
|
|
|
4287
|
-
export { _default$
|
|
4389
|
+
export { _default$G as af, _default$F as ar, _default$4 as az, _default$E as bg, _default$D as ca, _default$C as ckb, _default$B as cs, _default$A as da, _default$z as de, defaultRtl, _default$y as el, _default$x as en, _default$w as es, _default$v as et, _default$u as fa, _default$t as fi, _default$s as fr, _default$p as he, _default$r as hr, _default$q as hu, _default$o as id, _default$n as it, _default$m as ja, _default$l as km, _default$k as ko, _default$i as lt, _default$j as lv, _default$h as nl, _default$g as no, _default$f as pl, _default$e as pt, _default$d as ro, _default$c as ru, _default$b as sk, _default$a as sl, _default$9 as srCyrl, _default$8 as srLatn, _default$7 as sv, _default$6 as th, _default$5 as tr, _default$3 as uk, _default$2 as vi, _default$1 as zhHans, _default as zhHant };
|
package/lib/locale/index.mjs
CHANGED
|
@@ -19,6 +19,7 @@ export { default as he } from "./he.mjs";
|
|
|
19
19
|
export { default as id } from "./id.mjs";
|
|
20
20
|
export { default as it } from "./it.mjs";
|
|
21
21
|
export { default as ja } from "./ja.mjs";
|
|
22
|
+
export { default as km } from "./km.mjs";
|
|
22
23
|
export { default as ko } from "./ko.mjs";
|
|
23
24
|
export { default as lv } from "./lv.mjs";
|
|
24
25
|
export { default as lt } from "./lt.mjs";
|
|
@@ -61,6 +62,7 @@ export const defaultRtl = {
|
|
|
61
62
|
id: false,
|
|
62
63
|
it: false,
|
|
63
64
|
ja: false,
|
|
65
|
+
km: false,
|
|
64
66
|
ko: false,
|
|
65
67
|
lv: false,
|
|
66
68
|
lt: false,
|