@m3e/stepper 1.0.2
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 +22 -0
- package/README.md +263 -0
- package/dist/css-custom-data.json +172 -0
- package/dist/custom-elements.json +4143 -0
- package/dist/html-custom-data.json +99 -0
- package/dist/index.js +1152 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +334 -0
- package/dist/index.min.js.map +1 -0
- package/dist/src/StepElement.d.ts +161 -0
- package/dist/src/StepElement.d.ts.map +1 -0
- package/dist/src/StepHeaderPosition.d.ts +3 -0
- package/dist/src/StepHeaderPosition.d.ts.map +1 -0
- package/dist/src/StepLabelPosition.d.ts +3 -0
- package/dist/src/StepLabelPosition.d.ts.map +1 -0
- package/dist/src/StepPanelElement.d.ts +74 -0
- package/dist/src/StepPanelElement.d.ts.map +1 -0
- package/dist/src/StepperButtonElementBase.d.ts +17 -0
- package/dist/src/StepperButtonElementBase.d.ts.map +1 -0
- package/dist/src/StepperElement.d.ts +139 -0
- package/dist/src/StepperElement.d.ts.map +1 -0
- package/dist/src/StepperNextElement.d.ts +16 -0
- package/dist/src/StepperNextElement.d.ts.map +1 -0
- package/dist/src/StepperOrientation.d.ts +3 -0
- package/dist/src/StepperOrientation.d.ts.map +1 -0
- package/dist/src/StepperPreviousElement.d.ts +16 -0
- package/dist/src/StepperPreviousElement.d.ts.map +1 -0
- package/dist/src/StepperResetElement.d.ts +16 -0
- package/dist/src/StepperResetElement.d.ts.map +1 -0
- package/dist/src/index.d.ts +10 -0
- package/dist/src/index.d.ts.map +1 -0
- package/package.json +48 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 matraic
|
|
4
|
+
Contact: matraic@yahoo.com
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
# @m3e/stepper
|
|
2
|
+
|
|
3
|
+
The `m3e-stepper` component orchestrates a structured, wizard-like workflow by dividing content into discrete, navigable steps. It supports horizontal and vertical orientations, linear progression, and configurable label and header positioning.
|
|
4
|
+
|
|
5
|
+
> **This package is part of [M3E](https://github.com/matraic/m3e) monorepo**, a unified suite of Material 3 web components. [Explore the docs](https://matraic.github.io/m3e) to see them in action.
|
|
6
|
+
|
|
7
|
+
## ๐ฆ Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @m3e/stepper
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## ๐ป Editor Integration
|
|
14
|
+
|
|
15
|
+
This package includes a [Custom Elements Manifest](https://github.com/webcomponents/custom-elements-manifest) to support enhanced editor tooling and developer experience.
|
|
16
|
+
|
|
17
|
+
### Visual Studio Code
|
|
18
|
+
|
|
19
|
+
To enable autocomplete and hover documentation for `@m3e/stepper`, install the [Custom Elements Manifest Language Server](https://marketplace.visualstudio.com/items?itemName=pwrs.cem-language-server-vscode) extension. It will automatically detect the manifest bundled with this package and surface tag names, attributes, slots, and events in supported files.
|
|
20
|
+
|
|
21
|
+
Alternately, you can explicitly reference the `html-custom-data.json` and `css-custom-data.json` in your workspace settings:
|
|
22
|
+
|
|
23
|
+
```json
|
|
24
|
+
{
|
|
25
|
+
"html.customData": ["./node_modules/@m3e/tabs/dist/html-custom-data.json"],
|
|
26
|
+
"css.customData": ["./node_modules/@m3e/tabs/dist/css-custom-data.json"]
|
|
27
|
+
}
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## ๐ Native Module Support
|
|
31
|
+
|
|
32
|
+
This package uses [JavaScript Modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules#module_specifiers). To use it directly in a browser without a bundler, use a module script similar to the following.
|
|
33
|
+
|
|
34
|
+
```html
|
|
35
|
+
<script type="module" src="/node_modules/@m3e/stepper/dist/index.js"></script>
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
In addition, you must use an [import map](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/script/type/importmap) to include dependencies.
|
|
39
|
+
|
|
40
|
+
```html
|
|
41
|
+
<script type="importmap">
|
|
42
|
+
{
|
|
43
|
+
"imports": {
|
|
44
|
+
"lit": "https://cdn.jsdelivr.net/npm/lit@3.3.0/+esm",
|
|
45
|
+
"@m3e/core": "/node_modules/@m3e/core/dist/index.js",
|
|
46
|
+
"@m3e/core/a11y": "/node_modules/@m3e/core/dist/a11y.js",
|
|
47
|
+
"@m3e/core/layout": "/node_modules/@m3e/core/dist/layout.js"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
</script>
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
> For production, use index.min.js, a11y.min.js, and layout.min.js for faster load times.
|
|
54
|
+
|
|
55
|
+
## ๐๏ธ Elements
|
|
56
|
+
|
|
57
|
+
- `m3e-step` โ A step in a wizard-like workflow.
|
|
58
|
+
- `m3e-step-panel` โ A panel presented for a step in a wizard-like workflow.
|
|
59
|
+
- `m3e-stepper` โ Provides a wizard-like workflow by dividing content into logical steps.
|
|
60
|
+
- `m3e-stepper-next` โ An element, nested within a clickable element, used to move a stepper to the next step.
|
|
61
|
+
- `m3e-stepper-previous` โ An element, nested within a clickable element, used to move a stepper to the previous step.
|
|
62
|
+
- `m3e-stepper-reset` โ An element, nested within a clickable element, used to reset a stepper to its initial state.
|
|
63
|
+
|
|
64
|
+
## ๐งช Examples
|
|
65
|
+
|
|
66
|
+
The following example demonstrates a linear multi-step form flow using the `m3e-stepper` component. Each `m3e-step` defines a navigable step label, linked to its corresponding `m3e-step-panel` via the `for` attribute. Navigation is orchestrated using the `m3e-stepper-next`, `m3e-stepper-previous`, and `m3e-stepper-reset` components.
|
|
67
|
+
|
|
68
|
+
```html
|
|
69
|
+
<m3e-stepper>
|
|
70
|
+
<m3e-step for="step1">Fill out your name</m3e-step>
|
|
71
|
+
<m3e-step for="step2">Fill out your address</m3e-step>
|
|
72
|
+
<m3e-step for="step3">Done</m3e-step>
|
|
73
|
+
<m3e-step-panel id="step1">
|
|
74
|
+
<form>
|
|
75
|
+
<m3e-form-field>
|
|
76
|
+
<label slot="label" for="name">Name</label>
|
|
77
|
+
<input name="name" id="name" required />
|
|
78
|
+
</m3e-form-field>
|
|
79
|
+
</form>
|
|
80
|
+
<div slot="actions">
|
|
81
|
+
<m3e-button><m3e-stepper-next>Next</m3e-stepper-next></m3e-button>
|
|
82
|
+
</div>
|
|
83
|
+
</m3e-step-panel>
|
|
84
|
+
<m3e-step-panel id="step2">
|
|
85
|
+
<form>
|
|
86
|
+
<m3e-form-field>
|
|
87
|
+
<label slot="label" for="address">Address</label>
|
|
88
|
+
<input name="address" id="address" required />
|
|
89
|
+
</m3e-form-field>
|
|
90
|
+
</form>
|
|
91
|
+
<div slot="actions">
|
|
92
|
+
<m3e-button><m3e-stepper-previous>Back</m3e-stepper-previous></m3e-button>
|
|
93
|
+
<m3e-button><m3e-stepper-next>Next</m3e-stepper-next></m3e-button>
|
|
94
|
+
</div>
|
|
95
|
+
</m3e-step-panel>
|
|
96
|
+
<m3e-step-panel id="step3"
|
|
97
|
+
>Done
|
|
98
|
+
<div slot="actions">
|
|
99
|
+
<m3e-button><m3e-stepper-previous>Back</m3e-stepper-previous></m3e-button>
|
|
100
|
+
<m3e-button><m3e-stepper-reset>Reset</m3e-stepper-reset></m3e-button>
|
|
101
|
+
</div>
|
|
102
|
+
</m3e-step-panel>
|
|
103
|
+
</m3e-stepper>
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
## ๐ API Reference
|
|
107
|
+
|
|
108
|
+
### ๐๏ธ m3e-step
|
|
109
|
+
|
|
110
|
+
This section details the attributes, slots, events and CSS custom properties available for the `m3e-step` component.
|
|
111
|
+
|
|
112
|
+
#### ๐ ๏ธ Attributes
|
|
113
|
+
|
|
114
|
+
| Attribute | Type | Default | Description |
|
|
115
|
+
| ----------- | --------- | ------- | ---------------------------------------------------------------------------- |
|
|
116
|
+
| `completed` | `boolean` | `false` | Whether the step has been completed. |
|
|
117
|
+
| `disabled` | `boolean` | `false` | Whether the element is disabled. |
|
|
118
|
+
| `editable` | `boolean` | `false` | Whether the step is editable and users can return to it after completion. |
|
|
119
|
+
| `for` | `string` | | The identifier of the interactive control to which this element is attached. |
|
|
120
|
+
| `optional` | `boolean` | `false` | Whether the step is optional. |
|
|
121
|
+
| `selected` | `boolean` | `false` | Whether the element is selected. |
|
|
122
|
+
|
|
123
|
+
#### ๐ Events
|
|
124
|
+
|
|
125
|
+
| Event | Description |
|
|
126
|
+
| -------- | ---------------------------------------- |
|
|
127
|
+
| `input` | Emitted when the selected state changes. |
|
|
128
|
+
| `change` | Emitted when the selected state changes. |
|
|
129
|
+
|
|
130
|
+
#### ๐งฉ Slots
|
|
131
|
+
|
|
132
|
+
| Slot | Description |
|
|
133
|
+
| ------------ | ---------------------------------------------- |
|
|
134
|
+
| _(default)_ | Renders the label of the step. |
|
|
135
|
+
| `icon` | Renders the icon of the step. |
|
|
136
|
+
| `done-icon` | Renders the icon of a completed step. |
|
|
137
|
+
| `edit-icon` | Renders the icon of a completed editable step. |
|
|
138
|
+
| `error-icon` | Renders the icon of an invalid step. |
|
|
139
|
+
| `hint` | Renders the hint text of the step. |
|
|
140
|
+
| `error` | Renders the error message for an invalid step. |
|
|
141
|
+
|
|
142
|
+
#### ๐๏ธ CSS Custom Properties
|
|
143
|
+
|
|
144
|
+
| Property | Description |
|
|
145
|
+
| -------------------------------------------- | -------------------------------------------------------------------- |
|
|
146
|
+
| `--m3e-step-shape` | Border radius of the step container, defining its visual shape. |
|
|
147
|
+
| `--m3e-step-padding` | Internal padding of the step container, used for layout spacing. |
|
|
148
|
+
| `--m3e-step-icon-shape` | Border radius of the icon container, controlling its geometric form. |
|
|
149
|
+
| `--m3e-step-icon-size` | Width and height of the icon container and icon glyph. |
|
|
150
|
+
| `--m3e-step-selected-icon-container-color` | Background color of the icon when the step is selected. |
|
|
151
|
+
| `--m3e-step-selected-icon-color` | Foreground color of the icon when the step is selected. |
|
|
152
|
+
| `--m3e-step-completed-icon-container-color` | Background color of the icon when the step is completed. |
|
|
153
|
+
| `--m3e-step-completed-icon-color` | Foreground color of the icon when the step is completed. |
|
|
154
|
+
| `--m3e-step-unselected-icon-container-color` | Background color of the icon when the step is inactive. |
|
|
155
|
+
| `--m3e-step-unselected-icon-color` | Foreground color of the icon when the step is inactive. |
|
|
156
|
+
| `--m3e-step-icon-error-color` | Foreground color of the icon when the step is invalid. |
|
|
157
|
+
| `--m3e-step-disabled-icon-container-color` | Base color used to mix the disabled icon background. |
|
|
158
|
+
| `--m3e-step-disabled-icon-color` | Base color used to mix the disabled icon foreground. |
|
|
159
|
+
| `--m3e-step-label-color` | Text color of the step label in its default state. |
|
|
160
|
+
| `--m3e-step-label-error-color` | Text color of the step label when the step is invalid. |
|
|
161
|
+
| `--m3e-step-disabled-label-color` | Base color used to mix the disabled label foreground. |
|
|
162
|
+
| `--m3e-step-font-size` | Font size of the step label. |
|
|
163
|
+
| `--m3e-step-font-weight` | Font weight of the step label. |
|
|
164
|
+
| `--m3e-step-line-height` | Line height of the step label. |
|
|
165
|
+
| `--m3e-step-tracking` | Letter spacing of the step label. |
|
|
166
|
+
| `--m3e-step-icon-label-space` | Gap between icon and label. |
|
|
167
|
+
| `--m3e-step-hint-font-size` | Font size of hint and error messages. |
|
|
168
|
+
| `--m3e-step-hint-font-weight` | Font weight of hint and error messages. |
|
|
169
|
+
| `--m3e-step-hint-line-height` | Line height of hint and error messages. |
|
|
170
|
+
| `--m3e-step-hint-tracking` | Letter spacing of hint and error messages. |
|
|
171
|
+
| `--m3e-step-hint-color` | Text color of hint messages in valid state. |
|
|
172
|
+
| `--m3e-step-disabled-hint-color` | Base color used to mix the disabled hint foreground. |
|
|
173
|
+
|
|
174
|
+
### ๐๏ธ m3e-step-panel
|
|
175
|
+
|
|
176
|
+
This section details the slots and CSS custom properties available for the `m3e-step-panel` component.
|
|
177
|
+
|
|
178
|
+
#### ๐งฉ Slots
|
|
179
|
+
|
|
180
|
+
| Slot | Description |
|
|
181
|
+
| ----------- | ------------------------------------- |
|
|
182
|
+
| _(default)_ | Renders the content of the panel. |
|
|
183
|
+
| `actions` | Renders the actions bar of the panel. |
|
|
184
|
+
|
|
185
|
+
#### ๐๏ธ CSS Custom Properties
|
|
186
|
+
|
|
187
|
+
| Property | Description |
|
|
188
|
+
| --------------------------------- | ---------------------------------------------------------------------------------- |
|
|
189
|
+
| `--m3e-step-panel-padding` | Padding inside the step panel container, defining internal spacing around content. |
|
|
190
|
+
| `--m3e-step-panel-spacing` | Vertical gap between stacked elements within the step panel. |
|
|
191
|
+
| `--m3e-step-panel-actions-height` | Minimum height of the slotted actions container. |
|
|
192
|
+
|
|
193
|
+
### ๐๏ธ m3e-stepper
|
|
194
|
+
|
|
195
|
+
This section details the attributes, slots, events and CSS custom properties available for the `m3e-stepper` component.
|
|
196
|
+
|
|
197
|
+
#### ๐ ๏ธ Attributes
|
|
198
|
+
|
|
199
|
+
| Attribute | Type | Default | Description |
|
|
200
|
+
| ----------------- | ------------------------------------------ | -------------- | ---------------------------------------------------------------- |
|
|
201
|
+
| `header-position` | `"above"` \|`"below"` | `"above"` | The position of the step header, when oriented horizontally. |
|
|
202
|
+
| `label-position` | `"below"` \|`"end"` | `"end"` | The position of the step labels, when oriented horizontally. |
|
|
203
|
+
| `linear` | `boolean` | `false` | Whether the validity of previous steps should be checked or not. |
|
|
204
|
+
| `orientation` | `"horizontal"` \| `"vertical"` \| `"auto"` | `"horizontal"` | The orientation of the stepper. |
|
|
205
|
+
|
|
206
|
+
#### ๐ Events
|
|
207
|
+
|
|
208
|
+
| Event | Description |
|
|
209
|
+
| -------- | --------------------------------------- |
|
|
210
|
+
| `change` | Emitted when the selected step changes. |
|
|
211
|
+
|
|
212
|
+
#### ๐งฉ Slots
|
|
213
|
+
|
|
214
|
+
| Slot | Description |
|
|
215
|
+
| ------- | ---------------- |
|
|
216
|
+
| `step` | Renders a step. |
|
|
217
|
+
| `panel` | Renders a panel. |
|
|
218
|
+
|
|
219
|
+
#### ๐๏ธ CSS Custom Properties
|
|
220
|
+
|
|
221
|
+
| Property | Description |
|
|
222
|
+
| ------------------------------ | ------------------------------------------------------ |
|
|
223
|
+
| `--m3e-step-divider-thickness` | Thickness of the divider line between steps. |
|
|
224
|
+
| `--m3e-step-divider-color` | Color of the divider line between steps. |
|
|
225
|
+
| `--m3e-step-divider-inset` | Inset offset for divider alignment within step layout. |
|
|
226
|
+
|
|
227
|
+
### ๐๏ธ m3e-stepper-next
|
|
228
|
+
|
|
229
|
+
This section details the slots available for the `m3e-stepper-next` component.
|
|
230
|
+
|
|
231
|
+
#### ๐งฉ Slots
|
|
232
|
+
|
|
233
|
+
| Slot | Description |
|
|
234
|
+
| ----------- | ---------------------------------- |
|
|
235
|
+
| _(default)_ | Renders the content of the action. |
|
|
236
|
+
|
|
237
|
+
### ๐๏ธ m3e-stepper-previous
|
|
238
|
+
|
|
239
|
+
This section details the slots available for the `m3e-stepper-previous` component.
|
|
240
|
+
|
|
241
|
+
#### ๐งฉ Slots
|
|
242
|
+
|
|
243
|
+
| Slot | Description |
|
|
244
|
+
| ----------- | ---------------------------------- |
|
|
245
|
+
| _(default)_ | Renders the content of the action. |
|
|
246
|
+
|
|
247
|
+
### ๐๏ธ m3e-stepper-reset
|
|
248
|
+
|
|
249
|
+
This section details the slots available for the `m3e-stepper-reset` component.
|
|
250
|
+
|
|
251
|
+
#### ๐งฉ Slots
|
|
252
|
+
|
|
253
|
+
| Slot | Description |
|
|
254
|
+
| ----------- | ---------------------------------- |
|
|
255
|
+
| _(default)_ | Renders the content of the action. |
|
|
256
|
+
|
|
257
|
+
## ๐ค Contributing
|
|
258
|
+
|
|
259
|
+
See the root monorepo `CONTRIBUTING.md` for guidelines on contributing to this package.
|
|
260
|
+
|
|
261
|
+
## ๐ License
|
|
262
|
+
|
|
263
|
+
This package is licensed under the MIT License.
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/microsoft/vscode-css-languageservice/main/docs/customData.schema.json",
|
|
3
|
+
"version": 1.1,
|
|
4
|
+
"properties": [
|
|
5
|
+
{
|
|
6
|
+
"name": "--m3e-step-shape",
|
|
7
|
+
"description": "Border radius of the step container, defining its visual shape.",
|
|
8
|
+
"values": []
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"name": "--m3e-step-padding",
|
|
12
|
+
"description": "Internal padding of the step container, used for layout spacing.",
|
|
13
|
+
"values": []
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"name": "--m3e-step-icon-shape",
|
|
17
|
+
"description": "Border radius of the icon container, controlling its geometric form.",
|
|
18
|
+
"values": []
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "--m3e-step-icon-size",
|
|
22
|
+
"description": "Width and height of the icon container and icon glyph.",
|
|
23
|
+
"values": []
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "--m3e-step-selected-icon-container-color",
|
|
27
|
+
"description": "Background color of the icon when the step is selected.",
|
|
28
|
+
"values": []
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "--m3e-step-selected-icon-color",
|
|
32
|
+
"description": "Foreground color of the icon when the step is selected.",
|
|
33
|
+
"values": []
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "--m3e-step-completed-icon-container-color",
|
|
37
|
+
"description": "Background color of the icon when the step is completed.",
|
|
38
|
+
"values": []
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "--m3e-step-completed-icon-color",
|
|
42
|
+
"description": "Foreground color of the icon when the step is completed.",
|
|
43
|
+
"values": []
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "--m3e-step-unselected-icon-container-color",
|
|
47
|
+
"description": "Background color of the icon when the step is inactive.",
|
|
48
|
+
"values": []
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "--m3e-step-unselected-icon-color",
|
|
52
|
+
"description": "Foreground color of the icon when the step is inactive.",
|
|
53
|
+
"values": []
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "--m3e-step-icon-error-color",
|
|
57
|
+
"description": "Foreground color of the icon when the step is invalid.",
|
|
58
|
+
"values": []
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "--m3e-step-disabled-icon-container-color",
|
|
62
|
+
"description": "Base color used to mix the disabled icon background.",
|
|
63
|
+
"values": []
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "--m3e-step-disabled-icon-color",
|
|
67
|
+
"description": "Base color used to mix the disabled icon foreground.",
|
|
68
|
+
"values": []
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "--m3e-step-label-color",
|
|
72
|
+
"description": "Text color of the step label in its default state.",
|
|
73
|
+
"values": []
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "--m3e-step-label-error-color",
|
|
77
|
+
"description": "Text color of the step label when the step is invalid.",
|
|
78
|
+
"values": []
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "--m3e-step-disabled-label-color",
|
|
82
|
+
"description": "Base color used to mix the disabled label foreground.",
|
|
83
|
+
"values": []
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "--m3e-step-font-size",
|
|
87
|
+
"description": "Font size of the step label.",
|
|
88
|
+
"values": []
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "--m3e-step-font-weight",
|
|
92
|
+
"description": "Font weight of the step label.",
|
|
93
|
+
"values": []
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "--m3e-step-line-height",
|
|
97
|
+
"description": "Line height of the step label.",
|
|
98
|
+
"values": []
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "--m3e-step-tracking",
|
|
102
|
+
"description": "Letter spacing of the step label.",
|
|
103
|
+
"values": []
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "--m3e-step-icon-label-space",
|
|
107
|
+
"description": "Gap between icon and label.",
|
|
108
|
+
"values": []
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "--m3e-step-hint-font-size",
|
|
112
|
+
"description": "Font size of hint and error messages.",
|
|
113
|
+
"values": []
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"name": "--m3e-step-hint-font-weight",
|
|
117
|
+
"description": "Font weight of hint and error messages.",
|
|
118
|
+
"values": []
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"name": "--m3e-step-hint-line-height",
|
|
122
|
+
"description": "Line height of hint and error messages.",
|
|
123
|
+
"values": []
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"name": "--m3e-step-hint-tracking",
|
|
127
|
+
"description": "Letter spacing of hint and error messages.",
|
|
128
|
+
"values": []
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"name": "--m3e-step-hint-color",
|
|
132
|
+
"description": "Text color of hint messages in valid state.",
|
|
133
|
+
"values": []
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "--m3e-step-disabled-hint-color",
|
|
137
|
+
"description": "Base color used to mix the disabled hint foreground.",
|
|
138
|
+
"values": []
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "--m3e-step-panel-padding",
|
|
142
|
+
"description": "Padding inside the step panel container, defining internal spacing around content.",
|
|
143
|
+
"values": []
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"name": "--m3e-step-panel-spacing",
|
|
147
|
+
"description": "Vertical gap between stacked elements within the step panel.",
|
|
148
|
+
"values": []
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "--m3e-step-panel-actions-height",
|
|
152
|
+
"description": "Minimum height of the slotted actions container.",
|
|
153
|
+
"values": []
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"name": "--m3e-step-divider-thickness",
|
|
157
|
+
"description": "Thickness of the divider line between steps.",
|
|
158
|
+
"values": []
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"name": "--m3e-step-divider-color",
|
|
162
|
+
"description": "Color of the divider line between steps.",
|
|
163
|
+
"values": []
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"name": "--m3e-step-divider-inset",
|
|
167
|
+
"description": "Inset offset for divider alignment within step layout.",
|
|
168
|
+
"values": []
|
|
169
|
+
}
|
|
170
|
+
],
|
|
171
|
+
"pseudoElements": []
|
|
172
|
+
}
|