@vuecs/navigation 2.4.1 → 3.0.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/LICENSE +201 -21
- package/README.md +10 -167
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/item/module.d.ts +48 -4
- package/dist/components/item/module.d.ts.map +1 -1
- package/dist/components/items/index.d.ts +1 -0
- package/dist/components/items/index.d.ts.map +1 -1
- package/dist/components/items/module.d.ts +45 -2
- package/dist/components/items/module.d.ts.map +1 -1
- package/dist/components/items/theme.d.ts +10 -0
- package/dist/components/items/theme.d.ts.map +1 -0
- package/dist/components/stepper/Stepper.vue.d.ts +129 -0
- package/dist/components/stepper/Stepper.vue.d.ts.map +1 -0
- package/dist/components/stepper/StepperDescription.vue.d.ts +79 -0
- package/dist/components/stepper/StepperDescription.vue.d.ts.map +1 -0
- package/dist/components/stepper/StepperIndicator.vue.d.ts +79 -0
- package/dist/components/stepper/StepperIndicator.vue.d.ts.map +1 -0
- package/dist/components/stepper/StepperItem.vue.d.ts +99 -0
- package/dist/components/stepper/StepperItem.vue.d.ts.map +1 -0
- package/dist/components/stepper/StepperSeparator.vue.d.ts +79 -0
- package/dist/components/stepper/StepperSeparator.vue.d.ts.map +1 -0
- package/dist/components/stepper/StepperTitle.vue.d.ts +79 -0
- package/dist/components/stepper/StepperTitle.vue.d.ts.map +1 -0
- package/dist/components/stepper/StepperTrigger.vue.d.ts +79 -0
- package/dist/components/stepper/StepperTrigger.vue.d.ts.map +1 -0
- package/dist/components/stepper/context.d.ts +19 -0
- package/dist/components/stepper/context.d.ts.map +1 -0
- package/dist/components/stepper/index.d.ts +19 -0
- package/dist/components/stepper/index.d.ts.map +1 -0
- package/dist/components/stepper/theme.d.ts +4 -0
- package/dist/components/stepper/theme.d.ts.map +1 -0
- package/dist/components/stepper/types.d.ts +23 -0
- package/dist/components/stepper/types.d.ts.map +1 -0
- package/dist/components/type.d.ts +22 -0
- package/dist/components/type.d.ts.map +1 -0
- package/dist/helpers/component/index.d.ts +0 -1
- package/dist/helpers/component/index.d.ts.map +1 -1
- package/dist/helpers/component/types.d.ts +15 -15
- package/dist/helpers/component/types.d.ts.map +1 -1
- package/dist/helpers/match.d.ts.map +1 -1
- package/dist/helpers/reset.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +818 -566
- package/dist/index.mjs.map +1 -1
- package/dist/manager/module.d.ts.map +1 -1
- package/dist/style.css +100 -0
- package/dist/types.d.ts +8 -4
- package/dist/types.d.ts.map +1 -1
- package/dist/vue.d.ts +8 -1
- package/dist/vue.d.ts.map +1 -1
- package/package.json +24 -27
- package/core/index.cjs +0 -1
- package/core/index.d.ts +0 -2
- package/core/index.mjs +0 -1
- package/core/package.json +0 -5
- package/dist/helpers/component/build.d.ts +0 -3
- package/dist/helpers/component/build.d.ts.map +0 -1
- package/dist/index.cjs +0 -617
- package/dist/index.cjs.map +0 -1
- package/dist/index.css +0 -82
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import type { ExtractPublicPropTypes, PropType } from 'vue';
|
|
2
|
+
import type { ThemeClassesOverride, VariantValues } from '@vuecs/core';
|
|
3
|
+
import type { StepperThemeClasses } from './types';
|
|
4
|
+
declare const stepperProps: {
|
|
5
|
+
/** Active step (1-based). v-modeled. */
|
|
6
|
+
modelValue: {
|
|
7
|
+
type: NumberConstructor;
|
|
8
|
+
default: any;
|
|
9
|
+
};
|
|
10
|
+
/** Initial active step for uncontrolled usage. */
|
|
11
|
+
defaultValue: {
|
|
12
|
+
type: NumberConstructor;
|
|
13
|
+
default: number;
|
|
14
|
+
};
|
|
15
|
+
/** Layout direction. */
|
|
16
|
+
orientation: {
|
|
17
|
+
type: PropType<"horizontal" | "vertical">;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
/** Reading direction. Falls back to the ConfigManager's `dir` value when omitted. */
|
|
21
|
+
dir: {
|
|
22
|
+
type: PropType<"ltr" | "rtl">;
|
|
23
|
+
default: any;
|
|
24
|
+
};
|
|
25
|
+
/** When `true`, steps must be completed in order — Reka blocks navigation past the next incomplete step. */
|
|
26
|
+
linear: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
/** Theme-class overrides for this component instance. */
|
|
31
|
+
themeClass: {
|
|
32
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
33
|
+
default: any;
|
|
34
|
+
};
|
|
35
|
+
/** Theme-variant values for this component instance. */
|
|
36
|
+
themeVariant: {
|
|
37
|
+
type: PropType<VariantValues>;
|
|
38
|
+
default: any;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export type StepperProps = ExtractPublicPropTypes<typeof stepperProps>;
|
|
42
|
+
declare const _default: typeof __VLS_export;
|
|
43
|
+
export default _default;
|
|
44
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
45
|
+
/** Active step (1-based). v-modeled. */
|
|
46
|
+
modelValue: {
|
|
47
|
+
type: NumberConstructor;
|
|
48
|
+
default: any;
|
|
49
|
+
};
|
|
50
|
+
/** Initial active step for uncontrolled usage. */
|
|
51
|
+
defaultValue: {
|
|
52
|
+
type: NumberConstructor;
|
|
53
|
+
default: number;
|
|
54
|
+
};
|
|
55
|
+
/** Layout direction. */
|
|
56
|
+
orientation: {
|
|
57
|
+
type: PropType<"horizontal" | "vertical">;
|
|
58
|
+
default: string;
|
|
59
|
+
};
|
|
60
|
+
/** Reading direction. Falls back to the ConfigManager's `dir` value when omitted. */
|
|
61
|
+
dir: {
|
|
62
|
+
type: PropType<"ltr" | "rtl">;
|
|
63
|
+
default: any;
|
|
64
|
+
};
|
|
65
|
+
/** When `true`, steps must be completed in order — Reka blocks navigation past the next incomplete step. */
|
|
66
|
+
linear: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
70
|
+
/** Theme-class overrides for this component instance. */
|
|
71
|
+
themeClass: {
|
|
72
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
73
|
+
default: any;
|
|
74
|
+
};
|
|
75
|
+
/** Theme-variant values for this component instance. */
|
|
76
|
+
themeVariant: {
|
|
77
|
+
type: PropType<VariantValues>;
|
|
78
|
+
default: any;
|
|
79
|
+
};
|
|
80
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
81
|
+
[key: string]: any;
|
|
82
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
83
|
+
/** Active step (1-based). v-modeled. */
|
|
84
|
+
modelValue: {
|
|
85
|
+
type: NumberConstructor;
|
|
86
|
+
default: any;
|
|
87
|
+
};
|
|
88
|
+
/** Initial active step for uncontrolled usage. */
|
|
89
|
+
defaultValue: {
|
|
90
|
+
type: NumberConstructor;
|
|
91
|
+
default: number;
|
|
92
|
+
};
|
|
93
|
+
/** Layout direction. */
|
|
94
|
+
orientation: {
|
|
95
|
+
type: PropType<"horizontal" | "vertical">;
|
|
96
|
+
default: string;
|
|
97
|
+
};
|
|
98
|
+
/** Reading direction. Falls back to the ConfigManager's `dir` value when omitted. */
|
|
99
|
+
dir: {
|
|
100
|
+
type: PropType<"ltr" | "rtl">;
|
|
101
|
+
default: any;
|
|
102
|
+
};
|
|
103
|
+
/** When `true`, steps must be completed in order — Reka blocks navigation past the next incomplete step. */
|
|
104
|
+
linear: {
|
|
105
|
+
type: BooleanConstructor;
|
|
106
|
+
default: boolean;
|
|
107
|
+
};
|
|
108
|
+
/** Theme-class overrides for this component instance. */
|
|
109
|
+
themeClass: {
|
|
110
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
111
|
+
default: any;
|
|
112
|
+
};
|
|
113
|
+
/** Theme-variant values for this component instance. */
|
|
114
|
+
themeVariant: {
|
|
115
|
+
type: PropType<VariantValues>;
|
|
116
|
+
default: any;
|
|
117
|
+
};
|
|
118
|
+
}>> & Readonly<{
|
|
119
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
120
|
+
}>, {
|
|
121
|
+
themeClass: ThemeClassesOverride<StepperThemeClasses>;
|
|
122
|
+
themeVariant: VariantValues;
|
|
123
|
+
modelValue: number;
|
|
124
|
+
defaultValue: number;
|
|
125
|
+
orientation: "vertical" | "horizontal";
|
|
126
|
+
dir: "ltr" | "rtl";
|
|
127
|
+
linear: boolean;
|
|
128
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
129
|
+
//# sourceMappingURL=Stepper.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Stepper.vue.d.ts","sourceRoot":"","sources":["../../../src/components/stepper/Stepper.vue"],"names":[],"mappings":"AAsEA,OAAO,KAAK,EAAE,sBAAsB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAG5D,OAAO,KAAK,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAGvE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAEnD,QAAA,MAAM,YAAY;IACd,wCAAwC;;;;;IAExC,kDAAkD;;;;;IAElD,wBAAwB;;cACO,QAAQ,CAAC,YAAY,GAAG,UAAU,CAAC;;;IAClE,qFAAqF;;cAC9D,QAAQ,CAAC,KAAK,GAAG,KAAK,CAAC;;;IAC9C,4GAA4G;;;;;IAE5G,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;CAC1D,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,sBAAsB,CAAC,OAAO,YAAY,CAAC,CAAC;wBAElD,OAAO,YAAY;AAAxC,wBAAyC;AAQzC,QAAA,MAAM,YAAY;IA1Bd,wCAAwC;;;;;IAExC,kDAAkD;;;;;IAElD,wBAAwB;;cACO,QAAQ,CAAC,YAAY,GAAG,UAAU,CAAC;;;IAClE,qFAAqF;;cAC9D,QAAQ,CAAC,KAAK,GAAG,KAAK,CAAC;;;IAC9C,4GAA4G;;;;;IAE5G,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;IAbvD,wCAAwC;;;;;IAExC,kDAAkD;;;;;IAElD,wBAAwB;;cACO,QAAQ,CAAC,YAAY,GAAG,UAAU,CAAC;;;IAClE,qFAAqF;;cAC9D,QAAQ,CAAC,KAAK,GAAG,KAAK,CAAC;;;IAC9C,4GAA4G;;;;;IAE5G,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;;;;;;;;4EAgDzD,CAAC"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import type { ExtractPublicPropTypes, PropType } from 'vue';
|
|
2
|
+
import type { ThemeClassesOverride, VariantValues } from '@vuecs/core';
|
|
3
|
+
import type { StepperThemeClasses } from './types';
|
|
4
|
+
declare const stepperDescriptionProps: {
|
|
5
|
+
/** Render the consumer's slot child as the description root (Reka `asChild` pattern). */
|
|
6
|
+
asChild: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
/** HTML tag to render. */
|
|
11
|
+
as: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
/** Theme-class overrides for this component instance. */
|
|
16
|
+
themeClass: {
|
|
17
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
18
|
+
default: any;
|
|
19
|
+
};
|
|
20
|
+
/** Theme-variant values for this component instance. */
|
|
21
|
+
themeVariant: {
|
|
22
|
+
type: PropType<VariantValues>;
|
|
23
|
+
default: any;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
export type StepperDescriptionProps = ExtractPublicPropTypes<typeof stepperDescriptionProps>;
|
|
27
|
+
declare const _default: typeof __VLS_export;
|
|
28
|
+
export default _default;
|
|
29
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
30
|
+
/** Render the consumer's slot child as the description root (Reka `asChild` pattern). */
|
|
31
|
+
asChild: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
/** HTML tag to render. */
|
|
36
|
+
as: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
/** Theme-class overrides for this component instance. */
|
|
41
|
+
themeClass: {
|
|
42
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
43
|
+
default: any;
|
|
44
|
+
};
|
|
45
|
+
/** Theme-variant values for this component instance. */
|
|
46
|
+
themeVariant: {
|
|
47
|
+
type: PropType<VariantValues>;
|
|
48
|
+
default: any;
|
|
49
|
+
};
|
|
50
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
51
|
+
[key: string]: any;
|
|
52
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
53
|
+
/** Render the consumer's slot child as the description root (Reka `asChild` pattern). */
|
|
54
|
+
asChild: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
/** HTML tag to render. */
|
|
59
|
+
as: {
|
|
60
|
+
type: StringConstructor;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
/** Theme-class overrides for this component instance. */
|
|
64
|
+
themeClass: {
|
|
65
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
66
|
+
default: any;
|
|
67
|
+
};
|
|
68
|
+
/** Theme-variant values for this component instance. */
|
|
69
|
+
themeVariant: {
|
|
70
|
+
type: PropType<VariantValues>;
|
|
71
|
+
default: any;
|
|
72
|
+
};
|
|
73
|
+
}>> & Readonly<{}>, {
|
|
74
|
+
themeClass: ThemeClassesOverride<StepperThemeClasses>;
|
|
75
|
+
themeVariant: VariantValues;
|
|
76
|
+
asChild: boolean;
|
|
77
|
+
as: string;
|
|
78
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
79
|
+
//# sourceMappingURL=StepperDescription.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StepperDescription.vue.d.ts","sourceRoot":"","sources":["../../../src/components/stepper/StepperDescription.vue"],"names":[],"mappings":"AAoDA,OAAO,KAAK,EAAE,sBAAsB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAG5D,OAAO,KAAK,EAAE,oBAAoB,EAA0B,aAAa,EAAE,MAAM,aAAa,CAAC;AAG/F,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAEnD,QAAA,MAAM,uBAAuB;IACzB,yFAAyF;;;;;IAEzF,0BAA0B;;;;;IAE1B,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;CAC1D,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG,sBAAsB,CAAC,OAAO,uBAAuB,CAAC,CAAC;wBAExE,OAAO,YAAY;AAAxC,wBAAyC;AAQzC,QAAA,MAAM,YAAY;IApBd,yFAAyF;;;;;IAEzF,0BAA0B;;;;;IAE1B,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;IAPvD,yFAAyF;;;;;IAEzF,0BAA0B;;;;;IAE1B,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;;;4EAoCzD,CAAC"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import type { ExtractPublicPropTypes, PropType } from 'vue';
|
|
2
|
+
import type { ThemeClassesOverride, VariantValues } from '@vuecs/core';
|
|
3
|
+
import type { StepperThemeClasses } from './types';
|
|
4
|
+
declare const stepperIndicatorProps: {
|
|
5
|
+
/** Render the consumer's slot child as the indicator root (Reka `asChild` pattern). */
|
|
6
|
+
asChild: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
/** HTML tag to render. */
|
|
11
|
+
as: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
/** Theme-class overrides for this component instance. */
|
|
16
|
+
themeClass: {
|
|
17
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
18
|
+
default: any;
|
|
19
|
+
};
|
|
20
|
+
/** Theme-variant values for this component instance. */
|
|
21
|
+
themeVariant: {
|
|
22
|
+
type: PropType<VariantValues>;
|
|
23
|
+
default: any;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
export type StepperIndicatorProps = ExtractPublicPropTypes<typeof stepperIndicatorProps>;
|
|
27
|
+
declare const _default: typeof __VLS_export;
|
|
28
|
+
export default _default;
|
|
29
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
30
|
+
/** Render the consumer's slot child as the indicator root (Reka `asChild` pattern). */
|
|
31
|
+
asChild: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
/** HTML tag to render. */
|
|
36
|
+
as: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
/** Theme-class overrides for this component instance. */
|
|
41
|
+
themeClass: {
|
|
42
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
43
|
+
default: any;
|
|
44
|
+
};
|
|
45
|
+
/** Theme-variant values for this component instance. */
|
|
46
|
+
themeVariant: {
|
|
47
|
+
type: PropType<VariantValues>;
|
|
48
|
+
default: any;
|
|
49
|
+
};
|
|
50
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
51
|
+
[key: string]: any;
|
|
52
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
53
|
+
/** Render the consumer's slot child as the indicator root (Reka `asChild` pattern). */
|
|
54
|
+
asChild: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
/** HTML tag to render. */
|
|
59
|
+
as: {
|
|
60
|
+
type: StringConstructor;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
/** Theme-class overrides for this component instance. */
|
|
64
|
+
themeClass: {
|
|
65
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
66
|
+
default: any;
|
|
67
|
+
};
|
|
68
|
+
/** Theme-variant values for this component instance. */
|
|
69
|
+
themeVariant: {
|
|
70
|
+
type: PropType<VariantValues>;
|
|
71
|
+
default: any;
|
|
72
|
+
};
|
|
73
|
+
}>> & Readonly<{}>, {
|
|
74
|
+
themeClass: ThemeClassesOverride<StepperThemeClasses>;
|
|
75
|
+
themeVariant: VariantValues;
|
|
76
|
+
asChild: boolean;
|
|
77
|
+
as: string;
|
|
78
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
79
|
+
//# sourceMappingURL=StepperIndicator.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StepperIndicator.vue.d.ts","sourceRoot":"","sources":["../../../src/components/stepper/StepperIndicator.vue"],"names":[],"mappings":"AAuDA,OAAO,KAAK,EAAE,sBAAsB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAG5D,OAAO,KAAK,EAAE,oBAAoB,EAA0B,aAAa,EAAE,MAAM,aAAa,CAAC;AAG/F,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAEnD,QAAA,MAAM,qBAAqB;IACvB,uFAAuF;;;;;IAEvF,0BAA0B;;;;;IAE1B,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;CAC1D,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG,sBAAsB,CAAC,OAAO,qBAAqB,CAAC,CAAC;wBAEpE,OAAO,YAAY;AAAxC,wBAAyC;AAQzC,QAAA,MAAM,YAAY;IApBd,uFAAuF;;;;;IAEvF,0BAA0B;;;;;IAE1B,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;IAPvD,uFAAuF;;;;;IAEvF,0BAA0B;;;;;IAE1B,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;;;4EAuCzD,CAAC"}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import type { ExtractPublicPropTypes, PropType, SlotsType } from 'vue';
|
|
2
|
+
import type { ThemeClassesOverride, VariantValues } from '@vuecs/core';
|
|
3
|
+
import type { StepperThemeClasses } from './types';
|
|
4
|
+
export type StepperItemSlotProps = {
|
|
5
|
+
state: 'active' | 'completed' | 'inactive';
|
|
6
|
+
};
|
|
7
|
+
declare const stepperItemProps: {
|
|
8
|
+
/** 1-based step index. Required by Reka — used to determine completion / active state. */
|
|
9
|
+
step: {
|
|
10
|
+
type: NumberConstructor;
|
|
11
|
+
required: boolean;
|
|
12
|
+
};
|
|
13
|
+
/** Block interaction with this step. */
|
|
14
|
+
disabled: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
/** Force completion state. Reka derives this automatically when `false`. */
|
|
19
|
+
completed: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
23
|
+
/** Theme-class overrides for this component instance. */
|
|
24
|
+
themeClass: {
|
|
25
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
26
|
+
default: any;
|
|
27
|
+
};
|
|
28
|
+
/** Theme-variant values for this component instance. */
|
|
29
|
+
themeVariant: {
|
|
30
|
+
type: PropType<VariantValues>;
|
|
31
|
+
default: any;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export type StepperItemProps = ExtractPublicPropTypes<typeof stepperItemProps>;
|
|
35
|
+
declare const _default: typeof __VLS_export;
|
|
36
|
+
export default _default;
|
|
37
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
38
|
+
/** 1-based step index. Required by Reka — used to determine completion / active state. */
|
|
39
|
+
step: {
|
|
40
|
+
type: NumberConstructor;
|
|
41
|
+
required: boolean;
|
|
42
|
+
};
|
|
43
|
+
/** Block interaction with this step. */
|
|
44
|
+
disabled: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
48
|
+
/** Force completion state. Reka derives this automatically when `false`. */
|
|
49
|
+
completed: {
|
|
50
|
+
type: BooleanConstructor;
|
|
51
|
+
default: boolean;
|
|
52
|
+
};
|
|
53
|
+
/** Theme-class overrides for this component instance. */
|
|
54
|
+
themeClass: {
|
|
55
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
56
|
+
default: any;
|
|
57
|
+
};
|
|
58
|
+
/** Theme-variant values for this component instance. */
|
|
59
|
+
themeVariant: {
|
|
60
|
+
type: PropType<VariantValues>;
|
|
61
|
+
default: any;
|
|
62
|
+
};
|
|
63
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
64
|
+
[key: string]: any;
|
|
65
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
66
|
+
/** 1-based step index. Required by Reka — used to determine completion / active state. */
|
|
67
|
+
step: {
|
|
68
|
+
type: NumberConstructor;
|
|
69
|
+
required: boolean;
|
|
70
|
+
};
|
|
71
|
+
/** Block interaction with this step. */
|
|
72
|
+
disabled: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
default: boolean;
|
|
75
|
+
};
|
|
76
|
+
/** Force completion state. Reka derives this automatically when `false`. */
|
|
77
|
+
completed: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
default: boolean;
|
|
80
|
+
};
|
|
81
|
+
/** Theme-class overrides for this component instance. */
|
|
82
|
+
themeClass: {
|
|
83
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
84
|
+
default: any;
|
|
85
|
+
};
|
|
86
|
+
/** Theme-variant values for this component instance. */
|
|
87
|
+
themeVariant: {
|
|
88
|
+
type: PropType<VariantValues>;
|
|
89
|
+
default: any;
|
|
90
|
+
};
|
|
91
|
+
}>> & Readonly<{}>, {
|
|
92
|
+
themeClass: ThemeClassesOverride<StepperThemeClasses>;
|
|
93
|
+
themeVariant: VariantValues;
|
|
94
|
+
disabled: boolean;
|
|
95
|
+
completed: boolean;
|
|
96
|
+
}, SlotsType<{
|
|
97
|
+
default: StepperItemSlotProps;
|
|
98
|
+
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
99
|
+
//# sourceMappingURL=StepperItem.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StepperItem.vue.d.ts","sourceRoot":"","sources":["../../../src/components/stepper/StepperItem.vue"],"names":[],"mappings":"AAsEA,OAAO,KAAK,EAAE,sBAAsB,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,KAAK,CAAC;AAGvE,OAAO,KAAK,EAAE,oBAAoB,EAA0B,aAAa,EAAE,MAAM,aAAa,CAAC;AAG/F,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAEnD,MAAM,MAAM,oBAAoB,GAAG;IAC/B,KAAK,EAAE,QAAQ,GAAG,WAAW,GAAG,UAAU,CAAC;CAC9C,CAAC;AAEF,QAAA,MAAM,gBAAgB;IAClB,0FAA0F;;;;;IAE1F,wCAAwC;;;;;IAExC,4EAA4E;;;;;IAE5E,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;CAC1D,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,sBAAsB,CAAC,OAAO,gBAAgB,CAAC,CAAC;wBAE1D,OAAO,YAAY;AAAxC,wBAAyC;AAQzC,QAAA,MAAM,YAAY;IAtBd,0FAA0F;;;;;IAE1F,wCAAwC;;;;;IAExC,4EAA4E;;;;;IAE5E,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;IATvD,0FAA0F;;;;;IAE1F,wCAAwC;;;;;IAExC,4EAA4E;;;;;IAE5E,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;;;;aAkB1C,oBAAoB;yEA8BnC,CAAC"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import type { ExtractPublicPropTypes, PropType } from 'vue';
|
|
2
|
+
import type { ThemeClassesOverride, VariantValues } from '@vuecs/core';
|
|
3
|
+
import type { StepperThemeClasses } from './types';
|
|
4
|
+
declare const stepperSeparatorProps: {
|
|
5
|
+
/** Render the consumer's slot child as the separator root (Reka `asChild` pattern). */
|
|
6
|
+
asChild: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
/** HTML tag to render. */
|
|
11
|
+
as: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
/** Theme-class overrides for this component instance. */
|
|
16
|
+
themeClass: {
|
|
17
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
18
|
+
default: any;
|
|
19
|
+
};
|
|
20
|
+
/** Theme-variant values for this component instance. */
|
|
21
|
+
themeVariant: {
|
|
22
|
+
type: PropType<VariantValues>;
|
|
23
|
+
default: any;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
export type StepperSeparatorProps = ExtractPublicPropTypes<typeof stepperSeparatorProps>;
|
|
27
|
+
declare const _default: typeof __VLS_export;
|
|
28
|
+
export default _default;
|
|
29
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
30
|
+
/** Render the consumer's slot child as the separator root (Reka `asChild` pattern). */
|
|
31
|
+
asChild: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
/** HTML tag to render. */
|
|
36
|
+
as: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
/** Theme-class overrides for this component instance. */
|
|
41
|
+
themeClass: {
|
|
42
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
43
|
+
default: any;
|
|
44
|
+
};
|
|
45
|
+
/** Theme-variant values for this component instance. */
|
|
46
|
+
themeVariant: {
|
|
47
|
+
type: PropType<VariantValues>;
|
|
48
|
+
default: any;
|
|
49
|
+
};
|
|
50
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
51
|
+
[key: string]: any;
|
|
52
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
53
|
+
/** Render the consumer's slot child as the separator root (Reka `asChild` pattern). */
|
|
54
|
+
asChild: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
/** HTML tag to render. */
|
|
59
|
+
as: {
|
|
60
|
+
type: StringConstructor;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
/** Theme-class overrides for this component instance. */
|
|
64
|
+
themeClass: {
|
|
65
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
66
|
+
default: any;
|
|
67
|
+
};
|
|
68
|
+
/** Theme-variant values for this component instance. */
|
|
69
|
+
themeVariant: {
|
|
70
|
+
type: PropType<VariantValues>;
|
|
71
|
+
default: any;
|
|
72
|
+
};
|
|
73
|
+
}>> & Readonly<{}>, {
|
|
74
|
+
themeClass: ThemeClassesOverride<StepperThemeClasses>;
|
|
75
|
+
themeVariant: VariantValues;
|
|
76
|
+
asChild: boolean;
|
|
77
|
+
as: string;
|
|
78
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
79
|
+
//# sourceMappingURL=StepperSeparator.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StepperSeparator.vue.d.ts","sourceRoot":"","sources":["../../../src/components/stepper/StepperSeparator.vue"],"names":[],"mappings":"AAoDA,OAAO,KAAK,EAAE,sBAAsB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAG5D,OAAO,KAAK,EAAE,oBAAoB,EAA0B,aAAa,EAAE,MAAM,aAAa,CAAC;AAG/F,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAEnD,QAAA,MAAM,qBAAqB;IACvB,uFAAuF;;;;;IAEvF,0BAA0B;;;;;IAE1B,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;CAC1D,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG,sBAAsB,CAAC,OAAO,qBAAqB,CAAC,CAAC;wBAEpE,OAAO,YAAY;AAAxC,wBAAyC;AAQzC,QAAA,MAAM,YAAY;IApBd,uFAAuF;;;;;IAEvF,0BAA0B;;;;;IAE1B,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;IAPvD,uFAAuF;;;;;IAEvF,0BAA0B;;;;;IAE1B,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;;;4EAoCzD,CAAC"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import type { ExtractPublicPropTypes, PropType } from 'vue';
|
|
2
|
+
import type { ThemeClassesOverride, VariantValues } from '@vuecs/core';
|
|
3
|
+
import type { StepperThemeClasses } from './types';
|
|
4
|
+
declare const stepperTitleProps: {
|
|
5
|
+
/** Render the consumer's slot child as the title root (Reka `asChild` pattern). */
|
|
6
|
+
asChild: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
/** HTML tag to render. */
|
|
11
|
+
as: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
/** Theme-class overrides for this component instance. */
|
|
16
|
+
themeClass: {
|
|
17
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
18
|
+
default: any;
|
|
19
|
+
};
|
|
20
|
+
/** Theme-variant values for this component instance. */
|
|
21
|
+
themeVariant: {
|
|
22
|
+
type: PropType<VariantValues>;
|
|
23
|
+
default: any;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
export type StepperTitleProps = ExtractPublicPropTypes<typeof stepperTitleProps>;
|
|
27
|
+
declare const _default: typeof __VLS_export;
|
|
28
|
+
export default _default;
|
|
29
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
30
|
+
/** Render the consumer's slot child as the title root (Reka `asChild` pattern). */
|
|
31
|
+
asChild: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
/** HTML tag to render. */
|
|
36
|
+
as: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
/** Theme-class overrides for this component instance. */
|
|
41
|
+
themeClass: {
|
|
42
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
43
|
+
default: any;
|
|
44
|
+
};
|
|
45
|
+
/** Theme-variant values for this component instance. */
|
|
46
|
+
themeVariant: {
|
|
47
|
+
type: PropType<VariantValues>;
|
|
48
|
+
default: any;
|
|
49
|
+
};
|
|
50
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
51
|
+
[key: string]: any;
|
|
52
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
53
|
+
/** Render the consumer's slot child as the title root (Reka `asChild` pattern). */
|
|
54
|
+
asChild: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
/** HTML tag to render. */
|
|
59
|
+
as: {
|
|
60
|
+
type: StringConstructor;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
/** Theme-class overrides for this component instance. */
|
|
64
|
+
themeClass: {
|
|
65
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
66
|
+
default: any;
|
|
67
|
+
};
|
|
68
|
+
/** Theme-variant values for this component instance. */
|
|
69
|
+
themeVariant: {
|
|
70
|
+
type: PropType<VariantValues>;
|
|
71
|
+
default: any;
|
|
72
|
+
};
|
|
73
|
+
}>> & Readonly<{}>, {
|
|
74
|
+
themeClass: ThemeClassesOverride<StepperThemeClasses>;
|
|
75
|
+
themeVariant: VariantValues;
|
|
76
|
+
asChild: boolean;
|
|
77
|
+
as: string;
|
|
78
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
79
|
+
//# sourceMappingURL=StepperTitle.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StepperTitle.vue.d.ts","sourceRoot":"","sources":["../../../src/components/stepper/StepperTitle.vue"],"names":[],"mappings":"AAoDA,OAAO,KAAK,EAAE,sBAAsB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAG5D,OAAO,KAAK,EAAE,oBAAoB,EAA0B,aAAa,EAAE,MAAM,aAAa,CAAC;AAG/F,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAEnD,QAAA,MAAM,iBAAiB;IACnB,mFAAmF;;;;;IAEnF,0BAA0B;;;;;IAE1B,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;CAC1D,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG,sBAAsB,CAAC,OAAO,iBAAiB,CAAC,CAAC;wBAE5D,OAAO,YAAY;AAAxC,wBAAyC;AAQzC,QAAA,MAAM,YAAY;IApBd,mFAAmF;;;;;IAEnF,0BAA0B;;;;;IAE1B,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;IAPvD,mFAAmF;;;;;IAEnF,0BAA0B;;;;;IAE1B,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;;;4EAoCzD,CAAC"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import type { ExtractPublicPropTypes, PropType } from 'vue';
|
|
2
|
+
import type { ThemeClassesOverride, VariantValues } from '@vuecs/core';
|
|
3
|
+
import type { StepperThemeClasses } from './types';
|
|
4
|
+
declare const stepperTriggerProps: {
|
|
5
|
+
/** Render the consumer's slot child as the trigger root (Reka `asChild` pattern). */
|
|
6
|
+
asChild: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
/** HTML tag to render. */
|
|
11
|
+
as: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
/** Theme-class overrides for this component instance. */
|
|
16
|
+
themeClass: {
|
|
17
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
18
|
+
default: any;
|
|
19
|
+
};
|
|
20
|
+
/** Theme-variant values for this component instance. */
|
|
21
|
+
themeVariant: {
|
|
22
|
+
type: PropType<VariantValues>;
|
|
23
|
+
default: any;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
export type StepperTriggerProps = ExtractPublicPropTypes<typeof stepperTriggerProps>;
|
|
27
|
+
declare const _default: typeof __VLS_export;
|
|
28
|
+
export default _default;
|
|
29
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
30
|
+
/** Render the consumer's slot child as the trigger root (Reka `asChild` pattern). */
|
|
31
|
+
asChild: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
/** HTML tag to render. */
|
|
36
|
+
as: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
/** Theme-class overrides for this component instance. */
|
|
41
|
+
themeClass: {
|
|
42
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
43
|
+
default: any;
|
|
44
|
+
};
|
|
45
|
+
/** Theme-variant values for this component instance. */
|
|
46
|
+
themeVariant: {
|
|
47
|
+
type: PropType<VariantValues>;
|
|
48
|
+
default: any;
|
|
49
|
+
};
|
|
50
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
51
|
+
[key: string]: any;
|
|
52
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
53
|
+
/** Render the consumer's slot child as the trigger root (Reka `asChild` pattern). */
|
|
54
|
+
asChild: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
/** HTML tag to render. */
|
|
59
|
+
as: {
|
|
60
|
+
type: StringConstructor;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
/** Theme-class overrides for this component instance. */
|
|
64
|
+
themeClass: {
|
|
65
|
+
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
66
|
+
default: any;
|
|
67
|
+
};
|
|
68
|
+
/** Theme-variant values for this component instance. */
|
|
69
|
+
themeVariant: {
|
|
70
|
+
type: PropType<VariantValues>;
|
|
71
|
+
default: any;
|
|
72
|
+
};
|
|
73
|
+
}>> & Readonly<{}>, {
|
|
74
|
+
themeClass: ThemeClassesOverride<StepperThemeClasses>;
|
|
75
|
+
themeVariant: VariantValues;
|
|
76
|
+
asChild: boolean;
|
|
77
|
+
as: string;
|
|
78
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
79
|
+
//# sourceMappingURL=StepperTrigger.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StepperTrigger.vue.d.ts","sourceRoot":"","sources":["../../../src/components/stepper/StepperTrigger.vue"],"names":[],"mappings":"AA4DA,OAAO,KAAK,EAAE,sBAAsB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAG5D,OAAO,KAAK,EAAE,oBAAoB,EAA0B,aAAa,EAAE,MAAM,aAAa,CAAC;AAG/F,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAEnD,QAAA,MAAM,mBAAmB;IACrB,qFAAqF;;;;;IAErF,0BAA0B;;;;;IAE1B,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;CAC1D,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG,sBAAsB,CAAC,OAAO,mBAAmB,CAAC,CAAC;wBAEhE,OAAO,YAAY;AAAxC,wBAAyC;AAQzC,QAAA,MAAM,YAAY;IApBd,qFAAqF;;;;;IAErF,0BAA0B;;;;;IAE1B,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;IAPvD,qFAAqF;;;;;IAErF,0BAA0B;;;;;IAE1B,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;;;4EA4CzD,CAAC"}
|