@tosui/react 0.0.1

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.
Files changed (63) hide show
  1. package/README.md +73 -0
  2. package/dist/components/Box/Box.d.ts +35 -0
  3. package/dist/components/Box/Box.d.ts.map +1 -0
  4. package/dist/components/Box/styleParts/borders.d.ts +97 -0
  5. package/dist/components/Box/styleParts/borders.d.ts.map +1 -0
  6. package/dist/components/Box/styleParts/colors.d.ts +288 -0
  7. package/dist/components/Box/styleParts/colors.d.ts.map +1 -0
  8. package/dist/components/Box/styleParts/display.d.ts +54 -0
  9. package/dist/components/Box/styleParts/display.d.ts.map +1 -0
  10. package/dist/components/Box/styleParts/flexbox.d.ts +174 -0
  11. package/dist/components/Box/styleParts/flexbox.d.ts.map +1 -0
  12. package/dist/components/Box/styleParts/grid.d.ts +45 -0
  13. package/dist/components/Box/styleParts/grid.d.ts.map +1 -0
  14. package/dist/components/Box/styleParts/inset.d.ts +22 -0
  15. package/dist/components/Box/styleParts/inset.d.ts.map +1 -0
  16. package/dist/components/Box/styleParts/interactions.d.ts +128 -0
  17. package/dist/components/Box/styleParts/interactions.d.ts.map +1 -0
  18. package/dist/components/Box/styleParts/margin.d.ts +22 -0
  19. package/dist/components/Box/styleParts/margin.d.ts.map +1 -0
  20. package/dist/components/Box/styleParts/opacity.d.ts +34 -0
  21. package/dist/components/Box/styleParts/opacity.d.ts.map +1 -0
  22. package/dist/components/Box/styleParts/overflow.d.ts +55 -0
  23. package/dist/components/Box/styleParts/overflow.d.ts.map +1 -0
  24. package/dist/components/Box/styleParts/padding.d.ts +22 -0
  25. package/dist/components/Box/styleParts/padding.d.ts.map +1 -0
  26. package/dist/components/Box/styleParts/position.d.ts +39 -0
  27. package/dist/components/Box/styleParts/position.d.ts.map +1 -0
  28. package/dist/components/Box/styleParts/reset.d.ts +28 -0
  29. package/dist/components/Box/styleParts/reset.d.ts.map +1 -0
  30. package/dist/components/Box/styleParts/roundness.d.ts +83 -0
  31. package/dist/components/Box/styleParts/roundness.d.ts.map +1 -0
  32. package/dist/components/Box/styleParts/shadows.d.ts +34 -0
  33. package/dist/components/Box/styleParts/shadows.d.ts.map +1 -0
  34. package/dist/components/Box/styleParts/sizing.d.ts +25 -0
  35. package/dist/components/Box/styleParts/sizing.d.ts.map +1 -0
  36. package/dist/components/Box/styleParts/text.d.ts +66 -0
  37. package/dist/components/Box/styleParts/text.d.ts.map +1 -0
  38. package/dist/components/Box/styleParts/types.d.ts +2 -0
  39. package/dist/components/Box/styleParts/types.d.ts.map +1 -0
  40. package/dist/components/Box/styleParts/typography.d.ts +130 -0
  41. package/dist/components/Box/styleParts/typography.d.ts.map +1 -0
  42. package/dist/components/Box/styleParts/zIndex.d.ts +49 -0
  43. package/dist/components/Box/styleParts/zIndex.d.ts.map +1 -0
  44. package/dist/components/Heading/Heading.d.ts +27 -0
  45. package/dist/components/Heading/Heading.d.ts.map +1 -0
  46. package/dist/components/Heading/index.d.ts +2 -0
  47. package/dist/components/Heading/index.d.ts.map +1 -0
  48. package/dist/components/Text/Text.d.ts +28 -0
  49. package/dist/components/Text/Text.d.ts.map +1 -0
  50. package/dist/components/Text/index.d.ts +2 -0
  51. package/dist/components/Text/index.d.ts.map +1 -0
  52. package/dist/fonts.css +1 -0
  53. package/dist/index.css +4721 -0
  54. package/dist/index.d.ts +4 -0
  55. package/dist/index.d.ts.map +1 -0
  56. package/dist/index.js +2419 -0
  57. package/dist/index.js.map +1 -0
  58. package/dist/types/Polymorphic.d.ts +24 -0
  59. package/dist/types/Polymorphic.d.ts.map +1 -0
  60. package/dist/utils/breakpoints.stylex.d.ts +35 -0
  61. package/dist/utils/breakpoints.stylex.d.ts.map +1 -0
  62. package/dist/vite.svg +1 -0
  63. package/package.json +66 -0
