@yamada-ui/react 2.2.3-dev-20260622131221 → 2.2.3-dev-20260622141401
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/dist/cjs/core/components/props.cjs +5 -1
- package/dist/cjs/core/components/props.cjs.map +1 -1
- package/dist/cjs/core/css/index.cjs +1 -0
- package/dist/cjs/core/css/styles.cjs +253 -0
- package/dist/cjs/core/css/styles.cjs.map +1 -1
- package/dist/cjs/core/index.cjs +1 -0
- package/dist/cjs/index.cjs +2 -0
- package/dist/esm/core/components/props.js +6 -2
- package/dist/esm/core/components/props.js.map +1 -1
- package/dist/esm/core/css/index.js +2 -2
- package/dist/esm/core/css/styles.js +253 -1
- package/dist/esm/core/css/styles.js.map +1 -1
- package/dist/esm/core/index.js +2 -2
- package/dist/esm/index.js +3 -2
- package/dist/types/components/autocomplete/autocomplete.style.d.ts +1 -1
- package/dist/types/components/breadcrumb/breadcrumb.style.d.ts +1 -1
- package/dist/types/components/calendar/calendar.style.d.ts +2 -2
- package/dist/types/components/carousel/carousel.style.d.ts +2 -2
- package/dist/types/components/date-picker/date-picker.style.d.ts +1 -1
- package/dist/types/components/field/use-field-props.d.ts +1 -1
- package/dist/types/components/file-button/use-file-button.d.ts +2 -2
- package/dist/types/components/file-input/use-file-input.d.ts +2 -2
- package/dist/types/components/menu/menu.style.d.ts +2 -2
- package/dist/types/components/progress/use-progress.d.ts +6 -6
- package/dist/types/components/rating/rating.style.d.ts +2 -2
- package/dist/types/components/select/select.style.d.ts +1 -1
- package/dist/types/components/steps/steps.style.d.ts +1 -1
- package/dist/types/components/tabs/tabs.style.d.ts +1 -1
- package/dist/types/components/tree/tree.style.d.ts +1 -1
- package/dist/types/components/tree/use-tree.d.ts +2 -2
- package/dist/types/core/css/index.d.ts +2 -2
- package/dist/types/core/css/styles.d.ts +3 -1
- package/dist/types/core/index.d.ts +2 -2
- package/dist/types/hooks/use-clickable/index.d.ts +2 -2
- package/dist/types/index.d.ts +3 -3
- package/dist/types/providers/i18n-provider/i18n-provider.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AnySelector, AttributeProperty, AttributeProps, Attributes, ConditionProperty, ConditionProps, ConditionSelector, Conditions, GroupAttributeProperty, GroupAttributeProps, GroupAttributes, PeerAttributeProperty, PeerAttributeProps, PeerAttributes, PseudoClassProperty, PseudoClassProps, PseudoClasses, PseudoElementProperty, PseudoElementProps, PseudoElements, attributeProperties, attributeSelectors, attributes, conditionProperties, conditionSelectors, conditions, getCondition, groupAttributeProperties, groupAttributeSelectors, groupAttributes, peerAttributeProperties, peerAttributeSelectors, peerAttributes, pseudoClassProperties, pseudoClassSelectors, pseudoClasses, pseudoElementProperties, pseudoElementSelectors, pseudoElements } from "./conditions.js";
|
|
2
2
|
import { display } from "./display.js";
|
|
3
|
-
import { AnimationProperty, AspectRatioProperty, AtRuleStyleProperty, BlurProperty, BorderProperty, ColorProperty, DurationProperty, EasingProperty, FontProperty, GradientProperty, KeyframeProperty, PseudoStyleProperty, RadiusProperty, ShadowProperty, ShorthandStyleProperty, SizeProperty, SpaceProperty, StandardStyleProperty, StyleProperty, StyleProps, StyledStyleProperty, Styles, VariableLengthProperty, ZIndexProperty, animationProperties, aspectRatioProperties, atRuleStyles, blurProperties, borderProperties, colorProperties, durationProperties, easingProperties, fontProperties, gradientProperties, keyframeProperties, pseudoStyles, radiusProperties, shadowProperties, shorthandStyles, sizeProperties, spaceProperties, standardStyles, styleProperties, styledStyles, styles, variableLengthProperties, zIndexProperties } from "./styles.js";
|
|
3
|
+
import { AnimationProperty, AspectRatioProperty, AtRuleStyleProperty, BlurProperty, BorderProperty, ColorProperty, DurationProperty, EasingProperty, FontProperty, GradientProperty, KeyframeProperty, PseudoStyleProperty, RadiusProperty, ShadowProperty, ShorthandStyleProperty, SizeProperty, SpaceProperty, StandardStyleProperty, StyleProperty, StyleProps, StyledStyleProperty, Styles, VariableLengthProperty, VendorProperty, ZIndexProperty, animationProperties, aspectRatioProperties, atRuleStyles, blurProperties, borderProperties, colorProperties, durationProperties, easingProperties, fontProperties, gradientProperties, keyframeProperties, pseudoStyles, radiusProperties, shadowProperties, shorthandStyles, sizeProperties, spaceProperties, standardStyles, styleProperties, styledStyles, styles, variableLengthProperties, vendorProperties, zIndexProperties } from "./styles.js";
|
|
4
4
|
import { CSS, CSSAnimationObject, CSSAtRuleObject, CSSContainerObject, CSSFunction, CSSKeyframeObject, CSSMediaObject, CSSModifierObject, CSSObject, CSSObjectOrFunction, CSSPropObject, CSSProperties, CSSProps, CSSSlotObject, CSSVariable, CSSVariableProps, ColorModeArray, ColorModeValue, ConditionObject, ExtractStyleValue, ExtractStyleValueWithCondition, FunctionCSSInterpolation, ResponsiveObject, ResponsiveValue, ResponsiveWithConditionObject, StyleImportantValue, StyleValue, StyleValueWithCondition, Token } from "./index.types.js";
|
|
5
5
|
import { colorMix } from "./color-mix.js";
|
|
6
6
|
import { focusRingStyle } from "./focus-ring.js";
|
|
@@ -12,4 +12,4 @@ import { css, getStyle, transformConditionalValue } from "./css.js";
|
|
|
12
12
|
import { mergeCSS } from "./merge-css.js";
|
|
13
13
|
import { getCSS, useCSS } from "./use-css.js";
|
|
14
14
|
import { useInjectVarsIntoCss, useInjectVarsIntoProps } from "./use-inject-vars.js";
|
|
15
|
-
export { AnimationProperty, AnySelector, AspectRatioProperty, AtRuleStyleProperty, AttributeProperty, AttributeProps, Attributes, BlurProperty, BorderProperty, type CSS, type CSSAnimationObject, type CSSAtRuleObject, type CSSContainerObject, type CSSFunction, type CSSKeyframeObject, type CSSMediaObject, type CSSModifierObject, type CSSObject, type CSSObjectOrFunction, type CSSPropObject, type CSSProperties, type CSSProps, type CSSSlotObject, type CSSVariable, type CSSVariableProps, type ColorModeArray, type ColorModeValue, ColorProperty, type ConditionObject, ConditionProperty, ConditionProps, ConditionSelector, Conditions, DurationProperty, EasingProperty, type ExtractStyleValue, type ExtractStyleValueWithCondition, FontProperty, type FunctionCSSInterpolation, GradientProperty, GroupAttributeProperty, GroupAttributeProps, GroupAttributes, KeyframeProperty, PeerAttributeProperty, PeerAttributeProps, PeerAttributes, PseudoClassProperty, PseudoClassProps, PseudoClasses, PseudoElementProperty, PseudoElementProps, PseudoElements, PseudoStyleProperty, RadiusProperty, type ResponsiveObject, type ResponsiveValue, type ResponsiveWithConditionObject, ShadowProperty, ShorthandStyleProperty, SizeProperty, SpaceProperty, StandardStyleProperty, StyleConfig, StyleConfigs, type StyleImportantValue, StyleProperty, StyleProps, type StyleValue, type StyleValueWithCondition, StyledStyleProperty, Styles, type Token, Transforms, VariableLengthProperty, ZIndexProperty, animation, animationProperties, aspectRatioProperties, atRuleStyles, attributeProperties, attributeSelectors, attributes, blurProperties, borderProperties, colorMix, colorProperties, conditionProperties, conditionSelectors, conditions, css, display, durationProperties, easingProperties, focusRingStyle, fontProperties, getCSS, getCSSFunction, getCondition, getStyle, gradient, gradientProperties, groupAttributeProperties, groupAttributeSelectors, groupAttributes, injectKeyframes, isCSSFunction, isCSSToken, isCSSVar, keyframeProperties, keyframes, mergeCSS, peerAttributeProperties, peerAttributeSelectors, peerAttributes, pseudoClassProperties, pseudoClassSelectors, pseudoClasses, pseudoElementProperties, pseudoElementSelectors, pseudoElements, pseudoStyles, radiusProperties, shadowProperties, shorthandStyles, sizeProperties, spaceProperties, standardStyles, styleProperties, styledStyles, styles, tokenToValue, tokenToVar, transformConditionalValue, transforms, useCSS, useInjectVarsIntoCss, useInjectVarsIntoProps, varToValue, variableLengthProperties, zIndexProperties };
|
|
15
|
+
export { AnimationProperty, AnySelector, AspectRatioProperty, AtRuleStyleProperty, AttributeProperty, AttributeProps, Attributes, BlurProperty, BorderProperty, type CSS, type CSSAnimationObject, type CSSAtRuleObject, type CSSContainerObject, type CSSFunction, type CSSKeyframeObject, type CSSMediaObject, type CSSModifierObject, type CSSObject, type CSSObjectOrFunction, type CSSPropObject, type CSSProperties, type CSSProps, type CSSSlotObject, type CSSVariable, type CSSVariableProps, type ColorModeArray, type ColorModeValue, ColorProperty, type ConditionObject, ConditionProperty, ConditionProps, ConditionSelector, Conditions, DurationProperty, EasingProperty, type ExtractStyleValue, type ExtractStyleValueWithCondition, FontProperty, type FunctionCSSInterpolation, GradientProperty, GroupAttributeProperty, GroupAttributeProps, GroupAttributes, KeyframeProperty, PeerAttributeProperty, PeerAttributeProps, PeerAttributes, PseudoClassProperty, PseudoClassProps, PseudoClasses, PseudoElementProperty, PseudoElementProps, PseudoElements, PseudoStyleProperty, RadiusProperty, type ResponsiveObject, type ResponsiveValue, type ResponsiveWithConditionObject, ShadowProperty, ShorthandStyleProperty, SizeProperty, SpaceProperty, StandardStyleProperty, StyleConfig, StyleConfigs, type StyleImportantValue, StyleProperty, StyleProps, type StyleValue, type StyleValueWithCondition, StyledStyleProperty, Styles, type Token, Transforms, VariableLengthProperty, VendorProperty, ZIndexProperty, animation, animationProperties, aspectRatioProperties, atRuleStyles, attributeProperties, attributeSelectors, attributes, blurProperties, borderProperties, colorMix, colorProperties, conditionProperties, conditionSelectors, conditions, css, display, durationProperties, easingProperties, focusRingStyle, fontProperties, getCSS, getCSSFunction, getCondition, getStyle, gradient, gradientProperties, groupAttributeProperties, groupAttributeSelectors, groupAttributes, injectKeyframes, isCSSFunction, isCSSToken, isCSSVar, keyframeProperties, keyframes, mergeCSS, peerAttributeProperties, peerAttributeSelectors, peerAttributes, pseudoClassProperties, pseudoClassSelectors, pseudoClasses, pseudoElementProperties, pseudoElementSelectors, pseudoElements, pseudoStyles, radiusProperties, shadowProperties, shorthandStyles, sizeProperties, spaceProperties, standardStyles, styleProperties, styledStyles, styles, tokenToValue, tokenToVar, transformConditionalValue, transforms, useCSS, useInjectVarsIntoCss, useInjectVarsIntoProps, varToValue, variableLengthProperties, vendorProperties, zIndexProperties };
|
|
@@ -3927,6 +3927,8 @@ declare const styles: {
|
|
|
3927
3927
|
};
|
|
3928
3928
|
type StyleProperty = keyof typeof styles;
|
|
3929
3929
|
declare const styleProperties: StyleProperty[];
|
|
3930
|
+
type VendorProperty = (typeof vendorProperties)[number];
|
|
3931
|
+
declare const vendorProperties: readonly ["MozAnimationDelay", "MozAnimationDirection", "MozAnimationDuration", "MozAnimationFillMode", "MozAnimationIterationCount", "MozAnimationName", "MozAnimationPlayState", "MozAnimationTimingFunction", "MozAppearance", "MozBackfaceVisibility", "MozBinding", "MozBorderBottomColors", "MozBorderEndColor", "MozBorderEndStyle", "MozBorderEndWidth", "MozBorderLeftColors", "MozBorderRightColors", "MozBorderStartColor", "MozBorderStartStyle", "MozBorderTopColors", "MozBoxSizing", "MozColumnRuleColor", "MozColumnRuleStyle", "MozColumnRuleWidth", "MozColumnWidth", "MozContextProperties", "MozFontFeatureSettings", "MozFontLanguageOverride", "MozHyphens", "MozMarginEnd", "MozMarginStart", "MozOrient", "MozOsxFontSmoothing", "MozOutlineRadiusBottomleft", "MozOutlineRadiusBottomright", "MozOutlineRadiusTopleft", "MozOutlineRadiusTopright", "MozPaddingEnd", "MozPaddingStart", "MozPerspective", "MozPerspectiveOrigin", "MozStackSizing", "MozTabSize", "MozTextBlink", "MozTextSizeAdjust", "MozTransform", "MozTransformOrigin", "MozTransformStyle", "MozUserModify", "MozUserSelect", "MozWindowDragging", "MozWindowShadow", "msAccelerator", "msBlockProgression", "msContentZoomChaining", "msContentZoomLimitMax", "msContentZoomLimitMin", "msContentZoomSnapPoints", "msContentZoomSnapType", "msContentZooming", "msFilter", "msFlexDirection", "msFlexPositive", "msFlowFrom", "msFlowInto", "msGridColumns", "msGridRows", "msHighContrastAdjust", "msHyphenateLimitChars", "msHyphenateLimitLines", "msHyphenateLimitZone", "msHyphens", "msImeAlign", "msLineBreak", "msOrder", "msOverflowStyle", "msOverflowX", "msOverflowY", "msScrollChaining", "msScrollLimitXMax", "msScrollLimitXMin", "msScrollLimitYMax", "msScrollLimitYMin", "msScrollRails", "msScrollSnapPointsX", "msScrollSnapPointsY", "msScrollSnapType", "msScrollTranslation", "msScrollbar3dlightColor", "msScrollbarArrowColor", "msScrollbarBaseColor", "msScrollbarDarkshadowColor", "msScrollbarFaceColor", "msScrollbarHighlightColor", "msScrollbarShadowColor", "msScrollbarTrackColor", "msTextAutospace", "msTextCombineHorizontal", "msTextOverflow", "msTouchAction", "msTouchSelect", "msTransform", "msTransformOrigin", "msTransitionDelay", "msTransitionDuration", "msTransitionProperty", "msTransitionTimingFunction", "msUserSelect", "msWordBreak", "msWrapFlow", "msWrapMargin", "msWrapThrough", "msWritingMode", "WebkitAlignContent", "WebkitAlignItems", "WebkitAlignSelf", "WebkitAnimationDelay", "WebkitAnimationDirection", "WebkitAnimationDuration", "WebkitAnimationFillMode", "WebkitAnimationIterationCount", "WebkitAnimationName", "WebkitAnimationPlayState", "WebkitAnimationTimingFunction", "WebkitAppearance", "WebkitBackdropFilter", "WebkitBackfaceVisibility", "WebkitBackgroundClip", "WebkitBackgroundOrigin", "WebkitBackgroundSize", "WebkitBorderBeforeColor", "WebkitBorderBeforeStyle", "WebkitBorderBeforeWidth", "WebkitBorderBottomLeftRadius", "WebkitBorderBottomRightRadius", "WebkitBorderImageSlice", "WebkitBorderTopLeftRadius", "WebkitBorderTopRightRadius", "WebkitBoxDecorationBreak", "WebkitBoxReflect", "WebkitBoxShadow", "WebkitBoxSizing", "WebkitClipPath", "WebkitColumnCount", "WebkitColumnFill", "WebkitColumnRuleColor", "WebkitColumnRuleStyle", "WebkitColumnRuleWidth", "WebkitColumnSpan", "WebkitColumnWidth", "WebkitFilter", "WebkitFlexBasis", "WebkitFlexDirection", "WebkitFlexGrow", "WebkitFlexShrink", "WebkitFlexWrap", "WebkitFontFeatureSettings", "WebkitFontKerning", "WebkitFontSmoothing", "WebkitFontVariantLigatures", "WebkitHyphenateCharacter", "WebkitHyphens", "WebkitInitialLetter", "WebkitJustifyContent", "WebkitLineBreak", "WebkitLineClamp", "WebkitLogicalHeight", "WebkitLogicalWidth", "WebkitMarginEnd", "WebkitMarginStart", "WebkitMaskAttachment", "WebkitMaskBoxImageOutset", "WebkitMaskBoxImageRepeat", "WebkitMaskBoxImageSlice", "WebkitMaskBoxImageSource", "WebkitMaskBoxImageWidth", "WebkitMaskClip", "WebkitMaskComposite", "WebkitMaskImage", "WebkitMaskOrigin", "WebkitMaskPosition", "WebkitMaskPositionX", "WebkitMaskPositionY", "WebkitMaskRepeat", "WebkitMaskRepeatX", "WebkitMaskRepeatY", "WebkitMaskSize", "WebkitMaxInlineSize", "WebkitOrder", "WebkitOverflowScrolling", "WebkitPaddingEnd", "WebkitPaddingStart", "WebkitPerspective", "WebkitPerspectiveOrigin", "WebkitPrintColorAdjust", "WebkitRubyPosition", "WebkitScrollSnapType", "WebkitShapeMargin", "WebkitTapHighlightColor", "WebkitTextCombine", "WebkitTextDecorationColor", "WebkitTextDecorationLine", "WebkitTextDecorationSkip", "WebkitTextDecorationStyle", "WebkitTextEmphasisColor", "WebkitTextEmphasisPosition", "WebkitTextEmphasisStyle", "WebkitTextFillColor", "WebkitTextOrientation", "WebkitTextSizeAdjust", "WebkitTextStrokeColor", "WebkitTextStrokeWidth", "WebkitTextUnderlinePosition", "WebkitTouchCallout", "WebkitTransform", "WebkitTransformOrigin", "WebkitTransformStyle", "WebkitTransitionDelay", "WebkitTransitionDuration", "WebkitTransitionProperty", "WebkitTransitionTimingFunction", "WebkitUserModify", "WebkitUserSelect", "WebkitWritingMode", "MozAnimation", "MozBorderImage", "MozColumnRule", "MozColumns", "MozOutlineRadius", "MozTransition", "msContentZoomLimit", "msContentZoomSnap", "msFlex", "msScrollLimit", "msScrollSnapX", "msScrollSnapY", "msTransition", "WebkitAnimation", "WebkitBorderBefore", "WebkitBorderImage", "WebkitBorderRadius", "WebkitColumnRule", "WebkitColumns", "WebkitFlex", "WebkitFlexFlow", "WebkitMask", "WebkitMaskBoxImage", "WebkitTextEmphasis", "WebkitTextStroke", "WebkitTransition"];
|
|
3930
3932
|
type VariableLengthProperty = (typeof variableLengthProperties)[number];
|
|
3931
3933
|
declare const variableLengthProperties: readonly ["_container", "_media", "_supports"];
|
|
3932
3934
|
type SizeProperty = (typeof sizeProperties)[number];
|
|
@@ -12699,5 +12701,5 @@ interface StyleProps {
|
|
|
12699
12701
|
zoom?: StyleValueWithCondition<AnyString | CSS.Property.Zoom>;
|
|
12700
12702
|
}
|
|
12701
12703
|
//#endregion
|
|
12702
|
-
export { AnimationProperty, AspectRatioProperty, AtRuleStyleProperty, BlurProperty, BorderProperty, ColorProperty, DurationProperty, EasingProperty, FontProperty, GradientProperty, KeyframeProperty, PseudoStyleProperty, RadiusProperty, ShadowProperty, ShorthandStyleProperty, SizeProperty, SpaceProperty, StandardStyleProperty, StyleProperty, StyleProps, StyledStyleProperty, Styles, VariableLengthProperty, ZIndexProperty, animationProperties, aspectRatioProperties, atRuleStyles, blurProperties, borderProperties, colorProperties, durationProperties, easingProperties, fontProperties, gradientProperties, keyframeProperties, pseudoStyles, radiusProperties, shadowProperties, shorthandStyles, sizeProperties, spaceProperties, standardStyles, styleProperties, styledStyles, styles, variableLengthProperties, zIndexProperties };
|
|
12704
|
+
export { AnimationProperty, AspectRatioProperty, AtRuleStyleProperty, BlurProperty, BorderProperty, ColorProperty, DurationProperty, EasingProperty, FontProperty, GradientProperty, KeyframeProperty, PseudoStyleProperty, RadiusProperty, ShadowProperty, ShorthandStyleProperty, SizeProperty, SpaceProperty, StandardStyleProperty, StyleProperty, StyleProps, StyledStyleProperty, Styles, VariableLengthProperty, VendorProperty, ZIndexProperty, animationProperties, aspectRatioProperties, atRuleStyles, blurProperties, borderProperties, colorProperties, durationProperties, easingProperties, fontProperties, gradientProperties, keyframeProperties, pseudoStyles, radiusProperties, shadowProperties, shorthandStyles, sizeProperties, spaceProperties, standardStyles, styleProperties, styledStyles, styles, variableLengthProperties, vendorProperties, zIndexProperties };
|
|
12703
12705
|
//# sourceMappingURL=styles.d.ts.map
|
|
@@ -17,7 +17,7 @@ import { UseSystemColorModeProps, useSystemColorMode } from "./system/use-system
|
|
|
17
17
|
import { CreateVars, createVars, getColorSchemeVar, getVar, getVarName, injectVars, isColorScheme, mergeVars, transformInterpolation, varAttr } from "./system/var.js";
|
|
18
18
|
import { AnySelector, AttributeProperty, AttributeProps, Attributes, ConditionProperty, ConditionProps, ConditionSelector, Conditions, GroupAttributeProperty, GroupAttributeProps, GroupAttributes, PeerAttributeProperty, PeerAttributeProps, PeerAttributes, PseudoClassProperty, PseudoClassProps, PseudoClasses, PseudoElementProperty, PseudoElementProps, PseudoElements, attributeProperties, attributeSelectors, attributes, conditionProperties, conditionSelectors, conditions, getCondition, groupAttributeProperties, groupAttributeSelectors, groupAttributes, peerAttributeProperties, peerAttributeSelectors, peerAttributes, pseudoClassProperties, pseudoClassSelectors, pseudoClasses, pseudoElementProperties, pseudoElementSelectors, pseudoElements } from "./css/conditions.js";
|
|
19
19
|
import { display } from "./css/display.js";
|
|
20
|
-
import { AnimationProperty, AspectRatioProperty, AtRuleStyleProperty, BlurProperty, BorderProperty, ColorProperty, DurationProperty, EasingProperty, FontProperty, GradientProperty, KeyframeProperty, PseudoStyleProperty, RadiusProperty, ShadowProperty, ShorthandStyleProperty, SizeProperty, SpaceProperty, StandardStyleProperty, StyleProperty, StyleProps, StyledStyleProperty, Styles, VariableLengthProperty, ZIndexProperty, animationProperties, aspectRatioProperties, atRuleStyles, blurProperties, borderProperties, colorProperties, durationProperties, easingProperties, fontProperties, gradientProperties, keyframeProperties, pseudoStyles, radiusProperties, shadowProperties, shorthandStyles, sizeProperties, spaceProperties, standardStyles, styleProperties, styledStyles, styles, variableLengthProperties, zIndexProperties } from "./css/styles.js";
|
|
20
|
+
import { AnimationProperty, AspectRatioProperty, AtRuleStyleProperty, BlurProperty, BorderProperty, ColorProperty, DurationProperty, EasingProperty, FontProperty, GradientProperty, KeyframeProperty, PseudoStyleProperty, RadiusProperty, ShadowProperty, ShorthandStyleProperty, SizeProperty, SpaceProperty, StandardStyleProperty, StyleProperty, StyleProps, StyledStyleProperty, Styles, VariableLengthProperty, VendorProperty, ZIndexProperty, animationProperties, aspectRatioProperties, atRuleStyles, blurProperties, borderProperties, colorProperties, durationProperties, easingProperties, fontProperties, gradientProperties, keyframeProperties, pseudoStyles, radiusProperties, shadowProperties, shorthandStyles, sizeProperties, spaceProperties, standardStyles, styleProperties, styledStyles, styles, variableLengthProperties, vendorProperties, zIndexProperties } from "./css/styles.js";
|
|
21
21
|
import { CSS, CSSAnimationObject, CSSAtRuleObject, CSSContainerObject, CSSFunction, CSSKeyframeObject, CSSMediaObject, CSSModifierObject, CSSObject, CSSObjectOrFunction, CSSPropObject, CSSProperties, CSSProps, CSSSlotObject, CSSVariable, CSSVariableProps, ColorModeArray, ColorModeValue, ConditionObject, ExtractStyleValue, ExtractStyleValueWithCondition, FunctionCSSInterpolation, ResponsiveObject, ResponsiveValue, ResponsiveWithConditionObject, StyleImportantValue, StyleValue, StyleValueWithCondition, Token } from "./css/index.types.js";
|
|
22
22
|
import { colorMix } from "./css/color-mix.js";
|
|
23
23
|
import { focusRingStyle } from "./css/focus-ring.js";
|
|
@@ -35,4 +35,4 @@ import { UseComponentSlotStyleOptions, UseComponentStyleOptions, getSlotClassNam
|
|
|
35
35
|
import { ShouldForwardProp, chainProps, createShouldForwardProp, cssProps, extractProps, isEqualProps, mergeProps, useExtractProps, useSplitProps } from "./components/props.js";
|
|
36
36
|
import { getClassName, getDisplayName } from "./components/utils.js";
|
|
37
37
|
import { COLOR_MODE_STORAGE_KEY, DEFAULT_DIRECTION, DEFAULT_LAYERS, DEFAULT_LOCALE, DEFAULT_VAR_PREFIX, THEME_SCHEME_STORAGE_KEY } from "./constant.js";
|
|
38
|
-
export { AnimationProperty, AnySelector, type As, AspectRatioProperty, AtRuleStyleProperty, AttributeProperty, AttributeProps, Attributes, BlurProperty, BorderProperty, type Breakpoint, type BreakpointConfig, type BreakpointDirection, type BreakpointIdentifier, Breakpoints, COLOR_MODE_STORAGE_KEY, type CSS, type CSSAnimationObject, type CSSAtRuleObject, type CSSContainerObject, type CSSFunction, type CSSKeyframeObject, type CSSMap, type CSSMediaObject, type CSSModifierObject, type CSSObject, type CSSObjectOrFunction, type CSSPropObject, type CSSProperties, type CSSProps, type CSSSlotObject, type CSSVariable, type CSSVariableProps, type ChangeThemeScheme, type ColorMode, type ColorModeArray, ColorModeContext, ColorModeProvider, ColorModeProviderProps, ColorModeScript, type ColorModeValue, type ColorModeWithSystem, ColorProperty, type ColorScheme, ColorSchemeContext, type Component, type ComponentArgs, type ComponentCompound, type ComponentDefaultProps, ComponentOptions, ComponentSlot, ComponentSlotName, type ComponentSlotStyle, type ComponentStyle, ComponentWithContextOptions, type ConditionObject, ConditionProperty, ConditionProps, ConditionSelector, Conditions, CreateVars, type CustomTheme, type CustomThemeTokens, DEFAULT_DIRECTION, DEFAULT_LAYERS, DEFAULT_LOCALE, DEFAULT_VAR_PREFIX, type DOMElement, type DefaultTheme, DefineComponentSlotStyle, DefineComponentStyle, DefineComponentStyleModifiers, DefineComponentStyleProps, DefineComponentStyleSlotModifiers, DefineComponentStyleSlotProps, type DefineThemeAnimationTokens, type DefineThemeBreakpointTokens, type DefineThemeColorSchemeSemanticTokens, type DefineThemeColorSchemeValue, type DefineThemeColorSemanticToken, type DefineThemeColorSemanticTokens, type DefineThemeColorSemanticValue, type DefineThemeKeyframeTokens, type DefineThemeSchemeTokens, type DefineThemeSemanticTokens, type DefineThemeTokens, type DefineThemeValue, type Direction, DurationProperty, EasingProperty, Environment, EnvironmentProvider, EnvironmentProviderProps, type ExtractStyleValue, type ExtractStyleValueWithCondition, FontProperty, type FunctionCSSInterpolation, type GeneratedThemeTokens, type GenericsComponent, GlobalStyles, GradientProperty, GroupAttributeProperty, GroupAttributeProps, GroupAttributes, type HTMLElementProps, type HTMLProps, type HTMLRefAttributes, type HTMLStyledProps, type HTMLStyledPropsWithoutAs, type HTMLStyledPropsWithoutRef, InitialProps, type KeyframeIdent, KeyframeProperty, type LayerScheme, Layers, type LayersConfig, type LoadingConfig, type LoadingMethod, type LoadingScheme, type NoticeCloseStrategy, type NoticeConfig, type NoticePlacement, type OmitProps, type Orientation, PeerAttributeProperty, PeerAttributeProps, PeerAttributes, type Placement, type PropGetter, PseudoClassProperty, PseudoClassProps, PseudoClasses, PseudoElementProperty, PseudoElementProps, PseudoElements, PseudoStyleProperty, RadiusProperty, type RequiredPropGetter, type ResponsiveObject, type ResponsiveValue, type ResponsiveWithConditionObject, RootNode, ShadowProperty, ShorthandStyleProperty, ShouldForwardProp, type SimpleDirection, type SimplePlacement, SizeProperty, type SnacksConfig, SpaceProperty, StandardStyleProperty, Storage, StorageManager, StorageScriptProps, StyleConfig, StyleConfigs, type StyleImportantValue, StyleProperty, StyleProps, type StyleValue, type StyleValueWithCondition, type StyledComponent, StyledOptions, type StyledProps, StyledStyleProperty, type StyledTheme, Styles, SuperProps, SuperWithoutThemeProps, type System, SystemProvider, SystemProviderProps, type SystemUtils, THEME_SCHEME_STORAGE_KEY, type TextDirection, type Theme, type ThemeComponentProps, type ThemeConfig, type ThemePath, type ThemeProps, ThemeProvider, ThemeProviderProps, type ThemeScheme, ThemeSchemeScript, ThemeToken, type ThemeTokens, type Token, Transforms, type UsageTheme, type UsageThemeTokens, UseComponentPropsOptions, UseComponentSlotStyleOptions, UseComponentStyleOptions, UseSystemColorModeProps, VariableAnimationValue, VariableColorModeValue, VariableKeyframeValue, VariableLengthProperty, VariableResponsiveValue, VariableTokens, VariableValue, type WithoutAs, type WithoutRef, type WithoutThemeProps, ZIndexProperty, animation, animationProperties, aspectRatioProperties, atRuleStyles, attributeProperties, attributeSelectors, attributes, blurProperties, borderProperties, chainProps, colorMix, colorProperties, conditionProperties, conditionSelectors, conditions, createBreakpoints, createComponent, createLayers, createShouldForwardProp, createSlotComponent, createStorageManager, createStyled, createSystem, createVars, css, cssProps, defaultEnvironment, defaultLayers, defaultSystem, defineComponentSlotStyle, defineComponentStyle, defineConfig, defineSemanticTokens, defineStyles, defineTheme, defineThemeSchemes, defineTokens, display, durationProperties, easingProperties, extractProps, focusRingStyle, fontProperties, getCSS, getCSSFunction, getClassName, getColorModeValue, getColorSchemeVar, getCondition, getDisplayName, getPreventTransition, getSlotClassName, getStorageScript, getStyle, getVar, getVarName, gradient, gradientProperties, groupAttributeProperties, groupAttributeSelectors, groupAttributes, injectKeyframes, injectVars, isCSSFunction, isCSSToken, isCSSVar, isColorScheme, isEqualProps, keyframeProperties, keyframes, mergeCSS, mergeProps, mergeSlotCSS, mergeVars, peerAttributeProperties, peerAttributeSelectors, peerAttributes, pseudoClassProperties, pseudoClassSelectors, pseudoClasses, pseudoElementProperties, pseudoElementSelectors, pseudoElements, pseudoStyles, radiusProperties, shadowProperties, shorthandStyles, sizeProperties, spaceProperties, standardStyles, styleProperties, styled, styledStyles, styles, tokenToValue, tokenToVar, transformConditionalValue, transformInterpolation, transforms, useCSS, useColorMode, useColorModeValue, useColorSchemeContext, useComponentSlotStyle, useComponentStyle, useEnvironment, useExtractProps, useInjectVarsIntoCss, useInjectVarsIntoProps, useSplitProps, useSystem, useSystemColorMode, useTheme, varAttr, varToValue, variableLengthProperties, zIndexProperties };
|
|
38
|
+
export { AnimationProperty, AnySelector, type As, AspectRatioProperty, AtRuleStyleProperty, AttributeProperty, AttributeProps, Attributes, BlurProperty, BorderProperty, type Breakpoint, type BreakpointConfig, type BreakpointDirection, type BreakpointIdentifier, Breakpoints, COLOR_MODE_STORAGE_KEY, type CSS, type CSSAnimationObject, type CSSAtRuleObject, type CSSContainerObject, type CSSFunction, type CSSKeyframeObject, type CSSMap, type CSSMediaObject, type CSSModifierObject, type CSSObject, type CSSObjectOrFunction, type CSSPropObject, type CSSProperties, type CSSProps, type CSSSlotObject, type CSSVariable, type CSSVariableProps, type ChangeThemeScheme, type ColorMode, type ColorModeArray, ColorModeContext, ColorModeProvider, ColorModeProviderProps, ColorModeScript, type ColorModeValue, type ColorModeWithSystem, ColorProperty, type ColorScheme, ColorSchemeContext, type Component, type ComponentArgs, type ComponentCompound, type ComponentDefaultProps, ComponentOptions, ComponentSlot, ComponentSlotName, type ComponentSlotStyle, type ComponentStyle, ComponentWithContextOptions, type ConditionObject, ConditionProperty, ConditionProps, ConditionSelector, Conditions, CreateVars, type CustomTheme, type CustomThemeTokens, DEFAULT_DIRECTION, DEFAULT_LAYERS, DEFAULT_LOCALE, DEFAULT_VAR_PREFIX, type DOMElement, type DefaultTheme, DefineComponentSlotStyle, DefineComponentStyle, DefineComponentStyleModifiers, DefineComponentStyleProps, DefineComponentStyleSlotModifiers, DefineComponentStyleSlotProps, type DefineThemeAnimationTokens, type DefineThemeBreakpointTokens, type DefineThemeColorSchemeSemanticTokens, type DefineThemeColorSchemeValue, type DefineThemeColorSemanticToken, type DefineThemeColorSemanticTokens, type DefineThemeColorSemanticValue, type DefineThemeKeyframeTokens, type DefineThemeSchemeTokens, type DefineThemeSemanticTokens, type DefineThemeTokens, type DefineThemeValue, type Direction, DurationProperty, EasingProperty, Environment, EnvironmentProvider, EnvironmentProviderProps, type ExtractStyleValue, type ExtractStyleValueWithCondition, FontProperty, type FunctionCSSInterpolation, type GeneratedThemeTokens, type GenericsComponent, GlobalStyles, GradientProperty, GroupAttributeProperty, GroupAttributeProps, GroupAttributes, type HTMLElementProps, type HTMLProps, type HTMLRefAttributes, type HTMLStyledProps, type HTMLStyledPropsWithoutAs, type HTMLStyledPropsWithoutRef, InitialProps, type KeyframeIdent, KeyframeProperty, type LayerScheme, Layers, type LayersConfig, type LoadingConfig, type LoadingMethod, type LoadingScheme, type NoticeCloseStrategy, type NoticeConfig, type NoticePlacement, type OmitProps, type Orientation, PeerAttributeProperty, PeerAttributeProps, PeerAttributes, type Placement, type PropGetter, PseudoClassProperty, PseudoClassProps, PseudoClasses, PseudoElementProperty, PseudoElementProps, PseudoElements, PseudoStyleProperty, RadiusProperty, type RequiredPropGetter, type ResponsiveObject, type ResponsiveValue, type ResponsiveWithConditionObject, RootNode, ShadowProperty, ShorthandStyleProperty, ShouldForwardProp, type SimpleDirection, type SimplePlacement, SizeProperty, type SnacksConfig, SpaceProperty, StandardStyleProperty, Storage, StorageManager, StorageScriptProps, StyleConfig, StyleConfigs, type StyleImportantValue, StyleProperty, StyleProps, type StyleValue, type StyleValueWithCondition, type StyledComponent, StyledOptions, type StyledProps, StyledStyleProperty, type StyledTheme, Styles, SuperProps, SuperWithoutThemeProps, type System, SystemProvider, SystemProviderProps, type SystemUtils, THEME_SCHEME_STORAGE_KEY, type TextDirection, type Theme, type ThemeComponentProps, type ThemeConfig, type ThemePath, type ThemeProps, ThemeProvider, ThemeProviderProps, type ThemeScheme, ThemeSchemeScript, ThemeToken, type ThemeTokens, type Token, Transforms, type UsageTheme, type UsageThemeTokens, UseComponentPropsOptions, UseComponentSlotStyleOptions, UseComponentStyleOptions, UseSystemColorModeProps, VariableAnimationValue, VariableColorModeValue, VariableKeyframeValue, VariableLengthProperty, VariableResponsiveValue, VariableTokens, VariableValue, VendorProperty, type WithoutAs, type WithoutRef, type WithoutThemeProps, ZIndexProperty, animation, animationProperties, aspectRatioProperties, atRuleStyles, attributeProperties, attributeSelectors, attributes, blurProperties, borderProperties, chainProps, colorMix, colorProperties, conditionProperties, conditionSelectors, conditions, createBreakpoints, createComponent, createLayers, createShouldForwardProp, createSlotComponent, createStorageManager, createStyled, createSystem, createVars, css, cssProps, defaultEnvironment, defaultLayers, defaultSystem, defineComponentSlotStyle, defineComponentStyle, defineConfig, defineSemanticTokens, defineStyles, defineTheme, defineThemeSchemes, defineTokens, display, durationProperties, easingProperties, extractProps, focusRingStyle, fontProperties, getCSS, getCSSFunction, getClassName, getColorModeValue, getColorSchemeVar, getCondition, getDisplayName, getPreventTransition, getSlotClassName, getStorageScript, getStyle, getVar, getVarName, gradient, gradientProperties, groupAttributeProperties, groupAttributeSelectors, groupAttributes, injectKeyframes, injectVars, isCSSFunction, isCSSToken, isCSSVar, isColorScheme, isEqualProps, keyframeProperties, keyframes, mergeCSS, mergeProps, mergeSlotCSS, mergeVars, peerAttributeProperties, peerAttributeSelectors, peerAttributes, pseudoClassProperties, pseudoClassSelectors, pseudoClasses, pseudoElementProperties, pseudoElementSelectors, pseudoElements, pseudoStyles, radiusProperties, shadowProperties, shorthandStyles, sizeProperties, spaceProperties, standardStyles, styleProperties, styled, styledStyles, styles, tokenToValue, tokenToVar, transformConditionalValue, transformInterpolation, transforms, useCSS, useColorMode, useColorModeValue, useColorSchemeContext, useComponentSlotStyle, useComponentStyle, useEnvironment, useExtractProps, useInjectVarsIntoCss, useInjectVarsIntoProps, useSplitProps, useSystem, useSystemColorMode, useTheme, varAttr, varToValue, variableLengthProperties, vendorProperties, zIndexProperties };
|
|
@@ -63,7 +63,7 @@ declare const useClickable: <Y extends HTMLElement = HTMLElement, M extends Prop
|
|
|
63
63
|
onMouseOver: onMouseOverProp,
|
|
64
64
|
onMouseUp: onMouseUpProp,
|
|
65
65
|
...props
|
|
66
|
-
}?: UseClickableProps<Y, M>) => (Omit<UseClickableProps<Y, M>, "disabled" | "ref" | "tabIndex" | "onKeyDown" | "onKeyUp" | "onClick" | "onMouseDown" | "onMouseLeave" | "onMouseOver" | "onMouseUp" | "
|
|
66
|
+
}?: UseClickableProps<Y, M>) => (Omit<UseClickableProps<Y, M>, "disabled" | "ref" | "tabIndex" | "onKeyDown" | "onKeyUp" | "onClick" | "onMouseDown" | "onMouseLeave" | "onMouseOver" | "onMouseUp" | "focusable" | "clickOnEnter" | "clickOnSpace" | "disableTouchBehavior" | "focusOnClick"> & {
|
|
67
67
|
ref: (node: any) => void;
|
|
68
68
|
type: "button";
|
|
69
69
|
"aria-disabled": boolean | undefined;
|
|
@@ -75,7 +75,7 @@ declare const useClickable: <Y extends HTMLElement = HTMLElement, M extends Prop
|
|
|
75
75
|
onMouseLeave: import("react").MouseEventHandler<Y> | undefined;
|
|
76
76
|
onMouseOver: import("react").MouseEventHandler<Y> | undefined;
|
|
77
77
|
onMouseUp: import("react").MouseEventHandler<Y> | undefined;
|
|
78
|
-
}) | (Omit<UseClickableProps<Y, M>, "disabled" | "ref" | "tabIndex" | "onKeyDown" | "onKeyUp" | "onClick" | "onMouseDown" | "onMouseLeave" | "onMouseOver" | "onMouseUp" | "
|
|
78
|
+
}) | (Omit<UseClickableProps<Y, M>, "disabled" | "ref" | "tabIndex" | "onKeyDown" | "onKeyUp" | "onClick" | "onMouseDown" | "onMouseLeave" | "onMouseOver" | "onMouseUp" | "focusable" | "clickOnEnter" | "clickOnSpace" | "disableTouchBehavior" | "focusOnClick"> & {
|
|
79
79
|
ref: (node: any) => void;
|
|
80
80
|
"aria-disabled": "true" | undefined;
|
|
81
81
|
"data-active": string | undefined;
|