@vaneui/ui 0.9.0-alpha.20260107081332.7a31978 → 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/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 +98 -36
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +100 -35
- package/dist/index.js.map +1 -1
- package/dist/ui.css +37 -0
- 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, BreakpointProps, AppearanceProps, BorderProps, ShadowProps, RingProps, ShapeProps, VariantProps } from './props';
|
|
2
|
+
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, BreakpointProps, AppearanceProps, BorderProps, ShadowProps, RingProps, ShapeProps, VariantProps, TransparentProps, ResponsiveProps } from './props';
|
|
3
3
|
/** Row component props */
|
|
4
|
-
export type RowProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & BreakpointProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children'> & {
|
|
4
|
+
export type RowProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & BreakpointProps & 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
|
};
|
|
@@ -42,7 +42,7 @@ export type RowProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyP
|
|
|
42
42
|
*
|
|
43
43
|
* @see {@link RowProps} for all available props
|
|
44
44
|
*/
|
|
45
|
-
export declare const Row: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & BreakpointProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
45
|
+
export declare const Row: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & BreakpointProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
46
46
|
/** Custom HTML tag or React component to render as */
|
|
47
47
|
tag?: React.ElementType;
|
|
48
48
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"row.d.ts","sourceRoot":"","sources":["../../../src/components/ui/row.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,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,UAAU,EACV,YAAY,
|
|
1
|
+
{"version":3,"file":"row.d.ts","sourceRoot":"","sources":["../../../src/components/ui/row.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,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,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,eAAO,MAAM,GAAG;IAzCd,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCA6CxB,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, PaddingProps, BreakpointProps, VariantProps } from './props';
|
|
2
|
+
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, BorderProps, ShadowProps, RingProps, ShapeProps, PaddingProps, BreakpointProps, VariantProps, TransparentProps, ResponsiveProps } from './props';
|
|
3
3
|
/** Section component props */
|
|
4
|
-
export type SectionProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & PaddingProps & BreakpointProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children'> & {
|
|
4
|
+
export type SectionProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & PaddingProps & BreakpointProps & 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
|
};
|
|
@@ -41,7 +41,7 @@ export type SectionProps = BaseProps & SizeProps & HideProps & ItemsProps & Just
|
|
|
41
41
|
*
|
|
42
42
|
* @see {@link SectionProps} for all available props
|
|
43
43
|
*/
|
|
44
|
-
export declare const Section: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & PaddingProps & BreakpointProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
44
|
+
export declare const Section: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & PaddingProps & BreakpointProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
45
45
|
/** Custom HTML tag or React component to render as */
|
|
46
46
|
tag?: React.ElementType;
|
|
47
47
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"section.d.ts","sourceRoot":"","sources":["../../../src/components/ui/section.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,eAAe,EACf,YAAY,
|
|
1
|
+
{"version":3,"file":"section.d.ts","sourceRoot":"","sources":["../../../src/components/ui/section.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,eAAe,EACf,YAAY,EACZ,gBAAgB,EAChB,eAAe,EAChB,MAAM,SAAS,CAAC;AAIjB,8BAA8B;AAC9B,MAAM,MAAM,YAAY,GAAG,SAAS,GAClC,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,eAAe,GACf,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,eAAO,MAAM,OAAO;IAxClB,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCA4CxB,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, BreakpointProps, PaddingProps, AppearanceProps, BorderProps, ShadowProps, RingProps, ShapeProps, VariantProps } from './props';
|
|
2
|
+
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, BreakpointProps, PaddingProps, AppearanceProps, BorderProps, ShadowProps, RingProps, ShapeProps, VariantProps, TransparentProps, ResponsiveProps } from './props';
|
|
3
3
|
/** Stack component props */
|
|
4
|
-
export type StackProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & BreakpointProps & PaddingProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children'> & {
|
|
4
|
+
export type StackProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & BreakpointProps & PaddingProps & 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
|
};
|
|
@@ -42,7 +42,7 @@ export type StackProps = BaseProps & SizeProps & HideProps & ItemsProps & Justif
|
|
|
42
42
|
*
|
|
43
43
|
* @see {@link StackProps} for all available props
|
|
44
44
|
*/
|
|
45
|
-
export declare const Stack: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & BreakpointProps & PaddingProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
45
|
+
export declare const Stack: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & BreakpointProps & PaddingProps & AppearanceProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
46
46
|
/** Custom HTML tag or React component to render as */
|
|
47
47
|
tag?: React.ElementType;
|
|
48
48
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stack.d.ts","sourceRoot":"","sources":["../../../src/components/ui/stack.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,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,UAAU,EACV,YAAY,
|
|
1
|
+
{"version":3,"file":"stack.d.ts","sourceRoot":"","sources":["../../../src/components/ui/stack.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,eAAe,EACf,WAAW,EACX,WAAW,EACX,SAAS,EACT,UAAU,EACV,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,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,eAAO,MAAM,KAAK;IAzChB,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCA8CxB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"simpleConsumerTheme.d.ts","sourceRoot":"","sources":["../../../../../src/components/ui/theme/appearance/simpleConsumerTheme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,EAAE,qBAAqB,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAExE;;;;;;;;;;;;GAYG;AACH,qBAAa,mBAAoB,SAAQ,SAAS;IAChD,wCAAwC;IACxC,IAAI,EAAE,MAAM,CAAC;IACb,mCAAmC;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,oCAAoC;IACpC,MAAM,EAAE,MAAM,CAAC;IACf,2CAA2C;IAC3C,YAAY,EAAE,MAAM,CAAC;IACrB,qEAAqE;IACrE,QAAQ,CAAC,QAAQ,EAAE,qBAAqB,CAAC;IACzC,gHAAgH;IAChH,QAAQ,CAAC,YAAY,EAAE,OAAO,CAAC;gBAG7B,MAAM,EAAE;QACN,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,YAAY,CAAC,EAAE,OAAO,CAAC;KACxB,EACD,QAAQ,EAAE,qBAAqB;IAWjC,UAAU,CAAC,aAAa,EAAE,aAAa,GAAG,MAAM,EAAE;
|
|
1
|
+
{"version":3,"file":"simpleConsumerTheme.d.ts","sourceRoot":"","sources":["../../../../../src/components/ui/theme/appearance/simpleConsumerTheme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,EAAE,qBAAqB,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAExE;;;;;;;;;;;;GAYG;AACH,qBAAa,mBAAoB,SAAQ,SAAS;IAChD,wCAAwC;IACxC,IAAI,EAAE,MAAM,CAAC;IACb,mCAAmC;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,oCAAoC;IACpC,MAAM,EAAE,MAAM,CAAC;IACf,2CAA2C;IAC3C,YAAY,EAAE,MAAM,CAAC;IACrB,qEAAqE;IACrE,QAAQ,CAAC,QAAQ,EAAE,qBAAqB,CAAC;IACzC,gHAAgH;IAChH,QAAQ,CAAC,YAAY,EAAE,OAAO,CAAC;gBAG7B,MAAM,EAAE;QACN,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,YAAY,CAAC,EAAE,OAAO,CAAC;KACxB,EACD,QAAQ,EAAE,qBAAqB;IAWjC,UAAU,CAAC,aAAa,EAAE,aAAa,GAAG,MAAM,EAAE;CAsDnD"}
|
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
import { BaseTheme } from "../common/baseTheme";
|
|
2
|
-
import type { CategoryProps,
|
|
2
|
+
import type { CategoryProps, ResponsiveBreakpointClassKey } from "../../props";
|
|
3
3
|
/**
|
|
4
|
-
* Font size theme - applies text size using
|
|
5
|
-
*
|
|
4
|
+
* Font size theme - applies text size using CSS variables.
|
|
5
|
+
* Uses breakpoint-specific variables when responsive=true, otherwise uses simple --fs variable.
|
|
6
6
|
*/
|
|
7
|
-
export declare class FontSizeTheme extends BaseTheme implements Record<
|
|
7
|
+
export declare class FontSizeTheme extends BaseTheme implements Record<ResponsiveBreakpointClassKey, string> {
|
|
8
|
+
/** Base: apply font size using --fs (non-responsive) */
|
|
9
|
+
base: string;
|
|
8
10
|
/** Desktop: apply font size using --fs-desktop */
|
|
9
11
|
desktop: string;
|
|
10
12
|
/** Tablet: apply font size using --fs-tablet */
|
|
11
13
|
tablet: string;
|
|
12
14
|
/** Mobile: apply font size using --fs-mobile */
|
|
13
15
|
mobile: string;
|
|
14
|
-
getClasses(
|
|
16
|
+
getClasses(extractedKeys: CategoryProps): string[];
|
|
15
17
|
}
|
|
16
18
|
//# sourceMappingURL=fontSizeTheme.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fontSizeTheme.d.ts","sourceRoot":"","sources":["../../../../../src/components/ui/theme/size/fontSizeTheme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,EAAE,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"fontSizeTheme.d.ts","sourceRoot":"","sources":["../../../../../src/components/ui/theme/size/fontSizeTheme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,EAAE,aAAa,EAAE,4BAA4B,EAAE,MAAM,aAAa,CAAC;AAE/E;;;GAGG;AACH,qBAAa,aAAc,SAAQ,SAAU,YAAW,MAAM,CAAC,4BAA4B,EAAE,MAAM,CAAC;IAClG,wDAAwD;IACxD,IAAI,EAAE,MAAM,CAAwB;IACpC,kDAAkD;IAClD,OAAO,EAAE,MAAM,CAAgC;IAC/C,gDAAgD;IAChD,MAAM,EAAE,MAAM,CAA0C;IACxD,gDAAgD;IAChD,MAAM,EAAE,MAAM,CAA0C;IAExD,UAAU,CAAC,aAAa,EAAE,aAAa,GAAG,MAAM,EAAE;CAQnD"}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { BaseTheme } from "../common/baseTheme";
|
|
2
|
-
import type { CategoryProps,
|
|
2
|
+
import type { CategoryProps, ResponsiveBreakpointClassKey } from "../../props";
|
|
3
3
|
/**
|
|
4
|
-
* Gap theme - applies gap using
|
|
5
|
-
*
|
|
4
|
+
* Gap theme - applies gap using CSS variables.
|
|
5
|
+
* Uses breakpoint-specific variables when responsive=true, otherwise uses simple --gap variable.
|
|
6
6
|
*/
|
|
7
|
-
export declare class GapTheme extends BaseTheme implements Record<
|
|
7
|
+
export declare class GapTheme extends BaseTheme implements Record<ResponsiveBreakpointClassKey, string> {
|
|
8
|
+
/** Base: apply gap using --gap (non-responsive) */
|
|
9
|
+
base: string;
|
|
8
10
|
/** Desktop: apply gap using --gap-desktop */
|
|
9
11
|
desktop: string;
|
|
10
12
|
/** Tablet: apply gap using --gap-tablet */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gapTheme.d.ts","sourceRoot":"","sources":["../../../../../src/components/ui/theme/size/gapTheme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,EAAE,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"gapTheme.d.ts","sourceRoot":"","sources":["../../../../../src/components/ui/theme/size/gapTheme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,EAAE,aAAa,EAAE,4BAA4B,EAAE,MAAM,aAAa,CAAC;AAE/E;;;GAGG;AACH,qBAAa,QAAS,SAAQ,SAAU,YAAW,MAAM,CAAC,4BAA4B,EAAE,MAAM,CAAC;IAC7F,mDAAmD;IACnD,IAAI,EAAE,MAAM,CAAiB;IAC7B,6CAA6C;IAC7C,OAAO,EAAE,MAAM,CAAyB;IACxC,2CAA2C;IAC3C,MAAM,EAAE,MAAM,CAAmC;IACjD,2CAA2C;IAC3C,MAAM,EAAE,MAAM,CAAmC;IAEjD,UAAU,CAAC,aAAa,EAAE,aAAa,GAAG,MAAM,EAAE;CAWnD"}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { BaseTheme } from "../common/baseTheme";
|
|
2
|
-
import type { CategoryProps,
|
|
2
|
+
import type { CategoryProps, ResponsiveBreakpointClassKey } from "../../props";
|
|
3
3
|
/**
|
|
4
|
-
* Horizontal padding theme - applies px using
|
|
5
|
-
*
|
|
4
|
+
* Horizontal padding theme - applies px using CSS variables.
|
|
5
|
+
* Uses breakpoint-specific variables when responsive=true, otherwise uses simple --px variable.
|
|
6
6
|
*/
|
|
7
|
-
export declare class PxTheme extends BaseTheme implements Record<
|
|
7
|
+
export declare class PxTheme extends BaseTheme implements Record<ResponsiveBreakpointClassKey, string> {
|
|
8
|
+
/** Base: apply horizontal padding using --px (non-responsive) */
|
|
9
|
+
base: string;
|
|
8
10
|
/** Desktop: apply horizontal padding using --px-desktop */
|
|
9
11
|
desktop: string;
|
|
10
12
|
/** Tablet: apply horizontal padding using --px-tablet */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pxTheme.d.ts","sourceRoot":"","sources":["../../../../../src/components/ui/theme/size/pxTheme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,EAAE,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"pxTheme.d.ts","sourceRoot":"","sources":["../../../../../src/components/ui/theme/size/pxTheme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,EAAE,aAAa,EAAE,4BAA4B,EAAE,MAAM,aAAa,CAAC;AAE/E;;;GAGG;AACH,qBAAa,OAAQ,SAAQ,SAAU,YAAW,MAAM,CAAC,4BAA4B,EAAE,MAAM,CAAC;IAC5F,iEAAiE;IACjE,IAAI,EAAE,MAAM,CAAe;IAC3B,2DAA2D;IAC3D,OAAO,EAAE,MAAM,CAAuB;IACtC,yDAAyD;IACzD,MAAM,EAAE,MAAM,CAAiC;IAC/C,yDAAyD;IACzD,MAAM,EAAE,MAAM,CAAiC;IAE/C,UAAU,CAAC,aAAa,EAAE,aAAa,GAAG,MAAM,EAAE;CAWnD"}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { BaseTheme } from "../common/baseTheme";
|
|
2
|
-
import type { CategoryProps,
|
|
2
|
+
import type { CategoryProps, ResponsiveBreakpointClassKey } from "../../props";
|
|
3
3
|
/**
|
|
4
|
-
* Vertical padding theme - applies py using
|
|
5
|
-
*
|
|
4
|
+
* Vertical padding theme - applies py using CSS variables.
|
|
5
|
+
* Uses breakpoint-specific variables when responsive=true, otherwise uses simple --py variable.
|
|
6
6
|
*/
|
|
7
|
-
export declare class PyTheme extends BaseTheme implements Record<
|
|
7
|
+
export declare class PyTheme extends BaseTheme implements Record<ResponsiveBreakpointClassKey, string> {
|
|
8
|
+
/** Base: apply vertical padding using --py (non-responsive) */
|
|
9
|
+
base: string;
|
|
8
10
|
/** Desktop: apply vertical padding using --py-desktop */
|
|
9
11
|
desktop: string;
|
|
10
12
|
/** Tablet: apply vertical padding using --py-tablet */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pyTheme.d.ts","sourceRoot":"","sources":["../../../../../src/components/ui/theme/size/pyTheme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,EAAE,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"pyTheme.d.ts","sourceRoot":"","sources":["../../../../../src/components/ui/theme/size/pyTheme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,EAAE,aAAa,EAAE,4BAA4B,EAAE,MAAM,aAAa,CAAC;AAE/E;;;GAGG;AACH,qBAAa,OAAQ,SAAQ,SAAU,YAAW,MAAM,CAAC,4BAA4B,EAAE,MAAM,CAAC;IAC5F,+DAA+D;IAC/D,IAAI,EAAE,MAAM,CAAe;IAC3B,yDAAyD;IACzD,OAAO,EAAE,MAAM,CAAuB;IACtC,uDAAuD;IACvD,MAAM,EAAE,MAAM,CAAiC;IAC/C,uDAAuD;IACvD,MAAM,EAAE,MAAM,CAAiC;IAE/C,UAAU,CAAC,aAAa,EAAE,aAAa,GAAG,MAAM,EAAE;CAWnD"}
|
|
@@ -7,6 +7,7 @@ import { PlTheme } from "./size/plTheme";
|
|
|
7
7
|
import { ListStyleTheme } from "./list/listStyleTheme";
|
|
8
8
|
import { LineHeightTheme } from "./size/lineHeightTheme";
|
|
9
9
|
import { FontSizeTheme } from "./size/fontSizeTheme";
|
|
10
|
+
import { TYPOGRAPHY_CATEGORIES } from "../props";
|
|
10
11
|
export interface TypographyTheme extends BaseTypographyComponentTheme {
|
|
11
12
|
size: {
|
|
12
13
|
text: FontSizeTheme;
|
|
@@ -27,7 +28,7 @@ export interface LinkTheme extends BaseTypographyComponentTheme {
|
|
|
27
28
|
};
|
|
28
29
|
layout: DefaultLayoutThemes;
|
|
29
30
|
}
|
|
30
|
-
export declare const createTypographyComponentTheme: (tag: React.ElementType, base?: string, fontSizeTheme?: FontSizeTheme, defaults?: Partial<TypographyProps>, lineHeightTheme?: LineHeightTheme) => ComponentTheme<TypographyProps, TypographyTheme>;
|
|
31
|
+
export declare const createTypographyComponentTheme: (tag: React.ElementType, base?: string, fontSizeTheme?: FontSizeTheme, defaults?: Partial<TypographyProps>, lineHeightTheme?: LineHeightTheme, categories?: typeof TYPOGRAPHY_CATEGORIES) => ComponentTheme<TypographyProps, TypographyTheme>;
|
|
31
32
|
export declare const pageTitleTheme: ComponentTheme<TypographyProps, TypographyTheme>;
|
|
32
33
|
export declare const sectionTitleTheme: ComponentTheme<TypographyProps, TypographyTheme>;
|
|
33
34
|
export declare const titleTheme: ComponentTheme<TypographyProps, TypographyTheme>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typographyTheme.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/theme/typographyTheme.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAEhE,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EACL,4BAA4B,EAC5B,cAAc,EACd,mBAAmB,EAEpB,MAAM,yBAAyB,CAAC;AACjC,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAEjE,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AACzC,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"typographyTheme.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/theme/typographyTheme.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAEhE,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EACL,4BAA4B,EAC5B,cAAc,EACd,mBAAmB,EAEpB,MAAM,yBAAyB,CAAC;AACjC,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAEjE,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AACzC,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,qBAAqB,EAAmB,MAAM,UAAU,CAAC;AAGlE,MAAM,WAAW,eAAgB,SAAQ,4BAA4B;IACnE,IAAI,EAAE;QACJ,IAAI,EAAE,aAAa,CAAC;QACpB,UAAU,EAAE,eAAe,CAAC;KAC7B,CAAC;IACF,UAAU,EAAE;QACV,IAAI,EAAE,mBAAmB,CAAC;KAC3B,CAAC;IACF,MAAM,EAAE,mBAAmB,CAAC;CAC7B;AAED,MAAM,WAAW,SAAU,SAAQ,4BAA4B;IAC7D,IAAI,EAAE;QACJ,IAAI,EAAE,aAAa,CAAC;QACpB,UAAU,EAAE,eAAe,CAAC;KAC7B,CAAC;IACF,UAAU,EAAE;QACV,IAAI,EAAE,gBAAgB,CAAC;KACxB,CAAC;IACF,MAAM,EAAE,mBAAmB,CAAC;CAC7B;AAED,eAAO,MAAM,8BAA8B,GACzC,KAAK,KAAK,CAAC,WAAW,EACtB,OAAM,MAAuB,EAC7B,gBAAe,aAAmC,EAClD,WAAU,OAAO,CAAC,eAAe,CAAM,EACvC,kBAAiB,eAAuC,EACxD,aAAY,OAAO,qBAA6C,KAC/D,cAAc,CAAC,eAAe,EAAE,eAAe,CAqBjD,CAAC;AAGF,eAAO,MAAM,cAAc,EAAE,cAAc,CAAC,eAAe,EAAE,eAAe,CAO3E,CAAC;AAGF,eAAO,MAAM,iBAAiB,EAAE,cAAc,CAAC,eAAe,EAAE,eAAe,CAO9E,CAAC;AAGF,eAAO,MAAM,UAAU,EAAE,cAAc,CAAC,eAAe,EAAE,eAAe,CAOvE,CAAC;AAGF,eAAO,MAAM,SAAS,EAAE,cAAc,CAAC,eAAe,EAAE,eAAe,CAKtE,CAAC;AAGF,eAAO,MAAM,SAAS,EAAE,cAAc,CAAC,eAAe,EAAE,SAAS,CAgBhE,CAAC;AAGF,eAAO,MAAM,aAAa,EAAE,cAAc,CAAC,eAAe,EAAE,eAAe,CAgB1E,CAAC;AAEF,MAAM,WAAW,SAAU,SAAQ,4BAA4B;IAC7D,IAAI,EAAE;QACJ,IAAI,EAAE,aAAa,CAAC;QACpB,UAAU,EAAE,eAAe,CAAC;QAC5B,WAAW,EAAE,OAAO,CAAC;KACtB,CAAA;IACD,UAAU,EAAE;QACV,IAAI,EAAE,mBAAmB,CAAC;KAC3B,CAAC;IACF,MAAM,EAAE,mBAAmB,CAAC;IAC5B,SAAS,EAAE,cAAc,CAAC;CAC3B;AAGD,eAAO,MAAM,SAAS,EAAE,cAAc,CAAC,SAAS,EAAE,SAAS,CA2B1D,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, AppearanceProps, VariantProps, ListStyleProps, PaddingProps } from './props';
|
|
2
|
+
import type { BaseProps, FontWeightProps, FontStyleProps, TextDecorationProps, TextTransformProps, FontFamilyProps, TextAlignProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, AppearanceProps, VariantProps, ListStyleProps, PaddingProps, TransparentProps, ResponsiveProps } from './props';
|
|
3
3
|
/** Typography component props (for Text, PageTitle, SectionTitle, Title, ListItem) */
|
|
4
|
-
export type TypographyProps = BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, 'className' | 'children'> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'className' | 'children'>> & {
|
|
4
|
+
export type TypographyProps = BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & 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 */
|
|
@@ -46,7 +46,7 @@ export type ListProps = BaseProps & FontWeightProps & FontStyleProps & TextDecor
|
|
|
46
46
|
*
|
|
47
47
|
* @see {@link TypographyProps} for all available props
|
|
48
48
|
*/
|
|
49
|
-
export declare const PageTitle: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
49
|
+
export declare const PageTitle: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
50
50
|
/** URL to navigate to (renders component as anchor tag) */
|
|
51
51
|
href?: string;
|
|
52
52
|
/** Custom HTML tag or React component to render as */
|
|
@@ -79,7 +79,7 @@ export declare const PageTitle: React.ForwardRefExoticComponent<BaseProps & Font
|
|
|
79
79
|
*
|
|
80
80
|
* @see {@link TypographyProps} for all available props
|
|
81
81
|
*/
|
|
82
|
-
export declare const SectionTitle: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
82
|
+
export declare const SectionTitle: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
83
83
|
/** URL to navigate to (renders component as anchor tag) */
|
|
84
84
|
href?: string;
|
|
85
85
|
/** Custom HTML tag or React component to render as */
|
|
@@ -111,7 +111,7 @@ export declare const SectionTitle: React.ForwardRefExoticComponent<BaseProps & F
|
|
|
111
111
|
*
|
|
112
112
|
* @see {@link TypographyProps} for all available props
|
|
113
113
|
*/
|
|
114
|
-
export declare const Title: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
114
|
+
export declare const Title: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
115
115
|
/** URL to navigate to (renders component as anchor tag) */
|
|
116
116
|
href?: string;
|
|
117
117
|
/** Custom HTML tag or React component to render as */
|
|
@@ -150,7 +150,7 @@ export declare const Title: React.ForwardRefExoticComponent<BaseProps & FontWeig
|
|
|
150
150
|
*
|
|
151
151
|
* @see {@link TypographyProps} for all available props
|
|
152
152
|
*/
|
|
153
|
-
export declare const Text: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
153
|
+
export declare const Text: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
154
154
|
/** URL to navigate to (renders component as anchor tag) */
|
|
155
155
|
href?: string;
|
|
156
156
|
/** Custom HTML tag or React component to render as */
|
|
@@ -220,7 +220,7 @@ export declare const Link: React.ForwardRefExoticComponent<BaseProps & FontWeigh
|
|
|
220
220
|
*
|
|
221
221
|
* @see {@link TypographyProps} for all available props
|
|
222
222
|
*/
|
|
223
|
-
export declare const ListItem: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
223
|
+
export declare const ListItem: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & VariantProps & TransparentProps & ResponsiveProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
224
224
|
/** URL to navigate to (renders component as anchor tag) */
|
|
225
225
|
href?: string;
|
|
226
226
|
/** Custom HTML tag or React component to render as */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../../src/components/ui/typography.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,eAAe,EACf,YAAY,EACZ,cAAc,EACd,YAAY,
|
|
1
|
+
{"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../../src/components/ui/typography.tsx"],"names":[],"mappings":"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"}
|