@streamplace/components 0.9.15 → 0.10.6
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/chat/badge.d.ts.map +1 -1
- package/dist/components/chat/badge.js +4 -2
- package/dist/components/chat/badge.js.map +1 -1
- package/dist/components/chat/chat-box.d.ts +2 -1
- package/dist/components/chat/chat-box.d.ts.map +1 -1
- package/dist/components/chat/chat-box.js +1 -1
- package/dist/components/chat/chat-box.js.map +1 -1
- package/dist/components/chat/chat-message.d.ts.map +1 -1
- package/dist/components/chat/chat-message.js +3 -3
- package/dist/components/chat/chat-message.js.map +1 -1
- package/dist/components/chat/chat.d.ts +4 -2
- package/dist/components/chat/chat.d.ts.map +1 -1
- package/dist/components/chat/chat.js +18 -4
- package/dist/components/chat/chat.js.map +1 -1
- package/dist/components/chat/teleport-modal.d.ts.map +1 -1
- package/dist/components/chat/teleport-modal.js +5 -4
- package/dist/components/chat/teleport-modal.js.map +1 -1
- package/dist/components/chat/user-profile-card.d.ts.map +1 -1
- package/dist/components/chat/user-profile-card.js +11 -8
- package/dist/components/chat/user-profile-card.js.map +1 -1
- package/dist/components/error-boundary.d.ts +15 -0
- package/dist/components/error-boundary.d.ts.map +1 -0
- package/dist/components/error-boundary.js +29 -0
- package/dist/components/error-boundary.js.map +1 -0
- package/dist/components/mobile-player/ui/viewer-context-menu.d.ts.map +1 -1
- package/dist/components/mobile-player/ui/viewer-context-menu.js +3 -2
- package/dist/components/mobile-player/ui/viewer-context-menu.js.map +1 -1
- package/dist/components/mobile-player/ui/viewer-loading-overlay.d.ts.map +1 -1
- package/dist/components/mobile-player/ui/viewer-loading-overlay.js +1 -0
- package/dist/components/mobile-player/ui/viewer-loading-overlay.js.map +1 -1
- package/dist/components/mobile-player/video-async.native.d.ts.map +1 -1
- package/dist/components/mobile-player/video-async.native.js +4 -1
- package/dist/components/mobile-player/video-async.native.js.map +1 -1
- package/dist/components/mobile-player/video.d.ts +3 -3
- package/dist/components/mobile-player/video.d.ts.map +1 -1
- package/dist/components/mobile-player/video.js.map +1 -1
- package/dist/components/ui/dropdown.native.d.ts.map +1 -1
- package/dist/components/ui/dropdown.native.js +3 -1
- package/dist/components/ui/dropdown.native.js.map +1 -1
- package/dist/components/ui/icons.js +1 -1
- package/dist/components/ui/icons.js.map +1 -1
- package/dist/components/ui/menu.d.ts +0 -8
- package/dist/components/ui/menu.d.ts.map +1 -1
- package/dist/components/ui/menu.js +1 -35
- package/dist/components/ui/menu.js.map +1 -1
- package/dist/components/ui/primitives/input.d.ts +4 -4
- package/dist/components/ui/primitives/input.d.ts.map +1 -1
- package/dist/components/ui/primitives/input.js +10 -3
- package/dist/components/ui/primitives/input.js.map +1 -1
- package/dist/components/ui/resizeable.d.ts +1 -1
- package/dist/components/ui/resizeable.d.ts.map +1 -1
- package/dist/components/ui/resizeable.js +8 -5
- package/dist/components/ui/resizeable.js.map +1 -1
- package/dist/components/ui/text.d.ts +1 -1
- package/dist/components/ui/toast.js +4 -4
- package/dist/components/ui/toast.js.map +1 -1
- package/dist/context/profile-cache.d.ts.map +1 -1
- package/dist/context/profile-cache.js +2 -1
- package/dist/context/profile-cache.js.map +1 -1
- package/dist/hooks/useSegmentTiming.js +1 -1
- package/dist/hooks/useSegmentTiming.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/lib/facet.js +1 -1
- package/dist/lib/facet.js.map +1 -1
- package/dist/lib/theme/atoms.d.ts +252 -252
- package/dist/lib/theme/theme.js +2 -2
- package/dist/lib/theme/theme.js.map +1 -1
- package/dist/livestream-store/livestream-store.d.ts +2 -2
- package/dist/livestream-store/livestream-store.d.ts.map +1 -1
- package/dist/streamplace-store/stream.d.ts +1 -1
- package/dist/streamplace-store/stream.d.ts.map +1 -1
- package/dist/streamplace-store/streamplace-store.d.ts +0 -1
- package/dist/streamplace-store/streamplace-store.d.ts.map +1 -1
- package/dist/streamplace-store/streamplace-store.js +1 -4
- package/dist/streamplace-store/streamplace-store.js.map +1 -1
- package/dist/streamplace-store/user.d.ts +1 -1
- package/dist/streamplace-store/user.d.ts.map +1 -1
- package/dist/streamplace-store/xrpc.js +4 -4
- package/dist/streamplace-store/xrpc.js.map +1 -1
- package/node-compile-cache/v22.15.0-x64-efe9a9df-0/37be0eec +0 -0
- package/package.json +19 -18
- package/src/components/chat/badge.tsx +4 -2
- package/src/components/chat/chat-box.tsx +2 -0
- package/src/components/chat/chat-message.tsx +4 -5
- package/src/components/chat/chat.tsx +31 -4
- package/src/components/chat/teleport-modal.tsx +4 -3
- package/src/components/chat/user-profile-card.tsx +20 -8
- package/src/components/error-boundary.tsx +42 -0
- package/src/components/mobile-player/ui/viewer-context-menu.tsx +3 -2
- package/src/components/mobile-player/ui/viewer-loading-overlay.tsx +1 -0
- package/src/components/mobile-player/video-async.native.tsx +3 -1
- package/src/components/mobile-player/video.tsx +7 -5
- package/src/components/ui/dropdown.native.tsx +5 -1
- package/src/components/ui/icons.tsx +1 -1
- package/src/components/ui/menu.tsx +56 -62
- package/src/components/ui/primitives/input.tsx +18 -9
- package/src/components/ui/resizeable.tsx +11 -6
- package/src/components/ui/toast.tsx +1 -1
- package/src/context/profile-cache.tsx +7 -1
- package/src/hooks/useSegmentTiming.tsx +1 -1
- package/src/index.tsx +2 -0
- package/src/lib/facet.ts +1 -1
- package/src/lib/theme/theme.tsx +1 -1
- package/src/streamplace-store/streamplace-store.tsx +0 -2
- package/src/streamplace-store/xrpc.tsx +1 -1
- package/node-compile-cache/v22.15.0-x64-92db9086-0/37be0eec +0 -0
|
@@ -1060,35 +1060,35 @@ export declare const borders: {
|
|
|
1060
1060
|
};
|
|
1061
1061
|
};
|
|
1062
1062
|
export declare const spacingAtoms: {
|
|
1063
|
-
margin: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1064
|
-
marginTop: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1065
|
-
marginRight: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1066
|
-
marginBottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1067
|
-
marginLeft: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1068
|
-
marginHorizontal: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1069
|
-
marginVertical: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1070
|
-
padding: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1071
|
-
paddingTop: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1072
|
-
paddingRight: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1073
|
-
paddingBottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1074
|
-
paddingLeft: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1075
|
-
paddingHorizontal: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1076
|
-
paddingVertical: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1063
|
+
margin: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1064
|
+
marginTop: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1065
|
+
marginRight: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1066
|
+
marginBottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1067
|
+
marginLeft: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1068
|
+
marginHorizontal: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1069
|
+
marginVertical: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1070
|
+
padding: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1071
|
+
paddingTop: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1072
|
+
paddingRight: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1073
|
+
paddingBottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1074
|
+
paddingLeft: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1075
|
+
paddingHorizontal: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1076
|
+
paddingVertical: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1077
1077
|
};
|
|
1078
1078
|
export declare const radiusAtoms: {
|
|
1079
|
-
all: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
1080
|
-
top: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
1081
|
-
topRight: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
1082
|
-
bottom: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
1083
|
-
bottomRight: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
1084
|
-
left: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
1085
|
-
right: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
1079
|
+
all: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
1080
|
+
top: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
1081
|
+
topRight: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
1082
|
+
bottom: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
1083
|
+
bottomRight: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
1084
|
+
left: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
1085
|
+
right: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
1086
1086
|
};
|
|
1087
1087
|
export declare const backgrounds: Record<"success" | "red" | "green" | "blue" | "ios" | "android" | "warning" | "black" | "primary" | "destructive" | "transparent" | "slate" | "gray" | "zinc" | "neutral" | "stone" | "orange" | "amber" | "yellow" | "lime" | "emerald" | "teal" | "cyan" | "sky" | "indigo" | "violet" | "purple" | "fuchsia" | "pink" | "rose" | "white", StyleValue>;
|
|
1088
1088
|
export declare const textColors: Record<"success" | "red" | "green" | "blue" | "ios" | "android" | "warning" | "black" | "primary" | "destructive" | "transparent" | "slate" | "gray" | "zinc" | "neutral" | "stone" | "orange" | "amber" | "yellow" | "lime" | "emerald" | "teal" | "cyan" | "sky" | "indigo" | "violet" | "purple" | "fuchsia" | "pink" | "rose" | "white", StyleValue>;
|
|
1089
1089
|
export declare const sizes: {
|
|
1090
1090
|
width: {
|
|
1091
|
-
percent: Record<"10" | "100" | "
|
|
1091
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
1092
1092
|
0: StyleValue;
|
|
1093
1093
|
2: StyleValue;
|
|
1094
1094
|
1: StyleValue;
|
|
@@ -1101,28 +1101,28 @@ export declare const sizes: {
|
|
|
1101
1101
|
10: StyleValue;
|
|
1102
1102
|
60: StyleValue;
|
|
1103
1103
|
64: StyleValue;
|
|
1104
|
-
|
|
1104
|
+
16: StyleValue;
|
|
1105
1105
|
20: StyleValue;
|
|
1106
|
+
7: StyleValue;
|
|
1106
1107
|
12: StyleValue;
|
|
1107
1108
|
24: StyleValue;
|
|
1108
1109
|
80: StyleValue;
|
|
1109
|
-
7: StyleValue;
|
|
1110
1110
|
9: StyleValue;
|
|
1111
|
-
|
|
1111
|
+
14: StyleValue;
|
|
1112
|
+
40: StyleValue;
|
|
1112
1113
|
72: StyleValue;
|
|
1113
1114
|
96: StyleValue;
|
|
1114
|
-
16: StyleValue;
|
|
1115
1115
|
36: StyleValue;
|
|
1116
1116
|
auto: StyleValue;
|
|
1117
1117
|
32: StyleValue;
|
|
1118
|
-
|
|
1118
|
+
28: StyleValue;
|
|
1119
1119
|
44: StyleValue;
|
|
1120
1120
|
48: StyleValue;
|
|
1121
1121
|
56: StyleValue;
|
|
1122
1122
|
52: StyleValue;
|
|
1123
1123
|
};
|
|
1124
1124
|
height: {
|
|
1125
|
-
percent: Record<"10" | "100" | "
|
|
1125
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
1126
1126
|
0: StyleValue;
|
|
1127
1127
|
2: StyleValue;
|
|
1128
1128
|
1: StyleValue;
|
|
@@ -1135,28 +1135,28 @@ export declare const sizes: {
|
|
|
1135
1135
|
10: StyleValue;
|
|
1136
1136
|
60: StyleValue;
|
|
1137
1137
|
64: StyleValue;
|
|
1138
|
-
|
|
1138
|
+
16: StyleValue;
|
|
1139
1139
|
20: StyleValue;
|
|
1140
|
+
7: StyleValue;
|
|
1140
1141
|
12: StyleValue;
|
|
1141
1142
|
24: StyleValue;
|
|
1142
1143
|
80: StyleValue;
|
|
1143
|
-
7: StyleValue;
|
|
1144
1144
|
9: StyleValue;
|
|
1145
|
-
|
|
1145
|
+
14: StyleValue;
|
|
1146
|
+
40: StyleValue;
|
|
1146
1147
|
72: StyleValue;
|
|
1147
1148
|
96: StyleValue;
|
|
1148
|
-
16: StyleValue;
|
|
1149
1149
|
36: StyleValue;
|
|
1150
1150
|
auto: StyleValue;
|
|
1151
1151
|
32: StyleValue;
|
|
1152
|
-
|
|
1152
|
+
28: StyleValue;
|
|
1153
1153
|
44: StyleValue;
|
|
1154
1154
|
48: StyleValue;
|
|
1155
1155
|
56: StyleValue;
|
|
1156
1156
|
52: StyleValue;
|
|
1157
1157
|
};
|
|
1158
1158
|
minWidth: {
|
|
1159
|
-
percent: Record<"10" | "100" | "
|
|
1159
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
1160
1160
|
0: StyleValue;
|
|
1161
1161
|
2: StyleValue;
|
|
1162
1162
|
1: StyleValue;
|
|
@@ -1169,28 +1169,28 @@ export declare const sizes: {
|
|
|
1169
1169
|
10: StyleValue;
|
|
1170
1170
|
60: StyleValue;
|
|
1171
1171
|
64: StyleValue;
|
|
1172
|
-
|
|
1172
|
+
16: StyleValue;
|
|
1173
1173
|
20: StyleValue;
|
|
1174
|
+
7: StyleValue;
|
|
1174
1175
|
12: StyleValue;
|
|
1175
1176
|
24: StyleValue;
|
|
1176
1177
|
80: StyleValue;
|
|
1177
|
-
7: StyleValue;
|
|
1178
1178
|
9: StyleValue;
|
|
1179
|
-
|
|
1179
|
+
14: StyleValue;
|
|
1180
|
+
40: StyleValue;
|
|
1180
1181
|
72: StyleValue;
|
|
1181
1182
|
96: StyleValue;
|
|
1182
|
-
16: StyleValue;
|
|
1183
1183
|
36: StyleValue;
|
|
1184
1184
|
auto: StyleValue;
|
|
1185
1185
|
32: StyleValue;
|
|
1186
|
-
|
|
1186
|
+
28: StyleValue;
|
|
1187
1187
|
44: StyleValue;
|
|
1188
1188
|
48: StyleValue;
|
|
1189
1189
|
56: StyleValue;
|
|
1190
1190
|
52: StyleValue;
|
|
1191
1191
|
};
|
|
1192
1192
|
minHeight: {
|
|
1193
|
-
percent: Record<"10" | "100" | "
|
|
1193
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
1194
1194
|
0: StyleValue;
|
|
1195
1195
|
2: StyleValue;
|
|
1196
1196
|
1: StyleValue;
|
|
@@ -1203,28 +1203,28 @@ export declare const sizes: {
|
|
|
1203
1203
|
10: StyleValue;
|
|
1204
1204
|
60: StyleValue;
|
|
1205
1205
|
64: StyleValue;
|
|
1206
|
-
|
|
1206
|
+
16: StyleValue;
|
|
1207
1207
|
20: StyleValue;
|
|
1208
|
+
7: StyleValue;
|
|
1208
1209
|
12: StyleValue;
|
|
1209
1210
|
24: StyleValue;
|
|
1210
1211
|
80: StyleValue;
|
|
1211
|
-
7: StyleValue;
|
|
1212
1212
|
9: StyleValue;
|
|
1213
|
-
|
|
1213
|
+
14: StyleValue;
|
|
1214
|
+
40: StyleValue;
|
|
1214
1215
|
72: StyleValue;
|
|
1215
1216
|
96: StyleValue;
|
|
1216
|
-
16: StyleValue;
|
|
1217
1217
|
36: StyleValue;
|
|
1218
1218
|
auto: StyleValue;
|
|
1219
1219
|
32: StyleValue;
|
|
1220
|
-
|
|
1220
|
+
28: StyleValue;
|
|
1221
1221
|
44: StyleValue;
|
|
1222
1222
|
48: StyleValue;
|
|
1223
1223
|
56: StyleValue;
|
|
1224
1224
|
52: StyleValue;
|
|
1225
1225
|
};
|
|
1226
1226
|
maxWidth: {
|
|
1227
|
-
percent: Record<"10" | "100" | "
|
|
1227
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
1228
1228
|
0: StyleValue;
|
|
1229
1229
|
2: StyleValue;
|
|
1230
1230
|
1: StyleValue;
|
|
@@ -1237,28 +1237,28 @@ export declare const sizes: {
|
|
|
1237
1237
|
10: StyleValue;
|
|
1238
1238
|
60: StyleValue;
|
|
1239
1239
|
64: StyleValue;
|
|
1240
|
-
|
|
1240
|
+
16: StyleValue;
|
|
1241
1241
|
20: StyleValue;
|
|
1242
|
+
7: StyleValue;
|
|
1242
1243
|
12: StyleValue;
|
|
1243
1244
|
24: StyleValue;
|
|
1244
1245
|
80: StyleValue;
|
|
1245
|
-
7: StyleValue;
|
|
1246
1246
|
9: StyleValue;
|
|
1247
|
-
|
|
1247
|
+
14: StyleValue;
|
|
1248
|
+
40: StyleValue;
|
|
1248
1249
|
72: StyleValue;
|
|
1249
1250
|
96: StyleValue;
|
|
1250
|
-
16: StyleValue;
|
|
1251
1251
|
36: StyleValue;
|
|
1252
1252
|
auto: StyleValue;
|
|
1253
1253
|
32: StyleValue;
|
|
1254
|
-
|
|
1254
|
+
28: StyleValue;
|
|
1255
1255
|
44: StyleValue;
|
|
1256
1256
|
48: StyleValue;
|
|
1257
1257
|
56: StyleValue;
|
|
1258
1258
|
52: StyleValue;
|
|
1259
1259
|
};
|
|
1260
1260
|
maxHeight: {
|
|
1261
|
-
percent: Record<"10" | "100" | "
|
|
1261
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
1262
1262
|
0: StyleValue;
|
|
1263
1263
|
2: StyleValue;
|
|
1264
1264
|
1: StyleValue;
|
|
@@ -1271,21 +1271,21 @@ export declare const sizes: {
|
|
|
1271
1271
|
10: StyleValue;
|
|
1272
1272
|
60: StyleValue;
|
|
1273
1273
|
64: StyleValue;
|
|
1274
|
-
|
|
1274
|
+
16: StyleValue;
|
|
1275
1275
|
20: StyleValue;
|
|
1276
|
+
7: StyleValue;
|
|
1276
1277
|
12: StyleValue;
|
|
1277
1278
|
24: StyleValue;
|
|
1278
1279
|
80: StyleValue;
|
|
1279
|
-
7: StyleValue;
|
|
1280
1280
|
9: StyleValue;
|
|
1281
|
-
|
|
1281
|
+
14: StyleValue;
|
|
1282
|
+
40: StyleValue;
|
|
1282
1283
|
72: StyleValue;
|
|
1283
1284
|
96: StyleValue;
|
|
1284
|
-
16: StyleValue;
|
|
1285
1285
|
36: StyleValue;
|
|
1286
1286
|
auto: StyleValue;
|
|
1287
1287
|
32: StyleValue;
|
|
1288
|
-
|
|
1288
|
+
28: StyleValue;
|
|
1289
1289
|
44: StyleValue;
|
|
1290
1290
|
48: StyleValue;
|
|
1291
1291
|
56: StyleValue;
|
|
@@ -1302,12 +1302,12 @@ export declare const flex: {
|
|
|
1302
1302
|
};
|
|
1303
1303
|
10: StyleValue;
|
|
1304
1304
|
100: StyleValue;
|
|
1305
|
+
50: StyleValue;
|
|
1306
|
+
30: StyleValue;
|
|
1305
1307
|
20: StyleValue;
|
|
1306
1308
|
25: StyleValue;
|
|
1307
|
-
30: StyleValue;
|
|
1308
1309
|
33: StyleValue;
|
|
1309
1310
|
40: StyleValue;
|
|
1310
|
-
50: StyleValue;
|
|
1311
1311
|
60: StyleValue;
|
|
1312
1312
|
66: StyleValue;
|
|
1313
1313
|
70: StyleValue;
|
|
@@ -1324,17 +1324,17 @@ export declare const flex: {
|
|
|
1324
1324
|
11: StyleValue;
|
|
1325
1325
|
8: StyleValue;
|
|
1326
1326
|
64: StyleValue;
|
|
1327
|
-
|
|
1327
|
+
16: StyleValue;
|
|
1328
|
+
7: StyleValue;
|
|
1328
1329
|
12: StyleValue;
|
|
1329
1330
|
24: StyleValue;
|
|
1330
|
-
7: StyleValue;
|
|
1331
1331
|
9: StyleValue;
|
|
1332
|
-
|
|
1332
|
+
14: StyleValue;
|
|
1333
1333
|
72: StyleValue;
|
|
1334
1334
|
96: StyleValue;
|
|
1335
|
-
16: StyleValue;
|
|
1336
1335
|
36: StyleValue;
|
|
1337
1336
|
32: StyleValue;
|
|
1337
|
+
28: StyleValue;
|
|
1338
1338
|
44: StyleValue;
|
|
1339
1339
|
48: StyleValue;
|
|
1340
1340
|
56: StyleValue;
|
|
@@ -1342,7 +1342,7 @@ export declare const flex: {
|
|
|
1342
1342
|
};
|
|
1343
1343
|
};
|
|
1344
1344
|
export declare const opacity: Record<0 | 50 | 100 | 5 | 10 | 60 | 25 | 20 | 80 | 30 | 40 | 70 | 75 | 90 | 95, StyleValue>;
|
|
1345
|
-
export declare const zIndex: Record<0 | 50 | 10 | 20 | 30 | "auto"
|
|
1345
|
+
export declare const zIndex: Record<0 | 50 | 10 | 20 | 30 | 40 | "auto", StyleValue>;
|
|
1346
1346
|
export declare const overflow: Record<"visible" | "hidden" | "scroll", StyleValue>;
|
|
1347
1347
|
export declare const textAlign: Record<"center" | "auto" | "left" | "right" | "justify", StyleValue>;
|
|
1348
1348
|
export declare const fontWeight: Record<"bold" | "normal" | "thin" | "light" | "medium" | "semibold" | "black" | "extrabold" | "extralight", StyleValue>;
|
|
@@ -1357,14 +1357,14 @@ export declare const transforms: {
|
|
|
1357
1357
|
scale: Record<0 | 50 | 100 | 200 | 150 | 125 | 75 | 90 | 95 | 105 | 110, StyleValue>;
|
|
1358
1358
|
scaleX: Record<0 | 50 | 100 | 200 | 150 | 125 | 75 | 90 | 95 | 105 | 110, StyleValue>;
|
|
1359
1359
|
scaleY: Record<0 | 50 | 100 | 200 | 150 | 125 | 75 | 90 | 95 | 105 | 110, StyleValue>;
|
|
1360
|
-
translateX: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1361
|
-
translateY: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1360
|
+
translateX: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1361
|
+
translateY: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1362
1362
|
};
|
|
1363
1363
|
export declare const position: {
|
|
1364
|
-
top: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1365
|
-
right: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1366
|
-
bottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1367
|
-
left: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1364
|
+
top: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1365
|
+
right: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1366
|
+
bottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1367
|
+
left: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1368
1368
|
topLeft: (top: number, left: number) => {
|
|
1369
1369
|
position: "absolute";
|
|
1370
1370
|
top: number;
|
|
@@ -1394,9 +1394,9 @@ export declare const position: {
|
|
|
1394
1394
|
};
|
|
1395
1395
|
export declare const aspectRatio: Record<"video" | "wide" | "square" | "photo" | "portrait" | "ultrawide" | "1/1" | "3/2" | "4/3" | "16/9" | "21/9", StyleValue>;
|
|
1396
1396
|
export declare const gap: {
|
|
1397
|
-
row: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1398
|
-
column: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1399
|
-
all: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
1397
|
+
row: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1398
|
+
column: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1399
|
+
all: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
1400
1400
|
};
|
|
1401
1401
|
export declare const layouts: {
|
|
1402
1402
|
fullScreen: {
|
|
@@ -1865,13 +1865,13 @@ export declare const atoms: {
|
|
|
1865
1865
|
readonly full: 999;
|
|
1866
1866
|
};
|
|
1867
1867
|
radius: {
|
|
1868
|
-
all: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
1869
|
-
top: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
1870
|
-
topRight: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
1871
|
-
bottom: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
1872
|
-
bottomRight: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
1873
|
-
left: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
1874
|
-
right: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
1868
|
+
all: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
1869
|
+
top: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
1870
|
+
topRight: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
1871
|
+
bottom: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
1872
|
+
bottomRight: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
1873
|
+
left: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
1874
|
+
right: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
1875
1875
|
};
|
|
1876
1876
|
typography: {
|
|
1877
1877
|
platform: {
|
|
@@ -2412,24 +2412,24 @@ export declare const atoms: {
|
|
|
2412
2412
|
backgrounds: Record<"success" | "red" | "green" | "blue" | "ios" | "android" | "warning" | "black" | "primary" | "destructive" | "transparent" | "slate" | "gray" | "zinc" | "neutral" | "stone" | "orange" | "amber" | "yellow" | "lime" | "emerald" | "teal" | "cyan" | "sky" | "indigo" | "violet" | "purple" | "fuchsia" | "pink" | "rose" | "white", StyleValue>;
|
|
2413
2413
|
textColors: Record<"success" | "red" | "green" | "blue" | "ios" | "android" | "warning" | "black" | "primary" | "destructive" | "transparent" | "slate" | "gray" | "zinc" | "neutral" | "stone" | "orange" | "amber" | "yellow" | "lime" | "emerald" | "teal" | "cyan" | "sky" | "indigo" | "violet" | "purple" | "fuchsia" | "pink" | "rose" | "white", StyleValue>;
|
|
2414
2414
|
spacingAtoms: {
|
|
2415
|
-
margin: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2416
|
-
marginTop: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2417
|
-
marginRight: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2418
|
-
marginBottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2419
|
-
marginLeft: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2420
|
-
marginHorizontal: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2421
|
-
marginVertical: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2422
|
-
padding: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2423
|
-
paddingTop: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2424
|
-
paddingRight: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2425
|
-
paddingBottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2426
|
-
paddingLeft: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2427
|
-
paddingHorizontal: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2428
|
-
paddingVertical: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2415
|
+
margin: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2416
|
+
marginTop: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2417
|
+
marginRight: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2418
|
+
marginBottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2419
|
+
marginLeft: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2420
|
+
marginHorizontal: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2421
|
+
marginVertical: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2422
|
+
padding: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2423
|
+
paddingTop: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2424
|
+
paddingRight: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2425
|
+
paddingBottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2426
|
+
paddingLeft: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2427
|
+
paddingHorizontal: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2428
|
+
paddingVertical: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2429
2429
|
};
|
|
2430
2430
|
sizes: {
|
|
2431
2431
|
width: {
|
|
2432
|
-
percent: Record<"10" | "100" | "
|
|
2432
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
2433
2433
|
0: StyleValue;
|
|
2434
2434
|
2: StyleValue;
|
|
2435
2435
|
1: StyleValue;
|
|
@@ -2442,28 +2442,28 @@ export declare const atoms: {
|
|
|
2442
2442
|
10: StyleValue;
|
|
2443
2443
|
60: StyleValue;
|
|
2444
2444
|
64: StyleValue;
|
|
2445
|
-
|
|
2445
|
+
16: StyleValue;
|
|
2446
2446
|
20: StyleValue;
|
|
2447
|
+
7: StyleValue;
|
|
2447
2448
|
12: StyleValue;
|
|
2448
2449
|
24: StyleValue;
|
|
2449
2450
|
80: StyleValue;
|
|
2450
|
-
7: StyleValue;
|
|
2451
2451
|
9: StyleValue;
|
|
2452
|
-
|
|
2452
|
+
14: StyleValue;
|
|
2453
|
+
40: StyleValue;
|
|
2453
2454
|
72: StyleValue;
|
|
2454
2455
|
96: StyleValue;
|
|
2455
|
-
16: StyleValue;
|
|
2456
2456
|
36: StyleValue;
|
|
2457
2457
|
auto: StyleValue;
|
|
2458
2458
|
32: StyleValue;
|
|
2459
|
-
|
|
2459
|
+
28: StyleValue;
|
|
2460
2460
|
44: StyleValue;
|
|
2461
2461
|
48: StyleValue;
|
|
2462
2462
|
56: StyleValue;
|
|
2463
2463
|
52: StyleValue;
|
|
2464
2464
|
};
|
|
2465
2465
|
height: {
|
|
2466
|
-
percent: Record<"10" | "100" | "
|
|
2466
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
2467
2467
|
0: StyleValue;
|
|
2468
2468
|
2: StyleValue;
|
|
2469
2469
|
1: StyleValue;
|
|
@@ -2476,28 +2476,28 @@ export declare const atoms: {
|
|
|
2476
2476
|
10: StyleValue;
|
|
2477
2477
|
60: StyleValue;
|
|
2478
2478
|
64: StyleValue;
|
|
2479
|
-
|
|
2479
|
+
16: StyleValue;
|
|
2480
2480
|
20: StyleValue;
|
|
2481
|
+
7: StyleValue;
|
|
2481
2482
|
12: StyleValue;
|
|
2482
2483
|
24: StyleValue;
|
|
2483
2484
|
80: StyleValue;
|
|
2484
|
-
7: StyleValue;
|
|
2485
2485
|
9: StyleValue;
|
|
2486
|
-
|
|
2486
|
+
14: StyleValue;
|
|
2487
|
+
40: StyleValue;
|
|
2487
2488
|
72: StyleValue;
|
|
2488
2489
|
96: StyleValue;
|
|
2489
|
-
16: StyleValue;
|
|
2490
2490
|
36: StyleValue;
|
|
2491
2491
|
auto: StyleValue;
|
|
2492
2492
|
32: StyleValue;
|
|
2493
|
-
|
|
2493
|
+
28: StyleValue;
|
|
2494
2494
|
44: StyleValue;
|
|
2495
2495
|
48: StyleValue;
|
|
2496
2496
|
56: StyleValue;
|
|
2497
2497
|
52: StyleValue;
|
|
2498
2498
|
};
|
|
2499
2499
|
minWidth: {
|
|
2500
|
-
percent: Record<"10" | "100" | "
|
|
2500
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
2501
2501
|
0: StyleValue;
|
|
2502
2502
|
2: StyleValue;
|
|
2503
2503
|
1: StyleValue;
|
|
@@ -2510,28 +2510,28 @@ export declare const atoms: {
|
|
|
2510
2510
|
10: StyleValue;
|
|
2511
2511
|
60: StyleValue;
|
|
2512
2512
|
64: StyleValue;
|
|
2513
|
-
|
|
2513
|
+
16: StyleValue;
|
|
2514
2514
|
20: StyleValue;
|
|
2515
|
+
7: StyleValue;
|
|
2515
2516
|
12: StyleValue;
|
|
2516
2517
|
24: StyleValue;
|
|
2517
2518
|
80: StyleValue;
|
|
2518
|
-
7: StyleValue;
|
|
2519
2519
|
9: StyleValue;
|
|
2520
|
-
|
|
2520
|
+
14: StyleValue;
|
|
2521
|
+
40: StyleValue;
|
|
2521
2522
|
72: StyleValue;
|
|
2522
2523
|
96: StyleValue;
|
|
2523
|
-
16: StyleValue;
|
|
2524
2524
|
36: StyleValue;
|
|
2525
2525
|
auto: StyleValue;
|
|
2526
2526
|
32: StyleValue;
|
|
2527
|
-
|
|
2527
|
+
28: StyleValue;
|
|
2528
2528
|
44: StyleValue;
|
|
2529
2529
|
48: StyleValue;
|
|
2530
2530
|
56: StyleValue;
|
|
2531
2531
|
52: StyleValue;
|
|
2532
2532
|
};
|
|
2533
2533
|
minHeight: {
|
|
2534
|
-
percent: Record<"10" | "100" | "
|
|
2534
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
2535
2535
|
0: StyleValue;
|
|
2536
2536
|
2: StyleValue;
|
|
2537
2537
|
1: StyleValue;
|
|
@@ -2544,28 +2544,28 @@ export declare const atoms: {
|
|
|
2544
2544
|
10: StyleValue;
|
|
2545
2545
|
60: StyleValue;
|
|
2546
2546
|
64: StyleValue;
|
|
2547
|
-
|
|
2547
|
+
16: StyleValue;
|
|
2548
2548
|
20: StyleValue;
|
|
2549
|
+
7: StyleValue;
|
|
2549
2550
|
12: StyleValue;
|
|
2550
2551
|
24: StyleValue;
|
|
2551
2552
|
80: StyleValue;
|
|
2552
|
-
7: StyleValue;
|
|
2553
2553
|
9: StyleValue;
|
|
2554
|
-
|
|
2554
|
+
14: StyleValue;
|
|
2555
|
+
40: StyleValue;
|
|
2555
2556
|
72: StyleValue;
|
|
2556
2557
|
96: StyleValue;
|
|
2557
|
-
16: StyleValue;
|
|
2558
2558
|
36: StyleValue;
|
|
2559
2559
|
auto: StyleValue;
|
|
2560
2560
|
32: StyleValue;
|
|
2561
|
-
|
|
2561
|
+
28: StyleValue;
|
|
2562
2562
|
44: StyleValue;
|
|
2563
2563
|
48: StyleValue;
|
|
2564
2564
|
56: StyleValue;
|
|
2565
2565
|
52: StyleValue;
|
|
2566
2566
|
};
|
|
2567
2567
|
maxWidth: {
|
|
2568
|
-
percent: Record<"10" | "100" | "
|
|
2568
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
2569
2569
|
0: StyleValue;
|
|
2570
2570
|
2: StyleValue;
|
|
2571
2571
|
1: StyleValue;
|
|
@@ -2578,28 +2578,28 @@ export declare const atoms: {
|
|
|
2578
2578
|
10: StyleValue;
|
|
2579
2579
|
60: StyleValue;
|
|
2580
2580
|
64: StyleValue;
|
|
2581
|
-
|
|
2581
|
+
16: StyleValue;
|
|
2582
2582
|
20: StyleValue;
|
|
2583
|
+
7: StyleValue;
|
|
2583
2584
|
12: StyleValue;
|
|
2584
2585
|
24: StyleValue;
|
|
2585
2586
|
80: StyleValue;
|
|
2586
|
-
7: StyleValue;
|
|
2587
2587
|
9: StyleValue;
|
|
2588
|
-
|
|
2588
|
+
14: StyleValue;
|
|
2589
|
+
40: StyleValue;
|
|
2589
2590
|
72: StyleValue;
|
|
2590
2591
|
96: StyleValue;
|
|
2591
|
-
16: StyleValue;
|
|
2592
2592
|
36: StyleValue;
|
|
2593
2593
|
auto: StyleValue;
|
|
2594
2594
|
32: StyleValue;
|
|
2595
|
-
|
|
2595
|
+
28: StyleValue;
|
|
2596
2596
|
44: StyleValue;
|
|
2597
2597
|
48: StyleValue;
|
|
2598
2598
|
56: StyleValue;
|
|
2599
2599
|
52: StyleValue;
|
|
2600
2600
|
};
|
|
2601
2601
|
maxHeight: {
|
|
2602
|
-
percent: Record<"10" | "100" | "
|
|
2602
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
2603
2603
|
0: StyleValue;
|
|
2604
2604
|
2: StyleValue;
|
|
2605
2605
|
1: StyleValue;
|
|
@@ -2612,21 +2612,21 @@ export declare const atoms: {
|
|
|
2612
2612
|
10: StyleValue;
|
|
2613
2613
|
60: StyleValue;
|
|
2614
2614
|
64: StyleValue;
|
|
2615
|
-
|
|
2615
|
+
16: StyleValue;
|
|
2616
2616
|
20: StyleValue;
|
|
2617
|
+
7: StyleValue;
|
|
2617
2618
|
12: StyleValue;
|
|
2618
2619
|
24: StyleValue;
|
|
2619
2620
|
80: StyleValue;
|
|
2620
|
-
7: StyleValue;
|
|
2621
2621
|
9: StyleValue;
|
|
2622
|
-
|
|
2622
|
+
14: StyleValue;
|
|
2623
|
+
40: StyleValue;
|
|
2623
2624
|
72: StyleValue;
|
|
2624
2625
|
96: StyleValue;
|
|
2625
|
-
16: StyleValue;
|
|
2626
2626
|
36: StyleValue;
|
|
2627
2627
|
auto: StyleValue;
|
|
2628
2628
|
32: StyleValue;
|
|
2629
|
-
|
|
2629
|
+
28: StyleValue;
|
|
2630
2630
|
44: StyleValue;
|
|
2631
2631
|
48: StyleValue;
|
|
2632
2632
|
56: StyleValue;
|
|
@@ -2643,12 +2643,12 @@ export declare const atoms: {
|
|
|
2643
2643
|
};
|
|
2644
2644
|
10: StyleValue;
|
|
2645
2645
|
100: StyleValue;
|
|
2646
|
+
50: StyleValue;
|
|
2647
|
+
30: StyleValue;
|
|
2646
2648
|
20: StyleValue;
|
|
2647
2649
|
25: StyleValue;
|
|
2648
|
-
30: StyleValue;
|
|
2649
2650
|
33: StyleValue;
|
|
2650
2651
|
40: StyleValue;
|
|
2651
|
-
50: StyleValue;
|
|
2652
2652
|
60: StyleValue;
|
|
2653
2653
|
66: StyleValue;
|
|
2654
2654
|
70: StyleValue;
|
|
@@ -2665,17 +2665,17 @@ export declare const atoms: {
|
|
|
2665
2665
|
11: StyleValue;
|
|
2666
2666
|
8: StyleValue;
|
|
2667
2667
|
64: StyleValue;
|
|
2668
|
-
|
|
2668
|
+
16: StyleValue;
|
|
2669
|
+
7: StyleValue;
|
|
2669
2670
|
12: StyleValue;
|
|
2670
2671
|
24: StyleValue;
|
|
2671
|
-
7: StyleValue;
|
|
2672
2672
|
9: StyleValue;
|
|
2673
|
-
|
|
2673
|
+
14: StyleValue;
|
|
2674
2674
|
72: StyleValue;
|
|
2675
2675
|
96: StyleValue;
|
|
2676
|
-
16: StyleValue;
|
|
2677
2676
|
36: StyleValue;
|
|
2678
2677
|
32: StyleValue;
|
|
2678
|
+
28: StyleValue;
|
|
2679
2679
|
44: StyleValue;
|
|
2680
2680
|
48: StyleValue;
|
|
2681
2681
|
56: StyleValue;
|
|
@@ -2683,7 +2683,7 @@ export declare const atoms: {
|
|
|
2683
2683
|
};
|
|
2684
2684
|
};
|
|
2685
2685
|
opacity: Record<0 | 50 | 100 | 5 | 10 | 60 | 25 | 20 | 80 | 30 | 40 | 70 | 75 | 90 | 95, StyleValue>;
|
|
2686
|
-
zIndex: Record<0 | 50 | 10 | 20 | 30 | "auto"
|
|
2686
|
+
zIndex: Record<0 | 50 | 10 | 20 | 30 | 40 | "auto", StyleValue>;
|
|
2687
2687
|
overflow: Record<"visible" | "hidden" | "scroll", StyleValue>;
|
|
2688
2688
|
textAlign: Record<"center" | "auto" | "left" | "right" | "justify", StyleValue>;
|
|
2689
2689
|
fontWeight: Record<"bold" | "normal" | "thin" | "light" | "medium" | "semibold" | "black" | "extrabold" | "extralight", StyleValue>;
|
|
@@ -2698,14 +2698,14 @@ export declare const atoms: {
|
|
|
2698
2698
|
scale: Record<0 | 50 | 100 | 200 | 150 | 125 | 75 | 90 | 95 | 105 | 110, StyleValue>;
|
|
2699
2699
|
scaleX: Record<0 | 50 | 100 | 200 | 150 | 125 | 75 | 90 | 95 | 105 | 110, StyleValue>;
|
|
2700
2700
|
scaleY: Record<0 | 50 | 100 | 200 | 150 | 125 | 75 | 90 | 95 | 105 | 110, StyleValue>;
|
|
2701
|
-
translateX: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2702
|
-
translateY: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2701
|
+
translateX: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2702
|
+
translateY: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2703
2703
|
};
|
|
2704
2704
|
position: {
|
|
2705
|
-
top: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2706
|
-
right: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2707
|
-
bottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2708
|
-
left: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2705
|
+
top: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2706
|
+
right: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2707
|
+
bottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2708
|
+
left: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2709
2709
|
topLeft: (top: number, left: number) => {
|
|
2710
2710
|
position: "absolute";
|
|
2711
2711
|
top: number;
|
|
@@ -2735,9 +2735,9 @@ export declare const atoms: {
|
|
|
2735
2735
|
};
|
|
2736
2736
|
aspectRatio: Record<"video" | "wide" | "square" | "photo" | "portrait" | "ultrawide" | "1/1" | "3/2" | "4/3" | "16/9" | "21/9", StyleValue>;
|
|
2737
2737
|
gap: {
|
|
2738
|
-
row: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2739
|
-
column: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2740
|
-
all: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
2738
|
+
row: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2739
|
+
column: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2740
|
+
all: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
2741
2741
|
};
|
|
2742
2742
|
layouts: {
|
|
2743
2743
|
fullScreen: {
|
|
@@ -3207,13 +3207,13 @@ export declare const a: {
|
|
|
3207
3207
|
readonly full: 999;
|
|
3208
3208
|
};
|
|
3209
3209
|
radius: {
|
|
3210
|
-
all: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
3211
|
-
top: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
3212
|
-
topRight: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
3213
|
-
bottom: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
3214
|
-
bottomRight: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
3215
|
-
left: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
3216
|
-
right: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
3210
|
+
all: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
3211
|
+
top: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
3212
|
+
topRight: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
3213
|
+
bottom: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
3214
|
+
bottomRight: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
3215
|
+
left: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
3216
|
+
right: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
3217
3217
|
};
|
|
3218
3218
|
typography: {
|
|
3219
3219
|
platform: {
|
|
@@ -3754,24 +3754,24 @@ export declare const a: {
|
|
|
3754
3754
|
backgrounds: Record<"success" | "red" | "green" | "blue" | "ios" | "android" | "warning" | "black" | "primary" | "destructive" | "transparent" | "slate" | "gray" | "zinc" | "neutral" | "stone" | "orange" | "amber" | "yellow" | "lime" | "emerald" | "teal" | "cyan" | "sky" | "indigo" | "violet" | "purple" | "fuchsia" | "pink" | "rose" | "white", StyleValue>;
|
|
3755
3755
|
textColors: Record<"success" | "red" | "green" | "blue" | "ios" | "android" | "warning" | "black" | "primary" | "destructive" | "transparent" | "slate" | "gray" | "zinc" | "neutral" | "stone" | "orange" | "amber" | "yellow" | "lime" | "emerald" | "teal" | "cyan" | "sky" | "indigo" | "violet" | "purple" | "fuchsia" | "pink" | "rose" | "white", StyleValue>;
|
|
3756
3756
|
spacingAtoms: {
|
|
3757
|
-
margin: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
3758
|
-
marginTop: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
3759
|
-
marginRight: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
3760
|
-
marginBottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
3761
|
-
marginLeft: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
3762
|
-
marginHorizontal: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
3763
|
-
marginVertical: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
3764
|
-
padding: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
3765
|
-
paddingTop: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
3766
|
-
paddingRight: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
3767
|
-
paddingBottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
3768
|
-
paddingLeft: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
3769
|
-
paddingHorizontal: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
3770
|
-
paddingVertical: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
3757
|
+
margin: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
3758
|
+
marginTop: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
3759
|
+
marginRight: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
3760
|
+
marginBottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
3761
|
+
marginLeft: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
3762
|
+
marginHorizontal: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
3763
|
+
marginVertical: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
3764
|
+
padding: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
3765
|
+
paddingTop: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
3766
|
+
paddingRight: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
3767
|
+
paddingBottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
3768
|
+
paddingLeft: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
3769
|
+
paddingHorizontal: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
3770
|
+
paddingVertical: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
3771
3771
|
};
|
|
3772
3772
|
sizes: {
|
|
3773
3773
|
width: {
|
|
3774
|
-
percent: Record<"10" | "100" | "
|
|
3774
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
3775
3775
|
0: StyleValue;
|
|
3776
3776
|
2: StyleValue;
|
|
3777
3777
|
1: StyleValue;
|
|
@@ -3784,28 +3784,28 @@ export declare const a: {
|
|
|
3784
3784
|
10: StyleValue;
|
|
3785
3785
|
60: StyleValue;
|
|
3786
3786
|
64: StyleValue;
|
|
3787
|
-
|
|
3787
|
+
16: StyleValue;
|
|
3788
3788
|
20: StyleValue;
|
|
3789
|
+
7: StyleValue;
|
|
3789
3790
|
12: StyleValue;
|
|
3790
3791
|
24: StyleValue;
|
|
3791
3792
|
80: StyleValue;
|
|
3792
|
-
7: StyleValue;
|
|
3793
3793
|
9: StyleValue;
|
|
3794
|
-
|
|
3794
|
+
14: StyleValue;
|
|
3795
|
+
40: StyleValue;
|
|
3795
3796
|
72: StyleValue;
|
|
3796
3797
|
96: StyleValue;
|
|
3797
|
-
16: StyleValue;
|
|
3798
3798
|
36: StyleValue;
|
|
3799
3799
|
auto: StyleValue;
|
|
3800
3800
|
32: StyleValue;
|
|
3801
|
-
|
|
3801
|
+
28: StyleValue;
|
|
3802
3802
|
44: StyleValue;
|
|
3803
3803
|
48: StyleValue;
|
|
3804
3804
|
56: StyleValue;
|
|
3805
3805
|
52: StyleValue;
|
|
3806
3806
|
};
|
|
3807
3807
|
height: {
|
|
3808
|
-
percent: Record<"10" | "100" | "
|
|
3808
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
3809
3809
|
0: StyleValue;
|
|
3810
3810
|
2: StyleValue;
|
|
3811
3811
|
1: StyleValue;
|
|
@@ -3818,28 +3818,28 @@ export declare const a: {
|
|
|
3818
3818
|
10: StyleValue;
|
|
3819
3819
|
60: StyleValue;
|
|
3820
3820
|
64: StyleValue;
|
|
3821
|
-
|
|
3821
|
+
16: StyleValue;
|
|
3822
3822
|
20: StyleValue;
|
|
3823
|
+
7: StyleValue;
|
|
3823
3824
|
12: StyleValue;
|
|
3824
3825
|
24: StyleValue;
|
|
3825
3826
|
80: StyleValue;
|
|
3826
|
-
7: StyleValue;
|
|
3827
3827
|
9: StyleValue;
|
|
3828
|
-
|
|
3828
|
+
14: StyleValue;
|
|
3829
|
+
40: StyleValue;
|
|
3829
3830
|
72: StyleValue;
|
|
3830
3831
|
96: StyleValue;
|
|
3831
|
-
16: StyleValue;
|
|
3832
3832
|
36: StyleValue;
|
|
3833
3833
|
auto: StyleValue;
|
|
3834
3834
|
32: StyleValue;
|
|
3835
|
-
|
|
3835
|
+
28: StyleValue;
|
|
3836
3836
|
44: StyleValue;
|
|
3837
3837
|
48: StyleValue;
|
|
3838
3838
|
56: StyleValue;
|
|
3839
3839
|
52: StyleValue;
|
|
3840
3840
|
};
|
|
3841
3841
|
minWidth: {
|
|
3842
|
-
percent: Record<"10" | "100" | "
|
|
3842
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
3843
3843
|
0: StyleValue;
|
|
3844
3844
|
2: StyleValue;
|
|
3845
3845
|
1: StyleValue;
|
|
@@ -3852,28 +3852,28 @@ export declare const a: {
|
|
|
3852
3852
|
10: StyleValue;
|
|
3853
3853
|
60: StyleValue;
|
|
3854
3854
|
64: StyleValue;
|
|
3855
|
-
|
|
3855
|
+
16: StyleValue;
|
|
3856
3856
|
20: StyleValue;
|
|
3857
|
+
7: StyleValue;
|
|
3857
3858
|
12: StyleValue;
|
|
3858
3859
|
24: StyleValue;
|
|
3859
3860
|
80: StyleValue;
|
|
3860
|
-
7: StyleValue;
|
|
3861
3861
|
9: StyleValue;
|
|
3862
|
-
|
|
3862
|
+
14: StyleValue;
|
|
3863
|
+
40: StyleValue;
|
|
3863
3864
|
72: StyleValue;
|
|
3864
3865
|
96: StyleValue;
|
|
3865
|
-
16: StyleValue;
|
|
3866
3866
|
36: StyleValue;
|
|
3867
3867
|
auto: StyleValue;
|
|
3868
3868
|
32: StyleValue;
|
|
3869
|
-
|
|
3869
|
+
28: StyleValue;
|
|
3870
3870
|
44: StyleValue;
|
|
3871
3871
|
48: StyleValue;
|
|
3872
3872
|
56: StyleValue;
|
|
3873
3873
|
52: StyleValue;
|
|
3874
3874
|
};
|
|
3875
3875
|
minHeight: {
|
|
3876
|
-
percent: Record<"10" | "100" | "
|
|
3876
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
3877
3877
|
0: StyleValue;
|
|
3878
3878
|
2: StyleValue;
|
|
3879
3879
|
1: StyleValue;
|
|
@@ -3886,28 +3886,28 @@ export declare const a: {
|
|
|
3886
3886
|
10: StyleValue;
|
|
3887
3887
|
60: StyleValue;
|
|
3888
3888
|
64: StyleValue;
|
|
3889
|
-
|
|
3889
|
+
16: StyleValue;
|
|
3890
3890
|
20: StyleValue;
|
|
3891
|
+
7: StyleValue;
|
|
3891
3892
|
12: StyleValue;
|
|
3892
3893
|
24: StyleValue;
|
|
3893
3894
|
80: StyleValue;
|
|
3894
|
-
7: StyleValue;
|
|
3895
3895
|
9: StyleValue;
|
|
3896
|
-
|
|
3896
|
+
14: StyleValue;
|
|
3897
|
+
40: StyleValue;
|
|
3897
3898
|
72: StyleValue;
|
|
3898
3899
|
96: StyleValue;
|
|
3899
|
-
16: StyleValue;
|
|
3900
3900
|
36: StyleValue;
|
|
3901
3901
|
auto: StyleValue;
|
|
3902
3902
|
32: StyleValue;
|
|
3903
|
-
|
|
3903
|
+
28: StyleValue;
|
|
3904
3904
|
44: StyleValue;
|
|
3905
3905
|
48: StyleValue;
|
|
3906
3906
|
56: StyleValue;
|
|
3907
3907
|
52: StyleValue;
|
|
3908
3908
|
};
|
|
3909
3909
|
maxWidth: {
|
|
3910
|
-
percent: Record<"10" | "100" | "
|
|
3910
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
3911
3911
|
0: StyleValue;
|
|
3912
3912
|
2: StyleValue;
|
|
3913
3913
|
1: StyleValue;
|
|
@@ -3920,28 +3920,28 @@ export declare const a: {
|
|
|
3920
3920
|
10: StyleValue;
|
|
3921
3921
|
60: StyleValue;
|
|
3922
3922
|
64: StyleValue;
|
|
3923
|
-
|
|
3923
|
+
16: StyleValue;
|
|
3924
3924
|
20: StyleValue;
|
|
3925
|
+
7: StyleValue;
|
|
3925
3926
|
12: StyleValue;
|
|
3926
3927
|
24: StyleValue;
|
|
3927
3928
|
80: StyleValue;
|
|
3928
|
-
7: StyleValue;
|
|
3929
3929
|
9: StyleValue;
|
|
3930
|
-
|
|
3930
|
+
14: StyleValue;
|
|
3931
|
+
40: StyleValue;
|
|
3931
3932
|
72: StyleValue;
|
|
3932
3933
|
96: StyleValue;
|
|
3933
|
-
16: StyleValue;
|
|
3934
3934
|
36: StyleValue;
|
|
3935
3935
|
auto: StyleValue;
|
|
3936
3936
|
32: StyleValue;
|
|
3937
|
-
|
|
3937
|
+
28: StyleValue;
|
|
3938
3938
|
44: StyleValue;
|
|
3939
3939
|
48: StyleValue;
|
|
3940
3940
|
56: StyleValue;
|
|
3941
3941
|
52: StyleValue;
|
|
3942
3942
|
};
|
|
3943
3943
|
maxHeight: {
|
|
3944
|
-
percent: Record<"10" | "100" | "
|
|
3944
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
3945
3945
|
0: StyleValue;
|
|
3946
3946
|
2: StyleValue;
|
|
3947
3947
|
1: StyleValue;
|
|
@@ -3954,21 +3954,21 @@ export declare const a: {
|
|
|
3954
3954
|
10: StyleValue;
|
|
3955
3955
|
60: StyleValue;
|
|
3956
3956
|
64: StyleValue;
|
|
3957
|
-
|
|
3957
|
+
16: StyleValue;
|
|
3958
3958
|
20: StyleValue;
|
|
3959
|
+
7: StyleValue;
|
|
3959
3960
|
12: StyleValue;
|
|
3960
3961
|
24: StyleValue;
|
|
3961
3962
|
80: StyleValue;
|
|
3962
|
-
7: StyleValue;
|
|
3963
3963
|
9: StyleValue;
|
|
3964
|
-
|
|
3964
|
+
14: StyleValue;
|
|
3965
|
+
40: StyleValue;
|
|
3965
3966
|
72: StyleValue;
|
|
3966
3967
|
96: StyleValue;
|
|
3967
|
-
16: StyleValue;
|
|
3968
3968
|
36: StyleValue;
|
|
3969
3969
|
auto: StyleValue;
|
|
3970
3970
|
32: StyleValue;
|
|
3971
|
-
|
|
3971
|
+
28: StyleValue;
|
|
3972
3972
|
44: StyleValue;
|
|
3973
3973
|
48: StyleValue;
|
|
3974
3974
|
56: StyleValue;
|
|
@@ -3985,12 +3985,12 @@ export declare const a: {
|
|
|
3985
3985
|
};
|
|
3986
3986
|
10: StyleValue;
|
|
3987
3987
|
100: StyleValue;
|
|
3988
|
+
50: StyleValue;
|
|
3989
|
+
30: StyleValue;
|
|
3988
3990
|
20: StyleValue;
|
|
3989
3991
|
25: StyleValue;
|
|
3990
|
-
30: StyleValue;
|
|
3991
3992
|
33: StyleValue;
|
|
3992
3993
|
40: StyleValue;
|
|
3993
|
-
50: StyleValue;
|
|
3994
3994
|
60: StyleValue;
|
|
3995
3995
|
66: StyleValue;
|
|
3996
3996
|
70: StyleValue;
|
|
@@ -4007,17 +4007,17 @@ export declare const a: {
|
|
|
4007
4007
|
11: StyleValue;
|
|
4008
4008
|
8: StyleValue;
|
|
4009
4009
|
64: StyleValue;
|
|
4010
|
-
|
|
4010
|
+
16: StyleValue;
|
|
4011
|
+
7: StyleValue;
|
|
4011
4012
|
12: StyleValue;
|
|
4012
4013
|
24: StyleValue;
|
|
4013
|
-
7: StyleValue;
|
|
4014
4014
|
9: StyleValue;
|
|
4015
|
-
|
|
4015
|
+
14: StyleValue;
|
|
4016
4016
|
72: StyleValue;
|
|
4017
4017
|
96: StyleValue;
|
|
4018
|
-
16: StyleValue;
|
|
4019
4018
|
36: StyleValue;
|
|
4020
4019
|
32: StyleValue;
|
|
4020
|
+
28: StyleValue;
|
|
4021
4021
|
44: StyleValue;
|
|
4022
4022
|
48: StyleValue;
|
|
4023
4023
|
56: StyleValue;
|
|
@@ -4025,7 +4025,7 @@ export declare const a: {
|
|
|
4025
4025
|
};
|
|
4026
4026
|
};
|
|
4027
4027
|
opacity: Record<0 | 50 | 100 | 5 | 10 | 60 | 25 | 20 | 80 | 30 | 40 | 70 | 75 | 90 | 95, StyleValue>;
|
|
4028
|
-
zIndex: Record<0 | 50 | 10 | 20 | 30 | "auto"
|
|
4028
|
+
zIndex: Record<0 | 50 | 10 | 20 | 30 | 40 | "auto", StyleValue>;
|
|
4029
4029
|
overflow: Record<"visible" | "hidden" | "scroll", StyleValue>;
|
|
4030
4030
|
textAlign: Record<"center" | "auto" | "left" | "right" | "justify", StyleValue>;
|
|
4031
4031
|
fontWeight: Record<"bold" | "normal" | "thin" | "light" | "medium" | "semibold" | "black" | "extrabold" | "extralight", StyleValue>;
|
|
@@ -4040,14 +4040,14 @@ export declare const a: {
|
|
|
4040
4040
|
scale: Record<0 | 50 | 100 | 200 | 150 | 125 | 75 | 90 | 95 | 105 | 110, StyleValue>;
|
|
4041
4041
|
scaleX: Record<0 | 50 | 100 | 200 | 150 | 125 | 75 | 90 | 95 | 105 | 110, StyleValue>;
|
|
4042
4042
|
scaleY: Record<0 | 50 | 100 | 200 | 150 | 125 | 75 | 90 | 95 | 105 | 110, StyleValue>;
|
|
4043
|
-
translateX: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4044
|
-
translateY: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4043
|
+
translateX: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4044
|
+
translateY: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4045
4045
|
};
|
|
4046
4046
|
position: {
|
|
4047
|
-
top: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4048
|
-
right: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4049
|
-
bottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4050
|
-
left: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4047
|
+
top: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4048
|
+
right: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4049
|
+
bottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4050
|
+
left: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4051
4051
|
topLeft: (top: number, left: number) => {
|
|
4052
4052
|
position: "absolute";
|
|
4053
4053
|
top: number;
|
|
@@ -4077,9 +4077,9 @@ export declare const a: {
|
|
|
4077
4077
|
};
|
|
4078
4078
|
aspectRatio: Record<"video" | "wide" | "square" | "photo" | "portrait" | "ultrawide" | "1/1" | "3/2" | "4/3" | "16/9" | "21/9", StyleValue>;
|
|
4079
4079
|
gap: {
|
|
4080
|
-
row: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4081
|
-
column: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4082
|
-
all: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4080
|
+
row: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4081
|
+
column: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4082
|
+
all: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4083
4083
|
};
|
|
4084
4084
|
layouts: {
|
|
4085
4085
|
fullScreen: {
|
|
@@ -4132,22 +4132,22 @@ export declare const a: {
|
|
|
4132
4132
|
};
|
|
4133
4133
|
export declare const bg: Record<"success" | "red" | "green" | "blue" | "ios" | "android" | "warning" | "black" | "primary" | "destructive" | "transparent" | "slate" | "gray" | "zinc" | "neutral" | "stone" | "orange" | "amber" | "yellow" | "lime" | "emerald" | "teal" | "cyan" | "sky" | "indigo" | "violet" | "purple" | "fuchsia" | "pink" | "rose" | "white", StyleValue>;
|
|
4134
4134
|
export declare const text: Record<"success" | "red" | "green" | "blue" | "ios" | "android" | "warning" | "black" | "primary" | "destructive" | "transparent" | "slate" | "gray" | "zinc" | "neutral" | "stone" | "orange" | "amber" | "yellow" | "lime" | "emerald" | "teal" | "cyan" | "sky" | "indigo" | "violet" | "purple" | "fuchsia" | "pink" | "rose" | "white", StyleValue>;
|
|
4135
|
-
export declare const m: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4136
|
-
export declare const mt: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4137
|
-
export declare const mr: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4138
|
-
export declare const mb: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4139
|
-
export declare const ml: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4140
|
-
export declare const mx: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4141
|
-
export declare const my: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4142
|
-
export declare const p: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4143
|
-
export declare const pt: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4144
|
-
export declare const pr: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4145
|
-
export declare const pb: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4146
|
-
export declare const pl: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4147
|
-
export declare const px: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4148
|
-
export declare const py: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4135
|
+
export declare const m: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4136
|
+
export declare const mt: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4137
|
+
export declare const mr: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4138
|
+
export declare const mb: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4139
|
+
export declare const ml: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4140
|
+
export declare const mx: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4141
|
+
export declare const my: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4142
|
+
export declare const p: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4143
|
+
export declare const pt: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4144
|
+
export declare const pr: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4145
|
+
export declare const pb: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4146
|
+
export declare const pl: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4147
|
+
export declare const px: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4148
|
+
export declare const py: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4149
4149
|
export declare const w: {
|
|
4150
|
-
percent: Record<"10" | "100" | "
|
|
4150
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
4151
4151
|
0: StyleValue;
|
|
4152
4152
|
2: StyleValue;
|
|
4153
4153
|
1: StyleValue;
|
|
@@ -4160,28 +4160,28 @@ export declare const w: {
|
|
|
4160
4160
|
10: StyleValue;
|
|
4161
4161
|
60: StyleValue;
|
|
4162
4162
|
64: StyleValue;
|
|
4163
|
-
|
|
4163
|
+
16: StyleValue;
|
|
4164
4164
|
20: StyleValue;
|
|
4165
|
+
7: StyleValue;
|
|
4165
4166
|
12: StyleValue;
|
|
4166
4167
|
24: StyleValue;
|
|
4167
4168
|
80: StyleValue;
|
|
4168
|
-
7: StyleValue;
|
|
4169
4169
|
9: StyleValue;
|
|
4170
|
-
|
|
4170
|
+
14: StyleValue;
|
|
4171
|
+
40: StyleValue;
|
|
4171
4172
|
72: StyleValue;
|
|
4172
4173
|
96: StyleValue;
|
|
4173
|
-
16: StyleValue;
|
|
4174
4174
|
36: StyleValue;
|
|
4175
4175
|
auto: StyleValue;
|
|
4176
4176
|
32: StyleValue;
|
|
4177
|
-
|
|
4177
|
+
28: StyleValue;
|
|
4178
4178
|
44: StyleValue;
|
|
4179
4179
|
48: StyleValue;
|
|
4180
4180
|
56: StyleValue;
|
|
4181
4181
|
52: StyleValue;
|
|
4182
4182
|
};
|
|
4183
4183
|
export declare const h: {
|
|
4184
|
-
percent: Record<"10" | "100" | "
|
|
4184
|
+
percent: Record<"10" | "100" | "50" | "30" | "20" | "25" | "33" | "40" | "60" | "66" | "70" | "75" | "80" | "90", StyleValue>;
|
|
4185
4185
|
0: StyleValue;
|
|
4186
4186
|
2: StyleValue;
|
|
4187
4187
|
1: StyleValue;
|
|
@@ -4194,33 +4194,33 @@ export declare const h: {
|
|
|
4194
4194
|
10: StyleValue;
|
|
4195
4195
|
60: StyleValue;
|
|
4196
4196
|
64: StyleValue;
|
|
4197
|
-
|
|
4197
|
+
16: StyleValue;
|
|
4198
4198
|
20: StyleValue;
|
|
4199
|
+
7: StyleValue;
|
|
4199
4200
|
12: StyleValue;
|
|
4200
4201
|
24: StyleValue;
|
|
4201
4202
|
80: StyleValue;
|
|
4202
|
-
7: StyleValue;
|
|
4203
4203
|
9: StyleValue;
|
|
4204
|
-
|
|
4204
|
+
14: StyleValue;
|
|
4205
|
+
40: StyleValue;
|
|
4205
4206
|
72: StyleValue;
|
|
4206
4207
|
96: StyleValue;
|
|
4207
|
-
16: StyleValue;
|
|
4208
4208
|
36: StyleValue;
|
|
4209
4209
|
auto: StyleValue;
|
|
4210
4210
|
32: StyleValue;
|
|
4211
|
-
|
|
4211
|
+
28: StyleValue;
|
|
4212
4212
|
44: StyleValue;
|
|
4213
4213
|
48: StyleValue;
|
|
4214
4214
|
56: StyleValue;
|
|
4215
4215
|
52: StyleValue;
|
|
4216
4216
|
};
|
|
4217
|
-
export declare const r: Record<"none" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md"
|
|
4218
|
-
export declare const top: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4219
|
-
export declare const right: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4220
|
-
export declare const bottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4221
|
-
export declare const left: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4217
|
+
export declare const r: Record<"none" | "full" | "sm" | "lg" | "xl" | "2xl" | "3xl" | "md", StyleValue>;
|
|
4218
|
+
export declare const top: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4219
|
+
export declare const right: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4220
|
+
export declare const bottom: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4221
|
+
export declare const left: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4222
4222
|
export declare const rotate: Record<0 | 2 | 1 | 3 | 6 | 12 | 180 | 90 | 45 | 270, StyleValue>;
|
|
4223
4223
|
export declare const scale: Record<0 | 50 | 100 | 200 | 150 | 125 | 75 | 90 | 95 | 105 | 110, StyleValue>;
|
|
4224
|
-
export declare const translateX: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4225
|
-
export declare const translateY: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 |
|
|
4224
|
+
export declare const translateX: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4225
|
+
export declare const translateY: Record<0 | 2 | 1 | 3 | 5 | 4 | 6 | 11 | 8 | 10 | 60 | 64 | 16 | 20 | 7 | 12 | 24 | 80 | 9 | 14 | 40 | 72 | 96 | 36 | "auto" | 32 | 28 | 44 | 48 | 56 | 52, StyleValue>;
|
|
4226
4226
|
//# sourceMappingURL=atoms.d.ts.map
|