@atom-learning/components 5.2.0-beta.2 → 5.2.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.
- package/dist/components/data-table/DataTable.d.ts +5 -742
- package/dist/components/data-table/DataTableTable.d.ts +1 -2
- package/dist/components/data-table/DataTableTable.js +1 -1
- package/dist/components/data-table/DataTableTable.js.map +1 -1
- package/dist/components/index.d.ts +0 -1
- package/dist/components/pagination/PaginationPopover.js +1 -1
- package/dist/components/pagination/PaginationPopover.js.map +1 -1
- package/dist/components/segmented-control/SegmentedControlItem.js +1 -1
- package/dist/components/segmented-control/SegmentedControlItem.js.map +1 -1
- package/dist/components/segmented-control/SegmentedControlItemList.js +1 -1
- package/dist/components/segmented-control/SegmentedControlItemList.js.map +1 -1
- package/dist/components/table/Table.d.ts +11 -5
- package/dist/components/table/Table.js +1 -1
- package/dist/components/table/Table.js.map +1 -1
- package/dist/components/table/TableCell.js +1 -1
- package/dist/components/table/TableCell.js.map +1 -1
- package/dist/components/table/TableFooterCell.js +1 -1
- package/dist/components/table/TableFooterCell.js.map +1 -1
- package/dist/components/table/TableHeader.js +1 -1
- package/dist/components/table/TableHeader.js.map +1 -1
- package/dist/components/table/TableHeaderCell.js +1 -1
- package/dist/components/table/TableHeaderCell.js.map +1 -1
- package/dist/components/table/TableRow.js +1 -1
- package/dist/components/table/TableRow.js.map +1 -1
- package/dist/components/table/TableStickyColumnsContainer.d.ts +6 -0
- package/dist/components/table/TableStickyColumnsContainer.js +2 -0
- package/dist/components/table/TableStickyColumnsContainer.js.map +1 -0
- package/dist/components/table/useStickyColumnsCss.d.ts +10 -0
- package/dist/components/table/useStickyColumnsCss.js +2 -0
- package/dist/components/table/useStickyColumnsCss.js.map +1 -0
- package/dist/docgen.json +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
- package/dist/components/scrollable-container/ScrollableContainer.context.d.ts +0 -24
- package/dist/components/scrollable-container/ScrollableContainer.context.js +0 -2
- package/dist/components/scrollable-container/ScrollableContainer.context.js.map +0 -1
- package/dist/components/scrollable-container/ScrollableContainer.d.ts +0 -1120
- package/dist/components/scrollable-container/ScrollableContainer.js +0 -2
- package/dist/components/scrollable-container/ScrollableContainer.js.map +0 -1
- package/dist/components/scrollable-container/ScrollableContainerShadow.d.ts +0 -10
- package/dist/components/scrollable-container/ScrollableContainerShadow.js +0 -2
- package/dist/components/scrollable-container/ScrollableContainerShadow.js.map +0 -1
- package/dist/components/scrollable-container/index.d.ts +0 -3
- package/dist/components/scrollable-container/useScrollableContainer.d.ts +0 -2
- package/dist/components/scrollable-container/useScrollableContainer.js +0 -2
- package/dist/components/scrollable-container/useScrollableContainer.js.map +0 -1
- package/dist/components/table/TableScrollableContainer.d.ts +0 -743
- package/dist/components/table/TableScrollableContainer.js +0 -2
- package/dist/components/table/TableScrollableContainer.js.map +0 -1
- package/dist/components/table/useSticky.d.ts +0 -12
- package/dist/components/table/useSticky.js +0 -2
- package/dist/components/table/useSticky.js.map +0 -1
|
@@ -667,8 +667,9 @@ export declare const DataTable: (({ columns, data: dataProp, getAsyncData, defau
|
|
|
667
667
|
*/
|
|
668
668
|
DragAndDropTable: ({ idColumn, onDragAndDrop, sortable, striped, theme, css, ...props }: Omit<Omit<Omit<import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref"> & {
|
|
669
669
|
ref?: ((instance: HTMLTableElement | null) => void) | import("react").RefObject<HTMLTableElement> | null | undefined;
|
|
670
|
-
}, "size" | "css"> & import("@atom-learning/stitches-react/types/styled-component").TransformProps<{
|
|
670
|
+
}, "size" | "css" | "corners"> & import("@atom-learning/stitches-react/types/styled-component").TransformProps<{
|
|
671
671
|
size?: "md" | "lg" | "xl" | undefined;
|
|
672
|
+
corners?: "round" | "square" | undefined;
|
|
672
673
|
}, {
|
|
673
674
|
sm: string;
|
|
674
675
|
md: string;
|
|
@@ -1035,748 +1036,11 @@ export declare const DataTable: (({ columns, data: dataProp, getAsyncData, defau
|
|
|
1035
1036
|
};
|
|
1036
1037
|
}> | undefined;
|
|
1037
1038
|
} & {
|
|
1038
|
-
scrollable?: boolean;
|
|
1039
|
-
} & Omit<Omit<Omit<Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1040
|
-
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
1041
|
-
}, "css"> & import("@atom-learning/stitches-react/types/styled-component").TransformProps<{}, {
|
|
1042
|
-
sm: string;
|
|
1043
|
-
md: string;
|
|
1044
|
-
lg: string;
|
|
1045
|
-
xl: string;
|
|
1046
|
-
reducedMotion: string;
|
|
1047
|
-
allowMotion: string;
|
|
1048
|
-
hover: string;
|
|
1049
|
-
}> & {
|
|
1050
|
-
css?: import("@atom-learning/stitches-react/types/css-util").CSS<{
|
|
1051
|
-
sm: string;
|
|
1052
|
-
md: string;
|
|
1053
|
-
lg: string;
|
|
1054
|
-
xl: string;
|
|
1055
|
-
reducedMotion: string;
|
|
1056
|
-
allowMotion: string;
|
|
1057
|
-
hover: string;
|
|
1058
|
-
}, {
|
|
1059
|
-
colors: {
|
|
1060
|
-
textBold: string;
|
|
1061
|
-
textRegular: string;
|
|
1062
|
-
textSubtle: string;
|
|
1063
|
-
textMinimal: string;
|
|
1064
|
-
background: string;
|
|
1065
|
-
backgroundAccent: string;
|
|
1066
|
-
grey100: string;
|
|
1067
|
-
grey200: string;
|
|
1068
|
-
grey300: string;
|
|
1069
|
-
grey400: string;
|
|
1070
|
-
grey500: string;
|
|
1071
|
-
grey600: string;
|
|
1072
|
-
grey700: string;
|
|
1073
|
-
grey800: string;
|
|
1074
|
-
grey900: string;
|
|
1075
|
-
grey1000: string;
|
|
1076
|
-
grey1100: string;
|
|
1077
|
-
grey1200: string;
|
|
1078
|
-
blue100: string;
|
|
1079
|
-
blue200: string;
|
|
1080
|
-
blue300: string;
|
|
1081
|
-
blue400: string;
|
|
1082
|
-
blue500: string;
|
|
1083
|
-
blue600: string;
|
|
1084
|
-
blue700: string;
|
|
1085
|
-
blue800: string;
|
|
1086
|
-
blue900: string;
|
|
1087
|
-
blue1000: string;
|
|
1088
|
-
blue1100: string;
|
|
1089
|
-
blue1200: string;
|
|
1090
|
-
pink100: string;
|
|
1091
|
-
pink200: string;
|
|
1092
|
-
pink300: string;
|
|
1093
|
-
pink400: string;
|
|
1094
|
-
pink500: string;
|
|
1095
|
-
pink600: string;
|
|
1096
|
-
pink700: string;
|
|
1097
|
-
pink800: string;
|
|
1098
|
-
pink900: string;
|
|
1099
|
-
pink1000: string;
|
|
1100
|
-
pink1100: string;
|
|
1101
|
-
pink1200: string;
|
|
1102
|
-
purple100: string;
|
|
1103
|
-
purple200: string;
|
|
1104
|
-
purple300: string;
|
|
1105
|
-
purple400: string;
|
|
1106
|
-
purple500: string;
|
|
1107
|
-
purple600: string;
|
|
1108
|
-
purple700: string;
|
|
1109
|
-
purple800: string;
|
|
1110
|
-
purple900: string;
|
|
1111
|
-
purple1000: string;
|
|
1112
|
-
purple1100: string;
|
|
1113
|
-
purple1200: string;
|
|
1114
|
-
cyan100: string;
|
|
1115
|
-
cyan200: string;
|
|
1116
|
-
cyan300: string;
|
|
1117
|
-
cyan400: string;
|
|
1118
|
-
cyan500: string;
|
|
1119
|
-
cyan600: string;
|
|
1120
|
-
cyan700: string;
|
|
1121
|
-
cyan800: string;
|
|
1122
|
-
cyan900: string;
|
|
1123
|
-
cyan1000: string;
|
|
1124
|
-
cyan1100: string;
|
|
1125
|
-
cyan1200: string;
|
|
1126
|
-
green100: string;
|
|
1127
|
-
green200: string;
|
|
1128
|
-
green300: string;
|
|
1129
|
-
green400: string;
|
|
1130
|
-
green500: string;
|
|
1131
|
-
green600: string;
|
|
1132
|
-
green700: string;
|
|
1133
|
-
green800: string;
|
|
1134
|
-
green900: string;
|
|
1135
|
-
green1000: string;
|
|
1136
|
-
green1100: string;
|
|
1137
|
-
green1200: string;
|
|
1138
|
-
magenta100: string;
|
|
1139
|
-
magenta200: string;
|
|
1140
|
-
magenta300: string;
|
|
1141
|
-
magenta400: string;
|
|
1142
|
-
magenta500: string;
|
|
1143
|
-
magenta600: string;
|
|
1144
|
-
magenta700: string;
|
|
1145
|
-
magenta800: string;
|
|
1146
|
-
magenta900: string;
|
|
1147
|
-
magenta1000: string;
|
|
1148
|
-
magenta1100: string;
|
|
1149
|
-
magenta1200: string;
|
|
1150
|
-
red100: string;
|
|
1151
|
-
red200: string;
|
|
1152
|
-
red300: string;
|
|
1153
|
-
red400: string;
|
|
1154
|
-
red500: string;
|
|
1155
|
-
red600: string;
|
|
1156
|
-
red700: string;
|
|
1157
|
-
red800: string;
|
|
1158
|
-
red900: string;
|
|
1159
|
-
red1000: string;
|
|
1160
|
-
red1100: string;
|
|
1161
|
-
red1200: string;
|
|
1162
|
-
teal100: string;
|
|
1163
|
-
teal200: string;
|
|
1164
|
-
teal300: string;
|
|
1165
|
-
teal400: string;
|
|
1166
|
-
teal500: string;
|
|
1167
|
-
teal600: string;
|
|
1168
|
-
teal700: string;
|
|
1169
|
-
teal800: string;
|
|
1170
|
-
teal900: string;
|
|
1171
|
-
teal1000: string;
|
|
1172
|
-
teal1100: string;
|
|
1173
|
-
teal1200: string;
|
|
1174
|
-
orange100: string;
|
|
1175
|
-
orange200: string;
|
|
1176
|
-
orange300: string;
|
|
1177
|
-
orange400: string;
|
|
1178
|
-
orange500: string;
|
|
1179
|
-
orange600: string;
|
|
1180
|
-
orange700: string;
|
|
1181
|
-
orange800: string;
|
|
1182
|
-
orange900: string;
|
|
1183
|
-
orange1000: string;
|
|
1184
|
-
orange1100: string;
|
|
1185
|
-
orange1200: string;
|
|
1186
|
-
yellow100: string;
|
|
1187
|
-
yellow200: string;
|
|
1188
|
-
yellow300: string;
|
|
1189
|
-
yellow400: string;
|
|
1190
|
-
yellow500: string;
|
|
1191
|
-
yellow600: string;
|
|
1192
|
-
yellow700: string;
|
|
1193
|
-
yellow800: string;
|
|
1194
|
-
yellow900: string;
|
|
1195
|
-
yellow1000: string;
|
|
1196
|
-
yellow1100: string;
|
|
1197
|
-
yellow1200: string;
|
|
1198
|
-
lime100: string;
|
|
1199
|
-
lime200: string;
|
|
1200
|
-
lime300: string;
|
|
1201
|
-
lime400: string;
|
|
1202
|
-
lime500: string;
|
|
1203
|
-
lime600: string;
|
|
1204
|
-
lime700: string;
|
|
1205
|
-
lime800: string;
|
|
1206
|
-
lime900: string;
|
|
1207
|
-
lime1000: string;
|
|
1208
|
-
lime1100: string;
|
|
1209
|
-
lime1200: string;
|
|
1210
|
-
lapis100: string;
|
|
1211
|
-
lapis200: string;
|
|
1212
|
-
lapis300: string;
|
|
1213
|
-
lapis400: string;
|
|
1214
|
-
lapis500: string;
|
|
1215
|
-
lapis600: string;
|
|
1216
|
-
lapis700: string;
|
|
1217
|
-
lapis800: string;
|
|
1218
|
-
lapis900: string;
|
|
1219
|
-
lapis1000: string;
|
|
1220
|
-
lapis1100: string;
|
|
1221
|
-
lapis1200: string;
|
|
1222
|
-
maroon100: string;
|
|
1223
|
-
maroon200: string;
|
|
1224
|
-
maroon300: string;
|
|
1225
|
-
maroon400: string;
|
|
1226
|
-
maroon500: string;
|
|
1227
|
-
maroon600: string;
|
|
1228
|
-
maroon700: string;
|
|
1229
|
-
maroon800: string;
|
|
1230
|
-
maroon900: string;
|
|
1231
|
-
maroon1000: string;
|
|
1232
|
-
maroon1100: string;
|
|
1233
|
-
maroon1200: string;
|
|
1234
|
-
marsh100: string;
|
|
1235
|
-
marsh200: string;
|
|
1236
|
-
marsh300: string;
|
|
1237
|
-
marsh400: string;
|
|
1238
|
-
marsh500: string;
|
|
1239
|
-
marsh600: string;
|
|
1240
|
-
marsh700: string;
|
|
1241
|
-
marsh800: string;
|
|
1242
|
-
marsh900: string;
|
|
1243
|
-
marsh1000: string;
|
|
1244
|
-
marsh1100: string;
|
|
1245
|
-
marsh1200: string;
|
|
1246
|
-
alpha100: string;
|
|
1247
|
-
alpha150: string;
|
|
1248
|
-
alpha200: string;
|
|
1249
|
-
alpha250: string;
|
|
1250
|
-
alpha600: string;
|
|
1251
|
-
infoLight: string;
|
|
1252
|
-
info: string;
|
|
1253
|
-
infoMid: string;
|
|
1254
|
-
infoDark: string;
|
|
1255
|
-
successLight: string;
|
|
1256
|
-
success: string;
|
|
1257
|
-
successMid: string;
|
|
1258
|
-
successDark: string;
|
|
1259
|
-
dangerLight: string;
|
|
1260
|
-
danger: string;
|
|
1261
|
-
dangerMid: string;
|
|
1262
|
-
dangerDark: string;
|
|
1263
|
-
warningLight: string;
|
|
1264
|
-
warning: string;
|
|
1265
|
-
warningMid: string;
|
|
1266
|
-
warningDark: string;
|
|
1267
|
-
warningText: string;
|
|
1268
|
-
subjectEnglish: string;
|
|
1269
|
-
subjectMaths: string;
|
|
1270
|
-
subjectScience: string;
|
|
1271
|
-
subjectVerbalReasoning: string;
|
|
1272
|
-
subjectNonVerbalReasoning: string;
|
|
1273
|
-
subjectCreativeWriting: string;
|
|
1274
|
-
subjectExamSkills: string;
|
|
1275
|
-
glBlueLight: string;
|
|
1276
|
-
glBluePrimary: string;
|
|
1277
|
-
glBlueDark: string;
|
|
1278
|
-
primary100: string;
|
|
1279
|
-
primary200: string;
|
|
1280
|
-
primary300: string;
|
|
1281
|
-
primary400: string;
|
|
1282
|
-
primary500: string;
|
|
1283
|
-
primary600: string;
|
|
1284
|
-
primary700: string;
|
|
1285
|
-
primary800: string;
|
|
1286
|
-
primary900: string;
|
|
1287
|
-
primary1000: string;
|
|
1288
|
-
primary1100: string;
|
|
1289
|
-
primary1200: string;
|
|
1290
|
-
};
|
|
1291
|
-
space: {
|
|
1292
|
-
"0": string;
|
|
1293
|
-
"1": string;
|
|
1294
|
-
"2": string;
|
|
1295
|
-
"3": string;
|
|
1296
|
-
"4": string;
|
|
1297
|
-
"5": string;
|
|
1298
|
-
"6": string;
|
|
1299
|
-
"7": string;
|
|
1300
|
-
"8": string;
|
|
1301
|
-
"9": string;
|
|
1302
|
-
"24": string;
|
|
1303
|
-
};
|
|
1304
|
-
fontSizes: {
|
|
1305
|
-
xs: string;
|
|
1306
|
-
sm: string;
|
|
1307
|
-
md: string;
|
|
1308
|
-
lg: string;
|
|
1309
|
-
xl: string;
|
|
1310
|
-
"2xl": string;
|
|
1311
|
-
"3xl": string;
|
|
1312
|
-
"4xl": string;
|
|
1313
|
-
};
|
|
1314
|
-
fonts: {
|
|
1315
|
-
sans: string;
|
|
1316
|
-
mono: string;
|
|
1317
|
-
display: string;
|
|
1318
|
-
body: string;
|
|
1319
|
-
};
|
|
1320
|
-
sizes: {
|
|
1321
|
-
"0": string;
|
|
1322
|
-
"1": string;
|
|
1323
|
-
"2": string;
|
|
1324
|
-
"3": string;
|
|
1325
|
-
"4": string;
|
|
1326
|
-
"5": string;
|
|
1327
|
-
"6": string;
|
|
1328
|
-
"7": string;
|
|
1329
|
-
"8": string;
|
|
1330
|
-
};
|
|
1331
|
-
radii: {
|
|
1332
|
-
"0": string;
|
|
1333
|
-
"1": string;
|
|
1334
|
-
"2": string;
|
|
1335
|
-
"3": string;
|
|
1336
|
-
round: string;
|
|
1337
|
-
};
|
|
1338
|
-
shadows: {
|
|
1339
|
-
"0": string;
|
|
1340
|
-
"1": string;
|
|
1341
|
-
"2": string;
|
|
1342
|
-
"3": string;
|
|
1343
|
-
};
|
|
1344
|
-
ratios: {
|
|
1345
|
-
"16-9": string;
|
|
1346
|
-
"3-2": string;
|
|
1347
|
-
"4-3": string;
|
|
1348
|
-
"1-1": string;
|
|
1349
|
-
"3-4": string;
|
|
1350
|
-
};
|
|
1351
|
-
}, import("@atom-learning/stitches-react/types/config").DefaultThemeMap, {
|
|
1352
|
-
bg: (value: import("@atom-learning/stitches-react").PropertyValue<"background">) => {
|
|
1353
|
-
background: import("@atom-learning/stitches-react/types/css-util").WithPropertyValue<"background">;
|
|
1354
|
-
};
|
|
1355
|
-
size: (value: import("@atom-learning/stitches-react").ScaleValue<"size"> | number | string) => {
|
|
1356
|
-
height: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">;
|
|
1357
|
-
width: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">;
|
|
1358
|
-
};
|
|
1359
|
-
p: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1360
|
-
padding: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1361
|
-
};
|
|
1362
|
-
pt: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1363
|
-
paddingTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1364
|
-
};
|
|
1365
|
-
pr: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1366
|
-
paddingRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1367
|
-
};
|
|
1368
|
-
pb: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1369
|
-
paddingBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1370
|
-
};
|
|
1371
|
-
pl: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1372
|
-
paddingLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1373
|
-
};
|
|
1374
|
-
px: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1375
|
-
paddingLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1376
|
-
paddingRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1377
|
-
};
|
|
1378
|
-
py: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1379
|
-
paddingTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1380
|
-
paddingBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1381
|
-
};
|
|
1382
|
-
m: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1383
|
-
margin: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1384
|
-
};
|
|
1385
|
-
mt: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1386
|
-
marginTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1387
|
-
};
|
|
1388
|
-
mr: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1389
|
-
marginRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1390
|
-
};
|
|
1391
|
-
mb: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1392
|
-
marginBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1393
|
-
};
|
|
1394
|
-
ml: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1395
|
-
marginLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1396
|
-
};
|
|
1397
|
-
mx: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1398
|
-
marginLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1399
|
-
marginRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1400
|
-
};
|
|
1401
|
-
my: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1402
|
-
marginTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1403
|
-
marginBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1404
|
-
};
|
|
1405
|
-
}> | undefined;
|
|
1406
|
-
}, "css"> & import("@atom-learning/stitches-react/types/styled-component").TransformProps<{}, {}> & {
|
|
1407
|
-
css?: import("@atom-learning/stitches-react/types/css-util").CSS<{}, {}, {}, {}> | undefined;
|
|
1408
|
-
} & {
|
|
1409
|
-
scrollContainerCss?: import("react").ComponentProps<import("@atom-learning/stitches-react/types/styled-component").StyledComponent<import("@atom-learning/stitches-react/types/styled-component").StyledComponent<"div", {}, {
|
|
1410
|
-
sm: string;
|
|
1411
|
-
md: string;
|
|
1412
|
-
lg: string;
|
|
1413
|
-
xl: string;
|
|
1414
|
-
reducedMotion: string;
|
|
1415
|
-
allowMotion: string;
|
|
1416
|
-
hover: string;
|
|
1417
|
-
}, import("@atom-learning/stitches-react/types/css-util").CSS<{
|
|
1418
|
-
sm: string;
|
|
1419
|
-
md: string;
|
|
1420
|
-
lg: string;
|
|
1421
|
-
xl: string;
|
|
1422
|
-
reducedMotion: string;
|
|
1423
|
-
allowMotion: string;
|
|
1424
|
-
hover: string;
|
|
1425
|
-
}, {
|
|
1426
|
-
colors: {
|
|
1427
|
-
textBold: string;
|
|
1428
|
-
textRegular: string;
|
|
1429
|
-
textSubtle: string;
|
|
1430
|
-
textMinimal: string;
|
|
1431
|
-
background: string;
|
|
1432
|
-
backgroundAccent: string;
|
|
1433
|
-
grey100: string;
|
|
1434
|
-
grey200: string;
|
|
1435
|
-
grey300: string;
|
|
1436
|
-
grey400: string;
|
|
1437
|
-
grey500: string;
|
|
1438
|
-
grey600: string;
|
|
1439
|
-
grey700: string;
|
|
1440
|
-
grey800: string;
|
|
1441
|
-
grey900: string;
|
|
1442
|
-
grey1000: string;
|
|
1443
|
-
grey1100: string;
|
|
1444
|
-
grey1200: string;
|
|
1445
|
-
blue100: string;
|
|
1446
|
-
blue200: string;
|
|
1447
|
-
blue300: string;
|
|
1448
|
-
blue400: string;
|
|
1449
|
-
blue500: string;
|
|
1450
|
-
blue600: string;
|
|
1451
|
-
blue700: string;
|
|
1452
|
-
blue800: string;
|
|
1453
|
-
blue900: string;
|
|
1454
|
-
blue1000: string;
|
|
1455
|
-
blue1100: string;
|
|
1456
|
-
blue1200: string;
|
|
1457
|
-
pink100: string;
|
|
1458
|
-
pink200: string;
|
|
1459
|
-
pink300: string;
|
|
1460
|
-
pink400: string;
|
|
1461
|
-
pink500: string;
|
|
1462
|
-
pink600: string;
|
|
1463
|
-
pink700: string;
|
|
1464
|
-
pink800: string;
|
|
1465
|
-
pink900: string;
|
|
1466
|
-
pink1000: string;
|
|
1467
|
-
pink1100: string;
|
|
1468
|
-
pink1200: string;
|
|
1469
|
-
purple100: string;
|
|
1470
|
-
purple200: string;
|
|
1471
|
-
purple300: string;
|
|
1472
|
-
purple400: string;
|
|
1473
|
-
purple500: string;
|
|
1474
|
-
purple600: string;
|
|
1475
|
-
purple700: string;
|
|
1476
|
-
purple800: string;
|
|
1477
|
-
purple900: string;
|
|
1478
|
-
purple1000: string;
|
|
1479
|
-
purple1100: string;
|
|
1480
|
-
purple1200: string;
|
|
1481
|
-
cyan100: string;
|
|
1482
|
-
cyan200: string;
|
|
1483
|
-
cyan300: string;
|
|
1484
|
-
cyan400: string;
|
|
1485
|
-
cyan500: string;
|
|
1486
|
-
cyan600: string;
|
|
1487
|
-
cyan700: string;
|
|
1488
|
-
cyan800: string;
|
|
1489
|
-
cyan900: string;
|
|
1490
|
-
cyan1000: string;
|
|
1491
|
-
cyan1100: string;
|
|
1492
|
-
cyan1200: string;
|
|
1493
|
-
green100: string;
|
|
1494
|
-
green200: string;
|
|
1495
|
-
green300: string;
|
|
1496
|
-
green400: string;
|
|
1497
|
-
green500: string;
|
|
1498
|
-
green600: string;
|
|
1499
|
-
green700: string;
|
|
1500
|
-
green800: string;
|
|
1501
|
-
green900: string;
|
|
1502
|
-
green1000: string;
|
|
1503
|
-
green1100: string;
|
|
1504
|
-
green1200: string;
|
|
1505
|
-
magenta100: string;
|
|
1506
|
-
magenta200: string;
|
|
1507
|
-
magenta300: string;
|
|
1508
|
-
magenta400: string;
|
|
1509
|
-
magenta500: string;
|
|
1510
|
-
magenta600: string;
|
|
1511
|
-
magenta700: string;
|
|
1512
|
-
magenta800: string;
|
|
1513
|
-
magenta900: string;
|
|
1514
|
-
magenta1000: string;
|
|
1515
|
-
magenta1100: string;
|
|
1516
|
-
magenta1200: string;
|
|
1517
|
-
red100: string;
|
|
1518
|
-
red200: string;
|
|
1519
|
-
red300: string;
|
|
1520
|
-
red400: string;
|
|
1521
|
-
red500: string;
|
|
1522
|
-
red600: string;
|
|
1523
|
-
red700: string;
|
|
1524
|
-
red800: string;
|
|
1525
|
-
red900: string;
|
|
1526
|
-
red1000: string;
|
|
1527
|
-
red1100: string;
|
|
1528
|
-
red1200: string;
|
|
1529
|
-
teal100: string;
|
|
1530
|
-
teal200: string;
|
|
1531
|
-
teal300: string;
|
|
1532
|
-
teal400: string;
|
|
1533
|
-
teal500: string;
|
|
1534
|
-
teal600: string;
|
|
1535
|
-
teal700: string;
|
|
1536
|
-
teal800: string;
|
|
1537
|
-
teal900: string;
|
|
1538
|
-
teal1000: string;
|
|
1539
|
-
teal1100: string;
|
|
1540
|
-
teal1200: string;
|
|
1541
|
-
orange100: string;
|
|
1542
|
-
orange200: string;
|
|
1543
|
-
orange300: string;
|
|
1544
|
-
orange400: string;
|
|
1545
|
-
orange500: string;
|
|
1546
|
-
orange600: string;
|
|
1547
|
-
orange700: string;
|
|
1548
|
-
orange800: string;
|
|
1549
|
-
orange900: string;
|
|
1550
|
-
orange1000: string;
|
|
1551
|
-
orange1100: string;
|
|
1552
|
-
orange1200: string;
|
|
1553
|
-
yellow100: string;
|
|
1554
|
-
yellow200: string;
|
|
1555
|
-
yellow300: string;
|
|
1556
|
-
yellow400: string;
|
|
1557
|
-
yellow500: string;
|
|
1558
|
-
yellow600: string;
|
|
1559
|
-
yellow700: string;
|
|
1560
|
-
yellow800: string;
|
|
1561
|
-
yellow900: string;
|
|
1562
|
-
yellow1000: string;
|
|
1563
|
-
yellow1100: string;
|
|
1564
|
-
yellow1200: string;
|
|
1565
|
-
lime100: string;
|
|
1566
|
-
lime200: string;
|
|
1567
|
-
lime300: string;
|
|
1568
|
-
lime400: string;
|
|
1569
|
-
lime500: string;
|
|
1570
|
-
lime600: string;
|
|
1571
|
-
lime700: string;
|
|
1572
|
-
lime800: string;
|
|
1573
|
-
lime900: string;
|
|
1574
|
-
lime1000: string;
|
|
1575
|
-
lime1100: string;
|
|
1576
|
-
lime1200: string;
|
|
1577
|
-
lapis100: string;
|
|
1578
|
-
lapis200: string;
|
|
1579
|
-
lapis300: string;
|
|
1580
|
-
lapis400: string;
|
|
1581
|
-
lapis500: string;
|
|
1582
|
-
lapis600: string;
|
|
1583
|
-
lapis700: string;
|
|
1584
|
-
lapis800: string;
|
|
1585
|
-
lapis900: string;
|
|
1586
|
-
lapis1000: string;
|
|
1587
|
-
lapis1100: string;
|
|
1588
|
-
lapis1200: string;
|
|
1589
|
-
maroon100: string;
|
|
1590
|
-
maroon200: string;
|
|
1591
|
-
maroon300: string;
|
|
1592
|
-
maroon400: string;
|
|
1593
|
-
maroon500: string;
|
|
1594
|
-
maroon600: string;
|
|
1595
|
-
maroon700: string;
|
|
1596
|
-
maroon800: string;
|
|
1597
|
-
maroon900: string;
|
|
1598
|
-
maroon1000: string;
|
|
1599
|
-
maroon1100: string;
|
|
1600
|
-
maroon1200: string;
|
|
1601
|
-
marsh100: string;
|
|
1602
|
-
marsh200: string;
|
|
1603
|
-
marsh300: string;
|
|
1604
|
-
marsh400: string;
|
|
1605
|
-
marsh500: string;
|
|
1606
|
-
marsh600: string;
|
|
1607
|
-
marsh700: string;
|
|
1608
|
-
marsh800: string;
|
|
1609
|
-
marsh900: string;
|
|
1610
|
-
marsh1000: string;
|
|
1611
|
-
marsh1100: string;
|
|
1612
|
-
marsh1200: string;
|
|
1613
|
-
alpha100: string;
|
|
1614
|
-
alpha150: string;
|
|
1615
|
-
alpha200: string;
|
|
1616
|
-
alpha250: string;
|
|
1617
|
-
alpha600: string;
|
|
1618
|
-
infoLight: string;
|
|
1619
|
-
info: string;
|
|
1620
|
-
infoMid: string;
|
|
1621
|
-
infoDark: string;
|
|
1622
|
-
successLight: string;
|
|
1623
|
-
success: string;
|
|
1624
|
-
successMid: string;
|
|
1625
|
-
successDark: string;
|
|
1626
|
-
dangerLight: string;
|
|
1627
|
-
danger: string;
|
|
1628
|
-
dangerMid: string;
|
|
1629
|
-
dangerDark: string;
|
|
1630
|
-
warningLight: string;
|
|
1631
|
-
warning: string;
|
|
1632
|
-
warningMid: string;
|
|
1633
|
-
warningDark: string;
|
|
1634
|
-
warningText: string;
|
|
1635
|
-
subjectEnglish: string;
|
|
1636
|
-
subjectMaths: string;
|
|
1637
|
-
subjectScience: string;
|
|
1638
|
-
subjectVerbalReasoning: string;
|
|
1639
|
-
subjectNonVerbalReasoning: string;
|
|
1640
|
-
subjectCreativeWriting: string;
|
|
1641
|
-
subjectExamSkills: string;
|
|
1642
|
-
glBlueLight: string;
|
|
1643
|
-
glBluePrimary: string;
|
|
1644
|
-
glBlueDark: string;
|
|
1645
|
-
primary100: string;
|
|
1646
|
-
primary200: string;
|
|
1647
|
-
primary300: string;
|
|
1648
|
-
primary400: string;
|
|
1649
|
-
primary500: string;
|
|
1650
|
-
primary600: string;
|
|
1651
|
-
primary700: string;
|
|
1652
|
-
primary800: string;
|
|
1653
|
-
primary900: string;
|
|
1654
|
-
primary1000: string;
|
|
1655
|
-
primary1100: string;
|
|
1656
|
-
primary1200: string;
|
|
1657
|
-
};
|
|
1658
|
-
space: {
|
|
1659
|
-
"0": string;
|
|
1660
|
-
"1": string;
|
|
1661
|
-
"2": string;
|
|
1662
|
-
"3": string;
|
|
1663
|
-
"4": string;
|
|
1664
|
-
"5": string;
|
|
1665
|
-
"6": string;
|
|
1666
|
-
"7": string;
|
|
1667
|
-
"8": string;
|
|
1668
|
-
"9": string;
|
|
1669
|
-
"24": string;
|
|
1670
|
-
};
|
|
1671
|
-
fontSizes: {
|
|
1672
|
-
xs: string;
|
|
1673
|
-
sm: string;
|
|
1674
|
-
md: string;
|
|
1675
|
-
lg: string;
|
|
1676
|
-
xl: string;
|
|
1677
|
-
"2xl": string;
|
|
1678
|
-
"3xl": string;
|
|
1679
|
-
"4xl": string;
|
|
1680
|
-
};
|
|
1681
|
-
fonts: {
|
|
1682
|
-
sans: string;
|
|
1683
|
-
mono: string;
|
|
1684
|
-
display: string;
|
|
1685
|
-
body: string;
|
|
1686
|
-
};
|
|
1687
|
-
sizes: {
|
|
1688
|
-
"0": string;
|
|
1689
|
-
"1": string;
|
|
1690
|
-
"2": string;
|
|
1691
|
-
"3": string;
|
|
1692
|
-
"4": string;
|
|
1693
|
-
"5": string;
|
|
1694
|
-
"6": string;
|
|
1695
|
-
"7": string;
|
|
1696
|
-
"8": string;
|
|
1697
|
-
};
|
|
1698
|
-
radii: {
|
|
1699
|
-
"0": string;
|
|
1700
|
-
"1": string;
|
|
1701
|
-
"2": string;
|
|
1702
|
-
"3": string;
|
|
1703
|
-
round: string;
|
|
1704
|
-
};
|
|
1705
|
-
shadows: {
|
|
1706
|
-
"0": string;
|
|
1707
|
-
"1": string;
|
|
1708
|
-
"2": string;
|
|
1709
|
-
"3": string;
|
|
1710
|
-
};
|
|
1711
|
-
ratios: {
|
|
1712
|
-
"16-9": string;
|
|
1713
|
-
"3-2": string;
|
|
1714
|
-
"4-3": string;
|
|
1715
|
-
"1-1": string;
|
|
1716
|
-
"3-4": string;
|
|
1717
|
-
};
|
|
1718
|
-
}, import("@atom-learning/stitches-react/types/config").DefaultThemeMap, {
|
|
1719
|
-
bg: (value: import("@atom-learning/stitches-react").PropertyValue<"background">) => {
|
|
1720
|
-
background: import("@atom-learning/stitches-react/types/css-util").WithPropertyValue<"background">;
|
|
1721
|
-
};
|
|
1722
|
-
size: (value: import("@atom-learning/stitches-react").ScaleValue<"size"> | number | string) => {
|
|
1723
|
-
height: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">;
|
|
1724
|
-
width: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">;
|
|
1725
|
-
};
|
|
1726
|
-
p: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1727
|
-
padding: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1728
|
-
};
|
|
1729
|
-
pt: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1730
|
-
paddingTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1731
|
-
};
|
|
1732
|
-
pr: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1733
|
-
paddingRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1734
|
-
};
|
|
1735
|
-
pb: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1736
|
-
paddingBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1737
|
-
};
|
|
1738
|
-
pl: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1739
|
-
paddingLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1740
|
-
};
|
|
1741
|
-
px: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1742
|
-
paddingLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1743
|
-
paddingRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1744
|
-
};
|
|
1745
|
-
py: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1746
|
-
paddingTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1747
|
-
paddingBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1748
|
-
};
|
|
1749
|
-
m: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1750
|
-
margin: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1751
|
-
};
|
|
1752
|
-
mt: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1753
|
-
marginTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1754
|
-
};
|
|
1755
|
-
mr: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1756
|
-
marginRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1757
|
-
};
|
|
1758
|
-
mb: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1759
|
-
marginBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1760
|
-
};
|
|
1761
|
-
ml: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1762
|
-
marginLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1763
|
-
};
|
|
1764
|
-
mx: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1765
|
-
marginLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1766
|
-
marginRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1767
|
-
};
|
|
1768
|
-
my: (value: import("@atom-learning/stitches-react").ScaleValue<"space"> | number | string) => {
|
|
1769
|
-
marginTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1770
|
-
marginBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
|
|
1771
|
-
};
|
|
1772
|
-
}>>, {}, {}, import("@atom-learning/stitches-react/types/css-util").CSS<{}, {}, {}, {}>>>["css"];
|
|
1773
|
-
}, "ref"> & import("react").RefAttributes<HTMLDivElement> & {
|
|
1774
1039
|
numberOfStickyColumns?: number;
|
|
1775
|
-
numberOfStickyRows?: number;
|
|
1776
1040
|
scrollContainerCss?: import("../..").CSS;
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
}, "children" | "numberOfStickyColumns"
|
|
1041
|
+
scrollContainerkey?: string;
|
|
1042
|
+
maxRowDepth?: number;
|
|
1043
|
+
}, "children" | "numberOfStickyColumns"> & Partial<Pick<Omit<Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & {
|
|
1780
1044
|
ref?: ((instance: HTMLTableSectionElement | null) => void) | import("react").RefObject<HTMLTableSectionElement> | null | undefined;
|
|
1781
1045
|
}, "css" | "theme" | "isSticky"> & import("@atom-learning/stitches-react/types/styled-component").TransformProps<{
|
|
1782
1046
|
theme?: "light" | "primary" | "white" | "primaryDark" | "primaryLight" | undefined;
|
|
@@ -2524,7 +1788,6 @@ export declare const DataTable: (({ columns, data: dataProp, getAsyncData, defau
|
|
|
2524
1788
|
hasStickyHeader?: boolean;
|
|
2525
1789
|
headerCss?: import("../..").CSS;
|
|
2526
1790
|
numberOfStickyColumns?: number;
|
|
2527
|
-
numberOfStickyRows?: number;
|
|
2528
1791
|
scrollContainerCss?: import("../..").CSS;
|
|
2529
1792
|
};
|
|
2530
1793
|
} & {
|