@yamada-ui/core
Advanced tools
Comparing version 0.0.0-dev-20230611132733 to 0.0.0-dev-20230613162138
@@ -316,30 +316,130 @@ "use strict"; | ||
var pseudos = { | ||
/** | ||
* The CSS `:hover` pseudo-class | ||
*/ | ||
_hover: "&:hover, &[data-hover]", | ||
/** | ||
* The CSS `:hover` pseudo-class | ||
*/ | ||
_nativeHover: "&:hover", | ||
/** | ||
* The CSS `:active` pseudo-class | ||
*/ | ||
_active: "&:active, &[data-active]", | ||
/** | ||
* The CSS `:active` pseudo-class | ||
*/ | ||
_nativeActive: "&:active", | ||
/** | ||
* The CSS `:focus` pseudo-class | ||
*/ | ||
_focus: "&:focus, &[data-focus]", | ||
/** | ||
* The CSS `:focus` pseudo-class | ||
*/ | ||
_nativeFocus: "&:focus", | ||
/** | ||
* The CSS `:focus-visible` pseudo-class | ||
*/ | ||
_focusVisible: "&:focus-visible, &[data-focus-visible]", | ||
/** | ||
* The CSS `:focus-visible` pseudo-class | ||
*/ | ||
_nativeFocusVisible: "&:focus-visible", | ||
_disabled: "&[disabled], &[aria-disabled=true], &[data-disabled]", | ||
_readOnly: "&[readonly], &[aria-readonly=true], &[data-readonly]", | ||
/** | ||
* The CSS `:disabled` pseudo-class | ||
*/ | ||
_disabled: "&:disabled, &[disabled], &[aria-disabled=true], &[data-disabled]", | ||
/** | ||
* The CSS `:read-only` pseudo-class | ||
*/ | ||
_readOnly: "&:read-only, &[readonly], &[aria-readonly=true], &[data-readonly]", | ||
/** | ||
* The CSS `:indeterminate` pseudo-class | ||
*/ | ||
_indeterminate: "&:indeterminate, &[aria-checked=mixed], &[data-indeterminate]", | ||
/** | ||
* The CSS `:before` pseudo-element | ||
*/ | ||
_before: "&::before", | ||
/** | ||
* The CSS `:after` pseudo-element | ||
*/ | ||
_after: "&::after", | ||
/** | ||
* The CSS `:empty` pseudo-class | ||
*/ | ||
_empty: "&:empty", | ||
/** | ||
* Styles to apply when the ARIA attribute `aria-expanded` is `true` | ||
*/ | ||
_expanded: "&[aria-expanded=true], &[data-expanded]", | ||
_checked: "&[data-checked], &[aria-checked=true]", | ||
_invalid: "&[data-invalid], &[aria-invalid=true]", | ||
_valid: "&[data-valid], &[data-state=valid]", | ||
/** | ||
* The CSS `:checked` pseudo-class | ||
*/ | ||
_checked: "&:checked, &[data-checked], &[aria-checked=true]", | ||
/** | ||
* The CSS `:invalid` pseudo-class | ||
*/ | ||
_invalid: "&:invalid, &[data-invalid], &[aria-invalid=true]", | ||
/** | ||
* The CSS `:invalid` pseudo-class | ||
*/ | ||
_valid: "&:valid, &[data-valid], &[data-state=valid]", | ||
/** | ||
* Styles to apply when the ARIA attribute `aria-selected` is `true` | ||
*/ | ||
_selected: "&[aria-selected=true], &[data-selected]", | ||
/** | ||
* The CSS `[hidden=true]` pseudo-class | ||
*/ | ||
_hidden: "&[hidden], &[data-hidden]", | ||
/** | ||
* The CSS `:visited` pseudo-class | ||
*/ | ||
_visited: "&:visited", | ||
/** | ||
* The CSS `::placeholder` pseudo-element | ||
*/ | ||
_placeholder: "&[data-placeholder], &::placeholder", | ||
/** | ||
* The CSS `:placeholder-shown` pseudo-class | ||
*/ | ||
_placeholderShown: "&:placeholder-shown", | ||
/** | ||
* The CSS `:fullscreen` pseudo-class | ||
*/ | ||
_fullScreen: "&:fullscreen", | ||
/** | ||
* The CSS `::selection` pseudo-element | ||
*/ | ||
_selection: "&::selection", | ||
/** | ||
* The CSS `:nth-of-type(even)` pseudo-class | ||
*/ | ||
_even: "&:nth-of-type(even)", | ||
/** | ||
* The CSS `:nth-of-type(odd)` pseudo-class | ||
*/ | ||
_odd: "&:nth-of-type(odd)", | ||
/** | ||
* The CSS `:first-of-type` pseudo-class | ||
*/ | ||
_first: "&:first-of-type", | ||
/** | ||
* The CSS `:last-of-type` pseudo-class | ||
*/ | ||
_last: "&:last-of-type", | ||
/** | ||
* The CSS `:not(:first-of-type)` pseudo-class | ||
*/ | ||
_notFirst: "&:not(:first-of-type)", | ||
/** | ||
* The CSS `:not(:last-of-type)` pseudo-class | ||
*/ | ||
_notLast: "&:not(:last-of-type)", | ||
/** | ||
* The CSS `:-webkit-autofill` pseudo-class | ||
*/ | ||
_autofill: "&:-webkit-autofill", | ||
_outside: "&[data-outside]", | ||
@@ -353,13 +453,51 @@ _weekend: "&[data-weekend]", | ||
_loading: "&[data-loading]", | ||
/** | ||
* The CSS `:vertical` pseudo-class | ||
*/ | ||
_vertical: "&:vertical, &[data-orientation=vertical]", | ||
/** | ||
* The CSS `:horizontal` pseudo-class | ||
*/ | ||
_horizontal: "&:horizontal, &[data-orientation=horizontal]", | ||
/** | ||
* The CSS `::-webkit-scrollbar` pseudo-element | ||
*/ | ||
_scrollbar: "&::-webkit-scrollbar", | ||
/** | ||
* The CSS `::-webkit-scrollbar-track` pseudo-element | ||
*/ | ||
_scrollbarTrack: "&::-webkit-scrollbar-track", | ||
/** | ||
* The CSS `::-webkit-scrollbar-track-piece` pseudo-element | ||
*/ | ||
_scrollbarTrackPiece: "&::-webkit-scrollbar-track-piece", | ||
/** | ||
* The CSS `::-webkit-scrollbar-thumb` pseudo-element | ||
*/ | ||
_scrollbarThumb: "&::-webkit-scrollbar-thumb", | ||
/** | ||
* The CSS `::-webkit-scrollbar-button` pseudo-element | ||
*/ | ||
_scrollbarButton: "&::-webkit-scrollbar-button", | ||
/** | ||
* The CSS `::-webkit-scrollbar-corner` pseudo-element | ||
*/ | ||
_scrollbarCorner: "&::-webkit-scrollbar-corner", | ||
/** | ||
* The CSS `@media (prefers-color-scheme: dark)` media feature | ||
*/ | ||
_mediaDark: "@media (prefers-color-scheme: dark)", | ||
/** | ||
* The CSS `@media (prefers-reduced-motion: reduce)` media feature | ||
*/ | ||
_mediaReduceMotion: "@media (prefers-reduced-motion: reduce)", | ||
/** | ||
* Styles for when `data-theme` is applied to any parent of | ||
* this component or element. | ||
*/ | ||
_dark: ".ui-dark &:not([data-theme]), [data-theme=dark] &:not([data-theme]), &[data-theme=dark]", | ||
/** | ||
* Styles for when `data-theme` is applied to any parent of | ||
* this component or element. | ||
*/ | ||
_light: ".ui-light &:not([data-theme]), [data-theme=light] &:not([data-theme]), &[data-theme=light]" | ||
@@ -366,0 +504,0 @@ }; |
{ | ||
"name": "@yamada-ui/core", | ||
"version": "0.0.0-dev-20230611132733", | ||
"version": "0.0.0-dev-20230613162138", | ||
"description": "Yamada UI core", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
193513
5377