You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(react): improve button, tag, speed-dial, and time-picker components (#68)
* feat(button): add hover, focus, and active state styles for status button types
Add missing hover/active color tokens for success, info, warning, and
danger in both light and dark themes, and pass them to the button-style
mixin so these button types now have visible interactive state feedback.
* feat(tag): add success, info, warning, and danger status color presets
Add status color styles using the global semantic color tokens to match
the button component's status types. Include a Status demo and update
both EN and CN docs.
* fix(speed-dial): use theme-aware CSS custom properties instead of hardcoded SCSS variables
Replace hardcoded $primary-color references with var(--ty-color-primary)
and related tokens so the FAB button color follows theme changes.
* feat(time-picker): add pending selection state with commit-on-OK behavior
Introduce a pending state so clicking time slots shows a tentative
(greyed) highlight without affecting other columns. The input displays
the in-progress time in a lighter color. Selections are only committed
when OK is clicked, matching Ant Design's TimePicker behavior.
* fix: margin styles
* chore: add changeset for button, tag, speed-dial, and time-picker improvements
Add hover/focus/active state styles for button status types (success, info, warning, danger), add status color presets to Tag component, fix SpeedDial to use theme-aware CSS custom properties, and improve TimePicker with pending selection state committed on OK
0 commit comments