@vuetify/nightly 3.7.13-master.2025-02-21 → 3.7.13-master.2025-02-25

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.
Files changed (47) hide show
  1. package/CHANGELOG.md +21 -3
  2. package/dist/json/attributes.json +3149 -3145
  3. package/dist/json/importMap-labs.json +20 -20
  4. package/dist/json/importMap.json +172 -172
  5. package/dist/json/tags.json +1 -0
  6. package/dist/json/web-types.json +5882 -5610
  7. package/dist/vuetify-labs.css +3509 -3503
  8. package/dist/vuetify-labs.d.ts +219 -0
  9. package/dist/vuetify-labs.esm.js +18 -10
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +18 -10
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +4010 -4010
  14. package/dist/vuetify.d.ts +61 -61
  15. package/dist/vuetify.esm.js +4 -4
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +4 -4
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +3 -3
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/composables/density.mjs +1 -1
  23. package/lib/composables/density.mjs.map +1 -1
  24. package/lib/entry-bundler.mjs +1 -1
  25. package/lib/framework.mjs +1 -1
  26. package/lib/index.d.mts +61 -61
  27. package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
  28. package/lib/labs/VDateInput/index.d.mts +248 -1
  29. package/lib/labs/VNumberInput/VNumberInput.mjs +2 -2
  30. package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
  31. package/lib/labs/VTimePicker/VTimePickerControls.sass +16 -16
  32. package/lib/labs/VTimePicker/_variables.scss +12 -12
  33. package/lib/labs/VTreeview/VTreeview.mjs +5 -1
  34. package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
  35. package/lib/labs/VTreeview/VTreeviewChildren.mjs +4 -1
  36. package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
  37. package/lib/labs/VTreeview/VTreeviewItem.css +15 -9
  38. package/lib/labs/VTreeview/VTreeviewItem.mjs +4 -2
  39. package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
  40. package/lib/labs/VTreeview/VTreeviewItem.sass +16 -10
  41. package/lib/labs/VTreeview/_variables.scss +2 -5
  42. package/lib/labs/VTreeview/index.d.mts +9 -0
  43. package/lib/labs/components.d.mts +280 -61
  44. package/lib/locale/ja.mjs +19 -19
  45. package/lib/locale/ja.mjs.map +1 -1
  46. package/lib/styles/tools/_functions.sass +1 -1
  47. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import * as vue from 'vue';
2
- import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, Ref, DirectiveBinding, ComputedRef, nextTick, EffectScope } from 'vue';
2
+ import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, ComputedRef, Ref, DirectiveBinding, nextTick, EffectScope } from 'vue';
3
3
  // @ts-ignore
4
4
  import * as vue_router from 'vue-router';
5
5
 
@@ -1806,6 +1806,17 @@ declare const VCalendarMonthDay: {
1806
1806
  }>>;
1807
1807
  type VCalendarMonthDay = InstanceType<typeof VCalendarMonthDay>;
1808
1808
 
1809
+ type VCounterSlot = {
1810
+ counter: string;
1811
+ max: string | number | undefined;
1812
+ value: string | number | undefined;
1813
+ };
1814
+
1815
+ interface LoaderSlotProps {
1816
+ color: string | undefined;
1817
+ isActive: boolean;
1818
+ }
1819
+
1809
1820
  type Density = null | 'default' | 'comfortable' | 'compact';
1810
1821
 
1811
1822
  type ValidationResult = string | boolean;
