lambda-ui-components 1.0.3 β†’ 1.2.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 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.2)
131
+ ## πŸ“… Latest Updates (v1.1.0)
131
132
 
132
- - **Button:** New `darkened` variant.
133
- - **Avatar:** Dynamic border colors.
134
- - **Theme:** Dark mode color improvements.
135
- - **Fixes:** DatePicker modal stability.
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