@@ -0,0 +1,83 @@
1
+ import { ResponsiveValue } from '../../../utils/breakpoints.stylex';
2
+ import * as stylex from "@stylexjs/stylex";
3
+ type RoundedValues = keyof typeof roundedTopLeftStyles;
4
+ declare const roundedTopLeftStyles: Readonly<{
5
+ readonly full: Readonly<{
6
+ readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", "var(--t-radius-full)">;
7
+ }>;
8
+ readonly lg: Readonly<{
9
+ readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", "var(--t-radius-lg)">;
10
+ }>;
11
+ readonly md: Readonly<{
12
+ readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", "var(--t-radius-md)">;
13
+ }>;
14
+ readonly none: Readonly<{
15
+ readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", "var(--t-radius-none)">;
16
+ }>;
17
+ readonly sm: Readonly<{
18
+ readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", "var(--t-radius-sm)">;
19
+ }>;
20
+ }>;
21
+ type Rounded = ResponsiveValue<RoundedValues>;
22
+ export type RoundnessProps = {
23
+ rounded?: Rounded;
24
+ roundedTop?: Rounded;
25
+ roundedBottom?: Rounded;
26
+ roundedLeft?: Rounded;
27
+ roundedRight?: Rounded;
28
+ roundedTopLeft?: Rounded;
29
+ roundedTopRight?: Rounded;
30
+ roundedBottomLeft?: Rounded;
31
+ roundedBottomRight?: Rounded;
32
+ };
33
+ export declare function getRoundnessStyles(props: RoundnessProps): (Readonly<{
34
+ readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", "var(--t-radius-none)">;
35
+ }> | Readonly<{
36
+ readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", "var(--t-radius-sm)">;
37
+ }> | Readonly<{
38
+ readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", "var(--t-radius-md)">;
39
+ }> | Readonly<{
40
+ readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", "var(--t-radius-lg)">;
41
+ }> | Readonly<{
42
+ readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", "var(--t-radius-full)">;
43
+ }> | readonly [Readonly<{
44
+ borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", "var(--t-radius-full)" | "var(--t-radius-lg)" | "var(--t-radius-md)" | "var(--t-radius-none)" | "var(--t-radius-sm)">;
45
+ }>, stylex.InlineStyles] | Readonly<{
46
+ readonly borderTopRightRadius: stylex.StyleXClassNameFor<"borderTopRightRadius", "var(--t-radius-none)">;
47
+ }> | Readonly<{
48
+ readonly borderTopRightRadius: stylex.StyleXClassNameFor<"borderTopRightRadius", "var(--t-radius-sm)">;
49
+ }> | Readonly<{
50
+ readonly borderTopRightRadius: stylex.StyleXClassNameFor<"borderTopRightRadius", "var(--t-radius-md)">;
51
+ }> | Readonly<{
52
+ readonly borderTopRightRadius: stylex.StyleXClassNameFor<"borderTopRightRadius", "var(--t-radius-lg)">;
53
+ }> | Readonly<{
54
+ readonly borderTopRightRadius: stylex.StyleXClassNameFor<"borderTopRightRadius", "var(--t-radius-full)">;
55
+ }> | readonly [Readonly<{
56
+ borderTopRightRadius: stylex.StyleXClassNameFor<"borderTopRightRadius", "var(--t-radius-full)" | "var(--t-radius-lg)" | "var(--t-radius-md)" | "var(--t-radius-none)" | "var(--t-radius-sm)">;
57
+ }>, stylex.InlineStyles] | Readonly<{
58
+ readonly borderBottomRightRadius: stylex.StyleXClassNameFor<"borderBottomRightRadius", "var(--t-radius-none)">;
59
+ }> | Readonly<{
60
+ readonly borderBottomRightRadius: stylex.StyleXClassNameFor<"borderBottomRightRadius", "var(--t-radius-sm)">;
61
+ }> | Readonly<{
62
+ readonly borderBottomRightRadius: stylex.StyleXClassNameFor<"borderBottomRightRadius", "var(--t-radius-md)">;
63
+ }> | Readonly<{
64
+ readonly borderBottomRightRadius: stylex.StyleXClassNameFor<"borderBottomRightRadius", "var(--t-radius-lg)">;
65
+ }> | Readonly<{
66
+ readonly borderBottomRightRadius: stylex.StyleXClassNameFor<"borderBottomRightRadius", "var(--t-radius-full)">;
67
+ }> | readonly [Readonly<{
68
+ borderBottomRightRadius: stylex.StyleXClassNameFor<"borderBottomRightRadius", "var(--t-radius-full)" | "var(--t-radius-lg)" | "var(--t-radius-md)" | "var(--t-radius-none)" | "var(--t-radius-sm)">;
69
+ }>, stylex.InlineStyles] | Readonly<{
70
+ readonly borderBottomLeftRadius: stylex.StyleXClassNameFor<"borderBottomLeftRadius", "var(--t-radius-none)">;
71
+ }> | Readonly<{
72
+ readonly borderBottomLeftRadius: stylex.StyleXClassNameFor<"borderBottomLeftRadius", "var(--t-radius-sm)">;
73
+ }> | Readonly<{
74
+ readonly borderBottomLeftRadius: stylex.StyleXClassNameFor<"borderBottomLeftRadius", "var(--t-radius-md)">;
75
+ }> | Readonly<{
76
+ readonly borderBottomLeftRadius: stylex.StyleXClassNameFor<"borderBottomLeftRadius", "var(--t-radius-lg)">;
77
+ }> | Readonly<{
78
+ readonly borderBottomLeftRadius: stylex.StyleXClassNameFor<"borderBottomLeftRadius", "var(--t-radius-full)">;
79
+ }> | readonly [Readonly<{
80
+ borderBottomLeftRadius: stylex.StyleXClassNameFor<"borderBottomLeftRadius", "var(--t-radius-full)" | "var(--t-radius-lg)" | "var(--t-radius-md)" | "var(--t-radius-none)" | "var(--t-radius-sm)">;
81
+ }>, stylex.InlineStyles])[];
82
+ export {};
83
+ //# sourceMappingURL=roundness.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"roundness.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/roundness.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAEL,KAAK,eAAe,EAGrB,MAAM,mCAAmC,CAAC;AAE3C,KAAK,aAAa,GAAG,MAAM,OAAO,oBAAoB,CAAC;AAUvD,QAAA,MAAM,oBAAoB;;;;;;;;;;;;;;;;EAgBxB,CAAC;AA4GH,KAAK,OAAO,GAAG,eAAe,CAAC,aAAa,CAAC,CAAC;AAE9C,MAAM,MAAM,cAAc,GAAG;IAC3B,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B,CAAC;AAEF,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BA8DvD"}
@@ -0,0 +1,34 @@
1
+ import { ResponsiveValue } from '../../../utils/breakpoints.stylex';
2
+ import * as stylex from "@stylexjs/stylex";
3
+ type ShadowValues = keyof typeof shadowStyles;
4
+ declare const shadowStyles: Readonly<{
5
+ readonly lg: Readonly<{
6
+ readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", "var(--t-shadow-lg)">;
7
+ }>;
8
+ readonly md: Readonly<{
9
+ readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", "var(--t-shadow-md)">;
10
+ }>;
11
+ readonly none: Readonly<{
12
+ readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", "var(--t-shadow-none)">;
13
+ }>;
14
+ readonly sm: Readonly<{
15
+ readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", "var(--t-shadow-sm)">;
16
+ }>;
17
+ }>;
18
+ type Shadow = ResponsiveValue<ShadowValues>;
19
+ export type ShadowProps = {
20
+ shadow?: Shadow;
21
+ };
22
+ export declare function getShadowStyles(props: ShadowProps): (Readonly<{
23
+ readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", "var(--t-shadow-none)">;
24
+ }> | Readonly<{
25
+ readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", "var(--t-shadow-sm)">;
26
+ }> | Readonly<{
27
+ readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", "var(--t-shadow-md)">;
28
+ }> | Readonly<{
29
+ readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", "var(--t-shadow-lg)">;
30
+ }> | readonly [Readonly<{
31
+ boxShadow: stylex.StyleXClassNameFor<"boxShadow", "var(--t-shadow-lg)" | "var(--t-shadow-md)" | "var(--t-shadow-none)" | "var(--t-shadow-sm)">;
32
+ }>, stylex.InlineStyles])[];
33
+ export {};
34
+ //# sourceMappingURL=shadows.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"shadows.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/shadows.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAEL,KAAK,eAAe,EAGrB,MAAM,mCAAmC,CAAC;AAE3C,KAAK,YAAY,GAAG,MAAM,OAAO,YAAY,CAAC;AAS9C,QAAA,MAAM,YAAY;;;;;;;;;;;;;EAiBhB,CAAC;AAgBH,KAAK,MAAM,GAAG,eAAe,CAAC,YAAY,CAAC,CAAC;AAE5C,MAAM,MAAM,WAAW,GAAG;IACxB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,wBAAgB,eAAe,CAAC,KAAK,EAAE,WAAW;;;;;;;;;;4BAYjD"}
@@ -0,0 +1,25 @@
1
+ import { ResponsiveValue } from '../../../utils/breakpoints.stylex';
2
+ import { SpacingValue } from './types';
3
+ import * as stylex from "@stylexjs/stylex";
4
+ export type SizeProps = {
5
+ w?: ResponsiveValue<SpacingValue>;
6
+ h?: ResponsiveValue<SpacingValue>;
7
+ minW?: ResponsiveValue<SpacingValue>;
8
+ maxW?: ResponsiveValue<SpacingValue>;
9
+ minH?: ResponsiveValue<SpacingValue>;
10
+ maxH?: ResponsiveValue<SpacingValue>;
11
+ };
12
+ export declare function getSizingStyles(props: SizeProps): (readonly [Readonly<{
13
+ height: stylex.StyleXClassNameFor<"height", string | undefined>;
14
+ }>, stylex.InlineStyles] | readonly [Readonly<{
15
+ maxHeight: stylex.StyleXClassNameFor<"maxHeight", string | undefined>;
16
+ }>, stylex.InlineStyles] | readonly [Readonly<{
17
+ maxWidth: stylex.StyleXClassNameFor<"maxWidth", string | undefined>;
18
+ }>, stylex.InlineStyles] | readonly [Readonly<{
19
+ minHeight: stylex.StyleXClassNameFor<"minHeight", string | undefined>;
20
+ }>, stylex.InlineStyles] | readonly [Readonly<{
21
+ minWidth: stylex.StyleXClassNameFor<"minWidth", string | undefined>;
22
+ }>, stylex.InlineStyles] | readonly [Readonly<{
23
+ width: stylex.StyleXClassNameFor<"width", string | undefined>;
24
+ }>, stylex.InlineStyles])[];
25
+ //# sourceMappingURL=sizing.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sizing.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/sizing.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAEL,KAAK,eAAe,EAGrB,MAAM,mCAAmC,CAAC;AAC3C,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,SAAS,CAAC;AAE5C,MAAM,MAAM,SAAS,GAAG;IACtB,CAAC,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IAClC,CAAC,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IAClC,IAAI,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACrC,IAAI,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACrC,IAAI,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACrC,IAAI,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;CACtC,CAAC;AA0GF,wBAAgB,eAAe,CAAC,KAAK,EAAE,SAAS;;;;;;;;;;;;4BAgC/C"}
@@ -0,0 +1,66 @@
1
+ import { ResponsiveValue } from '../../../utils/breakpoints.stylex';
2
+ import * as stylex from "@stylexjs/stylex";
3
+ type TextAlignValues = keyof typeof textAlignStyles;
4
+ type WhiteSpaceValues = keyof typeof whiteSpaceStyles;
5
+ declare const textAlignStyles: Readonly<{
6
+ readonly center: Readonly<{
7
+ readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "center">;
8
+ }>;
9
+ readonly justify: Readonly<{
10
+ readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "justify">;
11
+ }>;
12
+ readonly left: Readonly<{
13
+ readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "left">;
14
+ }>;
15
+ readonly right: Readonly<{
16
+ readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "right">;
17
+ }>;
18
+ }>;
19
+ declare const whiteSpaceStyles: Readonly<{
20
+ readonly normal: Readonly<{
21
+ readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "normal">;
22
+ }>;
23
+ readonly nowrap: Readonly<{
24
+ readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "nowrap">;
25
+ }>;
26
+ readonly pre: Readonly<{
27
+ readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "pre">;
28
+ }>;
29
+ readonly preLine: Readonly<{
30
+ readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "pre-line">;
31
+ }>;
32
+ readonly preWrap: Readonly<{
33
+ readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "pre-wrap">;
34
+ }>;
35
+ }>;
36
+ export type TextAlign = ResponsiveValue<TextAlignValues>;
37
+ export type WhiteSpace = ResponsiveValue<WhiteSpaceValues>;
38
+ export type TextProps = {
39
+ textAlign?: TextAlign;
40
+ whiteSpace?: WhiteSpace;
41
+ };
42
+ export declare function getTextStyles(props: TextProps): (Readonly<{
43
+ readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "center">;
44
+ }> | Readonly<{
45
+ readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "left">;
46
+ }> | Readonly<{
47
+ readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "right">;
48
+ }> | Readonly<{
49
+ readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "justify">;
50
+ }> | readonly [Readonly<{
51
+ textAlign: stylex.StyleXClassNameFor<"textAlign", "center" | "left" | "right" | "justify">;
52
+ }>, stylex.InlineStyles] | Readonly<{
53
+ readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "pre">;
54
+ }> | Readonly<{
55
+ readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "normal">;
56
+ }> | Readonly<{
57
+ readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "nowrap">;
58
+ }> | Readonly<{
59
+ readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "pre-line">;
60
+ }> | Readonly<{
61
+ readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "pre-wrap">;
62
+ }> | readonly [Readonly<{
63
+ whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "pre" | "normal" | "nowrap" | "preLine" | "preWrap">;
64
+ }>, stylex.InlineStyles])[];
65
+ export {};
66
+ //# sourceMappingURL=text.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"text.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/text.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAEL,KAAK,eAAe,EAGrB,MAAM,mCAAmC,CAAC;AAE3C,KAAK,eAAe,GAAG,MAAM,OAAO,eAAe,CAAC;AACpD,KAAK,gBAAgB,GAAG,MAAM,OAAO,gBAAgB,CAAC;AAEtD,QAAA,MAAM,eAAe;;;;;;;;;;;;;EAanB,CAAC;AAeH,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;EAgBpB,CAAC;AAeH,MAAM,MAAM,SAAS,GAAG,eAAe,CAAC,eAAe,CAAC,CAAC;AACzD,MAAM,MAAM,UAAU,GAAG,eAAe,CAAC,gBAAgB,CAAC,CAAC;AAE3D,MAAM,MAAM,SAAS,GAAG;IACtB,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,UAAU,CAAC,EAAE,UAAU,CAAC;CACzB,CAAC;AAEF,wBAAgB,aAAa,CAAC,KAAK,EAAE,SAAS;;;;;;;;;;;;;;;;;;;;;;4BA0B7C"}
@@ -0,0 +1,2 @@
1
+ export type SpacingValue = number | string;
2
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GAAG,MAAM,GAAG,MAAM,CAAC"}
@@ -0,0 +1,130 @@
1
+ import { ResponsiveValue } from '../../../utils/breakpoints.stylex';
2
+ import * as stylex from "@stylexjs/stylex";
3
+ type FontSizeValues = keyof typeof fontSizeStyles;
4
+ type FontFamilyValues = keyof typeof fontFamilyStyles;
5
+ type FontWeightValues = keyof typeof fontWeightStyles;
6
+ type LineHeightValues = keyof typeof lineHeightStyles;
7
+ declare const fontSizeStyles: Readonly<{
8
+ readonly "2xl": Readonly<{
9
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-2xl)">;
10
+ }>;
11
+ readonly "3xl": Readonly<{
12
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-3xl)">;
13
+ }>;
14
+ readonly "4xl": Readonly<{
15
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-4xl)">;
16
+ }>;
17
+ readonly "5xl": Readonly<{
18
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-5xl)">;
19
+ }>;
20
+ readonly lg: Readonly<{
21
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-lg)">;
22
+ }>;
23
+ readonly md: Readonly<{
24
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-md)">;
25
+ }>;
26
+ readonly sm: Readonly<{
27
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-sm)">;
28
+ }>;
29
+ readonly xl: Readonly<{
30
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-xl)">;
31
+ }>;
32
+ readonly xs: Readonly<{
33
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-xs)">;
34
+ }>;
35
+ }>;
36
+ declare const fontFamilyStyles: Readonly<{
37
+ readonly body: Readonly<{
38
+ readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", "var(--t-font-family-body)">;
39
+ }>;
40
+ readonly heading: Readonly<{
41
+ readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", "var(--t-font-family-heading)">;
42
+ }>;
43
+ readonly mono: Readonly<{
44
+ readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", "var(--t-font-family-mono)">;
45
+ }>;
46
+ }>;
47
+ declare const fontWeightStyles: Readonly<{
48
+ readonly bold: Readonly<{
49
+ readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", "var(--t-font-weight-bold)">;
50
+ }>;
51
+ readonly medium: Readonly<{
52
+ readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", "var(--t-font-weight-medium)">;
53
+ }>;
54
+ readonly normal: Readonly<{
55
+ readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", "var(--t-font-weight-normal)">;
56
+ }>;
57
+ readonly semibold: Readonly<{
58
+ readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", "var(--t-font-weight-semibold)">;
59
+ }>;
60
+ }>;
61
+ declare const lineHeightStyles: Readonly<{
62
+ readonly normal: Readonly<{
63
+ readonly lineHeight: stylex.StyleXClassNameFor<"lineHeight", "var(--t-line-height-normal)">;
64
+ }>;
65
+ readonly relaxed: Readonly<{
66
+ readonly lineHeight: stylex.StyleXClassNameFor<"lineHeight", "var(--t-line-height-relaxed)">;
67
+ }>;
68
+ readonly tight: Readonly<{
69
+ readonly lineHeight: stylex.StyleXClassNameFor<"lineHeight", "var(--t-line-height-tight)">;
70
+ }>;
71
+ }>;
72
+ export type FontSize = ResponsiveValue<FontSizeValues>;
73
+ export type FontFamily = ResponsiveValue<FontFamilyValues>;
74
+ export type FontWeight = ResponsiveValue<FontWeightValues>;
75
+ export type LineHeight = ResponsiveValue<LineHeightValues>;
76
+ export type TypographyProps = {
77
+ fontSize?: FontSize;
78
+ fontFamily?: FontFamily;
79
+ fontWeight?: FontWeight;
80
+ lineHeight?: LineHeight;
81
+ };
82
+ export declare function getTypographyStyles(props: TypographyProps): (Readonly<{
83
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-sm)">;
84
+ }> | Readonly<{
85
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-md)">;
86
+ }> | Readonly<{
87
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-lg)">;
88
+ }> | Readonly<{
89
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-xl)">;
90
+ }> | Readonly<{
91
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-2xl)">;
92
+ }> | Readonly<{
93
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-3xl)">;
94
+ }> | Readonly<{
95
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-4xl)">;
96
+ }> | Readonly<{
97
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-5xl)">;
98
+ }> | Readonly<{
99
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-xs)">;
100
+ }> | readonly [Readonly<{
101
+ fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
102
+ }>, stylex.InlineStyles] | Readonly<{
103
+ readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", "var(--t-font-family-body)">;
104
+ }> | Readonly<{
105
+ readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", "var(--t-font-family-heading)">;
106
+ }> | Readonly<{
107
+ readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", "var(--t-font-family-mono)">;
108
+ }> | readonly [Readonly<{
109
+ fontFamily: stylex.StyleXClassNameFor<"fontFamily", string>;
110
+ }>, stylex.InlineStyles] | Readonly<{
111
+ readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", "var(--t-font-weight-medium)">;
112
+ }> | Readonly<{
113
+ readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", "var(--t-font-weight-normal)">;
114
+ }> | Readonly<{
115
+ readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", "var(--t-font-weight-bold)">;
116
+ }> | Readonly<{
117
+ readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", "var(--t-font-weight-semibold)">;
118
+ }> | readonly [Readonly<{
119
+ fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
120
+ }>, stylex.InlineStyles] | Readonly<{
121
+ readonly lineHeight: stylex.StyleXClassNameFor<"lineHeight", "var(--t-line-height-normal)">;
122
+ }> | Readonly<{
123
+ readonly lineHeight: stylex.StyleXClassNameFor<"lineHeight", "var(--t-line-height-relaxed)">;
124
+ }> | Readonly<{
125
+ readonly lineHeight: stylex.StyleXClassNameFor<"lineHeight", "var(--t-line-height-tight)">;
126
+ }> | readonly [Readonly<{
127
+ lineHeight: stylex.StyleXClassNameFor<"lineHeight", string>;
128
+ }>, stylex.InlineStyles])[];
129
+ export {};
130
+ //# sourceMappingURL=typography.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/typography.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAEL,KAAK,eAAe,EAGrB,MAAM,mCAAmC,CAAC;AAE3C,KAAK,cAAc,GAAG,MAAM,OAAO,cAAc,CAAC;AAClD,KAAK,gBAAgB,GAAG,MAAM,OAAO,gBAAgB,CAAC;AACtD,KAAK,gBAAgB,GAAG,MAAM,OAAO,gBAAgB,CAAC;AACtD,KAAK,gBAAgB,GAAG,MAAM,OAAO,gBAAgB,CAAC;AAEtD,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BlB,CAAC;AAeH,QAAA,MAAM,gBAAgB;;;;;;;;;;EAUpB,CAAC;AAeH,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;EAapB,CAAC;AAgBH,QAAA,MAAM,gBAAgB;;;;;;;;;;EAUpB,CAAC;AAeH,MAAM,MAAM,QAAQ,GAAG,eAAe,CAAC,cAAc,CAAC,CAAC;AACvD,MAAM,MAAM,UAAU,GAAG,eAAe,CAAC,gBAAgB,CAAC,CAAC;AAC3D,MAAM,MAAM,UAAU,GAAG,eAAe,CAAC,gBAAgB,CAAC,CAAC;AAC3D,MAAM,MAAM,UAAU,GAAG,eAAe,CAAC,gBAAgB,CAAC,CAAC;AAE3D,MAAM,MAAM,eAAe,GAAG;IAC5B,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,UAAU,CAAC,EAAE,UAAU,CAAC;CACzB,CAAC;AAEF,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BA8CzD"}
@@ -0,0 +1,49 @@
1
+ import { ResponsiveValue } from '../../../utils/breakpoints.stylex';
2
+ import * as stylex from "@stylexjs/stylex";
3
+ type ZIndexValues = keyof typeof zIndexStyles;
4
+ declare const zIndexStyles: Readonly<{
5
+ readonly base: Readonly<{
6
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 0>;
7
+ }>;
8
+ readonly behind: Readonly<{
9
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", -1>;
10
+ }>;
11
+ readonly dropdown: Readonly<{
12
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 1000>;
13
+ }>;
14
+ readonly modal: Readonly<{
15
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 1200>;
16
+ }>;
17
+ readonly sticky: Readonly<{
18
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 1100>;
19
+ }>;
20
+ readonly toast: Readonly<{
21
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 1300>;
22
+ }>;
23
+ readonly tooltip: Readonly<{
24
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 1400>;
25
+ }>;
26
+ }>;
27
+ export type ZIndex = ResponsiveValue<ZIndexValues>;
28
+ export type ZIndexProps = {
29
+ zIndex?: ZIndex;
30
+ };
31
+ export declare function getZIndexStyles(zIndex?: ZIndex): Readonly<{
32
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 0>;
33
+ }> | Readonly<{
34
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 1100>;
35
+ }> | Readonly<{
36
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", -1>;
37
+ }> | Readonly<{
38
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 1000>;
39
+ }> | Readonly<{
40
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 1200>;
41
+ }> | Readonly<{
42
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 1300>;
43
+ }> | Readonly<{
44
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 1400>;
45
+ }> | readonly [Readonly<{
46
+ zIndex: stylex.StyleXClassNameFor<"zIndex", 0 | -1 | 1000 | 1200 | 1100 | 1300 | 1400>;
47
+ }>, stylex.InlineStyles] | null;
48
+ export {};
49
+ //# sourceMappingURL=zIndex.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"zIndex.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/zIndex.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAEL,KAAK,eAAe,EAGrB,MAAM,mCAAmC,CAAC;AAE3C,KAAK,YAAY,GAAG,MAAM,OAAO,YAAY,CAAC;AAY9C,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;EAsBhB,CAAC;AAgBH,MAAM,MAAM,MAAM,GAAG,eAAe,CAAC,YAAY,CAAC,CAAC;AAEnD,MAAM,MAAM,WAAW,GAAG;IACxB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,wBAAgB,eAAe,CAAC,MAAM,CAAC,EAAE,MAAM;;;;;;;;;;;;;;;;gCAQ9C"}
@@ -0,0 +1,27 @@
1
+ import { ElementType } from 'react';
2
+ import { TextOwnProps } from '../Text/Text';
3
+ import { Polymorphic } from '../../types/Polymorphic';
4
+ type FontSize = "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl";
5
+ type FontWeight = "normal" | "medium" | "semibold" | "bold";
6
+ type Color = "foreground" | "foreground-muted" | "foreground-subtle" | "accent" | "accent-emphasis" | "primary" | "primary-emphasis" | "success" | "success-emphasis" | "warning" | "warning-emphasis" | "error" | "error-emphasis";
7
+ type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
8
+ type HeadingOwnProps = Omit<TextOwnProps, "size" | "weight" | "color"> & {
9
+ level?: HeadingLevel;
10
+ size?: FontSize;
11
+ weight?: FontWeight;
12
+ color?: Color;
13
+ };
14
+ export type HeadingProps<T extends ElementType = "h1"> = Polymorphic<T, HeadingOwnProps>;
15
+ /**
16
+ * Heading - Semantic heading component with predefined sizes
17
+ *
18
+ * Built on top of Text with heading-specific defaults:
19
+ * - level prop maps to h1-h6 elements (default: h1)
20
+ * - Each level has a default font size
21
+ * - Default font weight: bold
22
+ * - Size can be overridden via size prop
23
+ * - Can be changed to any element via `as` prop
24
+ */
25
+ export declare function Heading<T extends ElementType = "h1">({ as, level, size, weight, color, children, ...rest }: HeadingProps<T>): import("react/jsx-runtime").JSX.Element;
26
+ export {};
27
+ //# sourceMappingURL=Heading.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Heading.d.ts","sourceRoot":"","sources":["../../../src/components/Heading/Heading.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,OAAO,CAAC;AACzC,OAAO,EAAQ,KAAK,YAAY,EAAE,MAAM,cAAc,CAAC;AACvD,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAGvD,KAAK,QAAQ,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC;AACjF,KAAK,UAAU,GAAG,QAAQ,GAAG,QAAQ,GAAG,UAAU,GAAG,MAAM,CAAC;AAC5D,KAAK,KAAK,GACN,YAAY,GACZ,kBAAkB,GAClB,mBAAmB,GACnB,QAAQ,GACR,iBAAiB,GACjB,SAAS,GACT,kBAAkB,GAClB,SAAS,GACT,kBAAkB,GAClB,SAAS,GACT,kBAAkB,GAClB,OAAO,GACP,gBAAgB,CAAC;AAErB,KAAK,YAAY,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;AAW1C,KAAK,eAAe,GAAG,IAAI,CAAC,YAAY,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC,GAAG;IACvE,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,MAAM,CAAC,EAAE,UAAU,CAAC;IACpB,KAAK,CAAC,EAAE,KAAK,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,YAAY,CAAC,CAAC,SAAS,WAAW,GAAG,IAAI,IAAI,WAAW,CAClE,CAAC,EACD,eAAe,CAChB,CAAC;AAEF;;;;;;;;;GASG;AACH,wBAAgB,OAAO,CAAC,CAAC,SAAS,WAAW,GAAG,IAAI,EAAE,EACpD,EAAE,EACF,KAAS,EACT,IAAI,EACJ,MAAe,EACf,KAAK,EACL,QAAQ,EACR,GAAG,IAAI,EACR,EAAE,YAAY,CAAC,CAAC,CAAC,2CAiBjB"}
@@ -0,0 +1,2 @@
1
+ export { Heading, type HeadingProps } from './Heading';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Heading/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,WAAW,CAAC"}
@@ -0,0 +1,28 @@
1
+ import { ElementType } from 'react';
2
+ import { BoxOwnProps } from '../Box/Box';
3
+ import { Polymorphic } from '../../types/Polymorphic';
4
+ type FontSize = "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl";
5
+ type FontWeight = "normal" | "medium" | "semibold" | "bold";
6
+ type TextAlign = "left" | "center" | "right" | "justify";
7
+ type Color = "foreground" | "foreground-muted" | "foreground-subtle" | "accent" | "accent-emphasis" | "primary" | "primary-emphasis" | "success" | "success-emphasis" | "warning" | "warning-emphasis" | "error" | "error-emphasis";
8
+ export type TextOwnProps = Omit<BoxOwnProps, "fontSize" | "fontWeight" | "textAlign" | "color"> & {
9
+ size?: FontSize;
10
+ weight?: FontWeight;
11
+ align?: TextAlign;
12
+ color?: Color;
13
+ truncate?: boolean;
14
+ italic?: boolean;
15
+ };
16
+ export type TextProps<T extends ElementType = "span"> = Polymorphic<T, TextOwnProps>;
17
+ /**
18
+ * Text - Semantic text component for body copy, labels, captions, etc.
19
+ *
20
+ * Built on top of Box with text-specific conveniences:
21
+ * - Default element: <span> (inline)
22
+ * - Shorthand props: size, weight, align, color
23
+ * - Utility props: truncate (ellipsis), italic
24
+ * - Can be changed to any element via `as` prop
25
+ */
26
+ export declare function Text<T extends ElementType = "span">({ as, size, weight, align, color, truncate, italic, className, ...rest }: TextProps<T>): import("react/jsx-runtime").JSX.Element;
27
+ export {};
28
+ //# sourceMappingURL=Text.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../src/components/Text/Text.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,OAAO,CAAC;AAGzC,OAAO,EAAO,KAAK,WAAW,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAGvD,KAAK,QAAQ,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC;AACjF,KAAK,UAAU,GAAG,QAAQ,GAAG,QAAQ,GAAG,UAAU,GAAG,MAAM,CAAC;AAC5D,KAAK,SAAS,GAAG,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAC;AACzD,KAAK,KAAK,GACN,YAAY,GACZ,kBAAkB,GAClB,mBAAmB,GACnB,QAAQ,GACR,iBAAiB,GACjB,SAAS,GACT,kBAAkB,GAClB,SAAS,GACT,kBAAkB,GAClB,SAAS,GACT,kBAAkB,GAClB,OAAO,GACP,gBAAgB,CAAC;AAgBrB,MAAM,MAAM,YAAY,GAAG,IAAI,CAC7B,WAAW,EACX,UAAU,GAAG,YAAY,GAAG,WAAW,GAAG,OAAO,CAClD,GAAG;IACF,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,MAAM,CAAC,EAAE,UAAU,CAAC;IACpB,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,KAAK,CAAC,EAAE,KAAK,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,SAAS,CAAC,CAAC,SAAS,WAAW,GAAG,MAAM,IAAI,WAAW,CACjE,CAAC,EACD,YAAY,CACb,CAAC;AAEF;;;;;;;;GAQG;AACH,wBAAgB,IAAI,CAAC,CAAC,SAAS,WAAW,GAAG,MAAM,EAAE,EACnD,EAAE,EACF,IAAI,EACJ,MAAM,EACN,KAAK,EACL,KAAK,EACL,QAAQ,EACR,MAAM,EACN,SAAS,EACT,GAAG,IAAI,EACR,EAAE,SAAS,CAAC,CAAC,CAAC,2CAkBd"}
@@ -0,0 +1,2 @@
1
+ export { Text, type TextProps, type TextOwnProps } from './Text';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Text/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,KAAK,SAAS,EAAE,KAAK,YAAY,EAAE,MAAM,QAAQ,CAAC"}
package/dist/fonts.css ADDED
@@ -0,0 +1 @@
1
+ @import"https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap";@import"https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&display=swap";:root{--t-font-family-heading: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--t-font-family-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--t-font-family-mono: "IBM Plex Mono", "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}