@vuetify/nightly 3.9.2-master.2025-07-23 → 3.9.2-master.2025-07-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 (246) hide show
  1. package/CHANGELOG.md +15 -3
  2. package/dist/_component-variables-labs.sass +3 -1
  3. package/dist/json/attributes.json +4029 -3617
  4. package/dist/json/importMap-labs.json +38 -14
  5. package/dist/json/importMap.json +148 -148
  6. package/dist/json/tags.json +133 -0
  7. package/dist/json/web-types.json +13484 -11867
  8. package/dist/vuetify-labs.cjs +1525 -126
  9. package/dist/vuetify-labs.css +5448 -5007
  10. package/dist/vuetify-labs.d.ts +7670 -974
  11. package/dist/vuetify-labs.esm.js +1526 -127
  12. package/dist/vuetify-labs.esm.js.map +1 -1
  13. package/dist/vuetify-labs.js +1525 -126
  14. package/dist/vuetify-labs.min.css +2 -2
  15. package/dist/vuetify.cjs +74 -34
  16. package/dist/vuetify.cjs.map +1 -1
  17. package/dist/vuetify.css +3415 -3415
  18. package/dist/vuetify.d.ts +86 -61
  19. package/dist/vuetify.esm.js +74 -34
  20. package/dist/vuetify.esm.js.map +1 -1
  21. package/dist/vuetify.js +74 -34
  22. package/dist/vuetify.js.map +1 -1
  23. package/dist/vuetify.min.css +2 -2
  24. package/dist/vuetify.min.js +976 -977
  25. package/dist/vuetify.min.js.map +1 -1
  26. package/lib/components/VBottomSheet/VBottomSheet.d.ts +6 -6
  27. package/lib/components/VDialog/VDialog.d.ts +6 -6
  28. package/lib/components/VOverlay/VOverlay.js +1 -0
  29. package/lib/components/VOverlay/VOverlay.js.map +1 -1
  30. package/lib/components/VOverlay/locationStrategies.js +16 -10
  31. package/lib/components/VOverlay/locationStrategies.js.map +1 -1
  32. package/lib/components/VOverlay/scrollStrategies.d.ts +1 -0
  33. package/lib/components/VOverlay/scrollStrategies.js +6 -4
  34. package/lib/components/VOverlay/scrollStrategies.js.map +1 -1
  35. package/lib/components/VRangeSlider/VRangeSlider.d.ts +13 -0
  36. package/lib/components/VSlider/VSlider.d.ts +13 -0
  37. package/lib/components/VSlider/VSlider.js +3 -1
  38. package/lib/components/VSlider/VSlider.js.map +1 -1
  39. package/lib/components/VSlider/VSliderThumb.d.ts +13 -0
  40. package/lib/components/VSlider/VSliderThumb.js +2 -0
  41. package/lib/components/VSlider/VSliderThumb.js.map +1 -1
  42. package/lib/components/VSlider/slider.d.ts +6 -0
  43. package/lib/components/VSlider/slider.js +2 -0
  44. package/lib/components/VSlider/slider.js.map +1 -1
  45. package/lib/components/index.js +2 -2
  46. package/lib/components/index.js.map +1 -1
  47. package/lib/composables/goto.d.ts +3 -2
  48. package/lib/composables/goto.js +2 -16
  49. package/lib/composables/goto.js.map +1 -1
  50. package/lib/composables/reveal.d.ts +36 -0
  51. package/lib/composables/reveal.js +30 -0
  52. package/lib/composables/reveal.js.map +1 -0
  53. package/lib/entry-bundler.js +1 -1
  54. package/lib/framework.d.ts +142 -133
  55. package/lib/framework.js +1 -1
  56. package/lib/iconsets/fa.js +9 -1
  57. package/lib/iconsets/fa.js.map +1 -1
  58. package/lib/iconsets/fa4.js +9 -1
  59. package/lib/iconsets/fa4.js.map +1 -1
  60. package/lib/iconsets/md.js +9 -1
  61. package/lib/iconsets/md.js.map +1 -1
  62. package/lib/iconsets/mdi-svg.js +9 -1
  63. package/lib/iconsets/mdi-svg.js.map +1 -1
  64. package/lib/iconsets/mdi.js +9 -1
  65. package/lib/iconsets/mdi.js.map +1 -1
  66. package/lib/labs/VPie/VPie.css +105 -0
  67. package/lib/labs/VPie/VPie.d.ts +891 -0
  68. package/lib/labs/VPie/VPie.js +291 -0
  69. package/lib/labs/VPie/VPie.js.map +1 -0
  70. package/lib/labs/VPie/VPie.sass +109 -0
  71. package/lib/labs/VPie/VPieSegment.d.ts +310 -0
  72. package/lib/labs/VPie/VPieSegment.js +103 -0
  73. package/lib/labs/VPie/VPieSegment.js.map +1 -0
  74. package/lib/labs/VPie/VPieTooltip.d.ts +279 -0
  75. package/lib/labs/VPie/VPieTooltip.js +84 -0
  76. package/lib/labs/VPie/VPieTooltip.js.map +1 -0
  77. package/lib/labs/VPie/_variables.scss +11 -0
  78. package/lib/labs/VPie/index.d.ts +3 -0
  79. package/lib/labs/VPie/index.js +4 -0
  80. package/lib/labs/VPie/index.js.map +1 -0
  81. package/lib/labs/VPie/types.d.ts +16 -0
  82. package/lib/labs/VPie/types.js +2 -0
  83. package/lib/labs/VPie/types.js.map +1 -0
  84. package/lib/labs/VPie/utils.d.ts +23 -0
  85. package/lib/labs/VPie/utils.js +49 -0
  86. package/lib/labs/VPie/utils.js.map +1 -0
  87. package/lib/labs/VVideo/VVideo.css +322 -0
  88. package/lib/labs/VVideo/VVideo.d.ts +6932 -0
  89. package/lib/labs/VVideo/VVideo.js +424 -0
  90. package/lib/labs/VVideo/VVideo.js.map +1 -0
  91. package/lib/labs/VVideo/VVideo.sass +304 -0
  92. package/lib/labs/VVideo/VVideoControls.d.ts +3524 -0
  93. package/lib/labs/VVideo/VVideoControls.js +236 -0
  94. package/lib/labs/VVideo/VVideoControls.js.map +1 -0
  95. package/lib/labs/VVideo/VVideoVolume.d.ts +3088 -0
  96. package/lib/labs/VVideo/VVideoVolume.js +94 -0
  97. package/lib/labs/VVideo/VVideoVolume.js.map +1 -0
  98. package/lib/labs/VVideo/_variables.scss +58 -0
  99. package/lib/labs/VVideo/index.d.ts +3 -0
  100. package/lib/labs/VVideo/index.js +4 -0
  101. package/lib/labs/VVideo/index.js.map +1 -0
  102. package/lib/labs/components.d.ts +2 -0
  103. package/lib/labs/components.js +2 -0
  104. package/lib/labs/components.js.map +1 -1
  105. package/lib/locale/af.d.ts +11 -0
  106. package/lib/locale/af.js +11 -0
  107. package/lib/locale/af.js.map +1 -1
  108. package/lib/locale/ar.d.ts +11 -0
  109. package/lib/locale/ar.js +11 -0
  110. package/lib/locale/ar.js.map +1 -1
  111. package/lib/locale/az.d.ts +11 -0
  112. package/lib/locale/az.js +11 -0
  113. package/lib/locale/az.js.map +1 -1
  114. package/lib/locale/bg.d.ts +11 -0
  115. package/lib/locale/bg.js +11 -0
  116. package/lib/locale/bg.js.map +1 -1
  117. package/lib/locale/ca.d.ts +11 -0
  118. package/lib/locale/ca.js +11 -0
  119. package/lib/locale/ca.js.map +1 -1
  120. package/lib/locale/ckb.d.ts +11 -0
  121. package/lib/locale/ckb.js +11 -0
  122. package/lib/locale/ckb.js.map +1 -1
  123. package/lib/locale/cs.d.ts +11 -0
  124. package/lib/locale/cs.js +11 -0
  125. package/lib/locale/cs.js.map +1 -1
  126. package/lib/locale/da.d.ts +11 -0
  127. package/lib/locale/da.js +11 -0
  128. package/lib/locale/da.js.map +1 -1
  129. package/lib/locale/de.d.ts +11 -0
  130. package/lib/locale/de.js +11 -0
  131. package/lib/locale/de.js.map +1 -1
  132. package/lib/locale/el.d.ts +11 -0
  133. package/lib/locale/el.js +11 -0
  134. package/lib/locale/el.js.map +1 -1
  135. package/lib/locale/en.d.ts +11 -0
  136. package/lib/locale/en.js +11 -0
  137. package/lib/locale/en.js.map +1 -1
  138. package/lib/locale/es.d.ts +11 -0
  139. package/lib/locale/es.js +11 -0
  140. package/lib/locale/es.js.map +1 -1
  141. package/lib/locale/et.d.ts +11 -0
  142. package/lib/locale/et.js +11 -0
  143. package/lib/locale/et.js.map +1 -1
  144. package/lib/locale/fa.d.ts +11 -0
  145. package/lib/locale/fa.js +11 -0
  146. package/lib/locale/fa.js.map +1 -1
  147. package/lib/locale/fi.d.ts +11 -0
  148. package/lib/locale/fi.js +11 -0
  149. package/lib/locale/fi.js.map +1 -1
  150. package/lib/locale/fr.d.ts +11 -0
  151. package/lib/locale/fr.js +11 -0
  152. package/lib/locale/fr.js.map +1 -1
  153. package/lib/locale/he.d.ts +11 -0
  154. package/lib/locale/he.js +11 -0
  155. package/lib/locale/he.js.map +1 -1
  156. package/lib/locale/hr.d.ts +11 -0
  157. package/lib/locale/hr.js +11 -0
  158. package/lib/locale/hr.js.map +1 -1
  159. package/lib/locale/hu.d.ts +11 -0
  160. package/lib/locale/hu.js +11 -0
  161. package/lib/locale/hu.js.map +1 -1
  162. package/lib/locale/id.d.ts +11 -0
  163. package/lib/locale/id.js +11 -0
  164. package/lib/locale/id.js.map +1 -1
  165. package/lib/locale/it.d.ts +11 -0
  166. package/lib/locale/it.js +11 -0
  167. package/lib/locale/it.js.map +1 -1
  168. package/lib/locale/ja.d.ts +11 -0
  169. package/lib/locale/ja.js +11 -0
  170. package/lib/locale/ja.js.map +1 -1
  171. package/lib/locale/km.d.ts +11 -0
  172. package/lib/locale/km.js +11 -0
  173. package/lib/locale/km.js.map +1 -1
  174. package/lib/locale/ko.d.ts +11 -0
  175. package/lib/locale/ko.js +11 -0
  176. package/lib/locale/ko.js.map +1 -1
  177. package/lib/locale/lt.d.ts +11 -0
  178. package/lib/locale/lt.js +11 -0
  179. package/lib/locale/lt.js.map +1 -1
  180. package/lib/locale/lv.d.ts +11 -0
  181. package/lib/locale/lv.js +11 -0
  182. package/lib/locale/lv.js.map +1 -1
  183. package/lib/locale/nl.d.ts +11 -0
  184. package/lib/locale/nl.js +11 -0
  185. package/lib/locale/nl.js.map +1 -1
  186. package/lib/locale/no.d.ts +11 -0
  187. package/lib/locale/no.js +11 -0
  188. package/lib/locale/no.js.map +1 -1
  189. package/lib/locale/pl.d.ts +11 -0
  190. package/lib/locale/pl.js +11 -0
  191. package/lib/locale/pl.js.map +1 -1
  192. package/lib/locale/pt.d.ts +11 -0
  193. package/lib/locale/pt.js +11 -0
  194. package/lib/locale/pt.js.map +1 -1
  195. package/lib/locale/ro.d.ts +11 -0
  196. package/lib/locale/ro.js +11 -0
  197. package/lib/locale/ro.js.map +1 -1
  198. package/lib/locale/ru.d.ts +11 -0
  199. package/lib/locale/ru.js +11 -0
  200. package/lib/locale/ru.js.map +1 -1
  201. package/lib/locale/sk.d.ts +11 -0
  202. package/lib/locale/sk.js +11 -0
  203. package/lib/locale/sk.js.map +1 -1
  204. package/lib/locale/sl.d.ts +11 -0
  205. package/lib/locale/sl.js +11 -0
  206. package/lib/locale/sl.js.map +1 -1
  207. package/lib/locale/sr-Cyrl.d.ts +11 -0
  208. package/lib/locale/sr-Cyrl.js +11 -0
  209. package/lib/locale/sr-Cyrl.js.map +1 -1
  210. package/lib/locale/sr-Latn.d.ts +11 -0
  211. package/lib/locale/sr-Latn.js +11 -0
  212. package/lib/locale/sr-Latn.js.map +1 -1
  213. package/lib/locale/sv.d.ts +11 -0
  214. package/lib/locale/sv.js +11 -0
  215. package/lib/locale/sv.js.map +1 -1
  216. package/lib/locale/th.d.ts +11 -0
  217. package/lib/locale/th.js +11 -0
  218. package/lib/locale/th.js.map +1 -1
  219. package/lib/locale/tr.d.ts +11 -0
  220. package/lib/locale/tr.js +11 -0
  221. package/lib/locale/tr.js.map +1 -1
  222. package/lib/locale/uk.d.ts +11 -0
  223. package/lib/locale/uk.js +11 -0
  224. package/lib/locale/uk.js.map +1 -1
  225. package/lib/locale/vi.d.ts +11 -0
  226. package/lib/locale/vi.js +11 -0
  227. package/lib/locale/vi.js.map +1 -1
  228. package/lib/locale/zh-Hans.d.ts +11 -0
  229. package/lib/locale/zh-Hans.js +11 -0
  230. package/lib/locale/zh-Hans.js.map +1 -1
  231. package/lib/locale/zh-Hant.d.ts +11 -0
  232. package/lib/locale/zh-Hant.js +11 -0
  233. package/lib/locale/zh-Hant.js.map +1 -1
  234. package/lib/util/easing.d.ts +22 -0
  235. package/lib/util/easing.js +53 -0
  236. package/lib/util/easing.js.map +1 -1
  237. package/lib/util/index.d.ts +1 -0
  238. package/lib/util/index.js +1 -0
  239. package/lib/util/index.js.map +1 -1
  240. package/lib/util/svg-arc-corners.d.ts +4 -0
  241. package/lib/util/svg-arc-corners.js +73 -0
  242. package/lib/util/svg-arc-corners.js.map +1 -0
  243. package/lib/util/timeUtils.d.ts +1 -0
  244. package/lib/util/timeUtils.js +4 -0
  245. package/lib/util/timeUtils.js.map +1 -0
  246. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import * as vue from 'vue';
