@kuma-ui/system
Version:
🐻 Kuma UI is a utility-first, zero-runtime CSS-in-JS library that offers an outstanding developer experience and optimized performance.
34 lines (31 loc) • 1.62 kB
TypeScript
import { ThemeSystemType, ResponsiveStyle } from './types.js';
export { AddProperty, CSSProperties, CSSProperty, CSSValue, ExcludeHyphen, RemoveColon, SystemStyle, UtilityCSSMapping } from './types.js';
export { AnimationProps } from './props/animation.js';
export { SpaceProps } from './props/space.js';
export { TypographyProps } from './props/typography.js';
export { LayoutProps } from './props/layout.js';
export { ColorProps } from './props/color.js';
export { FlexProps } from './props/flex.js';
export { BorderProps } from './props/border.js';
export { OutlineProps } from './props/outline.js';
export { PositionProps } from './props/position.js';
export { ShadowProps } from './props/shadow.js';
import { StyledProps } from './consumeStyleProps.js';
export { PseudoProps, isPseudoProps, normalizePseudo } from './pseudo.js';
export { GridProps } from './props/grid.js';
export { ListProps } from './props/list.js';
export { EffectProps } from './props/effect.js';
export { TextProps } from './props/text.js';
export { FontProps } from './props/font.js';
export { MaskProps } from './props/mask.js';
export { ColumnProps } from './props/column.js';
export { BackgroundProps } from './props/background.js';
export { FilterProps } from './props/filter.js';
export { StyledKeyType, isStyledProp } from './keys.js';
export { StyleGenerator } from './generator.js';
export { toCssUnit } from './toCSS.js';
import 'csstype';
import '@kuma-ui/sheet';
import './props/contain.js';
declare const all: (props: StyledProps<ThemeSystemType>) => ResponsiveStyle;
export { ResponsiveStyle, StyledProps, ThemeSystemType, all };