@operato/data-grist 0.2.49 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +59 -0
- package/custom-elements.json +1548 -1490
- package/demo/index.html +3 -2
- package/dist/src/data-card/data-card-field.js +11 -2
- package/dist/src/data-card/data-card-field.js.map +1 -1
- package/dist/src/data-card/data-card-gutter-menu.d.ts +1 -1
- package/dist/src/data-card/data-card-gutter-menu.js +36 -9
- package/dist/src/data-card/data-card-gutter-menu.js.map +1 -1
- package/dist/src/data-card/data-card-gutter.d.ts +1 -1
- package/dist/src/data-card/data-card-gutter.js +3 -2
- package/dist/src/data-card/data-card-gutter.js.map +1 -1
- package/dist/src/data-card/record-card.d.ts +3 -0
- package/dist/src/data-card/record-card.js +14 -14
- package/dist/src/data-card/record-card.js.map +1 -1
- package/dist/src/data-grid/data-grid-header.d.ts +2 -2
- package/dist/src/data-grid/data-grid-header.js +4 -4
- package/dist/src/data-grid/data-grid-header.js.map +1 -1
- package/dist/src/data-grid/data-grid.js +0 -1
- package/dist/src/data-grid/data-grid.js.map +1 -1
- package/dist/src/filters/filter-select.d.ts +1 -1
- package/dist/src/filters/filter-select.js +1 -1
- package/dist/src/filters/filter-select.js.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +1 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/search-form/ox-select-field.d.ts +3 -3
- package/dist/src/search-form/ox-select-field.js +3 -3
- package/dist/src/search-form/ox-select-field.js.map +1 -1
- package/dist/src/types.d.ts +1 -1
- package/dist/src/types.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -8
- package/src/data-card/data-card-field.ts +11 -2
- package/src/data-card/data-card-gutter-menu.ts +35 -10
- package/src/data-card/data-card-gutter.ts +5 -3
- package/src/data-card/record-card.ts +14 -14
- package/src/data-grid/data-grid-header.ts +7 -6
- package/src/data-grid/data-grid.ts +0 -1
- package/src/filters/filter-select.ts +3 -2
- package/src/index.ts +2 -0
- package/src/search-form/ox-select-field.ts +6 -5
- package/src/types.ts +1 -1
- package/tsconfig.json +1 -0
- package/yarn-error.log +0 -17496
package/custom-elements.json
CHANGED
|
@@ -946,6 +946,14 @@
|
|
|
946
946
|
"path": "src/index.ts",
|
|
947
947
|
"declarations": [],
|
|
948
948
|
"exports": [
|
|
949
|
+
{
|
|
950
|
+
"kind": "js",
|
|
951
|
+
"name": "*",
|
|
952
|
+
"declaration": {
|
|
953
|
+
"name": "*",
|
|
954
|
+
"package": "./types"
|
|
955
|
+
}
|
|
956
|
+
},
|
|
949
957
|
{
|
|
950
958
|
"kind": "js",
|
|
951
959
|
"name": "*",
|
|
@@ -1099,1198 +1107,1266 @@
|
|
|
1099
1107
|
},
|
|
1100
1108
|
{
|
|
1101
1109
|
"kind": "javascript-module",
|
|
1102
|
-
"path": "src/
|
|
1110
|
+
"path": "src/configure/column-builder.ts",
|
|
1103
1111
|
"declarations": [
|
|
1104
1112
|
{
|
|
1105
|
-
"kind": "
|
|
1106
|
-
"
|
|
1107
|
-
"
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
"kind": "field",
|
|
1111
|
-
"name": "align",
|
|
1112
|
-
"type": {
|
|
1113
|
-
"text": "string | undefined"
|
|
1114
|
-
},
|
|
1115
|
-
"attribute": "align"
|
|
1116
|
-
},
|
|
1117
|
-
{
|
|
1118
|
-
"kind": "field",
|
|
1119
|
-
"name": "record",
|
|
1120
|
-
"type": {
|
|
1121
|
-
"text": "GristRecord"
|
|
1122
|
-
},
|
|
1123
|
-
"default": "ZERO_RECORD",
|
|
1124
|
-
"attribute": "record"
|
|
1125
|
-
},
|
|
1126
|
-
{
|
|
1127
|
-
"kind": "field",
|
|
1128
|
-
"name": "column",
|
|
1129
|
-
"type": {
|
|
1130
|
-
"text": "ColumnConfig"
|
|
1131
|
-
},
|
|
1132
|
-
"default": "ZERO_COLUMN",
|
|
1133
|
-
"attribute": "column"
|
|
1134
|
-
},
|
|
1135
|
-
{
|
|
1136
|
-
"kind": "field",
|
|
1137
|
-
"name": "rowIndex",
|
|
1138
|
-
"type": {
|
|
1139
|
-
"text": "number"
|
|
1140
|
-
},
|
|
1141
|
-
"default": "-1",
|
|
1142
|
-
"attribute": "rowIndex"
|
|
1143
|
-
},
|
|
1144
|
-
{
|
|
1145
|
-
"kind": "field",
|
|
1146
|
-
"name": "value",
|
|
1147
|
-
"type": {
|
|
1148
|
-
"text": "object | undefined"
|
|
1149
|
-
},
|
|
1150
|
-
"attribute": "value"
|
|
1113
|
+
"kind": "function",
|
|
1114
|
+
"name": "buildColumn",
|
|
1115
|
+
"return": {
|
|
1116
|
+
"type": {
|
|
1117
|
+
"text": "ColumnConfig"
|
|
1151
1118
|
}
|
|
1152
|
-
|
|
1153
|
-
"
|
|
1154
|
-
{
|
|
1155
|
-
"name": "align",
|
|
1156
|
-
"type": {
|
|
1157
|
-
"text": "string | undefined"
|
|
1158
|
-
},
|
|
1159
|
-
"fieldName": "align"
|
|
1160
|
-
},
|
|
1161
|
-
{
|
|
1162
|
-
"name": "record",
|
|
1163
|
-
"type": {
|
|
1164
|
-
"text": "GristRecord"
|
|
1165
|
-
},
|
|
1166
|
-
"default": "ZERO_RECORD",
|
|
1167
|
-
"resolveInitializer": {
|
|
1168
|
-
"module": "/src/configure/zero-config"
|
|
1169
|
-
},
|
|
1170
|
-
"fieldName": "record"
|
|
1171
|
-
},
|
|
1119
|
+
},
|
|
1120
|
+
"parameters": [
|
|
1172
1121
|
{
|
|
1173
1122
|
"name": "column",
|
|
1174
1123
|
"type": {
|
|
1175
|
-
"text": "
|
|
1176
|
-
}
|
|
1177
|
-
"default": "ZERO_COLUMN",
|
|
1178
|
-
"resolveInitializer": {
|
|
1179
|
-
"module": "/src/configure/zero-config"
|
|
1180
|
-
},
|
|
1181
|
-
"fieldName": "column"
|
|
1182
|
-
},
|
|
1183
|
-
{
|
|
1184
|
-
"name": "rowIndex",
|
|
1185
|
-
"type": {
|
|
1186
|
-
"text": "number"
|
|
1187
|
-
},
|
|
1188
|
-
"default": "-1",
|
|
1189
|
-
"fieldName": "rowIndex"
|
|
1190
|
-
},
|
|
1191
|
-
{
|
|
1192
|
-
"name": "value",
|
|
1193
|
-
"type": {
|
|
1194
|
-
"text": "object | undefined"
|
|
1195
|
-
},
|
|
1196
|
-
"fieldName": "value"
|
|
1124
|
+
"text": "any"
|
|
1125
|
+
}
|
|
1197
1126
|
}
|
|
1198
|
-
]
|
|
1199
|
-
"superclass": {
|
|
1200
|
-
"name": "LitElement",
|
|
1201
|
-
"package": "lit"
|
|
1202
|
-
},
|
|
1203
|
-
"tagName": "ox-card-field",
|
|
1204
|
-
"customElement": true
|
|
1127
|
+
]
|
|
1205
1128
|
}
|
|
1206
1129
|
],
|
|
1207
1130
|
"exports": [
|
|
1208
1131
|
{
|
|
1209
1132
|
"kind": "js",
|
|
1210
|
-
"name": "
|
|
1211
|
-
"declaration": {
|
|
1212
|
-
"name": "DataCardField",
|
|
1213
|
-
"module": "src/data-card/data-card-field.ts"
|
|
1214
|
-
}
|
|
1215
|
-
},
|
|
1216
|
-
{
|
|
1217
|
-
"kind": "custom-element-definition",
|
|
1218
|
-
"name": "ox-card-field",
|
|
1133
|
+
"name": "buildColumn",
|
|
1219
1134
|
"declaration": {
|
|
1220
|
-
"name": "
|
|
1221
|
-
"module": "src/
|
|
1135
|
+
"name": "buildColumn",
|
|
1136
|
+
"module": "src/configure/column-builder.ts"
|
|
1222
1137
|
}
|
|
1223
1138
|
}
|
|
1224
1139
|
]
|
|
1225
1140
|
},
|
|
1226
1141
|
{
|
|
1227
1142
|
"kind": "javascript-module",
|
|
1228
|
-
"path": "src/
|
|
1143
|
+
"path": "src/configure/config-builder.ts",
|
|
1229
1144
|
"declarations": [
|
|
1230
1145
|
{
|
|
1231
|
-
"kind": "
|
|
1232
|
-
"
|
|
1233
|
-
"
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
"text": "ColumnConfig[]"
|
|
1240
|
-
},
|
|
1241
|
-
"attribute": "gutters"
|
|
1242
|
-
},
|
|
1243
|
-
{
|
|
1244
|
-
"kind": "field",
|
|
1245
|
-
"name": "rowIndex",
|
|
1246
|
-
"type": {
|
|
1247
|
-
"text": "number"
|
|
1248
|
-
},
|
|
1249
|
-
"attribute": "rowIndex"
|
|
1250
|
-
},
|
|
1251
|
-
{
|
|
1252
|
-
"kind": "field",
|
|
1253
|
-
"name": "record",
|
|
1254
|
-
"type": {
|
|
1255
|
-
"text": "GristRecord"
|
|
1256
|
-
},
|
|
1257
|
-
"attribute": "record"
|
|
1258
|
-
},
|
|
1146
|
+
"kind": "function",
|
|
1147
|
+
"name": "buildConfig",
|
|
1148
|
+
"return": {
|
|
1149
|
+
"type": {
|
|
1150
|
+
"text": "GristConfig"
|
|
1151
|
+
}
|
|
1152
|
+
},
|
|
1153
|
+
"parameters": [
|
|
1259
1154
|
{
|
|
1260
|
-
"
|
|
1261
|
-
"name": "icon",
|
|
1155
|
+
"name": "config",
|
|
1262
1156
|
"type": {
|
|
1263
|
-
"text": "
|
|
1157
|
+
"text": "any"
|
|
1264
1158
|
}
|
|
1265
|
-
},
|
|
1266
|
-
{
|
|
1267
|
-
"kind": "method",
|
|
1268
|
-
"name": "menuRender"
|
|
1269
|
-
},
|
|
1270
|
-
{
|
|
1271
|
-
"kind": "method",
|
|
1272
|
-
"name": "open"
|
|
1273
1159
|
}
|
|
1274
|
-
]
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1160
|
+
]
|
|
1161
|
+
}
|
|
1162
|
+
],
|
|
1163
|
+
"exports": [
|
|
1164
|
+
{
|
|
1165
|
+
"kind": "js",
|
|
1166
|
+
"name": "buildConfig",
|
|
1167
|
+
"declaration": {
|
|
1168
|
+
"name": "buildConfig",
|
|
1169
|
+
"module": "src/configure/config-builder.ts"
|
|
1170
|
+
}
|
|
1171
|
+
}
|
|
1172
|
+
]
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
"kind": "javascript-module",
|
|
1176
|
+
"path": "src/configure/imex-option-builder.ts",
|
|
1177
|
+
"declarations": [
|
|
1178
|
+
{
|
|
1179
|
+
"kind": "function",
|
|
1180
|
+
"name": "buildImexOptions",
|
|
1181
|
+
"return": {
|
|
1182
|
+
"type": {
|
|
1183
|
+
"text": "ImexConfig | undefined"
|
|
1184
|
+
}
|
|
1185
|
+
},
|
|
1186
|
+
"parameters": [
|
|
1290
1187
|
{
|
|
1291
|
-
"name": "
|
|
1188
|
+
"name": "imex",
|
|
1292
1189
|
"type": {
|
|
1293
|
-
"text": "
|
|
1294
|
-
}
|
|
1295
|
-
"fieldName": "record"
|
|
1190
|
+
"text": "any"
|
|
1191
|
+
}
|
|
1296
1192
|
}
|
|
1297
|
-
]
|
|
1298
|
-
"superclass": {
|
|
1299
|
-
"name": "LitElement",
|
|
1300
|
-
"package": "lit"
|
|
1301
|
-
},
|
|
1302
|
-
"tagName": "ox-card-gutter-menu",
|
|
1303
|
-
"customElement": true
|
|
1193
|
+
]
|
|
1304
1194
|
}
|
|
1305
1195
|
],
|
|
1306
1196
|
"exports": [
|
|
1307
1197
|
{
|
|
1308
|
-
"kind": "
|
|
1309
|
-
"name": "
|
|
1198
|
+
"kind": "js",
|
|
1199
|
+
"name": "buildImexOptions",
|
|
1310
1200
|
"declaration": {
|
|
1311
|
-
"name": "
|
|
1312
|
-
"module": "src/
|
|
1201
|
+
"name": "buildImexOptions",
|
|
1202
|
+
"module": "src/configure/imex-option-builder.ts"
|
|
1313
1203
|
}
|
|
1314
1204
|
}
|
|
1315
1205
|
]
|
|
1316
1206
|
},
|
|
1317
1207
|
{
|
|
1318
1208
|
"kind": "javascript-module",
|
|
1319
|
-
"path": "src/
|
|
1209
|
+
"path": "src/configure/list-option-builder.ts",
|
|
1320
1210
|
"declarations": [
|
|
1321
1211
|
{
|
|
1322
|
-
"kind": "
|
|
1323
|
-
"
|
|
1324
|
-
"
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
"kind": "field",
|
|
1328
|
-
"name": "align",
|
|
1329
|
-
"type": {
|
|
1330
|
-
"text": "string | undefined"
|
|
1331
|
-
},
|
|
1332
|
-
"attribute": "align"
|
|
1333
|
-
},
|
|
1334
|
-
{
|
|
1335
|
-
"kind": "field",
|
|
1336
|
-
"name": "record",
|
|
1337
|
-
"type": {
|
|
1338
|
-
"text": "GristRecord"
|
|
1339
|
-
},
|
|
1340
|
-
"default": "ZERO_RECORD",
|
|
1341
|
-
"attribute": "record"
|
|
1342
|
-
},
|
|
1343
|
-
{
|
|
1344
|
-
"kind": "field",
|
|
1345
|
-
"name": "column",
|
|
1346
|
-
"type": {
|
|
1347
|
-
"text": "ColumnConfig"
|
|
1348
|
-
},
|
|
1349
|
-
"default": "ZERO_COLUMN",
|
|
1350
|
-
"attribute": "column"
|
|
1351
|
-
},
|
|
1352
|
-
{
|
|
1353
|
-
"kind": "field",
|
|
1354
|
-
"name": "rowIndex",
|
|
1355
|
-
"type": {
|
|
1356
|
-
"text": "number"
|
|
1357
|
-
},
|
|
1358
|
-
"default": "-1",
|
|
1359
|
-
"attribute": "rowIndex"
|
|
1360
|
-
},
|
|
1361
|
-
{
|
|
1362
|
-
"kind": "field",
|
|
1363
|
-
"name": "value",
|
|
1364
|
-
"type": {
|
|
1365
|
-
"text": "object | undefined"
|
|
1366
|
-
},
|
|
1367
|
-
"attribute": "value"
|
|
1368
|
-
},
|
|
1369
|
-
{
|
|
1370
|
-
"kind": "field",
|
|
1371
|
-
"name": "isEditing"
|
|
1212
|
+
"kind": "function",
|
|
1213
|
+
"name": "buildListOptions",
|
|
1214
|
+
"return": {
|
|
1215
|
+
"type": {
|
|
1216
|
+
"text": "ListConfig"
|
|
1372
1217
|
}
|
|
1373
|
-
|
|
1374
|
-
"
|
|
1375
|
-
{
|
|
1376
|
-
"name": "align",
|
|
1377
|
-
"type": {
|
|
1378
|
-
"text": "string | undefined"
|
|
1379
|
-
},
|
|
1380
|
-
"fieldName": "align"
|
|
1381
|
-
},
|
|
1382
|
-
{
|
|
1383
|
-
"name": "record",
|
|
1384
|
-
"type": {
|
|
1385
|
-
"text": "GristRecord"
|
|
1386
|
-
},
|
|
1387
|
-
"default": "ZERO_RECORD",
|
|
1388
|
-
"resolveInitializer": {
|
|
1389
|
-
"module": "/src/configure/zero-config"
|
|
1390
|
-
},
|
|
1391
|
-
"fieldName": "record"
|
|
1392
|
-
},
|
|
1393
|
-
{
|
|
1394
|
-
"name": "column",
|
|
1395
|
-
"type": {
|
|
1396
|
-
"text": "ColumnConfig"
|
|
1397
|
-
},
|
|
1398
|
-
"default": "ZERO_COLUMN",
|
|
1399
|
-
"resolveInitializer": {
|
|
1400
|
-
"module": "/src/configure/zero-config"
|
|
1401
|
-
},
|
|
1402
|
-
"fieldName": "column"
|
|
1403
|
-
},
|
|
1404
|
-
{
|
|
1405
|
-
"name": "rowIndex",
|
|
1406
|
-
"type": {
|
|
1407
|
-
"text": "number"
|
|
1408
|
-
},
|
|
1409
|
-
"default": "-1",
|
|
1410
|
-
"fieldName": "rowIndex"
|
|
1411
|
-
},
|
|
1218
|
+
},
|
|
1219
|
+
"parameters": [
|
|
1412
1220
|
{
|
|
1413
|
-
"name": "
|
|
1221
|
+
"name": "list",
|
|
1414
1222
|
"type": {
|
|
1415
|
-
"text": "
|
|
1416
|
-
}
|
|
1417
|
-
"fieldName": "value"
|
|
1223
|
+
"text": "ListConfig | undefined"
|
|
1224
|
+
}
|
|
1418
1225
|
}
|
|
1419
|
-
]
|
|
1420
|
-
"superclass": {
|
|
1421
|
-
"name": "LitElement",
|
|
1422
|
-
"package": "lit"
|
|
1423
|
-
},
|
|
1424
|
-
"tagName": "ox-card-gutter",
|
|
1425
|
-
"customElement": true
|
|
1226
|
+
]
|
|
1426
1227
|
}
|
|
1427
1228
|
],
|
|
1428
1229
|
"exports": [
|
|
1429
1230
|
{
|
|
1430
1231
|
"kind": "js",
|
|
1431
|
-
"name": "
|
|
1232
|
+
"name": "buildListOptions",
|
|
1432
1233
|
"declaration": {
|
|
1433
|
-
"name": "
|
|
1434
|
-
"module": "src/
|
|
1234
|
+
"name": "buildListOptions",
|
|
1235
|
+
"module": "src/configure/list-option-builder.ts"
|
|
1435
1236
|
}
|
|
1436
|
-
}
|
|
1237
|
+
}
|
|
1238
|
+
]
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"kind": "javascript-module",
|
|
1242
|
+
"path": "src/configure/rows-option-builder.ts",
|
|
1243
|
+
"declarations": [
|
|
1437
1244
|
{
|
|
1438
|
-
"kind": "
|
|
1439
|
-
"name": "
|
|
1245
|
+
"kind": "function",
|
|
1246
|
+
"name": "buildRowsOptions",
|
|
1247
|
+
"return": {
|
|
1248
|
+
"type": {
|
|
1249
|
+
"text": "RowsConfig"
|
|
1250
|
+
}
|
|
1251
|
+
},
|
|
1252
|
+
"parameters": [
|
|
1253
|
+
{
|
|
1254
|
+
"name": "rows",
|
|
1255
|
+
"type": {
|
|
1256
|
+
"text": "any"
|
|
1257
|
+
}
|
|
1258
|
+
}
|
|
1259
|
+
]
|
|
1260
|
+
}
|
|
1261
|
+
],
|
|
1262
|
+
"exports": [
|
|
1263
|
+
{
|
|
1264
|
+
"kind": "js",
|
|
1265
|
+
"name": "buildRowsOptions",
|
|
1440
1266
|
"declaration": {
|
|
1441
|
-
"name": "
|
|
1442
|
-
"module": "src/
|
|
1267
|
+
"name": "buildRowsOptions",
|
|
1268
|
+
"module": "src/configure/rows-option-builder.ts"
|
|
1443
1269
|
}
|
|
1444
1270
|
}
|
|
1445
1271
|
]
|
|
1446
1272
|
},
|
|
1447
1273
|
{
|
|
1448
1274
|
"kind": "javascript-module",
|
|
1449
|
-
"path": "src/
|
|
1275
|
+
"path": "src/configure/zero-config.ts",
|
|
1450
1276
|
"declarations": [
|
|
1451
1277
|
{
|
|
1452
|
-
"kind": "
|
|
1453
|
-
"
|
|
1454
|
-
"
|
|
1455
|
-
"members": [
|
|
1456
|
-
{
|
|
1457
|
-
"kind": "field",
|
|
1458
|
-
"name": "config",
|
|
1459
|
-
"type": {
|
|
1460
|
-
"text": "GristConfig"
|
|
1461
|
-
},
|
|
1462
|
-
"default": "ZERO_CONFIG",
|
|
1463
|
-
"attribute": "config"
|
|
1464
|
-
},
|
|
1465
|
-
{
|
|
1466
|
-
"kind": "field",
|
|
1467
|
-
"name": "data",
|
|
1468
|
-
"type": {
|
|
1469
|
-
"text": "GristData"
|
|
1470
|
-
},
|
|
1471
|
-
"default": "ZERO_DATA",
|
|
1472
|
-
"attribute": "data"
|
|
1473
|
-
},
|
|
1474
|
-
{
|
|
1475
|
-
"kind": "field",
|
|
1476
|
-
"name": "isTop",
|
|
1477
|
-
"type": {
|
|
1478
|
-
"text": "boolean"
|
|
1479
|
-
},
|
|
1480
|
-
"default": "false",
|
|
1481
|
-
"attribute": "isTop"
|
|
1482
|
-
},
|
|
1278
|
+
"kind": "function",
|
|
1279
|
+
"name": "ZERO_CLASSIFIER",
|
|
1280
|
+
"parameters": [
|
|
1483
1281
|
{
|
|
1484
|
-
"
|
|
1485
|
-
"name": "_records",
|
|
1486
|
-
"type": {
|
|
1487
|
-
"text": "GristRecord[]"
|
|
1488
|
-
},
|
|
1489
|
-
"privacy": "private",
|
|
1490
|
-
"default": "[]",
|
|
1491
|
-
"attribute": "_records"
|
|
1282
|
+
"name": "record"
|
|
1492
1283
|
},
|
|
1493
1284
|
{
|
|
1494
|
-
"
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1285
|
+
"name": "rowIndex"
|
|
1286
|
+
}
|
|
1287
|
+
]
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
"kind": "function",
|
|
1291
|
+
"name": "ZERO_FIELD_RENDERER",
|
|
1292
|
+
"parameters": [
|
|
1502
1293
|
{
|
|
1503
|
-
"
|
|
1504
|
-
"name": "_limit",
|
|
1505
|
-
"type": {
|
|
1506
|
-
"text": "number"
|
|
1507
|
-
},
|
|
1508
|
-
"privacy": "private",
|
|
1509
|
-
"default": "20"
|
|
1294
|
+
"name": "value"
|
|
1510
1295
|
},
|
|
1511
1296
|
{
|
|
1512
|
-
"
|
|
1513
|
-
"name": "_page",
|
|
1514
|
-
"type": {
|
|
1515
|
-
"text": "number"
|
|
1516
|
-
},
|
|
1517
|
-
"privacy": "private",
|
|
1518
|
-
"default": "1"
|
|
1297
|
+
"name": "column"
|
|
1519
1298
|
},
|
|
1520
1299
|
{
|
|
1521
|
-
"
|
|
1522
|
-
"name": "onRecordChanged",
|
|
1523
|
-
"parameters": [
|
|
1524
|
-
{
|
|
1525
|
-
"name": "recordData",
|
|
1526
|
-
"type": {
|
|
1527
|
-
"text": "GristRecord"
|
|
1528
|
-
}
|
|
1529
|
-
},
|
|
1530
|
-
{
|
|
1531
|
-
"name": "row",
|
|
1532
|
-
"type": {
|
|
1533
|
-
"text": "number"
|
|
1534
|
-
}
|
|
1535
|
-
},
|
|
1536
|
-
{
|
|
1537
|
-
"name": "column",
|
|
1538
|
-
"type": {
|
|
1539
|
-
"text": "ColumnConfig | null"
|
|
1540
|
-
}
|
|
1541
|
-
}
|
|
1542
|
-
]
|
|
1300
|
+
"name": "record"
|
|
1543
1301
|
},
|
|
1544
1302
|
{
|
|
1545
|
-
"
|
|
1546
|
-
"name": "gotoTop",
|
|
1547
|
-
"parameters": [
|
|
1548
|
-
{
|
|
1549
|
-
"name": "e",
|
|
1550
|
-
"type": {
|
|
1551
|
-
"text": "Event"
|
|
1552
|
-
}
|
|
1553
|
-
}
|
|
1554
|
-
]
|
|
1303
|
+
"name": "rowIndex"
|
|
1555
1304
|
},
|
|
1556
1305
|
{
|
|
1557
|
-
"
|
|
1558
|
-
"name": "pullToRefreshTarget"
|
|
1306
|
+
"name": "owner"
|
|
1559
1307
|
}
|
|
1560
|
-
]
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
}
|
|
1573
|
-
}
|
|
1574
|
-
],
|
|
1575
|
-
"attributes": [
|
|
1576
|
-
{
|
|
1577
|
-
"name": "config",
|
|
1578
|
-
"type": {
|
|
1579
|
-
"text": "GristConfig"
|
|
1580
|
-
},
|
|
1581
|
-
"default": "ZERO_CONFIG",
|
|
1582
|
-
"resolveInitializer": {
|
|
1583
|
-
"module": "/src/configure/zero-config"
|
|
1584
|
-
},
|
|
1585
|
-
"fieldName": "config"
|
|
1586
|
-
},
|
|
1587
|
-
{
|
|
1588
|
-
"name": "data",
|
|
1589
|
-
"type": {
|
|
1590
|
-
"text": "GristData"
|
|
1591
|
-
},
|
|
1592
|
-
"default": "ZERO_DATA",
|
|
1593
|
-
"resolveInitializer": {
|
|
1594
|
-
"module": "/src/configure/zero-config"
|
|
1595
|
-
},
|
|
1596
|
-
"fieldName": "data"
|
|
1597
|
-
},
|
|
1598
|
-
{
|
|
1599
|
-
"name": "isTop",
|
|
1600
|
-
"type": {
|
|
1601
|
-
"text": "boolean"
|
|
1602
|
-
},
|
|
1603
|
-
"default": "false",
|
|
1604
|
-
"fieldName": "isTop"
|
|
1605
|
-
},
|
|
1606
|
-
{
|
|
1607
|
-
"name": "_records",
|
|
1608
|
-
"type": {
|
|
1609
|
-
"text": "GristRecord[]"
|
|
1610
|
-
},
|
|
1611
|
-
"default": "[]",
|
|
1612
|
-
"fieldName": "_records"
|
|
1613
|
-
}
|
|
1614
|
-
],
|
|
1615
|
-
"superclass": {
|
|
1616
|
-
"name": "LitElement",
|
|
1617
|
-
"package": "lit"
|
|
1308
|
+
]
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
"kind": "variable",
|
|
1312
|
+
"name": "ZERO_THUMBNAIL_TEMPLATE",
|
|
1313
|
+
"default": "function (record: GristRecord, rowIndex: number) {}"
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
"kind": "variable",
|
|
1317
|
+
"name": "ZERO_EVENTHANDLERSET",
|
|
1318
|
+
"type": {
|
|
1319
|
+
"text": "GristEventHandlerSet"
|
|
1618
1320
|
},
|
|
1619
|
-
"
|
|
1620
|
-
|
|
1321
|
+
"default": "{\n click: undefined,\n dblclick: undefined\n}"
|
|
1322
|
+
},
|
|
1323
|
+
{
|
|
1324
|
+
"kind": "variable",
|
|
1325
|
+
"name": "ZERO_COLUMNS",
|
|
1326
|
+
"type": {
|
|
1327
|
+
"text": "ColumnConfig[]"
|
|
1328
|
+
},
|
|
1329
|
+
"default": "[]"
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
"kind": "variable",
|
|
1333
|
+
"name": "ZERO_GROUPS",
|
|
1334
|
+
"type": {
|
|
1335
|
+
"text": "GroupConfig[]"
|
|
1336
|
+
},
|
|
1337
|
+
"default": "[]"
|
|
1338
|
+
},
|
|
1339
|
+
{
|
|
1340
|
+
"kind": "variable",
|
|
1341
|
+
"name": "ZERO_TOTALS",
|
|
1342
|
+
"type": {
|
|
1343
|
+
"text": "[]"
|
|
1344
|
+
},
|
|
1345
|
+
"default": "[]"
|
|
1346
|
+
},
|
|
1347
|
+
{
|
|
1348
|
+
"kind": "variable",
|
|
1349
|
+
"name": "ZERO_LABEL",
|
|
1350
|
+
"type": {
|
|
1351
|
+
"text": "LabelConfig"
|
|
1352
|
+
},
|
|
1353
|
+
"default": "false"
|
|
1354
|
+
},
|
|
1355
|
+
{
|
|
1356
|
+
"kind": "variable",
|
|
1357
|
+
"name": "ZERO_COLUMN",
|
|
1358
|
+
"type": {
|
|
1359
|
+
"text": "ColumnConfig"
|
|
1360
|
+
},
|
|
1361
|
+
"default": "{\n type: '',\n name: '',\n header: {\n renderer: column => {}\n },\n record: {\n renderer: ZERO_FIELD_RENDERER,\n classifier: ZERO_CLASSIFIER,\n options: {}\n },\n handlers: ZERO_EVENTHANDLERSET,\n label: ZERO_LABEL\n}"
|
|
1362
|
+
},
|
|
1363
|
+
{
|
|
1364
|
+
"kind": "variable",
|
|
1365
|
+
"name": "ZERO_ROWS",
|
|
1366
|
+
"type": {
|
|
1367
|
+
"text": "RowsConfig"
|
|
1368
|
+
},
|
|
1369
|
+
"default": "{\n appendable: false,\n insertable: false,\n groups: ZERO_GROUPS,\n totals: ZERO_TOTALS,\n classifier: ZERO_CLASSIFIER,\n handlers: ZERO_EVENTHANDLERSET\n}"
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
"kind": "variable",
|
|
1373
|
+
"name": "ZERO_LIST",
|
|
1374
|
+
"type": {
|
|
1375
|
+
"text": "ListConfig"
|
|
1376
|
+
},
|
|
1377
|
+
"default": "{\n thumbnail: ZERO_THUMBNAIL_TEMPLATE,\n fields: ['name', 'description', 'updatedAt'],\n details: []\n}"
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
"kind": "variable",
|
|
1381
|
+
"name": "ZERO_CONFIG",
|
|
1382
|
+
"type": {
|
|
1383
|
+
"text": "GristConfig"
|
|
1384
|
+
},
|
|
1385
|
+
"default": "{\n columns: ZERO_COLUMNS,\n rows: ZERO_ROWS,\n list: ZERO_LIST\n}"
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
"kind": "variable",
|
|
1389
|
+
"name": "ZERO_RECORD",
|
|
1390
|
+
"type": {
|
|
1391
|
+
"text": "GristRecord"
|
|
1392
|
+
},
|
|
1393
|
+
"default": "{}"
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"kind": "variable",
|
|
1397
|
+
"name": "ZERO_RECORDS",
|
|
1398
|
+
"type": {
|
|
1399
|
+
"text": "GristRecord[]"
|
|
1400
|
+
},
|
|
1401
|
+
"default": "[]"
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
"kind": "variable",
|
|
1405
|
+
"name": "ZERO_DATA",
|
|
1406
|
+
"type": {
|
|
1407
|
+
"text": "GristData"
|
|
1408
|
+
},
|
|
1409
|
+
"default": "{\n records: ZERO_RECORDS\n}"
|
|
1410
|
+
},
|
|
1411
|
+
{
|
|
1412
|
+
"kind": "variable",
|
|
1413
|
+
"name": "ZERO_PAGINATION",
|
|
1414
|
+
"type": {
|
|
1415
|
+
"text": "object"
|
|
1416
|
+
},
|
|
1417
|
+
"default": "{\n page: 1,\n limit: 20,\n total: 0\n}"
|
|
1621
1418
|
}
|
|
1622
1419
|
],
|
|
1623
1420
|
"exports": [
|
|
1624
1421
|
{
|
|
1625
1422
|
"kind": "js",
|
|
1626
|
-
"name": "
|
|
1423
|
+
"name": "ZERO_CLASSIFIER",
|
|
1627
1424
|
"declaration": {
|
|
1628
|
-
"name": "
|
|
1629
|
-
"module": "src/
|
|
1425
|
+
"name": "ZERO_CLASSIFIER",
|
|
1426
|
+
"module": "src/configure/zero-config.ts"
|
|
1630
1427
|
}
|
|
1631
1428
|
},
|
|
1632
1429
|
{
|
|
1633
|
-
"kind": "
|
|
1634
|
-
"name": "
|
|
1430
|
+
"kind": "js",
|
|
1431
|
+
"name": "ZERO_FIELD_RENDERER",
|
|
1635
1432
|
"declaration": {
|
|
1636
|
-
"name": "
|
|
1637
|
-
"module": "src/
|
|
1433
|
+
"name": "ZERO_FIELD_RENDERER",
|
|
1434
|
+
"module": "src/configure/zero-config.ts"
|
|
1638
1435
|
}
|
|
1639
|
-
}
|
|
1640
|
-
]
|
|
1641
|
-
},
|
|
1642
|
-
{
|
|
1643
|
-
"kind": "javascript-module",
|
|
1644
|
-
"path": "src/data-card/record-card.ts",
|
|
1645
|
-
"declarations": [
|
|
1436
|
+
},
|
|
1646
1437
|
{
|
|
1647
|
-
"kind": "
|
|
1648
|
-
"
|
|
1649
|
-
"
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
"type": {
|
|
1655
|
-
"text": "GristConfig"
|
|
1656
|
-
},
|
|
1657
|
-
"default": "ZERO_CONFIG",
|
|
1658
|
-
"attribute": "config"
|
|
1659
|
-
},
|
|
1660
|
-
{
|
|
1661
|
-
"kind": "field",
|
|
1662
|
-
"name": "data",
|
|
1663
|
-
"type": {
|
|
1664
|
-
"text": "GristData"
|
|
1665
|
-
},
|
|
1666
|
-
"default": "ZERO_DATA",
|
|
1667
|
-
"attribute": "data"
|
|
1668
|
-
},
|
|
1669
|
-
{
|
|
1670
|
-
"kind": "field",
|
|
1671
|
-
"name": "record",
|
|
1672
|
-
"type": {
|
|
1673
|
-
"text": "GristRecord"
|
|
1674
|
-
},
|
|
1675
|
-
"default": "ZERO_RECORD",
|
|
1676
|
-
"attribute": "record"
|
|
1677
|
-
},
|
|
1678
|
-
{
|
|
1679
|
-
"kind": "field",
|
|
1680
|
-
"name": "rowIndex",
|
|
1681
|
-
"type": {
|
|
1682
|
-
"text": "number"
|
|
1683
|
-
},
|
|
1684
|
-
"default": "-1",
|
|
1685
|
-
"attribute": "rowIndex"
|
|
1686
|
-
},
|
|
1687
|
-
{
|
|
1688
|
-
"kind": "field",
|
|
1689
|
-
"name": "selectedRow",
|
|
1690
|
-
"type": {
|
|
1691
|
-
"text": "boolean"
|
|
1692
|
-
},
|
|
1693
|
-
"default": "false",
|
|
1694
|
-
"attribute": "selected-row"
|
|
1695
|
-
},
|
|
1696
|
-
{
|
|
1697
|
-
"kind": "field",
|
|
1698
|
-
"name": "_recordView",
|
|
1699
|
-
"type": {
|
|
1700
|
-
"text": "any"
|
|
1701
|
-
},
|
|
1702
|
-
"privacy": "private"
|
|
1703
|
-
},
|
|
1704
|
-
{
|
|
1705
|
-
"kind": "method",
|
|
1706
|
-
"name": "onFieldChange",
|
|
1707
|
-
"parameters": [
|
|
1708
|
-
{
|
|
1709
|
-
"name": "e",
|
|
1710
|
-
"type": {
|
|
1711
|
-
"text": "Event"
|
|
1712
|
-
}
|
|
1713
|
-
}
|
|
1714
|
-
]
|
|
1715
|
-
},
|
|
1716
|
-
{
|
|
1717
|
-
"kind": "field",
|
|
1718
|
-
"name": "recordView"
|
|
1719
|
-
},
|
|
1720
|
-
{
|
|
1721
|
-
"kind": "method",
|
|
1722
|
-
"name": "popupRecordView"
|
|
1723
|
-
}
|
|
1724
|
-
],
|
|
1725
|
-
"events": [
|
|
1726
|
-
{
|
|
1727
|
-
"name": "field-change",
|
|
1728
|
-
"type": {
|
|
1729
|
-
"text": "CustomEvent"
|
|
1730
|
-
}
|
|
1731
|
-
},
|
|
1732
|
-
{
|
|
1733
|
-
"name": "record-reset",
|
|
1734
|
-
"type": {
|
|
1735
|
-
"text": "CustomEvent"
|
|
1736
|
-
}
|
|
1737
|
-
}
|
|
1738
|
-
],
|
|
1739
|
-
"attributes": [
|
|
1740
|
-
{
|
|
1741
|
-
"name": "config",
|
|
1742
|
-
"type": {
|
|
1743
|
-
"text": "GristConfig"
|
|
1744
|
-
},
|
|
1745
|
-
"default": "ZERO_CONFIG",
|
|
1746
|
-
"resolveInitializer": {
|
|
1747
|
-
"module": "/src/configure/zero-config"
|
|
1748
|
-
},
|
|
1749
|
-
"fieldName": "config"
|
|
1750
|
-
},
|
|
1751
|
-
{
|
|
1752
|
-
"name": "data",
|
|
1753
|
-
"type": {
|
|
1754
|
-
"text": "GristData"
|
|
1755
|
-
},
|
|
1756
|
-
"default": "ZERO_DATA",
|
|
1757
|
-
"resolveInitializer": {
|
|
1758
|
-
"module": "/src/configure/zero-config"
|
|
1759
|
-
},
|
|
1760
|
-
"fieldName": "data"
|
|
1761
|
-
},
|
|
1762
|
-
{
|
|
1763
|
-
"name": "record",
|
|
1764
|
-
"type": {
|
|
1765
|
-
"text": "GristRecord"
|
|
1766
|
-
},
|
|
1767
|
-
"default": "ZERO_RECORD",
|
|
1768
|
-
"resolveInitializer": {
|
|
1769
|
-
"module": "/src/configure/zero-config"
|
|
1770
|
-
},
|
|
1771
|
-
"fieldName": "record"
|
|
1772
|
-
},
|
|
1773
|
-
{
|
|
1774
|
-
"name": "rowIndex",
|
|
1775
|
-
"type": {
|
|
1776
|
-
"text": "number"
|
|
1777
|
-
},
|
|
1778
|
-
"default": "-1",
|
|
1779
|
-
"fieldName": "rowIndex"
|
|
1780
|
-
},
|
|
1781
|
-
{
|
|
1782
|
-
"name": "selected-row",
|
|
1783
|
-
"type": {
|
|
1784
|
-
"text": "boolean"
|
|
1785
|
-
},
|
|
1786
|
-
"default": "false",
|
|
1787
|
-
"fieldName": "selectedRow"
|
|
1788
|
-
}
|
|
1789
|
-
],
|
|
1790
|
-
"superclass": {
|
|
1791
|
-
"name": "LitElement",
|
|
1792
|
-
"package": "lit"
|
|
1793
|
-
},
|
|
1794
|
-
"tagName": "ox-record-card",
|
|
1795
|
-
"customElement": true
|
|
1796
|
-
}
|
|
1797
|
-
],
|
|
1798
|
-
"exports": [
|
|
1438
|
+
"kind": "js",
|
|
1439
|
+
"name": "ZERO_THUMBNAIL_TEMPLATE",
|
|
1440
|
+
"declaration": {
|
|
1441
|
+
"name": "ZERO_THUMBNAIL_TEMPLATE",
|
|
1442
|
+
"module": "src/configure/zero-config.ts"
|
|
1443
|
+
}
|
|
1444
|
+
},
|
|
1799
1445
|
{
|
|
1800
1446
|
"kind": "js",
|
|
1801
|
-
"name": "
|
|
1447
|
+
"name": "ZERO_EVENTHANDLERSET",
|
|
1802
1448
|
"declaration": {
|
|
1803
|
-
"name": "
|
|
1804
|
-
"module": "src/
|
|
1449
|
+
"name": "ZERO_EVENTHANDLERSET",
|
|
1450
|
+
"module": "src/configure/zero-config.ts"
|
|
1805
1451
|
}
|
|
1806
1452
|
},
|
|
1807
1453
|
{
|
|
1808
|
-
"kind": "
|
|
1809
|
-
"name": "
|
|
1454
|
+
"kind": "js",
|
|
1455
|
+
"name": "ZERO_COLUMNS",
|
|
1810
1456
|
"declaration": {
|
|
1811
|
-
"name": "
|
|
1812
|
-
"module": "src/
|
|
1457
|
+
"name": "ZERO_COLUMNS",
|
|
1458
|
+
"module": "src/configure/zero-config.ts"
|
|
1813
1459
|
}
|
|
1814
|
-
}
|
|
1815
|
-
]
|
|
1816
|
-
},
|
|
1817
|
-
{
|
|
1818
|
-
"kind": "javascript-module",
|
|
1819
|
-
"path": "src/configure/column-builder.ts",
|
|
1820
|
-
"declarations": [
|
|
1460
|
+
},
|
|
1821
1461
|
{
|
|
1822
|
-
"kind": "
|
|
1823
|
-
"name": "
|
|
1824
|
-
"
|
|
1825
|
-
"
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
"parameters": [
|
|
1830
|
-
{
|
|
1831
|
-
"name": "column",
|
|
1832
|
-
"type": {
|
|
1833
|
-
"text": "any"
|
|
1834
|
-
}
|
|
1835
|
-
}
|
|
1836
|
-
]
|
|
1837
|
-
}
|
|
1838
|
-
],
|
|
1839
|
-
"exports": [
|
|
1462
|
+
"kind": "js",
|
|
1463
|
+
"name": "ZERO_GROUPS",
|
|
1464
|
+
"declaration": {
|
|
1465
|
+
"name": "ZERO_GROUPS",
|
|
1466
|
+
"module": "src/configure/zero-config.ts"
|
|
1467
|
+
}
|
|
1468
|
+
},
|
|
1840
1469
|
{
|
|
1841
1470
|
"kind": "js",
|
|
1842
|
-
"name": "
|
|
1471
|
+
"name": "ZERO_TOTALS",
|
|
1843
1472
|
"declaration": {
|
|
1844
|
-
"name": "
|
|
1845
|
-
"module": "src/configure/
|
|
1473
|
+
"name": "ZERO_TOTALS",
|
|
1474
|
+
"module": "src/configure/zero-config.ts"
|
|
1475
|
+
}
|
|
1476
|
+
},
|
|
1477
|
+
{
|
|
1478
|
+
"kind": "js",
|
|
1479
|
+
"name": "ZERO_LABEL",
|
|
1480
|
+
"declaration": {
|
|
1481
|
+
"name": "ZERO_LABEL",
|
|
1482
|
+
"module": "src/configure/zero-config.ts"
|
|
1483
|
+
}
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
"kind": "js",
|
|
1487
|
+
"name": "ZERO_COLUMN",
|
|
1488
|
+
"declaration": {
|
|
1489
|
+
"name": "ZERO_COLUMN",
|
|
1490
|
+
"module": "src/configure/zero-config.ts"
|
|
1491
|
+
}
|
|
1492
|
+
},
|
|
1493
|
+
{
|
|
1494
|
+
"kind": "js",
|
|
1495
|
+
"name": "ZERO_ROWS",
|
|
1496
|
+
"declaration": {
|
|
1497
|
+
"name": "ZERO_ROWS",
|
|
1498
|
+
"module": "src/configure/zero-config.ts"
|
|
1499
|
+
}
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
"kind": "js",
|
|
1503
|
+
"name": "ZERO_LIST",
|
|
1504
|
+
"declaration": {
|
|
1505
|
+
"name": "ZERO_LIST",
|
|
1506
|
+
"module": "src/configure/zero-config.ts"
|
|
1507
|
+
}
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
"kind": "js",
|
|
1511
|
+
"name": "ZERO_CONFIG",
|
|
1512
|
+
"declaration": {
|
|
1513
|
+
"name": "ZERO_CONFIG",
|
|
1514
|
+
"module": "src/configure/zero-config.ts"
|
|
1515
|
+
}
|
|
1516
|
+
},
|
|
1517
|
+
{
|
|
1518
|
+
"kind": "js",
|
|
1519
|
+
"name": "ZERO_RECORD",
|
|
1520
|
+
"declaration": {
|
|
1521
|
+
"name": "ZERO_RECORD",
|
|
1522
|
+
"module": "src/configure/zero-config.ts"
|
|
1523
|
+
}
|
|
1524
|
+
},
|
|
1525
|
+
{
|
|
1526
|
+
"kind": "js",
|
|
1527
|
+
"name": "ZERO_RECORDS",
|
|
1528
|
+
"declaration": {
|
|
1529
|
+
"name": "ZERO_RECORDS",
|
|
1530
|
+
"module": "src/configure/zero-config.ts"
|
|
1531
|
+
}
|
|
1532
|
+
},
|
|
1533
|
+
{
|
|
1534
|
+
"kind": "js",
|
|
1535
|
+
"name": "ZERO_DATA",
|
|
1536
|
+
"declaration": {
|
|
1537
|
+
"name": "ZERO_DATA",
|
|
1538
|
+
"module": "src/configure/zero-config.ts"
|
|
1539
|
+
}
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
"kind": "js",
|
|
1543
|
+
"name": "ZERO_PAGINATION",
|
|
1544
|
+
"declaration": {
|
|
1545
|
+
"name": "ZERO_PAGINATION",
|
|
1546
|
+
"module": "src/configure/zero-config.ts"
|
|
1846
1547
|
}
|
|
1847
1548
|
}
|
|
1848
1549
|
]
|
|
1849
1550
|
},
|
|
1850
1551
|
{
|
|
1851
1552
|
"kind": "javascript-module",
|
|
1852
|
-
"path": "src/
|
|
1553
|
+
"path": "src/data-grid/data-grid-body-style.ts",
|
|
1853
1554
|
"declarations": [
|
|
1854
1555
|
{
|
|
1855
|
-
"kind": "
|
|
1856
|
-
"name": "
|
|
1857
|
-
"
|
|
1858
|
-
"type": {
|
|
1859
|
-
"text": "GristConfig"
|
|
1860
|
-
}
|
|
1861
|
-
},
|
|
1862
|
-
"parameters": [
|
|
1863
|
-
{
|
|
1864
|
-
"name": "config",
|
|
1865
|
-
"type": {
|
|
1866
|
-
"text": "any"
|
|
1867
|
-
}
|
|
1868
|
-
}
|
|
1869
|
-
]
|
|
1556
|
+
"kind": "variable",
|
|
1557
|
+
"name": "dataGridBodyStyle",
|
|
1558
|
+
"default": "css`\n :host {\n display: grid;\n grid-template-columns: var(--grid-template-columns);\n grid-auto-rows: var(--grid-record-height, min-content);\n\n overflow: auto;\n outline: none;\n color: var(--grid-record-color);\n }\n\n [odd] {\n background-color: var(--grid-record-odd-background-color);\n }\n\n [selected-row] {\n background-color: var(--grid-record-selected-background-color);\n color: var(--grid-record-selected-color);\n }\n\n [focused-row] {\n box-shadow: var(--grid-record-focused-box-shadow);\n font-weight: bold;\n color: var(--grid-record-focused-color);\n background-image: var(--focused-background-image);\n background-blend-mode: darken;\n }\n\n [focused] {\n border: var(--grid-record-focused-cell-border);\n }\n\n [emphasized-row],\n [emphasized-row][focused] {\n background-color: var(--grid-record-emphasized-background-color);\n color: var(--grid-record-emphasized-color);\n }\n\n [editing] {\n background-color: var(--grid-record-editing-background-color);\n }\n\n @media print {\n :host {\n grid-template-columns: var(--grid-template-print-columns);\n }\n [focused] {\n border: none;\n }\n\n [selected-row] {\n background-color: transparent;\n }\n\n [emphasized-row] {\n background-color: transparent;\n color: initial;\n }\n\n [focused-row] {\n background-color: transparent;\n color: initial;\n }\n\n [editing] {\n background-color: transparent;\n }\n }\n`"
|
|
1870
1559
|
}
|
|
1871
1560
|
],
|
|
1872
1561
|
"exports": [
|
|
1873
1562
|
{
|
|
1874
1563
|
"kind": "js",
|
|
1875
|
-
"name": "
|
|
1564
|
+
"name": "dataGridBodyStyle",
|
|
1876
1565
|
"declaration": {
|
|
1877
|
-
"name": "
|
|
1878
|
-
"module": "src/
|
|
1566
|
+
"name": "dataGridBodyStyle",
|
|
1567
|
+
"module": "src/data-grid/data-grid-body-style.ts"
|
|
1879
1568
|
}
|
|
1880
1569
|
}
|
|
1881
1570
|
]
|
|
1882
1571
|
},
|
|
1883
1572
|
{
|
|
1884
1573
|
"kind": "javascript-module",
|
|
1885
|
-
"path": "src/
|
|
1574
|
+
"path": "src/data-grid/data-grid-body.ts",
|
|
1886
1575
|
"declarations": [
|
|
1887
1576
|
{
|
|
1888
|
-
"kind": "
|
|
1889
|
-
"
|
|
1890
|
-
"
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
{
|
|
1897
|
-
"
|
|
1577
|
+
"kind": "class",
|
|
1578
|
+
"description": "",
|
|
1579
|
+
"name": "DataGridBody",
|
|
1580
|
+
"members": [
|
|
1581
|
+
{
|
|
1582
|
+
"kind": "field",
|
|
1583
|
+
"name": "debounce"
|
|
1584
|
+
},
|
|
1585
|
+
{
|
|
1586
|
+
"kind": "field",
|
|
1587
|
+
"name": "config",
|
|
1898
1588
|
"type": {
|
|
1899
|
-
"text": "
|
|
1900
|
-
}
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
"
|
|
1589
|
+
"text": "GristConfig"
|
|
1590
|
+
},
|
|
1591
|
+
"default": "ZERO_CONFIG",
|
|
1592
|
+
"attribute": "config"
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"kind": "field",
|
|
1596
|
+
"name": "columns",
|
|
1597
|
+
"type": {
|
|
1598
|
+
"text": "ColumnConfig[]"
|
|
1599
|
+
},
|
|
1600
|
+
"default": "[]",
|
|
1601
|
+
"attribute": "columns"
|
|
1602
|
+
},
|
|
1603
|
+
{
|
|
1604
|
+
"kind": "field",
|
|
1605
|
+
"name": "data",
|
|
1606
|
+
"type": {
|
|
1607
|
+
"text": "GristData"
|
|
1608
|
+
},
|
|
1609
|
+
"default": "ZERO_DATA",
|
|
1610
|
+
"attribute": "data"
|
|
1611
|
+
},
|
|
1612
|
+
{
|
|
1613
|
+
"kind": "field",
|
|
1614
|
+
"name": "focused",
|
|
1615
|
+
"type": {
|
|
1616
|
+
"text": "{ row: number; column: number }"
|
|
1617
|
+
},
|
|
1618
|
+
"default": "{\n row: 0,\n column: 0\n}",
|
|
1619
|
+
"attribute": "focused"
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
"kind": "field",
|
|
1623
|
+
"name": "editTarget",
|
|
1624
|
+
"type": {
|
|
1625
|
+
"text": "{ row: number; column: number } | null"
|
|
1626
|
+
},
|
|
1627
|
+
"default": "null",
|
|
1628
|
+
"attribute": "editTarget"
|
|
1629
|
+
},
|
|
1630
|
+
{
|
|
1631
|
+
"kind": "field",
|
|
1632
|
+
"name": "from",
|
|
1633
|
+
"type": {
|
|
1634
|
+
"text": "number"
|
|
1635
|
+
},
|
|
1636
|
+
"default": "-1",
|
|
1637
|
+
"attribute": "from"
|
|
1638
|
+
},
|
|
1639
|
+
{
|
|
1640
|
+
"kind": "field",
|
|
1641
|
+
"name": "to",
|
|
1642
|
+
"type": {
|
|
1643
|
+
"text": "number"
|
|
1644
|
+
},
|
|
1645
|
+
"default": "-1",
|
|
1646
|
+
"attribute": "to"
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
"kind": "field",
|
|
1650
|
+
"name": "_focusedListener",
|
|
1651
|
+
"type": {
|
|
1652
|
+
"text": "(e: KeyboardEvent) => void | undefined"
|
|
1653
|
+
},
|
|
1654
|
+
"privacy": "private"
|
|
1655
|
+
},
|
|
1656
|
+
{
|
|
1657
|
+
"kind": "method",
|
|
1658
|
+
"name": "resetEdit"
|
|
1659
|
+
},
|
|
1660
|
+
{
|
|
1661
|
+
"kind": "method",
|
|
1662
|
+
"name": "handleOnScroll",
|
|
1663
|
+
"parameters": [
|
|
1664
|
+
{
|
|
1665
|
+
"name": "e",
|
|
1666
|
+
"type": {
|
|
1667
|
+
"text": "WheelEvent"
|
|
1668
|
+
}
|
|
1669
|
+
}
|
|
1670
|
+
]
|
|
1671
|
+
},
|
|
1672
|
+
{
|
|
1673
|
+
"kind": "method",
|
|
1674
|
+
"name": "_onWheelEvent",
|
|
1675
|
+
"parameters": [
|
|
1676
|
+
{
|
|
1677
|
+
"name": "e",
|
|
1678
|
+
"type": {
|
|
1679
|
+
"text": "WheelEvent"
|
|
1680
|
+
}
|
|
1681
|
+
}
|
|
1682
|
+
]
|
|
1683
|
+
},
|
|
1684
|
+
{
|
|
1685
|
+
"kind": "method",
|
|
1686
|
+
"name": "startEditTarget",
|
|
1687
|
+
"parameters": [
|
|
1688
|
+
{
|
|
1689
|
+
"name": "row",
|
|
1690
|
+
"type": {
|
|
1691
|
+
"text": "number"
|
|
1692
|
+
}
|
|
1693
|
+
},
|
|
1694
|
+
{
|
|
1695
|
+
"name": "column",
|
|
1696
|
+
"type": {
|
|
1697
|
+
"text": "number"
|
|
1698
|
+
}
|
|
1699
|
+
}
|
|
1700
|
+
]
|
|
1701
|
+
},
|
|
1702
|
+
{
|
|
1703
|
+
"kind": "method",
|
|
1704
|
+
"name": "focus"
|
|
1926
1705
|
}
|
|
1927
|
-
|
|
1928
|
-
"
|
|
1706
|
+
],
|
|
1707
|
+
"attributes": [
|
|
1929
1708
|
{
|
|
1930
|
-
"name": "
|
|
1709
|
+
"name": "config",
|
|
1931
1710
|
"type": {
|
|
1932
|
-
"text": "
|
|
1933
|
-
}
|
|
1711
|
+
"text": "GristConfig"
|
|
1712
|
+
},
|
|
1713
|
+
"default": "ZERO_CONFIG",
|
|
1714
|
+
"resolveInitializer": {
|
|
1715
|
+
"module": "/src/configure/zero-config"
|
|
1716
|
+
},
|
|
1717
|
+
"fieldName": "config"
|
|
1718
|
+
},
|
|
1719
|
+
{
|
|
1720
|
+
"name": "columns",
|
|
1721
|
+
"type": {
|
|
1722
|
+
"text": "ColumnConfig[]"
|
|
1723
|
+
},
|
|
1724
|
+
"default": "[]",
|
|
1725
|
+
"fieldName": "columns"
|
|
1726
|
+
},
|
|
1727
|
+
{
|
|
1728
|
+
"name": "data",
|
|
1729
|
+
"type": {
|
|
1730
|
+
"text": "GristData"
|
|
1731
|
+
},
|
|
1732
|
+
"default": "ZERO_DATA",
|
|
1733
|
+
"resolveInitializer": {
|
|
1734
|
+
"module": "/src/configure/zero-config"
|
|
1735
|
+
},
|
|
1736
|
+
"fieldName": "data"
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
"name": "focused",
|
|
1740
|
+
"type": {
|
|
1741
|
+
"text": "{ row: number; column: number }"
|
|
1742
|
+
},
|
|
1743
|
+
"default": "ZERO_FOCUS",
|
|
1744
|
+
"resolveInitializer": {
|
|
1745
|
+
"module": "src/data-grid/data-grid-body.ts"
|
|
1746
|
+
},
|
|
1747
|
+
"fieldName": "focused"
|
|
1748
|
+
},
|
|
1749
|
+
{
|
|
1750
|
+
"name": "editTarget",
|
|
1751
|
+
"type": {
|
|
1752
|
+
"text": "{ row: number; column: number } | null"
|
|
1753
|
+
},
|
|
1754
|
+
"default": "null",
|
|
1755
|
+
"fieldName": "editTarget"
|
|
1756
|
+
},
|
|
1757
|
+
{
|
|
1758
|
+
"name": "from",
|
|
1759
|
+
"type": {
|
|
1760
|
+
"text": "number"
|
|
1761
|
+
},
|
|
1762
|
+
"default": "-1",
|
|
1763
|
+
"fieldName": "from"
|
|
1764
|
+
},
|
|
1765
|
+
{
|
|
1766
|
+
"name": "to",
|
|
1767
|
+
"type": {
|
|
1768
|
+
"text": "number"
|
|
1769
|
+
},
|
|
1770
|
+
"default": "-1",
|
|
1771
|
+
"fieldName": "to"
|
|
1934
1772
|
}
|
|
1935
|
-
]
|
|
1773
|
+
],
|
|
1774
|
+
"superclass": {
|
|
1775
|
+
"name": "LitElement",
|
|
1776
|
+
"package": "lit"
|
|
1777
|
+
},
|
|
1778
|
+
"tagName": "ox-grid-body",
|
|
1779
|
+
"customElement": true
|
|
1936
1780
|
}
|
|
1937
1781
|
],
|
|
1938
1782
|
"exports": [
|
|
1939
1783
|
{
|
|
1940
1784
|
"kind": "js",
|
|
1941
|
-
"name": "
|
|
1785
|
+
"name": "DataGridBody",
|
|
1942
1786
|
"declaration": {
|
|
1943
|
-
"name": "
|
|
1944
|
-
"module": "src/
|
|
1787
|
+
"name": "DataGridBody",
|
|
1788
|
+
"module": "src/data-grid/data-grid-body.ts"
|
|
1789
|
+
}
|
|
1790
|
+
},
|
|
1791
|
+
{
|
|
1792
|
+
"kind": "custom-element-definition",
|
|
1793
|
+
"name": "ox-grid-body",
|
|
1794
|
+
"declaration": {
|
|
1795
|
+
"name": "DataGridBody",
|
|
1796
|
+
"module": "src/data-grid/data-grid-body.ts"
|
|
1945
1797
|
}
|
|
1946
1798
|
}
|
|
1947
1799
|
]
|
|
1948
1800
|
},
|
|
1949
1801
|
{
|
|
1950
1802
|
"kind": "javascript-module",
|
|
1951
|
-
"path": "src/
|
|
1803
|
+
"path": "src/data-grid/data-grid-field.ts",
|
|
1952
1804
|
"declarations": [
|
|
1953
1805
|
{
|
|
1954
|
-
"kind": "
|
|
1955
|
-
"
|
|
1956
|
-
"
|
|
1957
|
-
|
|
1958
|
-
"text": "RowsConfig"
|
|
1959
|
-
}
|
|
1960
|
-
},
|
|
1961
|
-
"parameters": [
|
|
1806
|
+
"kind": "class",
|
|
1807
|
+
"description": "",
|
|
1808
|
+
"name": "DataGridField",
|
|
1809
|
+
"members": [
|
|
1962
1810
|
{
|
|
1963
|
-
"
|
|
1811
|
+
"kind": "field",
|
|
1812
|
+
"name": "align",
|
|
1813
|
+
"default": "'left'",
|
|
1814
|
+
"attribute": "align",
|
|
1964
1815
|
"type": {
|
|
1965
|
-
"text": "
|
|
1816
|
+
"text": "string"
|
|
1966
1817
|
}
|
|
1818
|
+
},
|
|
1819
|
+
{
|
|
1820
|
+
"kind": "field",
|
|
1821
|
+
"name": "record",
|
|
1822
|
+
"type": {
|
|
1823
|
+
"text": "GristRecord"
|
|
1824
|
+
},
|
|
1825
|
+
"default": "{}",
|
|
1826
|
+
"attribute": "record"
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
"kind": "field",
|
|
1830
|
+
"name": "column",
|
|
1831
|
+
"type": {
|
|
1832
|
+
"text": "ColumnConfig"
|
|
1833
|
+
},
|
|
1834
|
+
"default": "ZERO_COLUMN",
|
|
1835
|
+
"attribute": "column"
|
|
1836
|
+
},
|
|
1837
|
+
{
|
|
1838
|
+
"kind": "field",
|
|
1839
|
+
"name": "rowIndex",
|
|
1840
|
+
"type": {
|
|
1841
|
+
"text": "number"
|
|
1842
|
+
},
|
|
1843
|
+
"default": "0",
|
|
1844
|
+
"attribute": "rowIndex"
|
|
1845
|
+
},
|
|
1846
|
+
{
|
|
1847
|
+
"kind": "field",
|
|
1848
|
+
"name": "columnIndex",
|
|
1849
|
+
"type": {
|
|
1850
|
+
"text": "number"
|
|
1851
|
+
},
|
|
1852
|
+
"default": "0",
|
|
1853
|
+
"attribute": "columnIndex"
|
|
1854
|
+
},
|
|
1855
|
+
{
|
|
1856
|
+
"kind": "field",
|
|
1857
|
+
"name": "editing",
|
|
1858
|
+
"type": {
|
|
1859
|
+
"text": "boolean"
|
|
1860
|
+
},
|
|
1861
|
+
"default": "false",
|
|
1862
|
+
"attribute": "editing"
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
"kind": "field",
|
|
1866
|
+
"name": "value",
|
|
1867
|
+
"type": {
|
|
1868
|
+
"text": "object"
|
|
1869
|
+
},
|
|
1870
|
+
"default": "{}",
|
|
1871
|
+
"attribute": "value"
|
|
1872
|
+
},
|
|
1873
|
+
{
|
|
1874
|
+
"kind": "field",
|
|
1875
|
+
"name": "emphasized",
|
|
1876
|
+
"type": {
|
|
1877
|
+
"text": "boolean"
|
|
1878
|
+
},
|
|
1879
|
+
"default": "false",
|
|
1880
|
+
"attribute": "emphasized"
|
|
1881
|
+
},
|
|
1882
|
+
{
|
|
1883
|
+
"kind": "field",
|
|
1884
|
+
"name": "_editCancelled",
|
|
1885
|
+
"type": {
|
|
1886
|
+
"text": "boolean | undefined"
|
|
1887
|
+
},
|
|
1888
|
+
"privacy": "private"
|
|
1889
|
+
},
|
|
1890
|
+
{
|
|
1891
|
+
"kind": "field",
|
|
1892
|
+
"name": "_onFieldChange",
|
|
1893
|
+
"type": {
|
|
1894
|
+
"text": "(e: Event) => void"
|
|
1895
|
+
},
|
|
1896
|
+
"privacy": "private",
|
|
1897
|
+
"default": "e => {}"
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
"kind": "field",
|
|
1901
|
+
"name": "_onKeydownInEditingMode",
|
|
1902
|
+
"type": {
|
|
1903
|
+
"text": "(e: KeyboardEvent) => void"
|
|
1904
|
+
},
|
|
1905
|
+
"privacy": "private",
|
|
1906
|
+
"default": "e => {}"
|
|
1907
|
+
},
|
|
1908
|
+
{
|
|
1909
|
+
"kind": "field",
|
|
1910
|
+
"name": "isEditing",
|
|
1911
|
+
"privacy": "private"
|
|
1967
1912
|
}
|
|
1968
|
-
]
|
|
1913
|
+
],
|
|
1914
|
+
"attributes": [
|
|
1915
|
+
{
|
|
1916
|
+
"name": "align",
|
|
1917
|
+
"default": "DEFAULT_TEXT_ALIGN",
|
|
1918
|
+
"resolveInitializer": {
|
|
1919
|
+
"module": "src/data-grid/data-grid-field.ts"
|
|
1920
|
+
},
|
|
1921
|
+
"fieldName": "align"
|
|
1922
|
+
},
|
|
1923
|
+
{
|
|
1924
|
+
"name": "record",
|
|
1925
|
+
"type": {
|
|
1926
|
+
"text": "GristRecord"
|
|
1927
|
+
},
|
|
1928
|
+
"default": "{}",
|
|
1929
|
+
"fieldName": "record"
|
|
1930
|
+
},
|
|
1931
|
+
{
|
|
1932
|
+
"name": "column",
|
|
1933
|
+
"type": {
|
|
1934
|
+
"text": "ColumnConfig"
|
|
1935
|
+
},
|
|
1936
|
+
"default": "ZERO_COLUMN",
|
|
1937
|
+
"resolveInitializer": {
|
|
1938
|
+
"module": "/src/configure/zero-config"
|
|
1939
|
+
},
|
|
1940
|
+
"fieldName": "column"
|
|
1941
|
+
},
|
|
1942
|
+
{
|
|
1943
|
+
"name": "rowIndex",
|
|
1944
|
+
"type": {
|
|
1945
|
+
"text": "number"
|
|
1946
|
+
},
|
|
1947
|
+
"default": "0",
|
|
1948
|
+
"fieldName": "rowIndex"
|
|
1949
|
+
},
|
|
1950
|
+
{
|
|
1951
|
+
"name": "columnIndex",
|
|
1952
|
+
"type": {
|
|
1953
|
+
"text": "number"
|
|
1954
|
+
},
|
|
1955
|
+
"default": "0",
|
|
1956
|
+
"fieldName": "columnIndex"
|
|
1957
|
+
},
|
|
1958
|
+
{
|
|
1959
|
+
"name": "editing",
|
|
1960
|
+
"type": {
|
|
1961
|
+
"text": "boolean"
|
|
1962
|
+
},
|
|
1963
|
+
"default": "false",
|
|
1964
|
+
"fieldName": "editing"
|
|
1965
|
+
},
|
|
1966
|
+
{
|
|
1967
|
+
"name": "value",
|
|
1968
|
+
"type": {
|
|
1969
|
+
"text": "object"
|
|
1970
|
+
},
|
|
1971
|
+
"default": "{}",
|
|
1972
|
+
"fieldName": "value"
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
"name": "emphasized",
|
|
1976
|
+
"type": {
|
|
1977
|
+
"text": "boolean"
|
|
1978
|
+
},
|
|
1979
|
+
"default": "false",
|
|
1980
|
+
"fieldName": "emphasized"
|
|
1981
|
+
}
|
|
1982
|
+
],
|
|
1983
|
+
"superclass": {
|
|
1984
|
+
"name": "LitElement",
|
|
1985
|
+
"package": "lit"
|
|
1986
|
+
},
|
|
1987
|
+
"tagName": "ox-grid-field",
|
|
1988
|
+
"customElement": true
|
|
1969
1989
|
}
|
|
1970
1990
|
],
|
|
1971
1991
|
"exports": [
|
|
1972
1992
|
{
|
|
1973
1993
|
"kind": "js",
|
|
1974
|
-
"name": "
|
|
1994
|
+
"name": "DataGridField",
|
|
1975
1995
|
"declaration": {
|
|
1976
|
-
"name": "
|
|
1977
|
-
"module": "src/
|
|
1996
|
+
"name": "DataGridField",
|
|
1997
|
+
"module": "src/data-grid/data-grid-field.ts"
|
|
1998
|
+
}
|
|
1999
|
+
},
|
|
2000
|
+
{
|
|
2001
|
+
"kind": "custom-element-definition",
|
|
2002
|
+
"name": "ox-grid-field",
|
|
2003
|
+
"declaration": {
|
|
2004
|
+
"name": "DataGridField",
|
|
2005
|
+
"module": "src/data-grid/data-grid-field.ts"
|
|
1978
2006
|
}
|
|
1979
2007
|
}
|
|
1980
2008
|
]
|
|
1981
2009
|
},
|
|
1982
2010
|
{
|
|
1983
2011
|
"kind": "javascript-module",
|
|
1984
|
-
"path": "src/
|
|
2012
|
+
"path": "src/data-grid/data-grid-footer.ts",
|
|
1985
2013
|
"declarations": [
|
|
1986
2014
|
{
|
|
1987
|
-
"kind": "
|
|
1988
|
-
"
|
|
1989
|
-
"
|
|
2015
|
+
"kind": "class",
|
|
2016
|
+
"description": "",
|
|
2017
|
+
"name": "DataGridFooter",
|
|
2018
|
+
"members": [
|
|
1990
2019
|
{
|
|
1991
|
-
"
|
|
2020
|
+
"kind": "field",
|
|
2021
|
+
"name": "config",
|
|
2022
|
+
"type": {
|
|
2023
|
+
"text": "GristConfig"
|
|
2024
|
+
},
|
|
2025
|
+
"default": "ZERO_CONFIG",
|
|
2026
|
+
"attribute": "config"
|
|
1992
2027
|
},
|
|
1993
2028
|
{
|
|
1994
|
-
"
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
"parameters": [
|
|
2002
|
-
{
|
|
2003
|
-
"name": "value"
|
|
2029
|
+
"kind": "field",
|
|
2030
|
+
"name": "data",
|
|
2031
|
+
"type": {
|
|
2032
|
+
"text": "GristData"
|
|
2033
|
+
},
|
|
2034
|
+
"default": "ZERO_DATA",
|
|
2035
|
+
"attribute": "data"
|
|
2004
2036
|
},
|
|
2005
2037
|
{
|
|
2006
|
-
"
|
|
2038
|
+
"kind": "method",
|
|
2039
|
+
"name": "_gotoPage",
|
|
2040
|
+
"parameters": [
|
|
2041
|
+
{
|
|
2042
|
+
"name": "page",
|
|
2043
|
+
"type": {
|
|
2044
|
+
"text": "number"
|
|
2045
|
+
}
|
|
2046
|
+
}
|
|
2047
|
+
]
|
|
2007
2048
|
},
|
|
2008
2049
|
{
|
|
2009
|
-
"
|
|
2010
|
-
|
|
2050
|
+
"kind": "method",
|
|
2051
|
+
"name": "_changeLimit",
|
|
2052
|
+
"parameters": [
|
|
2053
|
+
{
|
|
2054
|
+
"name": "limit",
|
|
2055
|
+
"type": {
|
|
2056
|
+
"text": "number"
|
|
2057
|
+
}
|
|
2058
|
+
}
|
|
2059
|
+
]
|
|
2060
|
+
}
|
|
2061
|
+
],
|
|
2062
|
+
"events": [
|
|
2011
2063
|
{
|
|
2012
|
-
"name": "
|
|
2064
|
+
"name": "page-change",
|
|
2065
|
+
"type": {
|
|
2066
|
+
"text": "CustomEvent"
|
|
2067
|
+
}
|
|
2013
2068
|
},
|
|
2014
2069
|
{
|
|
2015
|
-
"name": "
|
|
2070
|
+
"name": "limit-change",
|
|
2071
|
+
"type": {
|
|
2072
|
+
"text": "CustomEvent"
|
|
2073
|
+
}
|
|
2016
2074
|
}
|
|
2017
|
-
]
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
"
|
|
2043
|
-
|
|
2044
|
-
"
|
|
2045
|
-
},
|
|
2046
|
-
"default": "[]"
|
|
2047
|
-
},
|
|
2048
|
-
{
|
|
2049
|
-
"kind": "variable",
|
|
2050
|
-
"name": "ZERO_TOTALS",
|
|
2051
|
-
"type": {
|
|
2052
|
-
"text": "[]"
|
|
2053
|
-
},
|
|
2054
|
-
"default": "[]"
|
|
2055
|
-
},
|
|
2056
|
-
{
|
|
2057
|
-
"kind": "variable",
|
|
2058
|
-
"name": "ZERO_LABEL",
|
|
2059
|
-
"type": {
|
|
2060
|
-
"text": "LabelConfig"
|
|
2061
|
-
},
|
|
2062
|
-
"default": "false"
|
|
2063
|
-
},
|
|
2064
|
-
{
|
|
2065
|
-
"kind": "variable",
|
|
2066
|
-
"name": "ZERO_COLUMN",
|
|
2067
|
-
"type": {
|
|
2068
|
-
"text": "ColumnConfig"
|
|
2069
|
-
},
|
|
2070
|
-
"default": "{\n type: '',\n name: '',\n header: {\n renderer: column => {}\n },\n record: {\n renderer: ZERO_FIELD_RENDERER,\n classifier: ZERO_CLASSIFIER,\n options: {}\n },\n handlers: ZERO_EVENTHANDLERSET,\n label: ZERO_LABEL\n}"
|
|
2071
|
-
},
|
|
2072
|
-
{
|
|
2073
|
-
"kind": "variable",
|
|
2074
|
-
"name": "ZERO_ROWS",
|
|
2075
|
-
"type": {
|
|
2076
|
-
"text": "RowsConfig"
|
|
2077
|
-
},
|
|
2078
|
-
"default": "{\n appendable: false,\n insertable: false,\n groups: ZERO_GROUPS,\n totals: ZERO_TOTALS,\n classifier: ZERO_CLASSIFIER,\n handlers: ZERO_EVENTHANDLERSET\n}"
|
|
2079
|
-
},
|
|
2080
|
-
{
|
|
2081
|
-
"kind": "variable",
|
|
2082
|
-
"name": "ZERO_LIST",
|
|
2083
|
-
"type": {
|
|
2084
|
-
"text": "ListConfig"
|
|
2085
|
-
},
|
|
2086
|
-
"default": "{\n thumbnail: ZERO_THUMBNAIL_TEMPLATE,\n fields: ['name', 'description', 'updatedAt'],\n details: []\n}"
|
|
2087
|
-
},
|
|
2088
|
-
{
|
|
2089
|
-
"kind": "variable",
|
|
2090
|
-
"name": "ZERO_CONFIG",
|
|
2091
|
-
"type": {
|
|
2092
|
-
"text": "GristConfig"
|
|
2093
|
-
},
|
|
2094
|
-
"default": "{\n columns: ZERO_COLUMNS,\n rows: ZERO_ROWS,\n list: ZERO_LIST\n}"
|
|
2095
|
-
},
|
|
2096
|
-
{
|
|
2097
|
-
"kind": "variable",
|
|
2098
|
-
"name": "ZERO_RECORD",
|
|
2099
|
-
"type": {
|
|
2100
|
-
"text": "GristRecord"
|
|
2101
|
-
},
|
|
2102
|
-
"default": "{}"
|
|
2103
|
-
},
|
|
2104
|
-
{
|
|
2105
|
-
"kind": "variable",
|
|
2106
|
-
"name": "ZERO_RECORDS",
|
|
2107
|
-
"type": {
|
|
2108
|
-
"text": "GristRecord[]"
|
|
2109
|
-
},
|
|
2110
|
-
"default": "[]"
|
|
2111
|
-
},
|
|
2112
|
-
{
|
|
2113
|
-
"kind": "variable",
|
|
2114
|
-
"name": "ZERO_DATA",
|
|
2115
|
-
"type": {
|
|
2116
|
-
"text": "GristData"
|
|
2117
|
-
},
|
|
2118
|
-
"default": "{\n records: ZERO_RECORDS\n}"
|
|
2119
|
-
},
|
|
2120
|
-
{
|
|
2121
|
-
"kind": "variable",
|
|
2122
|
-
"name": "ZERO_PAGINATION",
|
|
2123
|
-
"type": {
|
|
2124
|
-
"text": "object"
|
|
2075
|
+
],
|
|
2076
|
+
"attributes": [
|
|
2077
|
+
{
|
|
2078
|
+
"name": "config",
|
|
2079
|
+
"type": {
|
|
2080
|
+
"text": "GristConfig"
|
|
2081
|
+
},
|
|
2082
|
+
"default": "ZERO_CONFIG",
|
|
2083
|
+
"resolveInitializer": {
|
|
2084
|
+
"module": "/src/configure/zero-config"
|
|
2085
|
+
},
|
|
2086
|
+
"fieldName": "config"
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
"name": "data",
|
|
2090
|
+
"type": {
|
|
2091
|
+
"text": "GristData"
|
|
2092
|
+
},
|
|
2093
|
+
"default": "ZERO_DATA",
|
|
2094
|
+
"resolveInitializer": {
|
|
2095
|
+
"module": "/src/configure/zero-config"
|
|
2096
|
+
},
|
|
2097
|
+
"fieldName": "data"
|
|
2098
|
+
}
|
|
2099
|
+
],
|
|
2100
|
+
"superclass": {
|
|
2101
|
+
"name": "LitElement",
|
|
2102
|
+
"package": "lit"
|
|
2125
2103
|
},
|
|
2126
|
-
"
|
|
2104
|
+
"tagName": "ox-grid-footer",
|
|
2105
|
+
"customElement": true
|
|
2127
2106
|
}
|
|
2128
2107
|
],
|
|
2129
2108
|
"exports": [
|
|
2130
2109
|
{
|
|
2131
2110
|
"kind": "js",
|
|
2132
|
-
"name": "
|
|
2133
|
-
"declaration": {
|
|
2134
|
-
"name": "ZERO_CLASSIFIER",
|
|
2135
|
-
"module": "src/configure/zero-config.ts"
|
|
2136
|
-
}
|
|
2137
|
-
},
|
|
2138
|
-
{
|
|
2139
|
-
"kind": "js",
|
|
2140
|
-
"name": "ZERO_FIELD_RENDERER",
|
|
2141
|
-
"declaration": {
|
|
2142
|
-
"name": "ZERO_FIELD_RENDERER",
|
|
2143
|
-
"module": "src/configure/zero-config.ts"
|
|
2144
|
-
}
|
|
2145
|
-
},
|
|
2146
|
-
{
|
|
2147
|
-
"kind": "js",
|
|
2148
|
-
"name": "ZERO_THUMBNAIL_TEMPLATE",
|
|
2149
|
-
"declaration": {
|
|
2150
|
-
"name": "ZERO_THUMBNAIL_TEMPLATE",
|
|
2151
|
-
"module": "src/configure/zero-config.ts"
|
|
2152
|
-
}
|
|
2153
|
-
},
|
|
2154
|
-
{
|
|
2155
|
-
"kind": "js",
|
|
2156
|
-
"name": "ZERO_EVENTHANDLERSET",
|
|
2157
|
-
"declaration": {
|
|
2158
|
-
"name": "ZERO_EVENTHANDLERSET",
|
|
2159
|
-
"module": "src/configure/zero-config.ts"
|
|
2160
|
-
}
|
|
2161
|
-
},
|
|
2162
|
-
{
|
|
2163
|
-
"kind": "js",
|
|
2164
|
-
"name": "ZERO_COLUMNS",
|
|
2165
|
-
"declaration": {
|
|
2166
|
-
"name": "ZERO_COLUMNS",
|
|
2167
|
-
"module": "src/configure/zero-config.ts"
|
|
2168
|
-
}
|
|
2169
|
-
},
|
|
2170
|
-
{
|
|
2171
|
-
"kind": "js",
|
|
2172
|
-
"name": "ZERO_GROUPS",
|
|
2173
|
-
"declaration": {
|
|
2174
|
-
"name": "ZERO_GROUPS",
|
|
2175
|
-
"module": "src/configure/zero-config.ts"
|
|
2176
|
-
}
|
|
2177
|
-
},
|
|
2178
|
-
{
|
|
2179
|
-
"kind": "js",
|
|
2180
|
-
"name": "ZERO_TOTALS",
|
|
2181
|
-
"declaration": {
|
|
2182
|
-
"name": "ZERO_TOTALS",
|
|
2183
|
-
"module": "src/configure/zero-config.ts"
|
|
2184
|
-
}
|
|
2185
|
-
},
|
|
2186
|
-
{
|
|
2187
|
-
"kind": "js",
|
|
2188
|
-
"name": "ZERO_LABEL",
|
|
2189
|
-
"declaration": {
|
|
2190
|
-
"name": "ZERO_LABEL",
|
|
2191
|
-
"module": "src/configure/zero-config.ts"
|
|
2192
|
-
}
|
|
2193
|
-
},
|
|
2194
|
-
{
|
|
2195
|
-
"kind": "js",
|
|
2196
|
-
"name": "ZERO_COLUMN",
|
|
2197
|
-
"declaration": {
|
|
2198
|
-
"name": "ZERO_COLUMN",
|
|
2199
|
-
"module": "src/configure/zero-config.ts"
|
|
2200
|
-
}
|
|
2201
|
-
},
|
|
2202
|
-
{
|
|
2203
|
-
"kind": "js",
|
|
2204
|
-
"name": "ZERO_ROWS",
|
|
2205
|
-
"declaration": {
|
|
2206
|
-
"name": "ZERO_ROWS",
|
|
2207
|
-
"module": "src/configure/zero-config.ts"
|
|
2208
|
-
}
|
|
2209
|
-
},
|
|
2210
|
-
{
|
|
2211
|
-
"kind": "js",
|
|
2212
|
-
"name": "ZERO_LIST",
|
|
2213
|
-
"declaration": {
|
|
2214
|
-
"name": "ZERO_LIST",
|
|
2215
|
-
"module": "src/configure/zero-config.ts"
|
|
2216
|
-
}
|
|
2217
|
-
},
|
|
2218
|
-
{
|
|
2219
|
-
"kind": "js",
|
|
2220
|
-
"name": "ZERO_CONFIG",
|
|
2111
|
+
"name": "DataGridFooter",
|
|
2221
2112
|
"declaration": {
|
|
2222
|
-
"name": "
|
|
2223
|
-
"module": "src/
|
|
2113
|
+
"name": "DataGridFooter",
|
|
2114
|
+
"module": "src/data-grid/data-grid-footer.ts"
|
|
2224
2115
|
}
|
|
2225
2116
|
},
|
|
2226
2117
|
{
|
|
2227
|
-
"kind": "
|
|
2228
|
-
"name": "
|
|
2118
|
+
"kind": "custom-element-definition",
|
|
2119
|
+
"name": "ox-grid-footer",
|
|
2229
2120
|
"declaration": {
|
|
2230
|
-
"name": "
|
|
2231
|
-
"module": "src/
|
|
2121
|
+
"name": "DataGridFooter",
|
|
2122
|
+
"module": "src/data-grid/data-grid-footer.ts"
|
|
2232
2123
|
}
|
|
2233
|
-
}
|
|
2124
|
+
}
|
|
2125
|
+
]
|
|
2126
|
+
},
|
|
2127
|
+
{
|
|
2128
|
+
"kind": "javascript-module",
|
|
2129
|
+
"path": "src/data-grid/data-grid-header.ts",
|
|
2130
|
+
"declarations": [
|
|
2234
2131
|
{
|
|
2235
|
-
"kind": "
|
|
2236
|
-
"
|
|
2237
|
-
"
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2132
|
+
"kind": "class",
|
|
2133
|
+
"description": "",
|
|
2134
|
+
"name": "DataGridHeader",
|
|
2135
|
+
"members": [
|
|
2136
|
+
{
|
|
2137
|
+
"kind": "field",
|
|
2138
|
+
"name": "config",
|
|
2139
|
+
"type": {
|
|
2140
|
+
"text": "GristConfig"
|
|
2141
|
+
},
|
|
2142
|
+
"default": "ZERO_CONFIG",
|
|
2143
|
+
"attribute": "config"
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
"kind": "field",
|
|
2147
|
+
"name": "columns",
|
|
2148
|
+
"type": {
|
|
2149
|
+
"text": "ColumnConfig[]"
|
|
2150
|
+
},
|
|
2151
|
+
"default": "ZERO_COLUMNS",
|
|
2152
|
+
"attribute": "columns"
|
|
2153
|
+
},
|
|
2154
|
+
{
|
|
2155
|
+
"kind": "field",
|
|
2156
|
+
"name": "data",
|
|
2157
|
+
"type": {
|
|
2158
|
+
"text": "GristData"
|
|
2159
|
+
},
|
|
2160
|
+
"default": "ZERO_DATA",
|
|
2161
|
+
"attribute": "data"
|
|
2162
|
+
},
|
|
2163
|
+
{
|
|
2164
|
+
"kind": "field",
|
|
2165
|
+
"name": "_sorters",
|
|
2166
|
+
"type": {
|
|
2167
|
+
"text": "SortersConfig"
|
|
2168
|
+
},
|
|
2169
|
+
"privacy": "private",
|
|
2170
|
+
"default": "[]"
|
|
2171
|
+
},
|
|
2172
|
+
{
|
|
2173
|
+
"kind": "field",
|
|
2174
|
+
"name": "_lastAccVal",
|
|
2175
|
+
"type": {
|
|
2176
|
+
"text": "number | undefined"
|
|
2177
|
+
},
|
|
2178
|
+
"privacy": "private"
|
|
2179
|
+
},
|
|
2180
|
+
{
|
|
2181
|
+
"kind": "field",
|
|
2182
|
+
"name": "_throttledNotifier",
|
|
2183
|
+
"type": {
|
|
2184
|
+
"text": "any | undefined"
|
|
2185
|
+
},
|
|
2186
|
+
"privacy": "private"
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
"kind": "method",
|
|
2190
|
+
"name": "_renderHeader",
|
|
2191
|
+
"parameters": [
|
|
2192
|
+
{
|
|
2193
|
+
"name": "column",
|
|
2194
|
+
"type": {
|
|
2195
|
+
"text": "ColumnConfig"
|
|
2196
|
+
}
|
|
2197
|
+
}
|
|
2198
|
+
]
|
|
2199
|
+
},
|
|
2200
|
+
{
|
|
2201
|
+
"kind": "method",
|
|
2202
|
+
"name": "_renderSortHeader",
|
|
2203
|
+
"parameters": [
|
|
2204
|
+
{
|
|
2205
|
+
"name": "column",
|
|
2206
|
+
"type": {
|
|
2207
|
+
"text": "ColumnConfig"
|
|
2208
|
+
}
|
|
2209
|
+
}
|
|
2210
|
+
]
|
|
2211
|
+
},
|
|
2212
|
+
{
|
|
2213
|
+
"kind": "method",
|
|
2214
|
+
"name": "_renderFilterHeader",
|
|
2215
|
+
"parameters": [
|
|
2216
|
+
{
|
|
2217
|
+
"name": "column",
|
|
2218
|
+
"type": {
|
|
2219
|
+
"text": "ColumnConfig"
|
|
2220
|
+
}
|
|
2221
|
+
}
|
|
2222
|
+
]
|
|
2223
|
+
},
|
|
2224
|
+
{
|
|
2225
|
+
"kind": "method",
|
|
2226
|
+
"name": "_changeSort",
|
|
2227
|
+
"parameters": [
|
|
2228
|
+
{
|
|
2229
|
+
"name": "column",
|
|
2230
|
+
"type": {
|
|
2231
|
+
"text": "ColumnConfig"
|
|
2232
|
+
}
|
|
2233
|
+
}
|
|
2234
|
+
]
|
|
2235
|
+
},
|
|
2236
|
+
{
|
|
2237
|
+
"kind": "method",
|
|
2238
|
+
"name": "_accumalate",
|
|
2239
|
+
"parameters": [
|
|
2240
|
+
{
|
|
2241
|
+
"name": "x",
|
|
2242
|
+
"type": {
|
|
2243
|
+
"text": "number"
|
|
2244
|
+
}
|
|
2245
|
+
}
|
|
2246
|
+
]
|
|
2247
|
+
},
|
|
2248
|
+
{
|
|
2249
|
+
"kind": "method",
|
|
2250
|
+
"name": "_notifyWidthChange",
|
|
2251
|
+
"parameters": [
|
|
2252
|
+
{
|
|
2253
|
+
"name": "idx",
|
|
2254
|
+
"type": {
|
|
2255
|
+
"text": "number"
|
|
2256
|
+
}
|
|
2257
|
+
},
|
|
2258
|
+
{
|
|
2259
|
+
"name": "width",
|
|
2260
|
+
"type": {
|
|
2261
|
+
"text": "number"
|
|
2262
|
+
}
|
|
2263
|
+
}
|
|
2264
|
+
]
|
|
2265
|
+
},
|
|
2266
|
+
{
|
|
2267
|
+
"kind": "method",
|
|
2268
|
+
"name": "_mousedown",
|
|
2269
|
+
"parameters": [
|
|
2270
|
+
{
|
|
2271
|
+
"name": "e",
|
|
2272
|
+
"type": {
|
|
2273
|
+
"text": "MouseEvent"
|
|
2274
|
+
}
|
|
2275
|
+
},
|
|
2276
|
+
{
|
|
2277
|
+
"name": "idx",
|
|
2278
|
+
"type": {
|
|
2279
|
+
"text": "number"
|
|
2280
|
+
}
|
|
2281
|
+
}
|
|
2282
|
+
]
|
|
2283
|
+
}
|
|
2284
|
+
],
|
|
2285
|
+
"events": [
|
|
2286
|
+
{
|
|
2287
|
+
"name": "sorters-change",
|
|
2288
|
+
"type": {
|
|
2289
|
+
"text": "CustomEvent"
|
|
2290
|
+
}
|
|
2291
|
+
},
|
|
2292
|
+
{
|
|
2293
|
+
"name": "column-width-change",
|
|
2294
|
+
"type": {
|
|
2295
|
+
"text": "CustomEvent"
|
|
2296
|
+
}
|
|
2297
|
+
}
|
|
2298
|
+
],
|
|
2299
|
+
"attributes": [
|
|
2300
|
+
{
|
|
2301
|
+
"name": "config",
|
|
2302
|
+
"type": {
|
|
2303
|
+
"text": "GristConfig"
|
|
2304
|
+
},
|
|
2305
|
+
"default": "ZERO_CONFIG",
|
|
2306
|
+
"resolveInitializer": {
|
|
2307
|
+
"module": "/src/configure/zero-config"
|
|
2308
|
+
},
|
|
2309
|
+
"fieldName": "config"
|
|
2310
|
+
},
|
|
2311
|
+
{
|
|
2312
|
+
"name": "columns",
|
|
2313
|
+
"type": {
|
|
2314
|
+
"text": "ColumnConfig[]"
|
|
2315
|
+
},
|
|
2316
|
+
"default": "ZERO_COLUMNS",
|
|
2317
|
+
"resolveInitializer": {
|
|
2318
|
+
"module": "/src/configure/zero-config"
|
|
2319
|
+
},
|
|
2320
|
+
"fieldName": "columns"
|
|
2321
|
+
},
|
|
2322
|
+
{
|
|
2323
|
+
"name": "data",
|
|
2324
|
+
"type": {
|
|
2325
|
+
"text": "GristData"
|
|
2326
|
+
},
|
|
2327
|
+
"default": "ZERO_DATA",
|
|
2328
|
+
"resolveInitializer": {
|
|
2329
|
+
"module": "/src/configure/zero-config"
|
|
2330
|
+
},
|
|
2331
|
+
"fieldName": "data"
|
|
2332
|
+
}
|
|
2333
|
+
],
|
|
2334
|
+
"superclass": {
|
|
2335
|
+
"name": "LitElement",
|
|
2336
|
+
"package": "lit"
|
|
2337
|
+
},
|
|
2338
|
+
"tagName": "ox-grid-header",
|
|
2339
|
+
"customElement": true
|
|
2340
|
+
}
|
|
2341
|
+
],
|
|
2342
|
+
"exports": [
|
|
2242
2343
|
{
|
|
2243
2344
|
"kind": "js",
|
|
2244
|
-
"name": "
|
|
2345
|
+
"name": "DataGridHeader",
|
|
2245
2346
|
"declaration": {
|
|
2246
|
-
"name": "
|
|
2247
|
-
"module": "src/
|
|
2347
|
+
"name": "DataGridHeader",
|
|
2348
|
+
"module": "src/data-grid/data-grid-header.ts"
|
|
2248
2349
|
}
|
|
2249
2350
|
},
|
|
2250
2351
|
{
|
|
2251
|
-
"kind": "
|
|
2252
|
-
"name": "
|
|
2253
|
-
"declaration": {
|
|
2254
|
-
"name": "ZERO_PAGINATION",
|
|
2255
|
-
"module": "src/configure/zero-config.ts"
|
|
2256
|
-
}
|
|
2257
|
-
}
|
|
2258
|
-
]
|
|
2259
|
-
},
|
|
2260
|
-
{
|
|
2261
|
-
"kind": "javascript-module",
|
|
2262
|
-
"path": "src/data-grid/data-grid-body-style.ts",
|
|
2263
|
-
"declarations": [
|
|
2264
|
-
{
|
|
2265
|
-
"kind": "variable",
|
|
2266
|
-
"name": "dataGridBodyStyle",
|
|
2267
|
-
"default": "css`\n :host {\n display: grid;\n grid-template-columns: var(--grid-template-columns);\n grid-auto-rows: var(--grid-record-height, min-content);\n\n overflow: auto;\n outline: none;\n color: var(--grid-record-color);\n }\n\n [odd] {\n background-color: var(--grid-record-odd-background-color);\n }\n\n [selected-row] {\n background-color: var(--grid-record-selected-background-color);\n color: var(--grid-record-selected-color);\n }\n\n [focused-row] {\n box-shadow: var(--grid-record-focused-box-shadow);\n font-weight: bold;\n color: var(--grid-record-focused-color);\n background-image: var(--focused-background-image);\n background-blend-mode: darken;\n }\n\n [focused] {\n border: var(--grid-record-focused-cell-border);\n }\n\n [emphasized-row],\n [emphasized-row][focused] {\n background-color: var(--grid-record-emphasized-background-color);\n color: var(--grid-record-emphasized-color);\n }\n\n [editing] {\n background-color: var(--grid-record-editing-background-color);\n }\n\n @media print {\n :host {\n grid-template-columns: var(--grid-template-print-columns);\n }\n [focused] {\n border: none;\n }\n\n [selected-row] {\n background-color: transparent;\n }\n\n [emphasized-row] {\n background-color: transparent;\n color: initial;\n }\n\n [focused-row] {\n background-color: transparent;\n color: initial;\n }\n\n [editing] {\n background-color: transparent;\n }\n }\n`"
|
|
2268
|
-
}
|
|
2269
|
-
],
|
|
2270
|
-
"exports": [
|
|
2271
|
-
{
|
|
2272
|
-
"kind": "js",
|
|
2273
|
-
"name": "dataGridBodyStyle",
|
|
2352
|
+
"kind": "custom-element-definition",
|
|
2353
|
+
"name": "ox-grid-header",
|
|
2274
2354
|
"declaration": {
|
|
2275
|
-
"name": "
|
|
2276
|
-
"module": "src/data-grid/data-grid-
|
|
2355
|
+
"name": "DataGridHeader",
|
|
2356
|
+
"module": "src/data-grid/data-grid-header.ts"
|
|
2277
2357
|
}
|
|
2278
2358
|
}
|
|
2279
2359
|
]
|
|
2280
2360
|
},
|
|
2281
2361
|
{
|
|
2282
2362
|
"kind": "javascript-module",
|
|
2283
|
-
"path": "src/data-grid/data-grid
|
|
2363
|
+
"path": "src/data-grid/data-grid.ts",
|
|
2284
2364
|
"declarations": [
|
|
2285
2365
|
{
|
|
2286
2366
|
"kind": "class",
|
|
2287
|
-
"description": "",
|
|
2288
|
-
"name": "
|
|
2367
|
+
"description": "DataGrid",
|
|
2368
|
+
"name": "DataGrid",
|
|
2289
2369
|
"members": [
|
|
2290
|
-
{
|
|
2291
|
-
"kind": "field",
|
|
2292
|
-
"name": "debounce"
|
|
2293
|
-
},
|
|
2294
2370
|
{
|
|
2295
2371
|
"kind": "field",
|
|
2296
2372
|
"name": "config",
|
|
@@ -2300,15 +2376,6 @@
|
|
|
2300
2376
|
"default": "ZERO_CONFIG",
|
|
2301
2377
|
"attribute": "config"
|
|
2302
2378
|
},
|
|
2303
|
-
{
|
|
2304
|
-
"kind": "field",
|
|
2305
|
-
"name": "columns",
|
|
2306
|
-
"type": {
|
|
2307
|
-
"text": "ColumnConfig[]"
|
|
2308
|
-
},
|
|
2309
|
-
"default": "[]",
|
|
2310
|
-
"attribute": "columns"
|
|
2311
|
-
},
|
|
2312
2379
|
{
|
|
2313
2380
|
"kind": "field",
|
|
2314
2381
|
"name": "data",
|
|
@@ -2322,53 +2389,42 @@
|
|
|
2322
2389
|
"kind": "field",
|
|
2323
2390
|
"name": "focused",
|
|
2324
2391
|
"type": {
|
|
2325
|
-
"text": "{ row: number; column: number }"
|
|
2392
|
+
"text": "{ row: number; column: number } | undefined"
|
|
2326
2393
|
},
|
|
2327
|
-
"default": "{\n row: 0,\n column: 0\n}",
|
|
2328
2394
|
"attribute": "focused"
|
|
2329
2395
|
},
|
|
2330
2396
|
{
|
|
2331
2397
|
"kind": "field",
|
|
2332
|
-
"name": "
|
|
2398
|
+
"name": "body",
|
|
2333
2399
|
"type": {
|
|
2334
|
-
"text": "
|
|
2335
|
-
}
|
|
2336
|
-
"default": "null",
|
|
2337
|
-
"attribute": "editTarget"
|
|
2400
|
+
"text": "LitElement"
|
|
2401
|
+
}
|
|
2338
2402
|
},
|
|
2339
2403
|
{
|
|
2340
2404
|
"kind": "field",
|
|
2341
|
-
"name": "
|
|
2405
|
+
"name": "header",
|
|
2342
2406
|
"type": {
|
|
2343
|
-
"text": "
|
|
2344
|
-
}
|
|
2345
|
-
"default": "-1",
|
|
2346
|
-
"attribute": "from"
|
|
2407
|
+
"text": "DataGridHeader"
|
|
2408
|
+
}
|
|
2347
2409
|
},
|
|
2348
2410
|
{
|
|
2349
2411
|
"kind": "field",
|
|
2350
|
-
"name": "
|
|
2412
|
+
"name": "footer",
|
|
2351
2413
|
"type": {
|
|
2352
|
-
"text": "
|
|
2353
|
-
}
|
|
2354
|
-
"default": "-1",
|
|
2355
|
-
"attribute": "to"
|
|
2414
|
+
"text": "LitElement"
|
|
2415
|
+
}
|
|
2356
2416
|
},
|
|
2357
2417
|
{
|
|
2358
2418
|
"kind": "field",
|
|
2359
|
-
"name": "
|
|
2419
|
+
"name": "_widths",
|
|
2360
2420
|
"type": {
|
|
2361
|
-
"text": "
|
|
2421
|
+
"text": "string | undefined"
|
|
2362
2422
|
},
|
|
2363
2423
|
"privacy": "private"
|
|
2364
2424
|
},
|
|
2365
2425
|
{
|
|
2366
2426
|
"kind": "method",
|
|
2367
|
-
"name": "
|
|
2368
|
-
},
|
|
2369
|
-
{
|
|
2370
|
-
"kind": "method",
|
|
2371
|
-
"name": "handleOnScroll",
|
|
2427
|
+
"name": "onWheelEvent",
|
|
2372
2428
|
"parameters": [
|
|
2373
2429
|
{
|
|
2374
2430
|
"name": "e",
|
|
@@ -2380,20 +2436,14 @@
|
|
|
2380
2436
|
},
|
|
2381
2437
|
{
|
|
2382
2438
|
"kind": "method",
|
|
2383
|
-
"name": "
|
|
2439
|
+
"name": "onRecordChanged",
|
|
2384
2440
|
"parameters": [
|
|
2385
2441
|
{
|
|
2386
|
-
"name": "
|
|
2442
|
+
"name": "recordData",
|
|
2387
2443
|
"type": {
|
|
2388
|
-
"text": "
|
|
2444
|
+
"text": "GristRecord"
|
|
2389
2445
|
}
|
|
2390
|
-
}
|
|
2391
|
-
]
|
|
2392
|
-
},
|
|
2393
|
-
{
|
|
2394
|
-
"kind": "method",
|
|
2395
|
-
"name": "startEditTarget",
|
|
2396
|
-
"parameters": [
|
|
2446
|
+
},
|
|
2397
2447
|
{
|
|
2398
2448
|
"name": "row",
|
|
2399
2449
|
"type": {
|
|
@@ -2403,7 +2453,19 @@
|
|
|
2403
2453
|
{
|
|
2404
2454
|
"name": "column",
|
|
2405
2455
|
"type": {
|
|
2406
|
-
"text": "
|
|
2456
|
+
"text": "ColumnConfig | null"
|
|
2457
|
+
}
|
|
2458
|
+
}
|
|
2459
|
+
]
|
|
2460
|
+
},
|
|
2461
|
+
{
|
|
2462
|
+
"kind": "method",
|
|
2463
|
+
"name": "calculateWidths",
|
|
2464
|
+
"parameters": [
|
|
2465
|
+
{
|
|
2466
|
+
"name": "columns",
|
|
2467
|
+
"type": {
|
|
2468
|
+
"text": "ColumnConfig[]"
|
|
2407
2469
|
}
|
|
2408
2470
|
}
|
|
2409
2471
|
]
|
|
@@ -2411,6 +2473,18 @@
|
|
|
2411
2473
|
{
|
|
2412
2474
|
"kind": "method",
|
|
2413
2475
|
"name": "focus"
|
|
2476
|
+
},
|
|
2477
|
+
{
|
|
2478
|
+
"kind": "field",
|
|
2479
|
+
"name": "pullToRefreshTarget"
|
|
2480
|
+
}
|
|
2481
|
+
],
|
|
2482
|
+
"events": [
|
|
2483
|
+
{
|
|
2484
|
+
"name": "record-change",
|
|
2485
|
+
"type": {
|
|
2486
|
+
"text": "CustomEvent"
|
|
2487
|
+
}
|
|
2414
2488
|
}
|
|
2415
2489
|
],
|
|
2416
2490
|
"attributes": [
|
|
@@ -2425,14 +2499,6 @@
|
|
|
2425
2499
|
},
|
|
2426
2500
|
"fieldName": "config"
|
|
2427
2501
|
},
|
|
2428
|
-
{
|
|
2429
|
-
"name": "columns",
|
|
2430
|
-
"type": {
|
|
2431
|
-
"text": "ColumnConfig[]"
|
|
2432
|
-
},
|
|
2433
|
-
"default": "[]",
|
|
2434
|
-
"fieldName": "columns"
|
|
2435
|
-
},
|
|
2436
2502
|
{
|
|
2437
2503
|
"name": "data",
|
|
2438
2504
|
"type": {
|
|
@@ -2447,101 +2513,180 @@
|
|
|
2447
2513
|
{
|
|
2448
2514
|
"name": "focused",
|
|
2449
2515
|
"type": {
|
|
2450
|
-
"text": "{ row: number; column: number }"
|
|
2516
|
+
"text": "{ row: number; column: number } | undefined"
|
|
2451
2517
|
},
|
|
2452
|
-
"
|
|
2518
|
+
"fieldName": "focused"
|
|
2519
|
+
}
|
|
2520
|
+
],
|
|
2521
|
+
"superclass": {
|
|
2522
|
+
"name": "LitElement",
|
|
2523
|
+
"package": "lit"
|
|
2524
|
+
},
|
|
2525
|
+
"tagName": "ox-grid",
|
|
2526
|
+
"customElement": true
|
|
2527
|
+
}
|
|
2528
|
+
],
|
|
2529
|
+
"exports": [
|
|
2530
|
+
{
|
|
2531
|
+
"kind": "js",
|
|
2532
|
+
"name": "DataGrid",
|
|
2533
|
+
"declaration": {
|
|
2534
|
+
"name": "DataGrid",
|
|
2535
|
+
"module": "src/data-grid/data-grid.ts"
|
|
2536
|
+
}
|
|
2537
|
+
},
|
|
2538
|
+
{
|
|
2539
|
+
"kind": "custom-element-definition",
|
|
2540
|
+
"name": "ox-grid",
|
|
2541
|
+
"declaration": {
|
|
2542
|
+
"name": "DataGrid",
|
|
2543
|
+
"module": "src/data-grid/data-grid.ts"
|
|
2544
|
+
}
|
|
2545
|
+
}
|
|
2546
|
+
]
|
|
2547
|
+
},
|
|
2548
|
+
{
|
|
2549
|
+
"kind": "javascript-module",
|
|
2550
|
+
"path": "src/data-card/data-card-field.ts",
|
|
2551
|
+
"declarations": [
|
|
2552
|
+
{
|
|
2553
|
+
"kind": "class",
|
|
2554
|
+
"description": "",
|
|
2555
|
+
"name": "DataCardField",
|
|
2556
|
+
"members": [
|
|
2557
|
+
{
|
|
2558
|
+
"kind": "field",
|
|
2559
|
+
"name": "align",
|
|
2560
|
+
"type": {
|
|
2561
|
+
"text": "string | undefined"
|
|
2562
|
+
},
|
|
2563
|
+
"attribute": "align"
|
|
2564
|
+
},
|
|
2565
|
+
{
|
|
2566
|
+
"kind": "field",
|
|
2567
|
+
"name": "record",
|
|
2568
|
+
"type": {
|
|
2569
|
+
"text": "GristRecord"
|
|
2570
|
+
},
|
|
2571
|
+
"default": "ZERO_RECORD",
|
|
2572
|
+
"attribute": "record"
|
|
2573
|
+
},
|
|
2574
|
+
{
|
|
2575
|
+
"kind": "field",
|
|
2576
|
+
"name": "column",
|
|
2577
|
+
"type": {
|
|
2578
|
+
"text": "ColumnConfig"
|
|
2579
|
+
},
|
|
2580
|
+
"default": "ZERO_COLUMN",
|
|
2581
|
+
"attribute": "column"
|
|
2582
|
+
},
|
|
2583
|
+
{
|
|
2584
|
+
"kind": "field",
|
|
2585
|
+
"name": "rowIndex",
|
|
2586
|
+
"type": {
|
|
2587
|
+
"text": "number"
|
|
2588
|
+
},
|
|
2589
|
+
"default": "-1",
|
|
2590
|
+
"attribute": "rowIndex"
|
|
2591
|
+
},
|
|
2592
|
+
{
|
|
2593
|
+
"kind": "field",
|
|
2594
|
+
"name": "value",
|
|
2595
|
+
"type": {
|
|
2596
|
+
"text": "object | undefined"
|
|
2597
|
+
},
|
|
2598
|
+
"attribute": "value"
|
|
2599
|
+
}
|
|
2600
|
+
],
|
|
2601
|
+
"attributes": [
|
|
2602
|
+
{
|
|
2603
|
+
"name": "align",
|
|
2604
|
+
"type": {
|
|
2605
|
+
"text": "string | undefined"
|
|
2606
|
+
},
|
|
2607
|
+
"fieldName": "align"
|
|
2608
|
+
},
|
|
2609
|
+
{
|
|
2610
|
+
"name": "record",
|
|
2611
|
+
"type": {
|
|
2612
|
+
"text": "GristRecord"
|
|
2613
|
+
},
|
|
2614
|
+
"default": "ZERO_RECORD",
|
|
2453
2615
|
"resolveInitializer": {
|
|
2454
|
-
"module": "src/
|
|
2616
|
+
"module": "/src/configure/zero-config"
|
|
2455
2617
|
},
|
|
2456
|
-
"fieldName": "
|
|
2618
|
+
"fieldName": "record"
|
|
2457
2619
|
},
|
|
2458
2620
|
{
|
|
2459
|
-
"name": "
|
|
2621
|
+
"name": "column",
|
|
2460
2622
|
"type": {
|
|
2461
|
-
"text": "
|
|
2623
|
+
"text": "ColumnConfig"
|
|
2462
2624
|
},
|
|
2463
|
-
"default": "
|
|
2464
|
-
"
|
|
2625
|
+
"default": "ZERO_COLUMN",
|
|
2626
|
+
"resolveInitializer": {
|
|
2627
|
+
"module": "/src/configure/zero-config"
|
|
2628
|
+
},
|
|
2629
|
+
"fieldName": "column"
|
|
2465
2630
|
},
|
|
2466
2631
|
{
|
|
2467
|
-
"name": "
|
|
2632
|
+
"name": "rowIndex",
|
|
2468
2633
|
"type": {
|
|
2469
2634
|
"text": "number"
|
|
2470
2635
|
},
|
|
2471
2636
|
"default": "-1",
|
|
2472
|
-
"fieldName": "
|
|
2637
|
+
"fieldName": "rowIndex"
|
|
2473
2638
|
},
|
|
2474
2639
|
{
|
|
2475
|
-
"name": "
|
|
2640
|
+
"name": "value",
|
|
2476
2641
|
"type": {
|
|
2477
|
-
"text": "
|
|
2642
|
+
"text": "object | undefined"
|
|
2478
2643
|
},
|
|
2479
|
-
"
|
|
2480
|
-
"fieldName": "to"
|
|
2644
|
+
"fieldName": "value"
|
|
2481
2645
|
}
|
|
2482
2646
|
],
|
|
2483
2647
|
"superclass": {
|
|
2484
2648
|
"name": "LitElement",
|
|
2485
2649
|
"package": "lit"
|
|
2486
2650
|
},
|
|
2487
|
-
"tagName": "ox-
|
|
2651
|
+
"tagName": "ox-card-field",
|
|
2488
2652
|
"customElement": true
|
|
2489
2653
|
}
|
|
2490
2654
|
],
|
|
2491
2655
|
"exports": [
|
|
2492
2656
|
{
|
|
2493
2657
|
"kind": "js",
|
|
2494
|
-
"name": "
|
|
2658
|
+
"name": "DataCardField",
|
|
2495
2659
|
"declaration": {
|
|
2496
|
-
"name": "
|
|
2497
|
-
"module": "src/data-
|
|
2660
|
+
"name": "DataCardField",
|
|
2661
|
+
"module": "src/data-card/data-card-field.ts"
|
|
2498
2662
|
}
|
|
2499
2663
|
},
|
|
2500
2664
|
{
|
|
2501
2665
|
"kind": "custom-element-definition",
|
|
2502
|
-
"name": "ox-
|
|
2666
|
+
"name": "ox-card-field",
|
|
2503
2667
|
"declaration": {
|
|
2504
|
-
"name": "
|
|
2505
|
-
"module": "src/data-
|
|
2668
|
+
"name": "DataCardField",
|
|
2669
|
+
"module": "src/data-card/data-card-field.ts"
|
|
2506
2670
|
}
|
|
2507
2671
|
}
|
|
2508
2672
|
]
|
|
2509
2673
|
},
|
|
2510
2674
|
{
|
|
2511
2675
|
"kind": "javascript-module",
|
|
2512
|
-
"path": "src/data-
|
|
2676
|
+
"path": "src/data-card/data-card-gutter-menu.ts",
|
|
2513
2677
|
"declarations": [
|
|
2514
2678
|
{
|
|
2515
2679
|
"kind": "class",
|
|
2516
2680
|
"description": "",
|
|
2517
|
-
"name": "
|
|
2681
|
+
"name": "DataCardGutterMenu",
|
|
2518
2682
|
"members": [
|
|
2519
2683
|
{
|
|
2520
2684
|
"kind": "field",
|
|
2521
|
-
"name": "
|
|
2522
|
-
"default": "'left'",
|
|
2523
|
-
"attribute": "align",
|
|
2524
|
-
"type": {
|
|
2525
|
-
"text": "string"
|
|
2526
|
-
}
|
|
2527
|
-
},
|
|
2528
|
-
{
|
|
2529
|
-
"kind": "field",
|
|
2530
|
-
"name": "record",
|
|
2531
|
-
"type": {
|
|
2532
|
-
"text": "GristRecord"
|
|
2533
|
-
},
|
|
2534
|
-
"default": "{}",
|
|
2535
|
-
"attribute": "record"
|
|
2536
|
-
},
|
|
2537
|
-
{
|
|
2538
|
-
"kind": "field",
|
|
2539
|
-
"name": "column",
|
|
2685
|
+
"name": "gutters",
|
|
2540
2686
|
"type": {
|
|
2541
|
-
"text": "ColumnConfig"
|
|
2687
|
+
"text": "ColumnConfig[]"
|
|
2542
2688
|
},
|
|
2543
|
-
"
|
|
2544
|
-
"attribute": "column"
|
|
2689
|
+
"attribute": "gutters"
|
|
2545
2690
|
},
|
|
2546
2691
|
{
|
|
2547
2692
|
"kind": "field",
|
|
@@ -2549,298 +2694,250 @@
|
|
|
2549
2694
|
"type": {
|
|
2550
2695
|
"text": "number"
|
|
2551
2696
|
},
|
|
2552
|
-
"default": "0",
|
|
2553
2697
|
"attribute": "rowIndex"
|
|
2554
2698
|
},
|
|
2555
2699
|
{
|
|
2556
2700
|
"kind": "field",
|
|
2557
|
-
"name": "
|
|
2558
|
-
"type": {
|
|
2559
|
-
"text": "number"
|
|
2560
|
-
},
|
|
2561
|
-
"default": "0",
|
|
2562
|
-
"attribute": "columnIndex"
|
|
2563
|
-
},
|
|
2564
|
-
{
|
|
2565
|
-
"kind": "field",
|
|
2566
|
-
"name": "editing",
|
|
2567
|
-
"type": {
|
|
2568
|
-
"text": "boolean"
|
|
2569
|
-
},
|
|
2570
|
-
"default": "false",
|
|
2571
|
-
"attribute": "editing"
|
|
2572
|
-
},
|
|
2573
|
-
{
|
|
2574
|
-
"kind": "field",
|
|
2575
|
-
"name": "value",
|
|
2701
|
+
"name": "record",
|
|
2576
2702
|
"type": {
|
|
2577
|
-
"text": "
|
|
2703
|
+
"text": "GristRecord"
|
|
2578
2704
|
},
|
|
2579
|
-
"
|
|
2580
|
-
"attribute": "value"
|
|
2705
|
+
"attribute": "record"
|
|
2581
2706
|
},
|
|
2582
2707
|
{
|
|
2583
2708
|
"kind": "field",
|
|
2584
|
-
"name": "
|
|
2709
|
+
"name": "clickHandler",
|
|
2585
2710
|
"type": {
|
|
2586
|
-
"text": "
|
|
2711
|
+
"text": "EventListener"
|
|
2587
2712
|
},
|
|
2588
|
-
"
|
|
2589
|
-
"attribute": "emphasized"
|
|
2713
|
+
"attribute": "clickHandler"
|
|
2590
2714
|
},
|
|
2591
2715
|
{
|
|
2592
2716
|
"kind": "field",
|
|
2593
|
-
"name": "
|
|
2717
|
+
"name": "dblclickHandler",
|
|
2594
2718
|
"type": {
|
|
2595
|
-
"text": "
|
|
2719
|
+
"text": "EventListener"
|
|
2596
2720
|
},
|
|
2597
|
-
"
|
|
2721
|
+
"attribute": "dblclickHandler"
|
|
2598
2722
|
},
|
|
2599
2723
|
{
|
|
2600
2724
|
"kind": "field",
|
|
2601
|
-
"name": "
|
|
2725
|
+
"name": "icon",
|
|
2602
2726
|
"type": {
|
|
2603
|
-
"text": "
|
|
2604
|
-
}
|
|
2605
|
-
"privacy": "private",
|
|
2606
|
-
"default": "e => {}"
|
|
2727
|
+
"text": "Element"
|
|
2728
|
+
}
|
|
2607
2729
|
},
|
|
2608
2730
|
{
|
|
2609
|
-
"kind": "
|
|
2610
|
-
"name": "
|
|
2611
|
-
"type": {
|
|
2612
|
-
"text": "(e: KeyboardEvent) => void"
|
|
2613
|
-
},
|
|
2614
|
-
"privacy": "private",
|
|
2615
|
-
"default": "e => {}"
|
|
2731
|
+
"kind": "method",
|
|
2732
|
+
"name": "menuRender"
|
|
2616
2733
|
},
|
|
2617
2734
|
{
|
|
2618
|
-
"kind": "
|
|
2619
|
-
"name": "
|
|
2620
|
-
"
|
|
2735
|
+
"kind": "method",
|
|
2736
|
+
"name": "open",
|
|
2737
|
+
"parameters": [
|
|
2738
|
+
{
|
|
2739
|
+
"name": "e",
|
|
2740
|
+
"type": {
|
|
2741
|
+
"text": "Event"
|
|
2742
|
+
}
|
|
2743
|
+
}
|
|
2744
|
+
]
|
|
2621
2745
|
}
|
|
2622
2746
|
],
|
|
2623
2747
|
"attributes": [
|
|
2624
2748
|
{
|
|
2625
|
-
"name": "
|
|
2626
|
-
"default": "DEFAULT_TEXT_ALIGN",
|
|
2627
|
-
"resolveInitializer": {
|
|
2628
|
-
"module": "src/data-grid/data-grid-field.ts"
|
|
2629
|
-
},
|
|
2630
|
-
"fieldName": "align"
|
|
2631
|
-
},
|
|
2632
|
-
{
|
|
2633
|
-
"name": "record",
|
|
2634
|
-
"type": {
|
|
2635
|
-
"text": "GristRecord"
|
|
2636
|
-
},
|
|
2637
|
-
"default": "{}",
|
|
2638
|
-
"fieldName": "record"
|
|
2639
|
-
},
|
|
2640
|
-
{
|
|
2641
|
-
"name": "column",
|
|
2749
|
+
"name": "gutters",
|
|
2642
2750
|
"type": {
|
|
2643
|
-
"text": "ColumnConfig"
|
|
2644
|
-
},
|
|
2645
|
-
"default": "ZERO_COLUMN",
|
|
2646
|
-
"resolveInitializer": {
|
|
2647
|
-
"module": "/src/configure/zero-config"
|
|
2751
|
+
"text": "ColumnConfig[]"
|
|
2648
2752
|
},
|
|
2649
|
-
"fieldName": "
|
|
2753
|
+
"fieldName": "gutters"
|
|
2650
2754
|
},
|
|
2651
2755
|
{
|
|
2652
2756
|
"name": "rowIndex",
|
|
2653
2757
|
"type": {
|
|
2654
2758
|
"text": "number"
|
|
2655
2759
|
},
|
|
2656
|
-
"default": "0",
|
|
2657
2760
|
"fieldName": "rowIndex"
|
|
2658
2761
|
},
|
|
2659
2762
|
{
|
|
2660
|
-
"name": "
|
|
2661
|
-
"type": {
|
|
2662
|
-
"text": "number"
|
|
2663
|
-
},
|
|
2664
|
-
"default": "0",
|
|
2665
|
-
"fieldName": "columnIndex"
|
|
2666
|
-
},
|
|
2667
|
-
{
|
|
2668
|
-
"name": "editing",
|
|
2763
|
+
"name": "record",
|
|
2669
2764
|
"type": {
|
|
2670
|
-
"text": "
|
|
2765
|
+
"text": "GristRecord"
|
|
2671
2766
|
},
|
|
2672
|
-
"
|
|
2673
|
-
"fieldName": "editing"
|
|
2767
|
+
"fieldName": "record"
|
|
2674
2768
|
},
|
|
2675
2769
|
{
|
|
2676
|
-
"name": "
|
|
2770
|
+
"name": "clickHandler",
|
|
2677
2771
|
"type": {
|
|
2678
|
-
"text": "
|
|
2772
|
+
"text": "EventListener"
|
|
2679
2773
|
},
|
|
2680
|
-
"
|
|
2681
|
-
"fieldName": "value"
|
|
2774
|
+
"fieldName": "clickHandler"
|
|
2682
2775
|
},
|
|
2683
2776
|
{
|
|
2684
|
-
"name": "
|
|
2777
|
+
"name": "dblclickHandler",
|
|
2685
2778
|
"type": {
|
|
2686
|
-
"text": "
|
|
2779
|
+
"text": "EventListener"
|
|
2687
2780
|
},
|
|
2688
|
-
"
|
|
2689
|
-
"fieldName": "emphasized"
|
|
2781
|
+
"fieldName": "dblclickHandler"
|
|
2690
2782
|
}
|
|
2691
2783
|
],
|
|
2692
2784
|
"superclass": {
|
|
2693
2785
|
"name": "LitElement",
|
|
2694
2786
|
"package": "lit"
|
|
2695
2787
|
},
|
|
2696
|
-
"tagName": "ox-
|
|
2788
|
+
"tagName": "ox-card-gutter-menu",
|
|
2697
2789
|
"customElement": true
|
|
2698
2790
|
}
|
|
2699
2791
|
],
|
|
2700
2792
|
"exports": [
|
|
2701
|
-
{
|
|
2702
|
-
"kind": "js",
|
|
2703
|
-
"name": "DataGridField",
|
|
2704
|
-
"declaration": {
|
|
2705
|
-
"name": "DataGridField",
|
|
2706
|
-
"module": "src/data-grid/data-grid-field.ts"
|
|
2707
|
-
}
|
|
2708
|
-
},
|
|
2709
2793
|
{
|
|
2710
2794
|
"kind": "custom-element-definition",
|
|
2711
|
-
"name": "ox-
|
|
2795
|
+
"name": "ox-card-gutter-menu",
|
|
2712
2796
|
"declaration": {
|
|
2713
|
-
"name": "
|
|
2714
|
-
"module": "src/data-
|
|
2797
|
+
"name": "DataCardGutterMenu",
|
|
2798
|
+
"module": "src/data-card/data-card-gutter-menu.ts"
|
|
2715
2799
|
}
|
|
2716
2800
|
}
|
|
2717
2801
|
]
|
|
2718
2802
|
},
|
|
2719
2803
|
{
|
|
2720
2804
|
"kind": "javascript-module",
|
|
2721
|
-
"path": "src/data-
|
|
2805
|
+
"path": "src/data-card/data-card-gutter.ts",
|
|
2722
2806
|
"declarations": [
|
|
2723
2807
|
{
|
|
2724
2808
|
"kind": "class",
|
|
2725
2809
|
"description": "",
|
|
2726
|
-
"name": "
|
|
2810
|
+
"name": "DataCardGutter",
|
|
2727
2811
|
"members": [
|
|
2728
2812
|
{
|
|
2729
2813
|
"kind": "field",
|
|
2730
|
-
"name": "
|
|
2814
|
+
"name": "align",
|
|
2731
2815
|
"type": {
|
|
2732
|
-
"text": "
|
|
2816
|
+
"text": "string | undefined"
|
|
2733
2817
|
},
|
|
2734
|
-
"
|
|
2735
|
-
"attribute": "config"
|
|
2818
|
+
"attribute": "align"
|
|
2736
2819
|
},
|
|
2737
2820
|
{
|
|
2738
2821
|
"kind": "field",
|
|
2739
|
-
"name": "
|
|
2822
|
+
"name": "record",
|
|
2740
2823
|
"type": {
|
|
2741
|
-
"text": "
|
|
2824
|
+
"text": "GristRecord"
|
|
2742
2825
|
},
|
|
2743
|
-
"default": "
|
|
2744
|
-
"attribute": "
|
|
2826
|
+
"default": "ZERO_RECORD",
|
|
2827
|
+
"attribute": "record"
|
|
2745
2828
|
},
|
|
2746
2829
|
{
|
|
2747
|
-
"kind": "
|
|
2748
|
-
"name": "
|
|
2749
|
-
"
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
}
|
|
2755
|
-
}
|
|
2756
|
-
]
|
|
2830
|
+
"kind": "field",
|
|
2831
|
+
"name": "column",
|
|
2832
|
+
"type": {
|
|
2833
|
+
"text": "ColumnConfig"
|
|
2834
|
+
},
|
|
2835
|
+
"default": "ZERO_COLUMN",
|
|
2836
|
+
"attribute": "column"
|
|
2757
2837
|
},
|
|
2758
2838
|
{
|
|
2759
|
-
"kind": "
|
|
2760
|
-
"name": "
|
|
2761
|
-
"
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
}
|
|
2768
|
-
]
|
|
2769
|
-
}
|
|
2770
|
-
],
|
|
2771
|
-
"events": [
|
|
2839
|
+
"kind": "field",
|
|
2840
|
+
"name": "rowIndex",
|
|
2841
|
+
"type": {
|
|
2842
|
+
"text": "number"
|
|
2843
|
+
},
|
|
2844
|
+
"default": "-1",
|
|
2845
|
+
"attribute": "rowIndex"
|
|
2846
|
+
},
|
|
2772
2847
|
{
|
|
2773
|
-
"
|
|
2848
|
+
"kind": "field",
|
|
2849
|
+
"name": "value",
|
|
2774
2850
|
"type": {
|
|
2775
|
-
"text": "
|
|
2776
|
-
}
|
|
2851
|
+
"text": "object | undefined"
|
|
2852
|
+
},
|
|
2853
|
+
"attribute": "value"
|
|
2777
2854
|
},
|
|
2778
2855
|
{
|
|
2779
|
-
"
|
|
2780
|
-
"
|
|
2781
|
-
"text": "CustomEvent"
|
|
2782
|
-
}
|
|
2856
|
+
"kind": "field",
|
|
2857
|
+
"name": "isEditing"
|
|
2783
2858
|
}
|
|
2784
2859
|
],
|
|
2785
2860
|
"attributes": [
|
|
2786
2861
|
{
|
|
2787
|
-
"name": "
|
|
2862
|
+
"name": "align",
|
|
2788
2863
|
"type": {
|
|
2789
|
-
"text": "
|
|
2864
|
+
"text": "string | undefined"
|
|
2790
2865
|
},
|
|
2791
|
-
"
|
|
2866
|
+
"fieldName": "align"
|
|
2867
|
+
},
|
|
2868
|
+
{
|
|
2869
|
+
"name": "record",
|
|
2870
|
+
"type": {
|
|
2871
|
+
"text": "GristRecord"
|
|
2872
|
+
},
|
|
2873
|
+
"default": "ZERO_RECORD",
|
|
2792
2874
|
"resolveInitializer": {
|
|
2793
2875
|
"module": "/src/configure/zero-config"
|
|
2794
2876
|
},
|
|
2795
|
-
"fieldName": "
|
|
2877
|
+
"fieldName": "record"
|
|
2796
2878
|
},
|
|
2797
2879
|
{
|
|
2798
|
-
"name": "
|
|
2880
|
+
"name": "column",
|
|
2799
2881
|
"type": {
|
|
2800
|
-
"text": "
|
|
2882
|
+
"text": "ColumnConfig"
|
|
2801
2883
|
},
|
|
2802
|
-
"default": "
|
|
2884
|
+
"default": "ZERO_COLUMN",
|
|
2803
2885
|
"resolveInitializer": {
|
|
2804
2886
|
"module": "/src/configure/zero-config"
|
|
2805
2887
|
},
|
|
2806
|
-
"fieldName": "
|
|
2888
|
+
"fieldName": "column"
|
|
2889
|
+
},
|
|
2890
|
+
{
|
|
2891
|
+
"name": "rowIndex",
|
|
2892
|
+
"type": {
|
|
2893
|
+
"text": "number"
|
|
2894
|
+
},
|
|
2895
|
+
"default": "-1",
|
|
2896
|
+
"fieldName": "rowIndex"
|
|
2897
|
+
},
|
|
2898
|
+
{
|
|
2899
|
+
"name": "value",
|
|
2900
|
+
"type": {
|
|
2901
|
+
"text": "object | undefined"
|
|
2902
|
+
},
|
|
2903
|
+
"fieldName": "value"
|
|
2807
2904
|
}
|
|
2808
2905
|
],
|
|
2809
2906
|
"superclass": {
|
|
2810
2907
|
"name": "LitElement",
|
|
2811
2908
|
"package": "lit"
|
|
2812
2909
|
},
|
|
2813
|
-
"tagName": "ox-
|
|
2910
|
+
"tagName": "ox-card-gutter",
|
|
2814
2911
|
"customElement": true
|
|
2815
2912
|
}
|
|
2816
2913
|
],
|
|
2817
2914
|
"exports": [
|
|
2818
2915
|
{
|
|
2819
2916
|
"kind": "js",
|
|
2820
|
-
"name": "
|
|
2917
|
+
"name": "DataCardGutter",
|
|
2821
2918
|
"declaration": {
|
|
2822
|
-
"name": "
|
|
2823
|
-
"module": "src/data-
|
|
2919
|
+
"name": "DataCardGutter",
|
|
2920
|
+
"module": "src/data-card/data-card-gutter.ts"
|
|
2824
2921
|
}
|
|
2825
2922
|
},
|
|
2826
2923
|
{
|
|
2827
2924
|
"kind": "custom-element-definition",
|
|
2828
|
-
"name": "ox-
|
|
2925
|
+
"name": "ox-card-gutter",
|
|
2829
2926
|
"declaration": {
|
|
2830
|
-
"name": "
|
|
2831
|
-
"module": "src/data-
|
|
2927
|
+
"name": "DataCardGutter",
|
|
2928
|
+
"module": "src/data-card/data-card-gutter.ts"
|
|
2832
2929
|
}
|
|
2833
2930
|
}
|
|
2834
2931
|
]
|
|
2835
2932
|
},
|
|
2836
2933
|
{
|
|
2837
2934
|
"kind": "javascript-module",
|
|
2838
|
-
"path": "src/data-
|
|
2935
|
+
"path": "src/data-card/data-card.ts",
|
|
2839
2936
|
"declarations": [
|
|
2840
2937
|
{
|
|
2841
2938
|
"kind": "class",
|
|
2842
2939
|
"description": "",
|
|
2843
|
-
"name": "
|
|
2940
|
+
"name": "DataCard",
|
|
2844
2941
|
"members": [
|
|
2845
2942
|
{
|
|
2846
2943
|
"kind": "field",
|
|
@@ -2851,15 +2948,6 @@
|
|
|
2851
2948
|
"default": "ZERO_CONFIG",
|
|
2852
2949
|
"attribute": "config"
|
|
2853
2950
|
},
|
|
2854
|
-
{
|
|
2855
|
-
"kind": "field",
|
|
2856
|
-
"name": "columns",
|
|
2857
|
-
"type": {
|
|
2858
|
-
"text": "ColumnConfig[]"
|
|
2859
|
-
},
|
|
2860
|
-
"default": "ZERO_COLUMNS",
|
|
2861
|
-
"attribute": "columns"
|
|
2862
|
-
},
|
|
2863
2951
|
{
|
|
2864
2952
|
"kind": "field",
|
|
2865
2953
|
"name": "data",
|
|
@@ -2871,135 +2959,100 @@
|
|
|
2871
2959
|
},
|
|
2872
2960
|
{
|
|
2873
2961
|
"kind": "field",
|
|
2874
|
-
"name": "
|
|
2962
|
+
"name": "isTop",
|
|
2875
2963
|
"type": {
|
|
2876
|
-
"text": "
|
|
2964
|
+
"text": "boolean"
|
|
2877
2965
|
},
|
|
2878
|
-
"
|
|
2879
|
-
"
|
|
2966
|
+
"default": "false",
|
|
2967
|
+
"attribute": "isTop"
|
|
2880
2968
|
},
|
|
2881
2969
|
{
|
|
2882
2970
|
"kind": "field",
|
|
2883
|
-
"name": "
|
|
2971
|
+
"name": "_records",
|
|
2884
2972
|
"type": {
|
|
2885
|
-
"text": "
|
|
2973
|
+
"text": "GristRecord[]"
|
|
2886
2974
|
},
|
|
2887
|
-
"privacy": "private"
|
|
2975
|
+
"privacy": "private",
|
|
2976
|
+
"default": "[]",
|
|
2977
|
+
"attribute": "_records"
|
|
2888
2978
|
},
|
|
2889
2979
|
{
|
|
2890
2980
|
"kind": "field",
|
|
2891
|
-
"name": "
|
|
2981
|
+
"name": "_total",
|
|
2892
2982
|
"type": {
|
|
2893
|
-
"text": "
|
|
2983
|
+
"text": "number"
|
|
2894
2984
|
},
|
|
2895
|
-
"privacy": "private"
|
|
2896
|
-
|
|
2897
|
-
{
|
|
2898
|
-
"kind": "method",
|
|
2899
|
-
"name": "_renderHeader",
|
|
2900
|
-
"parameters": [
|
|
2901
|
-
{
|
|
2902
|
-
"name": "column",
|
|
2903
|
-
"type": {
|
|
2904
|
-
"text": "ColumnConfig"
|
|
2905
|
-
}
|
|
2906
|
-
}
|
|
2907
|
-
]
|
|
2908
|
-
},
|
|
2909
|
-
{
|
|
2910
|
-
"kind": "method",
|
|
2911
|
-
"name": "_renderSortHeader",
|
|
2912
|
-
"parameters": [
|
|
2913
|
-
{
|
|
2914
|
-
"name": "column",
|
|
2915
|
-
"type": {
|
|
2916
|
-
"text": "ColumnConfig"
|
|
2917
|
-
}
|
|
2918
|
-
}
|
|
2919
|
-
]
|
|
2985
|
+
"privacy": "private",
|
|
2986
|
+
"default": "0"
|
|
2920
2987
|
},
|
|
2921
2988
|
{
|
|
2922
|
-
"kind": "
|
|
2923
|
-
"name": "
|
|
2924
|
-
"
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
}
|
|
2930
|
-
}
|
|
2931
|
-
]
|
|
2989
|
+
"kind": "field",
|
|
2990
|
+
"name": "_limit",
|
|
2991
|
+
"type": {
|
|
2992
|
+
"text": "number"
|
|
2993
|
+
},
|
|
2994
|
+
"privacy": "private",
|
|
2995
|
+
"default": "20"
|
|
2932
2996
|
},
|
|
2933
2997
|
{
|
|
2934
|
-
"kind": "
|
|
2935
|
-
"name": "
|
|
2936
|
-
"
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
}
|
|
2942
|
-
}
|
|
2943
|
-
]
|
|
2998
|
+
"kind": "field",
|
|
2999
|
+
"name": "_page",
|
|
3000
|
+
"type": {
|
|
3001
|
+
"text": "number"
|
|
3002
|
+
},
|
|
3003
|
+
"privacy": "private",
|
|
3004
|
+
"default": "1"
|
|
2944
3005
|
},
|
|
2945
3006
|
{
|
|
2946
3007
|
"kind": "method",
|
|
2947
|
-
"name": "
|
|
3008
|
+
"name": "onRecordChanged",
|
|
2948
3009
|
"parameters": [
|
|
2949
3010
|
{
|
|
2950
|
-
"name": "
|
|
3011
|
+
"name": "recordData",
|
|
2951
3012
|
"type": {
|
|
2952
|
-
"text": "
|
|
3013
|
+
"text": "GristRecord"
|
|
2953
3014
|
}
|
|
2954
|
-
}
|
|
2955
|
-
]
|
|
2956
|
-
},
|
|
2957
|
-
{
|
|
2958
|
-
"kind": "method",
|
|
2959
|
-
"name": "_notifyWidthChange",
|
|
2960
|
-
"parameters": [
|
|
3015
|
+
},
|
|
2961
3016
|
{
|
|
2962
|
-
"name": "
|
|
3017
|
+
"name": "row",
|
|
2963
3018
|
"type": {
|
|
2964
3019
|
"text": "number"
|
|
2965
3020
|
}
|
|
2966
3021
|
},
|
|
2967
3022
|
{
|
|
2968
|
-
"name": "
|
|
3023
|
+
"name": "column",
|
|
2969
3024
|
"type": {
|
|
2970
|
-
"text": "
|
|
3025
|
+
"text": "ColumnConfig | null"
|
|
2971
3026
|
}
|
|
2972
3027
|
}
|
|
2973
3028
|
]
|
|
2974
3029
|
},
|
|
2975
3030
|
{
|
|
2976
3031
|
"kind": "method",
|
|
2977
|
-
"name": "
|
|
3032
|
+
"name": "gotoTop",
|
|
2978
3033
|
"parameters": [
|
|
2979
3034
|
{
|
|
2980
3035
|
"name": "e",
|
|
2981
3036
|
"type": {
|
|
2982
|
-
"text": "
|
|
2983
|
-
}
|
|
2984
|
-
},
|
|
2985
|
-
{
|
|
2986
|
-
"name": "idx",
|
|
2987
|
-
"type": {
|
|
2988
|
-
"text": "number"
|
|
3037
|
+
"text": "Event"
|
|
2989
3038
|
}
|
|
2990
3039
|
}
|
|
2991
3040
|
]
|
|
3041
|
+
},
|
|
3042
|
+
{
|
|
3043
|
+
"kind": "field",
|
|
3044
|
+
"name": "pullToRefreshTarget"
|
|
2992
3045
|
}
|
|
2993
3046
|
],
|
|
2994
3047
|
"events": [
|
|
2995
3048
|
{
|
|
2996
|
-
"name": "
|
|
3049
|
+
"name": "attach-page",
|
|
2997
3050
|
"type": {
|
|
2998
3051
|
"text": "CustomEvent"
|
|
2999
3052
|
}
|
|
3000
3053
|
},
|
|
3001
3054
|
{
|
|
3002
|
-
"name": "
|
|
3055
|
+
"name": "record-change",
|
|
3003
3056
|
"type": {
|
|
3004
3057
|
"text": "CustomEvent"
|
|
3005
3058
|
}
|
|
@@ -3018,63 +3071,68 @@
|
|
|
3018
3071
|
"fieldName": "config"
|
|
3019
3072
|
},
|
|
3020
3073
|
{
|
|
3021
|
-
"name": "
|
|
3074
|
+
"name": "data",
|
|
3022
3075
|
"type": {
|
|
3023
|
-
"text": "
|
|
3076
|
+
"text": "GristData"
|
|
3024
3077
|
},
|
|
3025
|
-
"default": "
|
|
3078
|
+
"default": "ZERO_DATA",
|
|
3026
3079
|
"resolveInitializer": {
|
|
3027
3080
|
"module": "/src/configure/zero-config"
|
|
3028
3081
|
},
|
|
3029
|
-
"fieldName": "
|
|
3082
|
+
"fieldName": "data"
|
|
3030
3083
|
},
|
|
3031
3084
|
{
|
|
3032
|
-
"name": "
|
|
3085
|
+
"name": "isTop",
|
|
3033
3086
|
"type": {
|
|
3034
|
-
"text": "
|
|
3087
|
+
"text": "boolean"
|
|
3035
3088
|
},
|
|
3036
|
-
"default": "
|
|
3037
|
-
"
|
|
3038
|
-
|
|
3089
|
+
"default": "false",
|
|
3090
|
+
"fieldName": "isTop"
|
|
3091
|
+
},
|
|
3092
|
+
{
|
|
3093
|
+
"name": "_records",
|
|
3094
|
+
"type": {
|
|
3095
|
+
"text": "GristRecord[]"
|
|
3039
3096
|
},
|
|
3040
|
-
"
|
|
3097
|
+
"default": "[]",
|
|
3098
|
+
"fieldName": "_records"
|
|
3041
3099
|
}
|
|
3042
3100
|
],
|
|
3043
3101
|
"superclass": {
|
|
3044
3102
|
"name": "LitElement",
|
|
3045
3103
|
"package": "lit"
|
|
3046
3104
|
},
|
|
3047
|
-
"tagName": "ox-
|
|
3105
|
+
"tagName": "ox-card",
|
|
3048
3106
|
"customElement": true
|
|
3049
3107
|
}
|
|
3050
3108
|
],
|
|
3051
3109
|
"exports": [
|
|
3052
3110
|
{
|
|
3053
3111
|
"kind": "js",
|
|
3054
|
-
"name": "
|
|
3112
|
+
"name": "DataCard",
|
|
3055
3113
|
"declaration": {
|
|
3056
|
-
"name": "
|
|
3057
|
-
"module": "src/data-
|
|
3114
|
+
"name": "DataCard",
|
|
3115
|
+
"module": "src/data-card/data-card.ts"
|
|
3058
3116
|
}
|
|
3059
3117
|
},
|
|
3060
3118
|
{
|
|
3061
3119
|
"kind": "custom-element-definition",
|
|
3062
|
-
"name": "ox-
|
|
3120
|
+
"name": "ox-card",
|
|
3063
3121
|
"declaration": {
|
|
3064
|
-
"name": "
|
|
3065
|
-
"module": "src/data-
|
|
3122
|
+
"name": "DataCard",
|
|
3123
|
+
"module": "src/data-card/data-card.ts"
|
|
3066
3124
|
}
|
|
3067
3125
|
}
|
|
3068
3126
|
]
|
|
3069
3127
|
},
|
|
3070
3128
|
{
|
|
3071
3129
|
"kind": "javascript-module",
|
|
3072
|
-
"path": "src/data-
|
|
3130
|
+
"path": "src/data-card/record-card.ts",
|
|
3073
3131
|
"declarations": [
|
|
3074
3132
|
{
|
|
3075
3133
|
"kind": "class",
|
|
3076
|
-
"description": "
|
|
3077
|
-
"name": "
|
|
3134
|
+
"description": "",
|
|
3135
|
+
"name": "RecordCard",
|
|
3078
3136
|
"members": [
|
|
3079
3137
|
{
|
|
3080
3138
|
"kind": "field",
|
|
@@ -3096,101 +3154,81 @@
|
|
|
3096
3154
|
},
|
|
3097
3155
|
{
|
|
3098
3156
|
"kind": "field",
|
|
3099
|
-
"name": "
|
|
3157
|
+
"name": "record",
|
|
3100
3158
|
"type": {
|
|
3101
|
-
"text": "
|
|
3159
|
+
"text": "GristRecord"
|
|
3102
3160
|
},
|
|
3103
|
-
"
|
|
3104
|
-
|
|
3105
|
-
{
|
|
3106
|
-
"kind": "field",
|
|
3107
|
-
"name": "body",
|
|
3108
|
-
"type": {
|
|
3109
|
-
"text": "LitElement"
|
|
3110
|
-
}
|
|
3161
|
+
"default": "ZERO_RECORD",
|
|
3162
|
+
"attribute": "record"
|
|
3111
3163
|
},
|
|
3112
3164
|
{
|
|
3113
3165
|
"kind": "field",
|
|
3114
|
-
"name": "
|
|
3166
|
+
"name": "rowIndex",
|
|
3115
3167
|
"type": {
|
|
3116
|
-
"text": "
|
|
3117
|
-
}
|
|
3168
|
+
"text": "number"
|
|
3169
|
+
},
|
|
3170
|
+
"default": "-1",
|
|
3171
|
+
"attribute": "rowIndex"
|
|
3118
3172
|
},
|
|
3119
3173
|
{
|
|
3120
3174
|
"kind": "field",
|
|
3121
|
-
"name": "
|
|
3175
|
+
"name": "selectedRow",
|
|
3122
3176
|
"type": {
|
|
3123
|
-
"text": "
|
|
3124
|
-
}
|
|
3177
|
+
"text": "boolean"
|
|
3178
|
+
},
|
|
3179
|
+
"default": "false",
|
|
3180
|
+
"attribute": "selected-row"
|
|
3125
3181
|
},
|
|
3126
3182
|
{
|
|
3127
3183
|
"kind": "field",
|
|
3128
|
-
"name": "
|
|
3184
|
+
"name": "_recordView",
|
|
3129
3185
|
"type": {
|
|
3130
|
-
"text": "
|
|
3186
|
+
"text": "any"
|
|
3131
3187
|
},
|
|
3132
3188
|
"privacy": "private"
|
|
3133
3189
|
},
|
|
3134
3190
|
{
|
|
3135
|
-
"kind": "
|
|
3136
|
-
"name": "
|
|
3137
|
-
"
|
|
3138
|
-
|
|
3139
|
-
"name": "e",
|
|
3140
|
-
"type": {
|
|
3141
|
-
"text": "WheelEvent"
|
|
3142
|
-
}
|
|
3143
|
-
}
|
|
3144
|
-
]
|
|
3191
|
+
"kind": "field",
|
|
3192
|
+
"name": "clickHandler",
|
|
3193
|
+
"privacy": "private",
|
|
3194
|
+
"default": "recordCardClickHandler.bind(this)"
|
|
3145
3195
|
},
|
|
3146
3196
|
{
|
|
3147
|
-
"kind": "
|
|
3148
|
-
"name": "
|
|
3149
|
-
"
|
|
3150
|
-
|
|
3151
|
-
"name": "recordData",
|
|
3152
|
-
"type": {
|
|
3153
|
-
"text": "GristRecord"
|
|
3154
|
-
}
|
|
3155
|
-
},
|
|
3156
|
-
{
|
|
3157
|
-
"name": "row",
|
|
3158
|
-
"type": {
|
|
3159
|
-
"text": "number"
|
|
3160
|
-
}
|
|
3161
|
-
},
|
|
3162
|
-
{
|
|
3163
|
-
"name": "column",
|
|
3164
|
-
"type": {
|
|
3165
|
-
"text": "ColumnConfig | null"
|
|
3166
|
-
}
|
|
3167
|
-
}
|
|
3168
|
-
]
|
|
3197
|
+
"kind": "field",
|
|
3198
|
+
"name": "dblclickHandler",
|
|
3199
|
+
"privacy": "private",
|
|
3200
|
+
"default": "recordCardDblClickHandler.bind(this)"
|
|
3169
3201
|
},
|
|
3170
3202
|
{
|
|
3171
3203
|
"kind": "method",
|
|
3172
|
-
"name": "
|
|
3204
|
+
"name": "onFieldChange",
|
|
3173
3205
|
"parameters": [
|
|
3174
3206
|
{
|
|
3175
|
-
"name": "
|
|
3207
|
+
"name": "e",
|
|
3176
3208
|
"type": {
|
|
3177
|
-
"text": "
|
|
3209
|
+
"text": "Event"
|
|
3178
3210
|
}
|
|
3179
3211
|
}
|
|
3180
3212
|
]
|
|
3181
3213
|
},
|
|
3182
3214
|
{
|
|
3183
|
-
"kind": "
|
|
3184
|
-
"name": "
|
|
3215
|
+
"kind": "field",
|
|
3216
|
+
"name": "recordView"
|
|
3185
3217
|
},
|
|
3186
3218
|
{
|
|
3187
|
-
"kind": "
|
|
3188
|
-
"name": "
|
|
3219
|
+
"kind": "method",
|
|
3220
|
+
"name": "popupRecordView"
|
|
3189
3221
|
}
|
|
3190
3222
|
],
|
|
3191
3223
|
"events": [
|
|
3192
3224
|
{
|
|
3193
|
-
"name": "
|
|
3225
|
+
"name": "field-change",
|
|
3226
|
+
"type": {
|
|
3227
|
+
"text": "CustomEvent"
|
|
3228
|
+
}
|
|
3229
|
+
},
|
|
3230
|
+
{
|
|
3231
|
+
"name": "record-reset",
|
|
3194
3232
|
"type": {
|
|
3195
3233
|
"text": "CustomEvent"
|
|
3196
3234
|
}
|
|
@@ -3220,36 +3258,56 @@
|
|
|
3220
3258
|
"fieldName": "data"
|
|
3221
3259
|
},
|
|
3222
3260
|
{
|
|
3223
|
-
"name": "
|
|
3261
|
+
"name": "record",
|
|
3224
3262
|
"type": {
|
|
3225
|
-
"text": "
|
|
3263
|
+
"text": "GristRecord"
|
|
3226
3264
|
},
|
|
3227
|
-
"
|
|
3265
|
+
"default": "ZERO_RECORD",
|
|
3266
|
+
"resolveInitializer": {
|
|
3267
|
+
"module": "/src/configure/zero-config"
|
|
3268
|
+
},
|
|
3269
|
+
"fieldName": "record"
|
|
3270
|
+
},
|
|
3271
|
+
{
|
|
3272
|
+
"name": "rowIndex",
|
|
3273
|
+
"type": {
|
|
3274
|
+
"text": "number"
|
|
3275
|
+
},
|
|
3276
|
+
"default": "-1",
|
|
3277
|
+
"fieldName": "rowIndex"
|
|
3278
|
+
},
|
|
3279
|
+
{
|
|
3280
|
+
"name": "selected-row",
|
|
3281
|
+
"type": {
|
|
3282
|
+
"text": "boolean"
|
|
3283
|
+
},
|
|
3284
|
+
"default": "false",
|
|
3285
|
+
"fieldName": "selectedRow"
|
|
3228
3286
|
}
|
|
3229
3287
|
],
|
|
3230
3288
|
"superclass": {
|
|
3231
3289
|
"name": "LitElement",
|
|
3232
3290
|
"package": "lit"
|
|
3233
3291
|
},
|
|
3234
|
-
"tagName": "ox-
|
|
3292
|
+
"tagName": "ox-record-card",
|
|
3235
3293
|
"customElement": true
|
|
3236
3294
|
}
|
|
3237
3295
|
],
|
|
3238
3296
|
"exports": [
|
|
3239
3297
|
{
|
|
3240
3298
|
"kind": "js",
|
|
3241
|
-
"name": "
|
|
3299
|
+
"name": "RecordCard",
|
|
3242
3300
|
"declaration": {
|
|
3243
|
-
"name": "
|
|
3244
|
-
"module": "src/data-
|
|
3301
|
+
"name": "RecordCard",
|
|
3302
|
+
"module": "src/data-card/record-card.ts"
|
|
3245
3303
|
}
|
|
3246
3304
|
},
|
|
3247
3305
|
{
|
|
3248
3306
|
"kind": "custom-element-definition",
|
|
3249
|
-
"name": "ox-
|
|
3307
|
+
"name": "ox-record-card",
|
|
3250
3308
|
"declaration": {
|
|
3251
|
-
"name": "
|
|
3252
|
-
"module": "src/data-
|
|
3309
|
+
"name": "RecordCard",
|
|
3310
|
+
"module": "src/data-card/record-card.ts"
|
|
3253
3311
|
}
|
|
3254
3312
|
}
|
|
3255
3313
|
]
|
|
@@ -12891,7 +12949,7 @@
|
|
|
12891
12949
|
],
|
|
12892
12950
|
"superclass": {
|
|
12893
12951
|
"name": "OXBasicField",
|
|
12894
|
-
"module": "/src/search-form/ox-basic-field"
|
|
12952
|
+
"module": "/src/search-form/ox-basic-field.js"
|
|
12895
12953
|
},
|
|
12896
12954
|
"tagName": "ox-select-field",
|
|
12897
12955
|
"customElement": true,
|
|
@@ -13201,131 +13259,136 @@
|
|
|
13201
13259
|
},
|
|
13202
13260
|
{
|
|
13203
13261
|
"kind": "javascript-module",
|
|
13204
|
-
"path": "src/data-
|
|
13262
|
+
"path": "src/data-grid/event-handlers/data-grid-body-click-handler.ts",
|
|
13205
13263
|
"declarations": [
|
|
13206
13264
|
{
|
|
13207
13265
|
"kind": "function",
|
|
13208
|
-
"name": "
|
|
13266
|
+
"name": "dataGridBodyClickHandler",
|
|
13209
13267
|
"return": {
|
|
13210
13268
|
"type": {
|
|
13211
13269
|
"text": "void"
|
|
13212
13270
|
}
|
|
13213
13271
|
},
|
|
13214
13272
|
"parameters": [
|
|
13273
|
+
{
|
|
13274
|
+
"name": "this",
|
|
13275
|
+
"type": {
|
|
13276
|
+
"text": "DataGridBody"
|
|
13277
|
+
}
|
|
13278
|
+
},
|
|
13215
13279
|
{
|
|
13216
13280
|
"name": "e",
|
|
13217
13281
|
"type": {
|
|
13218
|
-
"text": "
|
|
13282
|
+
"text": "Event"
|
|
13219
13283
|
}
|
|
13220
13284
|
}
|
|
13221
|
-
]
|
|
13222
|
-
"description": "ox-card 의 click handler\n\n- handler의 this 는 ox-card임."
|
|
13285
|
+
]
|
|
13223
13286
|
}
|
|
13224
13287
|
],
|
|
13225
13288
|
"exports": [
|
|
13226
13289
|
{
|
|
13227
13290
|
"kind": "js",
|
|
13228
|
-
"name": "
|
|
13291
|
+
"name": "dataGridBodyClickHandler",
|
|
13229
13292
|
"declaration": {
|
|
13230
|
-
"name": "
|
|
13231
|
-
"module": "src/data-
|
|
13293
|
+
"name": "dataGridBodyClickHandler",
|
|
13294
|
+
"module": "src/data-grid/event-handlers/data-grid-body-click-handler.ts"
|
|
13232
13295
|
}
|
|
13233
13296
|
}
|
|
13234
13297
|
]
|
|
13235
13298
|
},
|
|
13236
13299
|
{
|
|
13237
13300
|
"kind": "javascript-module",
|
|
13238
|
-
"path": "src/data-
|
|
13301
|
+
"path": "src/data-grid/event-handlers/data-grid-body-dblclick-handler.ts",
|
|
13239
13302
|
"declarations": [
|
|
13240
13303
|
{
|
|
13241
13304
|
"kind": "function",
|
|
13242
|
-
"name": "
|
|
13305
|
+
"name": "dataGridBodyDblclickHandler",
|
|
13243
13306
|
"return": {
|
|
13244
13307
|
"type": {
|
|
13245
|
-
"text": "void"
|
|
13308
|
+
"text": "Promise<void>"
|
|
13246
13309
|
}
|
|
13247
13310
|
},
|
|
13248
13311
|
"parameters": [
|
|
13312
|
+
{
|
|
13313
|
+
"name": "this",
|
|
13314
|
+
"type": {
|
|
13315
|
+
"text": "DataGridBody"
|
|
13316
|
+
}
|
|
13317
|
+
},
|
|
13249
13318
|
{
|
|
13250
13319
|
"name": "e",
|
|
13251
13320
|
"type": {
|
|
13252
|
-
"text": "
|
|
13321
|
+
"text": "Event"
|
|
13253
13322
|
}
|
|
13254
13323
|
}
|
|
13255
13324
|
],
|
|
13256
|
-
"description": "ox-
|
|
13325
|
+
"description": "ox-grid-body 의 dblclick handler\n\n- handler의 this 는 ox-grid-body임."
|
|
13257
13326
|
}
|
|
13258
13327
|
],
|
|
13259
13328
|
"exports": [
|
|
13260
13329
|
{
|
|
13261
13330
|
"kind": "js",
|
|
13262
|
-
"name": "
|
|
13331
|
+
"name": "dataGridBodyDblclickHandler",
|
|
13263
13332
|
"declaration": {
|
|
13264
|
-
"name": "
|
|
13265
|
-
"module": "src/data-
|
|
13333
|
+
"name": "dataGridBodyDblclickHandler",
|
|
13334
|
+
"module": "src/data-grid/event-handlers/data-grid-body-dblclick-handler.ts"
|
|
13266
13335
|
}
|
|
13267
13336
|
}
|
|
13268
13337
|
]
|
|
13269
13338
|
},
|
|
13270
13339
|
{
|
|
13271
13340
|
"kind": "javascript-module",
|
|
13272
|
-
"path": "src/data-
|
|
13341
|
+
"path": "src/data-grid/event-handlers/data-grid-body-keydown-handler.ts",
|
|
13273
13342
|
"declarations": [
|
|
13274
13343
|
{
|
|
13275
13344
|
"kind": "function",
|
|
13276
|
-
"name": "
|
|
13345
|
+
"name": "dataGridBodyKeydownHandler",
|
|
13277
13346
|
"return": {
|
|
13278
13347
|
"type": {
|
|
13279
|
-
"text": "void"
|
|
13348
|
+
"text": "Promise<void>"
|
|
13280
13349
|
}
|
|
13281
13350
|
},
|
|
13282
13351
|
"parameters": [
|
|
13283
13352
|
{
|
|
13284
13353
|
"name": "this",
|
|
13285
13354
|
"type": {
|
|
13286
|
-
"text": "
|
|
13355
|
+
"text": "DataGridBody"
|
|
13287
13356
|
}
|
|
13288
13357
|
},
|
|
13289
13358
|
{
|
|
13290
13359
|
"name": "e",
|
|
13291
13360
|
"type": {
|
|
13292
|
-
"text": "
|
|
13361
|
+
"text": "KeyboardEvent"
|
|
13293
13362
|
}
|
|
13294
13363
|
}
|
|
13295
13364
|
],
|
|
13296
|
-
"description": "ox-
|
|
13365
|
+
"description": "ox-grid-body 의 keydown handler\n\n- handler의 this 는 ox-grid-body임."
|
|
13297
13366
|
}
|
|
13298
13367
|
],
|
|
13299
13368
|
"exports": [
|
|
13300
13369
|
{
|
|
13301
13370
|
"kind": "js",
|
|
13302
|
-
"name": "
|
|
13371
|
+
"name": "dataGridBodyKeydownHandler",
|
|
13303
13372
|
"declaration": {
|
|
13304
|
-
"name": "
|
|
13305
|
-
"module": "src/data-
|
|
13373
|
+
"name": "dataGridBodyKeydownHandler",
|
|
13374
|
+
"module": "src/data-grid/event-handlers/data-grid-body-keydown-handler.ts"
|
|
13306
13375
|
}
|
|
13307
13376
|
}
|
|
13308
13377
|
]
|
|
13309
13378
|
},
|
|
13310
13379
|
{
|
|
13311
13380
|
"kind": "javascript-module",
|
|
13312
|
-
"path": "src/data-card/event-handlers/
|
|
13381
|
+
"path": "src/data-card/event-handlers/data-card-click-handler.ts",
|
|
13313
13382
|
"declarations": [
|
|
13314
13383
|
{
|
|
13315
13384
|
"kind": "function",
|
|
13316
|
-
"name": "
|
|
13385
|
+
"name": "dataCardClickHandler",
|
|
13317
13386
|
"return": {
|
|
13318
13387
|
"type": {
|
|
13319
13388
|
"text": "void"
|
|
13320
13389
|
}
|
|
13321
13390
|
},
|
|
13322
13391
|
"parameters": [
|
|
13323
|
-
{
|
|
13324
|
-
"name": "this",
|
|
13325
|
-
"type": {
|
|
13326
|
-
"text": "RecordCard"
|
|
13327
|
-
}
|
|
13328
|
-
},
|
|
13329
13392
|
{
|
|
13330
13393
|
"name": "e",
|
|
13331
13394
|
"type": {
|
|
@@ -13333,135 +13396,130 @@
|
|
|
13333
13396
|
}
|
|
13334
13397
|
}
|
|
13335
13398
|
],
|
|
13336
|
-
"description": "ox-
|
|
13399
|
+
"description": "ox-card 의 click handler\n\n- handler의 this 는 ox-card임."
|
|
13337
13400
|
}
|
|
13338
13401
|
],
|
|
13339
13402
|
"exports": [
|
|
13340
13403
|
{
|
|
13341
13404
|
"kind": "js",
|
|
13342
|
-
"name": "
|
|
13405
|
+
"name": "dataCardClickHandler",
|
|
13343
13406
|
"declaration": {
|
|
13344
|
-
"name": "
|
|
13345
|
-
"module": "src/data-card/event-handlers/
|
|
13407
|
+
"name": "dataCardClickHandler",
|
|
13408
|
+
"module": "src/data-card/event-handlers/data-card-click-handler.ts"
|
|
13346
13409
|
}
|
|
13347
13410
|
}
|
|
13348
13411
|
]
|
|
13349
13412
|
},
|
|
13350
13413
|
{
|
|
13351
13414
|
"kind": "javascript-module",
|
|
13352
|
-
"path": "src/data-
|
|
13415
|
+
"path": "src/data-card/event-handlers/data-card-dblclick-handler.ts",
|
|
13353
13416
|
"declarations": [
|
|
13354
13417
|
{
|
|
13355
13418
|
"kind": "function",
|
|
13356
|
-
"name": "
|
|
13419
|
+
"name": "dataCardDblclickHandler",
|
|
13357
13420
|
"return": {
|
|
13358
13421
|
"type": {
|
|
13359
13422
|
"text": "void"
|
|
13360
13423
|
}
|
|
13361
13424
|
},
|
|
13362
13425
|
"parameters": [
|
|
13363
|
-
{
|
|
13364
|
-
"name": "this",
|
|
13365
|
-
"type": {
|
|
13366
|
-
"text": "DataGridBody"
|
|
13367
|
-
}
|
|
13368
|
-
},
|
|
13369
13426
|
{
|
|
13370
13427
|
"name": "e",
|
|
13371
13428
|
"type": {
|
|
13372
|
-
"text": "
|
|
13429
|
+
"text": "MouseEvent"
|
|
13373
13430
|
}
|
|
13374
13431
|
}
|
|
13375
|
-
]
|
|
13432
|
+
],
|
|
13433
|
+
"description": "ox-card 의 dblclick handler\n\n- handler의 this 는 ox-card임."
|
|
13376
13434
|
}
|
|
13377
13435
|
],
|
|
13378
13436
|
"exports": [
|
|
13379
13437
|
{
|
|
13380
13438
|
"kind": "js",
|
|
13381
|
-
"name": "
|
|
13439
|
+
"name": "dataCardDblclickHandler",
|
|
13382
13440
|
"declaration": {
|
|
13383
|
-
"name": "
|
|
13384
|
-
"module": "src/data-
|
|
13441
|
+
"name": "dataCardDblclickHandler",
|
|
13442
|
+
"module": "src/data-card/event-handlers/data-card-dblclick-handler.ts"
|
|
13385
13443
|
}
|
|
13386
13444
|
}
|
|
13387
13445
|
]
|
|
13388
13446
|
},
|
|
13389
13447
|
{
|
|
13390
13448
|
"kind": "javascript-module",
|
|
13391
|
-
"path": "src/data-
|
|
13449
|
+
"path": "src/data-card/event-handlers/record-card-click-handler.ts",
|
|
13392
13450
|
"declarations": [
|
|
13393
13451
|
{
|
|
13394
13452
|
"kind": "function",
|
|
13395
|
-
"name": "
|
|
13453
|
+
"name": "recordCardClickHandler",
|
|
13396
13454
|
"return": {
|
|
13397
13455
|
"type": {
|
|
13398
|
-
"text": "
|
|
13456
|
+
"text": "void"
|
|
13399
13457
|
}
|
|
13400
13458
|
},
|
|
13401
13459
|
"parameters": [
|
|
13402
13460
|
{
|
|
13403
13461
|
"name": "this",
|
|
13404
13462
|
"type": {
|
|
13405
|
-
"text": "
|
|
13463
|
+
"text": "RecordCard"
|
|
13406
13464
|
}
|
|
13407
13465
|
},
|
|
13408
13466
|
{
|
|
13409
13467
|
"name": "e",
|
|
13410
13468
|
"type": {
|
|
13411
|
-
"text": "
|
|
13469
|
+
"text": "MouseEvent"
|
|
13412
13470
|
}
|
|
13413
13471
|
}
|
|
13414
13472
|
],
|
|
13415
|
-
"description": "ox-
|
|
13473
|
+
"description": "ox-record-card 의 click handler\n\n- handler의 this 는 ox-record-card임."
|
|
13416
13474
|
}
|
|
13417
13475
|
],
|
|
13418
13476
|
"exports": [
|
|
13419
13477
|
{
|
|
13420
13478
|
"kind": "js",
|
|
13421
|
-
"name": "
|
|
13479
|
+
"name": "recordCardClickHandler",
|
|
13422
13480
|
"declaration": {
|
|
13423
|
-
"name": "
|
|
13424
|
-
"module": "src/data-
|
|
13481
|
+
"name": "recordCardClickHandler",
|
|
13482
|
+
"module": "src/data-card/event-handlers/record-card-click-handler.ts"
|
|
13425
13483
|
}
|
|
13426
13484
|
}
|
|
13427
13485
|
]
|
|
13428
13486
|
},
|
|
13429
13487
|
{
|
|
13430
13488
|
"kind": "javascript-module",
|
|
13431
|
-
"path": "src/data-
|
|
13489
|
+
"path": "src/data-card/event-handlers/record-card-dblclick-handler.ts",
|
|
13432
13490
|
"declarations": [
|
|
13433
13491
|
{
|
|
13434
13492
|
"kind": "function",
|
|
13435
|
-
"name": "
|
|
13493
|
+
"name": "recordCardDblClickHandler",
|
|
13436
13494
|
"return": {
|
|
13437
13495
|
"type": {
|
|
13438
|
-
"text": "
|
|
13496
|
+
"text": "void"
|
|
13439
13497
|
}
|
|
13440
13498
|
},
|
|
13441
13499
|
"parameters": [
|
|
13442
13500
|
{
|
|
13443
13501
|
"name": "this",
|
|
13444
13502
|
"type": {
|
|
13445
|
-
"text": "
|
|
13503
|
+
"text": "RecordCard"
|
|
13446
13504
|
}
|
|
13447
13505
|
},
|
|
13448
13506
|
{
|
|
13449
13507
|
"name": "e",
|
|
13450
13508
|
"type": {
|
|
13451
|
-
"text": "
|
|
13509
|
+
"text": "MouseEvent"
|
|
13452
13510
|
}
|
|
13453
13511
|
}
|
|
13454
13512
|
],
|
|
13455
|
-
"description": "ox-
|
|
13513
|
+
"description": "ox-record-card 의 dblclick handler\n\n- handler의 this 는 ox-record-card임."
|
|
13456
13514
|
}
|
|
13457
13515
|
],
|
|
13458
13516
|
"exports": [
|
|
13459
13517
|
{
|
|
13460
13518
|
"kind": "js",
|
|
13461
|
-
"name": "
|
|
13519
|
+
"name": "recordCardDblClickHandler",
|
|
13462
13520
|
"declaration": {
|
|
13463
|
-
"name": "
|
|
13464
|
-
"module": "src/data-
|
|
13521
|
+
"name": "recordCardDblClickHandler",
|
|
13522
|
+
"module": "src/data-card/event-handlers/record-card-dblclick-handler.ts"
|
|
13465
13523
|
}
|
|
13466
13524
|
}
|
|
13467
13525
|
]
|