@vaneui/ui 0.9.0-alpha.20260106192523.680d7a3 → 0.9.0-alpha.20260107153112.7883b1f
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/components/ui/badge.d.ts +3 -3
- package/dist/components/ui/badge.d.ts.map +1 -1
- package/dist/components/ui/button.d.ts +3 -3
- package/dist/components/ui/button.d.ts.map +1 -1
- package/dist/components/ui/card.d.ts +3 -3
- package/dist/components/ui/card.d.ts.map +1 -1
- package/dist/components/ui/chip.d.ts +3 -3
- package/dist/components/ui/chip.d.ts.map +1 -1
- package/dist/components/ui/classes/appearanceClasses.d.ts +7 -4
- package/dist/components/ui/classes/appearanceClasses.d.ts.map +1 -1
- package/dist/components/ui/code.d.ts +3 -3
- package/dist/components/ui/code.d.ts.map +1 -1
- package/dist/components/ui/col.d.ts +3 -3
- package/dist/components/ui/col.d.ts.map +1 -1
- package/dist/components/ui/container.d.ts +3 -3
- package/dist/components/ui/container.d.ts.map +1 -1
- package/dist/components/ui/grid.d.ts +7 -7
- package/dist/components/ui/grid.d.ts.map +1 -1
- package/dist/components/ui/input.d.ts +3 -3
- package/dist/components/ui/input.d.ts.map +1 -1
- package/dist/components/ui/props/keys.d.ts +33 -32
- package/dist/components/ui/props/keys.d.ts.map +1 -1
- package/dist/components/ui/props/propDescriptions.d.ts +1 -1
- package/dist/components/ui/props/propDescriptions.d.ts.map +1 -1
- package/dist/components/ui/props/props.d.ts +2 -0
- package/dist/components/ui/props/props.d.ts.map +1 -1
- package/dist/components/ui/props/responsiveProps.d.ts +8 -0
- package/dist/components/ui/props/responsiveProps.d.ts.map +1 -0
- package/dist/components/ui/props/transparentProps.d.ts +8 -0
- package/dist/components/ui/props/transparentProps.d.ts.map +1 -0
- package/dist/components/ui/row.d.ts +3 -3
- package/dist/components/ui/row.d.ts.map +1 -1
- package/dist/components/ui/section.d.ts +3 -3
- package/dist/components/ui/section.d.ts.map +1 -1
- package/dist/components/ui/stack.d.ts +3 -3
- package/dist/components/ui/stack.d.ts.map +1 -1
- package/dist/components/ui/theme/appearance/simpleConsumerTheme.d.ts.map +1 -1
- package/dist/components/ui/theme/size/fontSizeTheme.d.ts +7 -5
- package/dist/components/ui/theme/size/fontSizeTheme.d.ts.map +1 -1
- package/dist/components/ui/theme/size/gapTheme.d.ts +6 -4
- package/dist/components/ui/theme/size/gapTheme.d.ts.map +1 -1
- package/dist/components/ui/theme/size/pxTheme.d.ts +6 -4
- package/dist/components/ui/theme/size/pxTheme.d.ts.map +1 -1
- package/dist/components/ui/theme/size/pyTheme.d.ts +6 -4
- package/dist/components/ui/theme/size/pyTheme.d.ts.map +1 -1
- package/dist/components/ui/theme/typographyTheme.d.ts +2 -1
- package/dist/components/ui/theme/typographyTheme.d.ts.map +1 -1
- package/dist/components/ui/typography.d.ts +7 -7
- package/dist/components/ui/typography.d.ts.map +1 -1
- package/dist/index.esm.js +105 -40
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +107 -39
- package/dist/index.js.map +1 -1
- package/dist/ui.css +52 -15
- package/dist/vars.css +4 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, BorderProps, ShadowProps, RingProps, FocusVisibleProps, ShapeProps, FontWeightProps, FontStyleProps, TextDecorationProps, TextTransformProps, FontFamilyProps, TextAlignProps, PaddingProps, VariantProps } from './props';
|
|
2
|
+
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, BorderProps, ShadowProps, RingProps, FocusVisibleProps, ShapeProps, FontWeightProps, FontStyleProps, TextDecorationProps, TextTransformProps, FontFamilyProps, TextAlignProps, PaddingProps, VariantProps, TransparentProps, ResponsiveProps } from './props';
|
|
3
3
|
/** Badge component props */
|
|
4
|
-
export type BadgeProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, 'className' | 'children'> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'className' | 'children'>> & {
|
|
4
|
+
export type BadgeProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLSpanElement>, 'className' | 'children'> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'className' | 'children'>> & {
|
|
5
5
|
/** URL to navigate to (renders component as anchor tag) */
|
|
6
6
|
href?: string;
|
|
7
7
|
/** Custom HTML tag or React component to render as */
|
|
@@ -40,7 +40,7 @@ export type BadgeProps = BaseProps & SizeProps & HideProps & ItemsProps & Justif
|
|
|
40
40
|
*
|
|
41
41
|
* @see {@link BadgeProps} for all available props
|
|
42
42
|
*/
|
|
43
|
-
export declare const Badge: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
43
|
+
export declare const Badge: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
44
44
|
/** URL to navigate to (renders component as anchor tag) */
|
|
45
45
|
href?: string;
|
|
46
46
|
/** Custom HTML tag or React component to render as */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"badge.d.ts","sourceRoot":"","sources":["../../../src/components/ui/badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,iBAAiB,EACjB,UAAU,EACV,eAAe,EACf,cAAc,EACd,mBAAmB,EACnB,kBAAkB,EAClB,eAAe,EACf,cAAc,EACd,YAAY,EACZ,YAAY,
|
|
1
|
+
{"version":3,"file":"badge.d.ts","sourceRoot":"","sources":["../../../src/components/ui/badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,iBAAiB,EACjB,UAAU,EACV,eAAe,EACf,cAAc,EACd,mBAAmB,EACnB,kBAAkB,EAClB,eAAe,EACf,cAAc,EACd,YAAY,EACZ,YAAY,EACZ,gBAAgB,EAChB,eAAe,EAChB,MAAM,SAAS,CAAC;AAIjB,4BAA4B;AAC5B,MAAM,MAAM,UAAU,GAAG,SAAS,GAChC,SAAS,GACT,SAAS,GACT,UAAU,GACV,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,SAAS,GACT,QAAQ,GACR,kBAAkB,GAClB,YAAY,GACZ,eAAe,GACf,WAAW,GACX,WAAW,GACX,SAAS,GACT,iBAAiB,GACjB,UAAU,GACV,eAAe,GACf,cAAc,GACd,mBAAmB,GACnB,kBAAkB,GAClB,eAAe,GACf,cAAc,GACd,YAAY,GACZ,YAAY,GACZ,gBAAgB,GACd,eAAe,GACjB,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,eAAe,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,GACrE,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,CAAC,GAAG;IACzF,2DAA2D;IAC3D,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,sDAAsD;IACtD,GAAG,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CACzB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,eAAO,MAAM,KAAK;IAvChB,2DAA2D;WACpD,MAAM;IACb,sDAAsD;UAChD,KAAK,CAAC,WAAW;yCAyCxB,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, BorderProps, ShadowProps, RingProps, FocusVisibleProps, ShapeProps, FontWeightProps, FontStyleProps, TextDecorationProps, TextTransformProps, FontFamilyProps, TextAlignProps, PaddingProps, VariantProps } from './props';
|
|
2
|
+
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, BorderProps, ShadowProps, RingProps, FocusVisibleProps, ShapeProps, FontWeightProps, FontStyleProps, TextDecorationProps, TextTransformProps, FontFamilyProps, TextAlignProps, PaddingProps, VariantProps, TransparentProps, ResponsiveProps } from './props';
|
|
3
3
|
/**
|
|
4
4
|
* Button component props
|
|
5
5
|
*/
|
|
6
|
-
export type ButtonProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'className' | 'children'> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'className' | 'children'>> & {
|
|
6
|
+
export type ButtonProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'className' | 'children'> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'className' | 'children'>> & {
|
|
7
7
|
/** URL to navigate to (renders component as anchor tag) */
|
|
8
8
|
href?: string;
|
|
9
9
|
/** Custom HTML tag or React component to render as */
|
|
@@ -42,7 +42,7 @@ export type ButtonProps = BaseProps & SizeProps & HideProps & ItemsProps & Justi
|
|
|
42
42
|
*
|
|
43
43
|
* @see {@link ButtonProps} for all available props
|
|
44
44
|
*/
|
|
45
|
-
export declare const Button: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
45
|
+
export declare const Button: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
46
46
|
/** URL to navigate to (renders component as anchor tag) */
|
|
47
47
|
href?: string;
|
|
48
48
|
/** Custom HTML tag or React component to render as */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/components/ui/button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,iBAAiB,EACjB,UAAU,EACV,eAAe,EACf,cAAc,EACd,mBAAmB,EACnB,kBAAkB,EAClB,eAAe,EACf,cAAc,EACd,YAAY,EACZ,YAAY,
|
|
1
|
+
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/components/ui/button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,iBAAiB,EACjB,UAAU,EACV,eAAe,EACf,cAAc,EACd,mBAAmB,EACnB,kBAAkB,EAClB,eAAe,EACf,cAAc,EACd,YAAY,EACZ,YAAY,EACZ,gBAAgB,EAChB,eAAe,EAChB,MAAM,SAAS,CAAC;AAIjB;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG,SAAS,GACjC,SAAS,GACT,SAAS,GACT,UAAU,GACV,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,SAAS,GACT,QAAQ,GACR,kBAAkB,GAClB,YAAY,GACZ,eAAe,GACf,WAAW,GACX,WAAW,GACX,SAAS,GACT,iBAAiB,GACjB,UAAU,GACV,eAAe,GACf,cAAc,GACd,mBAAmB,GACnB,kBAAkB,GAClB,eAAe,GACf,cAAc,GACd,YAAY,GACZ,YAAY,GACZ,gBAAgB,GACd,eAAe,GACjB,IAAI,CAAC,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,GAC7E,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,CAAC,GAAG;IACzF,2DAA2D;IAC3D,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,sDAAsD;IACtD,GAAG,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CACzB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,eAAO,MAAM,MAAM;IAvCjB,2DAA2D;WACpD,MAAM;IACb,sDAAsD;UAChD,KAAK,CAAC,WAAW;2CAyCxB,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { BaseProps, FontWeightProps, FontStyleProps, TextDecorationProps, TextTransformProps, FontFamilyProps, TextAlignProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, BreakpointProps, AppearanceProps, BorderProps, ShadowProps, RingProps, ShapeProps, PaddingProps, VariantProps } from "./props";
|
|
2
|
+
import type { BaseProps, FontWeightProps, FontStyleProps, TextDecorationProps, TextTransformProps, FontFamilyProps, TextAlignProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, BreakpointProps, AppearanceProps, BorderProps, ShadowProps, RingProps, ShapeProps, PaddingProps, VariantProps, TransparentProps, ResponsiveProps } from "./props";
|
|
3
3
|
/** Card component props */
|
|
4
|
-
export type CardProps = BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & BreakpointProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & PaddingProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children'> & {
|
|
4
|
+
export type CardProps = BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & BreakpointProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & PaddingProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children'> & {
|
|
5
5
|
/** Custom HTML tag or React component to render as */
|
|
6
6
|
tag?: React.ElementType;
|
|
7
7
|
};
|
|
@@ -45,7 +45,7 @@ export type CardProps = BaseProps & FontWeightProps & FontStyleProps & TextDecor
|
|
|
45
45
|
*
|
|
46
46
|
* @see {@link CardProps} for all available props
|
|
47
47
|
*/
|
|
48
|
-
export declare const Card: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & BreakpointProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & PaddingProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
48
|
+
export declare const Card: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & BreakpointProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & PaddingProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
49
49
|
/** Custom HTML tag or React component to render as */
|
|
50
50
|
tag?: React.ElementType;
|
|
51
51
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"card.d.ts","sourceRoot":"","sources":["../../../src/components/ui/card.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,eAAe,EACf,cAAc,EACd,mBAAmB,EACnB,kBAAkB,EAClB,eAAe,EACf,cAAc,EACd,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,UAAU,EACV,YAAY,EACZ,YAAY,
|
|
1
|
+
{"version":3,"file":"card.d.ts","sourceRoot":"","sources":["../../../src/components/ui/card.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,eAAe,EACf,cAAc,EACd,mBAAmB,EACnB,kBAAkB,EAClB,eAAe,EACf,cAAc,EACd,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,UAAU,EACV,YAAY,EACZ,YAAY,EACZ,gBAAgB,EAChB,eAAe,EAChB,MAAM,SAAS,CAAC;AAIjB,2BAA2B;AAC3B,MAAM,MAAM,SAAS,GAAG,SAAS,GAC/B,eAAe,GACf,cAAc,GACd,mBAAmB,GACnB,kBAAkB,GAClB,eAAe,GACf,cAAc,GACd,SAAS,GACT,SAAS,GACT,UAAU,GACV,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,SAAS,GACT,QAAQ,GACR,kBAAkB,GAClB,YAAY,GACZ,eAAe,GACf,eAAe,GACf,WAAW,GACX,WAAW,GACX,SAAS,GACT,UAAU,GACV,YAAY,GACZ,YAAY,GACZ,gBAAgB,GACd,eAAe,GACjB,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,GAAG;IACvE,sDAAsD;IACtD,GAAG,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CACzB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,eAAO,MAAM,IAAI;IA5Cf,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCAgDxB,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, BorderProps, ShadowProps, RingProps, FocusVisibleProps, ShapeProps, FontWeightProps, FontStyleProps, TextDecorationProps, TextTransformProps, FontFamilyProps, TextAlignProps, PaddingProps, VariantProps } from './props';
|
|
2
|
+
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, BorderProps, ShadowProps, RingProps, FocusVisibleProps, ShapeProps, FontWeightProps, FontStyleProps, TextDecorationProps, TextTransformProps, FontFamilyProps, TextAlignProps, PaddingProps, VariantProps, TransparentProps, ResponsiveProps } from './props';
|
|
3
3
|
/** Chip component props */
|
|
4
|
-
export type ChipProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, 'className' | 'children'> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'className' | 'children'>> & {
|
|
4
|
+
export type ChipProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLSpanElement>, 'className' | 'children'> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'className' | 'children'>> & {
|
|
5
5
|
/** URL to navigate to (renders component as anchor tag) */
|
|
6
6
|
href?: string;
|
|
7
7
|
/** Custom HTML tag or React component to render as */
|
|
@@ -40,7 +40,7 @@ export type ChipProps = BaseProps & SizeProps & HideProps & ItemsProps & Justify
|
|
|
40
40
|
*
|
|
41
41
|
* @see {@link ChipProps} for all available props
|
|
42
42
|
*/
|
|
43
|
-
export declare const Chip: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
43
|
+
export declare const Chip: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
44
44
|
/** URL to navigate to (renders component as anchor tag) */
|
|
45
45
|
href?: string;
|
|
46
46
|
/** Custom HTML tag or React component to render as */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chip.d.ts","sourceRoot":"","sources":["../../../src/components/ui/chip.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,iBAAiB,EACjB,UAAU,EACV,eAAe,EACf,cAAc,EACd,mBAAmB,EACnB,kBAAkB,EAClB,eAAe,EACf,cAAc,EACd,YAAY,EACZ,YAAY,
|
|
1
|
+
{"version":3,"file":"chip.d.ts","sourceRoot":"","sources":["../../../src/components/ui/chip.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,iBAAiB,EACjB,UAAU,EACV,eAAe,EACf,cAAc,EACd,mBAAmB,EACnB,kBAAkB,EAClB,eAAe,EACf,cAAc,EACd,YAAY,EACZ,YAAY,EACZ,gBAAgB,EAChB,eAAe,EAChB,MAAM,SAAS,CAAC;AAIjB,2BAA2B;AAC3B,MAAM,MAAM,SAAS,GAAG,SAAS,GAC/B,SAAS,GACT,SAAS,GACT,UAAU,GACV,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,SAAS,GACT,QAAQ,GACR,kBAAkB,GAClB,YAAY,GACZ,eAAe,GACf,WAAW,GACX,WAAW,GACX,SAAS,GACT,iBAAiB,GACjB,UAAU,GACV,eAAe,GACf,cAAc,GACd,mBAAmB,GACnB,kBAAkB,GAClB,eAAe,GACf,cAAc,GACd,YAAY,GACZ,YAAY,GACZ,gBAAgB,GACd,eAAe,GACjB,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,eAAe,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,GACrE,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,CAAC,GAAG;IACzF,2DAA2D;IAC3D,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,sDAAsD;IACtD,GAAG,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CACzB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,eAAO,MAAM,IAAI;IAvCf,2DAA2D;WACpD,MAAM;IACb,sDAAsD;UAChD,KAAK,CAAC,WAAW;yCAyCxB,CAAC"}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
/** Background consumer classes - consume --bg-color, --bg-hover-color, --bg-active-color
|
|
1
|
+
/** Background consumer classes - consume --bg-color, --bg-hover-color, --bg-active-color
|
|
2
|
+
* Uses bg-() syntax (background-color) instead of [background:] shorthand
|
|
3
|
+
* to allow gradient overrides via className without conflicts.
|
|
4
|
+
*/
|
|
2
5
|
export declare const bgConsumerClasses: {
|
|
3
|
-
readonly base: "
|
|
4
|
-
readonly hover: "hover:
|
|
5
|
-
readonly active: "active:
|
|
6
|
+
readonly base: "bg-(--bg-color)";
|
|
7
|
+
readonly hover: "hover:bg-(--bg-hover-color)";
|
|
8
|
+
readonly active: "active:bg-(--bg-active-color)";
|
|
6
9
|
};
|
|
7
10
|
/** Text color consumer class - consumes --text-color */
|
|
8
11
|
export declare const textConsumerClass = "text-(--text-color)";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appearanceClasses.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/classes/appearanceClasses.ts"],"names":[],"mappings":"AAOA
|
|
1
|
+
{"version":3,"file":"appearanceClasses.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/classes/appearanceClasses.ts"],"names":[],"mappings":"AAOA;;;GAGG;AACH,eAAO,MAAM,iBAAiB;;;;CAIpB,CAAC;AAEX,wDAAwD;AACxD,eAAO,MAAM,iBAAiB,wBAAwB,CAAC;AAEvD,sDAAsD;AACtD,eAAO,MAAM,mBAAmB,4BAA4B,CAAC;AAE7D,kDAAkD;AAClD,eAAO,MAAM,iBAAiB,wBAAwB,CAAC;AAEvD,mEAAmE;AACnE,eAAO,MAAM,yBAAyB,yCAAyC,CAAC;AAEhF,4DAA4D;AAC5D,eAAO,MAAM,mBAAmB,4BAA4B,CAAC;AAE7D,sEAAsE;AACtE,eAAO,MAAM,sBAAsB,iDAAiD,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, BorderProps, ShadowProps, RingProps, FocusVisibleProps, ShapeProps, FontWeightProps, FontStyleProps, TextDecorationProps, TextTransformProps, FontFamilyProps, TextAlignProps, PaddingProps, VariantProps } from './props';
|
|
2
|
+
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, BorderProps, ShadowProps, RingProps, FocusVisibleProps, ShapeProps, FontWeightProps, FontStyleProps, TextDecorationProps, TextTransformProps, FontFamilyProps, TextAlignProps, PaddingProps, VariantProps, TransparentProps, ResponsiveProps } from './props';
|
|
3
3
|
/** Code component props */
|
|
4
|
-
export type CodeProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & Omit<React.HTMLAttributes<HTMLElement>, 'className' | 'children'> & {
|
|
4
|
+
export type CodeProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLElement>, 'className' | 'children'> & {
|
|
5
5
|
/** Custom HTML tag or React component to render as */
|
|
6
6
|
tag?: React.ElementType;
|
|
7
7
|
};
|
|
@@ -38,7 +38,7 @@ export type CodeProps = BaseProps & SizeProps & HideProps & ItemsProps & Justify
|
|
|
38
38
|
*
|
|
39
39
|
* @see {@link CodeProps} for all available props
|
|
40
40
|
*/
|
|
41
|
-
export declare const Code: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & Omit<React.HTMLAttributes<HTMLElement>, "className" | "children"> & {
|
|
41
|
+
export declare const Code: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLElement>, "className" | "children"> & {
|
|
42
42
|
/** Custom HTML tag or React component to render as */
|
|
43
43
|
tag?: React.ElementType;
|
|
44
44
|
} & React.RefAttributes<HTMLElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"code.d.ts","sourceRoot":"","sources":["../../../src/components/ui/code.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,iBAAiB,EACjB,UAAU,EACV,eAAe,EACf,cAAc,EACd,mBAAmB,EACnB,kBAAkB,EAClB,eAAe,EACf,cAAc,EACd,YAAY,EACZ,YAAY,
|
|
1
|
+
{"version":3,"file":"code.d.ts","sourceRoot":"","sources":["../../../src/components/ui/code.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,iBAAiB,EACjB,UAAU,EACV,eAAe,EACf,cAAc,EACd,mBAAmB,EACnB,kBAAkB,EAClB,eAAe,EACf,cAAc,EACd,YAAY,EACZ,YAAY,EACZ,gBAAgB,EAChB,eAAe,EAChB,MAAM,SAAS,CAAC;AAIjB,2BAA2B;AAC3B,MAAM,MAAM,SAAS,GAAG,SAAS,GAC/B,SAAS,GACT,SAAS,GACT,UAAU,GACV,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,SAAS,GACT,QAAQ,GACR,kBAAkB,GAClB,YAAY,GACZ,eAAe,GACf,WAAW,GACX,WAAW,GACX,SAAS,GACT,iBAAiB,GACjB,UAAU,GACV,eAAe,GACf,cAAc,GACd,mBAAmB,GACnB,kBAAkB,GAClB,eAAe,GACf,cAAc,GACd,YAAY,GACZ,YAAY,GACZ,gBAAgB,GACd,eAAe,GACjB,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,GAAG;IACpE,sDAAsD;IACtD,GAAG,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CACzB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,eAAO,MAAM,IAAI;IArCf,sDAAsD;UAChD,KAAK,CAAC,WAAW;qCAyCxB,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, BorderProps, ShadowProps, RingProps, ShapeProps, VariantProps } from './props';
|
|
2
|
+
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, BorderProps, ShadowProps, RingProps, ShapeProps, VariantProps, TransparentProps, ResponsiveProps } from './props';
|
|
3
3
|
/** Col component props */
|
|
4
|
-
export type ColProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children'> & {
|
|
4
|
+
export type ColProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children'> & {
|
|
5
5
|
/** Custom HTML tag or React component to render as */
|
|
6
6
|
tag?: React.ElementType;
|
|
7
7
|
};
|
|
@@ -43,7 +43,7 @@ export type ColProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyP
|
|
|
43
43
|
*
|
|
44
44
|
* @see {@link ColProps} for all available props
|
|
45
45
|
*/
|
|
46
|
-
export declare const Col: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
46
|
+
export declare const Col: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
47
47
|
/** Custom HTML tag or React component to render as */
|
|
48
48
|
tag?: React.ElementType;
|
|
49
49
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"col.d.ts","sourceRoot":"","sources":["../../../src/components/ui/col.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,UAAU,EACV,YAAY,
|
|
1
|
+
{"version":3,"file":"col.d.ts","sourceRoot":"","sources":["../../../src/components/ui/col.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,UAAU,EACV,YAAY,EACZ,gBAAgB,EAChB,eAAe,EAChB,MAAM,SAAS,CAAC;AAIjB,0BAA0B;AAC1B,MAAM,MAAM,QAAQ,GAAG,SAAS,GAC9B,SAAS,GACT,SAAS,GACT,UAAU,GACV,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,SAAS,GACT,QAAQ,GACR,kBAAkB,GAClB,YAAY,GACZ,eAAe,GACf,WAAW,GACX,WAAW,GACX,SAAS,GACT,UAAU,GACV,YAAY,GACZ,gBAAgB,GACd,eAAe,GACjB,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,GAAG;IACvE,sDAAsD;IACtD,GAAG,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CACzB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,eAAO,MAAM,GAAG;IA1Cd,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCA8CxB,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, BorderProps, ShadowProps, RingProps, ShapeProps, VariantProps } from './props';
|
|
2
|
+
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, BorderProps, ShadowProps, RingProps, ShapeProps, VariantProps, TransparentProps, ResponsiveProps } from './props';
|
|
3
3
|
/** Container component props */
|
|
4
|
-
export type ContainerProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children'> & {
|
|
4
|
+
export type ContainerProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children'> & {
|
|
5
5
|
/** Custom HTML tag or React component to render as */
|
|
6
6
|
tag?: React.ElementType;
|
|
7
7
|
};
|
|
@@ -40,7 +40,7 @@ export type ContainerProps = BaseProps & SizeProps & HideProps & ItemsProps & Ju
|
|
|
40
40
|
*
|
|
41
41
|
* @see {@link ContainerProps} for all available props
|
|
42
42
|
*/
|
|
43
|
-
export declare const Container: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
43
|
+
export declare const Container: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
44
44
|
/** Custom HTML tag or React component to render as */
|
|
45
45
|
tag?: React.ElementType;
|
|
46
46
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"container.d.ts","sourceRoot":"","sources":["../../../src/components/ui/container.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,UAAU,EACV,YAAY,
|
|
1
|
+
{"version":3,"file":"container.d.ts","sourceRoot":"","sources":["../../../src/components/ui/container.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,UAAU,EACV,YAAY,EACZ,gBAAgB,EAChB,eAAe,EAChB,MAAM,SAAS,CAAC;AAIjB,gCAAgC;AAChC,MAAM,MAAM,cAAc,GAAG,SAAS,GACpC,SAAS,GACT,SAAS,GACT,UAAU,GACV,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,SAAS,GACT,QAAQ,GACR,kBAAkB,GAClB,YAAY,GACZ,eAAe,GACf,WAAW,GACX,WAAW,GACX,SAAS,GACT,UAAU,GACV,YAAY,GACZ,gBAAgB,GACd,eAAe,GACjB,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,GAAG;IACvE,sDAAsD;IACtD,GAAG,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CACzB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,eAAO,MAAM,SAAS;IAvCpB,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCA2CxB,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, VariantProps, ShapeProps, BorderProps } from './props';
|
|
2
|
+
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, VariantProps, ShapeProps, BorderProps, TransparentProps, ResponsiveProps } from './props';
|
|
3
3
|
/** Grid component props */
|
|
4
|
-
export type GridProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & VariantProps & ShapeProps & BorderProps & Omit<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children'> & {
|
|
4
|
+
export type GridProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & VariantProps & TransparentProps & ResponsiveProps & ShapeProps & BorderProps & Omit<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children'> & {
|
|
5
5
|
/** Custom HTML tag or React component to render as */
|
|
6
6
|
tag?: React.ElementType;
|
|
7
7
|
};
|
|
@@ -33,7 +33,7 @@ export type GridProps = BaseProps & SizeProps & HideProps & ItemsProps & Justify
|
|
|
33
33
|
*
|
|
34
34
|
* @see {@link GridProps} for all available props
|
|
35
35
|
*/
|
|
36
|
-
export declare const Grid2: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & VariantProps & ShapeProps & BorderProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
36
|
+
export declare const Grid2: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & VariantProps & TransparentProps & ResponsiveProps & ShapeProps & BorderProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
37
37
|
/** Custom HTML tag or React component to render as */
|
|
38
38
|
tag?: React.ElementType;
|
|
39
39
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -55,7 +55,7 @@ export declare const Grid2: React.ForwardRefExoticComponent<BaseProps & SizeProp
|
|
|
55
55
|
*
|
|
56
56
|
* @see {@link GridProps} for all available props
|
|
57
57
|
*/
|
|
58
|
-
export declare const Grid3: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & VariantProps & ShapeProps & BorderProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
58
|
+
export declare const Grid3: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & VariantProps & TransparentProps & ResponsiveProps & ShapeProps & BorderProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
59
59
|
/** Custom HTML tag or React component to render as */
|
|
60
60
|
tag?: React.ElementType;
|
|
61
61
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -78,7 +78,7 @@ export declare const Grid3: React.ForwardRefExoticComponent<BaseProps & SizeProp
|
|
|
78
78
|
*
|
|
79
79
|
* @see {@link GridProps} for all available props
|
|
80
80
|
*/
|
|
81
|
-
export declare const Grid4: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & VariantProps & ShapeProps & BorderProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
81
|
+
export declare const Grid4: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & VariantProps & TransparentProps & ResponsiveProps & ShapeProps & BorderProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
82
82
|
/** Custom HTML tag or React component to render as */
|
|
83
83
|
tag?: React.ElementType;
|
|
84
84
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -102,7 +102,7 @@ export declare const Grid4: React.ForwardRefExoticComponent<BaseProps & SizeProp
|
|
|
102
102
|
*
|
|
103
103
|
* @see {@link GridProps} for all available props
|
|
104
104
|
*/
|
|
105
|
-
export declare const Grid5: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & VariantProps & ShapeProps & BorderProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
105
|
+
export declare const Grid5: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & VariantProps & TransparentProps & ResponsiveProps & ShapeProps & BorderProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
106
106
|
/** Custom HTML tag or React component to render as */
|
|
107
107
|
tag?: React.ElementType;
|
|
108
108
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -127,7 +127,7 @@ export declare const Grid5: React.ForwardRefExoticComponent<BaseProps & SizeProp
|
|
|
127
127
|
*
|
|
128
128
|
* @see {@link GridProps} for all available props
|
|
129
129
|
*/
|
|
130
|
-
export declare const Grid6: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & VariantProps & ShapeProps & BorderProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
130
|
+
export declare const Grid6: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & VariantProps & TransparentProps & ResponsiveProps & ShapeProps & BorderProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
131
131
|
/** Custom HTML tag or React component to render as */
|
|
132
132
|
tag?: React.ElementType;
|
|
133
133
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grid.d.ts","sourceRoot":"","sources":["../../../src/components/ui/grid.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,YAAY,EACZ,UAAU,EACV,WAAW,
|
|
1
|
+
{"version":3,"file":"grid.d.ts","sourceRoot":"","sources":["../../../src/components/ui/grid.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,YAAY,EACZ,UAAU,EACV,WAAW,EACX,gBAAgB,EAChB,eAAe,EAChB,MAAM,SAAS,CAAC;AAIjB,2BAA2B;AAC3B,MAAM,MAAM,SAAS,GAAG,SAAS,GAC/B,SAAS,GACT,SAAS,GACT,UAAU,GACV,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,SAAS,GACT,QAAQ,GACR,kBAAkB,GAClB,YAAY,GACZ,eAAe,GACf,YAAY,GACZ,gBAAgB,GACd,eAAe,GACjB,UAAU,GACV,WAAW,GACX,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,GAAG;IACvE,sDAAsD;IACtD,GAAG,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CACzB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,eAAO,MAAM,KAAK;IAhChB,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCAoCxB,CAAC;AAIF;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,KAAK;IA3DhB,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCA+DxB,CAAC;AAIF;;;;;;;;;;;;;;;;;;GAkBG;AACH,eAAO,MAAM,KAAK;IAvFhB,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCA2FxB,CAAC;AAIF;;;;;;;;;;;;;;;;;;;GAmBG;AACH,eAAO,MAAM,KAAK;IApHhB,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCAwHxB,CAAC;AAIF;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,eAAO,MAAM,KAAK;IAlJhB,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCAsJxB,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, BorderProps, ShadowProps, RingProps, FocusVisibleProps, ShapeProps, FontWeightProps, FontStyleProps, TextDecorationProps, TextTransformProps, FontFamilyProps, TextAlignProps, PaddingProps, VariantProps } from './props';
|
|
2
|
+
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, BorderProps, ShadowProps, RingProps, FocusVisibleProps, ShapeProps, FontWeightProps, FontStyleProps, TextDecorationProps, TextTransformProps, FontFamilyProps, TextAlignProps, PaddingProps, VariantProps, TransparentProps, ResponsiveProps } from './props';
|
|
3
3
|
/** Input component props */
|
|
4
|
-
export type InputProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & Omit<React.InputHTMLAttributes<HTMLInputElement>, 'className' | 'children'> & {
|
|
4
|
+
export type InputProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.InputHTMLAttributes<HTMLInputElement>, 'className' | 'children'> & {
|
|
5
5
|
/** Custom HTML tag or React component to render as */
|
|
6
6
|
tag?: React.ElementType;
|
|
7
7
|
};
|
|
@@ -38,7 +38,7 @@ export type InputProps = BaseProps & SizeProps & HideProps & ItemsProps & Justif
|
|
|
38
38
|
*
|
|
39
39
|
* @see {@link InputProps} for all available props
|
|
40
40
|
*/
|
|
41
|
-
export declare const Input: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & Omit<React.InputHTMLAttributes<HTMLInputElement>, "className" | "children"> & {
|
|
41
|
+
export declare const Input: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.InputHTMLAttributes<HTMLInputElement>, "className" | "children"> & {
|
|
42
42
|
/** Custom HTML tag or React component to render as */
|
|
43
43
|
tag?: React.ElementType;
|
|
44
44
|
} & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/components/ui/input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,iBAAiB,EACjB,UAAU,EACV,eAAe,EACf,cAAc,EACd,mBAAmB,EACnB,kBAAkB,EAClB,eAAe,EACf,cAAc,EACd,YAAY,EACZ,YAAY,
|
|
1
|
+
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/components/ui/input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,iBAAiB,EACjB,UAAU,EACV,eAAe,EACf,cAAc,EACd,mBAAmB,EACnB,kBAAkB,EAClB,eAAe,EACf,cAAc,EACd,YAAY,EACZ,YAAY,EACZ,gBAAgB,EAChB,eAAe,EAChB,MAAM,SAAS,CAAC;AAIjB,4BAA4B;AAC5B,MAAM,MAAM,UAAU,GAAG,SAAS,GAChC,SAAS,GACT,SAAS,GACT,UAAU,GACV,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,SAAS,GACT,QAAQ,GACR,kBAAkB,GAClB,YAAY,GACZ,eAAe,GACf,WAAW,GACX,WAAW,GACX,SAAS,GACT,iBAAiB,GACjB,UAAU,GACV,eAAe,GACf,cAAc,GACd,mBAAmB,GACnB,kBAAkB,GAClB,eAAe,GACf,cAAc,GACd,YAAY,GACZ,YAAY,GACZ,gBAAgB,GACd,eAAe,GACjB,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,GAAG;IAC9E,sDAAsD;IACtD,GAAG,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CACzB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,eAAO,MAAM,KAAK;IArChB,sDAAsD;UAChD,KAAK,CAAC,WAAW;0CAyCxB,CAAC"}
|
|
@@ -22,8 +22,14 @@ export declare const TYPOGRAPHY_STYLE: readonly ["fontWeight", "fontStyle", "tex
|
|
|
22
22
|
export declare const LIST_STYLE: readonly ["listStyle"];
|
|
23
23
|
/** Variant properties for filled/outline styling modes */
|
|
24
24
|
export declare const VARIANT: readonly ["variant"];
|
|
25
|
+
/** Transparent background property */
|
|
26
|
+
export declare const TRANSPARENT: readonly ["transparent"];
|
|
27
|
+
/** Responsive sizing property for breakpoint-specific sizing */
|
|
28
|
+
export declare const RESPONSIVE: readonly ["responsive"];
|
|
29
|
+
/** Common modifier properties available to all components */
|
|
30
|
+
export declare const COMMON_MODIFIERS: readonly ["transparent", "responsive"];
|
|
25
31
|
/** All available component property categories combined */
|
|
26
|
-
export declare const COMPONENT_PROPS_CATEGORY: readonly ["appearance", "wrap", "gap", "flexDirection", "reverse", "fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "listStyle", "size", "hide", "items", "justify", "position", "display", "overflow", "breakpoint", "padding", "border", "shadow", "ring", "focusVisible", "shape", "variant"];
|
|
32
|
+
export declare const COMPONENT_PROPS_CATEGORY: readonly ["appearance", "wrap", "gap", "flexDirection", "reverse", "fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "listStyle", "size", "hide", "items", "justify", "position", "display", "overflow", "breakpoint", "padding", "border", "shadow", "ring", "focusVisible", "shape", "variant", "transparent", "responsive"];
|
|
27
33
|
/**
|
|
28
34
|
* Describes category for which the appearance can be applied
|
|
29
35
|
* @see ComponentKeys.appearance
|
|
@@ -90,6 +96,10 @@ export declare const ComponentKeys: {
|
|
|
90
96
|
readonly variant: readonly ["filled", "outline"];
|
|
91
97
|
/** Flex item wrapping behavior: wrap, no-wrap, or wrap-reverse */
|
|
92
98
|
readonly wrap: readonly ["flexWrap", "flexNoWrap", "flexWrapReverse"];
|
|
99
|
+
/** Transparent background: disables background color when true */
|
|
100
|
+
readonly transparent: readonly ["transparent"];
|
|
101
|
+
/** Responsive sizing: enables breakpoint-specific py/px/gap/fs when true */
|
|
102
|
+
readonly responsive: readonly ["responsive"];
|
|
93
103
|
};
|
|
94
104
|
/** All border side keys (excluding noBorder since it doesn't have a CSS class) */
|
|
95
105
|
export declare const BORDER_KEYS: readonly ["border", "borderT", "borderB", "borderL", "borderR", "borderX", "borderY"];
|
|
@@ -133,19 +143,10 @@ export type DisplayKey = typeof ComponentKeys.display[number];
|
|
|
133
143
|
export type OverflowKey = typeof ComponentKeys.overflow[number];
|
|
134
144
|
/** Shape keys for border radius: pill, sharp, rounded */
|
|
135
145
|
export type ShapeKey = typeof ComponentKeys.shape[number];
|
|
136
|
-
/** Common responsive breakpoint keys used across all themes */
|
|
137
|
-
export declare const RESPONSIVE_BREAKPOINT_KEYS: readonly ["desktop", "tablet", "mobile"];
|
|
138
|
-
/** Type for
|
|
146
|
+
/** Common responsive breakpoint keys used across all themes (includes 'base' for non-responsive mode) */
|
|
147
|
+
export declare const RESPONSIVE_BREAKPOINT_KEYS: readonly ["base", "desktop", "tablet", "mobile"];
|
|
148
|
+
/** Type for responsive breakpoint class keys - used by GapTheme, PyTheme, PxTheme, FontSizeTheme */
|
|
139
149
|
export type ResponsiveBreakpointClassKey = typeof RESPONSIVE_BREAKPOINT_KEYS[number];
|
|
140
|
-
/** Responsive theme class keys - breakpoint classes apply CSS properties directly */
|
|
141
|
-
/** Font size theme class keys */
|
|
142
|
-
export type FontSizeClassKey = ResponsiveBreakpointClassKey;
|
|
143
|
-
/** Vertical padding theme class keys */
|
|
144
|
-
export type PyClassKey = ResponsiveBreakpointClassKey;
|
|
145
|
-
/** Gap theme class keys */
|
|
146
|
-
export type GapClassKey = ResponsiveBreakpointClassKey;
|
|
147
|
-
/** Horizontal padding theme class keys */
|
|
148
|
-
export type PxClassKey = ResponsiveBreakpointClassKey;
|
|
149
150
|
/** Left padding theme class key */
|
|
150
151
|
export type PlClassKey = 'pl';
|
|
151
152
|
/** Line height theme class key */
|
|
@@ -160,47 +161,47 @@ export declare const VISUAL_LAYOUT: readonly ["appearance", "border", "shadow",
|
|
|
160
161
|
/** Complete typography category for text styling */
|
|
161
162
|
export declare const TYPOGRAPHY_FULL: readonly ["fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign"];
|
|
162
163
|
/** Categories for interactive components like buttons, badges, chips */
|
|
163
|
-
export declare const INTERACTIVE_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "focusVisible", "shape", "fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "padding", "variant"];
|
|
164
|
+
export declare const INTERACTIVE_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "focusVisible", "shape", "fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "padding", "variant", "transparent", "responsive"];
|
|
164
165
|
/** Button component categories */
|
|
165
|
-
export declare const BUTTON_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "focusVisible", "shape", "fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "padding", "variant"];
|
|
166
|
+
export declare const BUTTON_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "focusVisible", "shape", "fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "padding", "variant", "transparent", "responsive"];
|
|
166
167
|
/** Badge component categories */
|
|
167
|
-
export declare const BADGE_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "focusVisible", "shape", "fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "padding", "variant"];
|
|
168
|
+
export declare const BADGE_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "focusVisible", "shape", "fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "padding", "variant", "transparent", "responsive"];
|
|
168
169
|
/** Chip component categories */
|
|
169
|
-
export declare const CHIP_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "focusVisible", "shape", "fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "padding", "variant"];
|
|
170
|
+
export declare const CHIP_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "focusVisible", "shape", "fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "padding", "variant", "transparent", "responsive"];
|
|
170
171
|
/** Code component categories */
|
|
171
|
-
export declare const CODE_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "focusVisible", "shape", "fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "padding", "variant"];
|
|
172
|
+
export declare const CODE_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "focusVisible", "shape", "fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "padding", "variant", "transparent", "responsive"];
|
|
172
173
|
/** Typography component categories */
|
|
173
174
|
/** Categories for typography components like Text, Title, Link */
|
|
174
|
-
export declare const TYPOGRAPHY_CATEGORIES: readonly ["fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "size", "hide", "items", "justify", "position", "display", "overflow", "appearance", "variant"];
|
|
175
|
+
export declare const TYPOGRAPHY_CATEGORIES: readonly ["fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "size", "hide", "items", "justify", "position", "display", "overflow", "appearance", "variant", "transparent", "responsive"];
|
|
175
176
|
/** Categories for list components with typography and list-specific styling */
|
|
176
|
-
export declare const LIST_CATEGORIES: readonly ["fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "listStyle", "size", "hide", "items", "justify", "position", "display", "overflow", "appearance", "padding", "variant"];
|
|
177
|
+
export declare const LIST_CATEGORIES: readonly ["fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "listStyle", "size", "hide", "items", "justify", "position", "display", "overflow", "appearance", "padding", "variant", "transparent", "responsive"];
|
|
177
178
|
/** Layout component categories */
|
|
178
179
|
/** Categories for grid layout components */
|
|
179
|
-
export declare const GRID_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "shape", "variant"];
|
|
180
|
+
export declare const GRID_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "shape", "variant", "transparent", "responsive"];
|
|
180
181
|
/** Categories for container layout components */
|
|
181
|
-
export declare const CONTAINER_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "shape", "variant"];
|
|
182
|
+
export declare const CONTAINER_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "shape", "variant", "transparent", "responsive"];
|
|
182
183
|
/** Categories for column layout components */
|
|
183
|
-
export declare const COL_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "shape", "variant"];
|
|
184
|
+
export declare const COL_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "shape", "variant", "transparent", "responsive"];
|
|
184
185
|
/** Categories for row layout components with responsive breakpoints */
|
|
185
|
-
export declare const ROW_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "breakpoint", "appearance", "border", "shadow", "ring", "shape", "variant"];
|
|
186
|
+
export declare const ROW_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "breakpoint", "appearance", "border", "shadow", "ring", "shape", "variant", "transparent", "responsive"];
|
|
186
187
|
/** Categories for stack layout components with responsive and padding support */
|
|
187
|
-
export declare const STACK_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "breakpoint", "padding", "appearance", "border", "shadow", "ring", "shape", "variant"];
|
|
188
|
+
export declare const STACK_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "breakpoint", "padding", "appearance", "border", "shadow", "ring", "shape", "variant", "transparent", "responsive"];
|
|
188
189
|
/** Categories for card components with full typography and layout support */
|
|
189
|
-
export declare const CARD_CATEGORIES: readonly ["fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "breakpoint", "appearance", "border", "shadow", "ring", "shape", "padding", "variant"];
|
|
190
|
+
export declare const CARD_CATEGORIES: readonly ["fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "breakpoint", "appearance", "border", "shadow", "ring", "shape", "padding", "variant", "transparent", "responsive"];
|
|
190
191
|
/** Categories for divider components with basic layout and visual properties */
|
|
191
|
-
export declare const DIVIDER_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "appearance", "padding", "variant"];
|
|
192
|
+
export declare const DIVIDER_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "appearance", "padding", "variant", "transparent", "responsive"];
|
|
192
193
|
/** Categories for section layout components with full responsive support */
|
|
193
|
-
export declare const SECTION_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "shape", "padding", "breakpoint", "variant"];
|
|
194
|
+
export declare const SECTION_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "shape", "padding", "breakpoint", "variant", "transparent", "responsive"];
|
|
194
195
|
/** Form component categories */
|
|
195
196
|
/** Categories for checkbox form components */
|
|
196
|
-
export declare const CHECKBOX_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "appearance", "border", "shadow", "ring", "focusVisible", "shape", "variant"];
|
|
197
|
+
export declare const CHECKBOX_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "appearance", "border", "shadow", "ring", "focusVisible", "shape", "variant", "transparent", "responsive"];
|
|
197
198
|
/** Categories for label form components with typography support */
|
|
198
|
-
export declare const LABEL_CATEGORIES: readonly ["fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "variant"];
|
|
199
|
+
export declare const LABEL_CATEGORIES: readonly ["fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "variant", "transparent", "responsive"];
|
|
199
200
|
/** Categories for input form components with interactive and form-specific properties */
|
|
200
|
-
export declare const INPUT_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "focusVisible", "shape", "fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "padding", "variant"];
|
|
201
|
+
export declare const INPUT_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "wrap", "gap", "flexDirection", "reverse", "appearance", "border", "shadow", "ring", "focusVisible", "shape", "fontWeight", "fontStyle", "textDecoration", "textTransform", "fontFamily", "textAlign", "padding", "variant", "transparent", "responsive"];
|
|
201
202
|
/** Media component categories */
|
|
202
203
|
/** Categories for image media components */
|
|
203
|
-
export declare const IMG_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "appearance", "border", "shadow", "ring", "focusVisible", "shape", "variant"];
|
|
204
|
+
export declare const IMG_CATEGORIES: readonly ["size", "hide", "items", "justify", "position", "display", "overflow", "appearance", "border", "shadow", "ring", "focusVisible", "shape", "variant", "transparent", "responsive"];
|
|
204
205
|
/** Props type mapping category keys to their possible values */
|
|
205
206
|
export type CategoryProps = {
|
|
206
207
|
[K in ComponentCategoryKey]?: (typeof ComponentKeys)[K][number];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"keys.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/props/keys.ts"],"names":[],"mappings":"AAAA,iEAAiE;AACjE,eAAO,MAAM,WAAW,kFAAmF,CAAC;AAC5G,6DAA6D;AAC7D,eAAO,MAAM,WAAW,sDAAuD,CAAC;AAChF,sDAAsD;AACtD,eAAO,MAAM,OAAO,sBAAuB,CAAC;AAC5C,kEAAkE;AAClE,eAAO,MAAM,UAAU,yBAA0B,CAAC;AAClD,0EAA0E;AAC1E,eAAO,MAAM,WAAW,yBAA0B,CAAC;AACnD,8CAA8C;AAC9C,eAAO,MAAM,MAAM,qBAAsB,CAAC;AAC1C,+DAA+D;AAC/D,eAAO,MAAM,iBAAiB,6CAA8C,CAAC;AAC7E,8FAA8F;AAC9F,eAAO,MAAM,wBAAwB,6BAA8B,CAAC;AACpE,6DAA6D;AAC7D,eAAO,MAAM,KAAK,oBAAqB,CAAC;AACxC,uEAAuE;AACvE,eAAO,MAAM,gBAAgB,oGAAqG,CAAC;AACnI,uEAAuE;AACvE,eAAO,MAAM,UAAU,wBAAyB,CAAC;AACjD,0DAA0D;AAC1D,eAAO,MAAM,OAAO,sBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"keys.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/props/keys.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Auto-generated prop descriptions from JSDoc comments.
|
|
3
3
|
* DO NOT EDIT MANUALLY - Run 'npm run props:generate' to regenerate.
|
|
4
4
|
*
|
|
5
|
-
* Generated on: 2026-01-
|
|
5
|
+
* Generated on: 2026-01-07T15:31:13.748Z
|
|
6
6
|
*/
|
|
7
7
|
export interface PropDescription {
|
|
8
8
|
description: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"propDescriptions.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/props/propDescriptions.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,WAAW,eAAe;IAC9B,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;CACxC;AAED,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,mBAAmB,
|
|
1
|
+
{"version":3,"file":"propDescriptions.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/props/propDescriptions.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,WAAW,eAAe;IAC9B,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;CACxC;AAED,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,mBAAmB,CAyiBhE,CAAC;AAEF;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAErF;AAED;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAE3E;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAEpE"}
|
|
@@ -32,5 +32,7 @@ export * from './positionProps';
|
|
|
32
32
|
export * from './overflowProps';
|
|
33
33
|
export * from './breakpointProps';
|
|
34
34
|
export * from './hideProps';
|
|
35
|
+
export * from './responsiveProps';
|
|
36
|
+
export * from './transparentProps';
|
|
35
37
|
export * from './listStyleProps';
|
|
36
38
|
//# sourceMappingURL=props.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/props/props.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,cAAc,aAAa,CAAC;AAG5B,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAG7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AAGjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AAGpC,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAG5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAGhC,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/props/props.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,cAAc,aAAa,CAAC;AAG5B,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAG7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AAGjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AAGpC,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAG5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAGhC,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC;AAGlC,cAAc,oBAAoB,CAAC;AAGnC,cAAc,kBAAkB,CAAC"}
|