@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,174 @@
1
+ import { ResponsiveValue } from '../../../utils/breakpoints.stylex';
2
+ import { SpacingValue } from './types';
3
+ import * as stylex from "@stylexjs/stylex";
4
+ type FlexDirectionValues = keyof typeof flexDirectionStyles;
5
+ type JustifyContentValues = keyof typeof justifyContentStyles;
6
+ type AlignItemsValues = keyof typeof alignItemsStyles;
7
+ type AlignSelfValues = keyof typeof alignSelfStyles;
8
+ type FlexWrapValues = keyof typeof flexWrapStyles;
9
+ declare const flexDirectionStyles: Readonly<{
10
+ readonly column: Readonly<{
11
+ readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
12
+ }>;
13
+ readonly "column-reverse": Readonly<{
14
+ readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column-reverse">;
15
+ }>;
16
+ readonly row: Readonly<{
17
+ readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "row">;
18
+ }>;
19
+ readonly "row-reverse": Readonly<{
20
+ readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "row-reverse">;
21
+ }>;
22
+ }>;
23
+ declare const justifyContentStyles: Readonly<{
24
+ readonly center: Readonly<{
25
+ readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
26
+ }>;
27
+ readonly end: Readonly<{
28
+ readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "end">;
29
+ }>;
30
+ readonly "space-around": Readonly<{
31
+ readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-around">;
32
+ }>;
33
+ readonly "space-between": Readonly<{
34
+ readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-between">;
35
+ }>;
36
+ readonly "space-evenly": Readonly<{
37
+ readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-evenly">;
38
+ }>;
39
+ readonly start: Readonly<{
40
+ readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "start">;
41
+ }>;
42
+ }>;
43
+ declare const alignItemsStyles: Readonly<{
44
+ readonly baseline: Readonly<{
45
+ readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "baseline">;
46
+ }>;
47
+ readonly center: Readonly<{
48
+ readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
49
+ }>;
50
+ readonly end: Readonly<{
51
+ readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "end">;
52
+ }>;
53
+ readonly start: Readonly<{
54
+ readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "start">;
55
+ }>;
56
+ readonly stretch: Readonly<{
57
+ readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "stretch">;
58
+ }>;
59
+ }>;
60
+ declare const alignSelfStyles: Readonly<{
61
+ readonly auto: Readonly<{
62
+ readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "auto">;
63
+ }>;
64
+ readonly baseline: Readonly<{
65
+ readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "baseline">;
66
+ }>;
67
+ readonly center: Readonly<{
68
+ readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "center">;
69
+ }>;
70
+ readonly end: Readonly<{
71
+ readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "end">;
72
+ }>;
73
+ readonly start: Readonly<{
74
+ readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "start">;
75
+ }>;
76
+ readonly stretch: Readonly<{
77
+ readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "stretch">;
78
+ }>;
79
+ }>;
80
+ declare const flexWrapStyles: Readonly<{
81
+ readonly nowrap: Readonly<{
82
+ readonly flexWrap: stylex.StyleXClassNameFor<"flexWrap", "nowrap">;
83
+ }>;
84
+ readonly wrap: Readonly<{
85
+ readonly flexWrap: stylex.StyleXClassNameFor<"flexWrap", "wrap">;
86
+ }>;
87
+ readonly "wrap-reverse": Readonly<{
88
+ readonly flexWrap: stylex.StyleXClassNameFor<"flexWrap", "wrap-reverse">;
89
+ }>;
90
+ }>;
91
+ export type FlexDirection = ResponsiveValue<FlexDirectionValues>;
92
+ export type JustifyContent = ResponsiveValue<JustifyContentValues>;
93
+ export type AlignItems = ResponsiveValue<AlignItemsValues>;
94
+ export type AlignSelf = ResponsiveValue<AlignSelfValues>;
95
+ export type FlexWrap = ResponsiveValue<FlexWrapValues>;
96
+ export type FlexboxProps = {
97
+ gap?: ResponsiveValue<SpacingValue>;
98
+ gapRow?: ResponsiveValue<SpacingValue>;
99
+ gapColumn?: ResponsiveValue<SpacingValue>;
100
+ justifyContent?: JustifyContent;
101
+ alignItems?: AlignItems;
102
+ alignSelf?: AlignSelf;
103
+ flexDirection?: FlexDirection;
104
+ flexWrap?: FlexWrap;
105
+ flex?: ResponsiveValue<string>;
106
+ flexGrow?: number;
107
+ flexShrink?: number;
108
+ flexBasis?: string;
109
+ };
110
+ export declare function getFlexboxStyles(props: FlexboxProps): (readonly [Readonly<{
111
+ gap: stylex.StyleXClassNameFor<"gap", string | undefined>;
112
+ }>, stylex.InlineStyles] | readonly [Readonly<{
113
+ flex: stylex.StyleXClassNameFor<"flex", string | undefined>;
114
+ }>, stylex.InlineStyles] | Readonly<{
115
+ readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
116
+ }> | Readonly<{
117
+ readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "row">;
118
+ }> | Readonly<{
119
+ readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "row-reverse">;
120
+ }> | Readonly<{
121
+ readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column-reverse">;
122
+ }> | readonly [Readonly<{
123
+ flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column" | "row" | "row-reverse" | "column-reverse">;
124
+ }>, stylex.InlineStyles] | Readonly<{
125
+ readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
126
+ }> | Readonly<{
127
+ readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "end">;
128
+ }> | Readonly<{
129
+ readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "start">;
130
+ }> | Readonly<{
131
+ readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-between">;
132
+ }> | Readonly<{
133
+ readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-around">;
134
+ }> | Readonly<{
135
+ readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-evenly">;
136
+ }> | readonly [Readonly<{
137
+ justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center" | "end" | "start" | "space-between" | "space-around" | "space-evenly">;
138
+ }>, stylex.InlineStyles] | Readonly<{
139
+ readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
140
+ }> | Readonly<{
141
+ readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "end">;
142
+ }> | Readonly<{
143
+ readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "start">;
144
+ }> | Readonly<{
145
+ readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "baseline">;
146
+ }> | Readonly<{
147
+ readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "stretch">;
148
+ }> | readonly [Readonly<{
149
+ alignItems: stylex.StyleXClassNameFor<"alignItems", "center" | "end" | "start" | "baseline" | "stretch">;
150
+ }>, stylex.InlineStyles] | Readonly<{
151
+ readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "center">;
152
+ }> | Readonly<{
153
+ readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "end">;
154
+ }> | Readonly<{
155
+ readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "start">;
156
+ }> | Readonly<{
157
+ readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "auto">;
158
+ }> | Readonly<{
159
+ readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "baseline">;
160
+ }> | Readonly<{
161
+ readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "stretch">;
162
+ }> | readonly [Readonly<{
163
+ alignSelf: stylex.StyleXClassNameFor<"alignSelf", "center" | "end" | "start" | "auto" | "baseline" | "stretch">;
164
+ }>, stylex.InlineStyles] | Readonly<{
165
+ readonly flexWrap: stylex.StyleXClassNameFor<"flexWrap", "nowrap">;
166
+ }> | Readonly<{
167
+ readonly flexWrap: stylex.StyleXClassNameFor<"flexWrap", "wrap">;
168
+ }> | Readonly<{
169
+ readonly flexWrap: stylex.StyleXClassNameFor<"flexWrap", "wrap-reverse">;
170
+ }> | readonly [Readonly<{
171
+ flexWrap: stylex.StyleXClassNameFor<"flexWrap", "nowrap" | "wrap" | "wrap-reverse">;
172
+ }>, stylex.InlineStyles])[];
173
+ export {};
174
+ //# sourceMappingURL=flexbox.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"flexbox.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/flexbox.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAEL,KAAK,eAAe,EAIrB,MAAM,mCAAmC,CAAC;AAC3C,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,SAAS,CAAC;AAE5C,KAAK,mBAAmB,GAAG,MAAM,OAAO,mBAAmB,CAAC;AAC5D,KAAK,oBAAoB,GAAG,MAAM,OAAO,oBAAoB,CAAC;AAC9D,KAAK,gBAAgB,GAAG,MAAM,OAAO,gBAAgB,CAAC;AACtD,KAAK,eAAe,GAAG,MAAM,OAAO,eAAe,CAAC;AACpD,KAAK,cAAc,GAAG,MAAM,OAAO,cAAc,CAAC;AAElD,QAAA,MAAM,mBAAmB;;;;;;;;;;;;;EAavB,CAAC;AAgBH,QAAA,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;EAmBxB,CAAC;AAgBH,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;EAgBpB,CAAC;AAgBH,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;EAmBnB,CAAC;AAgBH,QAAA,MAAM,cAAc;;;;;;;;;;EAUlB,CAAC;AA0CH,MAAM,MAAM,aAAa,GAAG,eAAe,CAAC,mBAAmB,CAAC,CAAC;AACjE,MAAM,MAAM,cAAc,GAAG,eAAe,CAAC,oBAAoB,CAAC,CAAC;AACnE,MAAM,MAAM,UAAU,GAAG,eAAe,CAAC,gBAAgB,CAAC,CAAC;AAC3D,MAAM,MAAM,SAAS,GAAG,eAAe,CAAC,eAAe,CAAC,CAAC;AACzD,MAAM,MAAM,QAAQ,GAAG,eAAe,CAAC,cAAc,CAAC,CAAC;AAEvD,MAAM,MAAM,YAAY,GAAG;IACzB,GAAG,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACpC,MAAM,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACvC,SAAS,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IAC1C,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,IAAI,CAAC,EAAE,eAAe,CAAC,MAAM,CAAC,CAAC;IAC/B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAqGF,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAiFnD"}
@@ -0,0 +1,45 @@
1
+ import { ResponsiveValue } from '../../../utils/breakpoints.stylex';
2
+ import * as stylex from "@stylexjs/stylex";
3
+ type JustifySelfValues = keyof typeof justifySelfStyles;
4
+ declare const justifySelfStyles: Readonly<{
5
+ readonly auto: Readonly<{
6
+ readonly justifySelf: stylex.StyleXClassNameFor<"justifySelf", "auto">;
7
+ }>;
8
+ readonly center: Readonly<{
9
+ readonly justifySelf: stylex.StyleXClassNameFor<"justifySelf", "center">;
10
+ }>;
11
+ readonly end: Readonly<{
12
+ readonly justifySelf: stylex.StyleXClassNameFor<"justifySelf", "end">;
13
+ }>;
14
+ readonly start: Readonly<{
15
+ readonly justifySelf: stylex.StyleXClassNameFor<"justifySelf", "start">;
16
+ }>;
17
+ readonly stretch: Readonly<{
18
+ readonly justifySelf: stylex.StyleXClassNameFor<"justifySelf", "stretch">;
19
+ }>;
20
+ }>;
21
+ export type JustifySelf = ResponsiveValue<JustifySelfValues>;
22
+ export type GridProps = {
23
+ justifySelf?: JustifySelf;
24
+ gridTemplateColumns?: ResponsiveValue<string>;
25
+ gridTemplateRows?: ResponsiveValue<string>;
26
+ };
27
+ export declare function getGridStyles(props: GridProps): (Readonly<{
28
+ readonly justifySelf: stylex.StyleXClassNameFor<"justifySelf", "center">;
29
+ }> | Readonly<{
30
+ readonly justifySelf: stylex.StyleXClassNameFor<"justifySelf", "end">;
31
+ }> | Readonly<{
32
+ readonly justifySelf: stylex.StyleXClassNameFor<"justifySelf", "start">;
33
+ }> | Readonly<{
34
+ readonly justifySelf: stylex.StyleXClassNameFor<"justifySelf", "auto">;
35
+ }> | Readonly<{
36
+ readonly justifySelf: stylex.StyleXClassNameFor<"justifySelf", "stretch">;
37
+ }> | readonly [Readonly<{
38
+ justifySelf: stylex.StyleXClassNameFor<"justifySelf", "center" | "end" | "start" | "auto" | "stretch">;
39
+ }>, stylex.InlineStyles] | readonly [Readonly<{
40
+ gridTemplateColumns: stylex.StyleXClassNameFor<"gridTemplateColumns", string | undefined>;
41
+ }>, stylex.InlineStyles] | readonly [Readonly<{
42
+ gridTemplateRows: stylex.StyleXClassNameFor<"gridTemplateRows", string | undefined>;
43
+ }>, stylex.InlineStyles])[];
44
+ export {};
45
+ //# sourceMappingURL=grid.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"grid.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/grid.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAEL,KAAK,eAAe,EAIrB,MAAM,mCAAmC,CAAC;AAE3C,KAAK,iBAAiB,GAAG,MAAM,OAAO,iBAAiB,CAAC;AAExD,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;EAgBrB,CAAC;AA2CH,MAAM,MAAM,WAAW,GAAG,eAAe,CAAC,iBAAiB,CAAC,CAAC;AAE7D,MAAM,MAAM,SAAS,GAAG;IACtB,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,mBAAmB,CAAC,EAAE,eAAe,CAAC,MAAM,CAAC,CAAC;IAC9C,gBAAgB,CAAC,EAAE,eAAe,CAAC,MAAM,CAAC,CAAC;CAC5C,CAAC;AAEF,wBAAgB,aAAa,CAAC,KAAK,EAAE,SAAS;;;;;;;;;;;;;;;;4BAoC7C"}
@@ -0,0 +1,22 @@
1
+ import { ResponsiveValue } from '../../../utils/breakpoints.stylex';
2
+ import { SpacingValue } from './types';
3
+ import * as stylex from "@stylexjs/stylex";
4
+ export type InsetProps = {
5
+ inset?: ResponsiveValue<SpacingValue>;
6
+ insetX?: ResponsiveValue<SpacingValue>;
7
+ insetY?: ResponsiveValue<SpacingValue>;
8
+ top?: ResponsiveValue<SpacingValue>;
9
+ right?: ResponsiveValue<SpacingValue>;
10
+ bottom?: ResponsiveValue<SpacingValue>;
11
+ left?: ResponsiveValue<SpacingValue>;
12
+ };
13
+ export declare function getInsetStyles(props: InsetProps): (readonly [Readonly<{
14
+ bottom: stylex.StyleXClassNameFor<"bottom", string | undefined>;
15
+ }>, stylex.InlineStyles] | readonly [Readonly<{
16
+ left: stylex.StyleXClassNameFor<"left", string | undefined>;
17
+ }>, stylex.InlineStyles] | readonly [Readonly<{
18
+ right: stylex.StyleXClassNameFor<"right", string | undefined>;
19
+ }>, stylex.InlineStyles] | readonly [Readonly<{
20
+ top: stylex.StyleXClassNameFor<"top", string | undefined>;
21
+ }>, stylex.InlineStyles])[];
22
+ //# sourceMappingURL=inset.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"inset.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/inset.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,UAAU,GAAG;IACvB,KAAK,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACtC,MAAM,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACvC,MAAM,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACvC,GAAG,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACpC,KAAK,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACtC,MAAM,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACvC,IAAI,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;CACtC,CAAC;AAqFF,wBAAgB,cAAc,CAAC,KAAK,EAAE,UAAU;;;;;;;;4BAyB/C"}
@@ -0,0 +1,128 @@
1
+ import { ResponsiveValue } from '../../../utils/breakpoints.stylex';
2
+ import * as stylex from "@stylexjs/stylex";
3
+ type CursorValues = keyof typeof cursorStyles;
4
+ type PointerEventsValues = keyof typeof pointerEventsStyles;
5
+ type UserSelectValues = keyof typeof userSelectStyles;
6
+ declare const cursorStyles: Readonly<{
7
+ readonly auto: Readonly<{
8
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "auto">;
9
+ }>;
10
+ readonly crosshair: Readonly<{
11
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "crosshair">;
12
+ }>;
13
+ readonly default: Readonly<{
14
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "default">;
15
+ }>;
16
+ readonly grab: Readonly<{
17
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "grab">;
18
+ }>;
19
+ readonly grabbing: Readonly<{
20
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "grabbing">;
21
+ }>;
22
+ readonly help: Readonly<{
23
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "help">;
24
+ }>;
25
+ readonly move: Readonly<{
26
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "move">;
27
+ }>;
28
+ readonly notAllowed: Readonly<{
29
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "not-allowed">;
30
+ }>;
31
+ readonly pointer: Readonly<{
32
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "pointer">;
33
+ }>;
34
+ readonly text: Readonly<{
35
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "text">;
36
+ }>;
37
+ readonly wait: Readonly<{
38
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "wait">;
39
+ }>;
40
+ readonly zoomIn: Readonly<{
41
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "zoom-in">;
42
+ }>;
43
+ readonly zoomOut: Readonly<{
44
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "zoom-out">;
45
+ }>;
46
+ }>;
47
+ declare const pointerEventsStyles: Readonly<{
48
+ readonly all: Readonly<{
49
+ readonly pointerEvents: stylex.StyleXClassNameFor<"pointerEvents", "all">;
50
+ }>;
51
+ readonly auto: Readonly<{
52
+ readonly pointerEvents: stylex.StyleXClassNameFor<"pointerEvents", "auto">;
53
+ }>;
54
+ readonly none: Readonly<{
55
+ readonly pointerEvents: stylex.StyleXClassNameFor<"pointerEvents", "none">;
56
+ }>;
57
+ }>;
58
+ declare const userSelectStyles: Readonly<{
59
+ readonly all: Readonly<{
60
+ readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "all">;
61
+ }>;
62
+ readonly auto: Readonly<{
63
+ readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "auto">;
64
+ }>;
65
+ readonly none: Readonly<{
66
+ readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "none">;
67
+ }>;
68
+ readonly text: Readonly<{
69
+ readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "text">;
70
+ }>;
71
+ }>;
72
+ export type Cursor = ResponsiveValue<CursorValues>;
73
+ export type PointerEvents = ResponsiveValue<PointerEventsValues>;
74
+ export type UserSelect = ResponsiveValue<UserSelectValues>;
75
+ export type InteractionProps = {
76
+ cursor?: Cursor;
77
+ pointerEvents?: PointerEvents;
78
+ userSelect?: UserSelect;
79
+ };
80
+ export declare function getInteractionStyles(props: InteractionProps): (Readonly<{
81
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "text">;
82
+ }> | Readonly<{
83
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "auto">;
84
+ }> | Readonly<{
85
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "default">;
86
+ }> | Readonly<{
87
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "help">;
88
+ }> | Readonly<{
89
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "pointer">;
90
+ }> | Readonly<{
91
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "wait">;
92
+ }> | Readonly<{
93
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "crosshair">;
94
+ }> | Readonly<{
95
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "move">;
96
+ }> | Readonly<{
97
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "grab">;
98
+ }> | Readonly<{
99
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "grabbing">;
100
+ }> | Readonly<{
101
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "not-allowed">;
102
+ }> | Readonly<{
103
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "zoom-in">;
104
+ }> | Readonly<{
105
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "zoom-out">;
106
+ }> | readonly [Readonly<{
107
+ cursor: stylex.StyleXClassNameFor<"cursor", "text" | "auto" | "default" | "help" | "pointer" | "wait" | "crosshair" | "move" | "grab" | "grabbing" | "notAllowed" | "zoomIn" | "zoomOut">;
108
+ }>, stylex.InlineStyles] | Readonly<{
109
+ readonly pointerEvents: stylex.StyleXClassNameFor<"pointerEvents", "none">;
110
+ }> | Readonly<{
111
+ readonly pointerEvents: stylex.StyleXClassNameFor<"pointerEvents", "auto">;
112
+ }> | Readonly<{
113
+ readonly pointerEvents: stylex.StyleXClassNameFor<"pointerEvents", "all">;
114
+ }> | readonly [Readonly<{
115
+ pointerEvents: stylex.StyleXClassNameFor<"pointerEvents", "none" | "auto" | "all">;
116
+ }>, stylex.InlineStyles] | Readonly<{
117
+ readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "text">;
118
+ }> | Readonly<{
119
+ readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "none">;
120
+ }> | Readonly<{
121
+ readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "auto">;
122
+ }> | Readonly<{
123
+ readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "all">;
124
+ }> | readonly [Readonly<{
125
+ userSelect: stylex.StyleXClassNameFor<"userSelect", "text" | "none" | "auto" | "all">;
126
+ }>, stylex.InlineStyles])[];
127
+ export {};
128
+ //# sourceMappingURL=interactions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"interactions.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/interactions.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;AAC9C,KAAK,mBAAmB,GAAG,MAAM,OAAO,mBAAmB,CAAC;AAC5D,KAAK,gBAAgB,GAAG,MAAM,OAAO,gBAAgB,CAAC;AAEtD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwChB,CAAC;AAeH,QAAA,MAAM,mBAAmB;;;;;;;;;;EAUvB,CAAC;AAeH,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;EAapB,CAAC;AAeH,MAAM,MAAM,MAAM,GAAG,eAAe,CAAC,YAAY,CAAC,CAAC;AACnD,MAAM,MAAM,aAAa,GAAG,eAAe,CAAC,mBAAmB,CAAC,CAAC;AACjE,MAAM,MAAM,UAAU,GAAG,eAAe,CAAC,gBAAgB,CAAC,CAAC;AAE3D,MAAM,MAAM,gBAAgB,GAAG;IAC7B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,UAAU,CAAC,EAAE,UAAU,CAAC;CACzB,CAAC;AAEF,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAoC3D"}
@@ -0,0 +1,22 @@
1
+ import { ResponsiveValue } from '../../../utils/breakpoints.stylex';
2
+ import { SpacingValue } from './types';
3
+ import * as stylex from "@stylexjs/stylex";
4
+ export type MarginProps = {
5
+ m?: ResponsiveValue<SpacingValue>;
6
+ mt?: ResponsiveValue<SpacingValue>;
7
+ mr?: ResponsiveValue<SpacingValue>;
8
+ mb?: ResponsiveValue<SpacingValue>;
9
+ ml?: ResponsiveValue<SpacingValue>;
10
+ mx?: ResponsiveValue<SpacingValue>;
11
+ my?: ResponsiveValue<SpacingValue>;
12
+ };
13
+ export declare function getMarginStyles(props: MarginProps): (readonly [Readonly<{
14
+ marginBottom: stylex.StyleXClassNameFor<"marginBottom", string | undefined>;
15
+ }>, stylex.InlineStyles] | readonly [Readonly<{
16
+ marginLeft: stylex.StyleXClassNameFor<"marginLeft", string | undefined>;
17
+ }>, stylex.InlineStyles] | readonly [Readonly<{
18
+ marginRight: stylex.StyleXClassNameFor<"marginRight", string | undefined>;
19
+ }>, stylex.InlineStyles] | readonly [Readonly<{
20
+ marginTop: stylex.StyleXClassNameFor<"marginTop", string | undefined>;
21
+ }>, stylex.InlineStyles])[];
22
+ //# sourceMappingURL=margin.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"margin.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/margin.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,eAAe,EAGrB,MAAM,mCAAmC,CAAC;AAC3C,OAAO,KAAK,MAAM,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,SAAS,CAAC;AAE5C,MAAM,MAAM,WAAW,GAAG;IACxB,CAAC,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IAClC,EAAE,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACnC,EAAE,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACnC,EAAE,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACnC,EAAE,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACnC,EAAE,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACnC,EAAE,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;CACpC,CAAC;AAoFF,wBAAgB,eAAe,CAAC,KAAK,EAAE,WAAW;;;;;;;;4BAoCjD"}
@@ -0,0 +1,34 @@
1
+ import { ResponsiveValue } from '../../../utils/breakpoints.stylex';
2
+ import * as stylex from "@stylexjs/stylex";
3
+ type OpacityValues = keyof typeof opacityStyles;
4
+ declare const opacityStyles: Readonly<{
5
+ readonly faint: Readonly<{
6
+ readonly opacity: stylex.StyleXClassNameFor<"opacity", 0.4>;
7
+ }>;
8
+ readonly full: Readonly<{
9
+ readonly opacity: stylex.StyleXClassNameFor<"opacity", 1>;
10
+ }>;
11
+ readonly invisible: Readonly<{
12
+ readonly opacity: stylex.StyleXClassNameFor<"opacity", 0>;
13
+ }>;
14
+ readonly semi: Readonly<{
15
+ readonly opacity: stylex.StyleXClassNameFor<"opacity", 0.6>;
16
+ }>;
17
+ }>;
18
+ export type Opacity = ResponsiveValue<OpacityValues>;
19
+ export type OpacityProps = {
20
+ opacity?: Opacity;
21
+ };
22
+ export declare function getOpacityStyles(props: OpacityProps): (Readonly<{
23
+ readonly opacity: stylex.StyleXClassNameFor<"opacity", 1>;
24
+ }> | Readonly<{
25
+ readonly opacity: stylex.StyleXClassNameFor<"opacity", 0.4>;
26
+ }> | Readonly<{
27
+ readonly opacity: stylex.StyleXClassNameFor<"opacity", 0>;
28
+ }> | Readonly<{
29
+ readonly opacity: stylex.StyleXClassNameFor<"opacity", 0.6>;
30
+ }> | readonly [Readonly<{
31
+ opacity: stylex.StyleXClassNameFor<"opacity", 0 | 1 | 0.4 | 0.6>;
32
+ }>, stylex.InlineStyles])[];
33
+ export {};
34
+ //# sourceMappingURL=opacity.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"opacity.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/opacity.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,aAAa,CAAC;AAShD,QAAA,MAAM,aAAa;;;;;;;;;;;;;EAajB,CAAC;AAeH,MAAM,MAAM,OAAO,GAAG,eAAe,CAAC,aAAa,CAAC,CAAC;AAErD,MAAM,MAAM,YAAY,GAAG;IACzB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,YAAY;;;;;;;;;;4BAcnD"}
@@ -0,0 +1,55 @@
1
+ import { ResponsiveValue } from '../../../utils/breakpoints.stylex';
2
+ import * as stylex from "@stylexjs/stylex";
3
+ type OverflowValues = keyof typeof overflowStyles;
4
+ declare const overflowStyles: Readonly<{
5
+ readonly auto: Readonly<{
6
+ readonly overflow: stylex.StyleXClassNameFor<"overflow", "auto">;
7
+ }>;
8
+ readonly hidden: Readonly<{
9
+ readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
10
+ }>;
11
+ readonly scroll: Readonly<{
12
+ readonly overflow: stylex.StyleXClassNameFor<"overflow", "scroll">;
13
+ }>;
14
+ readonly visible: Readonly<{
15
+ readonly overflow: stylex.StyleXClassNameFor<"overflow", "visible">;
16
+ }>;
17
+ }>;
18
+ export type OverflowProps = {
19
+ overflow?: ResponsiveValue<OverflowValues>;
20
+ overflowX?: OverflowValues;
21
+ overflowY?: OverflowValues;
22
+ };
23
+ export declare function getOverflowStyles({ overflow, overflowX, overflowY, }: OverflowProps): (Readonly<{
24
+ readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
25
+ }> | Readonly<{
26
+ readonly overflow: stylex.StyleXClassNameFor<"overflow", "auto">;
27
+ }> | Readonly<{
28
+ readonly overflow: stylex.StyleXClassNameFor<"overflow", "visible">;
29
+ }> | Readonly<{
30
+ readonly overflow: stylex.StyleXClassNameFor<"overflow", "scroll">;
31
+ }> | readonly [Readonly<{
32
+ overflow: stylex.StyleXClassNameFor<"overflow", "hidden" | "auto" | "visible" | "scroll">;
33
+ }>, stylex.InlineStyles] | Readonly<{
34
+ readonly overflowX: stylex.StyleXClassNameFor<"overflowX", "hidden">;
35
+ }> | Readonly<{
36
+ readonly overflowX: stylex.StyleXClassNameFor<"overflowX", "auto">;
37
+ }> | Readonly<{
38
+ readonly overflowX: stylex.StyleXClassNameFor<"overflowX", "visible">;
39
+ }> | Readonly<{
40
+ readonly overflowX: stylex.StyleXClassNameFor<"overflowX", "scroll">;
41
+ }> | readonly [Readonly<{
42
+ overflowX: stylex.StyleXClassNameFor<"overflowX", "hidden" | "auto" | "visible" | "scroll">;
43
+ }>, stylex.InlineStyles] | Readonly<{
44
+ readonly overflowY: stylex.StyleXClassNameFor<"overflowY", "hidden">;
45
+ }> | Readonly<{
46
+ readonly overflowY: stylex.StyleXClassNameFor<"overflowY", "auto">;
47
+ }> | Readonly<{
48
+ readonly overflowY: stylex.StyleXClassNameFor<"overflowY", "visible">;
49
+ }> | Readonly<{
50
+ readonly overflowY: stylex.StyleXClassNameFor<"overflowY", "scroll">;
51
+ }> | readonly [Readonly<{
52
+ overflowY: stylex.StyleXClassNameFor<"overflowY", "hidden" | "auto" | "visible" | "scroll">;
53
+ }>, stylex.InlineStyles])[];
54
+ export {};
55
+ //# sourceMappingURL=overflow.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"overflow.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/overflow.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAIL,KAAK,eAAe,EACrB,MAAM,mCAAmC,CAAC;AAE3C,KAAK,cAAc,GAAG,MAAM,OAAO,cAAc,CAAC;AAIlD,QAAA,MAAM,cAAc;;;;;;;;;;;;;EAalB,CAAC;AA0EH,MAAM,MAAM,aAAa,GAAG;IAC1B,QAAQ,CAAC,EAAE,eAAe,CAAC,cAAc,CAAC,CAAC;IAC3C,SAAS,CAAC,EAAE,cAAc,CAAC;IAC3B,SAAS,CAAC,EAAE,cAAc,CAAC;CAC5B,CAAC;AAEF,wBAAgB,iBAAiB,CAAC,EAChC,QAAQ,EACR,SAAS,EACT,SAAS,GACV,EAAE,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAgCf"}
@@ -0,0 +1,22 @@
1
+ import { ResponsiveValue } from '../../../utils/breakpoints.stylex';
2
+ import { SpacingValue } from './types';
3
+ import * as stylex from "@stylexjs/stylex";
4
+ export type PaddingProps = {
5
+ p?: ResponsiveValue<SpacingValue>;
6
+ pt?: ResponsiveValue<SpacingValue>;
7
+ pr?: ResponsiveValue<SpacingValue>;
8
+ pb?: ResponsiveValue<SpacingValue>;
9
+ pl?: ResponsiveValue<SpacingValue>;
10
+ px?: ResponsiveValue<SpacingValue>;
11
+ py?: ResponsiveValue<SpacingValue>;
12
+ };
13
+ export declare function getPaddingStyles(props: PaddingProps): (readonly [Readonly<{
14
+ paddingBottom: stylex.StyleXClassNameFor<"paddingBottom", string | undefined>;
15
+ }>, stylex.InlineStyles] | readonly [Readonly<{
16
+ paddingLeft: stylex.StyleXClassNameFor<"paddingLeft", string | undefined>;
17
+ }>, stylex.InlineStyles] | readonly [Readonly<{
18
+ paddingRight: stylex.StyleXClassNameFor<"paddingRight", string | undefined>;
19
+ }>, stylex.InlineStyles] | readonly [Readonly<{
20
+ paddingTop: stylex.StyleXClassNameFor<"paddingTop", string | undefined>;
21
+ }>, stylex.InlineStyles])[];
22
+ //# sourceMappingURL=padding.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"padding.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/padding.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,YAAY,GAAG;IACzB,CAAC,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IAClC,EAAE,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACnC,EAAE,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACnC,EAAE,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACnC,EAAE,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACnC,EAAE,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACnC,EAAE,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;CACpC,CAAC;AAoFF,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,YAAY;;;;;;;;4BAoCnD"}
@@ -0,0 +1,39 @@
1
+ import { ResponsiveValue } from '../../../utils/breakpoints.stylex';
2
+ import * as stylex from "@stylexjs/stylex";
3
+ type PositionValues = keyof typeof positionStyles;
4
+ declare const positionStyles: Readonly<{
5
+ readonly absolute: Readonly<{
6
+ readonly position: stylex.StyleXClassNameFor<"position", "absolute">;
7
+ }>;
8
+ readonly fixed: Readonly<{
9
+ readonly position: stylex.StyleXClassNameFor<"position", "fixed">;
10
+ }>;
11
+ readonly relative: Readonly<{
12
+ readonly position: stylex.StyleXClassNameFor<"position", "relative">;
13
+ }>;
14
+ readonly static: Readonly<{
15
+ readonly position: stylex.StyleXClassNameFor<"position", "static">;
16
+ }>;
17
+ readonly sticky: Readonly<{
18
+ readonly position: stylex.StyleXClassNameFor<"position", "sticky">;
19
+ }>;
20
+ }>;
21
+ export type Position = ResponsiveValue<PositionValues>;
22
+ export type PositionProps = {
23
+ position?: Position;
24
+ };
25
+ export declare function getPositionStyles(position?: Position): Readonly<{
26
+ readonly position: stylex.StyleXClassNameFor<"position", "fixed">;
27
+ }> | Readonly<{
28
+ readonly position: stylex.StyleXClassNameFor<"position", "static">;
29
+ }> | Readonly<{
30
+ readonly position: stylex.StyleXClassNameFor<"position", "relative">;
31
+ }> | Readonly<{
32
+ readonly position: stylex.StyleXClassNameFor<"position", "absolute">;
33
+ }> | Readonly<{
34
+ readonly position: stylex.StyleXClassNameFor<"position", "sticky">;
35
+ }> | readonly [Readonly<{
36
+ position: stylex.StyleXClassNameFor<"position", "fixed" | "static" | "relative" | "absolute" | "sticky">;
37
+ }>, stylex.InlineStyles] | null;
38
+ export {};
39
+ //# sourceMappingURL=position.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"position.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/position.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;AAElD,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;EAgBlB,CAAC;AAgBH,MAAM,MAAM,QAAQ,GAAG,eAAe,CAAC,cAAc,CAAC,CAAC;AAEvD,MAAM,MAAM,aAAa,GAAG;IAC1B,QAAQ,CAAC,EAAE,QAAQ,CAAC;CACrB,CAAC;AAEF,wBAAgB,iBAAiB,CAAC,QAAQ,CAAC,EAAE,QAAQ;;;;;;;;;;;;gCAQpD"}
@@ -0,0 +1,28 @@
1
+ import * as stylex from "@stylexjs/stylex";
2
+ export declare const resetStyles: Readonly<{
3
+ readonly base: Readonly<{
4
+ readonly WebkitTapHighlightColor: stylex.StyleXClassNameFor<"WebkitTapHighlightColor", "transparent">;
5
+ readonly margin: stylex.StyleXClassNameFor<"margin", 0>;
6
+ readonly padding: stylex.StyleXClassNameFor<"padding", 0>;
7
+ readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "solid">;
8
+ readonly borderWidth: stylex.StyleXClassNameFor<"borderWidth", 0>;
9
+ readonly textDecoration: stylex.StyleXClassNameFor<"textDecoration", "none">;
10
+ readonly appearance: stylex.StyleXClassNameFor<"appearance", "none">;
11
+ readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", "transparent">;
12
+ readonly boxSizing: stylex.StyleXClassNameFor<"boxSizing", "border-box">;
13
+ readonly color: stylex.StyleXClassNameFor<"color", "inherit">;
14
+ readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", "var(--t-font-family-body)">;
15
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", "var(--t-font-size-md)">;
16
+ readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", "var(--t-font-weight-normal)">;
17
+ readonly lineHeight: stylex.StyleXClassNameFor<"lineHeight", "var(--t-line-height-normal)">;
18
+ }>;
19
+ readonly reducedMotion: Readonly<{
20
+ readonly animationDuration: stylex.StyleXClassNameFor<"animationDuration", {
21
+ readonly "@media (prefers-reduced-motion: reduce)": "0.01ms !important";
22
+ }>;
23
+ readonly transitionDuration: stylex.StyleXClassNameFor<"transitionDuration", {
24
+ readonly "@media (prefers-reduced-motion: reduce)": "0.01ms !important";
25
+ }>;
26
+ }>;
27
+ }>;
28
+ //# sourceMappingURL=reset.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reset.d.ts","sourceRoot":"","sources":["../../../../src/components/Box/styleParts/reset.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,kBAAkB,CAAC;AAE3C,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;EA0BtB,CAAC"}