@@ -1834,6 +1845,55 @@ type JSXComponent<Props = any> = {
1834
1845
  type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
1835
1846
  declare const IconValue: PropType<IconValue>;
1836
1847
 
1848
+ type VMessageSlot = {
1849
+ message: string;
1850
+ };
1851
+
1852
+ interface VInputSlot {
1853
+ id: ComputedRef<string>;
1854
+ messagesId: ComputedRef<string>;
1855
+ isDirty: ComputedRef<boolean>;
1856
+ isDisabled: ComputedRef<boolean>;
1857
+ isReadonly: ComputedRef<boolean>;
1858
+ isPristine: Ref<boolean>;
1859
+ isValid: ComputedRef<boolean | null>;
1860
+ isValidating: Ref<boolean>;
1861
+ reset: () => void;
1862
+ resetValidation: () => void;
1863
+ validate: () => void;
1864
+ }
1865
+ type VInputSlots = {
1866
+ default: VInputSlot;
1867
+ prepend: VInputSlot;
1868
+ append: VInputSlot;
1869
+ details: VInputSlot;
1870
+ message: VMessageSlot;
1871
+ };
1872
+
1873
+ interface DefaultInputSlot {
1874
+ isActive: Ref<boolean>;
1875
+ isFocused: Ref<boolean>;
1876
+ controlRef: Ref<HTMLElement | undefined>;
1877
+ focus: () => void;
1878
+ blur: () => void;
1879
+ }
1880
+ interface VFieldSlot extends DefaultInputSlot {
1881
+ props: Record<string, unknown>;
1882
+ }
1883
+ type VFieldSlots = {
1884
+ clear: DefaultInputSlot & {
1885
+ props: Record<string, any>;
1886
+ };
1887
+ 'prepend-inner': DefaultInputSlot;
1888
+ 'append-inner': DefaultInputSlot;
1889
+ label: DefaultInputSlot & {
1890
+ label: string | undefined;
1891
+ props: Record<string, any>;
1892
+ };
1893
+ loader: LoaderSlotProps;
1894
+ default: VFieldSlot;
1895
+ };
1896
+
1837
1897
  interface LocationStrategyData {
1838
1898
  contentEl: Ref<HTMLElement | undefined>;
1839
1899
  target: Ref<HTMLElement | [x: number, y: number] | undefined>;
@@ -1975,14 +2035,59 @@ declare const VDateInput: {
1975
2035
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
1976
2036
  } & {
1977
2037
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
2038
+ message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
2039
+ clear?: ((arg: DefaultInputSlot & {
2040
+ props: Record<string, any>;
2041
+ }) => vue.VNodeChild) | undefined;
2042
+ details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2043
+ label?: ((arg: DefaultInputSlot & {
2044
+ label: string | undefined;
2045
+ props: Record<string, any>;
2046
+ }) => vue.VNodeChild) | undefined;
2047
+ append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2048
+ prepend?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2049
+ loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
2050
+ counter?: ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
2051
+ 'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2052
+ 'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
1978
2053
  actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
1979
2054
  default?: (() => vue.VNodeChild) | undefined;
1980
2055
  };
1981
2056
  'v-slots'?: {
2057
+ message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
2058
+ clear?: false | ((arg: DefaultInputSlot & {
2059
+ props: Record<string, any>;
2060
+ }) => vue.VNodeChild) | undefined;
2061
+ details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2062
+ label?: false | ((arg: DefaultInputSlot & {
2063
+ label: string | undefined;
2064
+ props: Record<string, any>;
2065
+ }) => vue.VNodeChild) | undefined;
2066
+ append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2067
+ prepend?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2068
+ loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
2069
+ counter?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
2070
+ 'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2071
+ 'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
1982
2072
  actions?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
1983
2073
  default?: false | (() => vue.VNodeChild) | undefined;
1984
2074
  } | undefined;
1985
2075
  } & {
2076
+ "v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
2077
+ "v-slot:clear"?: false | ((arg: DefaultInputSlot & {
2078
+ props: Record<string, any>;
2079
+ }) => vue.VNodeChild) | undefined;
2080
+ "v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2081
+ "v-slot:label"?: false | ((arg: DefaultInputSlot & {
2082
+ label: string | undefined;
2083
+ props: Record<string, any>;
2084
+ }) => vue.VNodeChild) | undefined;
2085
+ "v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2086
+ "v-slot:prepend"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2087
+ "v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
2088
+ "v-slot:counter"?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
2089
+ "v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2090
+ "v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
1986
2091
  "v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
1987
2092
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
1988
2093
  } & {
@@ -2090,14 +2195,59 @@ declare const VDateInput: {
2090
2195
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
2091
2196
  } & {
2092
2197
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
2198
+ message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
2199
+ clear?: ((arg: DefaultInputSlot & {
2200
+ props: Record<string, any>;
2201
+ }) => vue.VNodeChild) | undefined;
2202
+ details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2203
+ label?: ((arg: DefaultInputSlot & {
2204
+ label: string | undefined;
2205
+ props: Record<string, any>;
2206
+ }) => vue.VNodeChild) | undefined;
2207
+ append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2208
+ prepend?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2209
+ loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
2210
+ counter?: ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
2211
+ 'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2212
+ 'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2093
2213
  actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
2094
2214
  default?: (() => vue.VNodeChild) | undefined;
2095
2215
  };
2096
2216
  'v-slots'?: {
2217
+ message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
2218
+ clear?: false | ((arg: DefaultInputSlot & {
2219
+ props: Record<string, any>;
2220
+ }) => vue.VNodeChild) | undefined;
2221
+ details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2222
+ label?: false | ((arg: DefaultInputSlot & {
2223
+ label: string | undefined;
2224
+ props: Record<string, any>;
2225
+ }) => vue.VNodeChild) | undefined;
2226
+ append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2227
+ prepend?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2228
+ loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
2229
+ counter?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
2230
+ 'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2231
+ 'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2097
2232
  actions?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
2098
2233
  default?: false | (() => vue.VNodeChild) | undefined;
2099
2234
  } | undefined;
2100
2235
  } & {
2236
+ "v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
2237
+ "v-slot:clear"?: false | ((arg: DefaultInputSlot & {
2238
+ props: Record<string, any>;
2239
+ }) => vue.VNodeChild) | undefined;
2240
+ "v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2241
+ "v-slot:label"?: false | ((arg: DefaultInputSlot & {
2242
+ label: string | undefined;
2243
+ props: Record<string, any>;
2244
+ }) => vue.VNodeChild) | undefined;
2245
+ "v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2246
+ "v-slot:prepend"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2247
+ "v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
2248
+ "v-slot:counter"?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
2249
+ "v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2250
+ "v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2101
2251
  "v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
2102
2252
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
2103
2253
  } & {
@@ -2155,6 +2305,21 @@ declare const VDateInput: {
2155
2305
  hideHeader: boolean;
2156
2306
  hideActions: boolean;
2157
2307
  }, true, {}, vue.SlotsType<Partial<{
2308
+ message: (arg: VMessageSlot) => vue.VNode[];
2309
+ clear: (arg: DefaultInputSlot & {
2310
+ props: Record<string, any>;
2311
+ }) => vue.VNode[];
2312
+ details: (arg: VInputSlot) => vue.VNode[];
2313
+ label: (arg: DefaultInputSlot & {
2314
+ label: string | undefined;
2315
+ props: Record<string, any>;
2316
+ }) => vue.VNode[];
2317
+ append: (arg: VInputSlot) => vue.VNode[];
2318
+ prepend: (arg: VInputSlot) => vue.VNode[];
2319
+ loader: (arg: LoaderSlotProps) => vue.VNode[];
2320
+ counter: (arg: VCounterSlot) => vue.VNode[];
2321
+ 'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
2322
+ 'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
2158
2323
  actions: (arg: VDateInputActionsSlot) => vue.VNode[];
2159
2324
  default: () => vue.VNode[];
2160
2325
  }>>, {
@@ -2265,14 +2430,59 @@ declare const VDateInput: {
2265
2430
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
2266
2431
  } & {
2267
2432
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
2433
+ message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
2434
+ clear?: ((arg: DefaultInputSlot & {
2435
+ props: Record<string, any>;
2436
+ }) => vue.VNodeChild) | undefined;
2437
+ details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2438
+ label?: ((arg: DefaultInputSlot & {
2439
+ label: string | undefined;
2440
+ props: Record<string, any>;
2441
+ }) => vue.VNodeChild) | undefined;
2442
+ append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2443
+ prepend?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2444
+ loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
2445
+ counter?: ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
2446
+ 'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2447
+ 'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2268
2448
  actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
2269
2449
  default?: (() => vue.VNodeChild) | undefined;
2270
2450
  };
2271
2451
  'v-slots'?: {
2452
+ message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
2453
+ clear?: false | ((arg: DefaultInputSlot & {
2454
+ props: Record<string, any>;
2455
+ }) => vue.VNodeChild) | undefined;
2456
+ details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2457
+ label?: false | ((arg: DefaultInputSlot & {
2458
+ label: string | undefined;
2459
+ props: Record<string, any>;
2460
+ }) => vue.VNodeChild) | undefined;
2461
+ append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2462
+ prepend?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2463
+ loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
2464
+ counter?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
2465
+ 'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2466
+ 'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2272
2467
  actions?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
2273
2468
  default?: false | (() => vue.VNodeChild) | undefined;
2274
2469
  } | undefined;
2275
2470
  } & {
2471
+ "v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
2472
+ "v-slot:clear"?: false | ((arg: DefaultInputSlot & {
2473
+ props: Record<string, any>;
2474
+ }) => vue.VNodeChild) | undefined;
2475
+ "v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2476
+ "v-slot:label"?: false | ((arg: DefaultInputSlot & {
2477
+ label: string | undefined;
2478
+ props: Record<string, any>;
2479
+ }) => vue.VNodeChild) | undefined;
2480
+ "v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2481
+ "v-slot:prepend"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2482
+ "v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
2483
+ "v-slot:counter"?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
2484
+ "v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2485
+ "v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2276
2486
  "v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
2277
2487
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
2278
2488
  } & {
@@ -2434,14 +2644,59 @@ declare const VDateInput: {
2434
2644
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
2435
2645
  } & {
2436
2646
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
2647
+ message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
2648
+ clear?: ((arg: DefaultInputSlot & {
2649
+ props: Record<string, any>;
2650
+ }) => vue.VNodeChild) | undefined;
2651
+ details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2652
+ label?: ((arg: DefaultInputSlot & {
2653
+ label: string | undefined;
2654
+ props: Record<string, any>;
2655
+ }) => vue.VNodeChild) | undefined;
2656
+ append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2657
+ prepend?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2658
+ loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
2659
+ counter?: ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
2660
+ 'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2661
+ 'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2437
2662
  actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
2438
2663
  default?: (() => vue.VNodeChild) | undefined;
2439
2664
  };
2440
2665
  'v-slots'?: {
2666
+ message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
2667
+ clear?: false | ((arg: DefaultInputSlot & {
2668
+ props: Record<string, any>;
2669
+ }) => vue.VNodeChild) | undefined;
2670
+ details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2671
+ label?: false | ((arg: DefaultInputSlot & {
2672
+ label: string | undefined;
2673
+ props: Record<string, any>;
2674
+ }) => vue.VNodeChild) | undefined;
2675
+ append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2676
+ prepend?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2677
+ loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
2678
+ counter?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
2679
+ 'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2680
+ 'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2441
2681
  actions?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
2442
2682
  default?: false | (() => vue.VNodeChild) | undefined;
2443
2683
  } | undefined;
2444
2684
  } & {
2685
+ "v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
2686
+ "v-slot:clear"?: false | ((arg: DefaultInputSlot & {
2687
+ props: Record<string, any>;
2688
+ }) => vue.VNodeChild) | undefined;
2689
+ "v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2690
+ "v-slot:label"?: false | ((arg: DefaultInputSlot & {
2691
+ label: string | undefined;
2692
+ props: Record<string, any>;
2693
+ }) => vue.VNodeChild) | undefined;
2694
+ "v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2695
+ "v-slot:prepend"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2696
+ "v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
2697
+ "v-slot:counter"?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
2698
+ "v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2699
+ "v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
2445
2700
  "v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
2446
2701
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
2447
2702
  } & {
@@ -2501,6 +2756,21 @@ declare const VDateInput: {
2501
2756
  hideHeader: boolean;
2502
2757
  hideActions: boolean;
2503
2758
  }, {}, string, vue.SlotsType<Partial<{
2759
+ message: (arg: VMessageSlot) => vue.VNode[];
2760
+ clear: (arg: DefaultInputSlot & {
2761
+ props: Record<string, any>;
2762
+ }) => vue.VNode[];
2763
+ details: (arg: VInputSlot) => vue.VNode[];
2764
+ label: (arg: DefaultInputSlot & {
2765
+ label: string | undefined;
2766
+ props: Record<string, any>;
2767
+ }) => vue.VNode[];
2768
+ append: (arg: VInputSlot) => vue.VNode[];
2769
+ prepend: (arg: VInputSlot) => vue.VNode[];
2770
+ loader: (arg: LoaderSlotProps) => vue.VNode[];
2771
+ counter: (arg: VCounterSlot) => vue.VNode[];
2772
+ 'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
2773
+ 'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
2504
2774
  actions: (arg: VDateInputActionsSlot) => vue.VNode[];
2505
2775
  default: () => vue.VNode[];
2506
2776
  }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
@@ -4294,66 +4564,6 @@ declare const VFileUploadItem: {
4294
4564
  }>>;
4295
4565
  type VFileUploadItem = InstanceType<typeof VFileUploadItem>;
4296
4566
 
4297
- type VCounterSlot = {
4298
- counter: string;
4299
- max: string | number | undefined;
4300
- value: string | number | undefined;
4301
- };
4302
-
4303
- interface LoaderSlotProps {
4304
- color: string | undefined;
4305
- isActive: boolean;
4306
- }
4307
-
4308
- type VMessageSlot = {
4309
- message: string;
4310
- };
4311
-
4312
- interface VInputSlot {
4313
- id: ComputedRef<string>;
4314
- messagesId: ComputedRef<string>;
4315
- isDirty: ComputedRef<boolean>;
4316
- isDisabled: ComputedRef<boolean>;
4317
- isReadonly: ComputedRef<boolean>;
4318
- isPristine: Ref<boolean>;
4319
- isValid: ComputedRef<boolean | null>;
4320
- isValidating: Ref<boolean>;
4321
- reset: () => void;
4322
- resetValidation: () => void;
4323
- validate: () => void;
4324
- }
4325
- type VInputSlots = {
4326
- default: VInputSlot;
4327
- prepend: VInputSlot;
4328
- append: VInputSlot;
4329
- details: VInputSlot;
4330
- message: VMessageSlot;
4331
- };
4332
-
4333
- interface DefaultInputSlot {
4334
- isActive: Ref<boolean>;
4335
- isFocused: Ref<boolean>;
4336
- controlRef: Ref<HTMLElement | undefined>;
4337
- focus: () => void;
4338
- blur: () => void;
4339
- }
4340
- interface VFieldSlot extends DefaultInputSlot {
4341
- props: Record<string, unknown>;
4342
- }
4343
- type VFieldSlots = {
4344
- clear: DefaultInputSlot & {
4345
- props: Record<string, any>;
4346
- };
4347
- 'prepend-inner': DefaultInputSlot;
4348
- 'append-inner': DefaultInputSlot;
4349
- label: DefaultInputSlot & {
4350
- label: string | undefined;
4351
- props: Record<string, any>;
4352
- };
4353
- loader: LoaderSlotProps;
4354
- default: VFieldSlot;
4355
- };
4356
-
4357
4567
  type ControlSlot = {
4358
4568
  click: (e: MouseEvent) => void;
4359
4569
  };
@@ -16915,6 +17125,7 @@ declare const VTreeview: {
16915
17125
  selectStrategy: SelectStrategyProp;
16916
17126
  collapseIcon: IconValue;
16917
17127
  expandIcon: IconValue;
17128
+ fluid: boolean;
16918
17129
  returnObject: boolean;
16919
17130
  filterMode: FilterMode;
16920
17131
  noFilter: boolean;
@@ -17013,6 +17224,7 @@ declare const VTreeview: {
17013
17224
  selectStrategy: SelectStrategyProp;
17014
17225
  collapseIcon: IconValue;
17015
17226
  expandIcon: IconValue;
17227
+ fluid: boolean;
17016
17228
  returnObject: boolean;
17017
17229
  filterMode: FilterMode;
17018
17230
  noFilter: boolean;
@@ -17097,6 +17309,7 @@ declare const VTreeview: {
17097
17309
  selectStrategy: SelectStrategyProp;
17098
17310
  collapseIcon: IconValue;
17099
17311
  expandIcon: IconValue;
17312
+ fluid: boolean;
17100
17313
  returnObject: boolean;
17101
17314
  filterMode: FilterMode;
17102
17315
  noFilter: boolean;
@@ -17158,6 +17371,7 @@ declare const VTreeview: {
17158
17371
  selectStrategy: SelectStrategyProp;
17159
17372
  collapseIcon: IconValue;
17160
17373
  expandIcon: IconValue;
17374
+ fluid: boolean;
17161
17375
  returnObject: boolean;
17162
17376
  filterMode: FilterMode;
17163
17377
  noFilter: boolean;
@@ -17242,6 +17456,7 @@ declare const VTreeview: {
17242
17456
  selectStrategy: SelectStrategyProp;
17243
17457
  collapseIcon: IconValue;
17244
17458
  expandIcon: IconValue;
17459
+ fluid: boolean;
17245
17460
  returnObject: boolean;
17246
17461
  filterMode: FilterMode;
17247
17462
  noFilter: boolean;
@@ -17274,6 +17489,7 @@ declare const VTreeview: {
17274
17489
  selectStrategy: SelectStrategyProp;
17275
17490
  collapseIcon: IconValue;
17276
17491
  expandIcon: IconValue;
17492
+ fluid: boolean;
17277
17493
  returnObject: boolean;
17278
17494
  filterMode: FilterMode;
17279
17495
  noFilter: boolean;
@@ -17373,6 +17589,7 @@ declare const VTreeview: {
17373
17589
  selectStrategy: SelectStrategyProp;
17374
17590
  collapseIcon: IconValue;
17375
17591
  expandIcon: IconValue;
17592
+ fluid: boolean;
17376
17593
  returnObject: boolean;
17377
17594
  filterMode: FilterMode;
17378
17595
  noFilter: boolean;
@@ -17549,6 +17766,7 @@ declare const VTreeview: {
17549
17766
  default: string;
17550
17767
  };
17551
17768
  noFilter: BooleanConstructor;
17769
+ fluid: BooleanConstructor;
17552
17770
  openAll: BooleanConstructor;
17553
17771
  search: StringConstructor;
17554
17772
  }, vue.ExtractPropTypes<{
@@ -17688,6 +17906,7 @@ declare const VTreeview: {
17688
17906
  default: string;
17689
17907
  };
17690
17908
  noFilter: BooleanConstructor;
17909
+ fluid: BooleanConstructor;
17691
17910
  openAll: BooleanConstructor;
17692
17911
  search: StringConstructor;
17693
17912
  }>>;
package/lib/locale/ja.mjs CHANGED
@@ -1,11 +1,11 @@
1
1
  export default {
2
2
  badge: 'バッジ',
3
- open: 'Open',
3
+ open: '開く',
4
4
  close: '閉じる',
5
- dismiss: 'Dismiss',
5
+ dismiss: '閉じる',
6
6
  confirmEdit: {
7
7
  ok: 'OK',
8
- cancel: 'Cancel'
8
+ cancel: 'キャンセル'
9
9
  },
10
10
  dataIterator: {
11
11
  noResultsText: '検索結果が見つかりません。',
@@ -36,15 +36,15 @@ export default {
36
36
  divider: 'to'
37
37
  },
38
38
  datePicker: {
39
- itemsSelected: '{0} selected',
39
+ itemsSelected: '{0} 選択済',
40
40
  range: {
41
41
  title: 'Select dates',
42
42
  header: 'Enter dates'
43
43
  },
44
- title: 'Select date',
45
- header: 'Enter date',
44
+ title: '日付を選択',
45
+ header: '日付を入力',
46
46
  input: {
47
- placeholder: 'Enter date'
47
+ placeholder: '日付を入力'
48
48
  }
49
49
  },
50
50
  noDataText: 'データはありません。',
@@ -57,27 +57,27 @@ export default {
57
57
  },
58
58
  calendar: {
59
59
  moreEvents: 'さらに{0}',
60
- today: 'Today'
60
+ today: '今日'
61
61
  },
62
62
  input: {
63
- clear: 'Clear {0}',
63
+ clear: 'クリア {0}',
64
64
  prependAction: '{0} prepended action',
65
65
  appendAction: '{0} appended action',
66
- otp: 'Please enter OTP character {0}'
66
+ otp: '{0}番目のワンタイムパスワードを入力してください'
67
67
  },
68
68
  fileInput: {
69
69
  counter: '{0} ファイル',
70
70
  counterSize: '{0} ファイル (合計 {1})'
71
71
  },
72
72
  fileUpload: {
73
- title: 'Drag and drop files here',
74
- divider: 'or',
75
- browse: 'Browse Files'
73
+ title: 'ここにファイルをドラッグ&ドロップ',
74
+ divider: 'または',
75
+ browse: 'ファイルを選択'
76
76
  },
77
77
  timePicker: {
78
78
  am: 'AM',
79
79
  pm: 'PM',
80
- title: 'Select Time'
80
+ title: '時間を選択'
81
81
  },
82
82
  pagination: {
83
83
  ariaLabel: {
@@ -91,18 +91,18 @@ export default {
91
91
  }
92
92
  },
93
93
  stepper: {
94
- next: 'Next',
95
- prev: 'Previous'
94
+ next: '次へ',
95
+ prev: '前へ'
96
96
  },
97
97
  rating: {
98
98
  ariaLabel: {
99
99
  item: '評価 {1} のうち {0}'
100
100
  }
101
101
  },
102
- loading: 'Loading...',
102
+ loading: 'ロード中...',
103
103
  infiniteScroll: {
104
- loadMore: 'Load more',
105
- empty: 'No more'
104
+ loadMore: 'さらに読み込む',
105
+ empty: 'データがありません'
106
106
  }
107
107
  };
108
108
  //# sourceMappingURL=ja.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"ja.mjs","names":["badge","open","close","dismiss","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","today","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","fileUpload","browse","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/ja.ts"],"sourcesContent":["export default {\n badge: 'バッジ',\n open: 'Open',\n close: '閉じる',\n dismiss: 'Dismiss',\n confirmEdit: {\n ok: 'OK',\n cancel: 'Cancel',\n },\n dataIterator: {\n noResultsText: '検索結果が見つかりません。',\n loadingText: '項目をロード中です...',\n },\n dataTable: {\n itemsPerPageText: '1ページあたりの行数:',\n ariaLabel: {\n sortDescending: '降順の並び替え。',\n sortAscending: '昇順の並び替え。',\n sortNone: 'ソートされていません。',\n activateNone: 'ソートを削除するには有効にしてください。',\n activateDescending: '降順の並び替えのためには有効にしてください。',\n activateAscending: '昇順のソートのためには有効にしてください。',\n },\n sortBy: 'ソート方式',\n },\n dataFooter: {\n itemsPerPageText: '1ページあたりの件数:',\n itemsPerPageAll: 'すべて',\n nextPage: '次のページ',\n prevPage: '前のページ',\n firstPage: '最初のページ',\n lastPage: '最後のページ',\n pageText: '{0}-{1} 件目 / {2}件',\n },\n dateRangeInput: {\n divider: 'to',\n },\n datePicker: {\n itemsSelected: '{0} selected',\n range: {\n title: 'Select dates',\n header: 'Enter dates',\n },\n title: 'Select date',\n header: 'Enter date',\n input: {\n placeholder: 'Enter date',\n },\n },\n noDataText: 'データはありません。',\n carousel: {\n prev: '前のビジュアル',\n next: '次のビジュアル',\n ariaLabel: {\n delimiter: 'カルーセルのスライド {0}件目 / {1}件',\n },\n },\n calendar: {\n moreEvents: 'さらに{0}',\n today: 'Today',\n },\n input: {\n clear: 'Clear {0}',\n prependAction: '{0} prepended action',\n appendAction: '{0} appended action',\n otp: 'Please enter OTP character {0}',\n },\n fileInput: {\n counter: '{0} ファイル',\n counterSize: '{0} ファイル (合計 {1})',\n },\n fileUpload: {\n title: 'Drag and drop files here',\n divider: 'or',\n browse: 'Browse Files',\n },\n timePicker: {\n am: 'AM',\n pm: 'PM',\n title: 'Select Time',\n },\n pagination: {\n ariaLabel: {\n root: 'ページネーションナビゲーション',\n next: '次のページ',\n previous: '前のページ',\n page: '{0}ページ目に移動',\n currentPage: '現在のページ、ページ {0}',\n first: 'First page',\n last: 'Last page',\n },\n },\n stepper: {\n next: 'Next',\n prev: 'Previous',\n },\n rating: {\n ariaLabel: {\n item: '評価 {1} のうち {0}',\n },\n },\n loading: 'Loading...',\n infiniteScroll: {\n loadMore: 'Load more',\n empty: 'No more',\n },\n}\n"],"mappings":"AAAA,eAAe;EACbA,KAAK,EAAE,KAAK;EACZC,IAAI,EAAE,MAAM;EACZC,KAAK,EAAE,KAAK;EACZC,OAAO,EAAE,SAAS;EAClBC,WAAW,EAAE;IACXC,EAAE,EAAE,IAAI;IACRC,MAAM,EAAE;EACV,CAAC;EACDC,YAAY,EAAE;IACZC,aAAa,EAAE,eAAe;IAC9BC,WAAW,EAAE;EACf,CAAC;EACDC,SAAS,EAAE;IACTC,gBAAgB,EAAE,aAAa;IAC/BC,SAAS,EAAE;MACTC,cAAc,EAAE,UAAU;MAC1BC,aAAa,EAAE,UAAU;MACzBC,QAAQ,EAAE,aAAa;MACvBC,YAAY,EAAE,sBAAsB;MACpCC,kBAAkB,EAAE,wBAAwB;MAC5CC,iBAAiB,EAAE;IACrB,CAAC;IACDC,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVT,gBAAgB,EAAE,aAAa;IAC/BU,eAAe,EAAE,KAAK;IACtBC,QAAQ,EAAE,OAAO;IACjBC,QAAQ,EAAE,OAAO;IACjBC,SAAS,EAAE,QAAQ;IACnBC,QAAQ,EAAE,QAAQ;IAClBC,QAAQ,EAAE;EACZ,CAAC;EACDC,cAAc,EAAE;IACdC,OAAO,EAAE;EACX,CAAC;EACDC,UAAU,EAAE;IACVC,aAAa,EAAE,cAAc;IAC7BC,KAAK,EAAE;MACLC,KAAK,EAAE,cAAc;MACrBC,MAAM,EAAE;IACV,CAAC;IACDD,KAAK,EAAE,aAAa;IACpBC,MAAM,EAAE,YAAY;IACpBC,KAAK,EAAE;MACLC,WAAW,EAAE;IACf;EACF,CAAC;EACDC,UAAU,EAAE,YAAY;EACxBC,QAAQ,EAAE;IACRC,IAAI,EAAE,SAAS;IACfC,IAAI,EAAE,SAAS;IACf3B,SAAS,EAAE;MACT4B,SAAS,EAAE;IACb;EACF,CAAC;EACDC,QAAQ,EAAE;IACRC,UAAU,EAAE,QAAQ;IACpBC,KAAK,EAAE;EACT,CAAC;EACDT,KAAK,EAAE;IACLU,KAAK,EAAE,WAAW;IAClBC,aAAa,EAAE,sBAAsB;IACrCC,YAAY,EAAE,qBAAqB;IACnCC,GAAG,EAAE;EACP,CAAC;EACDC,SAAS,EAAE;IACTC,OAAO,EAAE,UAAU;IACnBC,WAAW,EAAE;EACf,CAAC;EACDC,UAAU,EAAE;IACVnB,KAAK,EAAE,0BAA0B;IACjCJ,OAAO,EAAE,IAAI;IACbwB,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVC,EAAE,EAAE,IAAI;IACRC,EAAE,EAAE,IAAI;IACRvB,KAAK,EAAE;EACT,CAAC;EACDwB,UAAU,EAAE;IACV5C,SAAS,EAAE;MACT6C,IAAI,EAAE,iBAAiB;MACvBlB,IAAI,EAAE,OAAO;MACbmB,QAAQ,EAAE,OAAO;MACjBC,IAAI,EAAE,YAAY;MAClBC,WAAW,EAAE,gBAAgB;MAC7BC,KAAK,EAAE,YAAY;MACnBC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE;IACPxB,IAAI,EAAE,MAAM;IACZD,IAAI,EAAE;EACR,CAAC;EACD0B,MAAM,EAAE;IACNpD,SAAS,EAAE;MACTqD,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE,YAAY;EACrBC,cAAc,EAAE;IACdC,QAAQ,EAAE,WAAW;IACrBC,KAAK,EAAE;EACT;AACF,CAAC","ignoreList":[]}
1
+ {"version":3,"file":"ja.mjs","names":["badge","open","close","dismiss","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","today","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","fileUpload","browse","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/ja.ts"],"sourcesContent":["export default {\n badge: 'バッジ',\n open: '開く',\n close: '閉じる',\n dismiss: '閉じる',\n confirmEdit: {\n ok: 'OK',\n cancel: 'キャンセル',\n },\n dataIterator: {\n noResultsText: '検索結果が見つかりません。',\n loadingText: '項目をロード中です...',\n },\n dataTable: {\n itemsPerPageText: '1ページあたりの行数:',\n ariaLabel: {\n sortDescending: '降順の並び替え。',\n sortAscending: '昇順の並び替え。',\n sortNone: 'ソートされていません。',\n activateNone: 'ソートを削除するには有効にしてください。',\n activateDescending: '降順の並び替えのためには有効にしてください。',\n activateAscending: '昇順のソートのためには有効にしてください。',\n },\n sortBy: 'ソート方式',\n },\n dataFooter: {\n itemsPerPageText: '1ページあたりの件数:',\n itemsPerPageAll: 'すべて',\n nextPage: '次のページ',\n prevPage: '前のページ',\n firstPage: '最初のページ',\n lastPage: '最後のページ',\n pageText: '{0}-{1} 件目 / {2}件',\n },\n dateRangeInput: {\n divider: 'to',\n },\n datePicker: {\n itemsSelected: '{0} 選択済',\n range: {\n title: 'Select dates',\n header: 'Enter dates',\n },\n title: '日付を選択',\n header: '日付を入力',\n input: {\n placeholder: '日付を入力',\n },\n },\n noDataText: 'データはありません。',\n carousel: {\n prev: '前のビジュアル',\n next: '次のビジュアル',\n ariaLabel: {\n delimiter: 'カルーセルのスライド {0}件目 / {1}件',\n },\n },\n calendar: {\n moreEvents: 'さらに{0}',\n today: '今日',\n },\n input: {\n clear: 'クリア {0}',\n prependAction: '{0} prepended action',\n appendAction: '{0} appended action',\n otp: '{0}番目のワンタイムパスワードを入力してください',\n },\n fileInput: {\n counter: '{0} ファイル',\n counterSize: '{0} ファイル (合計 {1})',\n },\n fileUpload: {\n title: 'ここにファイルをドラッグ&ドロップ',\n divider: 'または',\n browse: 'ファイルを選択',\n },\n timePicker: {\n am: 'AM',\n pm: 'PM',\n title: '時間を選択',\n },\n pagination: {\n ariaLabel: {\n root: 'ページネーションナビゲーション',\n next: '次のページ',\n previous: '前のページ',\n page: '{0}ページ目に移動',\n currentPage: '現在のページ、ページ {0}',\n first: 'First page',\n last: 'Last page',\n },\n },\n stepper: {\n next: '次へ',\n prev: '前へ',\n },\n rating: {\n ariaLabel: {\n item: '評価 {1} のうち {0}',\n },\n },\n loading: 'ロード中...',\n infiniteScroll: {\n loadMore: 'さらに読み込む',\n empty: 'データがありません',\n },\n}\n"],"mappings":"AAAA,eAAe;EACbA,KAAK,EAAE,KAAK;EACZC,IAAI,EAAE,IAAI;EACVC,KAAK,EAAE,KAAK;EACZC,OAAO,EAAE,KAAK;EACdC,WAAW,EAAE;IACXC,EAAE,EAAE,IAAI;IACRC,MAAM,EAAE;EACV,CAAC;EACDC,YAAY,EAAE;IACZC,aAAa,EAAE,eAAe;IAC9BC,WAAW,EAAE;EACf,CAAC;EACDC,SAAS,EAAE;IACTC,gBAAgB,EAAE,aAAa;IAC/BC,SAAS,EAAE;MACTC,cAAc,EAAE,UAAU;MAC1BC,aAAa,EAAE,UAAU;MACzBC,QAAQ,EAAE,aAAa;MACvBC,YAAY,EAAE,sBAAsB;MACpCC,kBAAkB,EAAE,wBAAwB;MAC5CC,iBAAiB,EAAE;IACrB,CAAC;IACDC,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVT,gBAAgB,EAAE,aAAa;IAC/BU,eAAe,EAAE,KAAK;IACtBC,QAAQ,EAAE,OAAO;IACjBC,QAAQ,EAAE,OAAO;IACjBC,SAAS,EAAE,QAAQ;IACnBC,QAAQ,EAAE,QAAQ;IAClBC,QAAQ,EAAE;EACZ,CAAC;EACDC,cAAc,EAAE;IACdC,OAAO,EAAE;EACX,CAAC;EACDC,UAAU,EAAE;IACVC,aAAa,EAAE,SAAS;IACxBC,KAAK,EAAE;MACLC,KAAK,EAAE,cAAc;MACrBC,MAAM,EAAE;IACV,CAAC;IACDD,KAAK,EAAE,OAAO;IACdC,MAAM,EAAE,OAAO;IACfC,KAAK,EAAE;MACLC,WAAW,EAAE;IACf;EACF,CAAC;EACDC,UAAU,EAAE,YAAY;EACxBC,QAAQ,EAAE;IACRC,IAAI,EAAE,SAAS;IACfC,IAAI,EAAE,SAAS;IACf3B,SAAS,EAAE;MACT4B,SAAS,EAAE;IACb;EACF,CAAC;EACDC,QAAQ,EAAE;IACRC,UAAU,EAAE,QAAQ;IACpBC,KAAK,EAAE;EACT,CAAC;EACDT,KAAK,EAAE;IACLU,KAAK,EAAE,SAAS;IAChBC,aAAa,EAAE,sBAAsB;IACrCC,YAAY,EAAE,qBAAqB;IACnCC,GAAG,EAAE;EACP,CAAC;EACDC,SAAS,EAAE;IACTC,OAAO,EAAE,UAAU;IACnBC,WAAW,EAAE;EACf,CAAC;EACDC,UAAU,EAAE;IACVnB,KAAK,EAAE,mBAAmB;IAC1BJ,OAAO,EAAE,KAAK;IACdwB,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVC,EAAE,EAAE,IAAI;IACRC,EAAE,EAAE,IAAI;IACRvB,KAAK,EAAE;EACT,CAAC;EACDwB,UAAU,EAAE;IACV5C,SAAS,EAAE;MACT6C,IAAI,EAAE,iBAAiB;MACvBlB,IAAI,EAAE,OAAO;MACbmB,QAAQ,EAAE,OAAO;MACjBC,IAAI,EAAE,YAAY;MAClBC,WAAW,EAAE,gBAAgB;MAC7BC,KAAK,EAAE,YAAY;MACnBC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE;IACPxB,IAAI,EAAE,IAAI;IACVD,IAAI,EAAE;EACR,CAAC;EACD0B,MAAM,EAAE;IACNpD,SAAS,EAAE;MACTqD,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE,SAAS;EAClBC,cAAc,EAAE;IACdC,QAAQ,EAAE,SAAS;IACnBC,KAAK,EAAE;EACT;AACF,CAAC","ignoreList":[]}
@@ -10,7 +10,7 @@
10
10
  // If the last key is a map already
11
11
  // Warn the user we will be overriding it with $value
12
12
  @if meta.type-of(list.nth($keys, -1)) == "map"
13
- @warn "The last key you specified is a map; it will be overrided with `#{$value}`."
13
+ @warn "The last key you specified is a map; it will be override with `#{$value}`."
14
14
 
15
15
  // If $keys is a single key
16
16
  // Just merge and return
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vuetify/nightly",
3
3
  "description": "Vue Material Component Framework",
4
- "version": "3.7.13-master.2025-02-21",
4
+ "version": "3.7.13-master.2025-02-25",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"