2
- import { ShallowRef, Ref, ComponentPublicInstance, DeepReadonly, FunctionalComponent, ComponentPropsOptions, ExtractPropTypes, PropType, CSSProperties, EffectScope, nextTick, VNodeProps, App } from 'vue';
2
+ import { ShallowRef, Ref, DeepReadonly, ComponentPublicInstance, FunctionalComponent, ComponentPropsOptions, ExtractPropTypes, PropType, CSSProperties, EffectScope, nextTick, VNodeProps, App } from 'vue';
3
3
  import * as _vue_reactivity from '@vue/reactivity';
4
4
 
5
5
  interface LocaleMessages {
@@ -36,91 +36,6 @@ declare function useRtl(): {
36
36
  rtlClasses: Ref<string, string>;
37
37
  };
38
38
 
39
- interface GoToInstance {
40
- rtl: Ref<boolean>;
41
- options: InternalGoToOptions;
42
- }
43
- interface InternalGoToOptions {
44
- container: ComponentPublicInstance | HTMLElement | string;
45
- duration: number;
46
- layout: boolean;
47
- offset: number;
48
- easing: string | ((t: number) => number);
49
- patterns: Record<string, (t: number) => number>;
50
- }
51
- type GoToOptions = Partial<InternalGoToOptions>;
52
- declare function useGoTo(_options?: GoToOptions): {
53
- (target: ComponentPublicInstance | HTMLElement | string | number, options?: Partial<GoToOptions>): Promise<unknown>;
54
- horizontal(target: ComponentPublicInstance | HTMLElement | string | number, options?: Partial<GoToOptions>): Promise<unknown>;
55
- };
56
-
57
- interface DateAdapter<T = unknown> {
58
- date(value?: any): T | null;
59
- format(date: T, formatString: string): string;
60
- toJsDate(value: T): Date;
61
- parseISO(date: string): T;
62
- toISO(date: T): string;
63
- startOfDay(date: T): T;
64
- endOfDay(date: T): T;
65
- startOfWeek(date: T, firstDayOfWeek?: number | string): T;
66
- endOfWeek(date: T): T;
67
- startOfMonth(date: T): T;
68
- endOfMonth(date: T): T;
69
- startOfYear(date: T): T;
70
- endOfYear(date: T): T;
71
- isAfter(date: T, comparing: T): boolean;
72
- isAfterDay(date: T, comparing: T): boolean;
73
- isSameDay(date: T, comparing: T): boolean;
74
- isSameMonth(date: T, comparing: T): boolean;
75
- isSameYear(date: T, comparing: T): boolean;
76
- isBefore(date: T, comparing: T): boolean;
77
- isEqual(date: T, comparing: T): boolean;
78
- isValid(date: any): boolean;
79
- isWithinRange(date: T, range: [T, T]): boolean;
80
- addMinutes(date: T, amount: number): T;
81
- addHours(date: T, amount: number): T;
82
- addDays(date: T, amount: number): T;
83
- addWeeks(date: T, amount: number): T;
84
- addMonths(date: T, amount: number): T;
85
- getYear(date: T): number;
86
- setYear(date: T, year: number): T;
87
- getDiff(date: T, comparing: T | string, unit?: string): number;
88
- getWeekArray(date: T, firstDayOfWeek?: number | string): T[][];
89
- getWeekdays(firstDayOfWeek?: number | string, weekdayFormat?: 'long' | 'short' | 'narrow'): string[];
90
- getWeek(date: T, firstDayOfWeek?: number | string, firstWeekMinSize?: number): number;
91
- getMonth(date: T): number;
92
- setMonth(date: T, month: number): T;
93
- getDate(date: T): number;
94
- setDate(date: T, day: number): T;
95
- getNextMonth(date: T): T;
96
- getPreviousMonth(date: T): T;
97
- getHours(date: T): number;
98
- setHours(date: T, hours: number): T;
99
- getMinutes(date: T): number;
100
- setMinutes(date: T, minutes: number): T;
101
- }
102
-
103
- interface DateInstance extends DateModule.InternalAdapter {
104
- locale?: any;
105
- }
106
- /** Supports module augmentation to specify date adapter types */
107
- declare namespace DateModule {
108
- interface Adapter {
109
- }
110
- export type InternalAdapter = {} extends Adapter ? DateAdapter : Adapter;
111
-
112
- }
113
- type InternalDateOptions = {
114
- adapter: (new (options: {
115
- locale: any;
116
- formats?: any;
117
- }) => DateInstance) | DateInstance;
118
- formats?: Record<string, any>;
119
- locale: Record<string, any>;
120
- };
121
- type DateOptions = Partial<InternalDateOptions>;
122
- declare function useDate(): DateInstance;
123
-
124
39
  declare const block: readonly ["top", "bottom"];
125
40
  declare const inline: readonly ["start", "end", "left", "right"];
126
41
  type Tblock = typeof block[number];
@@ -218,6 +133,8 @@ type JSXComponent<Props = any> = {
218
133
 
219
134
  type ClassValue = any;
220
135
 
136
+ type EasingFunction = (n: number) => number;
137
+
221
138
  declare function deepEqual(a: any, b: any): boolean;
222
139
  type SelectItemKey<T = Record<string, any>> = boolean | null | undefined | string | readonly (string | number)[] | ((item: T, fallback?: any) => any);
223
140
  type MaybeRef<T> = T | Ref<T>;
@@ -229,6 +146,91 @@ type TemplateRef = {
229
146
  readonly el: HTMLElement | undefined;
230
147
  };
231
148
 
149
+ interface GoToInstance {
150
+ rtl: Ref<boolean>;
151
+ options: InternalGoToOptions;
152
+ }
153
+ interface InternalGoToOptions {
154
+ container: ComponentPublicInstance | HTMLElement | string;
155
+ duration: number;
156
+ layout: boolean;
157
+ offset: number;
158
+ easing: string | EasingFunction;
159
+ patterns: Record<string, EasingFunction>;
160
+ }
161
+ type GoToOptions = Partial<InternalGoToOptions>;
162
+ declare function useGoTo(_options?: GoToOptions): {
163
+ (target: ComponentPublicInstance | HTMLElement | string | number, options?: Partial<GoToOptions>): Promise<unknown>;
164
+ horizontal(target: ComponentPublicInstance | HTMLElement | string | number, options?: Partial<GoToOptions>): Promise<unknown>;
165
+ };
166
+
167
+ interface DateAdapter<T = unknown> {
168
+ date(value?: any): T | null;
169
+ format(date: T, formatString: string): string;
170
+ toJsDate(value: T): Date;
171
+ parseISO(date: string): T;
172
+ toISO(date: T): string;
173
+ startOfDay(date: T): T;
174
+ endOfDay(date: T): T;
175
+ startOfWeek(date: T, firstDayOfWeek?: number | string): T;
176
+ endOfWeek(date: T): T;
177
+ startOfMonth(date: T): T;
178
+ endOfMonth(date: T): T;
179
+ startOfYear(date: T): T;
180
+ endOfYear(date: T): T;
181
+ isAfter(date: T, comparing: T): boolean;
182
+ isAfterDay(date: T, comparing: T): boolean;
183
+ isSameDay(date: T, comparing: T): boolean;
184
+ isSameMonth(date: T, comparing: T): boolean;
185
+ isSameYear(date: T, comparing: T): boolean;
186
+ isBefore(date: T, comparing: T): boolean;
187
+ isEqual(date: T, comparing: T): boolean;
188
+ isValid(date: any): boolean;
189
+ isWithinRange(date: T, range: [T, T]): boolean;
190
+ addMinutes(date: T, amount: number): T;
191
+ addHours(date: T, amount: number): T;
192
+ addDays(date: T, amount: number): T;
193
+ addWeeks(date: T, amount: number): T;
194
+ addMonths(date: T, amount: number): T;
195
+ getYear(date: T): number;
196
+ setYear(date: T, year: number): T;
197
+ getDiff(date: T, comparing: T | string, unit?: string): number;
198
+ getWeekArray(date: T, firstDayOfWeek?: number | string): T[][];
199
+ getWeekdays(firstDayOfWeek?: number | string, weekdayFormat?: 'long' | 'short' | 'narrow'): string[];
200
+ getWeek(date: T, firstDayOfWeek?: number | string, firstWeekMinSize?: number): number;
201
+ getMonth(date: T): number;
202
+ setMonth(date: T, month: number): T;
203
+ getDate(date: T): number;
204
+ setDate(date: T, day: number): T;
205
+ getNextMonth(date: T): T;
206
+ getPreviousMonth(date: T): T;
207
+ getHours(date: T): number;
208
+ setHours(date: T, hours: number): T;
209
+ getMinutes(date: T): number;
210
+ setMinutes(date: T, minutes: number): T;
211
+ }
212
+
213
+ interface DateInstance extends DateModule.InternalAdapter {
214
+ locale?: any;
215
+ }
216
+ /** Supports module augmentation to specify date adapter types */
217
+ declare namespace DateModule {
218
+ interface Adapter {
219
+ }
220
+ export type InternalAdapter = {} extends Adapter ? DateAdapter : Adapter;
221
+
222
+ }
223
+ type InternalDateOptions = {
224
+ adapter: (new (options: {
225
+ locale: any;
226
+ formats?: any;
227
+ }) => DateInstance) | DateInstance;
228
+ formats?: Record<string, any>;
229
+ locale: Record<string, any>;
230
+ };
231
+ type DateOptions = Partial<InternalDateOptions>;
232
+ declare function useDate(): DateInstance;
233
+
232
234
  type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
233
235
  declare const IconValue: PropType<IconValue>;
234
236
  interface IconAliases {
@@ -686,6 +688,7 @@ interface ScrollStrategyData {
686
688
  root: Ref<HTMLElement | undefined>;
687
689
  contentEl: Ref<HTMLElement | undefined>;
688
690
  targetEl: Ref<HTMLElement | undefined>;
691
+ target: Ref<HTMLElement | [x: number, y: number] | undefined>;
689
692
  isActive: Ref<boolean>;
690
693
  updateLocation: Ref<((e: Event) => void) | undefined>;
691
694
  }
@@ -2602,39 +2605,40 @@ declare module 'vue' {
2602
2605
  }
2603
2606
  export interface GlobalComponents {
2604
2607
  VApp: typeof import('vuetify/components')['VApp']
2605
- VAlert: typeof import('vuetify/components')['VAlert']
2606
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2607
2608
  VAppBar: typeof import('vuetify/components')['VAppBar']
2608
2609
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
2609
2610
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
2610
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2611
2611
  VAvatar: typeof import('vuetify/components')['VAvatar']
2612
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2613
+ VAlert: typeof import('vuetify/components')['VAlert']
2614
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2612
2615
  VBadge: typeof import('vuetify/components')['VBadge']
2613
2616
  VBanner: typeof import('vuetify/components')['VBanner']
2614
2617
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
2615
2618
  VBannerText: typeof import('vuetify/components')['VBannerText']
2619
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2616
2620
  VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2617
2621
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
2618
2622
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
2619
2623
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
2620
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2621
2624
  VBtn: typeof import('vuetify/components')['VBtn']
2622
2625
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2626
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2623
2627
  VCard: typeof import('vuetify/components')['VCard']
2624
2628
  VCardActions: typeof import('vuetify/components')['VCardActions']
2625
2629
  VCardItem: typeof import('vuetify/components')['VCardItem']
2626
2630
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
2627
2631
  VCardText: typeof import('vuetify/components')['VCardText']
2628
2632
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
2629
- VChip: typeof import('vuetify/components')['VChip']
2630
- VCode: typeof import('vuetify/components')['VCode']
2631
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
2632
- VCounter: typeof import('vuetify/components')['VCounter']
2633
2633
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
2634
2634
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2635
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2636
2635
  VCarousel: typeof import('vuetify/components')['VCarousel']
2637
2636
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2637
+ VChip: typeof import('vuetify/components')['VChip']
2638
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
2639
+ VCode: typeof import('vuetify/components')['VCode']
2640
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
2641
+ VCounter: typeof import('vuetify/components')['VCounter']
2638
2642
  VDataTable: typeof import('vuetify/components')['VDataTable']
2639
2643
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
2640
2644
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -2642,34 +2646,35 @@ declare module 'vue' {
2642
2646
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
2643
2647
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
2644
2648
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
2645
- VDialog: typeof import('vuetify/components')['VDialog']
2649
+ VCombobox: typeof import('vuetify/components')['VCombobox']
2646
2650
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
2647
2651
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
2648
2652
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
2649
2653
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
2650
2654
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
2651
2655
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
2652
- VDivider: typeof import('vuetify/components')['VDivider']
2653
- VEmptyState: typeof import('vuetify/components')['VEmptyState']
2656
+ VDialog: typeof import('vuetify/components')['VDialog']
2654
2657
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
2655
2658
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
2656
2659
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
2657
2660
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
2658
2661
  VField: typeof import('vuetify/components')['VField']
2659
2662
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
2660
- VFileInput: typeof import('vuetify/components')['VFileInput']
2661
2663
  VFab: typeof import('vuetify/components')['VFab']
2664
+ VDivider: typeof import('vuetify/components')['VDivider']
2665
+ VFileInput: typeof import('vuetify/components')['VFileInput']
2662
2666
  VFooter: typeof import('vuetify/components')['VFooter']
2667
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2668
+ VEmptyState: typeof import('vuetify/components')['VEmptyState']
2669
+ VImg: typeof import('vuetify/components')['VImg']
2663
2670
  VIcon: typeof import('vuetify/components')['VIcon']
2664
2671
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
2665
2672
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
2666
2673
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
2667
2674
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
2668
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2669
- VImg: typeof import('vuetify/components')['VImg']
2670
2675
  VInput: typeof import('vuetify/components')['VInput']
2671
- VKbd: typeof import('vuetify/components')['VKbd']
2672
2676
  VLabel: typeof import('vuetify/components')['VLabel']
2677
+ VKbd: typeof import('vuetify/components')['VKbd']
2673
2678
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
2674
2679
  VItem: typeof import('vuetify/components')['VItem']
2675
2680
  VList: typeof import('vuetify/components')['VList']
@@ -2681,82 +2686,76 @@ declare module 'vue' {
2681
2686
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
2682
2687
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
2683
2688
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
2684
- VMenu: typeof import('vuetify/components')['VMenu']
2685
2689
  VMain: typeof import('vuetify/components')['VMain']
2686
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2690
+ VMenu: typeof import('vuetify/components')['VMenu']
2691
+ VMessages: typeof import('vuetify/components')['VMessages']
2687
2692
  VOverlay: typeof import('vuetify/components')['VOverlay']
2693
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
2688
2694
  VPagination: typeof import('vuetify/components')['VPagination']
2689
- VNumberInput: typeof import('vuetify/components')['VNumberInput']
2690
2695
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
2691
- VMessages: typeof import('vuetify/components')['VMessages']
2692
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2696
+ VNumberInput: typeof import('vuetify/components')['VNumberInput']
2697
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2693
2698
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
2694
2699
  VRating: typeof import('vuetify/components')['VRating']
2695
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2696
2700
  VSelect: typeof import('vuetify/components')['VSelect']
2701
+ VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
2697
2702
  VSheet: typeof import('vuetify/components')['VSheet']
2703
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2698
2704
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2699
- VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
2700
- VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
2701
- VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
2702
2705
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
2703
2706
  VSlider: typeof import('vuetify/components')['VSlider']
2704
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
2705
2707
  VStepper: typeof import('vuetify/components')['VStepper']
2706
2708
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
2707
2709
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
2708
2710
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
2709
2711
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
2710
2712
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
2713
+ VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
2714
+ VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
2711
2715
  VTab: typeof import('vuetify/components')['VTab']
2712
2716
  VTabs: typeof import('vuetify/components')['VTabs']
2713
2717
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
2714
2718
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
2715
- VTable: typeof import('vuetify/components')['VTable']
2719
+ VSwitch: typeof import('vuetify/components')['VSwitch']
2716
2720
  VTextarea: typeof import('vuetify/components')['VTextarea']
2721
+ VTimeline: typeof import('vuetify/components')['VTimeline']
2722
+ VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2717
2723
  VTextField: typeof import('vuetify/components')['VTextField']
2724
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
2718
2725
  VTimePicker: typeof import('vuetify/components')['VTimePicker']
2719
2726
  VTimePickerClock: typeof import('vuetify/components')['VTimePickerClock']
2720
2727
  VTimePickerControls: typeof import('vuetify/components')['VTimePickerControls']
2721
- VSwitch: typeof import('vuetify/components')['VSwitch']
2722
- VTimeline: typeof import('vuetify/components')['VTimeline']
2723
- VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2724
2728
  VToolbar: typeof import('vuetify/components')['VToolbar']
2725
2729
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
2726
2730
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
2731
+ VTooltip: typeof import('vuetify/components')['VTooltip']
2727
2732
  VTreeview: typeof import('vuetify/components')['VTreeview']
2728
2733
  VTreeviewItem: typeof import('vuetify/components')['VTreeviewItem']
2729
2734
  VTreeviewGroup: typeof import('vuetify/components')['VTreeviewGroup']
2730
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
2731
- VTooltip: typeof import('vuetify/components')['VTooltip']
2735
+ VTable: typeof import('vuetify/components')['VTable']
2732
2736
  VWindow: typeof import('vuetify/components')['VWindow']
2733
2737
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
2734
- VCombobox: typeof import('vuetify/components')['VCombobox']
2735
2738
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
2736
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
2737
- VDataIterator: typeof import('vuetify/components')['VDataIterator']
2738
2739
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
2739
- VForm: typeof import('vuetify/components')['VForm']
2740
- VHover: typeof import('vuetify/components')['VHover']
2741
2740
  VContainer: typeof import('vuetify/components')['VContainer']
2742
2741
  VCol: typeof import('vuetify/components')['VCol']
2743
2742
  VRow: typeof import('vuetify/components')['VRow']
2744
2743
  VSpacer: typeof import('vuetify/components')['VSpacer']
2744
+ VHover: typeof import('vuetify/components')['VHover']
2745
2745
  VLayout: typeof import('vuetify/components')['VLayout']
2746
2746
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
2747
- VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2748
2747
  VLazy: typeof import('vuetify/components')['VLazy']
2748
+ VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2749
2749
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
2750
2750
  VParallax: typeof import('vuetify/components')['VParallax']
2751
+ VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
2751
2752
  VRadio: typeof import('vuetify/components')['VRadio']
2752
2753
  VResponsive: typeof import('vuetify/components')['VResponsive']
2753
- VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
2754
2754
  VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
2755
- VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
2756
2755
  VSparkline: typeof import('vuetify/components')['VSparkline']
2757
- VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
2758
- VValidation: typeof import('vuetify/components')['VValidation']
2756
+ VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
2759
2757
  VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
2758
+ VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
2760
2759
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
2761
2760
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
2762
2761
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -2773,25 +2772,35 @@ declare module 'vue' {
2773
2772
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
2774
2773
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
2775
2774
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
2775
+ VValidation: typeof import('vuetify/components')['VValidation']
2776
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2777
+ VDataIterator: typeof import('vuetify/components')['VDataIterator']
2778
+ VForm: typeof import('vuetify/components')['VForm']
2776
2779
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
2777
2780
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
2778
2781
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
2779
2782
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
2780
2783
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
2781
2784
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
2782
- VColorInput: typeof import('vuetify/labs/components')['VColorInput']
2783
- VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2784
- VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2785
+ VPie: typeof import('vuetify/labs/components')['VPie']
2786
+ VPieSegment: typeof import('vuetify/labs/components')['VPieSegment']
2787
+ VPieTooltip: typeof import('vuetify/labs/components')['VPieTooltip']
2785
2788
  VPicker: typeof import('vuetify/labs/components')['VPicker']
2786
2789
  VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2787
- VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2788
2790
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
2789
2791
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
2790
2792
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
2791
- VMaskInput: typeof import('vuetify/labs/components')['VMaskInput']
2792
2793
  VHotkey: typeof import('vuetify/labs/components')['VHotkey']
2794
+ VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2795
+ VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2796
+ VVideo: typeof import('vuetify/labs/components')['VVideo']
2797
+ VVideoControls: typeof import('vuetify/labs/components')['VVideoControls']
2798
+ VVideoVolume: typeof import('vuetify/labs/components')['VVideoVolume']
2793
2799
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
2794
2800
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
2801
+ VMaskInput: typeof import('vuetify/labs/components')['VMaskInput']
2802
+ VColorInput: typeof import('vuetify/labs/components')['VColorInput']
2803
+ VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2795
2804
  }
2796
2805
  export interface GlobalDirectives {
2797
2806
  vClickOutside: typeof import('vuetify/directives')['ClickOutside']
package/lib/framework.js CHANGED
@@ -109,7 +109,7 @@ export function createVuetify() {
109
109
  };
110
110
  });
111
111
  }
112
- export const version = "3.9.2-master.2025-07-23";
112
+ export const version = "3.9.2-master.2025-07-25";
113
113
  createVuetify.version = version;
114
114
 
115
115
  // Vue's inject() can only be used in setup
@@ -56,7 +56,15 @@ const aliases = {
56
56
  arrowdown: 'fas fa-arrow-down',
57
57
  arrowleft: 'fas fa-arrow-left',
58
58
  arrowright: 'fas fa-arrow-right',
59
- backspace: 'fas fa-backspace'
59
+ backspace: 'fas fa-backspace',
60
+ play: 'fas fa-play',
61
+ pause: 'fas fa-pause',
62
+ fullscreen: 'fas fa-fullscreen',
63
+ fullscreenExit: 'fas fa-compress',
64
+ volumeHigh: 'fas fa-volume-high',
65
+ volumeMedium: 'fas fa-volume-low',
66
+ volumeLow: 'fas fa-volume-off',
67
+ volumeOff: 'fas fa-volume-off'
60
68
  };
61
69
  const fa = {
62
70
  component: VClassIcon
@@ -1 +1 @@
1
- {"version":3,"file":"fa.js","names":["VClassIcon","aliases","collapse","complete","cancel","close","delete","clear","success","info","warning","error","prev","next","checkboxOn","checkboxOff","checkboxIndeterminate","delimiter","sortAsc","sortDesc","expand","menu","subgroup","dropdown","radioOn","radioOff","edit","ratingEmpty","ratingFull","ratingHalf","loading","first","last","unfold","file","plus","minus","calendar","treeviewCollapse","treeviewExpand","eyeDropper","upload","color","command","ctrl","shift","alt","space","enter","arrowup","arrowdown","arrowleft","arrowright","backspace","fa","component"],"sources":["../../src/iconsets/fa.ts"],"sourcesContent":["// Composables\nimport { VClassIcon } from '@/composables/icons'\n\n// Types\nimport type { IconAliases, IconSet } from '@/composables/icons'\n\nconst aliases: IconAliases = {\n collapse: 'fas fa-chevron-up',\n complete: 'fas fa-check',\n cancel: 'fas fa-times-circle',\n close: 'fas fa-times',\n delete: 'fas fa-times-circle', // delete (e.g. v-chip close)\n clear: 'fas fa-times-circle', // delete (e.g. v-chip close)\n success: 'fas fa-check-circle',\n info: 'fas fa-info-circle',\n warning: 'fas fa-exclamation',\n error: 'fas fa-exclamation-triangle',\n prev: 'fas fa-chevron-left',\n next: 'fas fa-chevron-right',\n checkboxOn: 'fas fa-check-square',\n checkboxOff: 'far fa-square', // note 'far'\n checkboxIndeterminate: 'fas fa-minus-square',\n delimiter: 'fas fa-circle', // for carousel\n sortAsc: 'fas fa-arrow-up',\n sortDesc: 'fas fa-arrow-down',\n expand: 'fas fa-chevron-down',\n menu: 'fas fa-bars',\n subgroup: 'fas fa-caret-down',\n dropdown: 'fas fa-caret-down',\n radioOn: 'far fa-dot-circle',\n radioOff: 'far fa-circle',\n edit: 'fas fa-edit',\n ratingEmpty: 'far fa-star',\n ratingFull: 'fas fa-star',\n ratingHalf: 'fas fa-star-half',\n loading: 'fas fa-sync',\n first: 'fas fa-step-backward',\n last: 'fas fa-step-forward',\n unfold: 'fas fa-arrows-alt-v',\n file: 'fas fa-paperclip',\n plus: 'fas fa-plus',\n minus: 'fas fa-minus',\n calendar: 'fas fa-calendar',\n treeviewCollapse: 'fas fa-caret-down',\n treeviewExpand: 'fas fa-caret-right',\n eyeDropper: 'fas fa-eye-dropper',\n upload: 'fas fa-cloud-upload-alt',\n color: 'fas fa-palette',\n command: 'fas fa-keyboard',\n ctrl: 'fas fa-keyboard',\n shift: 'fas fa-arrow-up',\n alt: 'fas fa-keyboard',\n space: 'fas fa-square',\n enter: 'fas fa-reply',\n arrowup: 'fas fa-arrow-up',\n arrowdown: 'fas fa-arrow-down',\n arrowleft: 'fas fa-arrow-left',\n arrowright: 'fas fa-arrow-right',\n backspace: 'fas fa-backspace',\n}\n\nconst fa: IconSet = {\n component: VClassIcon,\n}\n\nexport { aliases, fa }\n"],"mappings":"AAAA;AAAA,SACSA,UAAU,mCAEnB;AAGA,MAAMC,OAAoB,GAAG;EAC3BC,QAAQ,EAAE,mBAAmB;EAC7BC,QAAQ,EAAE,cAAc;EACxBC,MAAM,EAAE,qBAAqB;EAC7BC,KAAK,EAAE,cAAc;EACrBC,MAAM,EAAE,qBAAqB;EAAE;EAC/BC,KAAK,EAAE,qBAAqB;EAAE;EAC9BC,OAAO,EAAE,qBAAqB;EAC9BC,IAAI,EAAE,oBAAoB;EAC1BC,OAAO,EAAE,oBAAoB;EAC7BC,KAAK,EAAE,6BAA6B;EACpCC,IAAI,EAAE,qBAAqB;EAC3BC,IAAI,EAAE,sBAAsB;EAC5BC,UAAU,EAAE,qBAAqB;EACjCC,WAAW,EAAE,eAAe;EAAE;EAC9BC,qBAAqB,EAAE,qBAAqB;EAC5CC,SAAS,EAAE,eAAe;EAAE;EAC5BC,OAAO,EAAE,iBAAiB;EAC1BC,QAAQ,EAAE,mBAAmB;EAC7BC,MAAM,EAAE,qBAAqB;EAC7BC,IAAI,EAAE,aAAa;EACnBC,QAAQ,EAAE,mBAAmB;EAC7BC,QAAQ,EAAE,mBAAmB;EAC7BC,OAAO,EAAE,mBAAmB;EAC5BC,QAAQ,EAAE,eAAe;EACzBC,IAAI,EAAE,aAAa;EACnBC,WAAW,EAAE,aAAa;EAC1BC,UAAU,EAAE,aAAa;EACzBC,UAAU,EAAE,kBAAkB;EAC9BC,OAAO,EAAE,aAAa;EACtBC,KAAK,EAAE,sBAAsB;EAC7BC,IAAI,EAAE,qBAAqB;EAC3BC,MAAM,EAAE,qBAAqB;EAC7BC,IAAI,EAAE,kBAAkB;EACxBC,IAAI,EAAE,aAAa;EACnBC,KAAK,EAAE,cAAc;EACrBC,QAAQ,EAAE,iBAAiB;EAC3BC,gBAAgB,EAAE,mBAAmB;EACrCC,cAAc,EAAE,oBAAoB;EACpCC,UAAU,EAAE,oBAAoB;EAChCC,MAAM,EAAE,yBAAyB;EACjCC,KAAK,EAAE,gBAAgB;EACvBC,OAAO,EAAE,iBAAiB;EAC1BC,IAAI,EAAE,iBAAiB;EACvBC,KAAK,EAAE,iBAAiB;EACxBC,GAAG,EAAE,iBAAiB;EACtBC,KAAK,EAAE,eAAe;EACtBC,KAAK,EAAE,cAAc;EACrBC,OAAO,EAAE,iBAAiB;EAC1BC,SAAS,EAAE,mBAAmB;EAC9BC,SAAS,EAAE,mBAAmB;EAC9BC,UAAU,EAAE,oBAAoB;EAChCC,SAAS,EAAE;AACb,CAAC;AAED,MAAMC,EAAW,GAAG;EAClBC,SAAS,EAAEvD;AACb,CAAC;AAED,SAASC,OAAO,EAAEqD,EAAE","ignoreList":[]}
1
+ {"version":3,"file":"fa.js","names":["VClassIcon","aliases","collapse","complete","cancel","close","delete","clear","success","info","warning","error","prev","next","checkboxOn","checkboxOff","checkboxIndeterminate","delimiter","sortAsc","sortDesc","expand","menu","subgroup","dropdown","radioOn","radioOff","edit","ratingEmpty","ratingFull","ratingHalf","loading","first","last","unfold","file","plus","minus","calendar","treeviewCollapse","treeviewExpand","eyeDropper","upload","color","command","ctrl","shift","alt","space","enter","arrowup","arrowdown","arrowleft","arrowright","backspace","play","pause","fullscreen","fullscreenExit","volumeHigh","volumeMedium","volumeLow","volumeOff","fa","component"],"sources":["../../src/iconsets/fa.ts"],"sourcesContent":["// Composables\nimport { VClassIcon } from '@/composables/icons'\n\n// Types\nimport type { IconAliases, IconSet } from '@/composables/icons'\n\nconst aliases: IconAliases = {\n collapse: 'fas fa-chevron-up',\n complete: 'fas fa-check',\n cancel: 'fas fa-times-circle',\n close: 'fas fa-times',\n delete: 'fas fa-times-circle', // delete (e.g. v-chip close)\n clear: 'fas fa-times-circle', // delete (e.g. v-chip close)\n success: 'fas fa-check-circle',\n info: 'fas fa-info-circle',\n warning: 'fas fa-exclamation',\n error: 'fas fa-exclamation-triangle',\n prev: 'fas fa-chevron-left',\n next: 'fas fa-chevron-right',\n checkboxOn: 'fas fa-check-square',\n checkboxOff: 'far fa-square', // note 'far'\n checkboxIndeterminate: 'fas fa-minus-square',\n delimiter: 'fas fa-circle', // for carousel\n sortAsc: 'fas fa-arrow-up',\n sortDesc: 'fas fa-arrow-down',\n expand: 'fas fa-chevron-down',\n menu: 'fas fa-bars',\n subgroup: 'fas fa-caret-down',\n dropdown: 'fas fa-caret-down',\n radioOn: 'far fa-dot-circle',\n radioOff: 'far fa-circle',\n edit: 'fas fa-edit',\n ratingEmpty: 'far fa-star',\n ratingFull: 'fas fa-star',\n ratingHalf: 'fas fa-star-half',\n loading: 'fas fa-sync',\n first: 'fas fa-step-backward',\n last: 'fas fa-step-forward',\n unfold: 'fas fa-arrows-alt-v',\n file: 'fas fa-paperclip',\n plus: 'fas fa-plus',\n minus: 'fas fa-minus',\n calendar: 'fas fa-calendar',\n treeviewCollapse: 'fas fa-caret-down',\n treeviewExpand: 'fas fa-caret-right',\n eyeDropper: 'fas fa-eye-dropper',\n upload: 'fas fa-cloud-upload-alt',\n color: 'fas fa-palette',\n command: 'fas fa-keyboard',\n ctrl: 'fas fa-keyboard',\n shift: 'fas fa-arrow-up',\n alt: 'fas fa-keyboard',\n space: 'fas fa-square',\n enter: 'fas fa-reply',\n arrowup: 'fas fa-arrow-up',\n arrowdown: 'fas fa-arrow-down',\n arrowleft: 'fas fa-arrow-left',\n arrowright: 'fas fa-arrow-right',\n backspace: 'fas fa-backspace',\n play: 'fas fa-play',\n pause: 'fas fa-pause',\n fullscreen: 'fas fa-fullscreen',\n fullscreenExit: 'fas fa-compress',\n volumeHigh: 'fas fa-volume-high',\n volumeMedium: 'fas fa-volume-low',\n volumeLow: 'fas fa-volume-off',\n volumeOff: 'fas fa-volume-off',\n}\n\nconst fa: IconSet = {\n component: VClassIcon,\n}\n\nexport { aliases, fa }\n"],"mappings":"AAAA;AAAA,SACSA,UAAU,mCAEnB;AAGA,MAAMC,OAAoB,GAAG;EAC3BC,QAAQ,EAAE,mBAAmB;EAC7BC,QAAQ,EAAE,cAAc;EACxBC,MAAM,EAAE,qBAAqB;EAC7BC,KAAK,EAAE,cAAc;EACrBC,MAAM,EAAE,qBAAqB;EAAE;EAC/BC,KAAK,EAAE,qBAAqB;EAAE;EAC9BC,OAAO,EAAE,qBAAqB;EAC9BC,IAAI,EAAE,oBAAoB;EAC1BC,OAAO,EAAE,oBAAoB;EAC7BC,KAAK,EAAE,6BAA6B;EACpCC,IAAI,EAAE,qBAAqB;EAC3BC,IAAI,EAAE,sBAAsB;EAC5BC,UAAU,EAAE,qBAAqB;EACjCC,WAAW,EAAE,eAAe;EAAE;EAC9BC,qBAAqB,EAAE,qBAAqB;EAC5CC,SAAS,EAAE,eAAe;EAAE;EAC5BC,OAAO,EAAE,iBAAiB;EAC1BC,QAAQ,EAAE,mBAAmB;EAC7BC,MAAM,EAAE,qBAAqB;EAC7BC,IAAI,EAAE,aAAa;EACnBC,QAAQ,EAAE,mBAAmB;EAC7BC,QAAQ,EAAE,mBAAmB;EAC7BC,OAAO,EAAE,mBAAmB;EAC5BC,QAAQ,EAAE,eAAe;EACzBC,IAAI,EAAE,aAAa;EACnBC,WAAW,EAAE,aAAa;EAC1BC,UAAU,EAAE,aAAa;EACzBC,UAAU,EAAE,kBAAkB;EAC9BC,OAAO,EAAE,aAAa;EACtBC,KAAK,EAAE,sBAAsB;EAC7BC,IAAI,EAAE,qBAAqB;EAC3BC,MAAM,EAAE,qBAAqB;EAC7BC,IAAI,EAAE,kBAAkB;EACxBC,IAAI,EAAE,aAAa;EACnBC,KAAK,EAAE,cAAc;EACrBC,QAAQ,EAAE,iBAAiB;EAC3BC,gBAAgB,EAAE,mBAAmB;EACrCC,cAAc,EAAE,oBAAoB;EACpCC,UAAU,EAAE,oBAAoB;EAChCC,MAAM,EAAE,yBAAyB;EACjCC,KAAK,EAAE,gBAAgB;EACvBC,OAAO,EAAE,iBAAiB;EAC1BC,IAAI,EAAE,iBAAiB;EACvBC,KAAK,EAAE,iBAAiB;EACxBC,GAAG,EAAE,iBAAiB;EACtBC,KAAK,EAAE,eAAe;EACtBC,KAAK,EAAE,cAAc;EACrBC,OAAO,EAAE,iBAAiB;EAC1BC,SAAS,EAAE,mBAAmB;EAC9BC,SAAS,EAAE,mBAAmB;EAC9BC,UAAU,EAAE,oBAAoB;EAChCC,SAAS,EAAE,kBAAkB;EAC7BC,IAAI,EAAE,aAAa;EACnBC,KAAK,EAAE,cAAc;EACrBC,UAAU,EAAE,mBAAmB;EAC/BC,cAAc,EAAE,iBAAiB;EACjCC,UAAU,EAAE,oBAAoB;EAChCC,YAAY,EAAE,mBAAmB;EACjCC,SAAS,EAAE,mBAAmB;EAC9BC,SAAS,EAAE;AACb,CAAC;AAED,MAAMC,EAAW,GAAG;EAClBC,SAAS,EAAE/D;AACb,CAAC;AAED,SAASC,OAAO,EAAE6D,EAAE","ignoreList":[]}
@@ -59,7 +59,15 @@ const aliases = {
59
59
  arrowdown: 'fa-arrow-down',
60
60
  arrowleft: 'fa-arrow-left',
61
61
  arrowright: 'fa-arrow-right',
62
- backspace: 'fa-undo'
62
+ backspace: 'fa-undo',
63
+ play: 'fa-play',
64
+ pause: 'fa-pause',
65
+ fullscreen: 'fa-fullscreen',
66
+ fullscreenExit: 'fa-compress',
67
+ volumeHigh: 'fa-volume-high',
68
+ volumeMedium: 'fa-volume-low',
69
+ volumeLow: 'fa-volume-off',
70
+ volumeOff: 'fa-volume-off'
63
71
  };
64
72
  const fa = {
65
73
  // Not using mergeProps here, functional components merge props by default (?)
@@ -1 +1 @@
1
- {"version":3,"file":"fa4.js","names":["VClassIcon","h","aliases","collapse","complete","cancel","close","delete","clear","success","info","warning","error","prev","next","checkboxOn","checkboxOff","checkboxIndeterminate","delimiter","sortAsc","sortDesc","expand","menu","subgroup","dropdown","radioOn","radioOff","edit","ratingEmpty","ratingFull","ratingHalf","loading","first","last","unfold","file","plus","minus","calendar","treeviewCollapse","treeviewExpand","eyeDropper","upload","color","command","ctrl","shift","alt","space","enter","arrowup","arrowdown","arrowleft","arrowright","backspace","fa","component","props","class"],"sources":["../../src/iconsets/fa4.ts"],"sourcesContent":["// Composables\nimport { VClassIcon } from '@/composables/icons'\n\n// Utilities\nimport { h } from 'vue'\n\n// Types\nimport type { IconAliases, IconSet } from '@/composables/icons'\n\nconst aliases: IconAliases = {\n collapse: 'fa-chevron-up',\n complete: 'fa-check',\n cancel: 'fa-times-circle',\n close: 'fa-times',\n delete: 'fa-times-circle', // delete (e.g. v-chip close)\n clear: 'fa-check-circle', // delete (e.g. v-chip close)\n success: 'fa-check-circle',\n info: 'fa-info-circle',\n warning: 'fa-exclamation',\n error: 'fa-exclamation-triangle',\n prev: 'fa-chevron-left',\n next: 'fa-chevron-right',\n checkboxOn: 'fa-check-square',\n checkboxOff: 'fa-square-o',\n checkboxIndeterminate: 'fa-minus-square',\n delimiter: 'fa-circle', // for carousel\n sortAsc: 'fa-arrow-up',\n sortDesc: 'fa-arrow-down',\n expand: 'fa-chevron-down',\n menu: 'fa-bars',\n subgroup: 'fa-caret-down',\n dropdown: 'fa-caret-down',\n radioOn: 'fa-dot-circle-o',\n radioOff: 'fa-circle-o',\n edit: 'fa-pencil',\n ratingEmpty: 'fa-star-o',\n ratingFull: 'fa-star',\n ratingHalf: 'fa-star-half-o',\n loading: 'fa-refresh',\n first: 'fa-step-backward',\n last: 'fa-step-forward',\n unfold: 'fa-angle-double-down',\n file: 'fa-paperclip',\n plus: 'fa-plus',\n minus: 'fa-minus',\n calendar: 'fa-calendar',\n treeviewCollapse: 'fa-caret-down',\n treeviewExpand: 'fa-caret-right',\n eyeDropper: 'fa-eye-dropper',\n upload: 'fa-cloud-upload',\n color: 'fa-paint-brush',\n command: 'fa-keyboard-o',\n ctrl: 'fa-keyboard-o',\n shift: 'fa-arrow-up',\n alt: 'fa-keyboard-o',\n space: 'fa-square-o',\n enter: 'fa-reply',\n arrowup: 'fa-arrow-up',\n arrowdown: 'fa-arrow-down',\n arrowleft: 'fa-arrow-left',\n arrowright: 'fa-arrow-right',\n backspace: 'fa-undo',\n}\n\nconst fa: IconSet = {\n // Not using mergeProps here, functional components merge props by default (?)\n component: props => h(VClassIcon, { ...props, class: 'fa' }),\n}\n\nexport { aliases, fa }\n"],"mappings":"AAAA;AAAA,SACSA,UAAU,mCAEnB;AACA,SAASC,CAAC,QAAQ,KAAK;;AAEvB;;AAGA,MAAMC,OAAoB,GAAG;EAC3BC,QAAQ,EAAE,eAAe;EACzBC,QAAQ,EAAE,UAAU;EACpBC,MAAM,EAAE,iBAAiB;EACzBC,KAAK,EAAE,UAAU;EACjBC,MAAM,EAAE,iBAAiB;EAAE;EAC3BC,KAAK,EAAE,iBAAiB;EAAE;EAC1BC,OAAO,EAAE,iBAAiB;EAC1BC,IAAI,EAAE,gBAAgB;EACtBC,OAAO,EAAE,gBAAgB;EACzBC,KAAK,EAAE,yBAAyB;EAChCC,IAAI,EAAE,iBAAiB;EACvBC,IAAI,EAAE,kBAAkB;EACxBC,UAAU,EAAE,iBAAiB;EAC7BC,WAAW,EAAE,aAAa;EAC1BC,qBAAqB,EAAE,iBAAiB;EACxCC,SAAS,EAAE,WAAW;EAAE;EACxBC,OAAO,EAAE,aAAa;EACtBC,QAAQ,EAAE,eAAe;EACzBC,MAAM,EAAE,iBAAiB;EACzBC,IAAI,EAAE,SAAS;EACfC,QAAQ,EAAE,eAAe;EACzBC,QAAQ,EAAE,eAAe;EACzBC,OAAO,EAAE,iBAAiB;EAC1BC,QAAQ,EAAE,aAAa;EACvBC,IAAI,EAAE,WAAW;EACjBC,WAAW,EAAE,WAAW;EACxBC,UAAU,EAAE,SAAS;EACrBC,UAAU,EAAE,gBAAgB;EAC5BC,OAAO,EAAE,YAAY;EACrBC,KAAK,EAAE,kBAAkB;EACzBC,IAAI,EAAE,iBAAiB;EACvBC,MAAM,EAAE,sBAAsB;EAC9BC,IAAI,EAAE,cAAc;EACpBC,IAAI,EAAE,SAAS;EACfC,KAAK,EAAE,UAAU;EACjBC,QAAQ,EAAE,aAAa;EACvBC,gBAAgB,EAAE,eAAe;EACjCC,cAAc,EAAE,gBAAgB;EAChCC,UAAU,EAAE,gBAAgB;EAC5BC,MAAM,EAAE,iBAAiB;EACzBC,KAAK,EAAE,gBAAgB;EACvBC,OAAO,EAAE,eAAe;EACxBC,IAAI,EAAE,eAAe;EACrBC,KAAK,EAAE,aAAa;EACpBC,GAAG,EAAE,eAAe;EACpBC,KAAK,EAAE,aAAa;EACpBC,KAAK,EAAE,UAAU;EACjBC,OAAO,EAAE,aAAa;EACtBC,SAAS,EAAE,eAAe;EAC1BC,SAAS,EAAE,eAAe;EAC1BC,UAAU,EAAE,gBAAgB;EAC5BC,SAAS,EAAE;AACb,CAAC;AAED,MAAMC,EAAW,GAAG;EAClB;EACAC,SAAS,EAAEC,KAAK,IAAIxD,CAAC,CAACD,UAAU,EAAE;IAAE,GAAGyD,KAAK;IAAEC,KAAK,EAAE;EAAK,CAAC;AAC7D,CAAC;AAED,SAASxD,OAAO,EAAEqD,EAAE","ignoreList":[]}
1
+ {"version":3,"file":"fa4.js","names":["VClassIcon","h","aliases","collapse","complete","cancel","close","delete","clear","success","info","warning","error","prev","next","checkboxOn","checkboxOff","checkboxIndeterminate","delimiter","sortAsc","sortDesc","expand","menu","subgroup","dropdown","radioOn","radioOff","edit","ratingEmpty","ratingFull","ratingHalf","loading","first","last","unfold","file","plus","minus","calendar","treeviewCollapse","treeviewExpand","eyeDropper","upload","color","command","ctrl","shift","alt","space","enter","arrowup","arrowdown","arrowleft","arrowright","backspace","play","pause","fullscreen","fullscreenExit","volumeHigh","volumeMedium","volumeLow","volumeOff","fa","component","props","class"],"sources":["../../src/iconsets/fa4.ts"],"sourcesContent":["// Composables\nimport { VClassIcon } from '@/composables/icons'\n\n// Utilities\nimport { h } from 'vue'\n\n// Types\nimport type { IconAliases, IconSet } from '@/composables/icons'\n\nconst aliases: IconAliases = {\n collapse: 'fa-chevron-up',\n complete: 'fa-check',\n cancel: 'fa-times-circle',\n close: 'fa-times',\n delete: 'fa-times-circle', // delete (e.g. v-chip close)\n clear: 'fa-check-circle', // delete (e.g. v-chip close)\n success: 'fa-check-circle',\n info: 'fa-info-circle',\n warning: 'fa-exclamation',\n error: 'fa-exclamation-triangle',\n prev: 'fa-chevron-left',\n next: 'fa-chevron-right',\n checkboxOn: 'fa-check-square',\n checkboxOff: 'fa-square-o',\n checkboxIndeterminate: 'fa-minus-square',\n delimiter: 'fa-circle', // for carousel\n sortAsc: 'fa-arrow-up',\n sortDesc: 'fa-arrow-down',\n expand: 'fa-chevron-down',\n menu: 'fa-bars',\n subgroup: 'fa-caret-down',\n dropdown: 'fa-caret-down',\n radioOn: 'fa-dot-circle-o',\n radioOff: 'fa-circle-o',\n edit: 'fa-pencil',\n ratingEmpty: 'fa-star-o',\n ratingFull: 'fa-star',\n ratingHalf: 'fa-star-half-o',\n loading: 'fa-refresh',\n first: 'fa-step-backward',\n last: 'fa-step-forward',\n unfold: 'fa-angle-double-down',\n file: 'fa-paperclip',\n plus: 'fa-plus',\n minus: 'fa-minus',\n calendar: 'fa-calendar',\n treeviewCollapse: 'fa-caret-down',\n treeviewExpand: 'fa-caret-right',\n eyeDropper: 'fa-eye-dropper',\n upload: 'fa-cloud-upload',\n color: 'fa-paint-brush',\n command: 'fa-keyboard-o',\n ctrl: 'fa-keyboard-o',\n shift: 'fa-arrow-up',\n alt: 'fa-keyboard-o',\n space: 'fa-square-o',\n enter: 'fa-reply',\n arrowup: 'fa-arrow-up',\n arrowdown: 'fa-arrow-down',\n arrowleft: 'fa-arrow-left',\n arrowright: 'fa-arrow-right',\n backspace: 'fa-undo',\n play: 'fa-play',\n pause: 'fa-pause',\n fullscreen: 'fa-fullscreen',\n fullscreenExit: 'fa-compress',\n volumeHigh: 'fa-volume-high',\n volumeMedium: 'fa-volume-low',\n volumeLow: 'fa-volume-off',\n volumeOff: 'fa-volume-off',\n}\n\nconst fa: IconSet = {\n // Not using mergeProps here, functional components merge props by default (?)\n component: props => h(VClassIcon, { ...props, class: 'fa' }),\n}\n\nexport { aliases, fa }\n"],"mappings":"AAAA;AAAA,SACSA,UAAU,mCAEnB;AACA,SAASC,CAAC,QAAQ,KAAK;;AAEvB;;AAGA,MAAMC,OAAoB,GAAG;EAC3BC,QAAQ,EAAE,eAAe;EACzBC,QAAQ,EAAE,UAAU;EACpBC,MAAM,EAAE,iBAAiB;EACzBC,KAAK,EAAE,UAAU;EACjBC,MAAM,EAAE,iBAAiB;EAAE;EAC3BC,KAAK,EAAE,iBAAiB;EAAE;EAC1BC,OAAO,EAAE,iBAAiB;EAC1BC,IAAI,EAAE,gBAAgB;EACtBC,OAAO,EAAE,gBAAgB;EACzBC,KAAK,EAAE,yBAAyB;EAChCC,IAAI,EAAE,iBAAiB;EACvBC,IAAI,EAAE,kBAAkB;EACxBC,UAAU,EAAE,iBAAiB;EAC7BC,WAAW,EAAE,aAAa;EAC1BC,qBAAqB,EAAE,iBAAiB;EACxCC,SAAS,EAAE,WAAW;EAAE;EACxBC,OAAO,EAAE,aAAa;EACtBC,QAAQ,EAAE,eAAe;EACzBC,MAAM,EAAE,iBAAiB;EACzBC,IAAI,EAAE,SAAS;EACfC,QAAQ,EAAE,eAAe;EACzBC,QAAQ,EAAE,eAAe;EACzBC,OAAO,EAAE,iBAAiB;EAC1BC,QAAQ,EAAE,aAAa;EACvBC,IAAI,EAAE,WAAW;EACjBC,WAAW,EAAE,WAAW;EACxBC,UAAU,EAAE,SAAS;EACrBC,UAAU,EAAE,gBAAgB;EAC5BC,OAAO,EAAE,YAAY;EACrBC,KAAK,EAAE,kBAAkB;EACzBC,IAAI,EAAE,iBAAiB;EACvBC,MAAM,EAAE,sBAAsB;EAC9BC,IAAI,EAAE,cAAc;EACpBC,IAAI,EAAE,SAAS;EACfC,KAAK,EAAE,UAAU;EACjBC,QAAQ,EAAE,aAAa;EACvBC,gBAAgB,EAAE,eAAe;EACjCC,cAAc,EAAE,gBAAgB;EAChCC,UAAU,EAAE,gBAAgB;EAC5BC,MAAM,EAAE,iBAAiB;EACzBC,KAAK,EAAE,gBAAgB;EACvBC,OAAO,EAAE,eAAe;EACxBC,IAAI,EAAE,eAAe;EACrBC,KAAK,EAAE,aAAa;EACpBC,GAAG,EAAE,eAAe;EACpBC,KAAK,EAAE,aAAa;EACpBC,KAAK,EAAE,UAAU;EACjBC,OAAO,EAAE,aAAa;EACtBC,SAAS,EAAE,eAAe;EAC1BC,SAAS,EAAE,eAAe;EAC1BC,UAAU,EAAE,gBAAgB;EAC5BC,SAAS,EAAE,SAAS;EACpBC,IAAI,EAAE,SAAS;EACfC,KAAK,EAAE,UAAU;EACjBC,UAAU,EAAE,eAAe;EAC3BC,cAAc,EAAE,aAAa;EAC7BC,UAAU,EAAE,gBAAgB;EAC5BC,YAAY,EAAE,eAAe;EAC7BC,SAAS,EAAE,eAAe;EAC1BC,SAAS,EAAE;AACb,CAAC;AAED,MAAMC,EAAW,GAAG;EAClB;EACAC,SAAS,EAAEC,KAAK,IAAIhE,CAAC,CAACD,UAAU,EAAE;IAAE,GAAGiE,KAAK;IAAEC,KAAK,EAAE;EAAK,CAAC;AAC7D,CAAC;AAED,SAAShE,OAAO,EAAE6D,EAAE","ignoreList":[]}
@@ -58,7 +58,15 @@ const aliases = {
58
58
  arrowdown: 'keyboard_arrow_down',
59
59
  arrowleft: 'keyboard_arrow_left',
60
60
  arrowright: 'keyboard_arrow_right',
61
- backspace: 'backspace'
61
+ backspace: 'backspace',
62
+ play: 'play',
63
+ pause: 'pause',
64
+ fullscreen: 'fullscreen',
65
+ fullscreenExit: 'fullscreen_exit',
66
+ volumeHigh: 'volume_high',
67
+ volumeMedium: 'volume_medium',
68
+ volumeLow: 'volume_low',
69
+ volumeOff: 'volume_variant_off'
62
70
  };
63
71
  const md = {
64
72
  // Not using mergeProps here, functional components merge props by default (?)
@@ -1 +1 @@
1
- {"version":3,"file":"md.js","names":["VLigatureIcon","h","aliases","collapse","complete","cancel","close","delete","clear","success","info","warning","error","prev","next","checkboxOn","checkboxOff","checkboxIndeterminate","delimiter","sortAsc","sortDesc","expand","menu","subgroup","dropdown","radioOn","radioOff","edit","ratingEmpty","ratingFull","ratingHalf","loading","first","last","unfold","file","plus","minus","calendar","treeviewCollapse","treeviewExpand","eyeDropper","upload","color","command","ctrl","shift","alt","space","enter","arrowup","arrowdown","arrowleft","arrowright","backspace","md","component","props","class"],"sources":["../../src/iconsets/md.ts"],"sourcesContent":["// Composables\nimport { VLigatureIcon } from '@/composables/icons'\n\n// Utilities\nimport { h } from 'vue'\n\n// Types\nimport type { IconAliases, IconSet } from '@/composables/icons'\n\nconst aliases: IconAliases = {\n collapse: 'keyboard_arrow_up',\n complete: 'check',\n cancel: 'cancel',\n close: 'close',\n delete: 'cancel', // delete (e.g. v-chip close)\n clear: 'cancel',\n success: 'check_circle',\n info: 'info',\n warning: 'priority_high',\n error: 'warning',\n prev: 'chevron_left',\n next: 'chevron_right',\n checkboxOn: 'check_box',\n checkboxOff: 'check_box_outline_blank',\n checkboxIndeterminate: 'indeterminate_check_box',\n delimiter: 'fiber_manual_record', // for carousel\n sortAsc: 'arrow_upward',\n sortDesc: 'arrow_downward',\n expand: 'keyboard_arrow_down',\n menu: 'menu',\n subgroup: 'arrow_drop_down',\n dropdown: 'arrow_drop_down',\n radioOn: 'radio_button_checked',\n radioOff: 'radio_button_unchecked',\n edit: 'edit',\n ratingEmpty: 'star_border',\n ratingFull: 'star',\n ratingHalf: 'star_half',\n loading: 'cached',\n first: 'first_page',\n last: 'last_page',\n unfold: 'unfold_more',\n file: 'attach_file',\n plus: 'add',\n minus: 'remove',\n calendar: 'event',\n treeviewCollapse: 'arrow_drop_down',\n treeviewExpand: 'arrow_right',\n eyeDropper: 'colorize',\n upload: 'cloud_upload',\n color: 'palette',\n command: 'keyboard_command_key',\n ctrl: 'keyboard_control_key',\n shift: 'shift',\n alt: 'keyboard_option_key',\n space: 'keyboard_space',\n enter: 'keyboard_return',\n arrowup: 'keyboard_arrow_up',\n arrowdown: 'keyboard_arrow_down',\n arrowleft: 'keyboard_arrow_left',\n arrowright: 'keyboard_arrow_right',\n backspace: 'backspace',\n}\n\nconst md: IconSet = {\n // Not using mergeProps here, functional components merge props by default (?)\n component: props => h(VLigatureIcon, { ...props, class: 'material-icons' }),\n}\n\nexport { aliases, md }\n"],"mappings":"AAAA;AAAA,SACSA,aAAa,mCAEtB;AACA,SAASC,CAAC,QAAQ,KAAK;;AAEvB;;AAGA,MAAMC,OAAoB,GAAG;EAC3BC,QAAQ,EAAE,mBAAmB;EAC7BC,QAAQ,EAAE,OAAO;EACjBC,MAAM,EAAE,QAAQ;EAChBC,KAAK,EAAE,OAAO;EACdC,MAAM,EAAE,QAAQ;EAAE;EAClBC,KAAK,EAAE,QAAQ;EACfC,OAAO,EAAE,cAAc;EACvBC,IAAI,EAAE,MAAM;EACZC,OAAO,EAAE,eAAe;EACxBC,KAAK,EAAE,SAAS;EAChBC,IAAI,EAAE,cAAc;EACpBC,IAAI,EAAE,eAAe;EACrBC,UAAU,EAAE,WAAW;EACvBC,WAAW,EAAE,yBAAyB;EACtCC,qBAAqB,EAAE,yBAAyB;EAChDC,SAAS,EAAE,qBAAqB;EAAE;EAClCC,OAAO,EAAE,cAAc;EACvBC,QAAQ,EAAE,gBAAgB;EAC1BC,MAAM,EAAE,qBAAqB;EAC7BC,IAAI,EAAE,MAAM;EACZC,QAAQ,EAAE,iBAAiB;EAC3BC,QAAQ,EAAE,iBAAiB;EAC3BC,OAAO,EAAE,sBAAsB;EAC/BC,QAAQ,EAAE,wBAAwB;EAClCC,IAAI,EAAE,MAAM;EACZC,WAAW,EAAE,aAAa;EAC1BC,UAAU,EAAE,MAAM;EAClBC,UAAU,EAAE,WAAW;EACvBC,OAAO,EAAE,QAAQ;EACjBC,KAAK,EAAE,YAAY;EACnBC,IAAI,EAAE,WAAW;EACjBC,MAAM,EAAE,aAAa;EACrBC,IAAI,EAAE,aAAa;EACnBC,IAAI,EAAE,KAAK;EACXC,KAAK,EAAE,QAAQ;EACfC,QAAQ,EAAE,OAAO;EACjBC,gBAAgB,EAAE,iBAAiB;EACnCC,cAAc,EAAE,aAAa;EAC7BC,UAAU,EAAE,UAAU;EACtBC,MAAM,EAAE,cAAc;EACtBC,KAAK,EAAE,SAAS;EAChBC,OAAO,EAAE,sBAAsB;EAC/BC,IAAI,EAAE,sBAAsB;EAC5BC,KAAK,EAAE,OAAO;EACdC,GAAG,EAAE,qBAAqB;EAC1BC,KAAK,EAAE,gBAAgB;EACvBC,KAAK,EAAE,iBAAiB;EACxBC,OAAO,EAAE,mBAAmB;EAC5BC,SAAS,EAAE,qBAAqB;EAChCC,SAAS,EAAE,qBAAqB;EAChCC,UAAU,EAAE,sBAAsB;EAClCC,SAAS,EAAE;AACb,CAAC;AAED,MAAMC,EAAW,GAAG;EAClB;EACAC,SAAS,EAAEC,KAAK,IAAIxD,CAAC,CAACD,aAAa,EAAE;IAAE,GAAGyD,KAAK;IAAEC,KAAK,EAAE;EAAiB,CAAC;AAC5E,CAAC;AAED,SAASxD,OAAO,EAAEqD,EAAE","ignoreList":[]}
1
+ {"version":3,"file":"md.js","names":["VLigatureIcon","h","aliases","collapse","complete","cancel","close","delete","clear","success","info","warning","error","prev","next","checkboxOn","checkboxOff","checkboxIndeterminate","delimiter","sortAsc","sortDesc","expand","menu","subgroup","dropdown","radioOn","radioOff","edit","ratingEmpty","ratingFull","ratingHalf","loading","first","last","unfold","file","plus","minus","calendar","treeviewCollapse","treeviewExpand","eyeDropper","upload","color","command","ctrl","shift","alt","space","enter","arrowup","arrowdown","arrowleft","arrowright","backspace","play","pause","fullscreen","fullscreenExit","volumeHigh","volumeMedium","volumeLow","volumeOff","md","component","props","class"],"sources":["../../src/iconsets/md.ts"],"sourcesContent":["// Composables\nimport { VLigatureIcon } from '@/composables/icons'\n\n// Utilities\nimport { h } from 'vue'\n\n// Types\nimport type { IconAliases, IconSet } from '@/composables/icons'\n\nconst aliases: IconAliases = {\n collapse: 'keyboard_arrow_up',\n complete: 'check',\n cancel: 'cancel',\n close: 'close',\n delete: 'cancel', // delete (e.g. v-chip close)\n clear: 'cancel',\n success: 'check_circle',\n info: 'info',\n warning: 'priority_high',\n error: 'warning',\n prev: 'chevron_left',\n next: 'chevron_right',\n checkboxOn: 'check_box',\n checkboxOff: 'check_box_outline_blank',\n checkboxIndeterminate: 'indeterminate_check_box',\n delimiter: 'fiber_manual_record', // for carousel\n sortAsc: 'arrow_upward',\n sortDesc: 'arrow_downward',\n expand: 'keyboard_arrow_down',\n menu: 'menu',\n subgroup: 'arrow_drop_down',\n dropdown: 'arrow_drop_down',\n radioOn: 'radio_button_checked',\n radioOff: 'radio_button_unchecked',\n edit: 'edit',\n ratingEmpty: 'star_border',\n ratingFull: 'star',\n ratingHalf: 'star_half',\n loading: 'cached',\n first: 'first_page',\n last: 'last_page',\n unfold: 'unfold_more',\n file: 'attach_file',\n plus: 'add',\n minus: 'remove',\n calendar: 'event',\n treeviewCollapse: 'arrow_drop_down',\n treeviewExpand: 'arrow_right',\n eyeDropper: 'colorize',\n upload: 'cloud_upload',\n color: 'palette',\n command: 'keyboard_command_key',\n ctrl: 'keyboard_control_key',\n shift: 'shift',\n alt: 'keyboard_option_key',\n space: 'keyboard_space',\n enter: 'keyboard_return',\n arrowup: 'keyboard_arrow_up',\n arrowdown: 'keyboard_arrow_down',\n arrowleft: 'keyboard_arrow_left',\n arrowright: 'keyboard_arrow_right',\n backspace: 'backspace',\n play: 'play',\n pause: 'pause',\n fullscreen: 'fullscreen',\n fullscreenExit: 'fullscreen_exit',\n volumeHigh: 'volume_high',\n volumeMedium: 'volume_medium',\n volumeLow: 'volume_low',\n volumeOff: 'volume_variant_off',\n}\n\nconst md: IconSet = {\n // Not using mergeProps here, functional components merge props by default (?)\n component: props => h(VLigatureIcon, { ...props, class: 'material-icons' }),\n}\n\nexport { aliases, md }\n"],"mappings":"AAAA;AAAA,SACSA,aAAa,mCAEtB;AACA,SAASC,CAAC,QAAQ,KAAK;;AAEvB;;AAGA,MAAMC,OAAoB,GAAG;EAC3BC,QAAQ,EAAE,mBAAmB;EAC7BC,QAAQ,EAAE,OAAO;EACjBC,MAAM,EAAE,QAAQ;EAChBC,KAAK,EAAE,OAAO;EACdC,MAAM,EAAE,QAAQ;EAAE;EAClBC,KAAK,EAAE,QAAQ;EACfC,OAAO,EAAE,cAAc;EACvBC,IAAI,EAAE,MAAM;EACZC,OAAO,EAAE,eAAe;EACxBC,KAAK,EAAE,SAAS;EAChBC,IAAI,EAAE,cAAc;EACpBC,IAAI,EAAE,eAAe;EACrBC,UAAU,EAAE,WAAW;EACvBC,WAAW,EAAE,yBAAyB;EACtCC,qBAAqB,EAAE,yBAAyB;EAChDC,SAAS,EAAE,qBAAqB;EAAE;EAClCC,OAAO,EAAE,cAAc;EACvBC,QAAQ,EAAE,gBAAgB;EAC1BC,MAAM,EAAE,qBAAqB;EAC7BC,IAAI,EAAE,MAAM;EACZC,QAAQ,EAAE,iBAAiB;EAC3BC,QAAQ,EAAE,iBAAiB;EAC3BC,OAAO,EAAE,sBAAsB;EAC/BC,QAAQ,EAAE,wBAAwB;EAClCC,IAAI,EAAE,MAAM;EACZC,WAAW,EAAE,aAAa;EAC1BC,UAAU,EAAE,MAAM;EAClBC,UAAU,EAAE,WAAW;EACvBC,OAAO,EAAE,QAAQ;EACjBC,KAAK,EAAE,YAAY;EACnBC,IAAI,EAAE,WAAW;EACjBC,MAAM,EAAE,aAAa;EACrBC,IAAI,EAAE,aAAa;EACnBC,IAAI,EAAE,KAAK;EACXC,KAAK,EAAE,QAAQ;EACfC,QAAQ,EAAE,OAAO;EACjBC,gBAAgB,EAAE,iBAAiB;EACnCC,cAAc,EAAE,aAAa;EAC7BC,UAAU,EAAE,UAAU;EACtBC,MAAM,EAAE,cAAc;EACtBC,KAAK,EAAE,SAAS;EAChBC,OAAO,EAAE,sBAAsB;EAC/BC,IAAI,EAAE,sBAAsB;EAC5BC,KAAK,EAAE,OAAO;EACdC,GAAG,EAAE,qBAAqB;EAC1BC,KAAK,EAAE,gBAAgB;EACvBC,KAAK,EAAE,iBAAiB;EACxBC,OAAO,EAAE,mBAAmB;EAC5BC,SAAS,EAAE,qBAAqB;EAChCC,SAAS,EAAE,qBAAqB;EAChCC,UAAU,EAAE,sBAAsB;EAClCC,SAAS,EAAE,WAAW;EACtBC,IAAI,EAAE,MAAM;EACZC,KAAK,EAAE,OAAO;EACdC,UAAU,EAAE,YAAY;EACxBC,cAAc,EAAE,iBAAiB;EACjCC,UAAU,EAAE,aAAa;EACzBC,YAAY,EAAE,eAAe;EAC7BC,SAAS,EAAE,YAAY;EACvBC,SAAS,EAAE;AACb,CAAC;AAED,MAAMC,EAAW,GAAG;EAClB;EACAC,SAAS,EAAEC,KAAK,IAAIhE,CAAC,CAACD,aAAa,EAAE;IAAE,GAAGiE,KAAK;IAAEC,KAAK,EAAE;EAAiB,CAAC;AAC5E,CAAC;AAED,SAAShE,OAAO,EAAE6D,EAAE","ignoreList":[]}
@@ -55,7 +55,15 @@ const aliases = {
55
55
  arrowdown: 'svg:M11 4h2v12l5.5-5.5l1.42 1.42L12 19.84l-7.92-7.92L5.5 10.5L11 16z',
56
56
  arrowleft: 'svg:M20 11v2H8l5.5 5.5l-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5L8 11z',
57
57
  arrowright: 'svg:M4 11v2h12l-5.5 5.5l1.42 1.42L19.84 12l-7.92-7.92L10.5 5.5L16 11z',
58
- backspace: 'svg:M19 15.59L17.59 17L14 13.41L10.41 17L9 15.59L12.59 12L9 8.41L10.41 7L14 10.59L17.59 7L19 8.41L15.41 12zM22 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7c-.69 0-1.23-.36-1.59-.89L0 12l5.41-8.12C5.77 3.35 6.31 3 7 3zm0 2H7l-4.72 7L7 19h15z'
58
+ backspace: 'svg:M19 15.59L17.59 17L14 13.41L10.41 17L9 15.59L12.59 12L9 8.41L10.41 7L14 10.59L17.59 7L19 8.41L15.41 12zM22 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7c-.69 0-1.23-.36-1.59-.89L0 12l5.41-8.12C5.77 3.35 6.31 3 7 3zm0 2H7l-4.72 7L7 19h15z',
59
+ play: 'svg:M8,5.14V19.14L19,12.14L8,5.14Z',
60
+ pause: 'svg:M14,19H18V5H14M6,19H10V5H6V19Z',
61
+ fullscreen: 'svg:M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z',
62
+ fullscreenExit: 'svg:M14,14H19V16H16V19H14V14M5,14H10V19H8V16H5V14M8,5H10V10H5V8H8V5M19,8V10H14V5H16V8H19Z',
63
+ volumeHigh: 'svg:M14,3.23V5.29C16.89,6.15 19,8.83 19,12C19,15.17 16.89,17.84 14,18.7V20.77C18,19.86 21,16.28 21,12C21,7.72 18,4.14 14,3.23M16.5,12C16.5,10.23 15.5,8.71 14,7.97V16C15.5,15.29 16.5,13.76 16.5,12M3,9V15H7L12,20V4L7,9H3Z',
64
+ volumeMedium: 'svg:M5,9V15H9L14,20V4L9,9M18.5,12C18.5,10.23 17.5,8.71 16,7.97V16C17.5,15.29 18.5,13.76 18.5,12Z',
65
+ volumeLow: 'svg:M7,9V15H11L16,20V4L11,9H7Z',
66
+ volumeOff: 'svg:M5.64,3.64L21.36,19.36L19.95,20.78L16,16.83V20L11,15H7V9H8.17L4.22,5.05L5.64,3.64M16,4V11.17L12.41,7.58L16,4Z'
59
67
  };
60
68
  const mdi = {
61
69
  component: VSvgIcon