lambda-ui-components 1.0.3 β 1.1.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/README.md +20 -5
- package/dist/main.css +1 -1
- package/dist/main.d.ts +9 -2
- package/dist/main.mjs +3177 -3157
- package/dist/main.umd.js +14 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -120,6 +120,7 @@ Lambda UI offers a comprehensive set of UI primitives and advanced components, i
|
|
|
120
120
|
- Avatar
|
|
121
121
|
- Progress
|
|
122
122
|
- Skeleton
|
|
123
|
+
- **Stepper** (with custom validation)
|
|
123
124
|
- And many moreβ¦
|
|
124
125
|
|
|
125
126
|
## π¨ Theming & Customization
|
|
@@ -127,12 +128,26 @@ Lambda UI offers a comprehensive set of UI primitives and advanced components, i
|
|
|
127
128
|
- **CSS Variables:** Lambda UI Components uses CSS variables for theming. You can globally override the theme by changing variables in your CSS or using `data-theme` for dark mode and custom themes.
|
|
128
129
|
- **Unstyled Prop:** To customize the style of specific components, many support the `unstyled` prop, which removes default styles so you can apply your own.
|
|
129
130
|
|
|
130
|
-
## π
Latest Updates (v1.0
|
|
131
|
+
## π
Latest Updates (v1.1.0)
|
|
131
132
|
|
|
132
|
-
|
|
133
|
-
- **
|
|
134
|
-
-
|
|
135
|
-
-
|
|
133
|
+
### π New Features
|
|
134
|
+
- **Stepper:** Added `onStepValidate` callback for custom step validation
|
|
135
|
+
- Support for both sync and async validation
|
|
136
|
+
- Block step advancement when validation fails
|
|
137
|
+
- Display custom error messages with visual feedback
|
|
138
|
+
- See [CHANGELOG.md](CHANGELOG.md) for full details
|
|
139
|
+
|
|
140
|
+
### β οΈ Breaking Changes
|
|
141
|
+
- **Stepper:** Refactored to use children composition pattern (removed `steps` prop)
|
|
142
|
+
- Migration guide available in [CHANGELOG.md](CHANGELOG.md)
|
|
143
|
+
|
|
144
|
+
### π Fixes & Improvements
|
|
145
|
+
- **Stepper:** Improved styling and layout consistency
|
|
146
|
+
- **Stepper:** Better TypeScript type safety
|
|
147
|
+
|
|
148
|
+
## π Changelog
|
|
149
|
+
|
|
150
|
+
For a complete list of changes, improvements, and breaking changes across all versions, see [CHANGELOG.md](CHANGELOG.md).
|
|
136
151
|
|
|
137
152
|
## π€ Contribution
|
|
138
153
|
|