@vuecs/navigation 4.0.2 → 4.0.4
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/README.md +41 -7
- package/dist/components/item/module.d.ts +14 -14
- package/dist/components/item/module.d.ts.map +1 -1
- package/dist/components/items/module.d.ts +26 -26
- package/dist/components/items/module.d.ts.map +1 -1
- package/dist/components/stepper/Stepper.vue.d.ts +13 -13
- package/dist/components/stepper/StepperDescription.vue.d.ts +7 -7
- package/dist/components/stepper/StepperDescription.vue.d.ts.map +1 -1
- package/dist/components/stepper/StepperIndicator.vue.d.ts +7 -7
- package/dist/components/stepper/StepperIndicator.vue.d.ts.map +1 -1
- package/dist/components/stepper/StepperItem.vue.d.ts +6 -6
- package/dist/components/stepper/StepperItem.vue.d.ts.map +1 -1
- package/dist/components/stepper/StepperSeparator.vue.d.ts +7 -7
- package/dist/components/stepper/StepperSeparator.vue.d.ts.map +1 -1
- package/dist/components/stepper/StepperTitle.vue.d.ts +7 -7
- package/dist/components/stepper/StepperTitle.vue.d.ts.map +1 -1
- package/dist/components/stepper/StepperTrigger.vue.d.ts +7 -7
- package/dist/components/stepper/StepperTrigger.vue.d.ts.map +1 -1
- package/dist/index.mjs +47 -11
- package/dist/index.mjs.map +1 -1
- package/dist/vue.d.ts +1 -1
- package/dist/vue.d.ts.map +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -1,20 +1,54 @@
|
|
|
1
1
|
# @vuecs/navigation
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@vuecs/navigation)
|
|
4
|
+
[](https://github.com/Tada5hi/vuecs/actions/workflows/main.yml)
|
|
5
|
+
[](./LICENSE)
|
|
5
6
|
|
|
6
|
-
Multi-level navigation for Vue 3
|
|
7
|
+
**Multi-level navigation for Vue 3**, part of [vuecs](https://github.com/tada5hi/vuecs). Each `<VCNavItems>` owns its items via a `:data` prop (plain array, sync fn, or async resolver), and dependent navs coordinate through a shared reactive registry — header tabs that swap a sidebar with zero app wiring.
|
|
7
8
|
|
|
8
|
-
|
|
9
|
+
## ✨ What's inside
|
|
9
10
|
|
|
10
|
-
- [
|
|
11
|
-
-
|
|
12
|
-
-
|
|
11
|
+
- 🗂️ **`:data`-driven** — pass `NavigationItem[]`, a function, or an async resolver receiving `{ path, registry }`; reactive reads retrigger automatically, `refresh()` for imperative re-runs.
|
|
12
|
+
- 📡 **Reactive registry** — a nav publishes its resolved tree under a `registry-id`; other navs read it (`items`, `active`, `activeTrail`) and derive their own list. The canonical header → sidebar pattern.
|
|
13
|
+
- 🎯 **Three active concepts** — `active` (exact leaf, best path-score match), `activeWithin` (ancestor highlight + auto-open), `activeTrail` (root → leaf chain). Url-less items become click-driven section switchers.
|
|
14
|
+
- 📐 **Submenu modes** — `collapse` (inline Collapsible), `dropdown` (Reka NavigationMenu flyout), or `auto`; full arrow / Home / End keyboard navigation.
|
|
15
|
+
- 🧭 **Router-optional** — soft-reads vue-router's `$route` when present; works router-free with an explicit `:path`.
|
|
16
|
+
- 🪜 **`<VCStepper>` compound** — Stepper / Item / Trigger / Indicator / Title / Description / Separator on Reka's Stepper, for wizards and checkout flows, with linear-mode gating.
|
|
17
|
+
|
|
18
|
+
## 📦 Installation
|
|
13
19
|
|
|
14
20
|
```bash
|
|
15
21
|
npm install @vuecs/navigation
|
|
16
22
|
```
|
|
17
23
|
|
|
24
|
+
## ⚡ Usage
|
|
25
|
+
|
|
26
|
+
```vue
|
|
27
|
+
<VCNavItems
|
|
28
|
+
:data="[
|
|
29
|
+
{ name: 'Dashboard', url: '/', icon: 'lucide:home' },
|
|
30
|
+
{
|
|
31
|
+
name: 'Settings',
|
|
32
|
+
icon: 'lucide:settings',
|
|
33
|
+
children: [
|
|
34
|
+
{ name: 'Profile', url: '/settings/profile' },
|
|
35
|
+
{ name: 'Security', url: '/settings/security' },
|
|
36
|
+
],
|
|
37
|
+
},
|
|
38
|
+
]"
|
|
39
|
+
/>
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
```vue
|
|
43
|
+
<!-- dependent navs: top bar publishes, sidebar derives -->
|
|
44
|
+
<VCNavItems :data="topItems" registry registry-id="top" />
|
|
45
|
+
<VCNavItems :data="({ registry }) => registry('top').active.value[0]?.children ?? []" />
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## 📚 Documentation
|
|
49
|
+
|
|
50
|
+
[Navigation component](https://vuecs.dev/components/navigation) · [Navigation guide](https://vuecs.dev/guide/navigation) · [Stepper](https://vuecs.dev/components/stepper)
|
|
51
|
+
|
|
18
52
|
## License
|
|
19
53
|
|
|
20
54
|
Made with 💚
|
|
@@ -10,11 +10,11 @@ declare const navItemProps: {
|
|
|
10
10
|
};
|
|
11
11
|
variant: {
|
|
12
12
|
type: StringConstructor;
|
|
13
|
-
default:
|
|
13
|
+
default: undefined;
|
|
14
14
|
};
|
|
15
15
|
orientation: {
|
|
16
16
|
type: PropType<NavigationOrientation>;
|
|
17
|
-
default:
|
|
17
|
+
default: undefined;
|
|
18
18
|
};
|
|
19
19
|
/**
|
|
20
20
|
* Resolved submenu presentation handed down by the parent
|
|
@@ -46,11 +46,11 @@ declare const navItemProps: {
|
|
|
46
46
|
};
|
|
47
47
|
themeClass: {
|
|
48
48
|
type: PropType<ThemeClassesOverride<NavigationThemeClasses>>;
|
|
49
|
-
default:
|
|
49
|
+
default: undefined;
|
|
50
50
|
};
|
|
51
51
|
themeVariant: {
|
|
52
52
|
type: PropType<VariantValues>;
|
|
53
|
-
default:
|
|
53
|
+
default: undefined;
|
|
54
54
|
};
|
|
55
55
|
};
|
|
56
56
|
export type NavItemProps = ExtractPublicPropTypes<typeof navItemProps>;
|
|
@@ -61,11 +61,11 @@ export declare const VCNavItem: import("vue").DefineComponent<import("vue").Extr
|
|
|
61
61
|
};
|
|
62
62
|
variant: {
|
|
63
63
|
type: StringConstructor;
|
|
64
|
-
default:
|
|
64
|
+
default: undefined;
|
|
65
65
|
};
|
|
66
66
|
orientation: {
|
|
67
67
|
type: PropType<NavigationOrientation>;
|
|
68
|
-
default:
|
|
68
|
+
default: undefined;
|
|
69
69
|
};
|
|
70
70
|
/**
|
|
71
71
|
* Resolved submenu presentation handed down by the parent
|
|
@@ -97,11 +97,11 @@ export declare const VCNavItem: import("vue").DefineComponent<import("vue").Extr
|
|
|
97
97
|
};
|
|
98
98
|
themeClass: {
|
|
99
99
|
type: PropType<ThemeClassesOverride<NavigationThemeClasses>>;
|
|
100
|
-
default:
|
|
100
|
+
default: undefined;
|
|
101
101
|
};
|
|
102
102
|
themeVariant: {
|
|
103
103
|
type: PropType<VariantValues>;
|
|
104
|
-
default:
|
|
104
|
+
default: undefined;
|
|
105
105
|
};
|
|
106
106
|
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
107
107
|
[key: string]: any;
|
|
@@ -112,11 +112,11 @@ export declare const VCNavItem: import("vue").DefineComponent<import("vue").Extr
|
|
|
112
112
|
};
|
|
113
113
|
variant: {
|
|
114
114
|
type: StringConstructor;
|
|
115
|
-
default:
|
|
115
|
+
default: undefined;
|
|
116
116
|
};
|
|
117
117
|
orientation: {
|
|
118
118
|
type: PropType<NavigationOrientation>;
|
|
119
|
-
default:
|
|
119
|
+
default: undefined;
|
|
120
120
|
};
|
|
121
121
|
/**
|
|
122
122
|
* Resolved submenu presentation handed down by the parent
|
|
@@ -148,18 +148,18 @@ export declare const VCNavItem: import("vue").DefineComponent<import("vue").Extr
|
|
|
148
148
|
};
|
|
149
149
|
themeClass: {
|
|
150
150
|
type: PropType<ThemeClassesOverride<NavigationThemeClasses>>;
|
|
151
|
-
default:
|
|
151
|
+
default: undefined;
|
|
152
152
|
};
|
|
153
153
|
themeVariant: {
|
|
154
154
|
type: PropType<VariantValues>;
|
|
155
|
-
default:
|
|
155
|
+
default: undefined;
|
|
156
156
|
};
|
|
157
157
|
}>> & Readonly<{}>, {
|
|
158
158
|
variant: string;
|
|
159
159
|
orientation: NavigationOrientation;
|
|
160
160
|
submenu: NavigationSubmenuMode;
|
|
161
|
-
as: string;
|
|
162
|
-
itemsAs: string;
|
|
161
|
+
as: string | Component;
|
|
162
|
+
itemsAs: string | Component;
|
|
163
163
|
themeClass: ThemeClassesOverride<NavigationThemeClasses>;
|
|
164
164
|
themeVariant: VariantValues;
|
|
165
165
|
}, SlotsType<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../../src/components/item/module.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,oBAAoB,EAA0B,aAAa,EAAE,MAAM,aAAa,CAAC;AAG/F,OAAO,KAAK,EACR,SAAS,EACT,sBAAsB,EACtB,QAAQ,EACR,SAAS,EAEZ,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../../src/components/item/module.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,oBAAoB,EAA0B,aAAa,EAAE,MAAM,aAAa,CAAC;AAG/F,OAAO,KAAK,EACR,SAAS,EACT,sBAAsB,EACtB,QAAQ,EACR,SAAS,EAEZ,MAAM,KAAK,CAAC;AAoBb,OAAO,KAAK,EACR,wBAAwB,EACxB,qBAAqB,EACrB,qBAAqB,EACxB,MAAM,aAAa,CAAC;AACrB,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,+BAA+B,CAAC;AAG5E,OAAO,KAAK,EACR,oBAAoB,EACpB,yBAAyB,EACzB,wBAAwB,EACxB,mBAAmB,EACnB,wBAAwB,EAC3B,MAAM,SAAS,CAAC;AAIjB,QAAA,MAAM,YAAY;;cAEM,QAAQ,CAAC,wBAAwB,CAAC;;;;;;;;cAQlC,QAAQ,CAAC,qBAAqB,CAAC;;;IAGnD;;;;;OAKG;;cAEiB,QAAQ,CAAC,qBAAqB,CAAC;;;IAGnD;;;;OAIG;;cAEqC,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;IAGpE;;;;OAIG;;cAEqC,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;;cAIhD,QAAQ,CAAC,oBAAoB,CAAC,sBAAsB,CAAC,CAAC;;;;cAItD,QAAQ,CAAC,aAAa,CAAC;;;CAG9C,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,sBAAsB,CAAC,OAAO,YAAY,CAAC,CAAC;AAEvE,eAAO,MAAM,SAAS;;cAnDE,QAAQ,CAAC,wBAAwB,CAAC;;;;;;;;cAQlC,QAAQ,CAAC,qBAAqB,CAAC;;;IAGnD;;;;;OAKG;;cAEiB,QAAQ,CAAC,qBAAqB,CAAC;;;IAGnD;;;;OAIG;;cAEqC,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;IAGpE;;;;OAIG;;cAEqC,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;;cAIhD,QAAQ,CAAC,oBAAoB,CAAC,sBAAsB,CAAC,CAAC;;;;cAItD,QAAQ,CAAC,aAAa,CAAC;;;;;;;cA5CvB,QAAQ,CAAC,wBAAwB,CAAC;;;;;;;;cAQlC,QAAQ,CAAC,qBAAqB,CAAC;;;IAGnD;;;;;OAKG;;cAEiB,QAAQ,CAAC,qBAAqB,CAAC;;;IAGnD;;;;OAIG;;cAEqC,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;IAGpE;;;;OAIG;;cAEqC,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;;cAIhD,QAAQ,CAAC,oBAAoB,CAAC,sBAAsB,CAAC,CAAC;;;;cAItD,QAAQ,CAAC,aAAa,CAAC;;;;;;;;;;;;eAW5B,yBAAyB;UAC9B,oBAAoB;SACrB,mBAAmB;iBACX,wBAAwB;iBACxB,wBAAwB;yEAyQ3C,CAAC"}
|
|
@@ -16,7 +16,7 @@ declare const navItemsProps: {
|
|
|
16
16
|
*/
|
|
17
17
|
data: {
|
|
18
18
|
type: PropType<NavigationItem[] | NavigationResolver>;
|
|
19
|
-
default:
|
|
19
|
+
default: undefined;
|
|
20
20
|
};
|
|
21
21
|
/** Opt in to publishing this nav's resolved output into the registry. */
|
|
22
22
|
registry: {
|
|
@@ -26,7 +26,7 @@ declare const navItemsProps: {
|
|
|
26
26
|
/** The key under which to publish. Required when `registry` is true. */
|
|
27
27
|
registryId: {
|
|
28
28
|
type: StringConstructor;
|
|
29
|
-
default:
|
|
29
|
+
default: undefined;
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
32
|
* Current path for active-state matching. When omitted, the nav softly
|
|
@@ -35,7 +35,7 @@ declare const navItemsProps: {
|
|
|
35
35
|
*/
|
|
36
36
|
path: {
|
|
37
37
|
type: StringConstructor;
|
|
38
|
-
default:
|
|
38
|
+
default: undefined;
|
|
39
39
|
};
|
|
40
40
|
/**
|
|
41
41
|
* Extra reactive deps that should retrigger the resolver — for state
|
|
@@ -44,15 +44,15 @@ declare const navItemsProps: {
|
|
|
44
44
|
*/
|
|
45
45
|
watch: {
|
|
46
46
|
type: PropType<WatchSource[]>;
|
|
47
|
-
default:
|
|
47
|
+
default: undefined;
|
|
48
48
|
};
|
|
49
49
|
variant: {
|
|
50
50
|
type: StringConstructor;
|
|
51
|
-
default:
|
|
51
|
+
default: undefined;
|
|
52
52
|
};
|
|
53
53
|
orientation: {
|
|
54
54
|
type: PropType<NavigationOrientation>;
|
|
55
|
-
default:
|
|
55
|
+
default: undefined;
|
|
56
56
|
};
|
|
57
57
|
/**
|
|
58
58
|
* How items with children render their submenu. `auto` derives from
|
|
@@ -83,11 +83,11 @@ declare const navItemsProps: {
|
|
|
83
83
|
};
|
|
84
84
|
themeClass: {
|
|
85
85
|
type: PropType<ThemeClassesOverride<NavigationThemeClasses>>;
|
|
86
|
-
default:
|
|
86
|
+
default: undefined;
|
|
87
87
|
};
|
|
88
88
|
themeVariant: {
|
|
89
89
|
type: PropType<VariantValues>;
|
|
90
|
-
default:
|
|
90
|
+
default: undefined;
|
|
91
91
|
};
|
|
92
92
|
};
|
|
93
93
|
export type NavItemsProps = ExtractPublicPropTypes<typeof navItemsProps>;
|
|
@@ -104,7 +104,7 @@ export declare const VCNavItems: import("vue").DefineComponent<import("vue").Ext
|
|
|
104
104
|
*/
|
|
105
105
|
data: {
|
|
106
106
|
type: PropType<NavigationItem[] | NavigationResolver>;
|
|
107
|
-
default:
|
|
107
|
+
default: undefined;
|
|
108
108
|
};
|
|
109
109
|
/** Opt in to publishing this nav's resolved output into the registry. */
|
|
110
110
|
registry: {
|
|
@@ -114,7 +114,7 @@ export declare const VCNavItems: import("vue").DefineComponent<import("vue").Ext
|
|
|
114
114
|
/** The key under which to publish. Required when `registry` is true. */
|
|
115
115
|
registryId: {
|
|
116
116
|
type: StringConstructor;
|
|
117
|
-
default:
|
|
117
|
+
default: undefined;
|
|
118
118
|
};
|
|
119
119
|
/**
|
|
120
120
|
* Current path for active-state matching. When omitted, the nav softly
|
|
@@ -123,7 +123,7 @@ export declare const VCNavItems: import("vue").DefineComponent<import("vue").Ext
|
|
|
123
123
|
*/
|
|
124
124
|
path: {
|
|
125
125
|
type: StringConstructor;
|
|
126
|
-
default:
|
|
126
|
+
default: undefined;
|
|
127
127
|
};
|
|
128
128
|
/**
|
|
129
129
|
* Extra reactive deps that should retrigger the resolver — for state
|
|
@@ -132,15 +132,15 @@ export declare const VCNavItems: import("vue").DefineComponent<import("vue").Ext
|
|
|
132
132
|
*/
|
|
133
133
|
watch: {
|
|
134
134
|
type: PropType<WatchSource[]>;
|
|
135
|
-
default:
|
|
135
|
+
default: undefined;
|
|
136
136
|
};
|
|
137
137
|
variant: {
|
|
138
138
|
type: StringConstructor;
|
|
139
|
-
default:
|
|
139
|
+
default: undefined;
|
|
140
140
|
};
|
|
141
141
|
orientation: {
|
|
142
142
|
type: PropType<NavigationOrientation>;
|
|
143
|
-
default:
|
|
143
|
+
default: undefined;
|
|
144
144
|
};
|
|
145
145
|
/**
|
|
146
146
|
* How items with children render their submenu. `auto` derives from
|
|
@@ -171,11 +171,11 @@ export declare const VCNavItems: import("vue").DefineComponent<import("vue").Ext
|
|
|
171
171
|
};
|
|
172
172
|
themeClass: {
|
|
173
173
|
type: PropType<ThemeClassesOverride<NavigationThemeClasses>>;
|
|
174
|
-
default:
|
|
174
|
+
default: undefined;
|
|
175
175
|
};
|
|
176
176
|
themeVariant: {
|
|
177
177
|
type: PropType<VariantValues>;
|
|
178
|
-
default:
|
|
178
|
+
default: undefined;
|
|
179
179
|
};
|
|
180
180
|
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
181
181
|
[key: string]: any;
|
|
@@ -192,7 +192,7 @@ export declare const VCNavItems: import("vue").DefineComponent<import("vue").Ext
|
|
|
192
192
|
*/
|
|
193
193
|
data: {
|
|
194
194
|
type: PropType<NavigationItem[] | NavigationResolver>;
|
|
195
|
-
default:
|
|
195
|
+
default: undefined;
|
|
196
196
|
};
|
|
197
197
|
/** Opt in to publishing this nav's resolved output into the registry. */
|
|
198
198
|
registry: {
|
|
@@ -202,7 +202,7 @@ export declare const VCNavItems: import("vue").DefineComponent<import("vue").Ext
|
|
|
202
202
|
/** The key under which to publish. Required when `registry` is true. */
|
|
203
203
|
registryId: {
|
|
204
204
|
type: StringConstructor;
|
|
205
|
-
default:
|
|
205
|
+
default: undefined;
|
|
206
206
|
};
|
|
207
207
|
/**
|
|
208
208
|
* Current path for active-state matching. When omitted, the nav softly
|
|
@@ -211,7 +211,7 @@ export declare const VCNavItems: import("vue").DefineComponent<import("vue").Ext
|
|
|
211
211
|
*/
|
|
212
212
|
path: {
|
|
213
213
|
type: StringConstructor;
|
|
214
|
-
default:
|
|
214
|
+
default: undefined;
|
|
215
215
|
};
|
|
216
216
|
/**
|
|
217
217
|
* Extra reactive deps that should retrigger the resolver — for state
|
|
@@ -220,15 +220,15 @@ export declare const VCNavItems: import("vue").DefineComponent<import("vue").Ext
|
|
|
220
220
|
*/
|
|
221
221
|
watch: {
|
|
222
222
|
type: PropType<WatchSource[]>;
|
|
223
|
-
default:
|
|
223
|
+
default: undefined;
|
|
224
224
|
};
|
|
225
225
|
variant: {
|
|
226
226
|
type: StringConstructor;
|
|
227
|
-
default:
|
|
227
|
+
default: undefined;
|
|
228
228
|
};
|
|
229
229
|
orientation: {
|
|
230
230
|
type: PropType<NavigationOrientation>;
|
|
231
|
-
default:
|
|
231
|
+
default: undefined;
|
|
232
232
|
};
|
|
233
233
|
/**
|
|
234
234
|
* How items with children render their submenu. `auto` derives from
|
|
@@ -259,22 +259,22 @@ export declare const VCNavItems: import("vue").DefineComponent<import("vue").Ext
|
|
|
259
259
|
};
|
|
260
260
|
themeClass: {
|
|
261
261
|
type: PropType<ThemeClassesOverride<NavigationThemeClasses>>;
|
|
262
|
-
default:
|
|
262
|
+
default: undefined;
|
|
263
263
|
};
|
|
264
264
|
themeVariant: {
|
|
265
265
|
type: PropType<VariantValues>;
|
|
266
|
-
default:
|
|
266
|
+
default: undefined;
|
|
267
267
|
};
|
|
268
268
|
}>> & Readonly<{}>, {
|
|
269
269
|
variant: string;
|
|
270
270
|
orientation: NavigationOrientation;
|
|
271
271
|
data: NavigationItem[] | NavigationResolver;
|
|
272
272
|
submenu: NavigationSubmenu;
|
|
273
|
-
as: string;
|
|
273
|
+
as: string | Component;
|
|
274
274
|
themeClass: ThemeClassesOverride<NavigationThemeClasses>;
|
|
275
275
|
themeVariant: VariantValues;
|
|
276
276
|
watch: WatchSource[];
|
|
277
|
-
itemAs: string;
|
|
277
|
+
itemAs: string | Component;
|
|
278
278
|
registry: boolean;
|
|
279
279
|
registryId: string;
|
|
280
280
|
path: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../../src/components/items/module.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,oBAAoB,EAA0B,aAAa,EAAE,MAAM,aAAa,CAAC;AAC/F,OAAO,KAAK,EACR,SAAS,EACT,sBAAsB,EACtB,QAAQ,EACR,SAAS,EAGT,WAAW,EACd,MAAM,KAAK,CAAC;AAgBb,OAAO,KAAK,EACR,cAAc,EAEd,qBAAqB,EACrB,kBAAkB,EAClB,iBAAiB,EACpB,MAAM,aAAa,CAAC;AACrB,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,+BAA+B,CAAC;AAY5E,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAGrD,QAAA,MAAM,aAAa;IACf;;;;;;;;;OASG;;cAE4B,QAAQ,CAAC,cAAc,EAAE,GAAG,kBAAkB,CAAC;;;IAG9E,yEAAyE;;;;;IAEzE,wEAAwE;;;;;IAExE;;;;OAIG;;;;;IAEH;;;;OAIG;;cACqB,QAAQ,CAAC,WAAW,EAAE,CAAC;;;;;;;;cAEhB,QAAQ,CAAC,qBAAqB,CAAC;;;IAC9D;;;OAGG;;cACwB,QAAQ,CAAC,iBAAiB,CAAC;;;IACtD;;;;;OAKG;;
|
|
1
|
+
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../../src/components/items/module.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,oBAAoB,EAA0B,aAAa,EAAE,MAAM,aAAa,CAAC;AAC/F,OAAO,KAAK,EACR,SAAS,EACT,sBAAsB,EACtB,QAAQ,EACR,SAAS,EAGT,WAAW,EACd,MAAM,KAAK,CAAC;AAgBb,OAAO,KAAK,EACR,cAAc,EAEd,qBAAqB,EACrB,kBAAkB,EAClB,iBAAiB,EACpB,MAAM,aAAa,CAAC;AACrB,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,+BAA+B,CAAC;AAY5E,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAGrD,QAAA,MAAM,aAAa;IACf;;;;;;;;;OASG;;cAE4B,QAAQ,CAAC,cAAc,EAAE,GAAG,kBAAkB,CAAC;;;IAG9E,yEAAyE;;;;;IAEzE,wEAAwE;;;;;IAExE;;;;OAIG;;;;;IAEH;;;;OAIG;;cACqB,QAAQ,CAAC,WAAW,EAAE,CAAC;;;;;;;;cAEhB,QAAQ,CAAC,qBAAqB,CAAC;;;IAC9D;;;OAGG;;cACwB,QAAQ,CAAC,iBAAiB,CAAC;;;IACtD;;;;;OAKG;;cACuC,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;IACtE;;;;OAIG;;cAC2C,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;;cAC5C,QAAQ,CAAC,oBAAoB,CAAC,sBAAsB,CAAC,CAAC;;;;cACpD,QAAQ,CAAC,aAAa,CAAC;;;CAC1D,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,sBAAsB,CAAC,OAAO,aAAa,CAAC,CAAC;AAEzE,eAAO,MAAM,UAAU;IAxDnB;;;;;;;;;OASG;;cAE4B,QAAQ,CAAC,cAAc,EAAE,GAAG,kBAAkB,CAAC;;;IAG9E,yEAAyE;;;;;IAEzE,wEAAwE;;;;;IAExE;;;;OAIG;;;;;IAEH;;;;OAIG;;cACqB,QAAQ,CAAC,WAAW,EAAE,CAAC;;;;;;;;cAEhB,QAAQ,CAAC,qBAAqB,CAAC;;;IAC9D;;;OAGG;;cACwB,QAAQ,CAAC,iBAAiB,CAAC;;;IACtD;;;;;OAKG;;cACuC,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;IACtE;;;;OAIG;;cAC2C,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;;cAC5C,QAAQ,CAAC,oBAAoB,CAAC,sBAAsB,CAAC,CAAC;;;;cACpD,QAAQ,CAAC,aAAa,CAAC;;;;;;IAnDvD;;;;;;;;;OASG;;cAE4B,QAAQ,CAAC,cAAc,EAAE,GAAG,kBAAkB,CAAC;;;IAG9E,yEAAyE;;;;;IAEzE,wEAAwE;;;;;IAExE;;;;OAIG;;;;;IAEH;;;;OAIG;;cACqB,QAAQ,CAAC,WAAW,EAAE,CAAC;;;;;;;;cAEhB,QAAQ,CAAC,qBAAqB,CAAC;;;IAC9D;;;OAGG;;cACwB,QAAQ,CAAC,iBAAiB,CAAC;;;IACtD;;;;;OAKG;;cACuC,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;IACtE;;;;OAIG;;cAC2C,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;;cAC5C,QAAQ,CAAC,oBAAoB,CAAC,sBAAsB,CAAC,CAAC;;;;cACpD,QAAQ,CAAC,aAAa,CAAC;;;;;;;;;;;;;;;;;UAS7C,qBAAqB;yEAqPjC,CAAC"}
|
|
@@ -5,7 +5,7 @@ declare const stepperProps: {
|
|
|
5
5
|
/** Active step (1-based). v-modeled. */
|
|
6
6
|
modelValue: {
|
|
7
7
|
type: NumberConstructor;
|
|
8
|
-
default:
|
|
8
|
+
default: undefined;
|
|
9
9
|
};
|
|
10
10
|
/** Initial active step for uncontrolled usage. */
|
|
11
11
|
defaultValue: {
|
|
@@ -20,7 +20,7 @@ declare const stepperProps: {
|
|
|
20
20
|
/** Reading direction. Falls back to the ConfigManager's `dir` value when omitted. */
|
|
21
21
|
dir: {
|
|
22
22
|
type: PropType<"ltr" | "rtl">;
|
|
23
|
-
default:
|
|
23
|
+
default: undefined;
|
|
24
24
|
};
|
|
25
25
|
/** When `true`, steps must be completed in order — Reka blocks navigation past the next incomplete step. */
|
|
26
26
|
linear: {
|
|
@@ -30,12 +30,12 @@ declare const stepperProps: {
|
|
|
30
30
|
/** Theme-class overrides for this component instance. */
|
|
31
31
|
themeClass: {
|
|
32
32
|
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
33
|
-
default:
|
|
33
|
+
default: undefined;
|
|
34
34
|
};
|
|
35
35
|
/** Theme-variant values for this component instance. */
|
|
36
36
|
themeVariant: {
|
|
37
37
|
type: PropType<VariantValues>;
|
|
38
|
-
default:
|
|
38
|
+
default: undefined;
|
|
39
39
|
};
|
|
40
40
|
};
|
|
41
41
|
export type StepperProps = ExtractPublicPropTypes<typeof stepperProps>;
|
|
@@ -45,7 +45,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
45
45
|
/** Active step (1-based). v-modeled. */
|
|
46
46
|
modelValue: {
|
|
47
47
|
type: NumberConstructor;
|
|
48
|
-
default:
|
|
48
|
+
default: undefined;
|
|
49
49
|
};
|
|
50
50
|
/** Initial active step for uncontrolled usage. */
|
|
51
51
|
defaultValue: {
|
|
@@ -60,7 +60,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
60
60
|
/** Reading direction. Falls back to the ConfigManager's `dir` value when omitted. */
|
|
61
61
|
dir: {
|
|
62
62
|
type: PropType<"ltr" | "rtl">;
|
|
63
|
-
default:
|
|
63
|
+
default: undefined;
|
|
64
64
|
};
|
|
65
65
|
/** When `true`, steps must be completed in order — Reka blocks navigation past the next incomplete step. */
|
|
66
66
|
linear: {
|
|
@@ -70,12 +70,12 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
70
70
|
/** Theme-class overrides for this component instance. */
|
|
71
71
|
themeClass: {
|
|
72
72
|
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
73
|
-
default:
|
|
73
|
+
default: undefined;
|
|
74
74
|
};
|
|
75
75
|
/** Theme-variant values for this component instance. */
|
|
76
76
|
themeVariant: {
|
|
77
77
|
type: PropType<VariantValues>;
|
|
78
|
-
default:
|
|
78
|
+
default: undefined;
|
|
79
79
|
};
|
|
80
80
|
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
81
81
|
[key: string]: any;
|
|
@@ -83,7 +83,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
83
83
|
/** Active step (1-based). v-modeled. */
|
|
84
84
|
modelValue: {
|
|
85
85
|
type: NumberConstructor;
|
|
86
|
-
default:
|
|
86
|
+
default: undefined;
|
|
87
87
|
};
|
|
88
88
|
/** Initial active step for uncontrolled usage. */
|
|
89
89
|
defaultValue: {
|
|
@@ -98,7 +98,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
98
98
|
/** Reading direction. Falls back to the ConfigManager's `dir` value when omitted. */
|
|
99
99
|
dir: {
|
|
100
100
|
type: PropType<"ltr" | "rtl">;
|
|
101
|
-
default:
|
|
101
|
+
default: undefined;
|
|
102
102
|
};
|
|
103
103
|
/** When `true`, steps must be completed in order — Reka blocks navigation past the next incomplete step. */
|
|
104
104
|
linear: {
|
|
@@ -108,15 +108,15 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
108
108
|
/** Theme-class overrides for this component instance. */
|
|
109
109
|
themeClass: {
|
|
110
110
|
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
111
|
-
default:
|
|
111
|
+
default: undefined;
|
|
112
112
|
};
|
|
113
113
|
/** Theme-variant values for this component instance. */
|
|
114
114
|
themeVariant: {
|
|
115
115
|
type: PropType<VariantValues>;
|
|
116
|
-
default:
|
|
116
|
+
default: undefined;
|
|
117
117
|
};
|
|
118
118
|
}>> & Readonly<{
|
|
119
|
-
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
119
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
120
120
|
}>, {
|
|
121
121
|
orientation: "horizontal" | "vertical";
|
|
122
122
|
themeClass: ThemeClassesOverride<StepperThemeClasses>;
|
|
@@ -15,12 +15,12 @@ declare const stepperDescriptionProps: {
|
|
|
15
15
|
/** Theme-class overrides for this component instance. */
|
|
16
16
|
themeClass: {
|
|
17
17
|
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
18
|
-
default:
|
|
18
|
+
default: undefined;
|
|
19
19
|
};
|
|
20
20
|
/** Theme-variant values for this component instance. */
|
|
21
21
|
themeVariant: {
|
|
22
22
|
type: PropType<VariantValues>;
|
|
23
|
-
default:
|
|
23
|
+
default: undefined;
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
26
|
export type StepperDescriptionProps = ExtractPublicPropTypes<typeof stepperDescriptionProps>;
|
|
@@ -40,12 +40,12 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
40
40
|
/** Theme-class overrides for this component instance. */
|
|
41
41
|
themeClass: {
|
|
42
42
|
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
43
|
-
default:
|
|
43
|
+
default: undefined;
|
|
44
44
|
};
|
|
45
45
|
/** Theme-variant values for this component instance. */
|
|
46
46
|
themeVariant: {
|
|
47
47
|
type: PropType<VariantValues>;
|
|
48
|
-
default:
|
|
48
|
+
default: undefined;
|
|
49
49
|
};
|
|
50
50
|
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
51
51
|
[key: string]: any;
|
|
@@ -63,15 +63,15 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
63
63
|
/** Theme-class overrides for this component instance. */
|
|
64
64
|
themeClass: {
|
|
65
65
|
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
66
|
-
default:
|
|
66
|
+
default: undefined;
|
|
67
67
|
};
|
|
68
68
|
/** Theme-variant values for this component instance. */
|
|
69
69
|
themeVariant: {
|
|
70
70
|
type: PropType<VariantValues>;
|
|
71
|
-
default:
|
|
71
|
+
default: undefined;
|
|
72
72
|
};
|
|
73
73
|
}>> & Readonly<{}>, {
|
|
74
|
-
as: string;
|
|
74
|
+
as: string | Component;
|
|
75
75
|
themeClass: ThemeClassesOverride<StepperThemeClasses>;
|
|
76
76
|
themeVariant: VariantValues;
|
|
77
77
|
asChild: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StepperDescription.vue.d.ts","sourceRoot":"","sources":["../../../src/components/stepper/StepperDescription.vue"],"names":[],"mappings":"AAoDA,OAAO,KAAK,EAAE,SAAS,EAAE,sBAAsB,EAAE,QAAQ,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,QAAA,MAAM,uBAAuB;IACzB,yFAAyF;;;;;IAEzF,0BAA0B;;
|
|
1
|
+
{"version":3,"file":"StepperDescription.vue.d.ts","sourceRoot":"","sources":["../../../src/components/stepper/StepperDescription.vue"],"names":[],"mappings":"AAoDA,OAAO,KAAK,EAAE,SAAS,EAAE,sBAAsB,EAAE,QAAQ,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,QAAA,MAAM,uBAAuB;IACzB,yFAAyF;;;;;IAEzF,0BAA0B;;cACgB,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;IACtE,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;;cACgB,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;IACtE,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;IAPvD,yFAAyF;;;;;IAEzF,0BAA0B;;cACgB,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;IACtE,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;;;4EAoCzD,CAAC"}
|
|
@@ -15,12 +15,12 @@ declare const stepperIndicatorProps: {
|
|
|
15
15
|
/** Theme-class overrides for this component instance. */
|
|
16
16
|
themeClass: {
|
|
17
17
|
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
18
|
-
default:
|
|
18
|
+
default: undefined;
|
|
19
19
|
};
|
|
20
20
|
/** Theme-variant values for this component instance. */
|
|
21
21
|
themeVariant: {
|
|
22
22
|
type: PropType<VariantValues>;
|
|
23
|
-
default:
|
|
23
|
+
default: undefined;
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
26
|
export type StepperIndicatorProps = ExtractPublicPropTypes<typeof stepperIndicatorProps>;
|
|
@@ -40,12 +40,12 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
40
40
|
/** Theme-class overrides for this component instance. */
|
|
41
41
|
themeClass: {
|
|
42
42
|
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
43
|
-
default:
|
|
43
|
+
default: undefined;
|
|
44
44
|
};
|
|
45
45
|
/** Theme-variant values for this component instance. */
|
|
46
46
|
themeVariant: {
|
|
47
47
|
type: PropType<VariantValues>;
|
|
48
|
-
default:
|
|
48
|
+
default: undefined;
|
|
49
49
|
};
|
|
50
50
|
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
51
51
|
[key: string]: any;
|
|
@@ -63,15 +63,15 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
63
63
|
/** Theme-class overrides for this component instance. */
|
|
64
64
|
themeClass: {
|
|
65
65
|
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
66
|
-
default:
|
|
66
|
+
default: undefined;
|
|
67
67
|
};
|
|
68
68
|
/** Theme-variant values for this component instance. */
|
|
69
69
|
themeVariant: {
|
|
70
70
|
type: PropType<VariantValues>;
|
|
71
|
-
default:
|
|
71
|
+
default: undefined;
|
|
72
72
|
};
|
|
73
73
|
}>> & Readonly<{}>, {
|
|
74
|
-
as: string;
|
|
74
|
+
as: string | Component;
|
|
75
75
|
themeClass: ThemeClassesOverride<StepperThemeClasses>;
|
|
76
76
|
themeVariant: VariantValues;
|
|
77
77
|
asChild: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StepperIndicator.vue.d.ts","sourceRoot":"","sources":["../../../src/components/stepper/StepperIndicator.vue"],"names":[],"mappings":"AAuDA,OAAO,KAAK,EAAE,SAAS,EAAE,sBAAsB,EAAE,QAAQ,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,QAAA,MAAM,qBAAqB;IACvB,uFAAuF;;;;;IAEvF,0BAA0B;;
|
|
1
|
+
{"version":3,"file":"StepperIndicator.vue.d.ts","sourceRoot":"","sources":["../../../src/components/stepper/StepperIndicator.vue"],"names":[],"mappings":"AAuDA,OAAO,KAAK,EAAE,SAAS,EAAE,sBAAsB,EAAE,QAAQ,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,QAAA,MAAM,qBAAqB;IACvB,uFAAuF;;;;;IAEvF,0BAA0B;;cACgB,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;IACtE,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;;cACgB,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;IACtE,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;IAPvD,uFAAuF;;;;;IAEvF,0BAA0B;;cACgB,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC;;;IACtE,yDAAyD;;cAC3B,QAAQ,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;;;IACjF,wDAAwD;;cACxB,QAAQ,CAAC,aAAa,CAAC;;;;;;;;4EAuCzD,CAAC"}
|
|
@@ -23,12 +23,12 @@ declare const stepperItemProps: {
|
|
|
23
23
|
/** Theme-class overrides for this component instance. */
|
|
24
24
|
themeClass: {
|
|
25
25
|
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
26
|
-
default:
|
|
26
|
+
default: undefined;
|
|
27
27
|
};
|
|
28
28
|
/** Theme-variant values for this component instance. */
|
|
29
29
|
themeVariant: {
|
|
30
30
|
type: PropType<VariantValues>;
|
|
31
|
-
default:
|
|
31
|
+
default: undefined;
|
|
32
32
|
};
|
|
33
33
|
};
|
|
34
34
|
export type StepperItemProps = ExtractPublicPropTypes<typeof stepperItemProps>;
|
|
@@ -53,12 +53,12 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
53
53
|
/** Theme-class overrides for this component instance. */
|
|
54
54
|
themeClass: {
|
|
55
55
|
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
56
|
-
default:
|
|
56
|
+
default: undefined;
|
|
57
57
|
};
|
|
58
58
|
/** Theme-variant values for this component instance. */
|
|
59
59
|
themeVariant: {
|
|
60
60
|
type: PropType<VariantValues>;
|
|
61
|
-
default:
|
|
61
|
+
default: undefined;
|
|
62
62
|
};
|
|
63
63
|
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
64
64
|
[key: string]: any;
|
|
@@ -81,12 +81,12 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
81
81
|
/** Theme-class overrides for this component instance. */
|
|
82
82
|
themeClass: {
|
|
83
83
|
type: PropType<ThemeClassesOverride<StepperThemeClasses>>;
|
|
84
|
-
default:
|
|
84
|
+
default: undefined;
|
|
85
85
|
};
|
|
86
86
|
/** Theme-variant values for this component instance. */
|
|
87
87
|
themeVariant: {
|
|
88
88
|
type: PropType<VariantValues>;
|
|
89
|
-
default:
|
|
89
|
+
default: undefined;
|
|
90
90
|
};
|
|
91
91
|
}>> & Readonly<{}>, {
|
|
92
92
|
themeClass: ThemeClassesOverride<StepperThemeClasses>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StepperItem.vue.d.ts","sourceRoot":"","sources":["../../../src/components/stepper/StepperItem.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"StepperItem.vue.d.ts","sourceRoot":"","sources":["../../../src/components/stepper/StepperItem.vue"],"names":[],"mappings":"AAwEA,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;yEAgCnC,CAAC"}
|