-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wolfgangbeer/ch3876/ersetzen der chakra menu component durch #22
Wolfgangbeer/ch3876/ersetzen der chakra menu component durch #22
Conversation
src/menu/menu-item-link.tsx
Outdated
if (!isDisabled) closeMenu(); | ||
}, [closeMenu, isDisabled]); | ||
|
||
const className = cx( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
vl auf const classNames oder const tailwindString umbenennen damit wir nicht 2mal den selben Namen bei unterschiedlichen Dingen haben.
@@ -3,6 +3,9 @@ const tailwindcssui = require('@tailwindcss/ui'); | |||
const defaultTheme = require('tailwindcss/defaultTheme'); | |||
|
|||
module.exports = { | |||
future: { | |||
removeDeprecatedGapUtilities: true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
würde diese purge option noch mit einfügen. Laut Adam Watan ises nun save aggressiver zu purgen und diese option wird in einem zukünftigen tw-update sowieso default sein.
Aktuell is das purge Verhalten auf conservative
gestellt.
Hier der Link zum gemergeten PR vom Tailwind-Team zum kommenden tailwind-update:
tailwindlabs/tailwindcss#2288
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
Naming Changes sind eingearbeitet. Update von der config Option wird separat gemacht |
Komponenten:
Menu
MenuButton
MenuList
MenuDivider
MenuItem
MenuItemLink
Die Menu Komponente ist komplett via Keyboard bedienbar und wird von einem Screenreader korrekt announced. Folgetask wenn dieser gemerged und gepublished ist:
sunrocks operation-center und retailer-portal auf die neue design system version updaten und Breaking Changes einarbeiten.