@3mo/data-grid 0.12.5 → 0.12.6-preview.0

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.
@@ -3,7 +3,7 @@
3
3
  "tags": [
4
4
  {
5
5
  "name": "mo-data-grid",
6
- "path": ".\\packages\\DataGrid\\DataGrid.ts",
6
+ "path": ".\\packages/DataGrid/DataGrid.ts",
7
7
  "attributes": [
8
8
  {
9
9
  "name": "data",
@@ -663,7 +663,7 @@
663
663
  },
664
664
  {
665
665
  "name": "mo-data-grid-cell",
666
- "path": ".\\packages\\DataGrid\\DataGridCell.ts",
666
+ "path": ".\\packages/DataGrid/DataGridCell.ts",
667
667
  "attributes": [
668
668
  {
669
669
  "name": "value",
@@ -714,7 +714,7 @@
714
714
  },
715
715
  {
716
716
  "name": "mo-data-grid-footer",
717
- "path": ".\\packages\\DataGrid\\DataGridFooter.ts",
717
+ "path": ".\\packages/DataGrid/DataGridFooter.ts",
718
718
  "attributes": [
719
719
  {
720
720
  "name": "dataGrid",
@@ -742,7 +742,7 @@
742
742
  },
743
743
  {
744
744
  "name": "mo-data-grid-header",
745
- "path": ".\\packages\\DataGrid\\DataGridHeader.ts",
745
+ "path": ".\\packages/DataGrid/DataGridHeader.ts",
746
746
  "attributes": [
747
747
  {
748
748
  "name": "dataGrid",
@@ -778,7 +778,7 @@
778
778
  },
779
779
  {
780
780
  "name": "mo-data-grid-header-separator",
781
- "path": ".\\packages\\DataGrid\\DataGridHeaderSeparator.ts",
781
+ "path": ".\\packages/DataGrid/DataGridHeaderSeparator.ts",
782
782
  "attributes": [
783
783
  {
784
784
  "name": "dataGrid",
@@ -804,7 +804,7 @@
804
804
  },
805
805
  {
806
806
  "name": "mo-data-grid-primary-context-menu-item",
807
- "path": ".\\packages\\DataGrid\\DataGridPrimaryContextMenuItem.ts",
807
+ "path": ".\\packages/DataGrid/DataGridPrimaryContextMenuItem.ts",
808
808
  "attributes": [
809
809
  {
810
810
  "name": "open",
@@ -891,7 +891,7 @@
891
891
  },
892
892
  {
893
893
  "name": "mo-data-grid-side-panel",
894
- "path": ".\\packages\\DataGrid\\DataGridSidePanel.ts",
894
+ "path": ".\\packages/DataGrid/DataGridSidePanel.ts",
895
895
  "attributes": [
896
896
  {
897
897
  "name": "dataGrid",
@@ -914,4658 +914,6 @@
914
914
  "type": "DataGridSidePanelTab | undefined"
915
915
  }
916
916
  ]
917
- },
918
- {
919
- "name": "mo-data-grid-column-boolean",
920
- "path": ".\\packages\\DataGrid\\columns\\DataGridColumnBoolean.ts",
921
- "attributes": [
922
- {
923
- "name": "trueIcon",
924
- "description": "Icon to show for true values",
925
- "type": "MaterialIcon",
926
- "default": "\"done\""
927
- },
928
- {
929
- "name": "falseIcon",
930
- "description": "Icon to show for false values",
931
- "type": "MaterialIcon",
932
- "default": "\"clear\""
933
- },
934
- {
935
- "name": "trueIconColor",
936
- "description": "Color of the true icon",
937
- "type": "string",
938
- "default": "\"var(--mo-color-accent)\""
939
- },
940
- {
941
- "name": "falseIconColor",
942
- "description": "Color of the false icon",
943
- "type": "string",
944
- "default": "\"var(--mo-color-gray)\""
945
- },
946
- {
947
- "name": "dataGrid",
948
- "type": "DataGrid<TData, any> | undefined"
949
- },
950
- {
951
- "name": "width",
952
- "description": "The width of the column",
953
- "type": "string",
954
- "default": "\"max-content\""
955
- },
956
- {
957
- "name": "hidden",
958
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
959
- "type": "boolean",
960
- "default": "false"
961
- },
962
- {
963
- "name": "heading",
964
- "description": "The heading of the column",
965
- "type": "string",
966
- "default": "\"\""
967
- },
968
- {
969
- "name": "textAlign",
970
- "description": "The text alignment of the column",
971
- "type": "DataGridColumnAlignment",
972
- "default": "\"start\""
973
- },
974
- {
975
- "name": "description",
976
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
977
- "type": "string | undefined"
978
- },
979
- {
980
- "name": "dataSelector",
981
- "description": "The data selector of the column",
982
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
983
- },
984
- {
985
- "name": "sortDataSelector",
986
- "description": "The data selector of the column",
987
- "type": "KeyPathOf<TData>"
988
- },
989
- {
990
- "name": "nonSortable",
991
- "description": "Whether the column is sortable",
992
- "type": "boolean",
993
- "default": "false"
994
- },
995
- {
996
- "name": "nonEditable",
997
- "description": "Whether the column is editable",
998
- "type": "boolean | Predicate<TData>",
999
- "default": "false"
1000
- },
1001
- {
1002
- "name": "sticky",
1003
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1004
- "type": "DataGridColumnSticky | undefined"
1005
- }
1006
- ],
1007
- "properties": [
1008
- {
1009
- "name": "trueIcon",
1010
- "attribute": "trueIcon",
1011
- "description": "Icon to show for true values",
1012
- "type": "MaterialIcon",
1013
- "default": "\"done\""
1014
- },
1015
- {
1016
- "name": "falseIcon",
1017
- "attribute": "falseIcon",
1018
- "description": "Icon to show for false values",
1019
- "type": "MaterialIcon",
1020
- "default": "\"clear\""
1021
- },
1022
- {
1023
- "name": "trueIconColor",
1024
- "attribute": "trueIconColor",
1025
- "description": "Color of the true icon",
1026
- "type": "string",
1027
- "default": "\"var(--mo-color-accent)\""
1028
- },
1029
- {
1030
- "name": "falseIconColor",
1031
- "attribute": "falseIconColor",
1032
- "description": "Color of the false icon",
1033
- "type": "string",
1034
- "default": "\"var(--mo-color-gray)\""
1035
- },
1036
- {
1037
- "name": "dataGrid",
1038
- "attribute": "dataGrid",
1039
- "type": "DataGrid<TData, any> | undefined"
1040
- },
1041
- {
1042
- "name": "column",
1043
- "type": "DataGridColumn<TData, TValue>"
1044
- },
1045
- {
1046
- "name": "width",
1047
- "attribute": "width",
1048
- "description": "The width of the column",
1049
- "type": "string",
1050
- "default": "\"max-content\""
1051
- },
1052
- {
1053
- "name": "hidden",
1054
- "attribute": "hidden",
1055
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
1056
- "type": "boolean",
1057
- "default": "false"
1058
- },
1059
- {
1060
- "name": "heading",
1061
- "attribute": "heading",
1062
- "description": "The heading of the column",
1063
- "type": "string",
1064
- "default": "\"\""
1065
- },
1066
- {
1067
- "name": "textAlign",
1068
- "attribute": "textAlign",
1069
- "description": "The text alignment of the column",
1070
- "type": "DataGridColumnAlignment",
1071
- "default": "\"start\""
1072
- },
1073
- {
1074
- "name": "description",
1075
- "attribute": "description",
1076
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1077
- "type": "string | undefined"
1078
- },
1079
- {
1080
- "name": "dataSelector",
1081
- "attribute": "dataSelector",
1082
- "description": "The data selector of the column",
1083
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
1084
- },
1085
- {
1086
- "name": "sortDataSelector",
1087
- "attribute": "sortDataSelector",
1088
- "description": "The data selector of the column",
1089
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
1090
- },
1091
- {
1092
- "name": "nonSortable",
1093
- "attribute": "nonSortable",
1094
- "description": "Whether the column is sortable",
1095
- "type": "boolean",
1096
- "default": "false"
1097
- },
1098
- {
1099
- "name": "nonEditable",
1100
- "attribute": "nonEditable",
1101
- "description": "Whether the column is editable",
1102
- "type": "boolean | Predicate<TData>",
1103
- "default": "false"
1104
- },
1105
- {
1106
- "name": "sticky",
1107
- "attribute": "sticky",
1108
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1109
- "type": "DataGridColumnSticky | undefined"
1110
- }
1111
- ]
1112
- },
1113
- {
1114
- "name": "mo-data-grid-column-deletion",
1115
- "path": ".\\packages\\DataGrid\\columns\\DataGridColumnDeletion.ts",
1116
- "attributes": [
1117
- {
1118
- "name": "icon",
1119
- "type": "MaterialIcon",
1120
- "default": "\"delete\""
1121
- },
1122
- {
1123
- "name": "prevent",
1124
- "description": "Prevents the deletion button from being displayed",
1125
- "type": "boolean",
1126
- "default": "false"
1127
- },
1128
- {
1129
- "name": "dataGrid",
1130
- "type": "DataGrid<TData, any> | undefined"
1131
- },
1132
- {
1133
- "name": "width",
1134
- "description": "The width of the column",
1135
- "type": "string",
1136
- "default": "\"max-content\""
1137
- },
1138
- {
1139
- "name": "hidden",
1140
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
1141
- "type": "boolean",
1142
- "default": "false"
1143
- },
1144
- {
1145
- "name": "heading",
1146
- "description": "The heading of the column",
1147
- "type": "string",
1148
- "default": "\"\""
1149
- },
1150
- {
1151
- "name": "textAlign",
1152
- "description": "The text alignment of the column",
1153
- "type": "DataGridColumnAlignment",
1154
- "default": "\"start\""
1155
- },
1156
- {
1157
- "name": "description",
1158
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1159
- "type": "string | undefined"
1160
- },
1161
- {
1162
- "name": "dataSelector",
1163
- "description": "The data selector of the column",
1164
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
1165
- },
1166
- {
1167
- "name": "sortDataSelector",
1168
- "description": "The data selector of the column",
1169
- "type": "KeyPathOf<TData>"
1170
- },
1171
- {
1172
- "name": "nonSortable",
1173
- "description": "Whether the column is sortable",
1174
- "type": "boolean",
1175
- "default": "true"
1176
- },
1177
- {
1178
- "name": "nonEditable",
1179
- "description": "Whether the column is editable",
1180
- "type": "boolean",
1181
- "default": "true"
1182
- },
1183
- {
1184
- "name": "sticky",
1185
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1186
- "type": "DataGridColumnSticky | undefined"
1187
- }
1188
- ],
1189
- "properties": [
1190
- {
1191
- "name": "delete",
1192
- "type": "EventDispatcher<TData>"
1193
- },
1194
- {
1195
- "name": "icon",
1196
- "attribute": "icon",
1197
- "type": "MaterialIcon",
1198
- "default": "\"delete\""
1199
- },
1200
- {
1201
- "name": "getContentTemplate",
1202
- "type": "(_: never, data?: TData | undefined) => HTMLTemplateResult",
1203
- "default": "\"(_: never, data?: TData) => this.prevent ? html.nothing : html`\\r\\n\\t\\t<mo-icon-button icon=${this.icon}\\r\\n\\t\\t\\t${tooltip(t('Delete position'))}\\r\\n\\t\\t\\t${style({ color: 'var(--mo-color-gray)', height: '40px', display: 'flex' })}\\r\\n\\t\\t\\t@click=${() => !data ? void 0 : this.delete.dispatch(data)}\\r\\n\\t\\t></mo-icon-button>\\r\\n\\t`\""
1204
- },
1205
- {
1206
- "name": "getEditContentTemplate",
1207
- "type": "undefined",
1208
- "default": "\"undefined\""
1209
- },
1210
- {
1211
- "name": "prevent",
1212
- "attribute": "prevent",
1213
- "description": "Prevents the deletion button from being displayed",
1214
- "type": "boolean",
1215
- "default": "false"
1216
- },
1217
- {
1218
- "name": "dataGrid",
1219
- "attribute": "dataGrid",
1220
- "type": "DataGrid<TData, any> | undefined"
1221
- },
1222
- {
1223
- "name": "column",
1224
- "type": "DataGridColumn<TData, TValue>"
1225
- },
1226
- {
1227
- "name": "width",
1228
- "attribute": "width",
1229
- "description": "The width of the column",
1230
- "type": "string",
1231
- "default": "\"max-content\""
1232
- },
1233
- {
1234
- "name": "hidden",
1235
- "attribute": "hidden",
1236
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
1237
- "type": "boolean",
1238
- "default": "false"
1239
- },
1240
- {
1241
- "name": "heading",
1242
- "attribute": "heading",
1243
- "description": "The heading of the column",
1244
- "type": "string",
1245
- "default": "\"\""
1246
- },
1247
- {
1248
- "name": "textAlign",
1249
- "attribute": "textAlign",
1250
- "description": "The text alignment of the column",
1251
- "type": "DataGridColumnAlignment",
1252
- "default": "\"start\""
1253
- },
1254
- {
1255
- "name": "description",
1256
- "attribute": "description",
1257
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1258
- "type": "string | undefined"
1259
- },
1260
- {
1261
- "name": "dataSelector",
1262
- "attribute": "dataSelector",
1263
- "description": "The data selector of the column",
1264
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
1265
- },
1266
- {
1267
- "name": "sortDataSelector",
1268
- "attribute": "sortDataSelector",
1269
- "description": "The data selector of the column",
1270
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
1271
- },
1272
- {
1273
- "name": "nonSortable",
1274
- "attribute": "nonSortable",
1275
- "description": "Whether the column is sortable",
1276
- "type": "boolean",
1277
- "default": "true"
1278
- },
1279
- {
1280
- "name": "nonEditable",
1281
- "attribute": "nonEditable",
1282
- "description": "Whether the column is editable",
1283
- "type": "boolean",
1284
- "default": "true"
1285
- },
1286
- {
1287
- "name": "sticky",
1288
- "attribute": "sticky",
1289
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1290
- "type": "DataGridColumnSticky | undefined"
1291
- }
1292
- ],
1293
- "events": [
1294
- {
1295
- "name": "delete",
1296
- "type": "CustomEvent<TData>"
1297
- }
1298
- ]
1299
- },
1300
- {
1301
- "name": "mo-data-grid-column-image",
1302
- "path": ".\\packages\\DataGrid\\columns\\DataGridColumnImage.ts",
1303
- "attributes": [
1304
- {
1305
- "name": "tooltipSelector",
1306
- "description": "The data selector of the column to use as a tooltip. If a function is provided, it will be called with the data as an argument.",
1307
- "type": "KeyPathOf<TData>"
1308
- },
1309
- {
1310
- "name": "dataGrid",
1311
- "type": "DataGrid<TData, any> | undefined"
1312
- },
1313
- {
1314
- "name": "width",
1315
- "description": "The width of the column",
1316
- "type": "string",
1317
- "default": "\"max-content\""
1318
- },
1319
- {
1320
- "name": "hidden",
1321
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
1322
- "type": "boolean",
1323
- "default": "false"
1324
- },
1325
- {
1326
- "name": "heading",
1327
- "description": "The heading of the column",
1328
- "type": "string",
1329
- "default": "\"\""
1330
- },
1331
- {
1332
- "name": "textAlign",
1333
- "description": "The text alignment of the column",
1334
- "type": "DataGridColumnAlignment",
1335
- "default": "\"start\""
1336
- },
1337
- {
1338
- "name": "description",
1339
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1340
- "type": "string | undefined"
1341
- },
1342
- {
1343
- "name": "dataSelector",
1344
- "description": "The data selector of the column",
1345
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
1346
- },
1347
- {
1348
- "name": "sortDataSelector",
1349
- "description": "The data selector of the column",
1350
- "type": "KeyPathOf<TData>"
1351
- },
1352
- {
1353
- "name": "nonSortable",
1354
- "description": "Whether the column is sortable",
1355
- "type": "boolean",
1356
- "default": "true"
1357
- },
1358
- {
1359
- "name": "nonEditable",
1360
- "description": "Whether the column is editable",
1361
- "type": "boolean",
1362
- "default": "true"
1363
- },
1364
- {
1365
- "name": "sticky",
1366
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1367
- "type": "DataGridColumnSticky | undefined"
1368
- }
1369
- ],
1370
- "properties": [
1371
- {
1372
- "name": "getEditContentTemplate",
1373
- "type": "undefined",
1374
- "default": "\"undefined\""
1375
- },
1376
- {
1377
- "name": "tooltipSelector",
1378
- "attribute": "tooltipSelector",
1379
- "description": "The data selector of the column to use as a tooltip. If a function is provided, it will be called with the data as an argument.",
1380
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | ((data: TData) => string | undefined) | undefined"
1381
- },
1382
- {
1383
- "name": "dataGrid",
1384
- "attribute": "dataGrid",
1385
- "type": "DataGrid<TData, any> | undefined"
1386
- },
1387
- {
1388
- "name": "column",
1389
- "type": "DataGridColumn<TData, TValue>"
1390
- },
1391
- {
1392
- "name": "width",
1393
- "attribute": "width",
1394
- "description": "The width of the column",
1395
- "type": "string",
1396
- "default": "\"max-content\""
1397
- },
1398
- {
1399
- "name": "hidden",
1400
- "attribute": "hidden",
1401
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
1402
- "type": "boolean",
1403
- "default": "false"
1404
- },
1405
- {
1406
- "name": "heading",
1407
- "attribute": "heading",
1408
- "description": "The heading of the column",
1409
- "type": "string",
1410
- "default": "\"\""
1411
- },
1412
- {
1413
- "name": "textAlign",
1414
- "attribute": "textAlign",
1415
- "description": "The text alignment of the column",
1416
- "type": "DataGridColumnAlignment",
1417
- "default": "\"start\""
1418
- },
1419
- {
1420
- "name": "description",
1421
- "attribute": "description",
1422
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1423
- "type": "string | undefined"
1424
- },
1425
- {
1426
- "name": "dataSelector",
1427
- "attribute": "dataSelector",
1428
- "description": "The data selector of the column",
1429
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
1430
- },
1431
- {
1432
- "name": "sortDataSelector",
1433
- "attribute": "sortDataSelector",
1434
- "description": "The data selector of the column",
1435
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
1436
- },
1437
- {
1438
- "name": "nonSortable",
1439
- "attribute": "nonSortable",
1440
- "description": "Whether the column is sortable",
1441
- "type": "boolean",
1442
- "default": "true"
1443
- },
1444
- {
1445
- "name": "nonEditable",
1446
- "attribute": "nonEditable",
1447
- "description": "Whether the column is editable",
1448
- "type": "boolean",
1449
- "default": "true"
1450
- },
1451
- {
1452
- "name": "sticky",
1453
- "attribute": "sticky",
1454
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1455
- "type": "DataGridColumnSticky | undefined"
1456
- }
1457
- ]
1458
- },
1459
- {
1460
- "name": "mo-data-grid-column-text",
1461
- "path": ".\\packages\\DataGrid\\columns\\DataGridColumnText.ts",
1462
- "attributes": [
1463
- {
1464
- "name": "dataGrid",
1465
- "type": "DataGrid<TData, any> | undefined"
1466
- },
1467
- {
1468
- "name": "width",
1469
- "description": "The width of the column",
1470
- "type": "string",
1471
- "default": "\"max-content\""
1472
- },
1473
- {
1474
- "name": "hidden",
1475
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
1476
- "type": "boolean",
1477
- "default": "false"
1478
- },
1479
- {
1480
- "name": "heading",
1481
- "description": "The heading of the column",
1482
- "type": "string",
1483
- "default": "\"\""
1484
- },
1485
- {
1486
- "name": "textAlign",
1487
- "description": "The text alignment of the column",
1488
- "type": "DataGridColumnAlignment",
1489
- "default": "\"start\""
1490
- },
1491
- {
1492
- "name": "description",
1493
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1494
- "type": "string | undefined"
1495
- },
1496
- {
1497
- "name": "dataSelector",
1498
- "description": "The data selector of the column",
1499
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
1500
- },
1501
- {
1502
- "name": "sortDataSelector",
1503
- "description": "The data selector of the column",
1504
- "type": "KeyPathOf<TData>"
1505
- },
1506
- {
1507
- "name": "nonSortable",
1508
- "description": "Whether the column is sortable",
1509
- "type": "boolean",
1510
- "default": "false"
1511
- },
1512
- {
1513
- "name": "nonEditable",
1514
- "description": "Whether the column is editable",
1515
- "type": "boolean | Predicate<TData>",
1516
- "default": "false"
1517
- },
1518
- {
1519
- "name": "sticky",
1520
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1521
- "type": "DataGridColumnSticky | undefined"
1522
- }
1523
- ],
1524
- "properties": [
1525
- {
1526
- "name": "dataGrid",
1527
- "attribute": "dataGrid",
1528
- "type": "DataGrid<TData, any> | undefined"
1529
- },
1530
- {
1531
- "name": "column",
1532
- "type": "DataGridColumn<TData, TValue>"
1533
- },
1534
- {
1535
- "name": "width",
1536
- "attribute": "width",
1537
- "description": "The width of the column",
1538
- "type": "string",
1539
- "default": "\"max-content\""
1540
- },
1541
- {
1542
- "name": "hidden",
1543
- "attribute": "hidden",
1544
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
1545
- "type": "boolean",
1546
- "default": "false"
1547
- },
1548
- {
1549
- "name": "heading",
1550
- "attribute": "heading",
1551
- "description": "The heading of the column",
1552
- "type": "string",
1553
- "default": "\"\""
1554
- },
1555
- {
1556
- "name": "textAlign",
1557
- "attribute": "textAlign",
1558
- "description": "The text alignment of the column",
1559
- "type": "DataGridColumnAlignment",
1560
- "default": "\"start\""
1561
- },
1562
- {
1563
- "name": "description",
1564
- "attribute": "description",
1565
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1566
- "type": "string | undefined"
1567
- },
1568
- {
1569
- "name": "dataSelector",
1570
- "attribute": "dataSelector",
1571
- "description": "The data selector of the column",
1572
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
1573
- },
1574
- {
1575
- "name": "sortDataSelector",
1576
- "attribute": "sortDataSelector",
1577
- "description": "The data selector of the column",
1578
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
1579
- },
1580
- {
1581
- "name": "nonSortable",
1582
- "attribute": "nonSortable",
1583
- "description": "Whether the column is sortable",
1584
- "type": "boolean",
1585
- "default": "false"
1586
- },
1587
- {
1588
- "name": "nonEditable",
1589
- "attribute": "nonEditable",
1590
- "description": "Whether the column is editable",
1591
- "type": "boolean | Predicate<TData>",
1592
- "default": "false"
1593
- },
1594
- {
1595
- "name": "sticky",
1596
- "attribute": "sticky",
1597
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1598
- "type": "DataGridColumnSticky | undefined"
1599
- }
1600
- ]
1601
- },
1602
- {
1603
- "name": "mo-data-grid-column-date",
1604
- "path": ".\\packages\\DataGrid\\columns\\date-time\\DataGridColumnDate.ts",
1605
- "attributes": [
1606
- {
1607
- "name": "formatOptions",
1608
- "description": "Options to pass to Date.prototype.format()",
1609
- "type": "DateTimeFormatOptions | undefined"
1610
- },
1611
- {
1612
- "name": "pickerHidden",
1613
- "description": "Hides the date/time picker",
1614
- "type": "boolean",
1615
- "default": "false"
1616
- },
1617
- {
1618
- "name": "dataGrid",
1619
- "type": "DataGrid<TData, any> | undefined"
1620
- },
1621
- {
1622
- "name": "width",
1623
- "description": "The width of the column",
1624
- "type": "string",
1625
- "default": "\"max-content\""
1626
- },
1627
- {
1628
- "name": "hidden",
1629
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
1630
- "type": "boolean",
1631
- "default": "false"
1632
- },
1633
- {
1634
- "name": "heading",
1635
- "description": "The heading of the column",
1636
- "type": "string",
1637
- "default": "\"\""
1638
- },
1639
- {
1640
- "name": "textAlign",
1641
- "description": "The text alignment of the column",
1642
- "type": "DataGridColumnAlignment",
1643
- "default": "\"start\""
1644
- },
1645
- {
1646
- "name": "description",
1647
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1648
- "type": "string | undefined"
1649
- },
1650
- {
1651
- "name": "dataSelector",
1652
- "description": "The data selector of the column",
1653
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
1654
- },
1655
- {
1656
- "name": "sortDataSelector",
1657
- "description": "The data selector of the column",
1658
- "type": "KeyPathOf<TData>"
1659
- },
1660
- {
1661
- "name": "nonSortable",
1662
- "description": "Whether the column is sortable",
1663
- "type": "boolean",
1664
- "default": "false"
1665
- },
1666
- {
1667
- "name": "nonEditable",
1668
- "description": "Whether the column is editable",
1669
- "type": "boolean | Predicate<TData>",
1670
- "default": "false"
1671
- },
1672
- {
1673
- "name": "sticky",
1674
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1675
- "type": "DataGridColumnSticky | undefined"
1676
- }
1677
- ],
1678
- "properties": [
1679
- {
1680
- "name": "defaultFormatOptions",
1681
- "type": "DateTimeFormatOptions | undefined"
1682
- },
1683
- {
1684
- "name": "fieldTag",
1685
- "type": "StaticValue",
1686
- "default": "\"literal`mo-field-date`\""
1687
- },
1688
- {
1689
- "name": "formatOptions",
1690
- "attribute": "formatOptions",
1691
- "description": "Options to pass to Date.prototype.format()",
1692
- "type": "DateTimeFormatOptions | undefined"
1693
- },
1694
- {
1695
- "name": "pickerHidden",
1696
- "attribute": "pickerHidden",
1697
- "description": "Hides the date/time picker",
1698
- "type": "boolean",
1699
- "default": "false"
1700
- },
1701
- {
1702
- "name": "dataGrid",
1703
- "attribute": "dataGrid",
1704
- "type": "DataGrid<TData, any> | undefined"
1705
- },
1706
- {
1707
- "name": "column",
1708
- "type": "DataGridColumn<TData, TValue>"
1709
- },
1710
- {
1711
- "name": "width",
1712
- "attribute": "width",
1713
- "description": "The width of the column",
1714
- "type": "string",
1715
- "default": "\"max-content\""
1716
- },
1717
- {
1718
- "name": "hidden",
1719
- "attribute": "hidden",
1720
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
1721
- "type": "boolean",
1722
- "default": "false"
1723
- },
1724
- {
1725
- "name": "heading",
1726
- "attribute": "heading",
1727
- "description": "The heading of the column",
1728
- "type": "string",
1729
- "default": "\"\""
1730
- },
1731
- {
1732
- "name": "textAlign",
1733
- "attribute": "textAlign",
1734
- "description": "The text alignment of the column",
1735
- "type": "DataGridColumnAlignment",
1736
- "default": "\"start\""
1737
- },
1738
- {
1739
- "name": "description",
1740
- "attribute": "description",
1741
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1742
- "type": "string | undefined"
1743
- },
1744
- {
1745
- "name": "dataSelector",
1746
- "attribute": "dataSelector",
1747
- "description": "The data selector of the column",
1748
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
1749
- },
1750
- {
1751
- "name": "sortDataSelector",
1752
- "attribute": "sortDataSelector",
1753
- "description": "The data selector of the column",
1754
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
1755
- },
1756
- {
1757
- "name": "nonSortable",
1758
- "attribute": "nonSortable",
1759
- "description": "Whether the column is sortable",
1760
- "type": "boolean",
1761
- "default": "false"
1762
- },
1763
- {
1764
- "name": "nonEditable",
1765
- "attribute": "nonEditable",
1766
- "description": "Whether the column is editable",
1767
- "type": "boolean | Predicate<TData>",
1768
- "default": "false"
1769
- },
1770
- {
1771
- "name": "sticky",
1772
- "attribute": "sticky",
1773
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1774
- "type": "DataGridColumnSticky | undefined"
1775
- }
1776
- ]
1777
- },
1778
- {
1779
- "name": "mo-data-grid-column-date-range",
1780
- "path": ".\\packages\\DataGrid\\columns\\date-time\\DataGridColumnDateRange.ts",
1781
- "attributes": [
1782
- {
1783
- "name": "formatOptions",
1784
- "description": "Options to pass to Date.prototype.format()",
1785
- "type": "DateTimeFormatOptions | undefined"
1786
- },
1787
- {
1788
- "name": "pickerHidden",
1789
- "description": "Hides the date/time picker",
1790
- "type": "boolean",
1791
- "default": "false"
1792
- },
1793
- {
1794
- "name": "dataGrid",
1795
- "type": "DataGrid<TData, any> | undefined"
1796
- },
1797
- {
1798
- "name": "width",
1799
- "description": "The width of the column",
1800
- "type": "string",
1801
- "default": "\"max-content\""
1802
- },
1803
- {
1804
- "name": "hidden",
1805
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
1806
- "type": "boolean",
1807
- "default": "false"
1808
- },
1809
- {
1810
- "name": "heading",
1811
- "description": "The heading of the column",
1812
- "type": "string",
1813
- "default": "\"\""
1814
- },
1815
- {
1816
- "name": "textAlign",
1817
- "description": "The text alignment of the column",
1818
- "type": "DataGridColumnAlignment",
1819
- "default": "\"start\""
1820
- },
1821
- {
1822
- "name": "description",
1823
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1824
- "type": "string | undefined"
1825
- },
1826
- {
1827
- "name": "dataSelector",
1828
- "description": "The data selector of the column",
1829
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
1830
- },
1831
- {
1832
- "name": "sortDataSelector",
1833
- "description": "The data selector of the column",
1834
- "type": "KeyPathOf<TData>"
1835
- },
1836
- {
1837
- "name": "nonSortable",
1838
- "description": "Whether the column is sortable",
1839
- "type": "boolean",
1840
- "default": "false"
1841
- },
1842
- {
1843
- "name": "nonEditable",
1844
- "description": "Whether the column is editable",
1845
- "type": "boolean | Predicate<TData>",
1846
- "default": "false"
1847
- },
1848
- {
1849
- "name": "sticky",
1850
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1851
- "type": "DataGridColumnSticky | undefined"
1852
- }
1853
- ],
1854
- "properties": [
1855
- {
1856
- "name": "defaultFormatOptions",
1857
- "type": "DateTimeFormatOptions | undefined"
1858
- },
1859
- {
1860
- "name": "fieldTag",
1861
- "type": "StaticValue",
1862
- "default": "\"literal`mo-field-date-range`\""
1863
- },
1864
- {
1865
- "name": "formatOptions",
1866
- "attribute": "formatOptions",
1867
- "description": "Options to pass to Date.prototype.format()",
1868
- "type": "DateTimeFormatOptions | undefined"
1869
- },
1870
- {
1871
- "name": "pickerHidden",
1872
- "attribute": "pickerHidden",
1873
- "description": "Hides the date/time picker",
1874
- "type": "boolean",
1875
- "default": "false"
1876
- },
1877
- {
1878
- "name": "dataGrid",
1879
- "attribute": "dataGrid",
1880
- "type": "DataGrid<TData, any> | undefined"
1881
- },
1882
- {
1883
- "name": "column",
1884
- "type": "DataGridColumn<TData, TValue>"
1885
- },
1886
- {
1887
- "name": "width",
1888
- "attribute": "width",
1889
- "description": "The width of the column",
1890
- "type": "string",
1891
- "default": "\"max-content\""
1892
- },
1893
- {
1894
- "name": "hidden",
1895
- "attribute": "hidden",
1896
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
1897
- "type": "boolean",
1898
- "default": "false"
1899
- },
1900
- {
1901
- "name": "heading",
1902
- "attribute": "heading",
1903
- "description": "The heading of the column",
1904
- "type": "string",
1905
- "default": "\"\""
1906
- },
1907
- {
1908
- "name": "textAlign",
1909
- "attribute": "textAlign",
1910
- "description": "The text alignment of the column",
1911
- "type": "DataGridColumnAlignment",
1912
- "default": "\"start\""
1913
- },
1914
- {
1915
- "name": "description",
1916
- "attribute": "description",
1917
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
1918
- "type": "string | undefined"
1919
- },
1920
- {
1921
- "name": "dataSelector",
1922
- "attribute": "dataSelector",
1923
- "description": "The data selector of the column",
1924
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
1925
- },
1926
- {
1927
- "name": "sortDataSelector",
1928
- "attribute": "sortDataSelector",
1929
- "description": "The data selector of the column",
1930
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
1931
- },
1932
- {
1933
- "name": "nonSortable",
1934
- "attribute": "nonSortable",
1935
- "description": "Whether the column is sortable",
1936
- "type": "boolean",
1937
- "default": "false"
1938
- },
1939
- {
1940
- "name": "nonEditable",
1941
- "attribute": "nonEditable",
1942
- "description": "Whether the column is editable",
1943
- "type": "boolean | Predicate<TData>",
1944
- "default": "false"
1945
- },
1946
- {
1947
- "name": "sticky",
1948
- "attribute": "sticky",
1949
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
1950
- "type": "DataGridColumnSticky | undefined"
1951
- }
1952
- ]
1953
- },
1954
- {
1955
- "name": "mo-data-grid-column-date-time",
1956
- "path": ".\\packages\\DataGrid\\columns\\date-time\\DataGridColumnDateTime.ts",
1957
- "attributes": [
1958
- {
1959
- "name": "formatOptions",
1960
- "description": "Options to pass to Date.prototype.format()",
1961
- "type": "DateTimeFormatOptions | undefined"
1962
- },
1963
- {
1964
- "name": "pickerHidden",
1965
- "description": "Hides the date/time picker",
1966
- "type": "boolean",
1967
- "default": "false"
1968
- },
1969
- {
1970
- "name": "dataGrid",
1971
- "type": "DataGrid<TData, any> | undefined"
1972
- },
1973
- {
1974
- "name": "width",
1975
- "description": "The width of the column",
1976
- "type": "string",
1977
- "default": "\"max-content\""
1978
- },
1979
- {
1980
- "name": "hidden",
1981
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
1982
- "type": "boolean",
1983
- "default": "false"
1984
- },
1985
- {
1986
- "name": "heading",
1987
- "description": "The heading of the column",
1988
- "type": "string",
1989
- "default": "\"\""
1990
- },
1991
- {
1992
- "name": "textAlign",
1993
- "description": "The text alignment of the column",
1994
- "type": "DataGridColumnAlignment",
1995
- "default": "\"start\""
1996
- },
1997
- {
1998
- "name": "description",
1999
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2000
- "type": "string | undefined"
2001
- },
2002
- {
2003
- "name": "dataSelector",
2004
- "description": "The data selector of the column",
2005
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
2006
- },
2007
- {
2008
- "name": "sortDataSelector",
2009
- "description": "The data selector of the column",
2010
- "type": "KeyPathOf<TData>"
2011
- },
2012
- {
2013
- "name": "nonSortable",
2014
- "description": "Whether the column is sortable",
2015
- "type": "boolean",
2016
- "default": "false"
2017
- },
2018
- {
2019
- "name": "nonEditable",
2020
- "description": "Whether the column is editable",
2021
- "type": "boolean | Predicate<TData>",
2022
- "default": "false"
2023
- },
2024
- {
2025
- "name": "sticky",
2026
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2027
- "type": "DataGridColumnSticky | undefined"
2028
- }
2029
- ],
2030
- "properties": [
2031
- {
2032
- "name": "defaultFormatOptions",
2033
- "type": "DateTimeFormatOptions | undefined"
2034
- },
2035
- {
2036
- "name": "fieldTag",
2037
- "type": "StaticValue",
2038
- "default": "\"literal`mo-field-date-time`\""
2039
- },
2040
- {
2041
- "name": "formatOptions",
2042
- "attribute": "formatOptions",
2043
- "description": "Options to pass to Date.prototype.format()",
2044
- "type": "DateTimeFormatOptions | undefined"
2045
- },
2046
- {
2047
- "name": "pickerHidden",
2048
- "attribute": "pickerHidden",
2049
- "description": "Hides the date/time picker",
2050
- "type": "boolean",
2051
- "default": "false"
2052
- },
2053
- {
2054
- "name": "dataGrid",
2055
- "attribute": "dataGrid",
2056
- "type": "DataGrid<TData, any> | undefined"
2057
- },
2058
- {
2059
- "name": "column",
2060
- "type": "DataGridColumn<TData, TValue>"
2061
- },
2062
- {
2063
- "name": "width",
2064
- "attribute": "width",
2065
- "description": "The width of the column",
2066
- "type": "string",
2067
- "default": "\"max-content\""
2068
- },
2069
- {
2070
- "name": "hidden",
2071
- "attribute": "hidden",
2072
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
2073
- "type": "boolean",
2074
- "default": "false"
2075
- },
2076
- {
2077
- "name": "heading",
2078
- "attribute": "heading",
2079
- "description": "The heading of the column",
2080
- "type": "string",
2081
- "default": "\"\""
2082
- },
2083
- {
2084
- "name": "textAlign",
2085
- "attribute": "textAlign",
2086
- "description": "The text alignment of the column",
2087
- "type": "DataGridColumnAlignment",
2088
- "default": "\"start\""
2089
- },
2090
- {
2091
- "name": "description",
2092
- "attribute": "description",
2093
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2094
- "type": "string | undefined"
2095
- },
2096
- {
2097
- "name": "dataSelector",
2098
- "attribute": "dataSelector",
2099
- "description": "The data selector of the column",
2100
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
2101
- },
2102
- {
2103
- "name": "sortDataSelector",
2104
- "attribute": "sortDataSelector",
2105
- "description": "The data selector of the column",
2106
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
2107
- },
2108
- {
2109
- "name": "nonSortable",
2110
- "attribute": "nonSortable",
2111
- "description": "Whether the column is sortable",
2112
- "type": "boolean",
2113
- "default": "false"
2114
- },
2115
- {
2116
- "name": "nonEditable",
2117
- "attribute": "nonEditable",
2118
- "description": "Whether the column is editable",
2119
- "type": "boolean | Predicate<TData>",
2120
- "default": "false"
2121
- },
2122
- {
2123
- "name": "sticky",
2124
- "attribute": "sticky",
2125
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2126
- "type": "DataGridColumnSticky | undefined"
2127
- }
2128
- ]
2129
- },
2130
- {
2131
- "name": "mo-data-grid-column-date-time-range",
2132
- "path": ".\\packages\\DataGrid\\columns\\date-time\\DataGridColumnDateTimeRange.ts",
2133
- "attributes": [
2134
- {
2135
- "name": "formatOptions",
2136
- "description": "Options to pass to Date.prototype.format()",
2137
- "type": "DateTimeFormatOptions | undefined"
2138
- },
2139
- {
2140
- "name": "pickerHidden",
2141
- "description": "Hides the date/time picker",
2142
- "type": "boolean",
2143
- "default": "false"
2144
- },
2145
- {
2146
- "name": "dataGrid",
2147
- "type": "DataGrid<TData, any> | undefined"
2148
- },
2149
- {
2150
- "name": "width",
2151
- "description": "The width of the column",
2152
- "type": "string",
2153
- "default": "\"max-content\""
2154
- },
2155
- {
2156
- "name": "hidden",
2157
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
2158
- "type": "boolean",
2159
- "default": "false"
2160
- },
2161
- {
2162
- "name": "heading",
2163
- "description": "The heading of the column",
2164
- "type": "string",
2165
- "default": "\"\""
2166
- },
2167
- {
2168
- "name": "textAlign",
2169
- "description": "The text alignment of the column",
2170
- "type": "DataGridColumnAlignment",
2171
- "default": "\"start\""
2172
- },
2173
- {
2174
- "name": "description",
2175
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2176
- "type": "string | undefined"
2177
- },
2178
- {
2179
- "name": "dataSelector",
2180
- "description": "The data selector of the column",
2181
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
2182
- },
2183
- {
2184
- "name": "sortDataSelector",
2185
- "description": "The data selector of the column",
2186
- "type": "KeyPathOf<TData>"
2187
- },
2188
- {
2189
- "name": "nonSortable",
2190
- "description": "Whether the column is sortable",
2191
- "type": "boolean",
2192
- "default": "false"
2193
- },
2194
- {
2195
- "name": "nonEditable",
2196
- "description": "Whether the column is editable",
2197
- "type": "boolean | Predicate<TData>",
2198
- "default": "false"
2199
- },
2200
- {
2201
- "name": "sticky",
2202
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2203
- "type": "DataGridColumnSticky | undefined"
2204
- }
2205
- ],
2206
- "properties": [
2207
- {
2208
- "name": "defaultFormatOptions",
2209
- "type": "DateTimeFormatOptions | undefined"
2210
- },
2211
- {
2212
- "name": "fieldTag",
2213
- "type": "StaticValue",
2214
- "default": "\"literal`mo-field-date-time-range`\""
2215
- },
2216
- {
2217
- "name": "formatOptions",
2218
- "attribute": "formatOptions",
2219
- "description": "Options to pass to Date.prototype.format()",
2220
- "type": "DateTimeFormatOptions | undefined"
2221
- },
2222
- {
2223
- "name": "pickerHidden",
2224
- "attribute": "pickerHidden",
2225
- "description": "Hides the date/time picker",
2226
- "type": "boolean",
2227
- "default": "false"
2228
- },
2229
- {
2230
- "name": "dataGrid",
2231
- "attribute": "dataGrid",
2232
- "type": "DataGrid<TData, any> | undefined"
2233
- },
2234
- {
2235
- "name": "column",
2236
- "type": "DataGridColumn<TData, TValue>"
2237
- },
2238
- {
2239
- "name": "width",
2240
- "attribute": "width",
2241
- "description": "The width of the column",
2242
- "type": "string",
2243
- "default": "\"max-content\""
2244
- },
2245
- {
2246
- "name": "hidden",
2247
- "attribute": "hidden",
2248
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
2249
- "type": "boolean",
2250
- "default": "false"
2251
- },
2252
- {
2253
- "name": "heading",
2254
- "attribute": "heading",
2255
- "description": "The heading of the column",
2256
- "type": "string",
2257
- "default": "\"\""
2258
- },
2259
- {
2260
- "name": "textAlign",
2261
- "attribute": "textAlign",
2262
- "description": "The text alignment of the column",
2263
- "type": "DataGridColumnAlignment",
2264
- "default": "\"start\""
2265
- },
2266
- {
2267
- "name": "description",
2268
- "attribute": "description",
2269
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2270
- "type": "string | undefined"
2271
- },
2272
- {
2273
- "name": "dataSelector",
2274
- "attribute": "dataSelector",
2275
- "description": "The data selector of the column",
2276
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
2277
- },
2278
- {
2279
- "name": "sortDataSelector",
2280
- "attribute": "sortDataSelector",
2281
- "description": "The data selector of the column",
2282
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
2283
- },
2284
- {
2285
- "name": "nonSortable",
2286
- "attribute": "nonSortable",
2287
- "description": "Whether the column is sortable",
2288
- "type": "boolean",
2289
- "default": "false"
2290
- },
2291
- {
2292
- "name": "nonEditable",
2293
- "attribute": "nonEditable",
2294
- "description": "Whether the column is editable",
2295
- "type": "boolean | Predicate<TData>",
2296
- "default": "false"
2297
- },
2298
- {
2299
- "name": "sticky",
2300
- "attribute": "sticky",
2301
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2302
- "type": "DataGridColumnSticky | undefined"
2303
- }
2304
- ]
2305
- },
2306
- {
2307
- "name": "mo-data-grid-column-currency",
2308
- "path": ".\\packages\\DataGrid\\columns\\number\\DataGridColumnCurrency.ts",
2309
- "attributes": [
2310
- {
2311
- "name": "currency",
2312
- "description": "The currency of the values.",
2313
- "type": "Currency | undefined"
2314
- },
2315
- {
2316
- "name": "currencyDataSelector",
2317
- "description": "The key path to the currency of the values.",
2318
- "type": "KeyPathOf<TData>"
2319
- },
2320
- {
2321
- "name": "sumHeading",
2322
- "type": "string | undefined",
2323
- "default": "\"undefined\""
2324
- },
2325
- {
2326
- "name": "dataGrid",
2327
- "type": "DataGrid<TData, any> | undefined"
2328
- },
2329
- {
2330
- "name": "width",
2331
- "description": "The width of the column",
2332
- "type": "string",
2333
- "default": "\"max-content\""
2334
- },
2335
- {
2336
- "name": "hidden",
2337
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
2338
- "type": "boolean",
2339
- "default": "false"
2340
- },
2341
- {
2342
- "name": "heading",
2343
- "description": "The heading of the column",
2344
- "type": "string",
2345
- "default": "\"\""
2346
- },
2347
- {
2348
- "name": "textAlign",
2349
- "description": "The text alignment of the column",
2350
- "type": "DataGridColumnAlignment",
2351
- "default": "\"end\""
2352
- },
2353
- {
2354
- "name": "description",
2355
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2356
- "type": "string | undefined"
2357
- },
2358
- {
2359
- "name": "dataSelector",
2360
- "description": "The data selector of the column",
2361
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
2362
- },
2363
- {
2364
- "name": "sortDataSelector",
2365
- "description": "The data selector of the column",
2366
- "type": "KeyPathOf<TData>"
2367
- },
2368
- {
2369
- "name": "nonSortable",
2370
- "description": "Whether the column is sortable",
2371
- "type": "boolean",
2372
- "default": "false"
2373
- },
2374
- {
2375
- "name": "nonEditable",
2376
- "description": "Whether the column is editable",
2377
- "type": "boolean | Predicate<TData>",
2378
- "default": "false"
2379
- },
2380
- {
2381
- "name": "sticky",
2382
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2383
- "type": "DataGridColumnSticky | undefined"
2384
- }
2385
- ],
2386
- "properties": [
2387
- {
2388
- "name": "defaultCurrency",
2389
- "type": "Currency | undefined"
2390
- },
2391
- {
2392
- "name": "currency",
2393
- "attribute": "currency",
2394
- "description": "The currency of the values.",
2395
- "type": "Currency | undefined"
2396
- },
2397
- {
2398
- "name": "currencyDataSelector",
2399
- "attribute": "currencyDataSelector",
2400
- "description": "The key path to the currency of the values.",
2401
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
2402
- },
2403
- {
2404
- "name": "sumHeading",
2405
- "attribute": "sumHeading",
2406
- "type": "string | undefined",
2407
- "default": "\"undefined\""
2408
- },
2409
- {
2410
- "name": "dataGrid",
2411
- "attribute": "dataGrid",
2412
- "type": "DataGrid<TData, any> | undefined"
2413
- },
2414
- {
2415
- "name": "column",
2416
- "type": "DataGridColumn<TData, unknown>"
2417
- },
2418
- {
2419
- "name": "width",
2420
- "attribute": "width",
2421
- "description": "The width of the column",
2422
- "type": "string",
2423
- "default": "\"max-content\""
2424
- },
2425
- {
2426
- "name": "hidden",
2427
- "attribute": "hidden",
2428
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
2429
- "type": "boolean",
2430
- "default": "false"
2431
- },
2432
- {
2433
- "name": "heading",
2434
- "attribute": "heading",
2435
- "description": "The heading of the column",
2436
- "type": "string",
2437
- "default": "\"\""
2438
- },
2439
- {
2440
- "name": "textAlign",
2441
- "attribute": "textAlign",
2442
- "description": "The text alignment of the column",
2443
- "type": "DataGridColumnAlignment",
2444
- "default": "\"end\""
2445
- },
2446
- {
2447
- "name": "description",
2448
- "attribute": "description",
2449
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2450
- "type": "string | undefined"
2451
- },
2452
- {
2453
- "name": "dataSelector",
2454
- "attribute": "dataSelector",
2455
- "description": "The data selector of the column",
2456
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
2457
- },
2458
- {
2459
- "name": "sortDataSelector",
2460
- "attribute": "sortDataSelector",
2461
- "description": "The data selector of the column",
2462
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
2463
- },
2464
- {
2465
- "name": "nonSortable",
2466
- "attribute": "nonSortable",
2467
- "description": "Whether the column is sortable",
2468
- "type": "boolean",
2469
- "default": "false"
2470
- },
2471
- {
2472
- "name": "nonEditable",
2473
- "attribute": "nonEditable",
2474
- "description": "Whether the column is editable",
2475
- "type": "boolean | Predicate<TData>",
2476
- "default": "false"
2477
- },
2478
- {
2479
- "name": "sticky",
2480
- "attribute": "sticky",
2481
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2482
- "type": "DataGridColumnSticky | undefined"
2483
- }
2484
- ]
2485
- },
2486
- {
2487
- "name": "mo-data-grid-column-number",
2488
- "path": ".\\packages\\DataGrid\\columns\\number\\DataGridColumnNumber.ts",
2489
- "attributes": [
2490
- {
2491
- "name": "sumHeading",
2492
- "type": "string | undefined",
2493
- "default": "\"undefined\""
2494
- },
2495
- {
2496
- "name": "dataGrid",
2497
- "type": "DataGrid<TData, any> | undefined"
2498
- },
2499
- {
2500
- "name": "width",
2501
- "description": "The width of the column",
2502
- "type": "string",
2503
- "default": "\"max-content\""
2504
- },
2505
- {
2506
- "name": "hidden",
2507
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
2508
- "type": "boolean",
2509
- "default": "false"
2510
- },
2511
- {
2512
- "name": "heading",
2513
- "description": "The heading of the column",
2514
- "type": "string",
2515
- "default": "\"\""
2516
- },
2517
- {
2518
- "name": "textAlign",
2519
- "description": "The text alignment of the column",
2520
- "type": "DataGridColumnAlignment",
2521
- "default": "\"end\""
2522
- },
2523
- {
2524
- "name": "description",
2525
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2526
- "type": "string | undefined"
2527
- },
2528
- {
2529
- "name": "dataSelector",
2530
- "description": "The data selector of the column",
2531
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
2532
- },
2533
- {
2534
- "name": "sortDataSelector",
2535
- "description": "The data selector of the column",
2536
- "type": "KeyPathOf<TData>"
2537
- },
2538
- {
2539
- "name": "nonSortable",
2540
- "description": "Whether the column is sortable",
2541
- "type": "boolean",
2542
- "default": "false"
2543
- },
2544
- {
2545
- "name": "nonEditable",
2546
- "description": "Whether the column is editable",
2547
- "type": "boolean | Predicate<TData>",
2548
- "default": "false"
2549
- },
2550
- {
2551
- "name": "sticky",
2552
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2553
- "type": "DataGridColumnSticky | undefined"
2554
- }
2555
- ],
2556
- "properties": [
2557
- {
2558
- "name": "sumHeading",
2559
- "attribute": "sumHeading",
2560
- "type": "string | undefined",
2561
- "default": "\"undefined\""
2562
- },
2563
- {
2564
- "name": "dataGrid",
2565
- "attribute": "dataGrid",
2566
- "type": "DataGrid<TData, any> | undefined"
2567
- },
2568
- {
2569
- "name": "column",
2570
- "type": "DataGridColumn<TData, unknown>"
2571
- },
2572
- {
2573
- "name": "width",
2574
- "attribute": "width",
2575
- "description": "The width of the column",
2576
- "type": "string",
2577
- "default": "\"max-content\""
2578
- },
2579
- {
2580
- "name": "hidden",
2581
- "attribute": "hidden",
2582
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
2583
- "type": "boolean",
2584
- "default": "false"
2585
- },
2586
- {
2587
- "name": "heading",
2588
- "attribute": "heading",
2589
- "description": "The heading of the column",
2590
- "type": "string",
2591
- "default": "\"\""
2592
- },
2593
- {
2594
- "name": "textAlign",
2595
- "attribute": "textAlign",
2596
- "description": "The text alignment of the column",
2597
- "type": "DataGridColumnAlignment",
2598
- "default": "\"end\""
2599
- },
2600
- {
2601
- "name": "description",
2602
- "attribute": "description",
2603
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2604
- "type": "string | undefined"
2605
- },
2606
- {
2607
- "name": "dataSelector",
2608
- "attribute": "dataSelector",
2609
- "description": "The data selector of the column",
2610
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
2611
- },
2612
- {
2613
- "name": "sortDataSelector",
2614
- "attribute": "sortDataSelector",
2615
- "description": "The data selector of the column",
2616
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
2617
- },
2618
- {
2619
- "name": "nonSortable",
2620
- "attribute": "nonSortable",
2621
- "description": "Whether the column is sortable",
2622
- "type": "boolean",
2623
- "default": "false"
2624
- },
2625
- {
2626
- "name": "nonEditable",
2627
- "attribute": "nonEditable",
2628
- "description": "Whether the column is editable",
2629
- "type": "boolean | Predicate<TData>",
2630
- "default": "false"
2631
- },
2632
- {
2633
- "name": "sticky",
2634
- "attribute": "sticky",
2635
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2636
- "type": "DataGridColumnSticky | undefined"
2637
- }
2638
- ]
2639
- },
2640
- {
2641
- "name": "mo-data-grid-column-percent",
2642
- "path": ".\\packages\\DataGrid\\columns\\number\\DataGridColumnPercent.ts",
2643
- "attributes": [
2644
- {
2645
- "name": "sumHeading",
2646
- "type": "string | undefined",
2647
- "default": "\"undefined\""
2648
- },
2649
- {
2650
- "name": "dataGrid",
2651
- "type": "DataGrid<TData, any> | undefined"
2652
- },
2653
- {
2654
- "name": "width",
2655
- "description": "The width of the column",
2656
- "type": "string",
2657
- "default": "\"max-content\""
2658
- },
2659
- {
2660
- "name": "hidden",
2661
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
2662
- "type": "boolean",
2663
- "default": "false"
2664
- },
2665
- {
2666
- "name": "heading",
2667
- "description": "The heading of the column",
2668
- "type": "string",
2669
- "default": "\"\""
2670
- },
2671
- {
2672
- "name": "textAlign",
2673
- "description": "The text alignment of the column",
2674
- "type": "DataGridColumnAlignment",
2675
- "default": "\"end\""
2676
- },
2677
- {
2678
- "name": "description",
2679
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2680
- "type": "string | undefined"
2681
- },
2682
- {
2683
- "name": "dataSelector",
2684
- "description": "The data selector of the column",
2685
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
2686
- },
2687
- {
2688
- "name": "sortDataSelector",
2689
- "description": "The data selector of the column",
2690
- "type": "KeyPathOf<TData>"
2691
- },
2692
- {
2693
- "name": "nonSortable",
2694
- "description": "Whether the column is sortable",
2695
- "type": "boolean",
2696
- "default": "false"
2697
- },
2698
- {
2699
- "name": "nonEditable",
2700
- "description": "Whether the column is editable",
2701
- "type": "boolean | Predicate<TData>",
2702
- "default": "false"
2703
- },
2704
- {
2705
- "name": "sticky",
2706
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2707
- "type": "DataGridColumnSticky | undefined"
2708
- }
2709
- ],
2710
- "properties": [
2711
- {
2712
- "name": "sumHeading",
2713
- "attribute": "sumHeading",
2714
- "type": "string | undefined",
2715
- "default": "\"undefined\""
2716
- },
2717
- {
2718
- "name": "dataGrid",
2719
- "attribute": "dataGrid",
2720
- "type": "DataGrid<TData, any> | undefined"
2721
- },
2722
- {
2723
- "name": "column",
2724
- "type": "DataGridColumn<TData, unknown>"
2725
- },
2726
- {
2727
- "name": "width",
2728
- "attribute": "width",
2729
- "description": "The width of the column",
2730
- "type": "string",
2731
- "default": "\"max-content\""
2732
- },
2733
- {
2734
- "name": "hidden",
2735
- "attribute": "hidden",
2736
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
2737
- "type": "boolean",
2738
- "default": "false"
2739
- },
2740
- {
2741
- "name": "heading",
2742
- "attribute": "heading",
2743
- "description": "The heading of the column",
2744
- "type": "string",
2745
- "default": "\"\""
2746
- },
2747
- {
2748
- "name": "textAlign",
2749
- "attribute": "textAlign",
2750
- "description": "The text alignment of the column",
2751
- "type": "DataGridColumnAlignment",
2752
- "default": "\"end\""
2753
- },
2754
- {
2755
- "name": "description",
2756
- "attribute": "description",
2757
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
2758
- "type": "string | undefined"
2759
- },
2760
- {
2761
- "name": "dataSelector",
2762
- "attribute": "dataSelector",
2763
- "description": "The data selector of the column",
2764
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
2765
- },
2766
- {
2767
- "name": "sortDataSelector",
2768
- "attribute": "sortDataSelector",
2769
- "description": "The data selector of the column",
2770
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
2771
- },
2772
- {
2773
- "name": "nonSortable",
2774
- "attribute": "nonSortable",
2775
- "description": "Whether the column is sortable",
2776
- "type": "boolean",
2777
- "default": "false"
2778
- },
2779
- {
2780
- "name": "nonEditable",
2781
- "attribute": "nonEditable",
2782
- "description": "Whether the column is editable",
2783
- "type": "boolean | Predicate<TData>",
2784
- "default": "false"
2785
- },
2786
- {
2787
- "name": "sticky",
2788
- "attribute": "sticky",
2789
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
2790
- "type": "DataGridColumnSticky | undefined"
2791
- }
2792
- ]
2793
- },
2794
- {
2795
- "name": "mo-data-grid-footer-sum",
2796
- "path": ".\\packages\\DataGrid\\columns\\number\\DataGridFooterSum.ts",
2797
- "attributes": [
2798
- {
2799
- "name": "heading",
2800
- "type": "string",
2801
- "default": "\"\""
2802
- }
2803
- ],
2804
- "properties": [
2805
- {
2806
- "name": "heading",
2807
- "attribute": "heading",
2808
- "type": "string",
2809
- "default": "\"\""
2810
- }
2811
- ],
2812
- "slots": [
2813
- {
2814
- "name": "",
2815
- "description": "Sum of values"
2816
- }
2817
- ]
2818
- },
2819
- {
2820
- "name": "mo-data-grid",
2821
- "path": ".\\packages\\DataGrid\\dist\\DataGrid.d.ts",
2822
- "attributes": [
2823
- {
2824
- "name": "data",
2825
- "description": "The data to be displayed in the DataGrid. It is an array of objects, where each object represents a row.",
2826
- "type": "TData[]"
2827
- },
2828
- {
2829
- "name": "columns",
2830
- "description": "The columns to be displayed in the DataGrid. It is an array of objects, where each object represents a column.",
2831
- "type": "DataGridColumn<TData, unknown>[]"
2832
- },
2833
- {
2834
- "name": "headerHidden",
2835
- "description": "Whether the header should be hidden.",
2836
- "type": "boolean"
2837
- },
2838
- {
2839
- "name": "preventVerticalContentScroll",
2840
- "description": "Whether the content should be prevented from scrolling vertically.",
2841
- "type": "boolean"
2842
- },
2843
- {
2844
- "name": "page",
2845
- "description": "The current page.",
2846
- "type": "number"
2847
- },
2848
- {
2849
- "name": "pagination",
2850
- "description": "The pagination mode. It can be either `auto` or a number.",
2851
- "type": "DataGridPagination | undefined"
2852
- },
2853
- {
2854
- "name": "sorting",
2855
- "description": "The sorting mode. It is an object with `selector` and `strategy` properties.",
2856
- "type": "DataGridSorting<TData> | undefined"
2857
- },
2858
- {
2859
- "name": "selectionMode",
2860
- "description": "The selection mode. Default to 'single' with",
2861
- "type": "DataGridSelectionMode | undefined"
2862
- },
2863
- {
2864
- "name": "isDataSelectable",
2865
- "description": "Whether data of a given row is selectable.",
2866
- "type": "((data: TData) => boolean) | undefined"
2867
- },
2868
- {
2869
- "name": "selectedData",
2870
- "description": "The selected data.",
2871
- "type": "TData[]"
2872
- },
2873
- {
2874
- "name": "selectOnClick",
2875
- "description": "Whether the row should be selected on click.",
2876
- "type": "boolean"
2877
- },
2878
- {
2879
- "name": "selectionCheckboxesHidden",
2880
- "description": "Whether the selection checkboxes should be hidden. This activates selection on row click ignoring the `selectOnClick` attribute.",
2881
- "type": "boolean"
2882
- },
2883
- {
2884
- "name": "selectionBehaviorOnDataChange",
2885
- "description": "The behavior of the selection when the data changes.",
2886
- "type": "DataGridSelectionBehaviorOnDataChange"
2887
- },
2888
- {
2889
- "name": "multipleDetails",
2890
- "description": "Whether multiple details can be opened at the same time.",
2891
- "type": "boolean"
2892
- },
2893
- {
2894
- "name": "subDataGridDataSelector",
2895
- "description": "The key path of the sub data grid data.",
2896
- "type": "KeyPathOf<TData>"
2897
- },
2898
- {
2899
- "name": "hasDataDetail",
2900
- "description": "Whether the data has a detail.",
2901
- "type": "((data: TData) => boolean) | undefined"
2902
- },
2903
- {
2904
- "name": "detailsOnClick",
2905
- "description": "Whether the details should be opened on click.",
2906
- "type": "boolean"
2907
- },
2908
- {
2909
- "name": "primaryContextMenuItemOnDoubleClick",
2910
- "description": "The primary context menu item on double click.",
2911
- "type": "boolean"
2912
- },
2913
- {
2914
- "name": "editability",
2915
- "description": "The editability mode.",
2916
- "type": "DataGridEditability"
2917
- },
2918
- {
2919
- "name": "getRowDetailsTemplate",
2920
- "description": "A function which returns a template for the details of a given row.",
2921
- "type": "((data: TData) => HTMLTemplateResult) | undefined"
2922
- },
2923
- {
2924
- "name": "getRowContextMenuTemplate",
2925
- "description": "A function which returns a template for the context menu of a given row.",
2926
- "type": "((data: TData[]) => HTMLTemplateResult) | undefined"
2927
- },
2928
- {
2929
- "name": "sidePanelTab",
2930
- "description": "The side panel tab.",
2931
- "type": "DataGridSidePanelTab | undefined"
2932
- },
2933
- {
2934
- "name": "sidePanelHidden",
2935
- "description": "Whether the side panel should be hidden.",
2936
- "type": "boolean"
2937
- },
2938
- {
2939
- "name": "hasAlternatingBackground",
2940
- "description": "Whether the rows should have alternating background.",
2941
- "type": "LocalStorage<boolean>"
2942
- },
2943
- {
2944
- "name": "preventFabCollapse",
2945
- "description": "Whether the FAB should be prevented from collapsing.",
2946
- "type": "boolean"
2947
- },
2948
- {
2949
- "name": "cellFontSize",
2950
- "description": "The font size of the cells relative to the default font size. Defaults",
2951
- "type": "number"
2952
- },
2953
- {
2954
- "name": "rowHeight",
2955
- "description": "The height of the rows in pixels. Defaults to",
2956
- "type": "LocalStorage<number>"
2957
- },
2958
- {
2959
- "name": "exportable",
2960
- "description": "Whether the DataGrid is exportable. This will show an export button in the footer.",
2961
- "type": "boolean"
2962
- }
2963
- ],
2964
- "properties": [
2965
- {
2966
- "name": "cellRelativeFontSize",
2967
- "type": "LocalStorage<number>"
2968
- },
2969
- {
2970
- "name": "dataChange",
2971
- "type": "EventDispatcher<TData[]>"
2972
- },
2973
- {
2974
- "name": "selectionChange",
2975
- "type": "EventDispatcher<TData[]>"
2976
- },
2977
- {
2978
- "name": "pageChange",
2979
- "type": "EventDispatcher<number>"
2980
- },
2981
- {
2982
- "name": "paginationChange",
2983
- "type": "EventDispatcher<DataGridPagination | undefined>"
2984
- },
2985
- {
2986
- "name": "columnsChange",
2987
- "type": "EventDispatcher<DataGridColumn<TData, unknown>[]>"
2988
- },
2989
- {
2990
- "name": "sidePanelOpen",
2991
- "type": "EventDispatcher<DataGridSidePanelTab>"
2992
- },
2993
- {
2994
- "name": "sidePanelClose",
2995
- "type": "EventDispatcher<void>"
2996
- },
2997
- {
2998
- "name": "sortingChange",
2999
- "type": "EventDispatcher<DataGridRankedSortDefinition<TData>[]>"
3000
- },
3001
- {
3002
- "name": "rowDetailsOpen",
3003
- "type": "EventDispatcher<DataGridRow<TData, TDetailsElement>>"
3004
- },
3005
- {
3006
- "name": "rowDetailsClose",
3007
- "type": "EventDispatcher<DataGridRow<TData, TDetailsElement>>"
3008
- },
3009
- {
3010
- "name": "rowClick",
3011
- "type": "EventDispatcher<DataGridRow<TData, TDetailsElement>>"
3012
- },
3013
- {
3014
- "name": "rowDoubleClick",
3015
- "type": "EventDispatcher<DataGridRow<TData, TDetailsElement>>"
3016
- },
3017
- {
3018
- "name": "rowMiddleClick",
3019
- "type": "EventDispatcher<DataGridRow<TData, TDetailsElement>>"
3020
- },
3021
- {
3022
- "name": "cellEdit",
3023
- "type": "EventDispatcher<DataGridCell<any, TData, TDetailsElement>>"
3024
- },
3025
- {
3026
- "name": "rows",
3027
- "type": "DataGridRow<TData, TDetailsElement>[]"
3028
- },
3029
- {
3030
- "name": "hasSelection",
3031
- "type": "boolean"
3032
- },
3033
- {
3034
- "name": "hasDetails",
3035
- "type": "boolean"
3036
- },
3037
- {
3038
- "name": "allRowDetailsOpen",
3039
- "type": "boolean"
3040
- },
3041
- {
3042
- "name": "extractedColumns",
3043
- "type": "DataGridColumn<TData, unknown>[]"
3044
- },
3045
- {
3046
- "name": "visibleColumns",
3047
- "type": "DataGridColumn<TData, unknown>[]"
3048
- },
3049
- {
3050
- "name": "hasContextMenu",
3051
- "type": "boolean"
3052
- },
3053
- {
3054
- "name": "toolbarElements",
3055
- "type": "Element[]"
3056
- },
3057
- {
3058
- "name": "hasToolbar",
3059
- "type": "boolean"
3060
- },
3061
- {
3062
- "name": "filterElements",
3063
- "type": "Element[]"
3064
- },
3065
- {
3066
- "name": "hasFilters",
3067
- "type": "boolean"
3068
- },
3069
- {
3070
- "name": "hasSums",
3071
- "type": "boolean"
3072
- },
3073
- {
3074
- "name": "hasFabs",
3075
- "type": "boolean"
3076
- },
3077
- {
3078
- "name": "hasPagination",
3079
- "type": "boolean"
3080
- },
3081
- {
3082
- "name": "supportsDynamicPageSize",
3083
- "type": "boolean"
3084
- },
3085
- {
3086
- "name": "pageSize",
3087
- "type": "LocalStorage<number>"
3088
- },
3089
- {
3090
- "name": "hasFooter",
3091
- "type": "boolean"
3092
- },
3093
- {
3094
- "name": "dataLength",
3095
- "type": "number"
3096
- },
3097
- {
3098
- "name": "maxPage",
3099
- "type": "number"
3100
- },
3101
- {
3102
- "name": "hasNextPage",
3103
- "type": "boolean"
3104
- },
3105
- {
3106
- "name": "columnsController",
3107
- "type": "DataGridColumnsController<TData>"
3108
- },
3109
- {
3110
- "name": "selectionController",
3111
- "type": "DataGridSelectionController<TData>"
3112
- },
3113
- {
3114
- "name": "sortingController",
3115
- "type": "DataGridSortingController<TData>"
3116
- },
3117
- {
3118
- "name": "contextMenuController",
3119
- "type": "DataGridContextMenuController<TData>"
3120
- },
3121
- {
3122
- "name": "detailsController",
3123
- "type": "DataGridDetailsController<TData>"
3124
- },
3125
- {
3126
- "name": "csvController",
3127
- "type": "DataGridCsvController<TData>"
3128
- },
3129
- {
3130
- "name": "rowIntersectionObserver",
3131
- "type": "IntersectionObserver | undefined"
3132
- },
3133
- {
3134
- "name": "hasDefaultRowElements",
3135
- "type": "boolean"
3136
- },
3137
- {
3138
- "name": "sumsTemplate",
3139
- "type": "HTMLTemplateResult"
3140
- },
3141
- {
3142
- "name": "dataRecords",
3143
- "type": "DataRecord<TData>[]"
3144
- },
3145
- {
3146
- "name": "renderDataRecords",
3147
- "type": "DataRecord<TData>[]"
3148
- },
3149
- {
3150
- "name": "data",
3151
- "attribute": "data",
3152
- "description": "The data to be displayed in the DataGrid. It is an array of objects, where each object represents a row.",
3153
- "type": "TData[]"
3154
- },
3155
- {
3156
- "name": "columns",
3157
- "attribute": "columns",
3158
- "description": "The columns to be displayed in the DataGrid. It is an array of objects, where each object represents a column.",
3159
- "type": "DataGridColumn<TData, unknown>[]"
3160
- },
3161
- {
3162
- "name": "headerHidden",
3163
- "attribute": "headerHidden",
3164
- "description": "Whether the header should be hidden.",
3165
- "type": "boolean"
3166
- },
3167
- {
3168
- "name": "preventVerticalContentScroll",
3169
- "attribute": "preventVerticalContentScroll",
3170
- "description": "Whether the content should be prevented from scrolling vertically.",
3171
- "type": "boolean"
3172
- },
3173
- {
3174
- "name": "page",
3175
- "attribute": "page",
3176
- "description": "The current page.",
3177
- "type": "number"
3178
- },
3179
- {
3180
- "name": "pagination",
3181
- "attribute": "pagination",
3182
- "description": "The pagination mode. It can be either `auto` or a number.",
3183
- "type": "DataGridPagination | undefined"
3184
- },
3185
- {
3186
- "name": "sorting",
3187
- "attribute": "sorting",
3188
- "description": "The sorting mode. It is an object with `selector` and `strategy` properties.",
3189
- "type": "DataGridSorting<TData> | undefined"
3190
- },
3191
- {
3192
- "name": "selectionMode",
3193
- "attribute": "selectionMode",
3194
- "description": "The selection mode. Default to 'single' with",
3195
- "type": "DataGridSelectionMode | undefined"
3196
- },
3197
- {
3198
- "name": "isDataSelectable",
3199
- "attribute": "isDataSelectable",
3200
- "description": "Whether data of a given row is selectable.",
3201
- "type": "((data: TData) => boolean) | undefined"
3202
- },
3203
- {
3204
- "name": "selectedData",
3205
- "attribute": "selectedData",
3206
- "description": "The selected data.",
3207
- "type": "TData[]"
3208
- },
3209
- {
3210
- "name": "selectOnClick",
3211
- "attribute": "selectOnClick",
3212
- "description": "Whether the row should be selected on click.",
3213
- "type": "boolean"
3214
- },
3215
- {
3216
- "name": "selectionCheckboxesHidden",
3217
- "attribute": "selectionCheckboxesHidden",
3218
- "description": "Whether the selection checkboxes should be hidden. This activates selection on row click ignoring the `selectOnClick` attribute.",
3219
- "type": "boolean"
3220
- },
3221
- {
3222
- "name": "selectionBehaviorOnDataChange",
3223
- "attribute": "selectionBehaviorOnDataChange",
3224
- "description": "The behavior of the selection when the data changes.",
3225
- "type": "DataGridSelectionBehaviorOnDataChange"
3226
- },
3227
- {
3228
- "name": "multipleDetails",
3229
- "attribute": "multipleDetails",
3230
- "description": "Whether multiple details can be opened at the same time.",
3231
- "type": "boolean"
3232
- },
3233
- {
3234
- "name": "subDataGridDataSelector",
3235
- "attribute": "subDataGridDataSelector",
3236
- "description": "The key path of the sub data grid data.",
3237
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
3238
- },
3239
- {
3240
- "name": "hasDataDetail",
3241
- "attribute": "hasDataDetail",
3242
- "description": "Whether the data has a detail.",
3243
- "type": "((data: TData) => boolean) | undefined"
3244
- },
3245
- {
3246
- "name": "detailsOnClick",
3247
- "attribute": "detailsOnClick",
3248
- "description": "Whether the details should be opened on click.",
3249
- "type": "boolean"
3250
- },
3251
- {
3252
- "name": "primaryContextMenuItemOnDoubleClick",
3253
- "attribute": "primaryContextMenuItemOnDoubleClick",
3254
- "description": "The primary context menu item on double click.",
3255
- "type": "boolean"
3256
- },
3257
- {
3258
- "name": "editability",
3259
- "attribute": "editability",
3260
- "description": "The editability mode.",
3261
- "type": "DataGridEditability"
3262
- },
3263
- {
3264
- "name": "getRowDetailsTemplate",
3265
- "attribute": "getRowDetailsTemplate",
3266
- "description": "A function which returns a template for the details of a given row.",
3267
- "type": "((data: TData) => HTMLTemplateResult) | undefined"
3268
- },
3269
- {
3270
- "name": "getRowContextMenuTemplate",
3271
- "attribute": "getRowContextMenuTemplate",
3272
- "description": "A function which returns a template for the context menu of a given row.",
3273
- "type": "((data: TData[]) => HTMLTemplateResult) | undefined"
3274
- },
3275
- {
3276
- "name": "sidePanelTab",
3277
- "attribute": "sidePanelTab",
3278
- "description": "The side panel tab.",
3279
- "type": "DataGridSidePanelTab | undefined"
3280
- },
3281
- {
3282
- "name": "sidePanelHidden",
3283
- "attribute": "sidePanelHidden",
3284
- "description": "Whether the side panel should be hidden.",
3285
- "type": "boolean"
3286
- },
3287
- {
3288
- "name": "hasAlternatingBackground",
3289
- "attribute": "hasAlternatingBackground",
3290
- "description": "Whether the rows should have alternating background.",
3291
- "type": "LocalStorage<boolean>"
3292
- },
3293
- {
3294
- "name": "preventFabCollapse",
3295
- "attribute": "preventFabCollapse",
3296
- "description": "Whether the FAB should be prevented from collapsing.",
3297
- "type": "boolean"
3298
- },
3299
- {
3300
- "name": "cellFontSize",
3301
- "attribute": "cellFontSize",
3302
- "description": "The font size of the cells relative to the default font size. Defaults",
3303
- "type": "number"
3304
- },
3305
- {
3306
- "name": "rowHeight",
3307
- "attribute": "rowHeight",
3308
- "description": "The height of the rows in pixels. Defaults to",
3309
- "type": "LocalStorage<number>"
3310
- },
3311
- {
3312
- "name": "exportable",
3313
- "attribute": "exportable",
3314
- "description": "Whether the DataGrid is exportable. This will show an export button in the footer.",
3315
- "type": "boolean"
3316
- }
3317
- ],
3318
- "events": [
3319
- {
3320
- "name": "dataChange",
3321
- "type": "CustomEvent<TData[]>"
3322
- },
3323
- {
3324
- "name": "selectionChange",
3325
- "type": "CustomEvent<TData[]>"
3326
- },
3327
- {
3328
- "name": "pageChange",
3329
- "type": "CustomEvent<number>"
3330
- },
3331
- {
3332
- "name": "paginationChange",
3333
- "type": "CustomEvent<DataGridPagination | undefined>"
3334
- },
3335
- {
3336
- "name": "columnsChange",
3337
- "type": "CustomEvent<DataGridColumn<TData, unknown>[]>"
3338
- },
3339
- {
3340
- "name": "sidePanelOpen",
3341
- "type": "CustomEvent<DataGridSidePanelTab>"
3342
- },
3343
- {
3344
- "name": "sidePanelClose",
3345
- "type": "CustomEvent<void>"
3346
- },
3347
- {
3348
- "name": "sortingChange",
3349
- "type": "CustomEvent<DataGridRankedSortDefinition<TData>[]>"
3350
- },
3351
- {
3352
- "name": "rowDetailsOpen",
3353
- "type": "CustomEvent<DataGridRow<TData, TDetailsElement>>"
3354
- },
3355
- {
3356
- "name": "rowDetailsClose",
3357
- "type": "CustomEvent<DataGridRow<TData, TDetailsElement>>"
3358
- },
3359
- {
3360
- "name": "rowClick",
3361
- "type": "CustomEvent<DataGridRow<TData, TDetailsElement>>"
3362
- },
3363
- {
3364
- "name": "rowDoubleClick",
3365
- "type": "CustomEvent<DataGridRow<TData, TDetailsElement>>"
3366
- },
3367
- {
3368
- "name": "rowMiddleClick",
3369
- "type": "CustomEvent<DataGridRow<TData, TDetailsElement>>"
3370
- },
3371
- {
3372
- "name": "cellEdit",
3373
- "type": "CustomEvent<DataGridCell<any, TData, TDetailsElement>>"
3374
- }
3375
- ],
3376
- "slots": [
3377
- {
3378
- "name": "",
3379
- "description": "Use this slot only for declarative DataGrid APIs e.g. setting ColumnDefinitions via `mo-data-grid-columns` tag."
3380
- },
3381
- {
3382
- "name": "toolbar",
3383
- "description": "The horizontal bar above DataGrid's contents."
3384
- },
3385
- {
3386
- "name": "toolbar-action",
3387
- "description": "A slot for action icon-buttons in the toolbar which are displayed on the end."
3388
- },
3389
- {
3390
- "name": "filter",
3391
- "description": "A vertical bar for elements which filter DataGrid's data. It is opened through an icon-button in the toolbar."
3392
- },
3393
- {
3394
- "name": "sum",
3395
- "description": "A horizontal bar in the DataGrid's footer for showing sums. Calculated sums are also placed here by default."
3396
- },
3397
- {
3398
- "name": "settings",
3399
- "description": "A vertical bar for elements which change DataGrid's settings. It is pre-filled with columns' settings and can be opened through an icon-button in the toolbar."
3400
- },
3401
- {
3402
- "name": "fab",
3403
- "description": "A wrapper at the bottom right edge, floating right above the footer, expecting Floating Action Button to be placed in."
3404
- },
3405
- {
3406
- "name": "error-no-content",
3407
- "description": "A slot for displaying an error message when no data is available."
3408
- }
3409
- ],
3410
- "cssProperties": [
3411
- {
3412
- "name": "--mo-data-grid-min-visible-rows",
3413
- "description": "The minimum number of visible rows. Default to 2.5."
3414
- },
3415
- {
3416
- "name": "--mo-data-grid-footer-background",
3417
- "description": "The background of the footer."
3418
- },
3419
- {
3420
- "name": "--mo-data-grid-cell-padding",
3421
- "description": "The inline padding of the cells. Default to 10px."
3422
- },
3423
- {
3424
- "name": "--mo-data-grid-column-sub-row-indentation",
3425
- "description": "The indentation of the first column in the sub row. Default to 20px."
3426
- }
3427
- ]
3428
- },
3429
- {
3430
- "name": "mo-data-grid-cell",
3431
- "path": ".\\packages\\DataGrid\\dist\\DataGridCell.d.ts",
3432
- "attributes": [
3433
- {
3434
- "name": "value",
3435
- "type": "TValue"
3436
- },
3437
- {
3438
- "name": "column",
3439
- "type": "DataGridColumn<TData, TValue>"
3440
- },
3441
- {
3442
- "name": "row",
3443
- "type": "DataGridRow<TData, TDetailsElement>"
3444
- }
3445
- ],
3446
- "properties": [
3447
- {
3448
- "name": "dataGrid",
3449
- "type": "DataGrid<TData, any>"
3450
- },
3451
- {
3452
- "name": "data",
3453
- "type": "TData"
3454
- },
3455
- {
3456
- "name": "dataSelector",
3457
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | (Extract<keyof TData, `${number}`> extends infer T ? T extends Extract<...> ? T extends keyof TData ? `${T}.${object extends TData[T] ? string : TData[T] extends infer T_1 ? T_1 extends TData[T] ? T_1 extends readonly ..."
3458
- },
3459
- {
3460
- "name": "isEditing",
3461
- "type": "boolean"
3462
- },
3463
- {
3464
- "name": "value",
3465
- "attribute": "value",
3466
- "type": "TValue"
3467
- },
3468
- {
3469
- "name": "column",
3470
- "attribute": "column",
3471
- "type": "DataGridColumn<TData, TValue>"
3472
- },
3473
- {
3474
- "name": "row",
3475
- "attribute": "row",
3476
- "type": "DataGridRow<TData, TDetailsElement>"
3477
- }
3478
- ]
3479
- },
3480
- {
3481
- "name": "mo-data-grid-footer",
3482
- "path": ".\\packages\\DataGrid\\dist\\DataGridFooter.d.ts",
3483
- "attributes": [
3484
- {
3485
- "name": "dataGrid",
3486
- "type": "DataGrid<TData, any>"
3487
- },
3488
- {
3489
- "name": "page",
3490
- "type": "number"
3491
- }
3492
- ],
3493
- "properties": [
3494
- {
3495
- "name": "dataGrid",
3496
- "attribute": "dataGrid",
3497
- "type": "DataGrid<TData, any>"
3498
- },
3499
- {
3500
- "name": "page",
3501
- "attribute": "page",
3502
- "type": "number"
3503
- }
3504
- ]
3505
- },
3506
- {
3507
- "name": "mo-data-grid-header",
3508
- "path": ".\\packages\\DataGrid\\dist\\DataGridHeader.d.ts",
3509
- "properties": [
3510
- {
3511
- "name": "pageChange",
3512
- "type": "EventDispatcher<number>"
3513
- },
3514
- {
3515
- "name": "modeSelectionChange",
3516
- "type": "EventDispatcher<string>"
3517
- },
3518
- {
3519
- "name": "dataGrid",
3520
- "type": "DataGrid<TData, any>"
3521
- },
3522
- {
3523
- "name": "overlayOpen",
3524
- "type": "boolean"
3525
- }
3526
- ]
3527
- },
3528
- {
3529
- "name": "mo-data-grid-header-separator",
3530
- "path": ".\\packages\\DataGrid\\dist\\DataGridHeaderSeparator.d.ts",
3531
- "properties": [
3532
- {
3533
- "name": "dataGrid",
3534
- "type": "DataGrid<unknown, undefined>"
3535
- },
3536
- {
3537
- "name": "column",
3538
- "type": "DataGridColumn<unknown, unknown>"
3539
- }
3540
- ]
3541
- },
3542
- {
3543
- "name": "mo-data-grid-primary-context-menu-item",
3544
- "path": ".\\packages\\DataGrid\\dist\\DataGridPrimaryContextMenuItem.d.ts",
3545
- "attributes": [
3546
- {
3547
- "name": "open",
3548
- "type": "boolean",
3549
- "default": "false"
3550
- },
3551
- {
3552
- "name": "icon",
3553
- "type": "MaterialIcon | undefined"
3554
- },
3555
- {
3556
- "name": "disabled",
3557
- "description": "Whether the list item is disabled",
3558
- "type": "boolean",
3559
- "default": "false"
3560
- },
3561
- {
3562
- "name": "preventClickOnSpace",
3563
- "description": "Whether the list item should prevent click on space",
3564
- "type": "boolean",
3565
- "default": "false"
3566
- }
3567
- ],
3568
- "properties": [
3569
- {
3570
- "name": "open",
3571
- "attribute": "open",
3572
- "type": "boolean",
3573
- "default": "false"
3574
- },
3575
- {
3576
- "name": "subMenu",
3577
- "type": "Menu"
3578
- },
3579
- {
3580
- "name": "slotController",
3581
- "type": "SlotController",
3582
- "default": "\"new SlotController(this)\""
3583
- },
3584
- {
3585
- "name": "icon",
3586
- "attribute": "icon",
3587
- "type": "MaterialIcon | undefined"
3588
- },
3589
- {
3590
- "name": "role",
3591
- "type": "\"menuitem\"",
3592
- "default": "\"menuitem\""
3593
- },
3594
- {
3595
- "name": "tabIndex",
3596
- "type": "number",
3597
- "default": "0"
3598
- },
3599
- {
3600
- "name": "disabled",
3601
- "attribute": "disabled",
3602
- "description": "Whether the list item is disabled",
3603
- "type": "boolean",
3604
- "default": "false"
3605
- },
3606
- {
3607
- "name": "preventClickOnSpace",
3608
- "attribute": "preventClickOnSpace",
3609
- "description": "Whether the list item should prevent click on space",
3610
- "type": "boolean",
3611
- "default": "false"
3612
- }
3613
- ],
3614
- "slots": [
3615
- {
3616
- "name": "submenu"
3617
- },
3618
- {
3619
- "name": "",
3620
- "description": "Default slot for content"
3621
- }
3622
- ],
3623
- "cssParts": [
3624
- {
3625
- "name": "icon"
3626
- }
3627
- ]
3628
- },
3629
- {
3630
- "name": "mo-data-grid-side-panel",
3631
- "path": ".\\packages\\DataGrid\\dist\\DataGridSidePanel.d.ts",
3632
- "attributes": [
3633
- {
3634
- "name": "dataGrid",
3635
- "type": "DataGrid<TData, any>"
3636
- },
3637
- {
3638
- "name": "tab",
3639
- "type": "DataGridSidePanelTab | undefined"
3640
- }
3641
- ],
3642
- "properties": [
3643
- {
3644
- "name": "dataGrid",
3645
- "attribute": "dataGrid",
3646
- "type": "DataGrid<TData, any>"
3647
- },
3648
- {
3649
- "name": "tab",
3650
- "attribute": "tab",
3651
- "type": "DataGridSidePanelTab | undefined"
3652
- }
3653
- ]
3654
- },
3655
- {
3656
- "name": "mo-data-grid-column-boolean",
3657
- "path": ".\\packages\\DataGrid\\dist\\columns\\DataGridColumnBoolean.d.ts",
3658
- "attributes": [
3659
- {
3660
- "name": "trueIcon",
3661
- "description": "Icon to show for true values",
3662
- "type": "MaterialIcon"
3663
- },
3664
- {
3665
- "name": "falseIcon",
3666
- "description": "Icon to show for false values",
3667
- "type": "MaterialIcon"
3668
- },
3669
- {
3670
- "name": "trueIconColor",
3671
- "description": "Color of the true icon",
3672
- "type": "string"
3673
- },
3674
- {
3675
- "name": "falseIconColor",
3676
- "description": "Color of the false icon",
3677
- "type": "string"
3678
- },
3679
- {
3680
- "name": "width",
3681
- "description": "The width of the column",
3682
- "type": "string"
3683
- },
3684
- {
3685
- "name": "hidden",
3686
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
3687
- "type": "boolean"
3688
- },
3689
- {
3690
- "name": "heading",
3691
- "description": "The heading of the column",
3692
- "type": "string"
3693
- },
3694
- {
3695
- "name": "textAlign",
3696
- "description": "The text alignment of the column",
3697
- "type": "DataGridColumnAlignment"
3698
- },
3699
- {
3700
- "name": "description",
3701
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
3702
- "type": "string | undefined"
3703
- },
3704
- {
3705
- "name": "dataSelector",
3706
- "description": "The data selector of the column",
3707
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
3708
- },
3709
- {
3710
- "name": "sortDataSelector",
3711
- "description": "The data selector of the column",
3712
- "type": "KeyPathOf<TData>"
3713
- },
3714
- {
3715
- "name": "nonSortable",
3716
- "description": "Whether the column is sortable",
3717
- "type": "boolean"
3718
- },
3719
- {
3720
- "name": "nonEditable",
3721
- "description": "Whether the column is editable",
3722
- "type": "boolean | Predicate<TData>"
3723
- },
3724
- {
3725
- "name": "sticky",
3726
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
3727
- "type": "DataGridColumnSticky | undefined"
3728
- }
3729
- ],
3730
- "properties": [
3731
- {
3732
- "name": "trueIcon",
3733
- "attribute": "trueIcon",
3734
- "description": "Icon to show for true values",
3735
- "type": "MaterialIcon"
3736
- },
3737
- {
3738
- "name": "falseIcon",
3739
- "attribute": "falseIcon",
3740
- "description": "Icon to show for false values",
3741
- "type": "MaterialIcon"
3742
- },
3743
- {
3744
- "name": "trueIconColor",
3745
- "attribute": "trueIconColor",
3746
- "description": "Color of the true icon",
3747
- "type": "string"
3748
- },
3749
- {
3750
- "name": "falseIconColor",
3751
- "attribute": "falseIconColor",
3752
- "description": "Color of the false icon",
3753
- "type": "string"
3754
- },
3755
- {
3756
- "name": "dataGrid",
3757
- "type": "DataGrid<TData, any> | undefined"
3758
- },
3759
- {
3760
- "name": "column",
3761
- "type": "DataGridColumn<TData, TValue>"
3762
- },
3763
- {
3764
- "name": "width",
3765
- "attribute": "width",
3766
- "description": "The width of the column",
3767
- "type": "string"
3768
- },
3769
- {
3770
- "name": "hidden",
3771
- "attribute": "hidden",
3772
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
3773
- "type": "boolean"
3774
- },
3775
- {
3776
- "name": "heading",
3777
- "attribute": "heading",
3778
- "description": "The heading of the column",
3779
- "type": "string"
3780
- },
3781
- {
3782
- "name": "textAlign",
3783
- "attribute": "textAlign",
3784
- "description": "The text alignment of the column",
3785
- "type": "DataGridColumnAlignment"
3786
- },
3787
- {
3788
- "name": "description",
3789
- "attribute": "description",
3790
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
3791
- "type": "string | undefined"
3792
- },
3793
- {
3794
- "name": "dataSelector",
3795
- "attribute": "dataSelector",
3796
- "description": "The data selector of the column",
3797
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
3798
- },
3799
- {
3800
- "name": "sortDataSelector",
3801
- "attribute": "sortDataSelector",
3802
- "description": "The data selector of the column",
3803
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
3804
- },
3805
- {
3806
- "name": "nonSortable",
3807
- "attribute": "nonSortable",
3808
- "description": "Whether the column is sortable",
3809
- "type": "boolean"
3810
- },
3811
- {
3812
- "name": "nonEditable",
3813
- "attribute": "nonEditable",
3814
- "description": "Whether the column is editable",
3815
- "type": "boolean | Predicate<TData>"
3816
- },
3817
- {
3818
- "name": "sticky",
3819
- "attribute": "sticky",
3820
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
3821
- "type": "DataGridColumnSticky | undefined"
3822
- }
3823
- ]
3824
- },
3825
- {
3826
- "name": "mo-data-grid-column-deletion",
3827
- "path": ".\\packages\\DataGrid\\dist\\columns\\DataGridColumnDeletion.d.ts",
3828
- "attributes": [
3829
- {
3830
- "name": "prevent",
3831
- "description": "Prevents the deletion button from being displayed",
3832
- "type": "boolean"
3833
- },
3834
- {
3835
- "name": "width",
3836
- "description": "The width of the column",
3837
- "type": "string"
3838
- },
3839
- {
3840
- "name": "hidden",
3841
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
3842
- "type": "boolean"
3843
- },
3844
- {
3845
- "name": "heading",
3846
- "description": "The heading of the column",
3847
- "type": "string"
3848
- },
3849
- {
3850
- "name": "textAlign",
3851
- "description": "The text alignment of the column",
3852
- "type": "DataGridColumnAlignment"
3853
- },
3854
- {
3855
- "name": "description",
3856
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
3857
- "type": "string | undefined"
3858
- },
3859
- {
3860
- "name": "dataSelector",
3861
- "description": "The data selector of the column",
3862
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
3863
- },
3864
- {
3865
- "name": "sortDataSelector",
3866
- "description": "The data selector of the column",
3867
- "type": "KeyPathOf<TData>"
3868
- },
3869
- {
3870
- "name": "nonSortable",
3871
- "description": "Whether the column is sortable",
3872
- "type": "boolean"
3873
- },
3874
- {
3875
- "name": "nonEditable",
3876
- "description": "Whether the column is editable",
3877
- "type": "boolean"
3878
- },
3879
- {
3880
- "name": "sticky",
3881
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
3882
- "type": "DataGridColumnSticky | undefined"
3883
- }
3884
- ],
3885
- "properties": [
3886
- {
3887
- "name": "delete",
3888
- "type": "EventDispatcher<TData>"
3889
- },
3890
- {
3891
- "name": "icon",
3892
- "type": "MaterialIcon"
3893
- },
3894
- {
3895
- "name": "getContentTemplate",
3896
- "type": "(_: never, data?: TData | undefined) => HTMLTemplateResult"
3897
- },
3898
- {
3899
- "name": "getEditContentTemplate",
3900
- "type": "undefined"
3901
- },
3902
- {
3903
- "name": "prevent",
3904
- "attribute": "prevent",
3905
- "description": "Prevents the deletion button from being displayed",
3906
- "type": "boolean"
3907
- },
3908
- {
3909
- "name": "dataGrid",
3910
- "type": "DataGrid<TData, any> | undefined"
3911
- },
3912
- {
3913
- "name": "column",
3914
- "type": "DataGridColumn<TData, TValue>"
3915
- },
3916
- {
3917
- "name": "width",
3918
- "attribute": "width",
3919
- "description": "The width of the column",
3920
- "type": "string"
3921
- },
3922
- {
3923
- "name": "hidden",
3924
- "attribute": "hidden",
3925
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
3926
- "type": "boolean"
3927
- },
3928
- {
3929
- "name": "heading",
3930
- "attribute": "heading",
3931
- "description": "The heading of the column",
3932
- "type": "string"
3933
- },
3934
- {
3935
- "name": "textAlign",
3936
- "attribute": "textAlign",
3937
- "description": "The text alignment of the column",
3938
- "type": "DataGridColumnAlignment"
3939
- },
3940
- {
3941
- "name": "description",
3942
- "attribute": "description",
3943
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
3944
- "type": "string | undefined"
3945
- },
3946
- {
3947
- "name": "dataSelector",
3948
- "attribute": "dataSelector",
3949
- "description": "The data selector of the column",
3950
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
3951
- },
3952
- {
3953
- "name": "sortDataSelector",
3954
- "attribute": "sortDataSelector",
3955
- "description": "The data selector of the column",
3956
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
3957
- },
3958
- {
3959
- "name": "nonSortable",
3960
- "attribute": "nonSortable",
3961
- "description": "Whether the column is sortable",
3962
- "type": "boolean"
3963
- },
3964
- {
3965
- "name": "nonEditable",
3966
- "attribute": "nonEditable",
3967
- "description": "Whether the column is editable",
3968
- "type": "boolean"
3969
- },
3970
- {
3971
- "name": "sticky",
3972
- "attribute": "sticky",
3973
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
3974
- "type": "DataGridColumnSticky | undefined"
3975
- }
3976
- ],
3977
- "events": [
3978
- {
3979
- "name": "delete",
3980
- "type": "CustomEvent<TData>"
3981
- }
3982
- ]
3983
- },
3984
- {
3985
- "name": "mo-data-grid-column-image",
3986
- "path": ".\\packages\\DataGrid\\dist\\columns\\DataGridColumnImage.d.ts",
3987
- "attributes": [
3988
- {
3989
- "name": "tooltipSelector",
3990
- "description": "The data selector of the column to use as a tooltip. If a function is provided, it will be called with the data as an argument.",
3991
- "type": "KeyPathOf<TData>"
3992
- },
3993
- {
3994
- "name": "width",
3995
- "description": "The width of the column",
3996
- "type": "string"
3997
- },
3998
- {
3999
- "name": "hidden",
4000
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
4001
- "type": "boolean"
4002
- },
4003
- {
4004
- "name": "heading",
4005
- "description": "The heading of the column",
4006
- "type": "string"
4007
- },
4008
- {
4009
- "name": "textAlign",
4010
- "description": "The text alignment of the column",
4011
- "type": "DataGridColumnAlignment"
4012
- },
4013
- {
4014
- "name": "description",
4015
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4016
- "type": "string | undefined"
4017
- },
4018
- {
4019
- "name": "dataSelector",
4020
- "description": "The data selector of the column",
4021
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
4022
- },
4023
- {
4024
- "name": "sortDataSelector",
4025
- "description": "The data selector of the column",
4026
- "type": "KeyPathOf<TData>"
4027
- },
4028
- {
4029
- "name": "nonSortable",
4030
- "description": "Whether the column is sortable",
4031
- "type": "boolean"
4032
- },
4033
- {
4034
- "name": "nonEditable",
4035
- "description": "Whether the column is editable",
4036
- "type": "boolean"
4037
- },
4038
- {
4039
- "name": "sticky",
4040
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4041
- "type": "DataGridColumnSticky | undefined"
4042
- }
4043
- ],
4044
- "properties": [
4045
- {
4046
- "name": "getEditContentTemplate",
4047
- "type": "undefined"
4048
- },
4049
- {
4050
- "name": "tooltipSelector",
4051
- "attribute": "tooltipSelector",
4052
- "description": "The data selector of the column to use as a tooltip. If a function is provided, it will be called with the data as an argument.",
4053
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | ((data: TData) => string | undefined) | undefined"
4054
- },
4055
- {
4056
- "name": "dataGrid",
4057
- "type": "DataGrid<TData, any> | undefined"
4058
- },
4059
- {
4060
- "name": "column",
4061
- "type": "DataGridColumn<TData, TValue>"
4062
- },
4063
- {
4064
- "name": "width",
4065
- "attribute": "width",
4066
- "description": "The width of the column",
4067
- "type": "string"
4068
- },
4069
- {
4070
- "name": "hidden",
4071
- "attribute": "hidden",
4072
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
4073
- "type": "boolean"
4074
- },
4075
- {
4076
- "name": "heading",
4077
- "attribute": "heading",
4078
- "description": "The heading of the column",
4079
- "type": "string"
4080
- },
4081
- {
4082
- "name": "textAlign",
4083
- "attribute": "textAlign",
4084
- "description": "The text alignment of the column",
4085
- "type": "DataGridColumnAlignment"
4086
- },
4087
- {
4088
- "name": "description",
4089
- "attribute": "description",
4090
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4091
- "type": "string | undefined"
4092
- },
4093
- {
4094
- "name": "dataSelector",
4095
- "attribute": "dataSelector",
4096
- "description": "The data selector of the column",
4097
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
4098
- },
4099
- {
4100
- "name": "sortDataSelector",
4101
- "attribute": "sortDataSelector",
4102
- "description": "The data selector of the column",
4103
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
4104
- },
4105
- {
4106
- "name": "nonSortable",
4107
- "attribute": "nonSortable",
4108
- "description": "Whether the column is sortable",
4109
- "type": "boolean"
4110
- },
4111
- {
4112
- "name": "nonEditable",
4113
- "attribute": "nonEditable",
4114
- "description": "Whether the column is editable",
4115
- "type": "boolean"
4116
- },
4117
- {
4118
- "name": "sticky",
4119
- "attribute": "sticky",
4120
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4121
- "type": "DataGridColumnSticky | undefined"
4122
- }
4123
- ]
4124
- },
4125
- {
4126
- "name": "mo-data-grid-column-text",
4127
- "path": ".\\packages\\DataGrid\\dist\\columns\\DataGridColumnText.d.ts",
4128
- "attributes": [
4129
- {
4130
- "name": "width",
4131
- "description": "The width of the column",
4132
- "type": "string"
4133
- },
4134
- {
4135
- "name": "hidden",
4136
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
4137
- "type": "boolean"
4138
- },
4139
- {
4140
- "name": "heading",
4141
- "description": "The heading of the column",
4142
- "type": "string"
4143
- },
4144
- {
4145
- "name": "textAlign",
4146
- "description": "The text alignment of the column",
4147
- "type": "DataGridColumnAlignment"
4148
- },
4149
- {
4150
- "name": "description",
4151
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4152
- "type": "string | undefined"
4153
- },
4154
- {
4155
- "name": "dataSelector",
4156
- "description": "The data selector of the column",
4157
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
4158
- },
4159
- {
4160
- "name": "sortDataSelector",
4161
- "description": "The data selector of the column",
4162
- "type": "KeyPathOf<TData>"
4163
- },
4164
- {
4165
- "name": "nonSortable",
4166
- "description": "Whether the column is sortable",
4167
- "type": "boolean"
4168
- },
4169
- {
4170
- "name": "nonEditable",
4171
- "description": "Whether the column is editable",
4172
- "type": "boolean | Predicate<TData>"
4173
- },
4174
- {
4175
- "name": "sticky",
4176
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4177
- "type": "DataGridColumnSticky | undefined"
4178
- }
4179
- ],
4180
- "properties": [
4181
- {
4182
- "name": "dataGrid",
4183
- "type": "DataGrid<TData, any> | undefined"
4184
- },
4185
- {
4186
- "name": "column",
4187
- "type": "DataGridColumn<TData, TValue>"
4188
- },
4189
- {
4190
- "name": "width",
4191
- "attribute": "width",
4192
- "description": "The width of the column",
4193
- "type": "string"
4194
- },
4195
- {
4196
- "name": "hidden",
4197
- "attribute": "hidden",
4198
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
4199
- "type": "boolean"
4200
- },
4201
- {
4202
- "name": "heading",
4203
- "attribute": "heading",
4204
- "description": "The heading of the column",
4205
- "type": "string"
4206
- },
4207
- {
4208
- "name": "textAlign",
4209
- "attribute": "textAlign",
4210
- "description": "The text alignment of the column",
4211
- "type": "DataGridColumnAlignment"
4212
- },
4213
- {
4214
- "name": "description",
4215
- "attribute": "description",
4216
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4217
- "type": "string | undefined"
4218
- },
4219
- {
4220
- "name": "dataSelector",
4221
- "attribute": "dataSelector",
4222
- "description": "The data selector of the column",
4223
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
4224
- },
4225
- {
4226
- "name": "sortDataSelector",
4227
- "attribute": "sortDataSelector",
4228
- "description": "The data selector of the column",
4229
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
4230
- },
4231
- {
4232
- "name": "nonSortable",
4233
- "attribute": "nonSortable",
4234
- "description": "Whether the column is sortable",
4235
- "type": "boolean"
4236
- },
4237
- {
4238
- "name": "nonEditable",
4239
- "attribute": "nonEditable",
4240
- "description": "Whether the column is editable",
4241
- "type": "boolean | Predicate<TData>"
4242
- },
4243
- {
4244
- "name": "sticky",
4245
- "attribute": "sticky",
4246
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4247
- "type": "DataGridColumnSticky | undefined"
4248
- }
4249
- ]
4250
- },
4251
- {
4252
- "name": "mo-data-grid-column-date",
4253
- "path": ".\\packages\\DataGrid\\dist\\columns\\date-time\\DataGridColumnDate.d.ts",
4254
- "attributes": [
4255
- {
4256
- "name": "formatOptions",
4257
- "description": "Options to pass to Date.prototype.format()",
4258
- "type": "DateTimeFormatOptions | undefined"
4259
- },
4260
- {
4261
- "name": "pickerHidden",
4262
- "description": "Hides the date/time picker",
4263
- "type": "boolean"
4264
- },
4265
- {
4266
- "name": "width",
4267
- "description": "The width of the column",
4268
- "type": "string"
4269
- },
4270
- {
4271
- "name": "hidden",
4272
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
4273
- "type": "boolean"
4274
- },
4275
- {
4276
- "name": "heading",
4277
- "description": "The heading of the column",
4278
- "type": "string"
4279
- },
4280
- {
4281
- "name": "textAlign",
4282
- "description": "The text alignment of the column",
4283
- "type": "DataGridColumnAlignment"
4284
- },
4285
- {
4286
- "name": "description",
4287
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4288
- "type": "string | undefined"
4289
- },
4290
- {
4291
- "name": "dataSelector",
4292
- "description": "The data selector of the column",
4293
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
4294
- },
4295
- {
4296
- "name": "sortDataSelector",
4297
- "description": "The data selector of the column",
4298
- "type": "KeyPathOf<TData>"
4299
- },
4300
- {
4301
- "name": "nonSortable",
4302
- "description": "Whether the column is sortable",
4303
- "type": "boolean"
4304
- },
4305
- {
4306
- "name": "nonEditable",
4307
- "description": "Whether the column is editable",
4308
- "type": "boolean | Predicate<TData>"
4309
- },
4310
- {
4311
- "name": "sticky",
4312
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4313
- "type": "DataGridColumnSticky | undefined"
4314
- }
4315
- ],
4316
- "properties": [
4317
- {
4318
- "name": "defaultFormatOptions",
4319
- "type": "DateTimeFormatOptions | undefined"
4320
- },
4321
- {
4322
- "name": "fieldTag",
4323
- "type": "StaticValue"
4324
- },
4325
- {
4326
- "name": "formatOptions",
4327
- "attribute": "formatOptions",
4328
- "description": "Options to pass to Date.prototype.format()",
4329
- "type": "DateTimeFormatOptions | undefined"
4330
- },
4331
- {
4332
- "name": "pickerHidden",
4333
- "attribute": "pickerHidden",
4334
- "description": "Hides the date/time picker",
4335
- "type": "boolean"
4336
- },
4337
- {
4338
- "name": "dataGrid",
4339
- "type": "DataGrid<TData, any> | undefined"
4340
- },
4341
- {
4342
- "name": "column",
4343
- "type": "DataGridColumn<TData, TValue>"
4344
- },
4345
- {
4346
- "name": "width",
4347
- "attribute": "width",
4348
- "description": "The width of the column",
4349
- "type": "string"
4350
- },
4351
- {
4352
- "name": "hidden",
4353
- "attribute": "hidden",
4354
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
4355
- "type": "boolean"
4356
- },
4357
- {
4358
- "name": "heading",
4359
- "attribute": "heading",
4360
- "description": "The heading of the column",
4361
- "type": "string"
4362
- },
4363
- {
4364
- "name": "textAlign",
4365
- "attribute": "textAlign",
4366
- "description": "The text alignment of the column",
4367
- "type": "DataGridColumnAlignment"
4368
- },
4369
- {
4370
- "name": "description",
4371
- "attribute": "description",
4372
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4373
- "type": "string | undefined"
4374
- },
4375
- {
4376
- "name": "dataSelector",
4377
- "attribute": "dataSelector",
4378
- "description": "The data selector of the column",
4379
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
4380
- },
4381
- {
4382
- "name": "sortDataSelector",
4383
- "attribute": "sortDataSelector",
4384
- "description": "The data selector of the column",
4385
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
4386
- },
4387
- {
4388
- "name": "nonSortable",
4389
- "attribute": "nonSortable",
4390
- "description": "Whether the column is sortable",
4391
- "type": "boolean"
4392
- },
4393
- {
4394
- "name": "nonEditable",
4395
- "attribute": "nonEditable",
4396
- "description": "Whether the column is editable",
4397
- "type": "boolean | Predicate<TData>"
4398
- },
4399
- {
4400
- "name": "sticky",
4401
- "attribute": "sticky",
4402
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4403
- "type": "DataGridColumnSticky | undefined"
4404
- }
4405
- ]
4406
- },
4407
- {
4408
- "name": "mo-data-grid-column-date-range",
4409
- "path": ".\\packages\\DataGrid\\dist\\columns\\date-time\\DataGridColumnDateRange.d.ts",
4410
- "attributes": [
4411
- {
4412
- "name": "formatOptions",
4413
- "description": "Options to pass to Date.prototype.format()",
4414
- "type": "DateTimeFormatOptions | undefined"
4415
- },
4416
- {
4417
- "name": "pickerHidden",
4418
- "description": "Hides the date/time picker",
4419
- "type": "boolean"
4420
- },
4421
- {
4422
- "name": "width",
4423
- "description": "The width of the column",
4424
- "type": "string"
4425
- },
4426
- {
4427
- "name": "hidden",
4428
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
4429
- "type": "boolean"
4430
- },
4431
- {
4432
- "name": "heading",
4433
- "description": "The heading of the column",
4434
- "type": "string"
4435
- },
4436
- {
4437
- "name": "textAlign",
4438
- "description": "The text alignment of the column",
4439
- "type": "DataGridColumnAlignment"
4440
- },
4441
- {
4442
- "name": "description",
4443
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4444
- "type": "string | undefined"
4445
- },
4446
- {
4447
- "name": "dataSelector",
4448
- "description": "The data selector of the column",
4449
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
4450
- },
4451
- {
4452
- "name": "sortDataSelector",
4453
- "description": "The data selector of the column",
4454
- "type": "KeyPathOf<TData>"
4455
- },
4456
- {
4457
- "name": "nonSortable",
4458
- "description": "Whether the column is sortable",
4459
- "type": "boolean"
4460
- },
4461
- {
4462
- "name": "nonEditable",
4463
- "description": "Whether the column is editable",
4464
- "type": "boolean | Predicate<TData>"
4465
- },
4466
- {
4467
- "name": "sticky",
4468
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4469
- "type": "DataGridColumnSticky | undefined"
4470
- }
4471
- ],
4472
- "properties": [
4473
- {
4474
- "name": "defaultFormatOptions",
4475
- "type": "DateTimeFormatOptions | undefined"
4476
- },
4477
- {
4478
- "name": "fieldTag",
4479
- "type": "StaticValue"
4480
- },
4481
- {
4482
- "name": "formatOptions",
4483
- "attribute": "formatOptions",
4484
- "description": "Options to pass to Date.prototype.format()",
4485
- "type": "DateTimeFormatOptions | undefined"
4486
- },
4487
- {
4488
- "name": "pickerHidden",
4489
- "attribute": "pickerHidden",
4490
- "description": "Hides the date/time picker",
4491
- "type": "boolean"
4492
- },
4493
- {
4494
- "name": "dataGrid",
4495
- "type": "DataGrid<TData, any> | undefined"
4496
- },
4497
- {
4498
- "name": "column",
4499
- "type": "DataGridColumn<TData, TValue>"
4500
- },
4501
- {
4502
- "name": "width",
4503
- "attribute": "width",
4504
- "description": "The width of the column",
4505
- "type": "string"
4506
- },
4507
- {
4508
- "name": "hidden",
4509
- "attribute": "hidden",
4510
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
4511
- "type": "boolean"
4512
- },
4513
- {
4514
- "name": "heading",
4515
- "attribute": "heading",
4516
- "description": "The heading of the column",
4517
- "type": "string"
4518
- },
4519
- {
4520
- "name": "textAlign",
4521
- "attribute": "textAlign",
4522
- "description": "The text alignment of the column",
4523
- "type": "DataGridColumnAlignment"
4524
- },
4525
- {
4526
- "name": "description",
4527
- "attribute": "description",
4528
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4529
- "type": "string | undefined"
4530
- },
4531
- {
4532
- "name": "dataSelector",
4533
- "attribute": "dataSelector",
4534
- "description": "The data selector of the column",
4535
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
4536
- },
4537
- {
4538
- "name": "sortDataSelector",
4539
- "attribute": "sortDataSelector",
4540
- "description": "The data selector of the column",
4541
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
4542
- },
4543
- {
4544
- "name": "nonSortable",
4545
- "attribute": "nonSortable",
4546
- "description": "Whether the column is sortable",
4547
- "type": "boolean"
4548
- },
4549
- {
4550
- "name": "nonEditable",
4551
- "attribute": "nonEditable",
4552
- "description": "Whether the column is editable",
4553
- "type": "boolean | Predicate<TData>"
4554
- },
4555
- {
4556
- "name": "sticky",
4557
- "attribute": "sticky",
4558
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4559
- "type": "DataGridColumnSticky | undefined"
4560
- }
4561
- ]
4562
- },
4563
- {
4564
- "name": "mo-data-grid-column-date-time",
4565
- "path": ".\\packages\\DataGrid\\dist\\columns\\date-time\\DataGridColumnDateTime.d.ts",
4566
- "attributes": [
4567
- {
4568
- "name": "formatOptions",
4569
- "description": "Options to pass to Date.prototype.format()",
4570
- "type": "DateTimeFormatOptions | undefined"
4571
- },
4572
- {
4573
- "name": "pickerHidden",
4574
- "description": "Hides the date/time picker",
4575
- "type": "boolean"
4576
- },
4577
- {
4578
- "name": "width",
4579
- "description": "The width of the column",
4580
- "type": "string"
4581
- },
4582
- {
4583
- "name": "hidden",
4584
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
4585
- "type": "boolean"
4586
- },
4587
- {
4588
- "name": "heading",
4589
- "description": "The heading of the column",
4590
- "type": "string"
4591
- },
4592
- {
4593
- "name": "textAlign",
4594
- "description": "The text alignment of the column",
4595
- "type": "DataGridColumnAlignment"
4596
- },
4597
- {
4598
- "name": "description",
4599
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4600
- "type": "string | undefined"
4601
- },
4602
- {
4603
- "name": "dataSelector",
4604
- "description": "The data selector of the column",
4605
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
4606
- },
4607
- {
4608
- "name": "sortDataSelector",
4609
- "description": "The data selector of the column",
4610
- "type": "KeyPathOf<TData>"
4611
- },
4612
- {
4613
- "name": "nonSortable",
4614
- "description": "Whether the column is sortable",
4615
- "type": "boolean"
4616
- },
4617
- {
4618
- "name": "nonEditable",
4619
- "description": "Whether the column is editable",
4620
- "type": "boolean | Predicate<TData>"
4621
- },
4622
- {
4623
- "name": "sticky",
4624
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4625
- "type": "DataGridColumnSticky | undefined"
4626
- }
4627
- ],
4628
- "properties": [
4629
- {
4630
- "name": "defaultFormatOptions",
4631
- "type": "DateTimeFormatOptions | undefined"
4632
- },
4633
- {
4634
- "name": "fieldTag",
4635
- "type": "StaticValue"
4636
- },
4637
- {
4638
- "name": "formatOptions",
4639
- "attribute": "formatOptions",
4640
- "description": "Options to pass to Date.prototype.format()",
4641
- "type": "DateTimeFormatOptions | undefined"
4642
- },
4643
- {
4644
- "name": "pickerHidden",
4645
- "attribute": "pickerHidden",
4646
- "description": "Hides the date/time picker",
4647
- "type": "boolean"
4648
- },
4649
- {
4650
- "name": "dataGrid",
4651
- "type": "DataGrid<TData, any> | undefined"
4652
- },
4653
- {
4654
- "name": "column",
4655
- "type": "DataGridColumn<TData, TValue>"
4656
- },
4657
- {
4658
- "name": "width",
4659
- "attribute": "width",
4660
- "description": "The width of the column",
4661
- "type": "string"
4662
- },
4663
- {
4664
- "name": "hidden",
4665
- "attribute": "hidden",
4666
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
4667
- "type": "boolean"
4668
- },
4669
- {
4670
- "name": "heading",
4671
- "attribute": "heading",
4672
- "description": "The heading of the column",
4673
- "type": "string"
4674
- },
4675
- {
4676
- "name": "textAlign",
4677
- "attribute": "textAlign",
4678
- "description": "The text alignment of the column",
4679
- "type": "DataGridColumnAlignment"
4680
- },
4681
- {
4682
- "name": "description",
4683
- "attribute": "description",
4684
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4685
- "type": "string | undefined"
4686
- },
4687
- {
4688
- "name": "dataSelector",
4689
- "attribute": "dataSelector",
4690
- "description": "The data selector of the column",
4691
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
4692
- },
4693
- {
4694
- "name": "sortDataSelector",
4695
- "attribute": "sortDataSelector",
4696
- "description": "The data selector of the column",
4697
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
4698
- },
4699
- {
4700
- "name": "nonSortable",
4701
- "attribute": "nonSortable",
4702
- "description": "Whether the column is sortable",
4703
- "type": "boolean"
4704
- },
4705
- {
4706
- "name": "nonEditable",
4707
- "attribute": "nonEditable",
4708
- "description": "Whether the column is editable",
4709
- "type": "boolean | Predicate<TData>"
4710
- },
4711
- {
4712
- "name": "sticky",
4713
- "attribute": "sticky",
4714
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4715
- "type": "DataGridColumnSticky | undefined"
4716
- }
4717
- ]
4718
- },
4719
- {
4720
- "name": "mo-data-grid-column-date-time-range",
4721
- "path": ".\\packages\\DataGrid\\dist\\columns\\date-time\\DataGridColumnDateTimeRange.d.ts",
4722
- "attributes": [
4723
- {
4724
- "name": "formatOptions",
4725
- "description": "Options to pass to Date.prototype.format()",
4726
- "type": "DateTimeFormatOptions | undefined"
4727
- },
4728
- {
4729
- "name": "pickerHidden",
4730
- "description": "Hides the date/time picker",
4731
- "type": "boolean"
4732
- },
4733
- {
4734
- "name": "width",
4735
- "description": "The width of the column",
4736
- "type": "string"
4737
- },
4738
- {
4739
- "name": "hidden",
4740
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
4741
- "type": "boolean"
4742
- },
4743
- {
4744
- "name": "heading",
4745
- "description": "The heading of the column",
4746
- "type": "string"
4747
- },
4748
- {
4749
- "name": "textAlign",
4750
- "description": "The text alignment of the column",
4751
- "type": "DataGridColumnAlignment"
4752
- },
4753
- {
4754
- "name": "description",
4755
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4756
- "type": "string | undefined"
4757
- },
4758
- {
4759
- "name": "dataSelector",
4760
- "description": "The data selector of the column",
4761
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
4762
- },
4763
- {
4764
- "name": "sortDataSelector",
4765
- "description": "The data selector of the column",
4766
- "type": "KeyPathOf<TData>"
4767
- },
4768
- {
4769
- "name": "nonSortable",
4770
- "description": "Whether the column is sortable",
4771
- "type": "boolean"
4772
- },
4773
- {
4774
- "name": "nonEditable",
4775
- "description": "Whether the column is editable",
4776
- "type": "boolean | Predicate<TData>"
4777
- },
4778
- {
4779
- "name": "sticky",
4780
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4781
- "type": "DataGridColumnSticky | undefined"
4782
- }
4783
- ],
4784
- "properties": [
4785
- {
4786
- "name": "defaultFormatOptions",
4787
- "type": "DateTimeFormatOptions | undefined"
4788
- },
4789
- {
4790
- "name": "fieldTag",
4791
- "type": "StaticValue"
4792
- },
4793
- {
4794
- "name": "formatOptions",
4795
- "attribute": "formatOptions",
4796
- "description": "Options to pass to Date.prototype.format()",
4797
- "type": "DateTimeFormatOptions | undefined"
4798
- },
4799
- {
4800
- "name": "pickerHidden",
4801
- "attribute": "pickerHidden",
4802
- "description": "Hides the date/time picker",
4803
- "type": "boolean"
4804
- },
4805
- {
4806
- "name": "dataGrid",
4807
- "type": "DataGrid<TData, any> | undefined"
4808
- },
4809
- {
4810
- "name": "column",
4811
- "type": "DataGridColumn<TData, TValue>"
4812
- },
4813
- {
4814
- "name": "width",
4815
- "attribute": "width",
4816
- "description": "The width of the column",
4817
- "type": "string"
4818
- },
4819
- {
4820
- "name": "hidden",
4821
- "attribute": "hidden",
4822
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
4823
- "type": "boolean"
4824
- },
4825
- {
4826
- "name": "heading",
4827
- "attribute": "heading",
4828
- "description": "The heading of the column",
4829
- "type": "string"
4830
- },
4831
- {
4832
- "name": "textAlign",
4833
- "attribute": "textAlign",
4834
- "description": "The text alignment of the column",
4835
- "type": "DataGridColumnAlignment"
4836
- },
4837
- {
4838
- "name": "description",
4839
- "attribute": "description",
4840
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4841
- "type": "string | undefined"
4842
- },
4843
- {
4844
- "name": "dataSelector",
4845
- "attribute": "dataSelector",
4846
- "description": "The data selector of the column",
4847
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
4848
- },
4849
- {
4850
- "name": "sortDataSelector",
4851
- "attribute": "sortDataSelector",
4852
- "description": "The data selector of the column",
4853
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
4854
- },
4855
- {
4856
- "name": "nonSortable",
4857
- "attribute": "nonSortable",
4858
- "description": "Whether the column is sortable",
4859
- "type": "boolean"
4860
- },
4861
- {
4862
- "name": "nonEditable",
4863
- "attribute": "nonEditable",
4864
- "description": "Whether the column is editable",
4865
- "type": "boolean | Predicate<TData>"
4866
- },
4867
- {
4868
- "name": "sticky",
4869
- "attribute": "sticky",
4870
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4871
- "type": "DataGridColumnSticky | undefined"
4872
- }
4873
- ]
4874
- },
4875
- {
4876
- "name": "mo-data-grid-column-currency",
4877
- "path": ".\\packages\\DataGrid\\dist\\columns\\number\\DataGridColumnCurrency.d.ts",
4878
- "attributes": [
4879
- {
4880
- "name": "currency",
4881
- "description": "The currency of the values.",
4882
- "type": "Currency | undefined"
4883
- },
4884
- {
4885
- "name": "currencyDataSelector",
4886
- "description": "The key path to the currency of the values.",
4887
- "type": "KeyPathOf<TData>"
4888
- },
4889
- {
4890
- "name": "width",
4891
- "description": "The width of the column",
4892
- "type": "string"
4893
- },
4894
- {
4895
- "name": "hidden",
4896
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
4897
- "type": "boolean"
4898
- },
4899
- {
4900
- "name": "heading",
4901
- "description": "The heading of the column",
4902
- "type": "string"
4903
- },
4904
- {
4905
- "name": "textAlign",
4906
- "description": "The text alignment of the column",
4907
- "type": "DataGridColumnAlignment"
4908
- },
4909
- {
4910
- "name": "description",
4911
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4912
- "type": "string | undefined"
4913
- },
4914
- {
4915
- "name": "dataSelector",
4916
- "description": "The data selector of the column",
4917
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
4918
- },
4919
- {
4920
- "name": "sortDataSelector",
4921
- "description": "The data selector of the column",
4922
- "type": "KeyPathOf<TData>"
4923
- },
4924
- {
4925
- "name": "nonSortable",
4926
- "description": "Whether the column is sortable",
4927
- "type": "boolean"
4928
- },
4929
- {
4930
- "name": "nonEditable",
4931
- "description": "Whether the column is editable",
4932
- "type": "boolean | Predicate<TData>"
4933
- },
4934
- {
4935
- "name": "sticky",
4936
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
4937
- "type": "DataGridColumnSticky | undefined"
4938
- }
4939
- ],
4940
- "properties": [
4941
- {
4942
- "name": "defaultCurrency",
4943
- "type": "Currency | undefined"
4944
- },
4945
- {
4946
- "name": "currency",
4947
- "attribute": "currency",
4948
- "description": "The currency of the values.",
4949
- "type": "Currency | undefined"
4950
- },
4951
- {
4952
- "name": "currencyDataSelector",
4953
- "attribute": "currencyDataSelector",
4954
- "description": "The key path to the currency of the values.",
4955
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
4956
- },
4957
- {
4958
- "name": "sumHeading",
4959
- "type": "string | undefined"
4960
- },
4961
- {
4962
- "name": "dataGrid",
4963
- "type": "DataGrid<TData, any> | undefined"
4964
- },
4965
- {
4966
- "name": "column",
4967
- "type": "DataGridColumn<TData, unknown>"
4968
- },
4969
- {
4970
- "name": "width",
4971
- "attribute": "width",
4972
- "description": "The width of the column",
4973
- "type": "string"
4974
- },
4975
- {
4976
- "name": "hidden",
4977
- "attribute": "hidden",
4978
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
4979
- "type": "boolean"
4980
- },
4981
- {
4982
- "name": "heading",
4983
- "attribute": "heading",
4984
- "description": "The heading of the column",
4985
- "type": "string"
4986
- },
4987
- {
4988
- "name": "textAlign",
4989
- "attribute": "textAlign",
4990
- "description": "The text alignment of the column",
4991
- "type": "DataGridColumnAlignment"
4992
- },
4993
- {
4994
- "name": "description",
4995
- "attribute": "description",
4996
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
4997
- "type": "string | undefined"
4998
- },
4999
- {
5000
- "name": "dataSelector",
5001
- "attribute": "dataSelector",
5002
- "description": "The data selector of the column",
5003
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
5004
- },
5005
- {
5006
- "name": "sortDataSelector",
5007
- "attribute": "sortDataSelector",
5008
- "description": "The data selector of the column",
5009
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
5010
- },
5011
- {
5012
- "name": "nonSortable",
5013
- "attribute": "nonSortable",
5014
- "description": "Whether the column is sortable",
5015
- "type": "boolean"
5016
- },
5017
- {
5018
- "name": "nonEditable",
5019
- "attribute": "nonEditable",
5020
- "description": "Whether the column is editable",
5021
- "type": "boolean | Predicate<TData>"
5022
- },
5023
- {
5024
- "name": "sticky",
5025
- "attribute": "sticky",
5026
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5027
- "type": "DataGridColumnSticky | undefined"
5028
- }
5029
- ]
5030
- },
5031
- {
5032
- "name": "mo-data-grid-column-number",
5033
- "path": ".\\packages\\DataGrid\\dist\\columns\\number\\DataGridColumnNumber.d.ts",
5034
- "attributes": [
5035
- {
5036
- "name": "width",
5037
- "description": "The width of the column",
5038
- "type": "string"
5039
- },
5040
- {
5041
- "name": "hidden",
5042
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
5043
- "type": "boolean"
5044
- },
5045
- {
5046
- "name": "heading",
5047
- "description": "The heading of the column",
5048
- "type": "string"
5049
- },
5050
- {
5051
- "name": "textAlign",
5052
- "description": "The text alignment of the column",
5053
- "type": "DataGridColumnAlignment"
5054
- },
5055
- {
5056
- "name": "description",
5057
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
5058
- "type": "string | undefined"
5059
- },
5060
- {
5061
- "name": "dataSelector",
5062
- "description": "The data selector of the column",
5063
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
5064
- },
5065
- {
5066
- "name": "sortDataSelector",
5067
- "description": "The data selector of the column",
5068
- "type": "KeyPathOf<TData>"
5069
- },
5070
- {
5071
- "name": "nonSortable",
5072
- "description": "Whether the column is sortable",
5073
- "type": "boolean"
5074
- },
5075
- {
5076
- "name": "nonEditable",
5077
- "description": "Whether the column is editable",
5078
- "type": "boolean | Predicate<TData>"
5079
- },
5080
- {
5081
- "name": "sticky",
5082
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5083
- "type": "DataGridColumnSticky | undefined"
5084
- }
5085
- ],
5086
- "properties": [
5087
- {
5088
- "name": "sumHeading",
5089
- "type": "string | undefined"
5090
- },
5091
- {
5092
- "name": "dataGrid",
5093
- "type": "DataGrid<TData, any> | undefined"
5094
- },
5095
- {
5096
- "name": "column",
5097
- "type": "DataGridColumn<TData, unknown>"
5098
- },
5099
- {
5100
- "name": "width",
5101
- "attribute": "width",
5102
- "description": "The width of the column",
5103
- "type": "string"
5104
- },
5105
- {
5106
- "name": "hidden",
5107
- "attribute": "hidden",
5108
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
5109
- "type": "boolean"
5110
- },
5111
- {
5112
- "name": "heading",
5113
- "attribute": "heading",
5114
- "description": "The heading of the column",
5115
- "type": "string"
5116
- },
5117
- {
5118
- "name": "textAlign",
5119
- "attribute": "textAlign",
5120
- "description": "The text alignment of the column",
5121
- "type": "DataGridColumnAlignment"
5122
- },
5123
- {
5124
- "name": "description",
5125
- "attribute": "description",
5126
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
5127
- "type": "string | undefined"
5128
- },
5129
- {
5130
- "name": "dataSelector",
5131
- "attribute": "dataSelector",
5132
- "description": "The data selector of the column",
5133
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
5134
- },
5135
- {
5136
- "name": "sortDataSelector",
5137
- "attribute": "sortDataSelector",
5138
- "description": "The data selector of the column",
5139
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
5140
- },
5141
- {
5142
- "name": "nonSortable",
5143
- "attribute": "nonSortable",
5144
- "description": "Whether the column is sortable",
5145
- "type": "boolean"
5146
- },
5147
- {
5148
- "name": "nonEditable",
5149
- "attribute": "nonEditable",
5150
- "description": "Whether the column is editable",
5151
- "type": "boolean | Predicate<TData>"
5152
- },
5153
- {
5154
- "name": "sticky",
5155
- "attribute": "sticky",
5156
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5157
- "type": "DataGridColumnSticky | undefined"
5158
- }
5159
- ]
5160
- },
5161
- {
5162
- "name": "mo-data-grid-column-percent",
5163
- "path": ".\\packages\\DataGrid\\dist\\columns\\number\\DataGridColumnPercent.d.ts",
5164
- "attributes": [
5165
- {
5166
- "name": "width",
5167
- "description": "The width of the column",
5168
- "type": "string"
5169
- },
5170
- {
5171
- "name": "hidden",
5172
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
5173
- "type": "boolean"
5174
- },
5175
- {
5176
- "name": "heading",
5177
- "description": "The heading of the column",
5178
- "type": "string"
5179
- },
5180
- {
5181
- "name": "textAlign",
5182
- "description": "The text alignment of the column",
5183
- "type": "DataGridColumnAlignment"
5184
- },
5185
- {
5186
- "name": "description",
5187
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
5188
- "type": "string | undefined"
5189
- },
5190
- {
5191
- "name": "dataSelector",
5192
- "description": "The data selector of the column",
5193
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
5194
- },
5195
- {
5196
- "name": "sortDataSelector",
5197
- "description": "The data selector of the column",
5198
- "type": "KeyPathOf<TData>"
5199
- },
5200
- {
5201
- "name": "nonSortable",
5202
- "description": "Whether the column is sortable",
5203
- "type": "boolean"
5204
- },
5205
- {
5206
- "name": "nonEditable",
5207
- "description": "Whether the column is editable",
5208
- "type": "boolean | Predicate<TData>"
5209
- },
5210
- {
5211
- "name": "sticky",
5212
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5213
- "type": "DataGridColumnSticky | undefined"
5214
- }
5215
- ],
5216
- "properties": [
5217
- {
5218
- "name": "sumHeading",
5219
- "type": "string | undefined"
5220
- },
5221
- {
5222
- "name": "dataGrid",
5223
- "type": "DataGrid<TData, any> | undefined"
5224
- },
5225
- {
5226
- "name": "column",
5227
- "type": "DataGridColumn<TData, unknown>"
5228
- },
5229
- {
5230
- "name": "width",
5231
- "attribute": "width",
5232
- "description": "The width of the column",
5233
- "type": "string"
5234
- },
5235
- {
5236
- "name": "hidden",
5237
- "attribute": "hidden",
5238
- "description": "Whether the column is hidden. The column can be made visible by the user in the settings panel if available.",
5239
- "type": "boolean"
5240
- },
5241
- {
5242
- "name": "heading",
5243
- "attribute": "heading",
5244
- "description": "The heading of the column",
5245
- "type": "string"
5246
- },
5247
- {
5248
- "name": "textAlign",
5249
- "attribute": "textAlign",
5250
- "description": "The text alignment of the column",
5251
- "type": "DataGridColumnAlignment"
5252
- },
5253
- {
5254
- "name": "description",
5255
- "attribute": "description",
5256
- "description": "The description of the column. It will be displayed as a tooltip on the heading.",
5257
- "type": "string | undefined"
5258
- },
5259
- {
5260
- "name": "dataSelector",
5261
- "attribute": "dataSelector",
5262
- "description": "The data selector of the column",
5263
- "type": "object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never"
5264
- },
5265
- {
5266
- "name": "sortDataSelector",
5267
- "attribute": "sortDataSelector",
5268
- "description": "The data selector of the column",
5269
- "type": "(object extends TData ? string : TData extends readonly any[] ? Extract<keyof TData, `${number}`> | SubKeyPathOf<TData, Extract<keyof TData, `${number}`>, 1> : TData extends object ? Extract<...> | SubKeyPathOf<...> : never) | undefined"
5270
- },
5271
- {
5272
- "name": "nonSortable",
5273
- "attribute": "nonSortable",
5274
- "description": "Whether the column is sortable",
5275
- "type": "boolean"
5276
- },
5277
- {
5278
- "name": "nonEditable",
5279
- "attribute": "nonEditable",
5280
- "description": "Whether the column is editable",
5281
- "type": "boolean | Predicate<TData>"
5282
- },
5283
- {
5284
- "name": "sticky",
5285
- "attribute": "sticky",
5286
- "description": "The sticky position of the column, either 'start', 'end', or 'both'",
5287
- "type": "DataGridColumnSticky | undefined"
5288
- }
5289
- ]
5290
- },
5291
- {
5292
- "name": "mo-data-grid-footer-sum",
5293
- "path": ".\\packages\\DataGrid\\dist\\columns\\number\\DataGridFooterSum.d.ts",
5294
- "attributes": [
5295
- {
5296
- "name": "heading",
5297
- "type": "string"
5298
- }
5299
- ],
5300
- "properties": [
5301
- {
5302
- "name": "heading",
5303
- "attribute": "heading",
5304
- "type": "string"
5305
- }
5306
- ],
5307
- "slots": [
5308
- {
5309
- "name": "",
5310
- "description": "Sum of values"
5311
- }
5312
- ]
5313
- },
5314
- {
5315
- "name": "mo-data-grid-default-row",
5316
- "path": ".\\packages\\DataGrid\\dist\\rows\\DataGridDefaultRow.d.ts",
5317
- "properties": [
5318
- {
5319
- "name": "cells",
5320
- "type": "DataGridCell<any, TData, TDetailsElement>[]"
5321
- },
5322
- {
5323
- "name": "subRows",
5324
- "type": "DataGridRow<TData, TDetailsElement>[]"
5325
- },
5326
- {
5327
- "name": "content",
5328
- "type": "HTMLElement"
5329
- },
5330
- {
5331
- "name": "isIntersecting",
5332
- "type": "boolean"
5333
- },
5334
- {
5335
- "name": "dataRecord",
5336
- "type": "DataRecord<TData>"
5337
- },
5338
- {
5339
- "name": "dataGrid",
5340
- "type": "DataGrid<TData, any>"
5341
- },
5342
- {
5343
- "name": "data",
5344
- "type": "TData"
5345
- },
5346
- {
5347
- "name": "index",
5348
- "type": "number"
5349
- },
5350
- {
5351
- "name": "level",
5352
- "type": "number"
5353
- },
5354
- {
5355
- "name": "selected",
5356
- "type": "boolean"
5357
- },
5358
- {
5359
- "name": "detailsOpen",
5360
- "type": "boolean"
5361
- },
5362
- {
5363
- "name": "detailsElement",
5364
- "type": "TDetailsElement | undefined"
5365
- }
5366
- ]
5367
- },
5368
- {
5369
- "name": "mo-data-grid-row",
5370
- "path": ".\\packages\\DataGrid\\dist\\rows\\DataGridRow.d.ts",
5371
- "properties": [
5372
- {
5373
- "name": "cells",
5374
- "type": "DataGridCell<any, TData, TDetailsElement>[]"
5375
- },
5376
- {
5377
- "name": "subRows",
5378
- "type": "DataGridRow<TData, TDetailsElement>[]"
5379
- },
5380
- {
5381
- "name": "content",
5382
- "type": "HTMLElement"
5383
- },
5384
- {
5385
- "name": "isIntersecting",
5386
- "type": "boolean"
5387
- },
5388
- {
5389
- "name": "dataRecord",
5390
- "type": "DataRecord<TData>"
5391
- },
5392
- {
5393
- "name": "dataGrid",
5394
- "type": "DataGrid<TData, any>"
5395
- },
5396
- {
5397
- "name": "data",
5398
- "type": "TData"
5399
- },
5400
- {
5401
- "name": "index",
5402
- "type": "number"
5403
- },
5404
- {
5405
- "name": "level",
5406
- "type": "number"
5407
- },
5408
- {
5409
- "name": "selected",
5410
- "type": "boolean"
5411
- },
5412
- {
5413
- "name": "detailsOpen",
5414
- "type": "boolean"
5415
- },
5416
- {
5417
- "name": "detailsElement",
5418
- "type": "TDetailsElement | undefined"
5419
- }
5420
- ]
5421
- },
5422
- {
5423
- "name": "mo-data-grid-default-row",
5424
- "path": ".\\packages\\DataGrid\\rows\\DataGridDefaultRow.ts",
5425
- "attributes": [
5426
- {
5427
- "name": "isIntersecting",
5428
- "type": "boolean",
5429
- "default": "false"
5430
- },
5431
- {
5432
- "name": "dataRecord",
5433
- "type": "DataRecord<TData>"
5434
- }
5435
- ],
5436
- "properties": [
5437
- {
5438
- "name": "cells",
5439
- "type": "DataGridCell<any, TData, TDetailsElement>[]"
5440
- },
5441
- {
5442
- "name": "subRows",
5443
- "type": "DataGridRow<TData, TDetailsElement>[]"
5444
- },
5445
- {
5446
- "name": "content",
5447
- "type": "HTMLElement"
5448
- },
5449
- {
5450
- "name": "isIntersecting",
5451
- "attribute": "isIntersecting",
5452
- "type": "boolean",
5453
- "default": "false"
5454
- },
5455
- {
5456
- "name": "dataRecord",
5457
- "attribute": "dataRecord",
5458
- "type": "DataRecord<TData>"
5459
- },
5460
- {
5461
- "name": "dataGrid",
5462
- "type": "DataGrid<TData, any>"
5463
- },
5464
- {
5465
- "name": "data",
5466
- "type": "TData"
5467
- },
5468
- {
5469
- "name": "index",
5470
- "type": "number"
5471
- },
5472
- {
5473
- "name": "level",
5474
- "type": "number"
5475
- },
5476
- {
5477
- "name": "selected",
5478
- "type": "boolean"
5479
- },
5480
- {
5481
- "name": "detailsOpen",
5482
- "type": "boolean"
5483
- },
5484
- {
5485
- "name": "detailsElement",
5486
- "type": "TDetailsElement | undefined"
5487
- }
5488
- ],
5489
- "events": [
5490
- {
5491
- "name": "contextmenu",
5492
- "type": "CustomEvent"
5493
- }
5494
- ]
5495
- },
5496
- {
5497
- "name": "mo-data-grid-row",
5498
- "path": ".\\packages\\DataGrid\\rows\\DataGridRow.ts",
5499
- "attributes": [
5500
- {
5501
- "name": "isIntersecting",
5502
- "type": "boolean",
5503
- "default": "false"
5504
- },
5505
- {
5506
- "name": "dataRecord",
5507
- "type": "DataRecord<TData>"
5508
- }
5509
- ],
5510
- "properties": [
5511
- {
5512
- "name": "cells",
5513
- "type": "DataGridCell<any, TData, TDetailsElement>[]"
5514
- },
5515
- {
5516
- "name": "subRows",
5517
- "type": "DataGridRow<TData, TDetailsElement>[]"
5518
- },
5519
- {
5520
- "name": "content",
5521
- "type": "HTMLElement"
5522
- },
5523
- {
5524
- "name": "isIntersecting",
5525
- "attribute": "isIntersecting",
5526
- "type": "boolean",
5527
- "default": "false"
5528
- },
5529
- {
5530
- "name": "dataRecord",
5531
- "attribute": "dataRecord",
5532
- "type": "DataRecord<TData>"
5533
- },
5534
- {
5535
- "name": "dataGrid",
5536
- "type": "DataGrid<TData, any>"
5537
- },
5538
- {
5539
- "name": "data",
5540
- "type": "TData"
5541
- },
5542
- {
5543
- "name": "index",
5544
- "type": "number"
5545
- },
5546
- {
5547
- "name": "level",
5548
- "type": "number"
5549
- },
5550
- {
5551
- "name": "selected",
5552
- "type": "boolean"
5553
- },
5554
- {
5555
- "name": "detailsOpen",
5556
- "type": "boolean"
5557
- },
5558
- {
5559
- "name": "detailsElement",
5560
- "type": "TDetailsElement | undefined"
5561
- }
5562
- ],
5563
- "events": [
5564
- {
5565
- "name": "contextmenu",
5566
- "type": "CustomEvent"
5567
- }
5568
- ]
5569
917
  }
5570
918
  ]
5571
919
  }