@vuetify/nightly 3.5.9-dev.2024-03-17 → 3.5.9-dev.2024-03-29
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/CHANGELOG.md +4 -2
- package/dist/json/attributes.json +51 -7
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +126 -126
- package/dist/json/tags.json +12 -1
- package/dist/json/web-types.json +114 -13
- package/dist/vuetify-labs.css +1894 -1894
- package/dist/vuetify-labs.d.ts +106 -19
- package/dist/vuetify-labs.esm.js +105 -98
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +105 -98
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +804 -804
- package/dist/vuetify.d.ts +147 -60
- package/dist/vuetify.esm.js +105 -98
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +105 -98
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +185 -185
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VMain/VMain.mjs +6 -1
- package/lib/components/VMain/VMain.mjs.map +1 -1
- package/lib/components/VMain/index.d.mts +36 -0
- package/lib/components/VTimeline/VTimeline.mjs +12 -6
- package/lib/components/VTimeline/VTimeline.mjs.map +1 -1
- package/lib/components/VTimeline/index.d.mts +70 -19
- package/lib/components/index.d.mts +106 -19
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +41 -41
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@ import "./VMain.css";
|
|
|
4
4
|
|
|
5
5
|
// Composables
|
|
6
6
|
import { makeComponentProps } from "../../composables/component.mjs";
|
|
7
|
+
import { makeDimensionProps, useDimension } from "../../composables/dimensions.mjs";
|
|
7
8
|
import { useLayout } from "../../composables/layout.mjs";
|
|
8
9
|
import { useSsrBoot } from "../../composables/ssrBoot.mjs";
|
|
9
10
|
import { makeTagProps } from "../../composables/tag.mjs"; // Utilities
|
|
@@ -11,6 +12,7 @@ import { genericComponent, propsFactory, useRender } from "../../util/index.mjs"
|
|
|
11
12
|
export const makeVMainProps = propsFactory({
|
|
12
13
|
scrollable: Boolean,
|
|
13
14
|
...makeComponentProps(),
|
|
15
|
+
...makeDimensionProps(),
|
|
14
16
|
...makeTagProps({
|
|
15
17
|
tag: 'main'
|
|
16
18
|
})
|
|
@@ -22,6 +24,9 @@ export const VMain = genericComponent()({
|
|
|
22
24
|
let {
|
|
23
25
|
slots
|
|
24
26
|
} = _ref;
|
|
27
|
+
const {
|
|
28
|
+
dimensionStyles
|
|
29
|
+
} = useDimension(props);
|
|
25
30
|
const {
|
|
26
31
|
mainStyles,
|
|
27
32
|
layoutIsReady
|
|
@@ -33,7 +38,7 @@ export const VMain = genericComponent()({
|
|
|
33
38
|
"class": ['v-main', {
|
|
34
39
|
'v-main--scrollable': props.scrollable
|
|
35
40
|
}, props.class],
|
|
36
|
-
"style": [mainStyles.value, ssrBootStyles.value, props.style]
|
|
41
|
+
"style": [mainStyles.value, ssrBootStyles.value, dimensionStyles.value, props.style]
|
|
37
42
|
}, {
|
|
38
43
|
default: () => [props.scrollable ? _createVNode("div", {
|
|
39
44
|
"class": "v-main__scroller"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VMain.mjs","names":["makeComponentProps","useLayout","useSsrBoot","makeTagProps","genericComponent","propsFactory","useRender","makeVMainProps","scrollable","Boolean","tag","VMain","name","props","setup","_ref","slots","mainStyles","layoutIsReady","ssrBootStyles","_createVNode","class","value","style","default"],"sources":["../../../src/components/VMain/VMain.tsx"],"sourcesContent":["// Styles\nimport './VMain.sass'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\nimport { useLayout } from '@/composables/layout'\nimport { useSsrBoot } from '@/composables/ssrBoot'\nimport { makeTagProps } from '@/composables/tag'\n\n// Utilities\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\nexport const makeVMainProps = propsFactory({\n scrollable: Boolean,\n\n ...makeComponentProps(),\n ...makeTagProps({ tag: 'main' }),\n}, 'VMain')\n\nexport const VMain = genericComponent()({\n name: 'VMain',\n\n props: makeVMainProps(),\n\n setup (props, { slots }) {\n const { mainStyles, layoutIsReady } = useLayout()\n const { ssrBootStyles } = useSsrBoot()\n\n useRender(() => (\n <props.tag\n class={[\n 'v-main',\n { 'v-main--scrollable': props.scrollable },\n props.class,\n ]}\n style={[\n mainStyles.value,\n ssrBootStyles.value,\n props.style,\n ]}\n >\n { props.scrollable\n ? (\n <div class=\"v-main__scroller\">\n { slots.default?.() }\n </div>\n )\n : slots.default?.()\n }\n </props.tag>\n ))\n\n return layoutIsReady\n },\n})\n\nexport type VMain = InstanceType<typeof VMain>\n"],"mappings":";AAAA;AACA;;AAEA;AAAA,SACSA,kBAAkB;AAAA,SAClBC,SAAS;AAAA,SACTC,UAAU;AAAA,SACVC,YAAY,qCAErB;AAAA,SACSC,gBAAgB,EAAEC,YAAY,EAAEC,SAAS;AAElD,OAAO,MAAMC,cAAc,GAAGF,YAAY,CAAC;EACzCG,UAAU,EAAEC,OAAO;EAEnB,
|
|
1
|
+
{"version":3,"file":"VMain.mjs","names":["makeComponentProps","makeDimensionProps","useDimension","useLayout","useSsrBoot","makeTagProps","genericComponent","propsFactory","useRender","makeVMainProps","scrollable","Boolean","tag","VMain","name","props","setup","_ref","slots","dimensionStyles","mainStyles","layoutIsReady","ssrBootStyles","_createVNode","class","value","style","default"],"sources":["../../../src/components/VMain/VMain.tsx"],"sourcesContent":["// Styles\nimport './VMain.sass'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\nimport { makeDimensionProps, useDimension } from '@/composables/dimensions'\nimport { useLayout } from '@/composables/layout'\nimport { useSsrBoot } from '@/composables/ssrBoot'\nimport { makeTagProps } from '@/composables/tag'\n\n// Utilities\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\nexport const makeVMainProps = propsFactory({\n scrollable: Boolean,\n\n ...makeComponentProps(),\n ...makeDimensionProps(),\n ...makeTagProps({ tag: 'main' }),\n}, 'VMain')\n\nexport const VMain = genericComponent()({\n name: 'VMain',\n\n props: makeVMainProps(),\n\n setup (props, { slots }) {\n const { dimensionStyles } = useDimension(props)\n const { mainStyles, layoutIsReady } = useLayout()\n const { ssrBootStyles } = useSsrBoot()\n\n useRender(() => (\n <props.tag\n class={[\n 'v-main',\n { 'v-main--scrollable': props.scrollable },\n props.class,\n ]}\n style={[\n mainStyles.value,\n ssrBootStyles.value,\n dimensionStyles.value,\n props.style,\n ]}\n >\n { props.scrollable\n ? (\n <div class=\"v-main__scroller\">\n { slots.default?.() }\n </div>\n )\n : slots.default?.()\n }\n </props.tag>\n ))\n\n return layoutIsReady\n },\n})\n\nexport type VMain = InstanceType<typeof VMain>\n"],"mappings":";AAAA;AACA;;AAEA;AAAA,SACSA,kBAAkB;AAAA,SAClBC,kBAAkB,EAAEC,YAAY;AAAA,SAChCC,SAAS;AAAA,SACTC,UAAU;AAAA,SACVC,YAAY,qCAErB;AAAA,SACSC,gBAAgB,EAAEC,YAAY,EAAEC,SAAS;AAElD,OAAO,MAAMC,cAAc,GAAGF,YAAY,CAAC;EACzCG,UAAU,EAAEC,OAAO;EAEnB,GAAGX,kBAAkB,CAAC,CAAC;EACvB,GAAGC,kBAAkB,CAAC,CAAC;EACvB,GAAGI,YAAY,CAAC;IAAEO,GAAG,EAAE;EAAO,CAAC;AACjC,CAAC,EAAE,OAAO,CAAC;AAEX,OAAO,MAAMC,KAAK,GAAGP,gBAAgB,CAAC,CAAC,CAAC;EACtCQ,IAAI,EAAE,OAAO;EAEbC,KAAK,EAAEN,cAAc,CAAC,CAAC;EAEvBO,KAAKA,CAAED,KAAK,EAAAE,IAAA,EAAa;IAAA,IAAX;MAAEC;IAAM,CAAC,GAAAD,IAAA;IACrB,MAAM;MAAEE;IAAgB,CAAC,GAAGjB,YAAY,CAACa,KAAK,CAAC;IAC/C,MAAM;MAAEK,UAAU;MAAEC;IAAc,CAAC,GAAGlB,SAAS,CAAC,CAAC;IACjD,MAAM;MAAEmB;IAAc,CAAC,GAAGlB,UAAU,CAAC,CAAC;IAEtCI,SAAS,CAAC,MAAAe,YAAA,CAAAR,KAAA,CAAAH,GAAA;MAAA,SAEC,CACL,QAAQ,EACR;QAAE,oBAAoB,EAAEG,KAAK,CAACL;MAAW,CAAC,EAC1CK,KAAK,CAACS,KAAK,CACZ;MAAA,SACM,CACLJ,UAAU,CAACK,KAAK,EAChBH,aAAa,CAACG,KAAK,EACnBN,eAAe,CAACM,KAAK,EACrBV,KAAK,CAACW,KAAK;IACZ;MAAAC,OAAA,EAAAA,CAAA,MAECZ,KAAK,CAACL,UAAU,GAAAa,YAAA;QAAA;MAAA,IAGVL,KAAK,CAACS,OAAO,GAAG,CAAC,KAGrBT,KAAK,CAACS,OAAO,GAAG,CAAC;IAAA,EAGxB,CAAC;IAEF,OAAON,aAAa;EACtB;AACF,CAAC,CAAC"}
|
|
@@ -11,6 +11,12 @@ declare const VMain: {
|
|
|
11
11
|
tag: string;
|
|
12
12
|
scrollable: boolean;
|
|
13
13
|
} & {
|
|
14
|
+
height?: string | number | undefined;
|
|
15
|
+
width?: string | number | undefined;
|
|
16
|
+
maxHeight?: string | number | undefined;
|
|
17
|
+
maxWidth?: string | number | undefined;
|
|
18
|
+
minHeight?: string | number | undefined;
|
|
19
|
+
minWidth?: string | number | undefined;
|
|
14
20
|
class?: any;
|
|
15
21
|
} & {
|
|
16
22
|
$children?: vue.VNodeChild | {
|
|
@@ -26,6 +32,12 @@ declare const VMain: {
|
|
|
26
32
|
tag: string;
|
|
27
33
|
scrollable: boolean;
|
|
28
34
|
} & {
|
|
35
|
+
height?: string | number | undefined;
|
|
36
|
+
width?: string | number | undefined;
|
|
37
|
+
maxHeight?: string | number | undefined;
|
|
38
|
+
maxWidth?: string | number | undefined;
|
|
39
|
+
minHeight?: string | number | undefined;
|
|
40
|
+
minWidth?: string | number | undefined;
|
|
29
41
|
class?: any;
|
|
30
42
|
} & {
|
|
31
43
|
$children?: vue.VNodeChild | {
|
|
@@ -56,6 +68,12 @@ declare const VMain: {
|
|
|
56
68
|
tag: string;
|
|
57
69
|
scrollable: boolean;
|
|
58
70
|
} & {
|
|
71
|
+
height?: string | number | undefined;
|
|
72
|
+
width?: string | number | undefined;
|
|
73
|
+
maxHeight?: string | number | undefined;
|
|
74
|
+
maxWidth?: string | number | undefined;
|
|
75
|
+
minHeight?: string | number | undefined;
|
|
76
|
+
minWidth?: string | number | undefined;
|
|
59
77
|
class?: any;
|
|
60
78
|
} & {
|
|
61
79
|
$children?: vue.VNodeChild | {
|
|
@@ -79,6 +97,12 @@ declare const VMain: {
|
|
|
79
97
|
tag: string;
|
|
80
98
|
scrollable: boolean;
|
|
81
99
|
} & {
|
|
100
|
+
height?: string | number | undefined;
|
|
101
|
+
width?: string | number | undefined;
|
|
102
|
+
maxHeight?: string | number | undefined;
|
|
103
|
+
maxWidth?: string | number | undefined;
|
|
104
|
+
minHeight?: string | number | undefined;
|
|
105
|
+
minWidth?: string | number | undefined;
|
|
82
106
|
class?: any;
|
|
83
107
|
} & {
|
|
84
108
|
$children?: vue.VNodeChild | {
|
|
@@ -105,6 +129,12 @@ declare const VMain: {
|
|
|
105
129
|
type: vue.PropType<string>;
|
|
106
130
|
default: string;
|
|
107
131
|
};
|
|
132
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
133
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
134
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
135
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
136
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
137
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
108
138
|
class: vue.PropType<any>;
|
|
109
139
|
style: {
|
|
110
140
|
type: vue.PropType<vue.StyleValue>;
|
|
@@ -119,6 +149,12 @@ declare const VMain: {
|
|
|
119
149
|
type: vue.PropType<string>;
|
|
120
150
|
default: string;
|
|
121
151
|
};
|
|
152
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
153
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
154
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
155
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
156
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
157
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
122
158
|
class: vue.PropType<any>;
|
|
123
159
|
style: {
|
|
124
160
|
type: vue.PropType<vue.StyleValue>;
|
|
@@ -10,7 +10,8 @@ import { useRtl } from "../../composables/locale.mjs";
|
|
|
10
10
|
import { makeTagProps } from "../../composables/tag.mjs";
|
|
11
11
|
import { makeThemeProps, provideTheme } from "../../composables/theme.mjs"; // Utilities
|
|
12
12
|
import { computed, toRef } from 'vue';
|
|
13
|
-
import { convertToUnit, genericComponent, propsFactory, useRender } from "../../util/index.mjs"; // Types
|
|
13
|
+
import { convertToUnit, genericComponent, only, propsFactory, useRender } from "../../util/index.mjs"; // Types
|
|
14
|
+
import { makeVTimelineItemProps } from "./VTimelineItem.mjs";
|
|
14
15
|
export const makeVTimelineProps = propsFactory({
|
|
15
16
|
align: {
|
|
16
17
|
type: String,
|
|
@@ -31,10 +32,6 @@ export const makeVTimelineProps = propsFactory({
|
|
|
31
32
|
type: String,
|
|
32
33
|
validator: v => v == null || ['start', 'end'].includes(v)
|
|
33
34
|
},
|
|
34
|
-
lineInset: {
|
|
35
|
-
type: [String, Number],
|
|
36
|
-
default: 0
|
|
37
|
-
},
|
|
38
35
|
lineThickness: {
|
|
39
36
|
type: [String, Number],
|
|
40
37
|
default: 2
|
|
@@ -44,6 +41,9 @@ export const makeVTimelineProps = propsFactory({
|
|
|
44
41
|
type: String,
|
|
45
42
|
validator: v => ['start', 'end', 'both'].includes(v)
|
|
46
43
|
},
|
|
44
|
+
...only(makeVTimelineItemProps({
|
|
45
|
+
lineInset: 0
|
|
46
|
+
}), ['dotColor', 'fillDot', 'hideOpposite', 'iconColor', 'lineInset', 'size']),
|
|
47
47
|
...makeComponentProps(),
|
|
48
48
|
...makeDensityProps(),
|
|
49
49
|
...makeTagProps(),
|
|
@@ -71,7 +71,13 @@ export const VTimeline = genericComponent()({
|
|
|
71
71
|
},
|
|
72
72
|
VTimelineItem: {
|
|
73
73
|
density: toRef(props, 'density'),
|
|
74
|
-
|
|
74
|
+
dotColor: toRef(props, 'lineColor'),
|
|
75
|
+
fillDot: toRef(props, 'fillDot'),
|
|
76
|
+
hideOpposite: toRef(props, 'hideOpposite'),
|
|
77
|
+
iconColor: toRef(props, 'iconColor'),
|
|
78
|
+
lineColor: toRef(props, 'lineColor'),
|
|
79
|
+
lineInset: toRef(props, 'lineInset'),
|
|
80
|
+
size: toRef(props, 'size')
|
|
75
81
|
}
|
|
76
82
|
});
|
|
77
83
|
const sideClasses = computed(() => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VTimeline.mjs","names":["makeComponentProps","provideDefaults","makeDensityProps","useDensity","useRtl","makeTagProps","makeThemeProps","provideTheme","computed","toRef","convertToUnit","genericComponent","propsFactory","useRender","makeVTimelineProps","align","type","String","default","validator","v","includes","direction","justify","side","
|
|
1
|
+
{"version":3,"file":"VTimeline.mjs","names":["makeComponentProps","provideDefaults","makeDensityProps","useDensity","useRtl","makeTagProps","makeThemeProps","provideTheme","computed","toRef","convertToUnit","genericComponent","only","propsFactory","useRender","makeVTimelineItemProps","makeVTimelineProps","align","type","String","default","validator","v","includes","direction","justify","side","lineThickness","Number","lineColor","truncateLine","lineInset","VTimeline","name","props","setup","_ref","slots","themeClasses","densityClasses","rtlClasses","VTimelineDivider","VTimelineItem","density","dotColor","fillDot","hideOpposite","iconColor","size","sideClasses","truncateClasses","classes","_createVNode","tag","value","class","style"],"sources":["../../../src/components/VTimeline/VTimeline.tsx"],"sourcesContent":["// Styles\nimport './VTimeline.sass'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\nimport { provideDefaults } from '@/composables/defaults'\nimport { makeDensityProps, useDensity } from '@/composables/density'\nimport { useRtl } from '@/composables/locale'\nimport { makeTagProps } from '@/composables/tag'\nimport { makeThemeProps, provideTheme } from '@/composables/theme'\n\n// Utilities\nimport { computed, toRef } from 'vue'\nimport { convertToUnit, genericComponent, only, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { Prop } from 'vue'\nimport { makeVTimelineItemProps } from './VTimelineItem'\n\nexport type TimelineDirection = 'vertical' | 'horizontal'\nexport type TimelineSide = 'start' | 'end' | undefined\nexport type TimelineAlign = 'center' | 'start'\nexport type TimelineTruncateLine = 'start' | 'end' | 'both' | undefined\n\nexport const makeVTimelineProps = propsFactory({\n align: {\n type: String,\n default: 'center',\n validator: (v: any) => ['center', 'start'].includes(v),\n } as Prop<TimelineAlign>,\n direction: {\n type: String,\n default: 'vertical',\n validator: (v: any) => ['vertical', 'horizontal'].includes(v),\n } as Prop<TimelineDirection>,\n justify: {\n type: String,\n default: 'auto',\n validator: (v: any) => ['auto', 'center'].includes(v),\n },\n side: {\n type: String,\n validator: (v: any) => v == null || ['start', 'end'].includes(v),\n } as Prop<TimelineSide>,\n lineThickness: {\n type: [String, Number],\n default: 2,\n },\n lineColor: String,\n truncateLine: {\n type: String,\n validator: (v: any) => ['start', 'end', 'both'].includes(v),\n } as Prop<TimelineTruncateLine>,\n\n ...only(makeVTimelineItemProps({\n lineInset: 0,\n }), ['dotColor', 'fillDot', 'hideOpposite', 'iconColor', 'lineInset', 'size']),\n ...makeComponentProps(),\n ...makeDensityProps(),\n ...makeTagProps(),\n ...makeThemeProps(),\n}, 'VTimeline')\n\nexport const VTimeline = genericComponent()({\n name: 'VTimeline',\n\n props: makeVTimelineProps(),\n\n setup (props, { slots }) {\n const { themeClasses } = provideTheme(props)\n const { densityClasses } = useDensity(props)\n const { rtlClasses } = useRtl()\n\n provideDefaults({\n VTimelineDivider: {\n lineColor: toRef(props, 'lineColor'),\n },\n VTimelineItem: {\n density: toRef(props, 'density'),\n dotColor: toRef(props, 'lineColor'),\n fillDot: toRef(props, 'fillDot'),\n hideOpposite: toRef(props, 'hideOpposite'),\n iconColor: toRef(props, 'iconColor'),\n lineColor: toRef(props, 'lineColor'),\n lineInset: toRef(props, 'lineInset'),\n size: toRef(props, 'size'),\n },\n })\n\n const sideClasses = computed(() => {\n const side = props.side ? props.side : props.density !== 'default' ? 'end' : null\n\n return side && `v-timeline--side-${side}`\n })\n\n const truncateClasses = computed(() => {\n const classes = [\n 'v-timeline--truncate-line-start',\n 'v-timeline--truncate-line-end',\n ]\n\n switch (props.truncateLine) {\n case 'both': return classes\n case 'start': return classes[0]\n case 'end': return classes[1]\n default: return null\n }\n })\n\n useRender(() => (\n <props.tag\n class={[\n 'v-timeline',\n `v-timeline--${props.direction}`,\n `v-timeline--align-${props.align}`,\n `v-timeline--justify-${props.justify}`,\n truncateClasses.value,\n {\n 'v-timeline--inset-line': !!props.lineInset,\n },\n themeClasses.value,\n densityClasses.value,\n sideClasses.value,\n rtlClasses.value,\n props.class,\n ]}\n style={[\n {\n '--v-timeline-line-thickness': convertToUnit(props.lineThickness),\n },\n props.style,\n ]}\n v-slots={ slots }\n />\n ))\n\n return {}\n },\n})\n\nexport type VTimeline = InstanceType<typeof VTimeline>\n"],"mappings":"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"}
|
|
@@ -14,10 +14,12 @@ type TimelineTruncateLine = 'start' | 'end' | 'both' | undefined;
|
|
|
14
14
|
declare const VTimeline: {
|
|
15
15
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
16
16
|
style: vue.StyleValue;
|
|
17
|
+
size: string | number;
|
|
17
18
|
tag: string;
|
|
18
19
|
justify: string;
|
|
19
20
|
density: Density;
|
|
20
|
-
|
|
21
|
+
fillDot: boolean;
|
|
22
|
+
lineInset: NonNullable<string | number>;
|
|
21
23
|
lineThickness: string | number;
|
|
22
24
|
} & {
|
|
23
25
|
direction?: TimelineDirection | undefined;
|
|
@@ -25,7 +27,10 @@ declare const VTimeline: {
|
|
|
25
27
|
align?: TimelineAlign | undefined;
|
|
26
28
|
side?: TimelineSide;
|
|
27
29
|
theme?: string | undefined;
|
|
30
|
+
dotColor?: string | undefined;
|
|
31
|
+
iconColor?: string | undefined;
|
|
28
32
|
lineColor?: string | undefined;
|
|
33
|
+
hideOpposite?: boolean | undefined;
|
|
29
34
|
truncateLine?: TimelineTruncateLine;
|
|
30
35
|
} & {
|
|
31
36
|
$children?: vue.VNodeChild | {
|
|
@@ -38,10 +43,12 @@ declare const VTimeline: {
|
|
|
38
43
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
39
44
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
40
45
|
style: vue.StyleValue;
|
|
46
|
+
size: string | number;
|
|
41
47
|
tag: string;
|
|
42
48
|
justify: string;
|
|
43
49
|
density: Density;
|
|
44
|
-
|
|
50
|
+
fillDot: boolean;
|
|
51
|
+
lineInset: NonNullable<string | number>;
|
|
45
52
|
lineThickness: string | number;
|
|
46
53
|
} & {
|
|
47
54
|
direction?: TimelineDirection | undefined;
|
|
@@ -49,7 +56,10 @@ declare const VTimeline: {
|
|
|
49
56
|
align?: TimelineAlign | undefined;
|
|
50
57
|
side?: TimelineSide;
|
|
51
58
|
theme?: string | undefined;
|
|
59
|
+
dotColor?: string | undefined;
|
|
60
|
+
iconColor?: string | undefined;
|
|
52
61
|
lineColor?: string | undefined;
|
|
62
|
+
hideOpposite?: boolean | undefined;
|
|
53
63
|
truncateLine?: TimelineTruncateLine;
|
|
54
64
|
} & {
|
|
55
65
|
$children?: vue.VNodeChild | {
|
|
@@ -62,10 +72,13 @@ declare const VTimeline: {
|
|
|
62
72
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
63
73
|
}, {
|
|
64
74
|
style: vue.StyleValue;
|
|
75
|
+
size: string | number;
|
|
65
76
|
tag: string;
|
|
66
77
|
justify: string;
|
|
67
78
|
density: Density;
|
|
68
|
-
|
|
79
|
+
fillDot: boolean;
|
|
80
|
+
hideOpposite: boolean;
|
|
81
|
+
lineInset: NonNullable<string | number>;
|
|
69
82
|
lineThickness: string | number;
|
|
70
83
|
}, true, {}, vue.SlotsType<Partial<{
|
|
71
84
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -80,10 +93,12 @@ declare const VTimeline: {
|
|
|
80
93
|
Defaults: {};
|
|
81
94
|
}, {
|
|
82
95
|
style: vue.StyleValue;
|
|
96
|
+
size: string | number;
|
|
83
97
|
tag: string;
|
|
84
98
|
justify: string;
|
|
85
99
|
density: Density;
|
|
86
|
-
|
|
100
|
+
fillDot: boolean;
|
|
101
|
+
lineInset: NonNullable<string | number>;
|
|
87
102
|
lineThickness: string | number;
|
|
88
103
|
} & {
|
|
89
104
|
direction?: TimelineDirection | undefined;
|
|
@@ -91,7 +106,10 @@ declare const VTimeline: {
|
|
|
91
106
|
align?: TimelineAlign | undefined;
|
|
92
107
|
side?: TimelineSide;
|
|
93
108
|
theme?: string | undefined;
|
|
109
|
+
dotColor?: string | undefined;
|
|
110
|
+
iconColor?: string | undefined;
|
|
94
111
|
lineColor?: string | undefined;
|
|
112
|
+
hideOpposite?: boolean | undefined;
|
|
95
113
|
truncateLine?: TimelineTruncateLine;
|
|
96
114
|
} & {
|
|
97
115
|
$children?: vue.VNodeChild | {
|
|
@@ -104,10 +122,13 @@ declare const VTimeline: {
|
|
|
104
122
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
105
123
|
}, {}, {}, {}, {}, {
|
|
106
124
|
style: vue.StyleValue;
|
|
125
|
+
size: string | number;
|
|
107
126
|
tag: string;
|
|
108
127
|
justify: string;
|
|
109
128
|
density: Density;
|
|
110
|
-
|
|
129
|
+
fillDot: boolean;
|
|
130
|
+
hideOpposite: boolean;
|
|
131
|
+
lineInset: NonNullable<string | number>;
|
|
111
132
|
lineThickness: string | number;
|
|
112
133
|
}>;
|
|
113
134
|
__isFragment?: undefined;
|
|
@@ -115,10 +136,12 @@ declare const VTimeline: {
|
|
|
115
136
|
__isSuspense?: undefined;
|
|
116
137
|
} & vue.ComponentOptionsBase<{
|
|
117
138
|
style: vue.StyleValue;
|
|
139
|
+
size: string | number;
|
|
118
140
|
tag: string;
|
|
119
141
|
justify: string;
|
|
120
142
|
density: Density;
|
|
121
|
-
|
|
143
|
+
fillDot: boolean;
|
|
144
|
+
lineInset: NonNullable<string | number>;
|
|
122
145
|
lineThickness: string | number;
|
|
123
146
|
} & {
|
|
124
147
|
direction?: TimelineDirection | undefined;
|
|
@@ -126,7 +149,10 @@ declare const VTimeline: {
|
|
|
126
149
|
align?: TimelineAlign | undefined;
|
|
127
150
|
side?: TimelineSide;
|
|
128
151
|
theme?: string | undefined;
|
|
152
|
+
dotColor?: string | undefined;
|
|
153
|
+
iconColor?: string | undefined;
|
|
129
154
|
lineColor?: string | undefined;
|
|
155
|
+
hideOpposite?: boolean | undefined;
|
|
130
156
|
truncateLine?: TimelineTruncateLine;
|
|
131
157
|
} & {
|
|
132
158
|
$children?: vue.VNodeChild | {
|
|
@@ -139,10 +165,13 @@ declare const VTimeline: {
|
|
|
139
165
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
140
166
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
141
167
|
style: vue.StyleValue;
|
|
168
|
+
size: string | number;
|
|
142
169
|
tag: string;
|
|
143
170
|
justify: string;
|
|
144
171
|
density: Density;
|
|
145
|
-
|
|
172
|
+
fillDot: boolean;
|
|
173
|
+
hideOpposite: boolean;
|
|
174
|
+
lineInset: NonNullable<string | number>;
|
|
146
175
|
lineThickness: string | number;
|
|
147
176
|
}, {}, string, vue.SlotsType<Partial<{
|
|
148
177
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -164,6 +193,21 @@ declare const VTimeline: {
|
|
|
164
193
|
type: vue.PropType<vue.StyleValue>;
|
|
165
194
|
default: null;
|
|
166
195
|
};
|
|
196
|
+
size: {
|
|
197
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
198
|
+
default: string;
|
|
199
|
+
};
|
|
200
|
+
dotColor: StringConstructor;
|
|
201
|
+
fillDot: BooleanConstructor;
|
|
202
|
+
iconColor: StringConstructor;
|
|
203
|
+
hideOpposite: {
|
|
204
|
+
type: BooleanConstructor;
|
|
205
|
+
default: undefined;
|
|
206
|
+
};
|
|
207
|
+
lineInset: {
|
|
208
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
209
|
+
default: NonNullable<string | number>;
|
|
210
|
+
};
|
|
167
211
|
align: Prop<TimelineAlign>;
|
|
168
212
|
direction: Prop<TimelineDirection>;
|
|
169
213
|
justify: {
|
|
@@ -172,10 +216,6 @@ declare const VTimeline: {
|
|
|
172
216
|
validator: (v: any) => boolean;
|
|
173
217
|
};
|
|
174
218
|
side: Prop<TimelineSide>;
|
|
175
|
-
lineInset: {
|
|
176
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
177
|
-
default: number;
|
|
178
|
-
};
|
|
179
219
|
lineThickness: {
|
|
180
220
|
type: (StringConstructor | NumberConstructor)[];
|
|
181
221
|
default: number;
|
|
@@ -198,6 +238,21 @@ declare const VTimeline: {
|
|
|
198
238
|
type: vue.PropType<vue.StyleValue>;
|
|
199
239
|
default: null;
|
|
200
240
|
};
|
|
241
|
+
size: {
|
|
242
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
243
|
+
default: string;
|
|
244
|
+
};
|
|
245
|
+
dotColor: StringConstructor;
|
|
246
|
+
fillDot: BooleanConstructor;
|
|
247
|
+
iconColor: StringConstructor;
|
|
248
|
+
hideOpposite: {
|
|
249
|
+
type: BooleanConstructor;
|
|
250
|
+
default: undefined;
|
|
251
|
+
};
|
|
252
|
+
lineInset: {
|
|
253
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
254
|
+
default: NonNullable<string | number>;
|
|
255
|
+
};
|
|
201
256
|
align: Prop<TimelineAlign>;
|
|
202
257
|
direction: Prop<TimelineDirection>;
|
|
203
258
|
justify: {
|
|
@@ -206,10 +261,6 @@ declare const VTimeline: {
|
|
|
206
261
|
validator: (v: any) => boolean;
|
|
207
262
|
};
|
|
208
263
|
side: Prop<TimelineSide>;
|
|
209
|
-
lineInset: {
|
|
210
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
211
|
-
default: number;
|
|
212
|
-
};
|
|
213
264
|
lineThickness: {
|
|
214
265
|
type: (StringConstructor | NumberConstructor)[];
|
|
215
266
|
default: number;
|
|
@@ -242,10 +293,10 @@ declare const VTimelineItem: {
|
|
|
242
293
|
elevation?: string | number | undefined;
|
|
243
294
|
rounded?: string | number | boolean | undefined;
|
|
244
295
|
density?: "default" | "compact" | undefined;
|
|
245
|
-
lineInset?: string | number | undefined;
|
|
246
296
|
dotColor?: string | undefined;
|
|
247
297
|
iconColor?: string | undefined;
|
|
248
298
|
hideOpposite?: boolean | undefined;
|
|
299
|
+
lineInset?: string | number | undefined;
|
|
249
300
|
} & {
|
|
250
301
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
251
302
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -280,10 +331,10 @@ declare const VTimelineItem: {
|
|
|
280
331
|
elevation?: string | number | undefined;
|
|
281
332
|
rounded?: string | number | boolean | undefined;
|
|
282
333
|
density?: "default" | "compact" | undefined;
|
|
283
|
-
lineInset?: string | number | undefined;
|
|
284
334
|
dotColor?: string | undefined;
|
|
285
335
|
iconColor?: string | undefined;
|
|
286
336
|
hideOpposite?: boolean | undefined;
|
|
337
|
+
lineInset?: string | number | undefined;
|
|
287
338
|
} & {
|
|
288
339
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
289
340
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -344,10 +395,10 @@ declare const VTimelineItem: {
|
|
|
344
395
|
elevation?: string | number | undefined;
|
|
345
396
|
rounded?: string | number | boolean | undefined;
|
|
346
397
|
density?: "default" | "compact" | undefined;
|
|
347
|
-
lineInset?: string | number | undefined;
|
|
348
398
|
dotColor?: string | undefined;
|
|
349
399
|
iconColor?: string | undefined;
|
|
350
400
|
hideOpposite?: boolean | undefined;
|
|
401
|
+
lineInset?: string | number | undefined;
|
|
351
402
|
} & {
|
|
352
403
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
353
404
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -395,10 +446,10 @@ declare const VTimelineItem: {
|
|
|
395
446
|
elevation?: string | number | undefined;
|
|
396
447
|
rounded?: string | number | boolean | undefined;
|
|
397
448
|
density?: "default" | "compact" | undefined;
|
|
398
|
-
lineInset?: string | number | undefined;
|
|
399
449
|
dotColor?: string | undefined;
|
|
400
450
|
iconColor?: string | undefined;
|
|
401
451
|
hideOpposite?: boolean | undefined;
|
|
452
|
+
lineInset?: string | number | undefined;
|
|
402
453
|
} & {
|
|
403
454
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
404
455
|
default?: (() => vue.VNodeChild) | undefined;
|