vuetify 3.4.0-beta.1 → 3.4.0
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 +275 -299
- package/dist/json/importMap.json +110 -110
- package/dist/json/tags.json +1 -7
- package/dist/json/web-types.json +577 -735
- package/dist/vuetify-labs.css +1149 -1151
- package/dist/vuetify-labs.d.ts +41 -134
- package/dist/vuetify-labs.esm.js +18 -14
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +18 -14
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +490 -492
- package/dist/vuetify.d.ts +74 -167
- package/dist/vuetify.esm.js +18 -14
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +18 -14
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +12 -12
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtn/VBtn.css +0 -1
- package/lib/components/VBtn/_variables.scss +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.css +0 -1
- package/lib/components/VDataTable/VDataTableServer.mjs +2 -2
- package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +2 -2
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +24 -24
- package/lib/components/VGrid/VSpacer.mjs +3 -0
- package/lib/components/VGrid/VSpacer.mjs.map +1 -1
- package/lib/components/VStepper/VStepperWindow.mjs +8 -6
- package/lib/components/VStepper/VStepperWindow.mjs.map +1 -1
- package/lib/components/VStepper/VStepperWindowItem.mjs +3 -1
- package/lib/components/VStepper/VStepperWindowItem.mjs.map +1 -1
- package/lib/components/VStepper/index.d.mts +18 -140
- package/lib/components/index.d.mts +41 -134
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.mts +33 -33
- package/package.json +3 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as vue from 'vue';
|
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, PropType
|
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
4
|
declare const block: readonly ["top", "bottom"];
|
|
5
5
|
declare const inline: readonly ["start", "end", "left", "right"];
|
|
@@ -1703,35 +1703,6 @@ declare const VStepperHeader: {
|
|
|
1703
1703
|
}>>;
|
|
1704
1704
|
type VStepperHeader = InstanceType<typeof VStepperHeader>;
|
|
1705
1705
|
|
|
1706
|
-
interface TouchHandlers {
|
|
1707
|
-
start?: (wrapperEvent: {
|
|
1708
|
-
originalEvent: TouchEvent;
|
|
1709
|
-
} & TouchData) => void;
|
|
1710
|
-
end?: (wrapperEvent: {
|
|
1711
|
-
originalEvent: TouchEvent;
|
|
1712
|
-
} & TouchData) => void;
|
|
1713
|
-
move?: (wrapperEvent: {
|
|
1714
|
-
originalEvent: TouchEvent;
|
|
1715
|
-
} & TouchData) => void;
|
|
1716
|
-
left?: (wrapper: TouchData) => void;
|
|
1717
|
-
right?: (wrapper: TouchData) => void;
|
|
1718
|
-
up?: (wrapper: TouchData) => void;
|
|
1719
|
-
down?: (wrapper: TouchData) => void;
|
|
1720
|
-
}
|
|
1721
|
-
interface TouchData {
|
|
1722
|
-
touchstartX: number;
|
|
1723
|
-
touchstartY: number;
|
|
1724
|
-
touchmoveX: number;
|
|
1725
|
-
touchmoveY: number;
|
|
1726
|
-
touchendX: number;
|
|
1727
|
-
touchendY: number;
|
|
1728
|
-
offsetX: number;
|
|
1729
|
-
offsetY: number;
|
|
1730
|
-
}
|
|
1731
|
-
|
|
1732
|
-
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
|
1733
|
-
declare const IconValue: PropType<IconValue>;
|
|
1734
|
-
|
|
1735
1706
|
declare const VStepperWindow: {
|
|
1736
1707
|
new (...args: any[]): {
|
|
1737
1708
|
$: vue.ComponentInternalInstance;
|
|
@@ -1742,28 +1713,17 @@ declare const VStepperWindow: {
|
|
|
1742
1713
|
style: vue.StyleValue;
|
|
1743
1714
|
disabled: boolean;
|
|
1744
1715
|
tag: string;
|
|
1745
|
-
mandatory: NonNullable<boolean | "force">;
|
|
1746
|
-
touch: boolean | TouchHandlers;
|
|
1747
1716
|
selectedClass: string;
|
|
1748
|
-
continuous: boolean;
|
|
1749
|
-
nextIcon: IconValue;
|
|
1750
|
-
prevIcon: IconValue;
|
|
1751
1717
|
}> & Omit<{
|
|
1752
1718
|
reverse: boolean;
|
|
1753
1719
|
direction: "horizontal" | "vertical";
|
|
1754
1720
|
style: vue.StyleValue;
|
|
1755
1721
|
disabled: boolean;
|
|
1756
1722
|
tag: string;
|
|
1757
|
-
mandatory: NonNullable<boolean | "force">;
|
|
1758
1723
|
selectedClass: string;
|
|
1759
|
-
continuous: boolean;
|
|
1760
|
-
nextIcon: IconValue;
|
|
1761
|
-
prevIcon: IconValue;
|
|
1762
1724
|
class?: any;
|
|
1763
|
-
touch?: boolean | TouchHandlers | undefined;
|
|
1764
1725
|
theme?: string | undefined;
|
|
1765
1726
|
modelValue?: any;
|
|
1766
|
-
showArrows?: string | boolean | undefined;
|
|
1767
1727
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1768
1728
|
default?: (() => vue.VNodeChild) | undefined;
|
|
1769
1729
|
};
|
|
@@ -1778,17 +1738,11 @@ declare const VStepperWindow: {
|
|
|
1778
1738
|
style: vue.StyleValue;
|
|
1779
1739
|
disabled: boolean;
|
|
1780
1740
|
tag: string;
|
|
1781
|
-
mandatory: NonNullable<boolean | "force">;
|
|
1782
1741
|
selectedClass: string;
|
|
1783
|
-
continuous: boolean;
|
|
1784
|
-
nextIcon: IconValue;
|
|
1785
|
-
prevIcon: IconValue;
|
|
1786
1742
|
} & {
|
|
1787
1743
|
class?: any;
|
|
1788
|
-
touch?: boolean | TouchHandlers | undefined;
|
|
1789
1744
|
theme?: string | undefined;
|
|
1790
1745
|
modelValue?: any;
|
|
1791
|
-
showArrows?: string | boolean | undefined;
|
|
1792
1746
|
} & {
|
|
1793
1747
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1794
1748
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1800,7 +1754,7 @@ declare const VStepperWindow: {
|
|
|
1800
1754
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
1801
1755
|
} & {
|
|
1802
1756
|
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
1803
|
-
}, "reverse" | "direction" | "style" | "disabled" | "tag" | "
|
|
1757
|
+
}, "reverse" | "direction" | "style" | "disabled" | "tag" | "selectedClass">;
|
|
1804
1758
|
$attrs: {
|
|
1805
1759
|
[x: string]: unknown;
|
|
1806
1760
|
};
|
|
@@ -1822,17 +1776,11 @@ declare const VStepperWindow: {
|
|
|
1822
1776
|
style: vue.StyleValue;
|
|
1823
1777
|
disabled: boolean;
|
|
1824
1778
|
tag: string;
|
|
1825
|
-
mandatory: NonNullable<boolean | "force">;
|
|
1826
1779
|
selectedClass: string;
|
|
1827
|
-
continuous: boolean;
|
|
1828
|
-
nextIcon: IconValue;
|
|
1829
|
-
prevIcon: IconValue;
|
|
1830
1780
|
} & {
|
|
1831
1781
|
class?: any;
|
|
1832
|
-
touch?: boolean | TouchHandlers | undefined;
|
|
1833
1782
|
theme?: string | undefined;
|
|
1834
1783
|
modelValue?: any;
|
|
1835
|
-
showArrows?: string | boolean | undefined;
|
|
1836
1784
|
} & {
|
|
1837
1785
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1838
1786
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1852,12 +1800,7 @@ declare const VStepperWindow: {
|
|
|
1852
1800
|
style: vue.StyleValue;
|
|
1853
1801
|
disabled: boolean;
|
|
1854
1802
|
tag: string;
|
|
1855
|
-
mandatory: NonNullable<boolean | "force">;
|
|
1856
|
-
touch: boolean | TouchHandlers;
|
|
1857
1803
|
selectedClass: string;
|
|
1858
|
-
continuous: boolean;
|
|
1859
|
-
nextIcon: IconValue;
|
|
1860
|
-
prevIcon: IconValue;
|
|
1861
1804
|
}, {}, string, vue.SlotsType<Partial<{
|
|
1862
1805
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
1863
1806
|
[key: string]: any;
|
|
@@ -1888,17 +1831,11 @@ declare const VStepperWindow: {
|
|
|
1888
1831
|
style: vue.StyleValue;
|
|
1889
1832
|
disabled: boolean;
|
|
1890
1833
|
tag: string;
|
|
1891
|
-
mandatory: NonNullable<boolean | "force">;
|
|
1892
1834
|
selectedClass: string;
|
|
1893
|
-
continuous: boolean;
|
|
1894
|
-
nextIcon: IconValue;
|
|
1895
|
-
prevIcon: IconValue;
|
|
1896
1835
|
} & {
|
|
1897
1836
|
class?: any;
|
|
1898
|
-
touch?: boolean | TouchHandlers | undefined;
|
|
1899
1837
|
theme?: string | undefined;
|
|
1900
1838
|
modelValue?: any;
|
|
1901
|
-
showArrows?: string | boolean | undefined;
|
|
1902
1839
|
} & {
|
|
1903
1840
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1904
1841
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1920,17 +1857,11 @@ declare const VStepperWindow: {
|
|
|
1920
1857
|
style: vue.StyleValue;
|
|
1921
1858
|
disabled: boolean;
|
|
1922
1859
|
tag: string;
|
|
1923
|
-
mandatory: NonNullable<boolean | "force">;
|
|
1924
1860
|
selectedClass: string;
|
|
1925
|
-
continuous: boolean;
|
|
1926
|
-
nextIcon: IconValue;
|
|
1927
|
-
prevIcon: IconValue;
|
|
1928
1861
|
} & {
|
|
1929
1862
|
class?: any;
|
|
1930
|
-
touch?: boolean | TouchHandlers | undefined;
|
|
1931
1863
|
theme?: string | undefined;
|
|
1932
1864
|
modelValue?: any;
|
|
1933
|
-
showArrows?: string | boolean | undefined;
|
|
1934
1865
|
} & {
|
|
1935
1866
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1936
1867
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1950,108 +1881,55 @@ declare const VStepperWindow: {
|
|
|
1950
1881
|
style: vue.StyleValue;
|
|
1951
1882
|
disabled: boolean;
|
|
1952
1883
|
tag: string;
|
|
1953
|
-
mandatory: NonNullable<boolean | "force">;
|
|
1954
|
-
touch: boolean | TouchHandlers;
|
|
1955
1884
|
selectedClass: string;
|
|
1956
|
-
continuous: boolean;
|
|
1957
|
-
nextIcon: IconValue;
|
|
1958
|
-
prevIcon: IconValue;
|
|
1959
1885
|
}, {}, string, vue.SlotsType<Partial<{
|
|
1960
1886
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
1961
1887
|
[key: string]: any;
|
|
1962
1888
|
}>[];
|
|
1963
1889
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
type:
|
|
1890
|
+
reverse: BooleanConstructor;
|
|
1891
|
+
direction: {
|
|
1892
|
+
type: vue.PropType<"horizontal" | "vertical">;
|
|
1967
1893
|
default: string;
|
|
1968
1894
|
};
|
|
1969
|
-
class: vue.PropType<any>;
|
|
1970
1895
|
style: {
|
|
1971
1896
|
type: vue.PropType<vue.StyleValue>;
|
|
1972
1897
|
default: null;
|
|
1973
1898
|
};
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
};
|
|
1979
|
-
prevIcon: {
|
|
1980
|
-
type: vue.PropType<IconValue>;
|
|
1981
|
-
default: string;
|
|
1982
|
-
};
|
|
1983
|
-
reverse: BooleanConstructor;
|
|
1984
|
-
showArrows: {
|
|
1985
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
1986
|
-
validator: (v: any) => boolean;
|
|
1987
|
-
};
|
|
1988
|
-
touch: {
|
|
1989
|
-
type: vue.PropType<boolean | TouchHandlers>;
|
|
1990
|
-
default: undefined;
|
|
1991
|
-
};
|
|
1992
|
-
direction: {
|
|
1993
|
-
type: vue.PropType<"horizontal" | "vertical">;
|
|
1899
|
+
disabled: BooleanConstructor;
|
|
1900
|
+
class: vue.PropType<any>;
|
|
1901
|
+
tag: {
|
|
1902
|
+
type: StringConstructor;
|
|
1994
1903
|
default: string;
|
|
1995
1904
|
};
|
|
1905
|
+
theme: StringConstructor;
|
|
1996
1906
|
modelValue: null;
|
|
1997
|
-
disabled: BooleanConstructor;
|
|
1998
1907
|
selectedClass: {
|
|
1999
1908
|
type: StringConstructor;
|
|
2000
1909
|
default: string;
|
|
2001
1910
|
};
|
|
2002
|
-
mandatory: Omit<{
|
|
2003
|
-
type: vue.PropType<boolean | "force">;
|
|
2004
|
-
default: "force";
|
|
2005
|
-
}, "type" | "default"> & {
|
|
2006
|
-
type: vue.PropType<NonNullable<boolean | "force">>;
|
|
2007
|
-
default: NonNullable<boolean | "force">;
|
|
2008
|
-
};
|
|
2009
1911
|
}, vue.ExtractPropTypes<{
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
type:
|
|
1912
|
+
reverse: BooleanConstructor;
|
|
1913
|
+
direction: {
|
|
1914
|
+
type: vue.PropType<"horizontal" | "vertical">;
|
|
2013
1915
|
default: string;
|
|
2014
1916
|
};
|
|
2015
|
-
class: vue.PropType<any>;
|
|
2016
1917
|
style: {
|
|
2017
1918
|
type: vue.PropType<vue.StyleValue>;
|
|
2018
1919
|
default: null;
|
|
2019
1920
|
};
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
};
|
|
2025
|
-
prevIcon: {
|
|
2026
|
-
type: vue.PropType<IconValue>;
|
|
2027
|
-
default: string;
|
|
2028
|
-
};
|
|
2029
|
-
reverse: BooleanConstructor;
|
|
2030
|
-
showArrows: {
|
|
2031
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
2032
|
-
validator: (v: any) => boolean;
|
|
2033
|
-
};
|
|
2034
|
-
touch: {
|
|
2035
|
-
type: vue.PropType<boolean | TouchHandlers>;
|
|
2036
|
-
default: undefined;
|
|
2037
|
-
};
|
|
2038
|
-
direction: {
|
|
2039
|
-
type: vue.PropType<"horizontal" | "vertical">;
|
|
1921
|
+
disabled: BooleanConstructor;
|
|
1922
|
+
class: vue.PropType<any>;
|
|
1923
|
+
tag: {
|
|
1924
|
+
type: StringConstructor;
|
|
2040
1925
|
default: string;
|
|
2041
1926
|
};
|
|
1927
|
+
theme: StringConstructor;
|
|
2042
1928
|
modelValue: null;
|
|
2043
|
-
disabled: BooleanConstructor;
|
|
2044
1929
|
selectedClass: {
|
|
2045
1930
|
type: StringConstructor;
|
|
2046
1931
|
default: string;
|
|
2047
1932
|
};
|
|
2048
|
-
mandatory: Omit<{
|
|
2049
|
-
type: vue.PropType<boolean | "force">;
|
|
2050
|
-
default: "force";
|
|
2051
|
-
}, "type" | "default"> & {
|
|
2052
|
-
type: vue.PropType<NonNullable<boolean | "force">>;
|
|
2053
|
-
default: NonNullable<boolean | "force">;
|
|
2054
|
-
};
|
|
2055
1933
|
}>>;
|
|
2056
1934
|
type VStepperWindow = InstanceType<typeof VStepperWindow>;
|
|
2057
1935
|
|
|
@@ -27917,11 +27917,11 @@ declare const VDataTableVirtual: {
|
|
|
27917
27917
|
"onUpdate:expanded"?: ((value: any) => any) | undefined;
|
|
27918
27918
|
"onUpdate:options"?: ((value: any) => any) | undefined;
|
|
27919
27919
|
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
27920
|
-
'update:modelValue': (value: any[]) =>
|
|
27921
|
-
'update:sortBy': (value: any) =>
|
|
27922
|
-
'update:options': (value: any) =>
|
|
27923
|
-
'update:groupBy': (value: any) =>
|
|
27924
|
-
'update:expanded': (value: any) =>
|
|
27920
|
+
'update:modelValue': (value: any[]) => boolean;
|
|
27921
|
+
'update:sortBy': (value: any) => boolean;
|
|
27922
|
+
'update:options': (value: any) => boolean;
|
|
27923
|
+
'update:groupBy': (value: any) => boolean;
|
|
27924
|
+
'update:expanded': (value: any) => boolean;
|
|
27925
27925
|
}, string, {
|
|
27926
27926
|
style: vue.StyleValue;
|
|
27927
27927
|
expanded: readonly string[];
|
|
@@ -28635,11 +28635,11 @@ declare const VDataTableVirtual: {
|
|
|
28635
28635
|
"onUpdate:expanded"?: ((value: any) => any) | undefined;
|
|
28636
28636
|
"onUpdate:options"?: ((value: any) => any) | undefined;
|
|
28637
28637
|
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
28638
|
-
'update:modelValue': (value: any[]) =>
|
|
28639
|
-
'update:sortBy': (value: any) =>
|
|
28640
|
-
'update:options': (value: any) =>
|
|
28641
|
-
'update:groupBy': (value: any) =>
|
|
28642
|
-
'update:expanded': (value: any) =>
|
|
28638
|
+
'update:modelValue': (value: any[]) => boolean;
|
|
28639
|
+
'update:sortBy': (value: any) => boolean;
|
|
28640
|
+
'update:options': (value: any) => boolean;
|
|
28641
|
+
'update:groupBy': (value: any) => boolean;
|
|
28642
|
+
'update:expanded': (value: any) => boolean;
|
|
28643
28643
|
}, string, {
|
|
28644
28644
|
style: vue.StyleValue;
|
|
28645
28645
|
expanded: readonly string[];
|
|
@@ -30116,13 +30116,13 @@ declare const VDataTableServer: {
|
|
|
30116
30116
|
"onUpdate:itemsPerPage"?: ((page: number) => any) | undefined;
|
|
30117
30117
|
"onUpdate:options"?: ((options: any) => any) | undefined;
|
|
30118
30118
|
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
30119
|
-
'update:modelValue': (value: any[]) =>
|
|
30120
|
-
'update:page': (page: number) =>
|
|
30121
|
-
'update:itemsPerPage': (page: number) =>
|
|
30122
|
-
'update:sortBy': (sortBy: any) =>
|
|
30123
|
-
'update:options': (options: any) =>
|
|
30124
|
-
'update:expanded': (options: any) =>
|
|
30125
|
-
'update:groupBy': (value: any) =>
|
|
30119
|
+
'update:modelValue': (value: any[]) => boolean;
|
|
30120
|
+
'update:page': (page: number) => boolean;
|
|
30121
|
+
'update:itemsPerPage': (page: number) => boolean;
|
|
30122
|
+
'update:sortBy': (sortBy: any) => boolean;
|
|
30123
|
+
'update:options': (options: any) => boolean;
|
|
30124
|
+
'update:expanded': (options: any) => boolean;
|
|
30125
|
+
'update:groupBy': (value: any) => boolean;
|
|
30126
30126
|
}, string, {
|
|
30127
30127
|
style: vue.StyleValue;
|
|
30128
30128
|
expanded: readonly string[];
|
|
@@ -30927,13 +30927,13 @@ declare const VDataTableServer: {
|
|
|
30927
30927
|
"onUpdate:itemsPerPage"?: ((page: number) => any) | undefined;
|
|
30928
30928
|
"onUpdate:options"?: ((options: any) => any) | undefined;
|
|
30929
30929
|
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
30930
|
-
'update:modelValue': (value: any[]) =>
|
|
30931
|
-
'update:page': (page: number) =>
|
|
30932
|
-
'update:itemsPerPage': (page: number) =>
|
|
30933
|
-
'update:sortBy': (sortBy: any) =>
|
|
30934
|
-
'update:options': (options: any) =>
|
|
30935
|
-
'update:expanded': (options: any) =>
|
|
30936
|
-
'update:groupBy': (value: any) =>
|
|
30930
|
+
'update:modelValue': (value: any[]) => boolean;
|
|
30931
|
+
'update:page': (page: number) => boolean;
|
|
30932
|
+
'update:itemsPerPage': (page: number) => boolean;
|
|
30933
|
+
'update:sortBy': (sortBy: any) => boolean;
|
|
30934
|
+
'update:options': (options: any) => boolean;
|
|
30935
|
+
'update:expanded': (options: any) => boolean;
|
|
30936
|
+
'update:groupBy': (value: any) => boolean;
|
|
30937
30937
|
}, string, {
|
|
30938
30938
|
style: vue.StyleValue;
|
|
30939
30939
|
expanded: readonly string[];
|
|
@@ -64045,28 +64045,17 @@ declare const VStepperWindow: {
|
|
|
64045
64045
|
style: vue.StyleValue;
|
|
64046
64046
|
disabled: boolean;
|
|
64047
64047
|
tag: string;
|
|
64048
|
-
mandatory: NonNullable<boolean | "force">;
|
|
64049
|
-
touch: boolean | TouchHandlers;
|
|
64050
64048
|
selectedClass: string;
|
|
64051
|
-
continuous: boolean;
|
|
64052
|
-
nextIcon: IconValue;
|
|
64053
|
-
prevIcon: IconValue;
|
|
64054
64049
|
}> & Omit<{
|
|
64055
64050
|
reverse: boolean;
|
|
64056
64051
|
direction: "horizontal" | "vertical";
|
|
64057
64052
|
style: vue.StyleValue;
|
|
64058
64053
|
disabled: boolean;
|
|
64059
64054
|
tag: string;
|
|
64060
|
-
mandatory: NonNullable<boolean | "force">;
|
|
64061
64055
|
selectedClass: string;
|
|
64062
|
-
continuous: boolean;
|
|
64063
|
-
nextIcon: IconValue;
|
|
64064
|
-
prevIcon: IconValue;
|
|
64065
64056
|
class?: any;
|
|
64066
|
-
touch?: boolean | TouchHandlers | undefined;
|
|
64067
64057
|
theme?: string | undefined;
|
|
64068
64058
|
modelValue?: any;
|
|
64069
|
-
showArrows?: string | boolean | undefined;
|
|
64070
64059
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
64071
64060
|
default?: (() => vue.VNodeChild) | undefined;
|
|
64072
64061
|
};
|
|
@@ -64081,17 +64070,11 @@ declare const VStepperWindow: {
|
|
|
64081
64070
|
style: vue.StyleValue;
|
|
64082
64071
|
disabled: boolean;
|
|
64083
64072
|
tag: string;
|
|
64084
|
-
mandatory: NonNullable<boolean | "force">;
|
|
64085
64073
|
selectedClass: string;
|
|
64086
|
-
continuous: boolean;
|
|
64087
|
-
nextIcon: IconValue;
|
|
64088
|
-
prevIcon: IconValue;
|
|
64089
64074
|
} & {
|
|
64090
64075
|
class?: any;
|
|
64091
|
-
touch?: boolean | TouchHandlers | undefined;
|
|
64092
64076
|
theme?: string | undefined;
|
|
64093
64077
|
modelValue?: any;
|
|
64094
|
-
showArrows?: string | boolean | undefined;
|
|
64095
64078
|
} & {
|
|
64096
64079
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
64097
64080
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -64103,7 +64086,7 @@ declare const VStepperWindow: {
|
|
|
64103
64086
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
64104
64087
|
} & {
|
|
64105
64088
|
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
64106
|
-
}, "reverse" | "direction" | "style" | "disabled" | "tag" | "
|
|
64089
|
+
}, "reverse" | "direction" | "style" | "disabled" | "tag" | "selectedClass">;
|
|
64107
64090
|
$attrs: {
|
|
64108
64091
|
[x: string]: unknown;
|
|
64109
64092
|
};
|
|
@@ -64125,17 +64108,11 @@ declare const VStepperWindow: {
|
|
|
64125
64108
|
style: vue.StyleValue;
|
|
64126
64109
|
disabled: boolean;
|
|
64127
64110
|
tag: string;
|
|
64128
|
-
mandatory: NonNullable<boolean | "force">;
|
|
64129
64111
|
selectedClass: string;
|
|
64130
|
-
continuous: boolean;
|
|
64131
|
-
nextIcon: IconValue;
|
|
64132
|
-
prevIcon: IconValue;
|
|
64133
64112
|
} & {
|
|
64134
64113
|
class?: any;
|
|
64135
|
-
touch?: boolean | TouchHandlers | undefined;
|
|
64136
64114
|
theme?: string | undefined;
|
|
64137
64115
|
modelValue?: any;
|
|
64138
|
-
showArrows?: string | boolean | undefined;
|
|
64139
64116
|
} & {
|
|
64140
64117
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
64141
64118
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -64155,12 +64132,7 @@ declare const VStepperWindow: {
|
|
|
64155
64132
|
style: vue.StyleValue;
|
|
64156
64133
|
disabled: boolean;
|
|
64157
64134
|
tag: string;
|
|
64158
|
-
mandatory: NonNullable<boolean | "force">;
|
|
64159
|
-
touch: boolean | TouchHandlers;
|
|
64160
64135
|
selectedClass: string;
|
|
64161
|
-
continuous: boolean;
|
|
64162
|
-
nextIcon: IconValue;
|
|
64163
|
-
prevIcon: IconValue;
|
|
64164
64136
|
}, {}, string, vue.SlotsType<Partial<{
|
|
64165
64137
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
64166
64138
|
[key: string]: any;
|
|
@@ -64191,17 +64163,11 @@ declare const VStepperWindow: {
|
|
|
64191
64163
|
style: vue.StyleValue;
|
|
64192
64164
|
disabled: boolean;
|
|
64193
64165
|
tag: string;
|
|
64194
|
-
mandatory: NonNullable<boolean | "force">;
|
|
64195
64166
|
selectedClass: string;
|
|
64196
|
-
continuous: boolean;
|
|
64197
|
-
nextIcon: IconValue;
|
|
64198
|
-
prevIcon: IconValue;
|
|
64199
64167
|
} & {
|
|
64200
64168
|
class?: any;
|
|
64201
|
-
touch?: boolean | TouchHandlers | undefined;
|
|
64202
64169
|
theme?: string | undefined;
|
|
64203
64170
|
modelValue?: any;
|
|
64204
|
-
showArrows?: string | boolean | undefined;
|
|
64205
64171
|
} & {
|
|
64206
64172
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
64207
64173
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -64223,17 +64189,11 @@ declare const VStepperWindow: {
|
|
|
64223
64189
|
style: vue.StyleValue;
|
|
64224
64190
|
disabled: boolean;
|
|
64225
64191
|
tag: string;
|
|
64226
|
-
mandatory: NonNullable<boolean | "force">;
|
|
64227
64192
|
selectedClass: string;
|
|
64228
|
-
continuous: boolean;
|
|
64229
|
-
nextIcon: IconValue;
|
|
64230
|
-
prevIcon: IconValue;
|
|
64231
64193
|
} & {
|
|
64232
64194
|
class?: any;
|
|
64233
|
-
touch?: boolean | TouchHandlers | undefined;
|
|
64234
64195
|
theme?: string | undefined;
|
|
64235
64196
|
modelValue?: any;
|
|
64236
|
-
showArrows?: string | boolean | undefined;
|
|
64237
64197
|
} & {
|
|
64238
64198
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
64239
64199
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -64253,108 +64213,55 @@ declare const VStepperWindow: {
|
|
|
64253
64213
|
style: vue.StyleValue;
|
|
64254
64214
|
disabled: boolean;
|
|
64255
64215
|
tag: string;
|
|
64256
|
-
mandatory: NonNullable<boolean | "force">;
|
|
64257
|
-
touch: boolean | TouchHandlers;
|
|
64258
64216
|
selectedClass: string;
|
|
64259
|
-
continuous: boolean;
|
|
64260
|
-
nextIcon: IconValue;
|
|
64261
|
-
prevIcon: IconValue;
|
|
64262
64217
|
}, {}, string, vue.SlotsType<Partial<{
|
|
64263
64218
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
64264
64219
|
[key: string]: any;
|
|
64265
64220
|
}>[];
|
|
64266
64221
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
64267
|
-
|
|
64268
|
-
|
|
64269
|
-
type:
|
|
64222
|
+
reverse: BooleanConstructor;
|
|
64223
|
+
direction: {
|
|
64224
|
+
type: vue.PropType<"horizontal" | "vertical">;
|
|
64270
64225
|
default: string;
|
|
64271
64226
|
};
|
|
64272
|
-
class: vue.PropType<any>;
|
|
64273
64227
|
style: {
|
|
64274
64228
|
type: vue.PropType<vue.StyleValue>;
|
|
64275
64229
|
default: null;
|
|
64276
64230
|
};
|
|
64277
|
-
|
|
64278
|
-
|
|
64279
|
-
|
|
64280
|
-
|
|
64281
|
-
};
|
|
64282
|
-
prevIcon: {
|
|
64283
|
-
type: vue.PropType<IconValue>;
|
|
64284
|
-
default: string;
|
|
64285
|
-
};
|
|
64286
|
-
reverse: BooleanConstructor;
|
|
64287
|
-
showArrows: {
|
|
64288
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
64289
|
-
validator: (v: any) => boolean;
|
|
64290
|
-
};
|
|
64291
|
-
touch: {
|
|
64292
|
-
type: vue.PropType<boolean | TouchHandlers>;
|
|
64293
|
-
default: undefined;
|
|
64294
|
-
};
|
|
64295
|
-
direction: {
|
|
64296
|
-
type: vue.PropType<"horizontal" | "vertical">;
|
|
64231
|
+
disabled: BooleanConstructor;
|
|
64232
|
+
class: vue.PropType<any>;
|
|
64233
|
+
tag: {
|
|
64234
|
+
type: StringConstructor;
|
|
64297
64235
|
default: string;
|
|
64298
64236
|
};
|
|
64237
|
+
theme: StringConstructor;
|
|
64299
64238
|
modelValue: null;
|
|
64300
|
-
disabled: BooleanConstructor;
|
|
64301
64239
|
selectedClass: {
|
|
64302
64240
|
type: StringConstructor;
|
|
64303
64241
|
default: string;
|
|
64304
64242
|
};
|
|
64305
|
-
mandatory: Omit<{
|
|
64306
|
-
type: vue.PropType<boolean | "force">;
|
|
64307
|
-
default: "force";
|
|
64308
|
-
}, "type" | "default"> & {
|
|
64309
|
-
type: vue.PropType<NonNullable<boolean | "force">>;
|
|
64310
|
-
default: NonNullable<boolean | "force">;
|
|
64311
|
-
};
|
|
64312
64243
|
}, vue.ExtractPropTypes<{
|
|
64313
|
-
|
|
64314
|
-
|
|
64315
|
-
type:
|
|
64244
|
+
reverse: BooleanConstructor;
|
|
64245
|
+
direction: {
|
|
64246
|
+
type: vue.PropType<"horizontal" | "vertical">;
|
|
64316
64247
|
default: string;
|
|
64317
64248
|
};
|
|
64318
|
-
class: vue.PropType<any>;
|
|
64319
64249
|
style: {
|
|
64320
64250
|
type: vue.PropType<vue.StyleValue>;
|
|
64321
64251
|
default: null;
|
|
64322
64252
|
};
|
|
64323
|
-
|
|
64324
|
-
|
|
64325
|
-
|
|
64326
|
-
|
|
64327
|
-
};
|
|
64328
|
-
prevIcon: {
|
|
64329
|
-
type: vue.PropType<IconValue>;
|
|
64330
|
-
default: string;
|
|
64331
|
-
};
|
|
64332
|
-
reverse: BooleanConstructor;
|
|
64333
|
-
showArrows: {
|
|
64334
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
64335
|
-
validator: (v: any) => boolean;
|
|
64336
|
-
};
|
|
64337
|
-
touch: {
|
|
64338
|
-
type: vue.PropType<boolean | TouchHandlers>;
|
|
64339
|
-
default: undefined;
|
|
64340
|
-
};
|
|
64341
|
-
direction: {
|
|
64342
|
-
type: vue.PropType<"horizontal" | "vertical">;
|
|
64253
|
+
disabled: BooleanConstructor;
|
|
64254
|
+
class: vue.PropType<any>;
|
|
64255
|
+
tag: {
|
|
64256
|
+
type: StringConstructor;
|
|
64343
64257
|
default: string;
|
|
64344
64258
|
};
|
|
64259
|
+
theme: StringConstructor;
|
|
64345
64260
|
modelValue: null;
|
|
64346
|
-
disabled: BooleanConstructor;
|
|
64347
64261
|
selectedClass: {
|
|
64348
64262
|
type: StringConstructor;
|
|
64349
64263
|
default: string;
|
|
64350
64264
|
};
|
|
64351
|
-
mandatory: Omit<{
|
|
64352
|
-
type: vue.PropType<boolean | "force">;
|
|
64353
|
-
default: "force";
|
|
64354
|
-
}, "type" | "default"> & {
|
|
64355
|
-
type: vue.PropType<NonNullable<boolean | "force">>;
|
|
64356
|
-
default: NonNullable<boolean | "force">;
|
|
64357
|
-
};
|
|
64358
64265
|
}>>;
|
|
64359
64266
|
type VStepperWindow = InstanceType<typeof VStepperWindow>;
|
|
64360
64267
|
|
package/lib/entry-bundler.mjs
CHANGED
|
@@ -15,7 +15,7 @@ export const createVuetify = function () {
|
|
|
15
15
|
...options
|
|
16
16
|
});
|
|
17
17
|
};
|
|
18
|
-
export const version = "3.4.0
|
|
18
|
+
export const version = "3.4.0";
|
|
19
19
|
createVuetify.version = version;
|
|
20
20
|
export { components, directives };
|
|
21
21
|
export * from "./composables/index.mjs";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entry-bundler.mjs","names":["components","directives","createVuetify","_createVuetify","options","arguments","length","undefined","version"],"sources":["../src/entry-bundler.ts"],"sourcesContent":["/* eslint-disable local-rules/sort-imports */\n\n// Styles\nimport './styles/main.sass'\n\n// Components\nimport * as components from './components'\nimport * as directives from './directives'\nimport { createVuetify as _createVuetify } from './framework'\n\n// Types\nimport type { VuetifyOptions } from './framework'\n\nexport const createVuetify = (options: VuetifyOptions = {}) => {\n return _createVuetify({ components, directives, ...options })\n}\n\nexport const version = __VUETIFY_VERSION__\ncreateVuetify.version = version\n\nexport {\n components,\n directives,\n}\nexport * from './composables'\n"],"mappings":"AAAA;;AAEA;AACA;;AAEA;AAAA,OACO,KAAKA,UAAU;AAAA,OACf,KAAKC,UAAU;AAAA,SACbC,aAAa,IAAIC,cAAc,2BAExC;AAGA,OAAO,MAAMD,aAAa,GAAG,SAAAA,CAAA,EAAkC;EAAA,IAAjCE,OAAuB,GAAAC,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG,CAAC,CAAC;EACxD,OAAOF,cAAc,CAAC;IAAEH,UAAU;IAAEC,UAAU;IAAE,GAAGG;EAAQ,CAAC,CAAC;AAC/D,CAAC;AAED,OAAO,MAAMI,OAAO,
|
|
1
|
+
{"version":3,"file":"entry-bundler.mjs","names":["components","directives","createVuetify","_createVuetify","options","arguments","length","undefined","version"],"sources":["../src/entry-bundler.ts"],"sourcesContent":["/* eslint-disable local-rules/sort-imports */\n\n// Styles\nimport './styles/main.sass'\n\n// Components\nimport * as components from './components'\nimport * as directives from './directives'\nimport { createVuetify as _createVuetify } from './framework'\n\n// Types\nimport type { VuetifyOptions } from './framework'\n\nexport const createVuetify = (options: VuetifyOptions = {}) => {\n return _createVuetify({ components, directives, ...options })\n}\n\nexport const version = __VUETIFY_VERSION__\ncreateVuetify.version = version\n\nexport {\n components,\n directives,\n}\nexport * from './composables'\n"],"mappings":"AAAA;;AAEA;AACA;;AAEA;AAAA,OACO,KAAKA,UAAU;AAAA,OACf,KAAKC,UAAU;AAAA,SACbC,aAAa,IAAIC,cAAc,2BAExC;AAGA,OAAO,MAAMD,aAAa,GAAG,SAAAA,CAAA,EAAkC;EAAA,IAAjCE,OAAuB,GAAAC,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG,CAAC,CAAC;EACxD,OAAOF,cAAc,CAAC;IAAEH,UAAU;IAAEC,UAAU;IAAE,GAAGG;EAAQ,CAAC,CAAC;AAC/D,CAAC;AAED,OAAO,MAAMI,OAAO,UAAsB;AAC1CN,aAAa,CAACM,OAAO,GAAGA,OAAO;AAE/B,SACER,UAAU,EACVC,UAAU;AACX"}
|