vuetify 3.8.8 → 3.8.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +1 -1
- package/dist/json/attributes.json +3119 -3119
- package/dist/json/importMap-labs.json +32 -32
- package/dist/json/importMap.json +154 -154
- package/dist/json/web-types.json +5973 -5973
- package/dist/vuetify-labs.cjs +124 -66
- package/dist/vuetify-labs.css +4474 -4474
- package/dist/vuetify-labs.d.ts +72 -60
- package/dist/vuetify-labs.esm.js +125 -67
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +124 -66
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +111 -47
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4922 -4922
- package/dist/vuetify.d.ts +67 -60
- package/dist/vuetify.esm.js +112 -48
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +111 -47
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +982 -976
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTableColumn.js +1 -0
- package/lib/components/VDataTable/VDataTableColumn.js.map +1 -1
- package/lib/components/VDataTable/VDataTableFooter.js +3 -1
- package/lib/components/VDataTable/VDataTableFooter.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.js +8 -1
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.js +2 -2
- package/lib/components/VDatePicker/VDatePickerMonth.js.map +1 -1
- package/lib/components/VFileInput/VFileInput.js +8 -3
- package/lib/components/VFileInput/VFileInput.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.d.ts +5 -0
- package/lib/components/VNumberInput/VNumberInput.js +7 -11
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.js +5 -2
- package/lib/components/VOtpInput/VOtpInput.js.map +1 -1
- package/lib/components/VSelect/VSelect.js +6 -5
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VSlider/VSliderThumb.js +1 -1
- package/lib/components/VSlider/VSliderThumb.js.map +1 -1
- package/lib/components/VTextField/VTextField.js +5 -4
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/composables/date/adapters/vuetify.js +1 -1
- package/lib/composables/date/adapters/vuetify.js.map +1 -1
- package/lib/composables/date/date.d.ts +1 -4
- package/lib/composables/date/date.js +13 -14
- package/lib/composables/date/date.js.map +1 -1
- package/lib/composables/fileDrop.d.ts +4 -0
- package/lib/composables/fileDrop.js +50 -0
- package/lib/composables/fileDrop.js.map +1 -0
- package/lib/composables/icons.d.ts +6 -0
- package/lib/composables/icons.js.map +1 -1
- package/lib/composables/list-items.js +2 -2
- package/lib/composables/list-items.js.map +1 -1
- package/lib/entry-bundler.d.ts +0 -3
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +62 -60
- package/lib/framework.js +1 -1
- package/lib/iconsets/fa.js +3 -1
- package/lib/iconsets/fa.js.map +1 -1
- package/lib/iconsets/fa4.js +3 -1
- package/lib/iconsets/fa4.js.map +1 -1
- package/lib/iconsets/md.js +3 -1
- package/lib/iconsets/md.js.map +1 -1
- package/lib/iconsets/mdi-svg.js +3 -1
- package/lib/iconsets/mdi-svg.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.js +3 -8
- package/lib/labs/VColorInput/VColorInput.js.map +1 -1
- package/lib/labs/VDateInput/VDateInput.d.ts +5 -0
- package/lib/labs/VDateInput/VDateInput.js +7 -10
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VFileUpload/VFileUpload.js +7 -3
- package/lib/labs/VFileUpload/VFileUpload.js.map +1 -1
- package/lib/labs/entry-bundler.d.ts +0 -3
- package/lib/util/helpers.d.ts +1 -1
- package/lib/util/helpers.js +0 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Utilities
|
|
2
2
|
import { computed, shallowRef, watchEffect } from 'vue';
|
|
3
|
-
import {
|
|
3
|
+
import { deepEqual, getPropertyFromItem, isPrimitive, omit, pick, propsFactory } from "../util/index.js"; // Types
|
|
4
4
|
// Composables
|
|
5
5
|
export const makeItemsProps = propsFactory({
|
|
6
6
|
items: {
|
|
@@ -34,7 +34,7 @@ export function transformItem(props, item) {
|
|
|
34
34
|
const _props = {
|
|
35
35
|
title,
|
|
36
36
|
value,
|
|
37
|
-
...
|
|
37
|
+
...itemProps
|
|
38
38
|
};
|
|
39
39
|
return {
|
|
40
40
|
title: String(_props.title ?? ''),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-items.js","names":["computed","shallowRef","watchEffect","camelizeProps","deepEqual","getPropertyFromItem","isPrimitive","omit","pick","propsFactory","makeItemsProps","items","type","Array","default","itemTitle","String","Function","itemValue","itemChildren","Boolean","itemProps","returnObject","valueComparator","transformItem","props","item","title","value","children","isArray","undefined","_props","transformItems","raw","array","push","useItems","hasNullItem","some","itemsMap","Map","keylessItems","_items","map","keyless","i","length","values","get","set","transformIn","_allItems","_keylessItems","_hasNullItem","_returnObject","hasValueComparator","returnValue","main","v","fastItems","transformOut","_ref","_ref2"],"sources":["../../src/composables/list-items.ts"],"sourcesContent":["// Utilities\nimport { computed, shallowRef, watchEffect } from 'vue'\nimport { camelizeProps, deepEqual, getPropertyFromItem, isPrimitive, omit, pick, propsFactory } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\nimport type { InternalItem } from '@/composables/filter'\nimport type { Primitive, SelectItemKey } from '@/util'\n\nexport interface ListItem<T = any> extends InternalItem<T> {\n title: string\n props: {\n [key: string]: any\n title: string\n value: any\n }\n children?: ListItem<T>[]\n}\n\nexport interface ItemProps {\n items: any[]\n itemTitle: SelectItemKey\n itemValue: SelectItemKey\n itemChildren: SelectItemKey\n itemProps: SelectItemKey\n returnObject: boolean\n valueComparator: typeof deepEqual | undefined\n}\n\n// Composables\nexport const makeItemsProps = propsFactory({\n items: {\n type: Array as PropType<ItemProps['items']>,\n default: () => ([]),\n },\n itemTitle: {\n type: [String, Array, Function] as PropType<SelectItemKey>,\n default: 'title',\n },\n itemValue: {\n type: [String, Array, Function] as PropType<SelectItemKey>,\n default: 'value',\n },\n itemChildren: {\n type: [Boolean, String, Array, Function] as PropType<SelectItemKey>,\n default: 'children',\n },\n itemProps: {\n type: [Boolean, String, Array, Function] as PropType<SelectItemKey>,\n default: 'props',\n },\n returnObject: Boolean,\n valueComparator: Function as PropType<typeof deepEqual>,\n}, 'list-items')\n\nexport function transformItem (props: Omit<ItemProps, 'items'>, item: any): ListItem {\n const title = getPropertyFromItem(item, props.itemTitle, item)\n const value = getPropertyFromItem(item, props.itemValue, title)\n const children = getPropertyFromItem(item, props.itemChildren)\n const itemProps = props.itemProps === true\n ? typeof item === 'object' && item != null && !Array.isArray(item)\n ? 'children' in item\n ? omit(item, ['children'])\n : item\n : undefined\n : getPropertyFromItem(item, props.itemProps)\n\n const _props = {\n title,\n value,\n ...camelizeProps(itemProps),\n }\n\n return {\n title: String(_props.title ?? ''),\n value: _props.value,\n props: _props,\n children: Array.isArray(children) ? transformItems(props, children) : undefined,\n raw: item,\n }\n}\n\nexport function transformItems (props: Omit<ItemProps, 'items'>, items: ItemProps['items']) {\n const _props = pick(props, [\n 'itemTitle',\n 'itemValue',\n 'itemChildren',\n 'itemProps',\n 'returnObject',\n 'valueComparator',\n ])\n\n const array: ListItem[] = []\n for (const item of items) {\n array.push(transformItem(_props, item))\n }\n\n return array\n}\n\nexport function useItems (props: ItemProps) {\n const items = computed(() => transformItems(props, props.items))\n const hasNullItem = computed(() => items.value.some(item => item.value === null))\n\n const itemsMap = shallowRef<Map<Primitive, ListItem[]>>(new Map())\n const keylessItems = shallowRef<ListItem[]>([])\n watchEffect(() => {\n const _items = items.value\n const map = new Map()\n const keyless = []\n for (let i = 0; i < _items.length; i++) {\n const item = _items[i]\n if (isPrimitive(item.value) || item.value === null) {\n let values = map.get(item.value)\n if (!values) {\n values = []\n map.set(item.value, values)\n }\n values.push(item)\n } else {\n keyless.push(item)\n }\n }\n itemsMap.value = map\n keylessItems.value = keyless\n })\n\n function transformIn (value: any[]): ListItem[] {\n // Cache unrefed values outside the loop,\n // proxy getters can be slow when you call them a billion times\n const _items = itemsMap.value\n const _allItems = items.value\n const _keylessItems = keylessItems.value\n const _hasNullItem = hasNullItem.value\n const _returnObject = props.returnObject\n const hasValueComparator = !!props.valueComparator\n const valueComparator = props.valueComparator || deepEqual\n const _props = pick(props, [\n 'itemTitle',\n 'itemValue',\n 'itemChildren',\n 'itemProps',\n 'returnObject',\n 'valueComparator',\n ])\n\n const returnValue: ListItem[] = []\n main: for (const v of value) {\n // When the model value is null, return an InternalItem\n // based on null only if null is one of the items\n if (!_hasNullItem && v === null) continue\n\n // String model value means value is a custom input value from combobox\n // Don't look up existing items if the model value is a string\n if (_returnObject && typeof v === 'string') {\n returnValue.push(transformItem(_props, v))\n continue\n }\n\n // Fast path, items with primitive values and no\n // custom valueComparator can use a constant-time\n // map lookup instead of searching the items array\n const fastItems = _items.get(v)\n\n // Slow path, always use valueComparator.\n // This is O(n^2) so we really don't want to\n // do it for more than a couple hundred items.\n if (hasValueComparator || !fastItems) {\n for (const item of (hasValueComparator ? _allItems : _keylessItems)) {\n if (valueComparator(v, item.value)) {\n returnValue.push(item)\n continue main\n }\n }\n // Not an existing item, construct it from the model (#4000)\n returnValue.push(transformItem(_props, v))\n continue\n }\n\n returnValue.push(...fastItems)\n }\n\n return returnValue\n }\n\n function transformOut (value: ListItem[]): any[] {\n return props.returnObject\n ? value.map(({ raw }) => raw)\n : value.map(({ value }) => value)\n }\n\n return { items, transformIn, transformOut }\n}\n"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"file":"list-items.js","names":["computed","shallowRef","watchEffect","deepEqual","getPropertyFromItem","isPrimitive","omit","pick","propsFactory","makeItemsProps","items","type","Array","default","itemTitle","String","Function","itemValue","itemChildren","Boolean","itemProps","returnObject","valueComparator","transformItem","props","item","title","value","children","isArray","undefined","_props","transformItems","raw","array","push","useItems","hasNullItem","some","itemsMap","Map","keylessItems","_items","map","keyless","i","length","values","get","set","transformIn","_allItems","_keylessItems","_hasNullItem","_returnObject","hasValueComparator","returnValue","main","v","fastItems","transformOut","_ref","_ref2"],"sources":["../../src/composables/list-items.ts"],"sourcesContent":["// Utilities\nimport { computed, shallowRef, watchEffect } from 'vue'\nimport { deepEqual, getPropertyFromItem, isPrimitive, omit, pick, propsFactory } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\nimport type { InternalItem } from '@/composables/filter'\nimport type { Primitive, SelectItemKey } from '@/util'\n\nexport interface ListItem<T = any> extends InternalItem<T> {\n title: string\n props: {\n [key: string]: any\n title: string\n value: any\n }\n children?: ListItem<T>[]\n}\n\nexport interface ItemProps {\n items: any[]\n itemTitle: SelectItemKey\n itemValue: SelectItemKey\n itemChildren: SelectItemKey\n itemProps: SelectItemKey\n returnObject: boolean\n valueComparator: typeof deepEqual | undefined\n}\n\n// Composables\nexport const makeItemsProps = propsFactory({\n items: {\n type: Array as PropType<ItemProps['items']>,\n default: () => ([]),\n },\n itemTitle: {\n type: [String, Array, Function] as PropType<SelectItemKey>,\n default: 'title',\n },\n itemValue: {\n type: [String, Array, Function] as PropType<SelectItemKey>,\n default: 'value',\n },\n itemChildren: {\n type: [Boolean, String, Array, Function] as PropType<SelectItemKey>,\n default: 'children',\n },\n itemProps: {\n type: [Boolean, String, Array, Function] as PropType<SelectItemKey>,\n default: 'props',\n },\n returnObject: Boolean,\n valueComparator: Function as PropType<typeof deepEqual>,\n}, 'list-items')\n\nexport function transformItem (props: Omit<ItemProps, 'items'>, item: any): ListItem {\n const title = getPropertyFromItem(item, props.itemTitle, item)\n const value = getPropertyFromItem(item, props.itemValue, title)\n const children = getPropertyFromItem(item, props.itemChildren)\n const itemProps = props.itemProps === true\n ? typeof item === 'object' && item != null && !Array.isArray(item)\n ? 'children' in item\n ? omit(item, ['children'])\n : item\n : undefined\n : getPropertyFromItem(item, props.itemProps)\n\n const _props = {\n title,\n value,\n ...itemProps,\n }\n\n return {\n title: String(_props.title ?? ''),\n value: _props.value,\n props: _props,\n children: Array.isArray(children) ? transformItems(props, children) : undefined,\n raw: item,\n }\n}\n\nexport function transformItems (props: Omit<ItemProps, 'items'>, items: ItemProps['items']) {\n const _props = pick(props, [\n 'itemTitle',\n 'itemValue',\n 'itemChildren',\n 'itemProps',\n 'returnObject',\n 'valueComparator',\n ])\n\n const array: ListItem[] = []\n for (const item of items) {\n array.push(transformItem(_props, item))\n }\n\n return array\n}\n\nexport function useItems (props: ItemProps) {\n const items = computed(() => transformItems(props, props.items))\n const hasNullItem = computed(() => items.value.some(item => item.value === null))\n\n const itemsMap = shallowRef<Map<Primitive, ListItem[]>>(new Map())\n const keylessItems = shallowRef<ListItem[]>([])\n watchEffect(() => {\n const _items = items.value\n const map = new Map()\n const keyless = []\n for (let i = 0; i < _items.length; i++) {\n const item = _items[i]\n if (isPrimitive(item.value) || item.value === null) {\n let values = map.get(item.value)\n if (!values) {\n values = []\n map.set(item.value, values)\n }\n values.push(item)\n } else {\n keyless.push(item)\n }\n }\n itemsMap.value = map\n keylessItems.value = keyless\n })\n\n function transformIn (value: any[]): ListItem[] {\n // Cache unrefed values outside the loop,\n // proxy getters can be slow when you call them a billion times\n const _items = itemsMap.value\n const _allItems = items.value\n const _keylessItems = keylessItems.value\n const _hasNullItem = hasNullItem.value\n const _returnObject = props.returnObject\n const hasValueComparator = !!props.valueComparator\n const valueComparator = props.valueComparator || deepEqual\n const _props = pick(props, [\n 'itemTitle',\n 'itemValue',\n 'itemChildren',\n 'itemProps',\n 'returnObject',\n 'valueComparator',\n ])\n\n const returnValue: ListItem[] = []\n main: for (const v of value) {\n // When the model value is null, return an InternalItem\n // based on null only if null is one of the items\n if (!_hasNullItem && v === null) continue\n\n // String model value means value is a custom input value from combobox\n // Don't look up existing items if the model value is a string\n if (_returnObject && typeof v === 'string') {\n returnValue.push(transformItem(_props, v))\n continue\n }\n\n // Fast path, items with primitive values and no\n // custom valueComparator can use a constant-time\n // map lookup instead of searching the items array\n const fastItems = _items.get(v)\n\n // Slow path, always use valueComparator.\n // This is O(n^2) so we really don't want to\n // do it for more than a couple hundred items.\n if (hasValueComparator || !fastItems) {\n for (const item of (hasValueComparator ? _allItems : _keylessItems)) {\n if (valueComparator(v, item.value)) {\n returnValue.push(item)\n continue main\n }\n }\n // Not an existing item, construct it from the model (#4000)\n returnValue.push(transformItem(_props, v))\n continue\n }\n\n returnValue.push(...fastItems)\n }\n\n return returnValue\n }\n\n function transformOut (value: ListItem[]): any[] {\n return props.returnObject\n ? value.map(({ raw }) => raw)\n : value.map(({ value }) => value)\n }\n\n return { items, transformIn, transformOut }\n}\n"],"mappings":"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","ignoreList":[]}
|
package/lib/entry-bundler.d.ts
CHANGED
|
@@ -28,7 +28,6 @@ export declare const createVuetify: {
|
|
|
28
28
|
options: import("./composables/date/date.js").InternalDateOptions;
|
|
29
29
|
instance: {
|
|
30
30
|
locale?: any;
|
|
31
|
-
createDateRange: (start: unknown, stop?: unknown) => unknown[];
|
|
32
31
|
date: (value?: any) => unknown;
|
|
33
32
|
format: (date: unknown, formatString: string) => string;
|
|
34
33
|
toJsDate: (value: unknown) => Date;
|
|
@@ -72,8 +71,6 @@ export declare const createVuetify: {
|
|
|
72
71
|
setHours: (date: unknown, hours: number) => unknown;
|
|
73
72
|
getMinutes: (date: unknown) => number;
|
|
74
73
|
setMinutes: (date: unknown, minutes: number) => unknown;
|
|
75
|
-
} & {
|
|
76
|
-
createDateRange(start: unknown, stop?: unknown): unknown[];
|
|
77
74
|
};
|
|
78
75
|
};
|
|
79
76
|
goTo: import("./types.js").GoToInstance;
|
package/lib/entry-bundler.js
CHANGED
|
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
|
16
16
|
...options
|
|
17
17
|
});
|
|
18
18
|
};
|
|
19
|
-
export const version = "3.8.
|
|
19
|
+
export const version = "3.8.9";
|
|
20
20
|
createVuetify.version = version;
|
|
21
21
|
export { blueprints, components, directives };
|
|
22
22
|
export * from "./composables/index.js";
|
package/lib/framework.d.ts
CHANGED
|
@@ -100,7 +100,6 @@ interface DateAdapter<T = unknown> {
|
|
|
100
100
|
|
|
101
101
|
interface DateInstance extends DateModule.InternalAdapter {
|
|
102
102
|
locale?: any;
|
|
103
|
-
createDateRange: (start: unknown, stop?: unknown) => unknown[];
|
|
104
103
|
}
|
|
105
104
|
/** Supports module augmentation to specify date adapter types */
|
|
106
105
|
declare namespace DateModule {
|
|
@@ -226,6 +225,7 @@ type IconValue = string | (string | [path: string, opacity: number])[] | JSXComp
|
|
|
226
225
|
declare const IconValue: PropType<IconValue>;
|
|
227
226
|
interface IconAliases {
|
|
228
227
|
[name: string]: IconValue;
|
|
228
|
+
collapse: IconValue;
|
|
229
229
|
complete: IconValue;
|
|
230
230
|
cancel: IconValue;
|
|
231
231
|
close: IconValue;
|
|
@@ -261,6 +261,11 @@ interface IconAliases {
|
|
|
261
261
|
plus: IconValue;
|
|
262
262
|
minus: IconValue;
|
|
263
263
|
calendar: IconValue;
|
|
264
|
+
treeviewCollapse: IconValue;
|
|
265
|
+
treeviewExpand: IconValue;
|
|
266
|
+
eyeDropper: IconValue;
|
|
267
|
+
upload: IconValue;
|
|
268
|
+
color: IconValue;
|
|
264
269
|
}
|
|
265
270
|
interface IconProps {
|
|
266
271
|
tag: string | JSXComponent;
|
|
@@ -2450,7 +2455,6 @@ declare function createVuetify(vuetify?: VuetifyOptions): {
|
|
|
2450
2455
|
options: InternalDateOptions;
|
|
2451
2456
|
instance: {
|
|
2452
2457
|
locale?: any;
|
|
2453
|
-
createDateRange: (start: unknown, stop?: unknown) => unknown[];
|
|
2454
2458
|
date: (value?: any) => unknown;
|
|
2455
2459
|
format: (date: unknown, formatString: string) => string;
|
|
2456
2460
|
toJsDate: (value: unknown) => Date;
|
|
@@ -2494,8 +2498,6 @@ declare function createVuetify(vuetify?: VuetifyOptions): {
|
|
|
2494
2498
|
setHours: (date: unknown, hours: number) => unknown;
|
|
2495
2499
|
getMinutes: (date: unknown) => number;
|
|
2496
2500
|
setMinutes: (date: unknown, minutes: number) => unknown;
|
|
2497
|
-
} & {
|
|
2498
|
-
createDateRange(start: unknown, stop?: unknown): unknown[];
|
|
2499
2501
|
};
|
|
2500
2502
|
};
|
|
2501
2503
|
goTo: GoToInstance;
|
|
@@ -2544,38 +2546,39 @@ declare module 'vue' {
|
|
|
2544
2546
|
}
|
|
2545
2547
|
export interface GlobalComponents {
|
|
2546
2548
|
VApp: typeof import('vuetify/components')['VApp']
|
|
2549
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
2550
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
2551
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
2552
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
2547
2553
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
2548
2554
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
2549
2555
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
2550
|
-
|
|
2551
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
|
2552
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
2556
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
2553
2557
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
2554
2558
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
2555
2559
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
2556
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
|
2557
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
2558
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
2559
2560
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
2560
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
2561
2561
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
2562
2562
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
2563
2563
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
2564
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
2565
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
2566
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
2564
2567
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
2565
2568
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
2569
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
2570
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
2566
2571
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
2567
|
-
|
|
2572
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
2573
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
2568
2574
|
VCard: typeof import('vuetify/components')['VCard']
|
|
2569
2575
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
2570
2576
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
2571
2577
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
2572
2578
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
2573
2579
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
2574
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
2575
2580
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
2576
|
-
|
|
2577
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
2578
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
2581
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
|
2579
2582
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
2580
2583
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
2581
2584
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
@@ -2583,36 +2586,30 @@ declare module 'vue' {
|
|
|
2583
2586
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
2584
2587
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
2585
2588
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
2586
|
-
|
|
2587
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
2588
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
|
2589
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
|
2590
|
-
VFab: typeof import('vuetify/components')['VFab']
|
|
2589
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
2591
2590
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
2592
2591
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
2593
2592
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
2594
2593
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
2595
2594
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
2596
2595
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
2596
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
2597
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
2597
2598
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
|
2598
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
2599
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
2600
2599
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
2601
2600
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
2602
2601
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
2603
2602
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
2603
|
+
VFab: typeof import('vuetify/components')['VFab']
|
|
2604
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
2605
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
2604
2606
|
VField: typeof import('vuetify/components')['VField']
|
|
2605
2607
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
2606
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
2607
|
-
VIcon: typeof import('vuetify/components')['VIcon']
|
|
2608
|
-
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
2609
|
-
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
2610
|
-
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
2611
|
-
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
2612
|
-
VImg: typeof import('vuetify/components')['VImg']
|
|
2613
2608
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
2614
2609
|
VItem: typeof import('vuetify/components')['VItem']
|
|
2610
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
2615
2611
|
VInput: typeof import('vuetify/components')['VInput']
|
|
2612
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
2616
2613
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
2617
2614
|
VList: typeof import('vuetify/components')['VList']
|
|
2618
2615
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
@@ -2623,59 +2620,65 @@ declare module 'vue' {
|
|
|
2623
2620
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
2624
2621
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
2625
2622
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
2626
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
|
2627
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
2628
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
|
2629
2623
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
2624
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
|
2630
2625
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
2626
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
2631
2627
|
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
|
2632
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
2633
2628
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
2629
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
2630
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
2631
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
2634
2632
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
2635
2633
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
2636
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
2637
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
2638
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
2639
2634
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
2640
|
-
|
|
2635
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
2641
2636
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
2642
|
-
|
|
2637
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
2638
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
2643
2639
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
2644
2640
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
2641
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
2642
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
2645
2643
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
2646
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
2647
2644
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
2648
2645
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
2649
2646
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
2650
2647
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
2651
2648
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
2652
2649
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
2650
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
2653
2651
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
2654
2652
|
VTab: typeof import('vuetify/components')['VTab']
|
|
2655
2653
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
2656
2654
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
|
2657
2655
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
|
2658
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
|
2659
2656
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
2660
|
-
|
|
2657
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
2661
2658
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
2662
2659
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
2663
2660
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
2664
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
2665
2661
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
2666
2662
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
2663
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
2664
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
2667
2665
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
2668
2666
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
2667
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
2669
2668
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
|
2670
2669
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
2671
2670
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
2672
|
-
|
|
2671
|
+
VHover: typeof import('vuetify/components')['VHover']
|
|
2673
2672
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
2674
2673
|
VCol: typeof import('vuetify/components')['VCol']
|
|
2675
2674
|
VRow: typeof import('vuetify/components')['VRow']
|
|
2676
2675
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
2677
|
-
|
|
2678
|
-
|
|
2676
|
+
VIcon: typeof import('vuetify/components')['VIcon']
|
|
2677
|
+
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
2678
|
+
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
2679
|
+
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
2680
|
+
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
2681
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
2679
2682
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
2680
2683
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
2681
2684
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
@@ -2684,14 +2687,13 @@ declare module 'vue' {
|
|
|
2684
2687
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
2685
2688
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
2686
2689
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
2687
|
-
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
|
2688
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
|
2689
2690
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
2691
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
|
2692
|
+
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
|
2693
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
|
2690
2694
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
2691
2695
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
2692
2696
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
2693
|
-
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
|
2694
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
2695
2697
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
2696
2698
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
2697
2699
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -2708,29 +2710,29 @@ declare module 'vue' {
|
|
|
2708
2710
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
2709
2711
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
2710
2712
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
2711
|
-
|
|
2712
|
-
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
|
2713
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
|
2714
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
|
2715
|
-
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
|
2716
|
-
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
|
2717
|
-
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
|
2713
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
2718
2714
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
2719
2715
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
2720
2716
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
2721
2717
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
2722
2718
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
2723
2719
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
|
2720
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
|
2721
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
|
2727
2722
|
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
|
2723
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
|
2724
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
|
2725
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
|
2728
2726
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
2729
2727
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
2728
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
|
2729
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
|
2730
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
|
2730
2731
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
|
2731
2732
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
|
2732
2733
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
|
2733
2734
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
|
2735
|
+
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
|
2734
2736
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
|
2735
2737
|
}
|
|
2736
2738
|
}
|
package/lib/framework.js
CHANGED
package/lib/iconsets/fa.js
CHANGED
|
@@ -43,7 +43,9 @@ const aliases = {
|
|
|
43
43
|
calendar: 'fas fa-calendar',
|
|
44
44
|
treeviewCollapse: 'fas fa-caret-down',
|
|
45
45
|
treeviewExpand: 'fas fa-caret-right',
|
|
46
|
-
eyeDropper: 'fas fa-eye-dropper'
|
|
46
|
+
eyeDropper: 'fas fa-eye-dropper',
|
|
47
|
+
upload: 'fas fa-cloud-upload-alt',
|
|
48
|
+
color: 'fas fa-palette'
|
|
47
49
|
};
|
|
48
50
|
const fa = {
|
|
49
51
|
component: VClassIcon
|
package/lib/iconsets/fa.js.map
CHANGED
|
@@ -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","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}\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;
|
|
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","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}\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;AACT,CAAC;AAED,MAAMC,EAAW,GAAG;EAClBC,SAAS,EAAE5C;AACb,CAAC;AAED,SAASC,OAAO,EAAE0C,EAAE","ignoreList":[]}
|
package/lib/iconsets/fa4.js
CHANGED
|
@@ -46,7 +46,9 @@ const aliases = {
|
|
|
46
46
|
calendar: 'fa-calendar',
|
|
47
47
|
treeviewCollapse: 'fa-caret-down',
|
|
48
48
|
treeviewExpand: 'fa-caret-right',
|
|
49
|
-
eyeDropper: 'fa-eye-dropper'
|
|
49
|
+
eyeDropper: 'fa-eye-dropper',
|
|
50
|
+
upload: 'fa-cloud-upload',
|
|
51
|
+
color: 'fa-paint-brush'
|
|
50
52
|
};
|
|
51
53
|
const fa = {
|
|
52
54
|
// Not using mergeProps here, functional components merge props by default (?)
|
package/lib/iconsets/fa4.js.map
CHANGED
|
@@ -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","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}\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;
|
|
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","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}\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;AACT,CAAC;AAED,MAAMC,EAAW,GAAG;EAClB;EACAC,SAAS,EAAEC,KAAK,IAAI7C,CAAC,CAACD,UAAU,EAAE;IAAE,GAAG8C,KAAK;IAAEC,KAAK,EAAE;EAAK,CAAC;AAC7D,CAAC;AAED,SAAS7C,OAAO,EAAE0C,EAAE","ignoreList":[]}
|
package/lib/iconsets/md.js
CHANGED
|
@@ -45,7 +45,9 @@ const aliases = {
|
|
|
45
45
|
calendar: 'event',
|
|
46
46
|
treeviewCollapse: 'arrow_drop_down',
|
|
47
47
|
treeviewExpand: 'arrow_right',
|
|
48
|
-
eyeDropper: 'colorize'
|
|
48
|
+
eyeDropper: 'colorize',
|
|
49
|
+
upload: 'cloud_upload',
|
|
50
|
+
color: 'palette'
|
|
49
51
|
};
|
|
50
52
|
const md = {
|
|
51
53
|
// Not using mergeProps here, functional components merge props by default (?)
|
package/lib/iconsets/md.js.map
CHANGED
|
@@ -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","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}\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;
|
|
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","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}\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;AACT,CAAC;AAED,MAAMC,EAAW,GAAG;EAClB;EACAC,SAAS,EAAEC,KAAK,IAAI7C,CAAC,CAACD,aAAa,EAAE;IAAE,GAAG8C,KAAK;IAAEC,KAAK,EAAE;EAAiB,CAAC;AAC5E,CAAC;AAED,SAAS7C,OAAO,EAAE0C,EAAE","ignoreList":[]}
|
package/lib/iconsets/mdi-svg.js
CHANGED
|
@@ -42,7 +42,9 @@ const aliases = {
|
|
|
42
42
|
calendar: 'svg:M19,19H5V8H19M16,1V3H8V1H6V3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3H18V1M17,12H12V17H17V12Z',
|
|
43
43
|
treeviewCollapse: 'svg:M7,10L12,15L17,10H7Z',
|
|
44
44
|
treeviewExpand: 'svg:M10,17L15,12L10,7V17Z',
|
|
45
|
-
eyeDropper: 'svg:M19.35,11.72L17.22,13.85L15.81,12.43L8.1,20.14L3.5,22L2,20.5L3.86,15.9L11.57,8.19L10.15,6.78L12.28,4.65L19.35,11.72M16.76,3C17.93,1.83 19.83,1.83 21,3C22.17,4.17 22.17,6.07 21,7.24L19.08,9.16L14.84,4.92L16.76,3M5.56,17.03L4.5,19.5L6.97,18.44L14.4,11L13,9.6L5.56,17.03Z'
|
|
45
|
+
eyeDropper: 'svg:M19.35,11.72L17.22,13.85L15.81,12.43L8.1,20.14L3.5,22L2,20.5L3.86,15.9L11.57,8.19L10.15,6.78L12.28,4.65L19.35,11.72M16.76,3C17.93,1.83 19.83,1.83 21,3C22.17,4.17 22.17,6.07 21,7.24L19.08,9.16L14.84,4.92L16.76,3M5.56,17.03L4.5,19.5L6.97,18.44L14.4,11L13,9.6L5.56,17.03Z',
|
|
46
|
+
upload: 'svg:M11 20H6.5q-2.28 0-3.89-1.57Q1 16.85 1 14.58q0-1.95 1.17-3.48q1.18-1.53 3.08-1.95q.63-2.3 2.5-3.72Q9.63 4 12 4q2.93 0 4.96 2.04Q19 8.07 19 11q1.73.2 2.86 1.5q1.14 1.28 1.14 3q0 1.88-1.31 3.19T18.5 20H13v-7.15l1.6 1.55L16 13l-4-4l-4 4l1.4 1.4l1.6-1.55Z',
|
|
47
|
+
color: 'svg:M17.5 12a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 17.5 9a1.5 1.5 0 0 1 1.5 1.5a1.5 1.5 0 0 1-1.5 1.5m-3-4A1.5 1.5 0 0 1 13 6.5A1.5 1.5 0 0 1 14.5 5A1.5 1.5 0 0 1 16 6.5A1.5 1.5 0 0 1 14.5 8m-5 0A1.5 1.5 0 0 1 8 6.5A1.5 1.5 0 0 1 9.5 5A1.5 1.5 0 0 1 11 6.5A1.5 1.5 0 0 1 9.5 8m-3 4A1.5 1.5 0 0 1 5 10.5A1.5 1.5 0 0 1 6.5 9A1.5 1.5 0 0 1 8 10.5A1.5 1.5 0 0 1 6.5 12M12 3a9 9 0 0 0-9 9a9 9 0 0 0 9 9a1.5 1.5 0 0 0 1.5-1.5c0-.39-.15-.74-.39-1c-.23-.27-.38-.62-.38-1a1.5 1.5 0 0 1 1.5-1.5H16a5 5 0 0 0 5-5c0-4.42-4.03-8-9-8'
|
|
46
48
|
};
|
|
47
49
|
const mdi = {
|
|
48
50
|
component: VSvgIcon
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mdi-svg.js","names":["VSvgIcon","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","mdi","component"],"sources":["../../src/iconsets/mdi-svg.ts"],"sourcesContent":["/* eslint-disable max-len */\n\n// Composables\nimport { VSvgIcon } from '@/composables/icons'\n\n// Types\nimport type { IconAliases, IconSet } from '@/composables/icons'\n\nconst aliases: IconAliases = {\n collapse: 'svg:M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z',\n complete: 'svg:M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z',\n cancel: 'svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z',\n close: 'svg:M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z',\n delete: 'svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z', // delete (e.g. v-chip close)\n clear: 'svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z',\n success: 'svg:M12,2C17.52,2 22,6.48 22,12C22,17.52 17.52,22 12,22C6.48,22 2,17.52 2,12C2,6.48 6.48,2 12,2M11,16.5L18,9.5L16.59,8.09L11,13.67L7.91,10.59L6.5,12L11,16.5Z',\n info: 'svg:M13,9H11V7H13M13,17H11V11H13M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2Z',\n warning: 'svg:M13,13H11V7H13M13,17H11V15H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z',\n error: 'svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z',\n prev: 'svg:M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z',\n next: 'svg:M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z',\n checkboxOn: 'svg:M10,17L5,12L6.41,10.58L10,14.17L17.59,6.58L19,8M19,3H5C3.89,3 3,3.89 3,5V19C3,20.1 3.9,21 5,21H19C20.1,21 21,20.1 21,19V5C21,3.89 20.1,3 19,3Z',\n checkboxOff: 'svg:M19,3H5C3.89,3 3,3.89 3,5V19C3,20.1 3.9,21 5,21H19C20.1,21 21,20.1 21,19V5C21,3.89 20.1,3 19,3M19,5V19H5V5H19Z',\n checkboxIndeterminate: 'svg:M17,13H7V11H17M19,3H5C3.89,3 3,3.89 3,5V19C3,20.1 3.9,21 5,21H19C20.1,21 21,20.1 21,19V5C21,3.89 20.1,3 19,3Z',\n delimiter: 'svg:M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2Z', // for carousel\n sortAsc: 'svg:M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z',\n sortDesc: 'svg:M11,4H13V16L18.5,10.5L19.92,11.92L12,19.84L4.08,11.92L5.5,10.5L11,16V4Z',\n expand: 'svg:M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z',\n menu: 'svg:M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z',\n subgroup: 'svg:M7,10L12,15L17,10H7Z',\n dropdown: 'svg:M7,10L12,15L17,10H7Z',\n radioOn: 'svg:M12,20C7.58,20 4,16.42 4,12C4,7.58 7.58,4 12,4C16.42,4 20,7.58 20,12C20,16.42 16.42,20 12,20M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2M12,7C9.24,7 7,9.24 7,12C7,14.76 9.24,17 12,17C14.76,17 17,14.76 17,12C17,9.24 14.76,7 12,7Z',\n radioOff: 'svg:M12,20C7.58,20 4,16.42 4,12C4,7.58 7.58,4 12,4C16.42,4 20,7.58 20,12C20,16.42 16.42,20 12,20M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2Z',\n edit: 'svg:M20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18,2.9 17.35,2.9 16.96,3.29L15.12,5.12L18.87,8.87M3,17.25V21H6.75L17.81,9.93L14.06,6.18L3,17.25Z',\n ratingEmpty: 'svg:M12,15.39L8.24,17.66L9.23,13.38L5.91,10.5L10.29,10.13L12,6.09L13.71,10.13L18.09,10.5L14.77,13.38L15.76,17.66M22,9.24L14.81,8.63L12,2L9.19,8.63L2,9.24L7.45,13.97L5.82,21L12,17.27L18.18,21L16.54,13.97L22,9.24Z',\n ratingFull: 'svg:M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z',\n ratingHalf: 'svg:M12,15.4V6.1L13.71,10.13L18.09,10.5L14.77,13.39L15.76,17.67M22,9.24L14.81,8.63L12,2L9.19,8.63L2,9.24L7.45,13.97L5.82,21L12,17.27L18.18,21L16.54,13.97L22,9.24Z',\n loading: 'svg:M19,8L15,12H18C18,15.31 15.31,18 12,18C11,18 10.03,17.75 9.2,17.3L7.74,18.76C8.97,19.54 10.43,20 12,20C16.42,20 20,16.42 20,12H23M6,12C6,8.69 8.69,6 12,6C13,6 13.97,6.25 14.8,6.7L16.26,5.24C15.03,4.46 13.57,4 12,4C7.58,4 4,7.58 4,12H1L5,16L9,12',\n first: 'svg:M18.41,16.59L13.82,12L18.41,7.41L17,6L11,12L17,18L18.41,16.59M6,6H8V18H6V6Z',\n last: 'svg:M5.59,7.41L10.18,12L5.59,16.59L7,18L13,12L7,6L5.59,7.41M16,6H18V18H16V6Z',\n unfold: 'svg:M12,18.17L8.83,15L7.42,16.41L12,21L16.59,16.41L15.17,15M12,5.83L15.17,9L16.58,7.59L12,3L7.41,7.59L8.83,9L12,5.83Z',\n file: 'svg:M16.5,6V17.5C16.5,19.71 14.71,21.5 12.5,21.5C10.29,21.5 8.5,19.71 8.5,17.5V5C8.5,3.62 9.62,2.5 11,2.5C12.38,2.5 13.5,3.62 13.5,5V15.5C13.5,16.05 13.05,16.5 12.5,16.5C11.95,16.5 11.5,16.05 11.5,15.5V6H10V15.5C10,16.88 11.12,18 12.5,18C13.88,18 15,16.88 15,15.5V5C15,2.79 13.21,1 11,1C8.79,1 7,2.79 7,5V17.5C7,20.54 9.46,23 12.5,23C15.54,23 18,20.54 18,17.5V6H16.5Z',\n plus: 'svg:M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z',\n minus: 'svg:M19,13H5V11H19V13Z',\n calendar: 'svg:M19,19H5V8H19M16,1V3H8V1H6V3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3H18V1M17,12H12V17H17V12Z',\n treeviewCollapse: 'svg:M7,10L12,15L17,10H7Z',\n treeviewExpand: 'svg:M10,17L15,12L10,7V17Z',\n eyeDropper: 'svg:M19.35,11.72L17.22,13.85L15.81,12.43L8.1,20.14L3.5,22L2,20.5L3.86,15.9L11.57,8.19L10.15,6.78L12.28,4.65L19.35,11.72M16.76,3C17.93,1.83 19.83,1.83 21,3C22.17,4.17 22.17,6.07 21,7.24L19.08,9.16L14.84,4.92L16.76,3M5.56,17.03L4.5,19.5L6.97,18.44L14.4,11L13,9.6L5.56,17.03Z',\n}\n\nconst mdi: IconSet = {\n component: VSvgIcon,\n}\n\nexport { aliases, mdi }\n"],"mappings":"AAAA;AAEA;AAAA,SACSA,QAAQ,mCAEjB;AAGA,MAAMC,OAAoB,GAAG;EAC3BC,QAAQ,EAAE,kEAAkE;EAC5EC,QAAQ,EAAE,6DAA6D;EACvEC,MAAM,EAAE,8MAA8M;EACtNC,KAAK,EAAE,mHAAmH;EAC1HC,MAAM,EAAE,8MAA8M;EAAE;EACxNC,KAAK,EAAE,8MAA8M;EACrNC,OAAO,EAAE,+JAA+J;EACxKC,IAAI,EAAE,8HAA8H;EACpIC,OAAO,EAAE,+GAA+G;EACxHC,KAAK,EAAE,8MAA8M;EACrNC,IAAI,EAAE,mEAAmE;EACzEC,IAAI,EAAE,iEAAiE;EACvEC,UAAU,EAAE,oJAAoJ;EAChKC,WAAW,EAAE,oHAAoH;EACjIC,qBAAqB,EAAE,mHAAmH;EAC1IC,SAAS,EAAE,kGAAkG;EAAE;EAC/GC,OAAO,EAAE,4EAA4E;EACrFC,QAAQ,EAAE,6EAA6E;EACvFC,MAAM,EAAE,gEAAgE;EACxEC,IAAI,EAAE,oDAAoD;EAC1DC,QAAQ,EAAE,0BAA0B;EACpCC,QAAQ,EAAE,0BAA0B;EACpCC,OAAO,EAAE,yRAAyR;EAClSC,QAAQ,EAAE,8LAA8L;EACxMC,IAAI,EAAE,yJAAyJ;EAC/JC,WAAW,EAAE,qNAAqN;EAClOC,UAAU,EAAE,0GAA0G;EACtHC,UAAU,EAAE,oKAAoK;EAChLC,OAAO,EAAE,0PAA0P;EACnQC,KAAK,EAAE,iFAAiF;EACxFC,IAAI,EAAE,8EAA8E;EACpFC,MAAM,EAAE,uHAAuH;EAC/HC,IAAI,EAAE,iXAAiX;EACvXC,IAAI,EAAE,+CAA+C;EACrDC,KAAK,EAAE,wBAAwB;EAC/BC,QAAQ,EAAE,yIAAyI;EACnJC,gBAAgB,EAAE,0BAA0B;EAC5CC,cAAc,EAAE,2BAA2B;EAC3CC,UAAU,EAAE;
|
|
1
|
+
{"version":3,"file":"mdi-svg.js","names":["VSvgIcon","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","mdi","component"],"sources":["../../src/iconsets/mdi-svg.ts"],"sourcesContent":["/* eslint-disable max-len */\n\n// Composables\nimport { VSvgIcon } from '@/composables/icons'\n\n// Types\nimport type { IconAliases, IconSet } from '@/composables/icons'\n\nconst aliases: IconAliases = {\n collapse: 'svg:M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z',\n complete: 'svg:M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z',\n cancel: 'svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z',\n close: 'svg:M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z',\n delete: 'svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z', // delete (e.g. v-chip close)\n clear: 'svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z',\n success: 'svg:M12,2C17.52,2 22,6.48 22,12C22,17.52 17.52,22 12,22C6.48,22 2,17.52 2,12C2,6.48 6.48,2 12,2M11,16.5L18,9.5L16.59,8.09L11,13.67L7.91,10.59L6.5,12L11,16.5Z',\n info: 'svg:M13,9H11V7H13M13,17H11V11H13M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2Z',\n warning: 'svg:M13,13H11V7H13M13,17H11V15H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z',\n error: 'svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z',\n prev: 'svg:M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z',\n next: 'svg:M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z',\n checkboxOn: 'svg:M10,17L5,12L6.41,10.58L10,14.17L17.59,6.58L19,8M19,3H5C3.89,3 3,3.89 3,5V19C3,20.1 3.9,21 5,21H19C20.1,21 21,20.1 21,19V5C21,3.89 20.1,3 19,3Z',\n checkboxOff: 'svg:M19,3H5C3.89,3 3,3.89 3,5V19C3,20.1 3.9,21 5,21H19C20.1,21 21,20.1 21,19V5C21,3.89 20.1,3 19,3M19,5V19H5V5H19Z',\n checkboxIndeterminate: 'svg:M17,13H7V11H17M19,3H5C3.89,3 3,3.89 3,5V19C3,20.1 3.9,21 5,21H19C20.1,21 21,20.1 21,19V5C21,3.89 20.1,3 19,3Z',\n delimiter: 'svg:M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2Z', // for carousel\n sortAsc: 'svg:M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z',\n sortDesc: 'svg:M11,4H13V16L18.5,10.5L19.92,11.92L12,19.84L4.08,11.92L5.5,10.5L11,16V4Z',\n expand: 'svg:M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z',\n menu: 'svg:M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z',\n subgroup: 'svg:M7,10L12,15L17,10H7Z',\n dropdown: 'svg:M7,10L12,15L17,10H7Z',\n radioOn: 'svg:M12,20C7.58,20 4,16.42 4,12C4,7.58 7.58,4 12,4C16.42,4 20,7.58 20,12C20,16.42 16.42,20 12,20M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2M12,7C9.24,7 7,9.24 7,12C7,14.76 9.24,17 12,17C14.76,17 17,14.76 17,12C17,9.24 14.76,7 12,7Z',\n radioOff: 'svg:M12,20C7.58,20 4,16.42 4,12C4,7.58 7.58,4 12,4C16.42,4 20,7.58 20,12C20,16.42 16.42,20 12,20M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2Z',\n edit: 'svg:M20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18,2.9 17.35,2.9 16.96,3.29L15.12,5.12L18.87,8.87M3,17.25V21H6.75L17.81,9.93L14.06,6.18L3,17.25Z',\n ratingEmpty: 'svg:M12,15.39L8.24,17.66L9.23,13.38L5.91,10.5L10.29,10.13L12,6.09L13.71,10.13L18.09,10.5L14.77,13.38L15.76,17.66M22,9.24L14.81,8.63L12,2L9.19,8.63L2,9.24L7.45,13.97L5.82,21L12,17.27L18.18,21L16.54,13.97L22,9.24Z',\n ratingFull: 'svg:M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z',\n ratingHalf: 'svg:M12,15.4V6.1L13.71,10.13L18.09,10.5L14.77,13.39L15.76,17.67M22,9.24L14.81,8.63L12,2L9.19,8.63L2,9.24L7.45,13.97L5.82,21L12,17.27L18.18,21L16.54,13.97L22,9.24Z',\n loading: 'svg:M19,8L15,12H18C18,15.31 15.31,18 12,18C11,18 10.03,17.75 9.2,17.3L7.74,18.76C8.97,19.54 10.43,20 12,20C16.42,20 20,16.42 20,12H23M6,12C6,8.69 8.69,6 12,6C13,6 13.97,6.25 14.8,6.7L16.26,5.24C15.03,4.46 13.57,4 12,4C7.58,4 4,7.58 4,12H1L5,16L9,12',\n first: 'svg:M18.41,16.59L13.82,12L18.41,7.41L17,6L11,12L17,18L18.41,16.59M6,6H8V18H6V6Z',\n last: 'svg:M5.59,7.41L10.18,12L5.59,16.59L7,18L13,12L7,6L5.59,7.41M16,6H18V18H16V6Z',\n unfold: 'svg:M12,18.17L8.83,15L7.42,16.41L12,21L16.59,16.41L15.17,15M12,5.83L15.17,9L16.58,7.59L12,3L7.41,7.59L8.83,9L12,5.83Z',\n file: 'svg:M16.5,6V17.5C16.5,19.71 14.71,21.5 12.5,21.5C10.29,21.5 8.5,19.71 8.5,17.5V5C8.5,3.62 9.62,2.5 11,2.5C12.38,2.5 13.5,3.62 13.5,5V15.5C13.5,16.05 13.05,16.5 12.5,16.5C11.95,16.5 11.5,16.05 11.5,15.5V6H10V15.5C10,16.88 11.12,18 12.5,18C13.88,18 15,16.88 15,15.5V5C15,2.79 13.21,1 11,1C8.79,1 7,2.79 7,5V17.5C7,20.54 9.46,23 12.5,23C15.54,23 18,20.54 18,17.5V6H16.5Z',\n plus: 'svg:M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z',\n minus: 'svg:M19,13H5V11H19V13Z',\n calendar: 'svg:M19,19H5V8H19M16,1V3H8V1H6V3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3H18V1M17,12H12V17H17V12Z',\n treeviewCollapse: 'svg:M7,10L12,15L17,10H7Z',\n treeviewExpand: 'svg:M10,17L15,12L10,7V17Z',\n eyeDropper: 'svg:M19.35,11.72L17.22,13.85L15.81,12.43L8.1,20.14L3.5,22L2,20.5L3.86,15.9L11.57,8.19L10.15,6.78L12.28,4.65L19.35,11.72M16.76,3C17.93,1.83 19.83,1.83 21,3C22.17,4.17 22.17,6.07 21,7.24L19.08,9.16L14.84,4.92L16.76,3M5.56,17.03L4.5,19.5L6.97,18.44L14.4,11L13,9.6L5.56,17.03Z',\n upload: 'svg:M11 20H6.5q-2.28 0-3.89-1.57Q1 16.85 1 14.58q0-1.95 1.17-3.48q1.18-1.53 3.08-1.95q.63-2.3 2.5-3.72Q9.63 4 12 4q2.93 0 4.96 2.04Q19 8.07 19 11q1.73.2 2.86 1.5q1.14 1.28 1.14 3q0 1.88-1.31 3.19T18.5 20H13v-7.15l1.6 1.55L16 13l-4-4l-4 4l1.4 1.4l1.6-1.55Z',\n color: 'svg:M17.5 12a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 17.5 9a1.5 1.5 0 0 1 1.5 1.5a1.5 1.5 0 0 1-1.5 1.5m-3-4A1.5 1.5 0 0 1 13 6.5A1.5 1.5 0 0 1 14.5 5A1.5 1.5 0 0 1 16 6.5A1.5 1.5 0 0 1 14.5 8m-5 0A1.5 1.5 0 0 1 8 6.5A1.5 1.5 0 0 1 9.5 5A1.5 1.5 0 0 1 11 6.5A1.5 1.5 0 0 1 9.5 8m-3 4A1.5 1.5 0 0 1 5 10.5A1.5 1.5 0 0 1 6.5 9A1.5 1.5 0 0 1 8 10.5A1.5 1.5 0 0 1 6.5 12M12 3a9 9 0 0 0-9 9a9 9 0 0 0 9 9a1.5 1.5 0 0 0 1.5-1.5c0-.39-.15-.74-.39-1c-.23-.27-.38-.62-.38-1a1.5 1.5 0 0 1 1.5-1.5H16a5 5 0 0 0 5-5c0-4.42-4.03-8-9-8',\n}\n\nconst mdi: IconSet = {\n component: VSvgIcon,\n}\n\nexport { aliases, mdi }\n"],"mappings":"AAAA;AAEA;AAAA,SACSA,QAAQ,mCAEjB;AAGA,MAAMC,OAAoB,GAAG;EAC3BC,QAAQ,EAAE,kEAAkE;EAC5EC,QAAQ,EAAE,6DAA6D;EACvEC,MAAM,EAAE,8MAA8M;EACtNC,KAAK,EAAE,mHAAmH;EAC1HC,MAAM,EAAE,8MAA8M;EAAE;EACxNC,KAAK,EAAE,8MAA8M;EACrNC,OAAO,EAAE,+JAA+J;EACxKC,IAAI,EAAE,8HAA8H;EACpIC,OAAO,EAAE,+GAA+G;EACxHC,KAAK,EAAE,8MAA8M;EACrNC,IAAI,EAAE,mEAAmE;EACzEC,IAAI,EAAE,iEAAiE;EACvEC,UAAU,EAAE,oJAAoJ;EAChKC,WAAW,EAAE,oHAAoH;EACjIC,qBAAqB,EAAE,mHAAmH;EAC1IC,SAAS,EAAE,kGAAkG;EAAE;EAC/GC,OAAO,EAAE,4EAA4E;EACrFC,QAAQ,EAAE,6EAA6E;EACvFC,MAAM,EAAE,gEAAgE;EACxEC,IAAI,EAAE,oDAAoD;EAC1DC,QAAQ,EAAE,0BAA0B;EACpCC,QAAQ,EAAE,0BAA0B;EACpCC,OAAO,EAAE,yRAAyR;EAClSC,QAAQ,EAAE,8LAA8L;EACxMC,IAAI,EAAE,yJAAyJ;EAC/JC,WAAW,EAAE,qNAAqN;EAClOC,UAAU,EAAE,0GAA0G;EACtHC,UAAU,EAAE,oKAAoK;EAChLC,OAAO,EAAE,0PAA0P;EACnQC,KAAK,EAAE,iFAAiF;EACxFC,IAAI,EAAE,8EAA8E;EACpFC,MAAM,EAAE,uHAAuH;EAC/HC,IAAI,EAAE,iXAAiX;EACvXC,IAAI,EAAE,+CAA+C;EACrDC,KAAK,EAAE,wBAAwB;EAC/BC,QAAQ,EAAE,yIAAyI;EACnJC,gBAAgB,EAAE,0BAA0B;EAC5CC,cAAc,EAAE,2BAA2B;EAC3CC,UAAU,EAAE,kRAAkR;EAC9RC,MAAM,EAAE,iQAAiQ;EACzQC,KAAK,EAAE;AACT,CAAC;AAED,MAAMC,GAAY,GAAG;EACnBC,SAAS,EAAE5C;AACb,CAAC;AAED,SAASC,OAAO,EAAE0C,GAAG","ignoreList":[]}
|
|
@@ -8,7 +8,7 @@ import { makeVConfirmEditProps, VConfirmEdit } from "../../components/VConfirmEd
|
|
|
8
8
|
import { VIcon } from "../../components/VIcon/VIcon.js";
|
|
9
9
|
import { VMenu } from "../../components/VMenu/VMenu.js";
|
|
10
10
|
import { makeVTextFieldProps, VTextField } from "../../components/VTextField/VTextField.js"; // Composables
|
|
11
|
-
import { makeFocusProps
|
|
11
|
+
import { makeFocusProps } from "../../composables/focus.js";
|
|
12
12
|
import { useProxiedModel } from "../../composables/proxiedModel.js"; // Utilities
|
|
13
13
|
import { computed, shallowRef } from 'vue';
|
|
14
14
|
import { genericComponent, omit, propsFactory, useRender } from "../../util/index.js"; // Types
|
|
@@ -33,13 +33,9 @@ export const VColorInput = genericComponent()({
|
|
|
33
33
|
let {
|
|
34
34
|
slots
|
|
35
35
|
} = _ref;
|
|
36
|
-
const {
|
|
37
|
-
isFocused,
|
|
38
|
-
focus,
|
|
39
|
-
blur
|
|
40
|
-
} = useFocus(props);
|
|
41
36
|
const model = useProxiedModel(props, 'modelValue');
|
|
42
37
|
const menu = shallowRef(false);
|
|
38
|
+
const isFocused = shallowRef(props.focused);
|
|
43
39
|
const isInteractive = computed(() => !props.disabled && !props.readonly);
|
|
44
40
|
const display = computed(() => model.value || null);
|
|
45
41
|
function onKeydown(e) {
|
|
@@ -70,10 +66,9 @@ export const VColorInput = genericComponent()({
|
|
|
70
66
|
"modelValue": display.value,
|
|
71
67
|
"onKeydown": isInteractive.value ? onKeydown : undefined,
|
|
72
68
|
"focused": menu.value || isFocused.value,
|
|
73
|
-
"onFocus": focus,
|
|
74
|
-
"onBlur": blur,
|
|
75
69
|
"onClick:control": isInteractive.value ? onClick : undefined,
|
|
76
70
|
"onClick:prependInner": isInteractive.value ? onClick : undefined,
|
|
71
|
+
"onUpdate:focused": event => isFocused.value = event,
|
|
77
72
|
"onClick:appendInner": isInteractive.value ? onClick : undefined,
|
|
78
73
|
"onUpdate:modelValue": val => {
|
|
79
74
|
model.value = val;
|