@vuetify/nightly 3.7.0-master.2024-08-16 → 3.7.0-master.2024-08-21
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/dist/json/attributes.json +169 -169
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +130 -130
- package/dist/json/web-types.json +210 -210
- package/dist/vuetify-labs.css +2226 -2226
- package/dist/vuetify-labs.d.ts +5 -2
- package/dist/vuetify-labs.esm.js +3 -3
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +3 -3
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2018 -2018
- package/dist/vuetify.d.ts +82 -88
- package/dist/vuetify.esm.js +3 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +3 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +3 -3
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.mts +4 -1
- package/lib/blueprints/md1.d.mts +4 -1
- package/lib/blueprints/md2.d.mts +4 -1
- package/lib/blueprints/md3.d.mts +4 -1
- package/lib/components/VAlert/index.d.mts +4 -1
- package/lib/components/VAppBar/index.d.mts +4 -1
- package/lib/components/VAutocomplete/index.d.mts +4 -1
- package/lib/components/VAvatar/index.d.mts +4 -1
- package/lib/components/VBadge/index.d.mts +4 -1
- package/lib/components/VBanner/index.d.mts +4 -1
- package/lib/components/VBreadcrumbs/index.d.mts +4 -1
- package/lib/components/VBtn/index.d.mts +4 -1
- package/lib/components/VCard/index.d.mts +4 -1
- package/lib/components/VCarousel/index.d.mts +4 -1
- package/lib/components/VCheckbox/index.d.mts +4 -1
- package/lib/components/VChip/index.d.mts +4 -1
- package/lib/components/VChipGroup/index.d.mts +4 -1
- package/lib/components/VCombobox/index.d.mts +4 -1
- package/lib/components/VDataTable/index.d.mts +4 -1
- package/lib/components/VDatePicker/index.d.mts +4 -1
- package/lib/components/VEmptyState/index.d.mts +4 -1
- package/lib/components/VExpansionPanel/index.d.mts +4 -1
- package/lib/components/VFab/index.d.mts +4 -1
- package/lib/components/VField/index.d.mts +4 -1
- package/lib/components/VFileInput/index.d.mts +4 -1
- package/lib/components/VIcon/index.d.mts +4 -1
- package/lib/components/VInput/index.d.mts +4 -1
- package/lib/components/VList/index.d.mts +4 -1
- package/lib/components/VPagination/index.d.mts +4 -1
- package/lib/components/VRadio/index.d.mts +4 -1
- package/lib/components/VRadioGroup/index.d.mts +4 -1
- package/lib/components/VRangeSlider/index.d.mts +4 -1
- package/lib/components/VRating/index.d.mts +4 -1
- package/lib/components/VSelect/index.d.mts +4 -1
- package/lib/components/VSelectionControl/index.d.mts +4 -1
- package/lib/components/VSelectionControlGroup/index.d.mts +4 -1
- package/lib/components/VSlideGroup/index.d.mts +4 -1
- package/lib/components/VSlider/index.d.mts +4 -1
- package/lib/components/VSwitch/index.d.mts +4 -1
- package/lib/components/VTabs/index.d.mts +4 -1
- package/lib/components/VTextField/index.d.mts +4 -1
- package/lib/components/VTextarea/index.d.mts +4 -1
- package/lib/components/VTimeline/index.d.mts +4 -1
- package/lib/components/VWindow/index.d.mts +4 -1
- package/lib/components/index.d.mts +4 -1
- package/lib/composables/icons.mjs.map +1 -1
- package/lib/composables/index.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/iconsets/fa-svg.d.mts +4 -1
- package/lib/iconsets/fa.d.mts +4 -1
- package/lib/iconsets/fa4.d.mts +4 -1
- package/lib/iconsets/md.d.mts +4 -1
- package/lib/iconsets/mdi-svg.d.mts +4 -1
- package/lib/iconsets/mdi.d.mts +4 -1
- package/lib/index.d.mts +82 -88
- package/lib/labs/VDateInput/index.d.mts +4 -1
- package/lib/labs/VNumberInput/index.d.mts +4 -1
- package/lib/labs/VStepperVertical/index.d.mts +4 -1
- package/lib/labs/VTreeview/index.d.mts +4 -1
- package/lib/labs/components.d.mts +4 -1
- package/package.json +1 -5
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Ref, ComponentPublicInstance,
|
1
|
+
import { Ref, ComponentPublicInstance, PropType, FunctionalComponent } from 'vue';
|
2
2
|
|
3
3
|
interface LocaleMessages {
|
4
4
|
[key: string]: LocaleMessages | string;
|
@@ -141,6 +141,9 @@ interface OnColors {
|
|
141
141
|
'on-info': string;
|
142
142
|
}
|
143
143
|
|
144
|
+
type JSXComponent<Props = any> = {
|
145
|
+
new (): ComponentPublicInstance<Props>;
|
146
|
+
} | FunctionalComponent<Props>;
|
144
147
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
145
148
|
declare const IconValue: PropType<IconValue>;
|
146
149
|
interface IconAliases {
|
package/lib/blueprints/md1.d.mts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Ref, ComponentPublicInstance,
|
1
|
+
import { Ref, ComponentPublicInstance, PropType, FunctionalComponent } from 'vue';
|
2
2
|
|
3
3
|
interface LocaleMessages {
|
4
4
|
[key: string]: LocaleMessages | string;
|
@@ -141,6 +141,9 @@ interface OnColors {
|
|
141
141
|
'on-info': string;
|
142
142
|
}
|
143
143
|
|
144
|
+
type JSXComponent<Props = any> = {
|
145
|
+
new (): ComponentPublicInstance<Props>;
|
146
|
+
} | FunctionalComponent<Props>;
|
144
147
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
145
148
|
declare const IconValue: PropType<IconValue>;
|
146
149
|
interface IconAliases {
|
package/lib/blueprints/md2.d.mts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Ref, ComponentPublicInstance,
|
1
|
+
import { Ref, ComponentPublicInstance, PropType, FunctionalComponent } from 'vue';
|
2
2
|
|
3
3
|
interface LocaleMessages {
|
4
4
|
[key: string]: LocaleMessages | string;
|
@@ -141,6 +141,9 @@ interface OnColors {
|
|
141
141
|
'on-info': string;
|
142
142
|
}
|
143
143
|
|
144
|
+
type JSXComponent<Props = any> = {
|
145
|
+
new (): ComponentPublicInstance<Props>;
|
146
|
+
} | FunctionalComponent<Props>;
|
144
147
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
145
148
|
declare const IconValue: PropType<IconValue>;
|
146
149
|
interface IconAliases {
|
package/lib/blueprints/md3.d.mts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Ref, ComponentPublicInstance,
|
1
|
+
import { Ref, ComponentPublicInstance, PropType, FunctionalComponent } from 'vue';
|
2
2
|
|
3
3
|
interface LocaleMessages {
|
4
4
|
[key: string]: LocaleMessages | string;
|
@@ -141,6 +141,9 @@ interface OnColors {
|
|
141
141
|
'on-info': string;
|
142
142
|
}
|
143
143
|
|
144
|
+
type JSXComponent<Props = any> = {
|
145
|
+
new (): ComponentPublicInstance<Props>;
|
146
|
+
} | FunctionalComponent<Props>;
|
144
147
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
145
148
|
declare const IconValue: PropType<IconValue>;
|
146
149
|
interface IconAliases {
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent } from 'vue';
|
3
3
|
|
4
4
|
type ClassValue = any;
|
5
5
|
|
@@ -18,6 +18,9 @@ interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions
|
|
18
18
|
declare const allowedVariants: readonly ["elevated", "flat", "tonal", "outlined", "text", "plain"];
|
19
19
|
type Variant = typeof allowedVariants[number];
|
20
20
|
|
21
|
+
type JSXComponent<Props = any> = {
|
22
|
+
new (): ComponentPublicInstance<Props>;
|
23
|
+
} | FunctionalComponent<Props>;
|
21
24
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
22
25
|
declare const IconValue: PropType<IconValue>;
|
23
26
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, PropType, DirectiveBinding,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, DirectiveBinding, ComponentPublicInstance, FunctionalComponent, ComponentInternalInstance, Ref, ComputedRef } from 'vue';
|
3
3
|
// @ts-ignore
|
4
4
|
import * as vue_router from 'vue-router';
|
5
5
|
|
@@ -466,6 +466,9 @@ interface RippleDirectiveBinding extends Omit<DirectiveBinding, 'modifiers' | 'v
|
|
466
466
|
};
|
467
467
|
}
|
468
468
|
|
469
|
+
type JSXComponent<Props = any> = {
|
470
|
+
new (): ComponentPublicInstance<Props>;
|
471
|
+
} | FunctionalComponent<Props>;
|
469
472
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
470
473
|
declare const IconValue: PropType<IconValue>;
|
471
474
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, ComponentPublicInstance, PropType,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, ComponentPublicInstance, PropType, FunctionalComponent, ComputedRef, Ref, EffectScope, Component, nextTick } from 'vue';
|
3
3
|
|
4
4
|
type ClassValue = any;
|
5
5
|
|
@@ -92,6 +92,9 @@ interface ValidationProps {
|
|
92
92
|
validationValue: any;
|
93
93
|
}
|
94
94
|
|
95
|
+
type JSXComponent<Props = any> = {
|
96
|
+
new (): ComponentPublicInstance<Props>;
|
97
|
+
} | FunctionalComponent<Props>;
|
95
98
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
96
99
|
declare const IconValue: PropType<IconValue>;
|
97
100
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent } from 'vue';
|
3
3
|
|
4
4
|
interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
|
5
5
|
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
@@ -12,6 +12,9 @@ type Density = null | 'default' | 'comfortable' | 'compact';
|
|
12
12
|
declare const allowedVariants: readonly ["elevated", "flat", "tonal", "outlined", "text", "plain"];
|
13
13
|
type Variant = typeof allowedVariants[number];
|
14
14
|
|
15
|
+
type JSXComponent<Props = any> = {
|
16
|
+
new (): ComponentPublicInstance<Props>;
|
17
|
+
} | FunctionalComponent<Props>;
|
15
18
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
16
19
|
declare const IconValue: PropType<IconValue>;
|
17
20
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent } from 'vue';
|
3
3
|
|
4
4
|
type ClassValue = any;
|
5
5
|
|
@@ -13,6 +13,9 @@ interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions
|
|
13
13
|
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
14
14
|
}
|
15
15
|
|
16
|
+
type JSXComponent<Props = any> = {
|
17
|
+
new (): ComponentPublicInstance<Props>;
|
18
|
+
} | FunctionalComponent<Props>;
|
16
19
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
17
20
|
declare const IconValue: PropType<IconValue>;
|
18
21
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent } from 'vue';
|
3
3
|
|
4
4
|
type ClassValue = any;
|
5
5
|
|
@@ -19,6 +19,9 @@ interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions
|
|
19
19
|
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
20
20
|
}
|
21
21
|
|
22
|
+
type JSXComponent<Props = any> = {
|
23
|
+
new (): ComponentPublicInstance<Props>;
|
24
|
+
} | FunctionalComponent<Props>;
|
22
25
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
23
26
|
declare const IconValue: PropType<IconValue>;
|
24
27
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent } from 'vue';
|
3
3
|
// @ts-ignore
|
4
4
|
import * as vue_router from 'vue-router';
|
5
5
|
// @ts-ignore
|
@@ -38,6 +38,9 @@ type ClassValue = any;
|
|
38
38
|
|
39
39
|
type Density = null | 'default' | 'comfortable' | 'compact';
|
40
40
|
|
41
|
+
type JSXComponent<Props = any> = {
|
42
|
+
new (): ComponentPublicInstance<Props>;
|
43
|
+
} | FunctionalComponent<Props>;
|
41
44
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
42
45
|
declare const IconValue: PropType<IconValue>;
|
43
46
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, ComponentInternalInstance, Ref, ComputedRef,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, ComponentInternalInstance, Ref, ComputedRef, PropType, ComponentPublicInstance, FunctionalComponent, DirectiveBinding } from 'vue';
|
3
3
|
// @ts-ignore
|
4
4
|
import * as vue_router from 'vue-router';
|
5
5
|
|
@@ -56,6 +56,9 @@ type Density = null | 'default' | 'comfortable' | 'compact';
|
|
56
56
|
declare const allowedVariants: readonly ["elevated", "flat", "tonal", "outlined", "text", "plain"];
|
57
57
|
type Variant = typeof allowedVariants[number];
|
58
58
|
|
59
|
+
type JSXComponent<Props = any> = {
|
60
|
+
new (): ComponentPublicInstance<Props>;
|
61
|
+
} | FunctionalComponent<Props>;
|
59
62
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
60
63
|
declare const IconValue: PropType<IconValue>;
|
61
64
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent, DirectiveBinding } from 'vue';
|
3
3
|
// @ts-ignore
|
4
4
|
import * as vue_router from 'vue-router';
|
5
5
|
|
@@ -20,6 +20,9 @@ interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions
|
|
20
20
|
declare const allowedVariants: readonly ["elevated", "flat", "tonal", "outlined", "text", "plain"];
|
21
21
|
type Variant = typeof allowedVariants[number];
|
22
22
|
|
23
|
+
type JSXComponent<Props = any> = {
|
24
|
+
new (): ComponentPublicInstance<Props>;
|
25
|
+
} | FunctionalComponent<Props>;
|
23
26
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
24
27
|
declare const IconValue: PropType<IconValue>;
|
25
28
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, ComponentInternalInstance, Ref, ComputedRef } from 'vue';
|
3
3
|
|
4
4
|
type SlotsToProps<U extends RawSlots, T = MakeInternalSlots<U>> = {
|
5
5
|
$children?: (VNodeChild | (T extends {
|
@@ -58,6 +58,9 @@ interface TouchData {
|
|
58
58
|
offsetY: number;
|
59
59
|
}
|
60
60
|
|
61
|
+
type JSXComponent<Props = any> = {
|
62
|
+
new (): ComponentPublicInstance<Props>;
|
63
|
+
} | FunctionalComponent<Props>;
|
61
64
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
62
65
|
declare const IconValue: PropType<IconValue>;
|
63
66
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, DirectiveBinding, WritableComputedRef, Ref, CSSProperties, ComputedRef } from 'vue';
|
3
3
|
|
4
4
|
type ClassValue = any;
|
5
5
|
|
@@ -38,6 +38,9 @@ declare const EventProp: <T extends any[] = any[]>() => PropType<EventProp<T>>;
|
|
38
38
|
|
39
39
|
type Density = null | 'default' | 'comfortable' | 'compact';
|
40
40
|
|
41
|
+
type JSXComponent<Props = any> = {
|
42
|
+
new (): ComponentPublicInstance<Props>;
|
43
|
+
} | FunctionalComponent<Props>;
|
41
44
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
42
45
|
declare const IconValue: PropType<IconValue>;
|
43
46
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent, DirectiveBinding } from 'vue';
|
3
3
|
// @ts-ignore
|
4
4
|
import * as vue_router from 'vue-router';
|
5
5
|
|
@@ -14,6 +14,9 @@ type Density = null | 'default' | 'comfortable' | 'compact';
|
|
14
14
|
declare const allowedVariants: readonly ["elevated", "flat", "tonal", "outlined", "text", "plain"];
|
15
15
|
type Variant = typeof allowedVariants[number];
|
16
16
|
|
17
|
+
type JSXComponent<Props = any> = {
|
18
|
+
new (): ComponentPublicInstance<Props>;
|
19
|
+
} | FunctionalComponent<Props>;
|
17
20
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
18
21
|
declare const IconValue: PropType<IconValue>;
|
19
22
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, ComponentInternalInstance, Ref, ComputedRef } from 'vue';
|
3
3
|
|
4
4
|
type SlotsToProps<U extends RawSlots, T = MakeInternalSlots<U>> = {
|
5
5
|
$children?: (VNodeChild | (T extends {
|
@@ -34,6 +34,9 @@ type ClassValue = any;
|
|
34
34
|
|
35
35
|
declare function deepEqual(a: any, b: any): boolean;
|
36
36
|
|
37
|
+
type JSXComponent<Props = any> = {
|
38
|
+
new (): ComponentPublicInstance<Props>;
|
39
|
+
} | FunctionalComponent<Props>;
|
37
40
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
38
41
|
declare const IconValue: PropType<IconValue>;
|
39
42
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, ComponentPublicInstance, PropType,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, ComponentPublicInstance, PropType, FunctionalComponent, ComputedRef, Ref, EffectScope, Component, nextTick } from 'vue';
|
3
3
|
|
4
4
|
type ClassValue = any;
|
5
5
|
|
@@ -92,6 +92,9 @@ interface ValidationProps {
|
|
92
92
|
validationValue: any;
|
93
93
|
}
|
94
94
|
|
95
|
+
type JSXComponent<Props = any> = {
|
96
|
+
new (): ComponentPublicInstance<Props>;
|
97
|
+
} | FunctionalComponent<Props>;
|
95
98
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
96
99
|
declare const IconValue: PropType<IconValue>;
|
97
100
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, ComponentPublicInstance, PropType,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, ComponentPublicInstance, PropType, FunctionalComponent, Ref, UnwrapRef, DeepReadonly } from 'vue';
|
3
3
|
|
4
4
|
type ClassValue = any;
|
5
5
|
|
@@ -51,6 +51,9 @@ declare const breakpoints: readonly ["sm", "md", "lg", "xl", "xxl"];
|
|
51
51
|
type Breakpoint = typeof breakpoints[number];
|
52
52
|
type DisplayBreakpoint = 'xs' | Breakpoint;
|
53
53
|
|
54
|
+
type JSXComponent<Props = any> = {
|
55
|
+
new (): ComponentPublicInstance<Props>;
|
56
|
+
} | FunctionalComponent<Props>;
|
54
57
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
55
58
|
declare const IconValue: PropType<IconValue>;
|
56
59
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent } from 'vue';
|
3
3
|
|
4
4
|
type ClassValue = any;
|
5
5
|
|
@@ -38,6 +38,9 @@ interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions
|
|
38
38
|
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
39
39
|
}
|
40
40
|
|
41
|
+
type JSXComponent<Props = any> = {
|
42
|
+
new (): ComponentPublicInstance<Props>;
|
43
|
+
} | FunctionalComponent<Props>;
|
41
44
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
42
45
|
declare const IconValue: PropType<IconValue>;
|
43
46
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent } from 'vue';
|
3
3
|
|
4
4
|
interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
|
5
5
|
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
@@ -7,6 +7,9 @@ interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions
|
|
7
7
|
|
8
8
|
type ClassValue = any;
|
9
9
|
|
10
|
+
type JSXComponent<Props = any> = {
|
11
|
+
new (): ComponentPublicInstance<Props>;
|
12
|
+
} | FunctionalComponent<Props>;
|
10
13
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
11
14
|
declare const IconValue: PropType<IconValue>;
|
12
15
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent, DirectiveBinding, Ref, ComponentInternalInstance, ComputedRef } from 'vue';
|
3
3
|
|
4
4
|
interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
|
5
5
|
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
@@ -7,6 +7,9 @@ interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions
|
|
7
7
|
|
8
8
|
type ClassValue = any;
|
9
9
|
|
10
|
+
type JSXComponent<Props = any> = {
|
11
|
+
new (): ComponentPublicInstance<Props>;
|
12
|
+
} | FunctionalComponent<Props>;
|
10
13
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
11
14
|
declare const IconValue: PropType<IconValue>;
|
12
15
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { DirectiveBinding, ComponentPropsOptions, ExtractPropTypes,
|
2
|
+
import { DirectiveBinding, ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent, ComponentInternalInstance, Ref, ComputedRef } from 'vue';
|
3
3
|
// @ts-ignore
|
4
4
|
import * as vue_router from 'vue-router';
|
5
5
|
|
@@ -28,6 +28,9 @@ interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions
|
|
28
28
|
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
29
29
|
}
|
30
30
|
|
31
|
+
type JSXComponent<Props = any> = {
|
32
|
+
new (): ComponentPublicInstance<Props>;
|
33
|
+
} | FunctionalComponent<Props>;
|
31
34
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
32
35
|
declare const IconValue: PropType<IconValue>;
|
33
36
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, Ref } from 'vue';
|
3
3
|
|
4
4
|
type SlotsToProps<U extends RawSlots, T = MakeInternalSlots<U>> = {
|
5
5
|
$children?: (VNodeChild | (T extends {
|
@@ -32,6 +32,9 @@ interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions
|
|
32
32
|
|
33
33
|
type ClassValue = any;
|
34
34
|
|
35
|
+
type JSXComponent<Props = any> = {
|
36
|
+
new (): ComponentPublicInstance<Props>;
|
37
|
+
} | FunctionalComponent<Props>;
|
35
38
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
36
39
|
declare const IconValue: PropType<IconValue>;
|
37
40
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, Ref, ComputedRef, nextTick } from 'vue';
|
3
3
|
|
4
4
|
type ClassValue = any;
|
5
5
|
|
@@ -44,6 +44,9 @@ type VMessageSlot = {
|
|
44
44
|
message: string;
|
45
45
|
};
|
46
46
|
|
47
|
+
type JSXComponent<Props = any> = {
|
48
|
+
new (): ComponentPublicInstance<Props>;
|
49
|
+
} | FunctionalComponent<Props>;
|
47
50
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
48
51
|
declare const IconValue: PropType<IconValue>;
|
49
52
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, PropType,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent } from 'vue';
|
3
3
|
|
4
4
|
interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
|
5
5
|
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
@@ -7,6 +7,9 @@ interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions
|
|
7
7
|
|
8
8
|
type ClassValue = any;
|
9
9
|
|
10
|
+
type JSXComponent<Props = any> = {
|
11
|
+
new (): ComponentPublicInstance<Props>;
|
12
|
+
} | FunctionalComponent<Props>;
|
10
13
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
11
14
|
declare const IconValue: PropType<IconValue>;
|
12
15
|
declare const VComponentIcon: {
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, ComputedRef, Ref } from 'vue';
|
3
3
|
|
4
4
|
type SlotsToProps<U extends RawSlots, T = MakeInternalSlots<U>> = {
|
5
5
|
$children?: (VNodeChild | (T extends {
|
@@ -57,6 +57,9 @@ interface ValidationProps {
|
|
57
57
|
validationValue: any;
|
58
58
|
}
|
59
59
|
|
60
|
+
type JSXComponent<Props = any> = {
|
61
|
+
new (): ComponentPublicInstance<Props>;
|
62
|
+
} | FunctionalComponent<Props>;
|
60
63
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
61
64
|
declare const IconValue: PropType<IconValue>;
|
62
65
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, DirectiveBinding } from 'vue';
|
3
3
|
// @ts-ignore
|
4
4
|
import * as vue_router from 'vue-router';
|
5
5
|
|
@@ -42,6 +42,9 @@ type Density = null | 'default' | 'comfortable' | 'compact';
|
|
42
42
|
declare const allowedVariants: readonly ["elevated", "flat", "tonal", "outlined", "text", "plain"];
|
43
43
|
type Variant = typeof allowedVariants[number];
|
44
44
|
|
45
|
+
type JSXComponent<Props = any> = {
|
46
|
+
new (): ComponentPublicInstance<Props>;
|
47
|
+
} | FunctionalComponent<Props>;
|
45
48
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
46
49
|
declare const IconValue: PropType<IconValue>;
|
47
50
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent } from 'vue';
|
3
3
|
|
4
4
|
interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
|
5
5
|
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
@@ -12,6 +12,9 @@ type Density = null | 'default' | 'comfortable' | 'compact';
|
|
12
12
|
declare const allowedVariants: readonly ["elevated", "flat", "tonal", "outlined", "text", "plain"];
|
13
13
|
type Variant = typeof allowedVariants[number];
|
14
14
|
|
15
|
+
type JSXComponent<Props = any> = {
|
16
|
+
new (): ComponentPublicInstance<Props>;
|
17
|
+
} | FunctionalComponent<Props>;
|
15
18
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
16
19
|
declare const IconValue: PropType<IconValue>;
|
17
20
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent, DirectiveBinding, WritableComputedRef, Ref, CSSProperties, VNode } from 'vue';
|
3
3
|
|
4
4
|
type ClassValue = any;
|
5
5
|
|
@@ -11,6 +11,9 @@ declare function deepEqual(a: any, b: any): boolean;
|
|
11
11
|
|
12
12
|
type Density = null | 'default' | 'comfortable' | 'compact';
|
13
13
|
|
14
|
+
type JSXComponent<Props = any> = {
|
15
|
+
new (): ComponentPublicInstance<Props>;
|
16
|
+
} | FunctionalComponent<Props>;
|
14
17
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
15
18
|
declare const IconValue: PropType<IconValue>;
|
16
19
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, ComputedRef, Ref, DirectiveBinding } from 'vue';
|
3
3
|
|
4
4
|
type ClassValue = any;
|
5
5
|
|
@@ -58,6 +58,9 @@ interface ValidationProps {
|
|
58
58
|
validationValue: any;
|
59
59
|
}
|
60
60
|
|
61
|
+
type JSXComponent<Props = any> = {
|
62
|
+
new (): ComponentPublicInstance<Props>;
|
63
|
+
} | FunctionalComponent<Props>;
|
61
64
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
62
65
|
declare const IconValue: PropType<IconValue>;
|
63
66
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, PropType,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent, ComputedRef, Ref } from 'vue';
|
3
3
|
|
4
4
|
interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
|
5
5
|
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
@@ -42,6 +42,9 @@ interface ValidationProps {
|
|
42
42
|
validationValue: any;
|
43
43
|
}
|
44
44
|
|
45
|
+
type JSXComponent<Props = any> = {
|
46
|
+
new (): ComponentPublicInstance<Props>;
|
47
|
+
} | FunctionalComponent<Props>;
|
45
48
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
46
49
|
declare const IconValue: PropType<IconValue>;
|
47
50
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent, Prop } from 'vue';
|
3
3
|
|
4
4
|
interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
|
5
5
|
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
@@ -9,6 +9,9 @@ type ClassValue = any;
|
|
9
9
|
|
10
10
|
type Density = null | 'default' | 'comfortable' | 'compact';
|
11
11
|
|
12
|
+
type JSXComponent<Props = any> = {
|
13
|
+
new (): ComponentPublicInstance<Props>;
|
14
|
+
} | FunctionalComponent<Props>;
|
12
15
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
13
16
|
declare const IconValue: PropType<IconValue>;
|
14
17
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, ComponentPublicInstance, PropType,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, ComponentPublicInstance, PropType, FunctionalComponent, ComputedRef, Ref, EffectScope, Component, nextTick } from 'vue';
|
3
3
|
|
4
4
|
type ClassValue = any;
|
5
5
|
|
@@ -92,6 +92,9 @@ interface ValidationProps {
|
|
92
92
|
validationValue: any;
|
93
93
|
}
|
94
94
|
|
95
|
+
type JSXComponent<Props = any> = {
|
96
|
+
new (): ComponentPublicInstance<Props>;
|
97
|
+
} | FunctionalComponent<Props>;
|
95
98
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
96
99
|
declare const IconValue: PropType<IconValue>;
|
97
100
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, DirectiveBinding, Ref, CSSProperties, WritableComputedRef } from 'vue';
|
3
3
|
|
4
4
|
type ClassValue = any;
|
5
5
|
|
@@ -36,6 +36,9 @@ declare function deepEqual(a: any, b: any): boolean;
|
|
36
36
|
|
37
37
|
type Density = null | 'default' | 'comfortable' | 'compact';
|
38
38
|
|
39
|
+
type JSXComponent<Props = any> = {
|
40
|
+
new (): ComponentPublicInstance<Props>;
|
41
|
+
} | FunctionalComponent<Props>;
|
39
42
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
40
43
|
declare const IconValue: PropType<IconValue>;
|
41
44
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, DirectiveBinding } from 'vue';
|
3
3
|
|
4
4
|
type SlotsToProps<U extends RawSlots, T = MakeInternalSlots<U>> = {
|
5
5
|
$children?: (VNodeChild | (T extends {
|
@@ -36,6 +36,9 @@ declare function deepEqual(a: any, b: any): boolean;
|
|
36
36
|
|
37
37
|
type Density = null | 'default' | 'comfortable' | 'compact';
|
38
38
|
|
39
|
+
type JSXComponent<Props = any> = {
|
40
|
+
new (): ComponentPublicInstance<Props>;
|
41
|
+
} | FunctionalComponent<Props>;
|
39
42
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
40
43
|
declare const IconValue: PropType<IconValue>;
|
41
44
|
|