@operato/data-grist 0.3.15 → 0.3.19
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 +49 -0
- package/assets/images/no-image.png +0 -0
- package/custom-elements.json +1345 -770
- package/demo/data-grist-test.html +142 -85
- package/demo/index.html +62 -129
- package/dist/src/configure/column-builder.js +26 -2
- package/dist/src/configure/column-builder.js.map +1 -1
- package/dist/src/data-card/data-card.d.ts +3 -6
- package/dist/src/data-card/data-card.js +3 -131
- package/dist/src/data-card/data-card.js.map +1 -1
- package/dist/src/data-card/record-card.d.ts +0 -3
- package/dist/src/data-card/record-card.js +7 -62
- package/dist/src/data-card/record-card.js.map +1 -1
- package/dist/src/data-grid/data-grid-body.d.ts +7 -1
- package/dist/src/data-grid/data-grid-body.js +26 -5
- package/dist/src/data-grid/data-grid-body.js.map +1 -1
- package/dist/src/data-grid/data-grid-field.js +1 -1
- package/dist/src/data-grid/data-grid-field.js.map +1 -1
- package/dist/src/data-grid/data-grid-header.d.ts +1 -0
- package/dist/src/data-grid/data-grid-header.js +14 -4
- package/dist/src/data-grid/data-grid-header.js.map +1 -1
- package/dist/src/data-grid/data-grid.d.ts +8 -4
- package/dist/src/data-grid/data-grid.js +12 -132
- package/dist/src/data-grid/data-grid.js.map +1 -1
- package/dist/src/data-grist.d.ts +1 -0
- package/dist/src/data-grist.js +8 -0
- package/dist/src/data-grist.js.map +1 -1
- package/dist/src/data-list/data-list.d.ts +3 -6
- package/dist/src/data-list/data-list.js +3 -131
- package/dist/src/data-list/data-list.js.map +1 -1
- package/dist/src/data-list/record-partial.d.ts +0 -2
- package/dist/src/data-list/record-partial.js +7 -58
- package/dist/src/data-list/record-partial.js.map +1 -1
- package/dist/src/data-manipulator.d.ts +20 -0
- package/dist/src/data-manipulator.js +148 -0
- package/dist/src/data-manipulator.js.map +1 -0
- package/dist/src/editors/image-input.d.ts +7 -0
- package/dist/src/editors/image-input.js +31 -0
- package/dist/src/editors/image-input.js.map +1 -0
- package/dist/src/editors/index.d.ts +1 -0
- package/dist/src/editors/index.js +1 -0
- package/dist/src/editors/index.js.map +1 -1
- package/dist/src/editors/input-editors.d.ts +1 -8
- package/dist/src/editors/input-editors.js +3 -47
- package/dist/src/editors/input-editors.js.map +1 -1
- package/dist/src/editors/registry.js +2 -1
- package/dist/src/editors/registry.js.map +1 -1
- package/dist/src/filters/filter-checkbox.js +2 -2
- package/dist/src/filters/filter-checkbox.js.map +1 -1
- package/dist/src/filters/filter-input.js +1 -1
- package/dist/src/filters/filter-input.js.map +1 -1
- package/dist/src/filters/filter-range-date.js +1 -1
- package/dist/src/filters/filter-range-date.js.map +1 -1
- package/dist/src/filters/filter-range-number.js +1 -1
- package/dist/src/filters/filter-range-number.js.map +1 -1
- package/dist/src/filters/filter-select.js +2 -2
- package/dist/src/filters/filter-select.js.map +1 -1
- package/dist/src/filters/filters-form.d.ts +9 -5
- package/dist/src/filters/filters-form.js +63 -15
- package/dist/src/filters/filters-form.js.map +1 -1
- package/dist/src/handlers/record-view-handler.d.ts +1 -2
- package/dist/src/handlers/record-view-handler.js +5 -35
- package/dist/src/handlers/record-view-handler.js.map +1 -1
- package/dist/src/handlers/select-row-toggle.d.ts +1 -1
- package/dist/src/handlers/select-row-toggle.js.map +1 -1
- package/dist/src/record-view/event-handlers/record-view-body-click-handler.d.ts +7 -0
- package/dist/src/record-view/event-handlers/record-view-body-click-handler.js +24 -0
- package/dist/src/record-view/event-handlers/record-view-body-click-handler.js.map +1 -0
- package/dist/src/record-view/event-handlers/record-view-body-keydown-handler.d.ts +7 -0
- package/dist/src/record-view/event-handlers/record-view-body-keydown-handler.js +22 -0
- package/dist/src/record-view/event-handlers/record-view-body-keydown-handler.js.map +1 -0
- package/dist/src/record-view/index.d.ts +1 -0
- package/dist/src/record-view/index.js +1 -0
- package/dist/src/record-view/index.js.map +1 -1
- package/dist/src/record-view/record-creator.d.ts +16 -0
- package/dist/src/record-view/record-creator.js +145 -0
- package/dist/src/record-view/record-creator.js.map +1 -0
- package/dist/src/record-view/record-view-body.d.ts +3 -4
- package/dist/src/record-view/record-view-body.js +19 -41
- package/dist/src/record-view/record-view-body.js.map +1 -1
- package/dist/src/record-view/record-view-handler.d.ts +9 -0
- package/dist/src/record-view/record-view-handler.js +57 -0
- package/dist/src/record-view/record-view-handler.js.map +1 -0
- package/dist/src/record-view/record-view.d.ts +4 -3
- package/dist/src/record-view/record-view.js +20 -55
- package/dist/src/record-view/record-view.js.map +1 -1
- package/dist/src/sorters/sorters-control.d.ts +12 -0
- package/dist/src/sorters/sorters-control.js +120 -0
- package/dist/src/sorters/sorters-control.js.map +1 -0
- package/dist/src/types.d.ts +7 -4
- package/dist/src/types.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +10 -8
- package/src/configure/column-builder.ts +29 -3
- package/src/data-card/data-card.ts +4 -158
- package/src/data-card/record-card.ts +14 -78
- package/src/data-grid/data-grid-body.ts +43 -6
- package/src/data-grid/data-grid-field.ts +1 -1
- package/src/data-grid/data-grid-header.ts +18 -6
- package/src/data-grid/data-grid.ts +25 -143
- package/src/data-grist.ts +12 -0
- package/src/data-list/data-list.ts +4 -158
- package/src/data-list/record-partial.ts +14 -73
- package/src/data-manipulator.ts +201 -0
- package/src/editors/image-input.ts +29 -0
- package/src/editors/index.ts +1 -0
- package/src/editors/input-editors.ts +5 -48
- package/src/editors/registry.ts +1 -1
- package/src/filters/filter-checkbox.ts +3 -2
- package/src/filters/filter-input.ts +3 -3
- package/src/filters/filter-range-date.ts +3 -3
- package/src/filters/filter-range-number.ts +3 -3
- package/src/filters/filter-select.ts +3 -2
- package/src/filters/filters-form.ts +77 -41
- package/src/handlers/record-view-handler.ts +8 -44
- package/src/handlers/select-row-toggle.ts +1 -2
- package/src/record-view/event-handlers/record-view-body-click-handler.ts +30 -0
- package/src/record-view/event-handlers/record-view-body-keydown-handler.ts +26 -0
- package/src/record-view/index.ts +1 -0
- package/src/record-view/record-creator.ts +180 -0
- package/src/record-view/record-view-body.ts +20 -54
- package/src/record-view/record-view-handler.ts +86 -0
- package/src/record-view/record-view.ts +21 -55
- package/src/sorters/sorters-control.ts +125 -0
- package/src/types.ts +42 -31
- package/dist/src/data-card/event-handlers/data-card-click-handler.d.ts +0 -6
- package/dist/src/data-card/event-handlers/data-card-click-handler.js +0 -16
- package/dist/src/data-card/event-handlers/data-card-click-handler.js.map +0 -1
- package/dist/src/data-card/event-handlers/data-card-dblclick-handler.d.ts +0 -6
- package/dist/src/data-card/event-handlers/data-card-dblclick-handler.js +0 -16
- package/dist/src/data-card/event-handlers/data-card-dblclick-handler.js.map +0 -1
- package/dist/src/data-list/event-handlers/data-list-click-handler.d.ts +0 -6
- package/dist/src/data-list/event-handlers/data-list-click-handler.js +0 -16
- package/dist/src/data-list/event-handlers/data-list-click-handler.js.map +0 -1
- package/dist/src/data-list/event-handlers/data-list-dblclick-handler.d.ts +0 -6
- package/dist/src/data-list/event-handlers/data-list-dblclick-handler.js +0 -16
- package/dist/src/data-list/event-handlers/data-list-dblclick-handler.js.map +0 -1
- package/dist/src/interfaces/index.d.ts +0 -2
- package/dist/src/interfaces/index.js +0 -3
- package/dist/src/interfaces/index.js.map +0 -1
- package/dist/src/interfaces/ox-grist-search-form.d.ts +0 -6
- package/dist/src/interfaces/ox-grist-search-form.js +0 -2
- package/dist/src/interfaces/ox-grist-search-form.js.map +0 -1
- package/dist/src/interfaces/ox-search-field.d.ts +0 -39
- package/dist/src/interfaces/ox-search-field.js +0 -2
- package/dist/src/interfaces/ox-search-field.js.map +0 -1
- package/dist/src/search-form/index.d.ts +0 -7
- package/dist/src/search-form/index.js +0 -8
- package/dist/src/search-form/index.js.map +0 -1
- package/dist/src/search-form/ox-basic-field.d.ts +0 -18
- package/dist/src/search-form/ox-basic-field.js +0 -75
- package/dist/src/search-form/ox-basic-field.js.map +0 -1
- package/dist/src/search-form/ox-checkbox-field.d.ts +0 -11
- package/dist/src/search-form/ox-checkbox-field.js +0 -60
- package/dist/src/search-form/ox-checkbox-field.js.map +0 -1
- package/dist/src/search-form/ox-grist-search-form.d.ts +0 -11
- package/dist/src/search-form/ox-grist-search-form.js +0 -177
- package/dist/src/search-form/ox-grist-search-form.js.map +0 -1
- package/dist/src/search-form/ox-number-field.d.ts +0 -14
- package/dist/src/search-form/ox-number-field.js +0 -112
- package/dist/src/search-form/ox-number-field.js.map +0 -1
- package/dist/src/search-form/ox-search-form.d.ts +0 -15
- package/dist/src/search-form/ox-search-form.js +0 -53
- package/dist/src/search-form/ox-search-form.js.map +0 -1
- package/dist/src/search-form/ox-select-field.d.ts +0 -21
- package/dist/src/search-form/ox-select-field.js +0 -181
- package/dist/src/search-form/ox-select-field.js.map +0 -1
- package/dist/src/search-form/ox-text-field.d.ts +0 -11
- package/dist/src/search-form/ox-text-field.js +0 -60
- package/dist/src/search-form/ox-text-field.js.map +0 -1
package/custom-elements.json
CHANGED
|
@@ -224,6 +224,13 @@
|
|
|
224
224
|
}
|
|
225
225
|
]
|
|
226
226
|
},
|
|
227
|
+
{
|
|
228
|
+
"kind": "field",
|
|
229
|
+
"name": "compiledConfig",
|
|
230
|
+
"type": {
|
|
231
|
+
"text": "GristConfig"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
227
234
|
{
|
|
228
235
|
"kind": "field",
|
|
229
236
|
"name": "sorters",
|
|
@@ -296,6 +303,14 @@
|
|
|
296
303
|
"name": "checkDirties"
|
|
297
304
|
}
|
|
298
305
|
],
|
|
306
|
+
"events": [
|
|
307
|
+
{
|
|
308
|
+
"name": "config-change",
|
|
309
|
+
"type": {
|
|
310
|
+
"text": "CustomEvent"
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
],
|
|
299
314
|
"attributes": [
|
|
300
315
|
{
|
|
301
316
|
"name": "mode",
|
|
@@ -380,6 +395,132 @@
|
|
|
380
395
|
}
|
|
381
396
|
]
|
|
382
397
|
},
|
|
398
|
+
{
|
|
399
|
+
"kind": "javascript-module",
|
|
400
|
+
"path": "src/data-manipulator.ts",
|
|
401
|
+
"declarations": [
|
|
402
|
+
{
|
|
403
|
+
"kind": "class",
|
|
404
|
+
"description": "",
|
|
405
|
+
"name": "DataManipulator",
|
|
406
|
+
"members": [
|
|
407
|
+
{
|
|
408
|
+
"kind": "field",
|
|
409
|
+
"name": "config",
|
|
410
|
+
"type": {
|
|
411
|
+
"text": "GristConfig"
|
|
412
|
+
},
|
|
413
|
+
"default": "ZERO_CONFIG",
|
|
414
|
+
"attribute": "config"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"kind": "field",
|
|
418
|
+
"name": "data",
|
|
419
|
+
"type": {
|
|
420
|
+
"text": "GristData"
|
|
421
|
+
},
|
|
422
|
+
"default": "ZERO_DATA",
|
|
423
|
+
"attribute": "data"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"kind": "method",
|
|
427
|
+
"name": "onFieldChange",
|
|
428
|
+
"parameters": [
|
|
429
|
+
{
|
|
430
|
+
"name": "{\n after,\n before,\n column,\n record,\n row\n }",
|
|
431
|
+
"type": {
|
|
432
|
+
"text": "{\n after: any\n before: any\n column: ColumnConfig\n record: GristRecord\n row: number\n }"
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
]
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"kind": "method",
|
|
439
|
+
"name": "onSelectRecordChanged",
|
|
440
|
+
"parameters": [
|
|
441
|
+
{
|
|
442
|
+
"name": "{\n selectedRecords,\n added = [],\n removed = []\n }",
|
|
443
|
+
"type": {
|
|
444
|
+
"text": "{\n selectedRecords: GristRecord[]\n added: GristRecord[]\n removed: GristRecord[]\n }"
|
|
445
|
+
}
|
|
446
|
+
}
|
|
447
|
+
]
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"kind": "method",
|
|
451
|
+
"name": "onRecordChanged",
|
|
452
|
+
"parameters": [
|
|
453
|
+
{
|
|
454
|
+
"name": "recordData",
|
|
455
|
+
"type": {
|
|
456
|
+
"text": "GristRecord"
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"name": "row",
|
|
461
|
+
"type": {
|
|
462
|
+
"text": "number"
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"name": "column",
|
|
467
|
+
"type": {
|
|
468
|
+
"text": "ColumnConfig | null"
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
]
|
|
472
|
+
}
|
|
473
|
+
],
|
|
474
|
+
"events": [
|
|
475
|
+
{
|
|
476
|
+
"name": "record-change",
|
|
477
|
+
"type": {
|
|
478
|
+
"text": "CustomEvent"
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
],
|
|
482
|
+
"attributes": [
|
|
483
|
+
{
|
|
484
|
+
"name": "config",
|
|
485
|
+
"type": {
|
|
486
|
+
"text": "GristConfig"
|
|
487
|
+
},
|
|
488
|
+
"default": "ZERO_CONFIG",
|
|
489
|
+
"resolveInitializer": {
|
|
490
|
+
"module": "/src/configure/zero-config"
|
|
491
|
+
},
|
|
492
|
+
"fieldName": "config"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"name": "data",
|
|
496
|
+
"type": {
|
|
497
|
+
"text": "GristData"
|
|
498
|
+
},
|
|
499
|
+
"default": "ZERO_DATA",
|
|
500
|
+
"resolveInitializer": {
|
|
501
|
+
"module": "/src/configure/zero-config"
|
|
502
|
+
},
|
|
503
|
+
"fieldName": "data"
|
|
504
|
+
}
|
|
505
|
+
],
|
|
506
|
+
"superclass": {
|
|
507
|
+
"name": "LitElement",
|
|
508
|
+
"package": "lit"
|
|
509
|
+
},
|
|
510
|
+
"customElement": true
|
|
511
|
+
}
|
|
512
|
+
],
|
|
513
|
+
"exports": [
|
|
514
|
+
{
|
|
515
|
+
"kind": "js",
|
|
516
|
+
"name": "DataManipulator",
|
|
517
|
+
"declaration": {
|
|
518
|
+
"name": "DataManipulator",
|
|
519
|
+
"module": "src/data-manipulator.ts"
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
]
|
|
523
|
+
},
|
|
383
524
|
{
|
|
384
525
|
"kind": "javascript-module",
|
|
385
526
|
"path": "src/data-provider.ts",
|
|
@@ -1921,24 +2062,6 @@
|
|
|
1921
2062
|
"description": "",
|
|
1922
2063
|
"name": "DataCard",
|
|
1923
2064
|
"members": [
|
|
1924
|
-
{
|
|
1925
|
-
"kind": "field",
|
|
1926
|
-
"name": "config",
|
|
1927
|
-
"type": {
|
|
1928
|
-
"text": "GristConfig"
|
|
1929
|
-
},
|
|
1930
|
-
"default": "ZERO_CONFIG",
|
|
1931
|
-
"attribute": "config"
|
|
1932
|
-
},
|
|
1933
|
-
{
|
|
1934
|
-
"kind": "field",
|
|
1935
|
-
"name": "data",
|
|
1936
|
-
"type": {
|
|
1937
|
-
"text": "GristData"
|
|
1938
|
-
},
|
|
1939
|
-
"default": "ZERO_DATA",
|
|
1940
|
-
"attribute": "data"
|
|
1941
|
-
},
|
|
1942
2065
|
{
|
|
1943
2066
|
"kind": "field",
|
|
1944
2067
|
"name": "isTop",
|
|
@@ -1985,6 +2108,80 @@
|
|
|
1985
2108
|
"privacy": "private",
|
|
1986
2109
|
"default": "1"
|
|
1987
2110
|
},
|
|
2111
|
+
{
|
|
2112
|
+
"kind": "method",
|
|
2113
|
+
"name": "gotoTop",
|
|
2114
|
+
"parameters": [
|
|
2115
|
+
{
|
|
2116
|
+
"name": "e",
|
|
2117
|
+
"type": {
|
|
2118
|
+
"text": "Event"
|
|
2119
|
+
}
|
|
2120
|
+
}
|
|
2121
|
+
]
|
|
2122
|
+
},
|
|
2123
|
+
{
|
|
2124
|
+
"kind": "field",
|
|
2125
|
+
"name": "pullToRefreshTarget"
|
|
2126
|
+
},
|
|
2127
|
+
{
|
|
2128
|
+
"kind": "field",
|
|
2129
|
+
"name": "config",
|
|
2130
|
+
"type": {
|
|
2131
|
+
"text": "GristConfig"
|
|
2132
|
+
},
|
|
2133
|
+
"default": "ZERO_CONFIG",
|
|
2134
|
+
"attribute": "config",
|
|
2135
|
+
"inheritedFrom": {
|
|
2136
|
+
"name": "DataManipulator",
|
|
2137
|
+
"module": "src/data-manipulator.ts"
|
|
2138
|
+
}
|
|
2139
|
+
},
|
|
2140
|
+
{
|
|
2141
|
+
"kind": "field",
|
|
2142
|
+
"name": "data",
|
|
2143
|
+
"type": {
|
|
2144
|
+
"text": "GristData"
|
|
2145
|
+
},
|
|
2146
|
+
"default": "ZERO_DATA",
|
|
2147
|
+
"attribute": "data",
|
|
2148
|
+
"inheritedFrom": {
|
|
2149
|
+
"name": "DataManipulator",
|
|
2150
|
+
"module": "src/data-manipulator.ts"
|
|
2151
|
+
}
|
|
2152
|
+
},
|
|
2153
|
+
{
|
|
2154
|
+
"kind": "method",
|
|
2155
|
+
"name": "onFieldChange",
|
|
2156
|
+
"parameters": [
|
|
2157
|
+
{
|
|
2158
|
+
"name": "{\n after,\n before,\n column,\n record,\n row\n }",
|
|
2159
|
+
"type": {
|
|
2160
|
+
"text": "{\n after: any\n before: any\n column: ColumnConfig\n record: GristRecord\n row: number\n }"
|
|
2161
|
+
}
|
|
2162
|
+
}
|
|
2163
|
+
],
|
|
2164
|
+
"inheritedFrom": {
|
|
2165
|
+
"name": "DataManipulator",
|
|
2166
|
+
"module": "src/data-manipulator.ts"
|
|
2167
|
+
}
|
|
2168
|
+
},
|
|
2169
|
+
{
|
|
2170
|
+
"kind": "method",
|
|
2171
|
+
"name": "onSelectRecordChanged",
|
|
2172
|
+
"parameters": [
|
|
2173
|
+
{
|
|
2174
|
+
"name": "{\n selectedRecords,\n added = [],\n removed = []\n }",
|
|
2175
|
+
"type": {
|
|
2176
|
+
"text": "{\n selectedRecords: GristRecord[]\n added: GristRecord[]\n removed: GristRecord[]\n }"
|
|
2177
|
+
}
|
|
2178
|
+
}
|
|
2179
|
+
],
|
|
2180
|
+
"inheritedFrom": {
|
|
2181
|
+
"name": "DataManipulator",
|
|
2182
|
+
"module": "src/data-manipulator.ts"
|
|
2183
|
+
}
|
|
2184
|
+
},
|
|
1988
2185
|
{
|
|
1989
2186
|
"kind": "method",
|
|
1990
2187
|
"name": "onRecordChanged",
|
|
@@ -2007,23 +2204,11 @@
|
|
|
2007
2204
|
"text": "ColumnConfig | null"
|
|
2008
2205
|
}
|
|
2009
2206
|
}
|
|
2010
|
-
]
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
"parameters": [
|
|
2016
|
-
{
|
|
2017
|
-
"name": "e",
|
|
2018
|
-
"type": {
|
|
2019
|
-
"text": "Event"
|
|
2020
|
-
}
|
|
2021
|
-
}
|
|
2022
|
-
]
|
|
2023
|
-
},
|
|
2024
|
-
{
|
|
2025
|
-
"kind": "field",
|
|
2026
|
-
"name": "pullToRefreshTarget"
|
|
2207
|
+
],
|
|
2208
|
+
"inheritedFrom": {
|
|
2209
|
+
"name": "DataManipulator",
|
|
2210
|
+
"module": "src/data-manipulator.ts"
|
|
2211
|
+
}
|
|
2027
2212
|
}
|
|
2028
2213
|
],
|
|
2029
2214
|
"events": [
|
|
@@ -2037,10 +2222,30 @@
|
|
|
2037
2222
|
"name": "record-change",
|
|
2038
2223
|
"type": {
|
|
2039
2224
|
"text": "CustomEvent"
|
|
2225
|
+
},
|
|
2226
|
+
"inheritedFrom": {
|
|
2227
|
+
"name": "DataManipulator",
|
|
2228
|
+
"module": "src/data-manipulator.ts"
|
|
2040
2229
|
}
|
|
2041
2230
|
}
|
|
2042
2231
|
],
|
|
2043
2232
|
"attributes": [
|
|
2233
|
+
{
|
|
2234
|
+
"name": "isTop",
|
|
2235
|
+
"type": {
|
|
2236
|
+
"text": "boolean"
|
|
2237
|
+
},
|
|
2238
|
+
"default": "false",
|
|
2239
|
+
"fieldName": "isTop"
|
|
2240
|
+
},
|
|
2241
|
+
{
|
|
2242
|
+
"name": "_records",
|
|
2243
|
+
"type": {
|
|
2244
|
+
"text": "GristRecord[]"
|
|
2245
|
+
},
|
|
2246
|
+
"default": "[]",
|
|
2247
|
+
"fieldName": "_records"
|
|
2248
|
+
},
|
|
2044
2249
|
{
|
|
2045
2250
|
"name": "config",
|
|
2046
2251
|
"type": {
|
|
@@ -2050,7 +2255,11 @@
|
|
|
2050
2255
|
"resolveInitializer": {
|
|
2051
2256
|
"module": "/src/configure/zero-config"
|
|
2052
2257
|
},
|
|
2053
|
-
"fieldName": "config"
|
|
2258
|
+
"fieldName": "config",
|
|
2259
|
+
"inheritedFrom": {
|
|
2260
|
+
"name": "DataManipulator",
|
|
2261
|
+
"module": "src/data-manipulator.ts"
|
|
2262
|
+
}
|
|
2054
2263
|
},
|
|
2055
2264
|
{
|
|
2056
2265
|
"name": "data",
|
|
@@ -2061,28 +2270,16 @@
|
|
|
2061
2270
|
"resolveInitializer": {
|
|
2062
2271
|
"module": "/src/configure/zero-config"
|
|
2063
2272
|
},
|
|
2064
|
-
"fieldName": "data"
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
"text": "boolean"
|
|
2070
|
-
},
|
|
2071
|
-
"default": "false",
|
|
2072
|
-
"fieldName": "isTop"
|
|
2073
|
-
},
|
|
2074
|
-
{
|
|
2075
|
-
"name": "_records",
|
|
2076
|
-
"type": {
|
|
2077
|
-
"text": "GristRecord[]"
|
|
2078
|
-
},
|
|
2079
|
-
"default": "[]",
|
|
2080
|
-
"fieldName": "_records"
|
|
2273
|
+
"fieldName": "data",
|
|
2274
|
+
"inheritedFrom": {
|
|
2275
|
+
"name": "DataManipulator",
|
|
2276
|
+
"module": "src/data-manipulator.ts"
|
|
2277
|
+
}
|
|
2081
2278
|
}
|
|
2082
2279
|
],
|
|
2083
2280
|
"superclass": {
|
|
2084
|
-
"name": "
|
|
2085
|
-
"
|
|
2281
|
+
"name": "DataManipulator",
|
|
2282
|
+
"module": "/src/data-manipulator"
|
|
2086
2283
|
},
|
|
2087
2284
|
"tagName": "ox-card",
|
|
2088
2285
|
"customElement": true
|
|
@@ -2181,41 +2378,11 @@
|
|
|
2181
2378
|
"privacy": "private",
|
|
2182
2379
|
"default": "recordCardDblClickHandler.bind(this)"
|
|
2183
2380
|
},
|
|
2184
|
-
{
|
|
2185
|
-
"kind": "method",
|
|
2186
|
-
"name": "onFieldChange",
|
|
2187
|
-
"parameters": [
|
|
2188
|
-
{
|
|
2189
|
-
"name": "e",
|
|
2190
|
-
"type": {
|
|
2191
|
-
"text": "Event"
|
|
2192
|
-
}
|
|
2193
|
-
}
|
|
2194
|
-
]
|
|
2195
|
-
},
|
|
2196
|
-
{
|
|
2197
|
-
"kind": "field",
|
|
2198
|
-
"name": "recordView"
|
|
2199
|
-
},
|
|
2200
2381
|
{
|
|
2201
2382
|
"kind": "method",
|
|
2202
2383
|
"name": "popupRecordView"
|
|
2203
2384
|
}
|
|
2204
2385
|
],
|
|
2205
|
-
"events": [
|
|
2206
|
-
{
|
|
2207
|
-
"name": "field-change",
|
|
2208
|
-
"type": {
|
|
2209
|
-
"text": "CustomEvent"
|
|
2210
|
-
}
|
|
2211
|
-
},
|
|
2212
|
-
{
|
|
2213
|
-
"name": "record-reset",
|
|
2214
|
-
"type": {
|
|
2215
|
-
"text": "CustomEvent"
|
|
2216
|
-
}
|
|
2217
|
-
}
|
|
2218
|
-
],
|
|
2219
2386
|
"attributes": [
|
|
2220
2387
|
{
|
|
2221
2388
|
"name": "config",
|
|
@@ -2399,6 +2566,22 @@
|
|
|
2399
2566
|
},
|
|
2400
2567
|
"privacy": "private"
|
|
2401
2568
|
},
|
|
2569
|
+
{
|
|
2570
|
+
"kind": "field",
|
|
2571
|
+
"name": "_recordView",
|
|
2572
|
+
"type": {
|
|
2573
|
+
"text": "any | undefined"
|
|
2574
|
+
},
|
|
2575
|
+
"privacy": "private"
|
|
2576
|
+
},
|
|
2577
|
+
{
|
|
2578
|
+
"kind": "field",
|
|
2579
|
+
"name": "_recordViewRow",
|
|
2580
|
+
"type": {
|
|
2581
|
+
"text": "number | undefined"
|
|
2582
|
+
},
|
|
2583
|
+
"privacy": "private"
|
|
2584
|
+
},
|
|
2402
2585
|
{
|
|
2403
2586
|
"kind": "method",
|
|
2404
2587
|
"name": "resetEdit"
|
|
@@ -2448,6 +2631,18 @@
|
|
|
2448
2631
|
{
|
|
2449
2632
|
"kind": "method",
|
|
2450
2633
|
"name": "focus"
|
|
2634
|
+
},
|
|
2635
|
+
{
|
|
2636
|
+
"kind": "method",
|
|
2637
|
+
"name": "popupRecordView",
|
|
2638
|
+
"parameters": [
|
|
2639
|
+
{
|
|
2640
|
+
"name": "{ record, row }",
|
|
2641
|
+
"type": {
|
|
2642
|
+
"text": "{ row: number; record: GristRecord }"
|
|
2643
|
+
}
|
|
2644
|
+
}
|
|
2645
|
+
]
|
|
2451
2646
|
}
|
|
2452
2647
|
],
|
|
2453
2648
|
"attributes": [
|
|
@@ -3113,24 +3308,6 @@
|
|
|
3113
3308
|
"description": "DataGrid",
|
|
3114
3309
|
"name": "DataGrid",
|
|
3115
3310
|
"members": [
|
|
3116
|
-
{
|
|
3117
|
-
"kind": "field",
|
|
3118
|
-
"name": "config",
|
|
3119
|
-
"type": {
|
|
3120
|
-
"text": "GristConfig"
|
|
3121
|
-
},
|
|
3122
|
-
"default": "ZERO_CONFIG",
|
|
3123
|
-
"attribute": "config"
|
|
3124
|
-
},
|
|
3125
|
-
{
|
|
3126
|
-
"kind": "field",
|
|
3127
|
-
"name": "data",
|
|
3128
|
-
"type": {
|
|
3129
|
-
"text": "GristData"
|
|
3130
|
-
},
|
|
3131
|
-
"default": "ZERO_DATA",
|
|
3132
|
-
"attribute": "data"
|
|
3133
|
-
},
|
|
3134
3311
|
{
|
|
3135
3312
|
"kind": "field",
|
|
3136
3313
|
"name": "focused",
|
|
@@ -3180,6 +3357,27 @@
|
|
|
3180
3357
|
}
|
|
3181
3358
|
]
|
|
3182
3359
|
},
|
|
3360
|
+
{
|
|
3361
|
+
"kind": "method",
|
|
3362
|
+
"name": "onSelectRecordChanged",
|
|
3363
|
+
"parameters": [
|
|
3364
|
+
{
|
|
3365
|
+
"name": "{\n selectedRecords,\n added,\n removed\n }",
|
|
3366
|
+
"type": {
|
|
3367
|
+
"text": "{\n selectedRecords: GristRecord[]\n added: GristRecord[]\n removed: GristRecord[]\n }"
|
|
3368
|
+
}
|
|
3369
|
+
}
|
|
3370
|
+
],
|
|
3371
|
+
"return": {
|
|
3372
|
+
"type": {
|
|
3373
|
+
"text": "void"
|
|
3374
|
+
}
|
|
3375
|
+
},
|
|
3376
|
+
"inheritedFrom": {
|
|
3377
|
+
"name": "DataManipulator",
|
|
3378
|
+
"module": "src/data-manipulator.ts"
|
|
3379
|
+
}
|
|
3380
|
+
},
|
|
3183
3381
|
{
|
|
3184
3382
|
"kind": "method",
|
|
3185
3383
|
"name": "onRecordChanged",
|
|
@@ -3202,7 +3400,11 @@
|
|
|
3202
3400
|
"text": "ColumnConfig | null"
|
|
3203
3401
|
}
|
|
3204
3402
|
}
|
|
3205
|
-
]
|
|
3403
|
+
],
|
|
3404
|
+
"inheritedFrom": {
|
|
3405
|
+
"name": "DataManipulator",
|
|
3406
|
+
"module": "src/data-manipulator.ts"
|
|
3407
|
+
}
|
|
3206
3408
|
},
|
|
3207
3409
|
{
|
|
3208
3410
|
"kind": "method",
|
|
@@ -3223,17 +3425,58 @@
|
|
|
3223
3425
|
{
|
|
3224
3426
|
"kind": "field",
|
|
3225
3427
|
"name": "pullToRefreshTarget"
|
|
3226
|
-
}
|
|
3227
|
-
],
|
|
3228
|
-
"events": [
|
|
3428
|
+
},
|
|
3229
3429
|
{
|
|
3230
|
-
"
|
|
3430
|
+
"kind": "field",
|
|
3431
|
+
"name": "config",
|
|
3231
3432
|
"type": {
|
|
3232
|
-
"text": "
|
|
3433
|
+
"text": "GristConfig"
|
|
3434
|
+
},
|
|
3435
|
+
"default": "ZERO_CONFIG",
|
|
3436
|
+
"attribute": "config",
|
|
3437
|
+
"inheritedFrom": {
|
|
3438
|
+
"name": "DataManipulator",
|
|
3439
|
+
"module": "src/data-manipulator.ts"
|
|
3440
|
+
}
|
|
3441
|
+
},
|
|
3442
|
+
{
|
|
3443
|
+
"kind": "field",
|
|
3444
|
+
"name": "data",
|
|
3445
|
+
"type": {
|
|
3446
|
+
"text": "GristData"
|
|
3447
|
+
},
|
|
3448
|
+
"default": "ZERO_DATA",
|
|
3449
|
+
"attribute": "data",
|
|
3450
|
+
"inheritedFrom": {
|
|
3451
|
+
"name": "DataManipulator",
|
|
3452
|
+
"module": "src/data-manipulator.ts"
|
|
3453
|
+
}
|
|
3454
|
+
},
|
|
3455
|
+
{
|
|
3456
|
+
"kind": "method",
|
|
3457
|
+
"name": "onFieldChange",
|
|
3458
|
+
"parameters": [
|
|
3459
|
+
{
|
|
3460
|
+
"name": "{\n after,\n before,\n column,\n record,\n row\n }",
|
|
3461
|
+
"type": {
|
|
3462
|
+
"text": "{\n after: any\n before: any\n column: ColumnConfig\n record: GristRecord\n row: number\n }"
|
|
3463
|
+
}
|
|
3464
|
+
}
|
|
3465
|
+
],
|
|
3466
|
+
"inheritedFrom": {
|
|
3467
|
+
"name": "DataManipulator",
|
|
3468
|
+
"module": "src/data-manipulator.ts"
|
|
3233
3469
|
}
|
|
3234
3470
|
}
|
|
3235
3471
|
],
|
|
3236
3472
|
"attributes": [
|
|
3473
|
+
{
|
|
3474
|
+
"name": "focused",
|
|
3475
|
+
"type": {
|
|
3476
|
+
"text": "{ row: number; column: number } | undefined"
|
|
3477
|
+
},
|
|
3478
|
+
"fieldName": "focused"
|
|
3479
|
+
},
|
|
3237
3480
|
{
|
|
3238
3481
|
"name": "config",
|
|
3239
3482
|
"type": {
|
|
@@ -3243,7 +3486,11 @@
|
|
|
3243
3486
|
"resolveInitializer": {
|
|
3244
3487
|
"module": "/src/configure/zero-config"
|
|
3245
3488
|
},
|
|
3246
|
-
"fieldName": "config"
|
|
3489
|
+
"fieldName": "config",
|
|
3490
|
+
"inheritedFrom": {
|
|
3491
|
+
"name": "DataManipulator",
|
|
3492
|
+
"module": "src/data-manipulator.ts"
|
|
3493
|
+
}
|
|
3247
3494
|
},
|
|
3248
3495
|
{
|
|
3249
3496
|
"name": "data",
|
|
@@ -3254,22 +3501,31 @@
|
|
|
3254
3501
|
"resolveInitializer": {
|
|
3255
3502
|
"module": "/src/configure/zero-config"
|
|
3256
3503
|
},
|
|
3257
|
-
"fieldName": "data"
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
"text": "{ row: number; column: number } | undefined"
|
|
3263
|
-
},
|
|
3264
|
-
"fieldName": "focused"
|
|
3504
|
+
"fieldName": "data",
|
|
3505
|
+
"inheritedFrom": {
|
|
3506
|
+
"name": "DataManipulator",
|
|
3507
|
+
"module": "src/data-manipulator.ts"
|
|
3508
|
+
}
|
|
3265
3509
|
}
|
|
3266
3510
|
],
|
|
3267
3511
|
"superclass": {
|
|
3268
|
-
"name": "
|
|
3269
|
-
"
|
|
3512
|
+
"name": "DataManipulator",
|
|
3513
|
+
"module": "/src/data-manipulator"
|
|
3270
3514
|
},
|
|
3271
3515
|
"tagName": "ox-grid",
|
|
3272
|
-
"customElement": true
|
|
3516
|
+
"customElement": true,
|
|
3517
|
+
"events": [
|
|
3518
|
+
{
|
|
3519
|
+
"name": "record-change",
|
|
3520
|
+
"type": {
|
|
3521
|
+
"text": "CustomEvent"
|
|
3522
|
+
},
|
|
3523
|
+
"inheritedFrom": {
|
|
3524
|
+
"name": "DataManipulator",
|
|
3525
|
+
"module": "src/data-manipulator.ts"
|
|
3526
|
+
}
|
|
3527
|
+
}
|
|
3528
|
+
]
|
|
3273
3529
|
}
|
|
3274
3530
|
],
|
|
3275
3531
|
"exports": [
|
|
@@ -3556,24 +3812,6 @@
|
|
|
3556
3812
|
"description": "",
|
|
3557
3813
|
"name": "DataList",
|
|
3558
3814
|
"members": [
|
|
3559
|
-
{
|
|
3560
|
-
"kind": "field",
|
|
3561
|
-
"name": "config",
|
|
3562
|
-
"type": {
|
|
3563
|
-
"text": "GristConfig"
|
|
3564
|
-
},
|
|
3565
|
-
"default": "ZERO_CONFIG",
|
|
3566
|
-
"attribute": "config"
|
|
3567
|
-
},
|
|
3568
|
-
{
|
|
3569
|
-
"kind": "field",
|
|
3570
|
-
"name": "data",
|
|
3571
|
-
"type": {
|
|
3572
|
-
"text": "GristData"
|
|
3573
|
-
},
|
|
3574
|
-
"default": "ZERO_DATA",
|
|
3575
|
-
"attribute": "data"
|
|
3576
|
-
},
|
|
3577
3815
|
{
|
|
3578
3816
|
"kind": "field",
|
|
3579
3817
|
"name": "isTop",
|
|
@@ -3620,30 +3858,6 @@
|
|
|
3620
3858
|
"privacy": "private",
|
|
3621
3859
|
"default": "1"
|
|
3622
3860
|
},
|
|
3623
|
-
{
|
|
3624
|
-
"kind": "method",
|
|
3625
|
-
"name": "onRecordChanged",
|
|
3626
|
-
"parameters": [
|
|
3627
|
-
{
|
|
3628
|
-
"name": "recordData",
|
|
3629
|
-
"type": {
|
|
3630
|
-
"text": "GristRecord"
|
|
3631
|
-
}
|
|
3632
|
-
},
|
|
3633
|
-
{
|
|
3634
|
-
"name": "row",
|
|
3635
|
-
"type": {
|
|
3636
|
-
"text": "number"
|
|
3637
|
-
}
|
|
3638
|
-
},
|
|
3639
|
-
{
|
|
3640
|
-
"name": "column",
|
|
3641
|
-
"type": {
|
|
3642
|
-
"text": "ColumnConfig | null"
|
|
3643
|
-
}
|
|
3644
|
-
}
|
|
3645
|
-
]
|
|
3646
|
-
},
|
|
3647
3861
|
{
|
|
3648
3862
|
"kind": "method",
|
|
3649
3863
|
"name": "gotoTop",
|
|
@@ -3659,65 +3873,163 @@
|
|
|
3659
3873
|
{
|
|
3660
3874
|
"kind": "field",
|
|
3661
3875
|
"name": "pullToRefreshTarget"
|
|
3662
|
-
}
|
|
3663
|
-
],
|
|
3664
|
-
"events": [
|
|
3665
|
-
{
|
|
3666
|
-
"name": "attach-page",
|
|
3667
|
-
"type": {
|
|
3668
|
-
"text": "CustomEvent"
|
|
3669
|
-
}
|
|
3670
3876
|
},
|
|
3671
3877
|
{
|
|
3672
|
-
"
|
|
3673
|
-
"type": {
|
|
3674
|
-
"text": "CustomEvent"
|
|
3675
|
-
}
|
|
3676
|
-
}
|
|
3677
|
-
],
|
|
3678
|
-
"attributes": [
|
|
3679
|
-
{
|
|
3878
|
+
"kind": "field",
|
|
3680
3879
|
"name": "config",
|
|
3681
3880
|
"type": {
|
|
3682
3881
|
"text": "GristConfig"
|
|
3683
3882
|
},
|
|
3684
3883
|
"default": "ZERO_CONFIG",
|
|
3685
|
-
"
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
|
|
3884
|
+
"attribute": "config",
|
|
3885
|
+
"inheritedFrom": {
|
|
3886
|
+
"name": "DataManipulator",
|
|
3887
|
+
"module": "src/data-manipulator.ts"
|
|
3888
|
+
}
|
|
3689
3889
|
},
|
|
3690
3890
|
{
|
|
3891
|
+
"kind": "field",
|
|
3691
3892
|
"name": "data",
|
|
3692
3893
|
"type": {
|
|
3693
3894
|
"text": "GristData"
|
|
3694
3895
|
},
|
|
3695
3896
|
"default": "ZERO_DATA",
|
|
3696
|
-
"
|
|
3697
|
-
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
|
|
3701
|
-
{
|
|
3702
|
-
"name": "isTop",
|
|
3703
|
-
"type": {
|
|
3704
|
-
"text": "boolean"
|
|
3705
|
-
},
|
|
3706
|
-
"default": "false",
|
|
3707
|
-
"fieldName": "isTop"
|
|
3897
|
+
"attribute": "data",
|
|
3898
|
+
"inheritedFrom": {
|
|
3899
|
+
"name": "DataManipulator",
|
|
3900
|
+
"module": "src/data-manipulator.ts"
|
|
3901
|
+
}
|
|
3708
3902
|
},
|
|
3709
3903
|
{
|
|
3710
|
-
"
|
|
3711
|
-
"
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3904
|
+
"kind": "method",
|
|
3905
|
+
"name": "onFieldChange",
|
|
3906
|
+
"parameters": [
|
|
3907
|
+
{
|
|
3908
|
+
"name": "{\n after,\n before,\n column,\n record,\n row\n }",
|
|
3909
|
+
"type": {
|
|
3910
|
+
"text": "{\n after: any\n before: any\n column: ColumnConfig\n record: GristRecord\n row: number\n }"
|
|
3911
|
+
}
|
|
3912
|
+
}
|
|
3913
|
+
],
|
|
3914
|
+
"inheritedFrom": {
|
|
3915
|
+
"name": "DataManipulator",
|
|
3916
|
+
"module": "src/data-manipulator.ts"
|
|
3917
|
+
}
|
|
3918
|
+
},
|
|
3919
|
+
{
|
|
3920
|
+
"kind": "method",
|
|
3921
|
+
"name": "onSelectRecordChanged",
|
|
3922
|
+
"parameters": [
|
|
3923
|
+
{
|
|
3924
|
+
"name": "{\n selectedRecords,\n added = [],\n removed = []\n }",
|
|
3925
|
+
"type": {
|
|
3926
|
+
"text": "{\n selectedRecords: GristRecord[]\n added: GristRecord[]\n removed: GristRecord[]\n }"
|
|
3927
|
+
}
|
|
3928
|
+
}
|
|
3929
|
+
],
|
|
3930
|
+
"inheritedFrom": {
|
|
3931
|
+
"name": "DataManipulator",
|
|
3932
|
+
"module": "src/data-manipulator.ts"
|
|
3933
|
+
}
|
|
3934
|
+
},
|
|
3935
|
+
{
|
|
3936
|
+
"kind": "method",
|
|
3937
|
+
"name": "onRecordChanged",
|
|
3938
|
+
"parameters": [
|
|
3939
|
+
{
|
|
3940
|
+
"name": "recordData",
|
|
3941
|
+
"type": {
|
|
3942
|
+
"text": "GristRecord"
|
|
3943
|
+
}
|
|
3944
|
+
},
|
|
3945
|
+
{
|
|
3946
|
+
"name": "row",
|
|
3947
|
+
"type": {
|
|
3948
|
+
"text": "number"
|
|
3949
|
+
}
|
|
3950
|
+
},
|
|
3951
|
+
{
|
|
3952
|
+
"name": "column",
|
|
3953
|
+
"type": {
|
|
3954
|
+
"text": "ColumnConfig | null"
|
|
3955
|
+
}
|
|
3956
|
+
}
|
|
3957
|
+
],
|
|
3958
|
+
"inheritedFrom": {
|
|
3959
|
+
"name": "DataManipulator",
|
|
3960
|
+
"module": "src/data-manipulator.ts"
|
|
3961
|
+
}
|
|
3962
|
+
}
|
|
3963
|
+
],
|
|
3964
|
+
"events": [
|
|
3965
|
+
{
|
|
3966
|
+
"name": "attach-page",
|
|
3967
|
+
"type": {
|
|
3968
|
+
"text": "CustomEvent"
|
|
3969
|
+
}
|
|
3970
|
+
},
|
|
3971
|
+
{
|
|
3972
|
+
"name": "record-change",
|
|
3973
|
+
"type": {
|
|
3974
|
+
"text": "CustomEvent"
|
|
3975
|
+
},
|
|
3976
|
+
"inheritedFrom": {
|
|
3977
|
+
"name": "DataManipulator",
|
|
3978
|
+
"module": "src/data-manipulator.ts"
|
|
3979
|
+
}
|
|
3980
|
+
}
|
|
3981
|
+
],
|
|
3982
|
+
"attributes": [
|
|
3983
|
+
{
|
|
3984
|
+
"name": "isTop",
|
|
3985
|
+
"type": {
|
|
3986
|
+
"text": "boolean"
|
|
3987
|
+
},
|
|
3988
|
+
"default": "false",
|
|
3989
|
+
"fieldName": "isTop"
|
|
3990
|
+
},
|
|
3991
|
+
{
|
|
3992
|
+
"name": "_records",
|
|
3993
|
+
"type": {
|
|
3994
|
+
"text": "GristRecord[]"
|
|
3995
|
+
},
|
|
3996
|
+
"default": "[]",
|
|
3997
|
+
"fieldName": "_records"
|
|
3998
|
+
},
|
|
3999
|
+
{
|
|
4000
|
+
"name": "config",
|
|
4001
|
+
"type": {
|
|
4002
|
+
"text": "GristConfig"
|
|
4003
|
+
},
|
|
4004
|
+
"default": "ZERO_CONFIG",
|
|
4005
|
+
"resolveInitializer": {
|
|
4006
|
+
"module": "/src/configure/zero-config"
|
|
4007
|
+
},
|
|
4008
|
+
"fieldName": "config",
|
|
4009
|
+
"inheritedFrom": {
|
|
4010
|
+
"name": "DataManipulator",
|
|
4011
|
+
"module": "src/data-manipulator.ts"
|
|
4012
|
+
}
|
|
4013
|
+
},
|
|
4014
|
+
{
|
|
4015
|
+
"name": "data",
|
|
4016
|
+
"type": {
|
|
4017
|
+
"text": "GristData"
|
|
4018
|
+
},
|
|
4019
|
+
"default": "ZERO_DATA",
|
|
4020
|
+
"resolveInitializer": {
|
|
4021
|
+
"module": "/src/configure/zero-config"
|
|
4022
|
+
},
|
|
4023
|
+
"fieldName": "data",
|
|
4024
|
+
"inheritedFrom": {
|
|
4025
|
+
"name": "DataManipulator",
|
|
4026
|
+
"module": "src/data-manipulator.ts"
|
|
4027
|
+
}
|
|
3716
4028
|
}
|
|
3717
4029
|
],
|
|
3718
4030
|
"superclass": {
|
|
3719
|
-
"name": "
|
|
3720
|
-
"
|
|
4031
|
+
"name": "DataManipulator",
|
|
4032
|
+
"module": "/src/data-manipulator"
|
|
3721
4033
|
},
|
|
3722
4034
|
"tagName": "ox-list",
|
|
3723
4035
|
"customElement": true
|
|
@@ -3804,41 +4116,11 @@
|
|
|
3804
4116
|
},
|
|
3805
4117
|
"privacy": "private"
|
|
3806
4118
|
},
|
|
3807
|
-
{
|
|
3808
|
-
"kind": "method",
|
|
3809
|
-
"name": "onFieldChange",
|
|
3810
|
-
"parameters": [
|
|
3811
|
-
{
|
|
3812
|
-
"name": "e",
|
|
3813
|
-
"type": {
|
|
3814
|
-
"text": "Event"
|
|
3815
|
-
}
|
|
3816
|
-
}
|
|
3817
|
-
]
|
|
3818
|
-
},
|
|
3819
|
-
{
|
|
3820
|
-
"kind": "field",
|
|
3821
|
-
"name": "recordView"
|
|
3822
|
-
},
|
|
3823
4119
|
{
|
|
3824
4120
|
"kind": "method",
|
|
3825
4121
|
"name": "popupRecordView"
|
|
3826
4122
|
}
|
|
3827
4123
|
],
|
|
3828
|
-
"events": [
|
|
3829
|
-
{
|
|
3830
|
-
"name": "field-change",
|
|
3831
|
-
"type": {
|
|
3832
|
-
"text": "CustomEvent"
|
|
3833
|
-
}
|
|
3834
|
-
},
|
|
3835
|
-
{
|
|
3836
|
-
"name": "record-reset",
|
|
3837
|
-
"type": {
|
|
3838
|
-
"text": "CustomEvent"
|
|
3839
|
-
}
|
|
3840
|
-
}
|
|
3841
|
-
],
|
|
3842
4124
|
"attributes": [
|
|
3843
4125
|
{
|
|
3844
4126
|
"name": "config",
|
|
@@ -4538,43 +4820,74 @@
|
|
|
4538
4820
|
},
|
|
4539
4821
|
{
|
|
4540
4822
|
"kind": "javascript-module",
|
|
4541
|
-
"path": "src/editors/
|
|
4542
|
-
"declarations": [],
|
|
4543
|
-
"exports": [
|
|
4544
|
-
{
|
|
4545
|
-
"kind": "js",
|
|
4546
|
-
"name": "*",
|
|
4547
|
-
"declaration": {
|
|
4548
|
-
"name": "*",
|
|
4549
|
-
"package": "./registry"
|
|
4550
|
-
}
|
|
4551
|
-
},
|
|
4552
|
-
{
|
|
4553
|
-
"kind": "js",
|
|
4554
|
-
"name": "*",
|
|
4555
|
-
"declaration": {
|
|
4556
|
-
"name": "*",
|
|
4557
|
-
"package": "./input-editors"
|
|
4558
|
-
}
|
|
4559
|
-
}
|
|
4560
|
-
]
|
|
4561
|
-
},
|
|
4562
|
-
{
|
|
4563
|
-
"kind": "javascript-module",
|
|
4564
|
-
"path": "src/editors/input-editors.ts",
|
|
4823
|
+
"path": "src/editors/image-input.ts",
|
|
4565
4824
|
"declarations": [
|
|
4566
4825
|
{
|
|
4567
4826
|
"kind": "class",
|
|
4568
4827
|
"description": "",
|
|
4569
|
-
"name": "
|
|
4828
|
+
"name": "ImageInput",
|
|
4570
4829
|
"members": [
|
|
4830
|
+
{
|
|
4831
|
+
"kind": "field",
|
|
4832
|
+
"name": "editorTemplate",
|
|
4833
|
+
"inheritedFrom": {
|
|
4834
|
+
"name": "InputEditor",
|
|
4835
|
+
"module": "src/editors/input-editors.ts"
|
|
4836
|
+
}
|
|
4837
|
+
},
|
|
4838
|
+
{
|
|
4839
|
+
"kind": "method",
|
|
4840
|
+
"name": "_onchange",
|
|
4841
|
+
"return": {
|
|
4842
|
+
"type": {
|
|
4843
|
+
"text": "void"
|
|
4844
|
+
}
|
|
4845
|
+
},
|
|
4846
|
+
"parameters": [
|
|
4847
|
+
{
|
|
4848
|
+
"name": "e",
|
|
4849
|
+
"type": {
|
|
4850
|
+
"text": "Event"
|
|
4851
|
+
}
|
|
4852
|
+
}
|
|
4853
|
+
],
|
|
4854
|
+
"inheritedFrom": {
|
|
4855
|
+
"name": "InputEditor",
|
|
4856
|
+
"module": "src/editors/input-editors.ts"
|
|
4857
|
+
}
|
|
4858
|
+
},
|
|
4859
|
+
{
|
|
4860
|
+
"kind": "method",
|
|
4861
|
+
"name": "formatFromEditor",
|
|
4862
|
+
"return": {
|
|
4863
|
+
"type": {
|
|
4864
|
+
"text": "any"
|
|
4865
|
+
}
|
|
4866
|
+
},
|
|
4867
|
+
"parameters": [
|
|
4868
|
+
{
|
|
4869
|
+
"name": "e",
|
|
4870
|
+
"type": {
|
|
4871
|
+
"text": "Event"
|
|
4872
|
+
}
|
|
4873
|
+
}
|
|
4874
|
+
],
|
|
4875
|
+
"inheritedFrom": {
|
|
4876
|
+
"name": "InputEditor",
|
|
4877
|
+
"module": "src/editors/input-editors.ts"
|
|
4878
|
+
}
|
|
4879
|
+
},
|
|
4571
4880
|
{
|
|
4572
4881
|
"kind": "field",
|
|
4573
4882
|
"name": "value",
|
|
4574
4883
|
"type": {
|
|
4575
4884
|
"text": "any | undefined"
|
|
4576
4885
|
},
|
|
4577
|
-
"attribute": "value"
|
|
4886
|
+
"attribute": "value",
|
|
4887
|
+
"inheritedFrom": {
|
|
4888
|
+
"name": "InputEditor",
|
|
4889
|
+
"module": "src/editors/input-editors.ts"
|
|
4890
|
+
}
|
|
4578
4891
|
},
|
|
4579
4892
|
{
|
|
4580
4893
|
"kind": "field",
|
|
@@ -4583,7 +4896,11 @@
|
|
|
4583
4896
|
"text": "ColumnConfig"
|
|
4584
4897
|
},
|
|
4585
4898
|
"default": "ZERO_COLUMN",
|
|
4586
|
-
"attribute": "column"
|
|
4899
|
+
"attribute": "column",
|
|
4900
|
+
"inheritedFrom": {
|
|
4901
|
+
"name": "InputEditor",
|
|
4902
|
+
"module": "src/editors/input-editors.ts"
|
|
4903
|
+
}
|
|
4587
4904
|
},
|
|
4588
4905
|
{
|
|
4589
4906
|
"kind": "field",
|
|
@@ -4592,7 +4909,11 @@
|
|
|
4592
4909
|
"text": "GristRecord"
|
|
4593
4910
|
},
|
|
4594
4911
|
"default": "ZERO_RECORD",
|
|
4595
|
-
"attribute": "record"
|
|
4912
|
+
"attribute": "record",
|
|
4913
|
+
"inheritedFrom": {
|
|
4914
|
+
"name": "InputEditor",
|
|
4915
|
+
"module": "src/editors/input-editors.ts"
|
|
4916
|
+
}
|
|
4596
4917
|
},
|
|
4597
4918
|
{
|
|
4598
4919
|
"kind": "field",
|
|
@@ -4600,7 +4921,11 @@
|
|
|
4600
4921
|
"type": {
|
|
4601
4922
|
"text": "number | undefined"
|
|
4602
4923
|
},
|
|
4603
|
-
"attribute": "rowIndex"
|
|
4924
|
+
"attribute": "rowIndex",
|
|
4925
|
+
"inheritedFrom": {
|
|
4926
|
+
"name": "InputEditor",
|
|
4927
|
+
"module": "src/editors/input-editors.ts"
|
|
4928
|
+
}
|
|
4604
4929
|
},
|
|
4605
4930
|
{
|
|
4606
4931
|
"kind": "field",
|
|
@@ -4608,7 +4933,11 @@
|
|
|
4608
4933
|
"type": {
|
|
4609
4934
|
"text": "DataGridField | undefined"
|
|
4610
4935
|
},
|
|
4611
|
-
"attribute": "field"
|
|
4936
|
+
"attribute": "field",
|
|
4937
|
+
"inheritedFrom": {
|
|
4938
|
+
"name": "InputEditor",
|
|
4939
|
+
"module": "src/editors/input-editors.ts"
|
|
4940
|
+
}
|
|
4612
4941
|
},
|
|
4613
4942
|
{
|
|
4614
4943
|
"kind": "field",
|
|
@@ -4616,7 +4945,11 @@
|
|
|
4616
4945
|
"type": {
|
|
4617
4946
|
"text": "number | undefined"
|
|
4618
4947
|
},
|
|
4619
|
-
"attribute": "row"
|
|
4948
|
+
"attribute": "row",
|
|
4949
|
+
"inheritedFrom": {
|
|
4950
|
+
"name": "InputEditor",
|
|
4951
|
+
"module": "src/editors/input-editors.ts"
|
|
4952
|
+
}
|
|
4620
4953
|
},
|
|
4621
4954
|
{
|
|
4622
4955
|
"kind": "field",
|
|
@@ -4624,22 +4957,38 @@
|
|
|
4624
4957
|
"type": {
|
|
4625
4958
|
"text": "any | undefined"
|
|
4626
4959
|
},
|
|
4627
|
-
"privacy": "protected"
|
|
4960
|
+
"privacy": "protected",
|
|
4961
|
+
"inheritedFrom": {
|
|
4962
|
+
"name": "InputEditor",
|
|
4963
|
+
"module": "src/editors/input-editors.ts"
|
|
4964
|
+
}
|
|
4628
4965
|
},
|
|
4629
4966
|
{
|
|
4630
4967
|
"kind": "field",
|
|
4631
4968
|
"name": "editor",
|
|
4632
4969
|
"type": {
|
|
4633
4970
|
"text": "HTMLElement | null"
|
|
4971
|
+
},
|
|
4972
|
+
"inheritedFrom": {
|
|
4973
|
+
"name": "InputEditor",
|
|
4974
|
+
"module": "src/editors/input-editors.ts"
|
|
4634
4975
|
}
|
|
4635
4976
|
},
|
|
4636
4977
|
{
|
|
4637
4978
|
"kind": "method",
|
|
4638
|
-
"name": "select"
|
|
4979
|
+
"name": "select",
|
|
4980
|
+
"inheritedFrom": {
|
|
4981
|
+
"name": "InputEditor",
|
|
4982
|
+
"module": "src/editors/input-editors.ts"
|
|
4983
|
+
}
|
|
4639
4984
|
},
|
|
4640
4985
|
{
|
|
4641
4986
|
"kind": "method",
|
|
4642
|
-
"name": "focus"
|
|
4987
|
+
"name": "focus",
|
|
4988
|
+
"inheritedFrom": {
|
|
4989
|
+
"name": "InputEditor",
|
|
4990
|
+
"module": "src/editors/input-editors.ts"
|
|
4991
|
+
}
|
|
4643
4992
|
},
|
|
4644
4993
|
{
|
|
4645
4994
|
"kind": "method",
|
|
@@ -4656,45 +5005,19 @@
|
|
|
4656
5005
|
"text": "any"
|
|
4657
5006
|
}
|
|
4658
5007
|
}
|
|
4659
|
-
]
|
|
4660
|
-
|
|
4661
|
-
|
|
4662
|
-
|
|
4663
|
-
|
|
4664
|
-
"return": {
|
|
4665
|
-
"type": {
|
|
4666
|
-
"text": "any"
|
|
4667
|
-
}
|
|
4668
|
-
},
|
|
4669
|
-
"parameters": [
|
|
4670
|
-
{
|
|
4671
|
-
"name": "e",
|
|
4672
|
-
"type": {
|
|
4673
|
-
"text": "Event"
|
|
4674
|
-
}
|
|
4675
|
-
}
|
|
4676
|
-
]
|
|
4677
|
-
},
|
|
4678
|
-
{
|
|
4679
|
-
"kind": "method",
|
|
4680
|
-
"name": "_onfocusout"
|
|
5008
|
+
],
|
|
5009
|
+
"inheritedFrom": {
|
|
5010
|
+
"name": "InputEditor",
|
|
5011
|
+
"module": "src/editors/input-editors.ts"
|
|
5012
|
+
}
|
|
4681
5013
|
},
|
|
4682
5014
|
{
|
|
4683
5015
|
"kind": "method",
|
|
4684
|
-
"name": "
|
|
4685
|
-
"
|
|
4686
|
-
"
|
|
4687
|
-
|
|
4688
|
-
|
|
4689
|
-
},
|
|
4690
|
-
"parameters": [
|
|
4691
|
-
{
|
|
4692
|
-
"name": "e",
|
|
4693
|
-
"type": {
|
|
4694
|
-
"text": "Event"
|
|
4695
|
-
}
|
|
4696
|
-
}
|
|
4697
|
-
]
|
|
5016
|
+
"name": "_onfocusout",
|
|
5017
|
+
"inheritedFrom": {
|
|
5018
|
+
"name": "InputEditor",
|
|
5019
|
+
"module": "src/editors/input-editors.ts"
|
|
5020
|
+
}
|
|
4698
5021
|
},
|
|
4699
5022
|
{
|
|
4700
5023
|
"kind": "method",
|
|
@@ -4711,7 +5034,11 @@
|
|
|
4711
5034
|
"text": "Event"
|
|
4712
5035
|
}
|
|
4713
5036
|
}
|
|
4714
|
-
]
|
|
5037
|
+
],
|
|
5038
|
+
"inheritedFrom": {
|
|
5039
|
+
"name": "InputEditor",
|
|
5040
|
+
"module": "src/editors/input-editors.ts"
|
|
5041
|
+
}
|
|
4715
5042
|
},
|
|
4716
5043
|
{
|
|
4717
5044
|
"kind": "method",
|
|
@@ -4728,28 +5055,30 @@
|
|
|
4728
5055
|
"text": "Event"
|
|
4729
5056
|
}
|
|
4730
5057
|
}
|
|
4731
|
-
]
|
|
4732
|
-
|
|
4733
|
-
|
|
4734
|
-
|
|
4735
|
-
"name": "editorTemplate"
|
|
4736
|
-
}
|
|
4737
|
-
],
|
|
4738
|
-
"events": [
|
|
4739
|
-
{
|
|
4740
|
-
"name": "field-change",
|
|
4741
|
-
"type": {
|
|
4742
|
-
"text": "CustomEvent"
|
|
5058
|
+
],
|
|
5059
|
+
"inheritedFrom": {
|
|
5060
|
+
"name": "InputEditor",
|
|
5061
|
+
"module": "src/editors/input-editors.ts"
|
|
4743
5062
|
}
|
|
4744
5063
|
}
|
|
4745
5064
|
],
|
|
5065
|
+
"superclass": {
|
|
5066
|
+
"name": "InputEditor",
|
|
5067
|
+
"module": "/src/editors/input-editors"
|
|
5068
|
+
},
|
|
5069
|
+
"tagName": "ox-image-input",
|
|
5070
|
+
"customElement": true,
|
|
4746
5071
|
"attributes": [
|
|
4747
5072
|
{
|
|
4748
5073
|
"name": "value",
|
|
4749
5074
|
"type": {
|
|
4750
5075
|
"text": "any | undefined"
|
|
4751
5076
|
},
|
|
4752
|
-
"fieldName": "value"
|
|
5077
|
+
"fieldName": "value",
|
|
5078
|
+
"inheritedFrom": {
|
|
5079
|
+
"name": "InputEditor",
|
|
5080
|
+
"module": "src/editors/input-editors.ts"
|
|
5081
|
+
}
|
|
4753
5082
|
},
|
|
4754
5083
|
{
|
|
4755
5084
|
"name": "column",
|
|
@@ -4760,7 +5089,11 @@
|
|
|
4760
5089
|
"resolveInitializer": {
|
|
4761
5090
|
"module": "/src/configure/zero-config"
|
|
4762
5091
|
},
|
|
4763
|
-
"fieldName": "column"
|
|
5092
|
+
"fieldName": "column",
|
|
5093
|
+
"inheritedFrom": {
|
|
5094
|
+
"name": "InputEditor",
|
|
5095
|
+
"module": "src/editors/input-editors.ts"
|
|
5096
|
+
}
|
|
4764
5097
|
},
|
|
4765
5098
|
{
|
|
4766
5099
|
"name": "record",
|
|
@@ -4771,61 +5104,126 @@
|
|
|
4771
5104
|
"resolveInitializer": {
|
|
4772
5105
|
"module": "/src/configure/zero-config"
|
|
4773
5106
|
},
|
|
4774
|
-
"fieldName": "record"
|
|
5107
|
+
"fieldName": "record",
|
|
5108
|
+
"inheritedFrom": {
|
|
5109
|
+
"name": "InputEditor",
|
|
5110
|
+
"module": "src/editors/input-editors.ts"
|
|
5111
|
+
}
|
|
4775
5112
|
},
|
|
4776
5113
|
{
|
|
4777
5114
|
"name": "rowIndex",
|
|
4778
5115
|
"type": {
|
|
4779
5116
|
"text": "number | undefined"
|
|
4780
5117
|
},
|
|
4781
|
-
"fieldName": "rowIndex"
|
|
5118
|
+
"fieldName": "rowIndex",
|
|
5119
|
+
"inheritedFrom": {
|
|
5120
|
+
"name": "InputEditor",
|
|
5121
|
+
"module": "src/editors/input-editors.ts"
|
|
5122
|
+
}
|
|
4782
5123
|
},
|
|
4783
5124
|
{
|
|
4784
5125
|
"name": "field",
|
|
4785
5126
|
"type": {
|
|
4786
5127
|
"text": "DataGridField | undefined"
|
|
4787
5128
|
},
|
|
4788
|
-
"fieldName": "field"
|
|
5129
|
+
"fieldName": "field",
|
|
5130
|
+
"inheritedFrom": {
|
|
5131
|
+
"name": "InputEditor",
|
|
5132
|
+
"module": "src/editors/input-editors.ts"
|
|
5133
|
+
}
|
|
4789
5134
|
},
|
|
4790
5135
|
{
|
|
4791
5136
|
"name": "row",
|
|
4792
5137
|
"type": {
|
|
4793
5138
|
"text": "number | undefined"
|
|
4794
5139
|
},
|
|
4795
|
-
"fieldName": "row"
|
|
5140
|
+
"fieldName": "row",
|
|
5141
|
+
"inheritedFrom": {
|
|
5142
|
+
"name": "InputEditor",
|
|
5143
|
+
"module": "src/editors/input-editors.ts"
|
|
5144
|
+
}
|
|
4796
5145
|
}
|
|
4797
5146
|
],
|
|
4798
|
-
"
|
|
4799
|
-
|
|
4800
|
-
|
|
4801
|
-
|
|
4802
|
-
|
|
4803
|
-
|
|
5147
|
+
"events": [
|
|
5148
|
+
{
|
|
5149
|
+
"name": "field-change",
|
|
5150
|
+
"type": {
|
|
5151
|
+
"text": "CustomEvent"
|
|
5152
|
+
},
|
|
5153
|
+
"inheritedFrom": {
|
|
5154
|
+
"name": "InputEditor",
|
|
5155
|
+
"module": "src/editors/input-editors.ts"
|
|
5156
|
+
}
|
|
5157
|
+
}
|
|
5158
|
+
]
|
|
5159
|
+
}
|
|
5160
|
+
],
|
|
5161
|
+
"exports": [
|
|
5162
|
+
{
|
|
5163
|
+
"kind": "js",
|
|
5164
|
+
"name": "ImageInput",
|
|
5165
|
+
"declaration": {
|
|
5166
|
+
"name": "ImageInput",
|
|
5167
|
+
"module": "src/editors/image-input.ts"
|
|
5168
|
+
}
|
|
5169
|
+
},
|
|
5170
|
+
{
|
|
5171
|
+
"kind": "custom-element-definition",
|
|
5172
|
+
"name": "ox-image-input",
|
|
5173
|
+
"declaration": {
|
|
5174
|
+
"name": "ImageInput",
|
|
5175
|
+
"module": "src/editors/image-input.ts"
|
|
5176
|
+
}
|
|
5177
|
+
}
|
|
5178
|
+
]
|
|
5179
|
+
},
|
|
5180
|
+
{
|
|
5181
|
+
"kind": "javascript-module",
|
|
5182
|
+
"path": "src/editors/index.ts",
|
|
5183
|
+
"declarations": [],
|
|
5184
|
+
"exports": [
|
|
5185
|
+
{
|
|
5186
|
+
"kind": "js",
|
|
5187
|
+
"name": "*",
|
|
5188
|
+
"declaration": {
|
|
5189
|
+
"name": "*",
|
|
5190
|
+
"package": "./registry"
|
|
5191
|
+
}
|
|
5192
|
+
},
|
|
5193
|
+
{
|
|
5194
|
+
"kind": "js",
|
|
5195
|
+
"name": "*",
|
|
5196
|
+
"declaration": {
|
|
5197
|
+
"name": "*",
|
|
5198
|
+
"package": "./input-editors"
|
|
5199
|
+
}
|
|
4804
5200
|
},
|
|
5201
|
+
{
|
|
5202
|
+
"kind": "js",
|
|
5203
|
+
"name": "*",
|
|
5204
|
+
"declaration": {
|
|
5205
|
+
"name": "*",
|
|
5206
|
+
"package": "./image-input"
|
|
5207
|
+
}
|
|
5208
|
+
}
|
|
5209
|
+
]
|
|
5210
|
+
},
|
|
5211
|
+
{
|
|
5212
|
+
"kind": "javascript-module",
|
|
5213
|
+
"path": "src/editors/input-editors.ts",
|
|
5214
|
+
"declarations": [
|
|
4805
5215
|
{
|
|
4806
5216
|
"kind": "class",
|
|
4807
5217
|
"description": "",
|
|
4808
|
-
"name": "
|
|
5218
|
+
"name": "InputEditor",
|
|
4809
5219
|
"members": [
|
|
4810
|
-
{
|
|
4811
|
-
"kind": "field",
|
|
4812
|
-
"name": "editorTemplate",
|
|
4813
|
-
"inheritedFrom": {
|
|
4814
|
-
"name": "InputEditor",
|
|
4815
|
-
"module": "src/editors/input-editors.ts"
|
|
4816
|
-
}
|
|
4817
|
-
},
|
|
4818
5220
|
{
|
|
4819
5221
|
"kind": "field",
|
|
4820
5222
|
"name": "value",
|
|
4821
5223
|
"type": {
|
|
4822
5224
|
"text": "any | undefined"
|
|
4823
5225
|
},
|
|
4824
|
-
"attribute": "value"
|
|
4825
|
-
"inheritedFrom": {
|
|
4826
|
-
"name": "InputEditor",
|
|
4827
|
-
"module": "src/editors/input-editors.ts"
|
|
4828
|
-
}
|
|
5226
|
+
"attribute": "value"
|
|
4829
5227
|
},
|
|
4830
5228
|
{
|
|
4831
5229
|
"kind": "field",
|
|
@@ -4834,11 +5232,7 @@
|
|
|
4834
5232
|
"text": "ColumnConfig"
|
|
4835
5233
|
},
|
|
4836
5234
|
"default": "ZERO_COLUMN",
|
|
4837
|
-
"attribute": "column"
|
|
4838
|
-
"inheritedFrom": {
|
|
4839
|
-
"name": "InputEditor",
|
|
4840
|
-
"module": "src/editors/input-editors.ts"
|
|
4841
|
-
}
|
|
5235
|
+
"attribute": "column"
|
|
4842
5236
|
},
|
|
4843
5237
|
{
|
|
4844
5238
|
"kind": "field",
|
|
@@ -4847,11 +5241,7 @@
|
|
|
4847
5241
|
"text": "GristRecord"
|
|
4848
5242
|
},
|
|
4849
5243
|
"default": "ZERO_RECORD",
|
|
4850
|
-
"attribute": "record"
|
|
4851
|
-
"inheritedFrom": {
|
|
4852
|
-
"name": "InputEditor",
|
|
4853
|
-
"module": "src/editors/input-editors.ts"
|
|
4854
|
-
}
|
|
5244
|
+
"attribute": "record"
|
|
4855
5245
|
},
|
|
4856
5246
|
{
|
|
4857
5247
|
"kind": "field",
|
|
@@ -4859,11 +5249,7 @@
|
|
|
4859
5249
|
"type": {
|
|
4860
5250
|
"text": "number | undefined"
|
|
4861
5251
|
},
|
|
4862
|
-
"attribute": "rowIndex"
|
|
4863
|
-
"inheritedFrom": {
|
|
4864
|
-
"name": "InputEditor",
|
|
4865
|
-
"module": "src/editors/input-editors.ts"
|
|
4866
|
-
}
|
|
5252
|
+
"attribute": "rowIndex"
|
|
4867
5253
|
},
|
|
4868
5254
|
{
|
|
4869
5255
|
"kind": "field",
|
|
@@ -4871,11 +5257,7 @@
|
|
|
4871
5257
|
"type": {
|
|
4872
5258
|
"text": "DataGridField | undefined"
|
|
4873
5259
|
},
|
|
4874
|
-
"attribute": "field"
|
|
4875
|
-
"inheritedFrom": {
|
|
4876
|
-
"name": "InputEditor",
|
|
4877
|
-
"module": "src/editors/input-editors.ts"
|
|
4878
|
-
}
|
|
5260
|
+
"attribute": "field"
|
|
4879
5261
|
},
|
|
4880
5262
|
{
|
|
4881
5263
|
"kind": "field",
|
|
@@ -4883,11 +5265,7 @@
|
|
|
4883
5265
|
"type": {
|
|
4884
5266
|
"text": "number | undefined"
|
|
4885
5267
|
},
|
|
4886
|
-
"attribute": "row"
|
|
4887
|
-
"inheritedFrom": {
|
|
4888
|
-
"name": "InputEditor",
|
|
4889
|
-
"module": "src/editors/input-editors.ts"
|
|
4890
|
-
}
|
|
5268
|
+
"attribute": "row"
|
|
4891
5269
|
},
|
|
4892
5270
|
{
|
|
4893
5271
|
"kind": "field",
|
|
@@ -4895,38 +5273,22 @@
|
|
|
4895
5273
|
"type": {
|
|
4896
5274
|
"text": "any | undefined"
|
|
4897
5275
|
},
|
|
4898
|
-
"privacy": "protected"
|
|
4899
|
-
"inheritedFrom": {
|
|
4900
|
-
"name": "InputEditor",
|
|
4901
|
-
"module": "src/editors/input-editors.ts"
|
|
4902
|
-
}
|
|
5276
|
+
"privacy": "protected"
|
|
4903
5277
|
},
|
|
4904
5278
|
{
|
|
4905
5279
|
"kind": "field",
|
|
4906
5280
|
"name": "editor",
|
|
4907
5281
|
"type": {
|
|
4908
5282
|
"text": "HTMLElement | null"
|
|
4909
|
-
},
|
|
4910
|
-
"inheritedFrom": {
|
|
4911
|
-
"name": "InputEditor",
|
|
4912
|
-
"module": "src/editors/input-editors.ts"
|
|
4913
5283
|
}
|
|
4914
5284
|
},
|
|
4915
5285
|
{
|
|
4916
5286
|
"kind": "method",
|
|
4917
|
-
"name": "select"
|
|
4918
|
-
"inheritedFrom": {
|
|
4919
|
-
"name": "InputEditor",
|
|
4920
|
-
"module": "src/editors/input-editors.ts"
|
|
4921
|
-
}
|
|
5287
|
+
"name": "select"
|
|
4922
5288
|
},
|
|
4923
5289
|
{
|
|
4924
5290
|
"kind": "method",
|
|
4925
|
-
"name": "focus"
|
|
4926
|
-
"inheritedFrom": {
|
|
4927
|
-
"name": "InputEditor",
|
|
4928
|
-
"module": "src/editors/input-editors.ts"
|
|
4929
|
-
}
|
|
5291
|
+
"name": "focus"
|
|
4930
5292
|
},
|
|
4931
5293
|
{
|
|
4932
5294
|
"kind": "method",
|
|
@@ -4943,11 +5305,7 @@
|
|
|
4943
5305
|
"text": "any"
|
|
4944
5306
|
}
|
|
4945
5307
|
}
|
|
4946
|
-
]
|
|
4947
|
-
"inheritedFrom": {
|
|
4948
|
-
"name": "InputEditor",
|
|
4949
|
-
"module": "src/editors/input-editors.ts"
|
|
4950
|
-
}
|
|
5308
|
+
]
|
|
4951
5309
|
},
|
|
4952
5310
|
{
|
|
4953
5311
|
"kind": "method",
|
|
@@ -4964,19 +5322,11 @@
|
|
|
4964
5322
|
"text": "Event"
|
|
4965
5323
|
}
|
|
4966
5324
|
}
|
|
4967
|
-
]
|
|
4968
|
-
"inheritedFrom": {
|
|
4969
|
-
"name": "InputEditor",
|
|
4970
|
-
"module": "src/editors/input-editors.ts"
|
|
4971
|
-
}
|
|
5325
|
+
]
|
|
4972
5326
|
},
|
|
4973
5327
|
{
|
|
4974
5328
|
"kind": "method",
|
|
4975
|
-
"name": "_onfocusout"
|
|
4976
|
-
"inheritedFrom": {
|
|
4977
|
-
"name": "InputEditor",
|
|
4978
|
-
"module": "src/editors/input-editors.ts"
|
|
4979
|
-
}
|
|
5329
|
+
"name": "_onfocusout"
|
|
4980
5330
|
},
|
|
4981
5331
|
{
|
|
4982
5332
|
"kind": "method",
|
|
@@ -4993,11 +5343,7 @@
|
|
|
4993
5343
|
"text": "Event"
|
|
4994
5344
|
}
|
|
4995
5345
|
}
|
|
4996
|
-
]
|
|
4997
|
-
"inheritedFrom": {
|
|
4998
|
-
"name": "InputEditor",
|
|
4999
|
-
"module": "src/editors/input-editors.ts"
|
|
5000
|
-
}
|
|
5346
|
+
]
|
|
5001
5347
|
},
|
|
5002
5348
|
{
|
|
5003
5349
|
"kind": "method",
|
|
@@ -5014,11 +5360,7 @@
|
|
|
5014
5360
|
"text": "Event"
|
|
5015
5361
|
}
|
|
5016
5362
|
}
|
|
5017
|
-
]
|
|
5018
|
-
"inheritedFrom": {
|
|
5019
|
-
"name": "InputEditor",
|
|
5020
|
-
"module": "src/editors/input-editors.ts"
|
|
5021
|
-
}
|
|
5363
|
+
]
|
|
5022
5364
|
},
|
|
5023
5365
|
{
|
|
5024
5366
|
"kind": "method",
|
|
@@ -5035,30 +5377,28 @@
|
|
|
5035
5377
|
"text": "Event"
|
|
5036
5378
|
}
|
|
5037
5379
|
}
|
|
5038
|
-
]
|
|
5039
|
-
|
|
5040
|
-
|
|
5041
|
-
|
|
5380
|
+
]
|
|
5381
|
+
},
|
|
5382
|
+
{
|
|
5383
|
+
"kind": "field",
|
|
5384
|
+
"name": "editorTemplate"
|
|
5385
|
+
}
|
|
5386
|
+
],
|
|
5387
|
+
"events": [
|
|
5388
|
+
{
|
|
5389
|
+
"name": "field-change",
|
|
5390
|
+
"type": {
|
|
5391
|
+
"text": "CustomEvent"
|
|
5042
5392
|
}
|
|
5043
5393
|
}
|
|
5044
5394
|
],
|
|
5045
|
-
"superclass": {
|
|
5046
|
-
"name": "InputEditor",
|
|
5047
|
-
"module": "src/editors/input-editors.ts"
|
|
5048
|
-
},
|
|
5049
|
-
"tagName": "ox-text-input",
|
|
5050
|
-
"customElement": true,
|
|
5051
5395
|
"attributes": [
|
|
5052
5396
|
{
|
|
5053
5397
|
"name": "value",
|
|
5054
5398
|
"type": {
|
|
5055
5399
|
"text": "any | undefined"
|
|
5056
5400
|
},
|
|
5057
|
-
"fieldName": "value"
|
|
5058
|
-
"inheritedFrom": {
|
|
5059
|
-
"name": "InputEditor",
|
|
5060
|
-
"module": "src/editors/input-editors.ts"
|
|
5061
|
-
}
|
|
5401
|
+
"fieldName": "value"
|
|
5062
5402
|
},
|
|
5063
5403
|
{
|
|
5064
5404
|
"name": "column",
|
|
@@ -5069,11 +5409,7 @@
|
|
|
5069
5409
|
"resolveInitializer": {
|
|
5070
5410
|
"module": "/src/configure/zero-config"
|
|
5071
5411
|
},
|
|
5072
|
-
"fieldName": "column"
|
|
5073
|
-
"inheritedFrom": {
|
|
5074
|
-
"name": "InputEditor",
|
|
5075
|
-
"module": "src/editors/input-editors.ts"
|
|
5076
|
-
}
|
|
5412
|
+
"fieldName": "column"
|
|
5077
5413
|
},
|
|
5078
5414
|
{
|
|
5079
5415
|
"name": "record",
|
|
@@ -5084,63 +5420,41 @@
|
|
|
5084
5420
|
"resolveInitializer": {
|
|
5085
5421
|
"module": "/src/configure/zero-config"
|
|
5086
5422
|
},
|
|
5087
|
-
"fieldName": "record"
|
|
5088
|
-
"inheritedFrom": {
|
|
5089
|
-
"name": "InputEditor",
|
|
5090
|
-
"module": "src/editors/input-editors.ts"
|
|
5091
|
-
}
|
|
5423
|
+
"fieldName": "record"
|
|
5092
5424
|
},
|
|
5093
5425
|
{
|
|
5094
5426
|
"name": "rowIndex",
|
|
5095
5427
|
"type": {
|
|
5096
5428
|
"text": "number | undefined"
|
|
5097
5429
|
},
|
|
5098
|
-
"fieldName": "rowIndex"
|
|
5099
|
-
"inheritedFrom": {
|
|
5100
|
-
"name": "InputEditor",
|
|
5101
|
-
"module": "src/editors/input-editors.ts"
|
|
5102
|
-
}
|
|
5430
|
+
"fieldName": "rowIndex"
|
|
5103
5431
|
},
|
|
5104
5432
|
{
|
|
5105
5433
|
"name": "field",
|
|
5106
5434
|
"type": {
|
|
5107
5435
|
"text": "DataGridField | undefined"
|
|
5108
5436
|
},
|
|
5109
|
-
"fieldName": "field"
|
|
5110
|
-
"inheritedFrom": {
|
|
5111
|
-
"name": "InputEditor",
|
|
5112
|
-
"module": "src/editors/input-editors.ts"
|
|
5113
|
-
}
|
|
5437
|
+
"fieldName": "field"
|
|
5114
5438
|
},
|
|
5115
5439
|
{
|
|
5116
5440
|
"name": "row",
|
|
5117
5441
|
"type": {
|
|
5118
5442
|
"text": "number | undefined"
|
|
5119
5443
|
},
|
|
5120
|
-
"fieldName": "row"
|
|
5121
|
-
"inheritedFrom": {
|
|
5122
|
-
"name": "InputEditor",
|
|
5123
|
-
"module": "src/editors/input-editors.ts"
|
|
5124
|
-
}
|
|
5444
|
+
"fieldName": "row"
|
|
5125
5445
|
}
|
|
5126
5446
|
],
|
|
5127
|
-
"
|
|
5128
|
-
|
|
5129
|
-
|
|
5130
|
-
|
|
5131
|
-
|
|
5132
|
-
|
|
5133
|
-
"inheritedFrom": {
|
|
5134
|
-
"name": "InputEditor",
|
|
5135
|
-
"module": "src/editors/input-editors.ts"
|
|
5136
|
-
}
|
|
5137
|
-
}
|
|
5138
|
-
]
|
|
5447
|
+
"superclass": {
|
|
5448
|
+
"name": "LitElement",
|
|
5449
|
+
"package": "lit"
|
|
5450
|
+
},
|
|
5451
|
+
"tagName": "ox-input-editor",
|
|
5452
|
+
"customElement": true
|
|
5139
5453
|
},
|
|
5140
5454
|
{
|
|
5141
5455
|
"kind": "class",
|
|
5142
5456
|
"description": "",
|
|
5143
|
-
"name": "
|
|
5457
|
+
"name": "TextInput",
|
|
5144
5458
|
"members": [
|
|
5145
5459
|
{
|
|
5146
5460
|
"kind": "field",
|
|
@@ -5381,7 +5695,7 @@
|
|
|
5381
5695
|
"name": "InputEditor",
|
|
5382
5696
|
"module": "src/editors/input-editors.ts"
|
|
5383
5697
|
},
|
|
5384
|
-
"tagName": "ox-
|
|
5698
|
+
"tagName": "ox-text-input",
|
|
5385
5699
|
"customElement": true,
|
|
5386
5700
|
"attributes": [
|
|
5387
5701
|
{
|
|
@@ -5475,7 +5789,7 @@
|
|
|
5475
5789
|
{
|
|
5476
5790
|
"kind": "class",
|
|
5477
5791
|
"description": "",
|
|
5478
|
-
"name": "
|
|
5792
|
+
"name": "EmailInput",
|
|
5479
5793
|
"members": [
|
|
5480
5794
|
{
|
|
5481
5795
|
"kind": "field",
|
|
@@ -5716,7 +6030,7 @@
|
|
|
5716
6030
|
"name": "InputEditor",
|
|
5717
6031
|
"module": "src/editors/input-editors.ts"
|
|
5718
6032
|
},
|
|
5719
|
-
"tagName": "ox-
|
|
6033
|
+
"tagName": "ox-email-input",
|
|
5720
6034
|
"customElement": true,
|
|
5721
6035
|
"attributes": [
|
|
5722
6036
|
{
|
|
@@ -5804,35 +6118,14 @@
|
|
|
5804
6118
|
"name": "InputEditor",
|
|
5805
6119
|
"module": "src/editors/input-editors.ts"
|
|
5806
6120
|
}
|
|
5807
|
-
}
|
|
5808
|
-
]
|
|
5809
|
-
},
|
|
5810
|
-
{
|
|
5811
|
-
"kind": "class",
|
|
5812
|
-
"description": "",
|
|
5813
|
-
"name": "
|
|
5814
|
-
"members": [
|
|
5815
|
-
{
|
|
5816
|
-
"kind": "method",
|
|
5817
|
-
"name": "formatFromEditor",
|
|
5818
|
-
"return": {
|
|
5819
|
-
"type": {
|
|
5820
|
-
"text": "any"
|
|
5821
|
-
}
|
|
5822
|
-
},
|
|
5823
|
-
"parameters": [
|
|
5824
|
-
{
|
|
5825
|
-
"name": "e",
|
|
5826
|
-
"type": {
|
|
5827
|
-
"text": "Event"
|
|
5828
|
-
}
|
|
5829
|
-
}
|
|
5830
|
-
],
|
|
5831
|
-
"inheritedFrom": {
|
|
5832
|
-
"name": "InputEditor",
|
|
5833
|
-
"module": "src/editors/input-editors.ts"
|
|
5834
|
-
}
|
|
5835
|
-
},
|
|
6121
|
+
}
|
|
6122
|
+
]
|
|
6123
|
+
},
|
|
6124
|
+
{
|
|
6125
|
+
"kind": "class",
|
|
6126
|
+
"description": "",
|
|
6127
|
+
"name": "TelInput",
|
|
6128
|
+
"members": [
|
|
5836
6129
|
{
|
|
5837
6130
|
"kind": "field",
|
|
5838
6131
|
"name": "editorTemplate",
|
|
@@ -5975,6 +6268,27 @@
|
|
|
5975
6268
|
"module": "src/editors/input-editors.ts"
|
|
5976
6269
|
}
|
|
5977
6270
|
},
|
|
6271
|
+
{
|
|
6272
|
+
"kind": "method",
|
|
6273
|
+
"name": "formatFromEditor",
|
|
6274
|
+
"return": {
|
|
6275
|
+
"type": {
|
|
6276
|
+
"text": "any"
|
|
6277
|
+
}
|
|
6278
|
+
},
|
|
6279
|
+
"parameters": [
|
|
6280
|
+
{
|
|
6281
|
+
"name": "e",
|
|
6282
|
+
"type": {
|
|
6283
|
+
"text": "Event"
|
|
6284
|
+
}
|
|
6285
|
+
}
|
|
6286
|
+
],
|
|
6287
|
+
"inheritedFrom": {
|
|
6288
|
+
"name": "InputEditor",
|
|
6289
|
+
"module": "src/editors/input-editors.ts"
|
|
6290
|
+
}
|
|
6291
|
+
},
|
|
5978
6292
|
{
|
|
5979
6293
|
"kind": "method",
|
|
5980
6294
|
"name": "_onfocusout",
|
|
@@ -6051,7 +6365,7 @@
|
|
|
6051
6365
|
"name": "InputEditor",
|
|
6052
6366
|
"module": "src/editors/input-editors.ts"
|
|
6053
6367
|
},
|
|
6054
|
-
"tagName": "ox-
|
|
6368
|
+
"tagName": "ox-tel-input",
|
|
6055
6369
|
"customElement": true,
|
|
6056
6370
|
"attributes": [
|
|
6057
6371
|
{
|
|
@@ -6145,8 +6459,29 @@
|
|
|
6145
6459
|
{
|
|
6146
6460
|
"kind": "class",
|
|
6147
6461
|
"description": "",
|
|
6148
|
-
"name": "
|
|
6462
|
+
"name": "NumberInput",
|
|
6149
6463
|
"members": [
|
|
6464
|
+
{
|
|
6465
|
+
"kind": "method",
|
|
6466
|
+
"name": "formatFromEditor",
|
|
6467
|
+
"return": {
|
|
6468
|
+
"type": {
|
|
6469
|
+
"text": "any"
|
|
6470
|
+
}
|
|
6471
|
+
},
|
|
6472
|
+
"parameters": [
|
|
6473
|
+
{
|
|
6474
|
+
"name": "e",
|
|
6475
|
+
"type": {
|
|
6476
|
+
"text": "Event"
|
|
6477
|
+
}
|
|
6478
|
+
}
|
|
6479
|
+
],
|
|
6480
|
+
"inheritedFrom": {
|
|
6481
|
+
"name": "InputEditor",
|
|
6482
|
+
"module": "src/editors/input-editors.ts"
|
|
6483
|
+
}
|
|
6484
|
+
},
|
|
6150
6485
|
{
|
|
6151
6486
|
"kind": "field",
|
|
6152
6487
|
"name": "editorTemplate",
|
|
@@ -6289,27 +6624,6 @@
|
|
|
6289
6624
|
"module": "src/editors/input-editors.ts"
|
|
6290
6625
|
}
|
|
6291
6626
|
},
|
|
6292
|
-
{
|
|
6293
|
-
"kind": "method",
|
|
6294
|
-
"name": "formatFromEditor",
|
|
6295
|
-
"return": {
|
|
6296
|
-
"type": {
|
|
6297
|
-
"text": "any"
|
|
6298
|
-
}
|
|
6299
|
-
},
|
|
6300
|
-
"parameters": [
|
|
6301
|
-
{
|
|
6302
|
-
"name": "e",
|
|
6303
|
-
"type": {
|
|
6304
|
-
"text": "Event"
|
|
6305
|
-
}
|
|
6306
|
-
}
|
|
6307
|
-
],
|
|
6308
|
-
"inheritedFrom": {
|
|
6309
|
-
"name": "InputEditor",
|
|
6310
|
-
"module": "src/editors/input-editors.ts"
|
|
6311
|
-
}
|
|
6312
|
-
},
|
|
6313
6627
|
{
|
|
6314
6628
|
"kind": "method",
|
|
6315
6629
|
"name": "_onfocusout",
|
|
@@ -6386,7 +6700,7 @@
|
|
|
6386
6700
|
"name": "InputEditor",
|
|
6387
6701
|
"module": "src/editors/input-editors.ts"
|
|
6388
6702
|
},
|
|
6389
|
-
"tagName": "ox-
|
|
6703
|
+
"tagName": "ox-number-input",
|
|
6390
6704
|
"customElement": true,
|
|
6391
6705
|
"attributes": [
|
|
6392
6706
|
{
|
|
@@ -6480,7 +6794,7 @@
|
|
|
6480
6794
|
{
|
|
6481
6795
|
"kind": "class",
|
|
6482
6796
|
"description": "",
|
|
6483
|
-
"name": "
|
|
6797
|
+
"name": "PasswordInput",
|
|
6484
6798
|
"members": [
|
|
6485
6799
|
{
|
|
6486
6800
|
"kind": "field",
|
|
@@ -6721,7 +7035,7 @@
|
|
|
6721
7035
|
"name": "InputEditor",
|
|
6722
7036
|
"module": "src/editors/input-editors.ts"
|
|
6723
7037
|
},
|
|
6724
|
-
"tagName": "ox-
|
|
7038
|
+
"tagName": "ox-password-input",
|
|
6725
7039
|
"customElement": true,
|
|
6726
7040
|
"attributes": [
|
|
6727
7041
|
{
|
|
@@ -6815,7 +7129,7 @@
|
|
|
6815
7129
|
{
|
|
6816
7130
|
"kind": "class",
|
|
6817
7131
|
"description": "",
|
|
6818
|
-
"name": "
|
|
7132
|
+
"name": "DateInput",
|
|
6819
7133
|
"members": [
|
|
6820
7134
|
{
|
|
6821
7135
|
"kind": "field",
|
|
@@ -7056,7 +7370,7 @@
|
|
|
7056
7370
|
"name": "InputEditor",
|
|
7057
7371
|
"module": "src/editors/input-editors.ts"
|
|
7058
7372
|
},
|
|
7059
|
-
"tagName": "ox-
|
|
7373
|
+
"tagName": "ox-date-input",
|
|
7060
7374
|
"customElement": true,
|
|
7061
7375
|
"attributes": [
|
|
7062
7376
|
{
|
|
@@ -7150,7 +7464,7 @@
|
|
|
7150
7464
|
{
|
|
7151
7465
|
"kind": "class",
|
|
7152
7466
|
"description": "",
|
|
7153
|
-
"name": "
|
|
7467
|
+
"name": "MonthInput",
|
|
7154
7468
|
"members": [
|
|
7155
7469
|
{
|
|
7156
7470
|
"kind": "field",
|
|
@@ -7391,7 +7705,7 @@
|
|
|
7391
7705
|
"name": "InputEditor",
|
|
7392
7706
|
"module": "src/editors/input-editors.ts"
|
|
7393
7707
|
},
|
|
7394
|
-
"tagName": "ox-
|
|
7708
|
+
"tagName": "ox-month-input",
|
|
7395
7709
|
"customElement": true,
|
|
7396
7710
|
"attributes": [
|
|
7397
7711
|
{
|
|
@@ -7485,7 +7799,7 @@
|
|
|
7485
7799
|
{
|
|
7486
7800
|
"kind": "class",
|
|
7487
7801
|
"description": "",
|
|
7488
|
-
"name": "
|
|
7802
|
+
"name": "WeekInput",
|
|
7489
7803
|
"members": [
|
|
7490
7804
|
{
|
|
7491
7805
|
"kind": "field",
|
|
@@ -7726,7 +8040,7 @@
|
|
|
7726
8040
|
"name": "InputEditor",
|
|
7727
8041
|
"module": "src/editors/input-editors.ts"
|
|
7728
8042
|
},
|
|
7729
|
-
"tagName": "ox-
|
|
8043
|
+
"tagName": "ox-week-input",
|
|
7730
8044
|
"customElement": true,
|
|
7731
8045
|
"attributes": [
|
|
7732
8046
|
{
|
|
@@ -7820,50 +8134,8 @@
|
|
|
7820
8134
|
{
|
|
7821
8135
|
"kind": "class",
|
|
7822
8136
|
"description": "",
|
|
7823
|
-
"name": "
|
|
8137
|
+
"name": "TimeInput",
|
|
7824
8138
|
"members": [
|
|
7825
|
-
{
|
|
7826
|
-
"kind": "method",
|
|
7827
|
-
"name": "formatForEditor",
|
|
7828
|
-
"return": {
|
|
7829
|
-
"type": {
|
|
7830
|
-
"text": "any"
|
|
7831
|
-
}
|
|
7832
|
-
},
|
|
7833
|
-
"parameters": [
|
|
7834
|
-
{
|
|
7835
|
-
"name": "timestamp",
|
|
7836
|
-
"type": {
|
|
7837
|
-
"text": "any"
|
|
7838
|
-
}
|
|
7839
|
-
}
|
|
7840
|
-
],
|
|
7841
|
-
"inheritedFrom": {
|
|
7842
|
-
"name": "InputEditor",
|
|
7843
|
-
"module": "src/editors/input-editors.ts"
|
|
7844
|
-
}
|
|
7845
|
-
},
|
|
7846
|
-
{
|
|
7847
|
-
"kind": "method",
|
|
7848
|
-
"name": "formatFromEditor",
|
|
7849
|
-
"return": {
|
|
7850
|
-
"type": {
|
|
7851
|
-
"text": "any"
|
|
7852
|
-
}
|
|
7853
|
-
},
|
|
7854
|
-
"parameters": [
|
|
7855
|
-
{
|
|
7856
|
-
"name": "e",
|
|
7857
|
-
"type": {
|
|
7858
|
-
"text": "Event"
|
|
7859
|
-
}
|
|
7860
|
-
}
|
|
7861
|
-
],
|
|
7862
|
-
"inheritedFrom": {
|
|
7863
|
-
"name": "InputEditor",
|
|
7864
|
-
"module": "src/editors/input-editors.ts"
|
|
7865
|
-
}
|
|
7866
|
-
},
|
|
7867
8139
|
{
|
|
7868
8140
|
"kind": "field",
|
|
7869
8141
|
"name": "editorTemplate",
|
|
@@ -7985,6 +8257,48 @@
|
|
|
7985
8257
|
"module": "src/editors/input-editors.ts"
|
|
7986
8258
|
}
|
|
7987
8259
|
},
|
|
8260
|
+
{
|
|
8261
|
+
"kind": "method",
|
|
8262
|
+
"name": "formatForEditor",
|
|
8263
|
+
"return": {
|
|
8264
|
+
"type": {
|
|
8265
|
+
"text": "any"
|
|
8266
|
+
}
|
|
8267
|
+
},
|
|
8268
|
+
"parameters": [
|
|
8269
|
+
{
|
|
8270
|
+
"name": "value",
|
|
8271
|
+
"type": {
|
|
8272
|
+
"text": "any"
|
|
8273
|
+
}
|
|
8274
|
+
}
|
|
8275
|
+
],
|
|
8276
|
+
"inheritedFrom": {
|
|
8277
|
+
"name": "InputEditor",
|
|
8278
|
+
"module": "src/editors/input-editors.ts"
|
|
8279
|
+
}
|
|
8280
|
+
},
|
|
8281
|
+
{
|
|
8282
|
+
"kind": "method",
|
|
8283
|
+
"name": "formatFromEditor",
|
|
8284
|
+
"return": {
|
|
8285
|
+
"type": {
|
|
8286
|
+
"text": "any"
|
|
8287
|
+
}
|
|
8288
|
+
},
|
|
8289
|
+
"parameters": [
|
|
8290
|
+
{
|
|
8291
|
+
"name": "e",
|
|
8292
|
+
"type": {
|
|
8293
|
+
"text": "Event"
|
|
8294
|
+
}
|
|
8295
|
+
}
|
|
8296
|
+
],
|
|
8297
|
+
"inheritedFrom": {
|
|
8298
|
+
"name": "InputEditor",
|
|
8299
|
+
"module": "src/editors/input-editors.ts"
|
|
8300
|
+
}
|
|
8301
|
+
},
|
|
7988
8302
|
{
|
|
7989
8303
|
"kind": "method",
|
|
7990
8304
|
"name": "_onfocusout",
|
|
@@ -8061,7 +8375,7 @@
|
|
|
8061
8375
|
"name": "InputEditor",
|
|
8062
8376
|
"module": "src/editors/input-editors.ts"
|
|
8063
8377
|
},
|
|
8064
|
-
"tagName": "ox-
|
|
8378
|
+
"tagName": "ox-time-input",
|
|
8065
8379
|
"customElement": true,
|
|
8066
8380
|
"attributes": [
|
|
8067
8381
|
{
|
|
@@ -8155,8 +8469,50 @@
|
|
|
8155
8469
|
{
|
|
8156
8470
|
"kind": "class",
|
|
8157
8471
|
"description": "",
|
|
8158
|
-
"name": "
|
|
8472
|
+
"name": "DateTimeInput",
|
|
8159
8473
|
"members": [
|
|
8474
|
+
{
|
|
8475
|
+
"kind": "method",
|
|
8476
|
+
"name": "formatForEditor",
|
|
8477
|
+
"return": {
|
|
8478
|
+
"type": {
|
|
8479
|
+
"text": "any"
|
|
8480
|
+
}
|
|
8481
|
+
},
|
|
8482
|
+
"parameters": [
|
|
8483
|
+
{
|
|
8484
|
+
"name": "timestamp",
|
|
8485
|
+
"type": {
|
|
8486
|
+
"text": "any"
|
|
8487
|
+
}
|
|
8488
|
+
}
|
|
8489
|
+
],
|
|
8490
|
+
"inheritedFrom": {
|
|
8491
|
+
"name": "InputEditor",
|
|
8492
|
+
"module": "src/editors/input-editors.ts"
|
|
8493
|
+
}
|
|
8494
|
+
},
|
|
8495
|
+
{
|
|
8496
|
+
"kind": "method",
|
|
8497
|
+
"name": "formatFromEditor",
|
|
8498
|
+
"return": {
|
|
8499
|
+
"type": {
|
|
8500
|
+
"text": "any"
|
|
8501
|
+
}
|
|
8502
|
+
},
|
|
8503
|
+
"parameters": [
|
|
8504
|
+
{
|
|
8505
|
+
"name": "e",
|
|
8506
|
+
"type": {
|
|
8507
|
+
"text": "Event"
|
|
8508
|
+
}
|
|
8509
|
+
}
|
|
8510
|
+
],
|
|
8511
|
+
"inheritedFrom": {
|
|
8512
|
+
"name": "InputEditor",
|
|
8513
|
+
"module": "src/editors/input-editors.ts"
|
|
8514
|
+
}
|
|
8515
|
+
},
|
|
8160
8516
|
{
|
|
8161
8517
|
"kind": "field",
|
|
8162
8518
|
"name": "editorTemplate",
|
|
@@ -8251,28 +8607,12 @@
|
|
|
8251
8607
|
"module": "src/editors/input-editors.ts"
|
|
8252
8608
|
}
|
|
8253
8609
|
},
|
|
8254
|
-
{
|
|
8255
|
-
"kind": "field",
|
|
8256
|
-
"name": "editor",
|
|
8257
|
-
"type": {
|
|
8258
|
-
"text": "HTMLElement | null"
|
|
8259
|
-
},
|
|
8260
|
-
"inheritedFrom": {
|
|
8261
|
-
"name": "InputEditor",
|
|
8262
|
-
"module": "src/editors/input-editors.ts"
|
|
8263
|
-
}
|
|
8264
|
-
},
|
|
8265
|
-
{
|
|
8266
|
-
"kind": "method",
|
|
8267
|
-
"name": "select",
|
|
8268
|
-
"inheritedFrom": {
|
|
8269
|
-
"name": "InputEditor",
|
|
8270
|
-
"module": "src/editors/input-editors.ts"
|
|
8271
|
-
}
|
|
8272
|
-
},
|
|
8273
|
-
{
|
|
8274
|
-
"kind": "method",
|
|
8275
|
-
"name": "focus",
|
|
8610
|
+
{
|
|
8611
|
+
"kind": "field",
|
|
8612
|
+
"name": "editor",
|
|
8613
|
+
"type": {
|
|
8614
|
+
"text": "HTMLElement | null"
|
|
8615
|
+
},
|
|
8276
8616
|
"inheritedFrom": {
|
|
8277
8617
|
"name": "InputEditor",
|
|
8278
8618
|
"module": "src/editors/input-editors.ts"
|
|
@@ -8280,20 +8620,7 @@
|
|
|
8280
8620
|
},
|
|
8281
8621
|
{
|
|
8282
8622
|
"kind": "method",
|
|
8283
|
-
"name": "
|
|
8284
|
-
"return": {
|
|
8285
|
-
"type": {
|
|
8286
|
-
"text": "any"
|
|
8287
|
-
}
|
|
8288
|
-
},
|
|
8289
|
-
"parameters": [
|
|
8290
|
-
{
|
|
8291
|
-
"name": "value",
|
|
8292
|
-
"type": {
|
|
8293
|
-
"text": "any"
|
|
8294
|
-
}
|
|
8295
|
-
}
|
|
8296
|
-
],
|
|
8623
|
+
"name": "select",
|
|
8297
8624
|
"inheritedFrom": {
|
|
8298
8625
|
"name": "InputEditor",
|
|
8299
8626
|
"module": "src/editors/input-editors.ts"
|
|
@@ -8301,20 +8628,7 @@
|
|
|
8301
8628
|
},
|
|
8302
8629
|
{
|
|
8303
8630
|
"kind": "method",
|
|
8304
|
-
"name": "
|
|
8305
|
-
"return": {
|
|
8306
|
-
"type": {
|
|
8307
|
-
"text": "any"
|
|
8308
|
-
}
|
|
8309
|
-
},
|
|
8310
|
-
"parameters": [
|
|
8311
|
-
{
|
|
8312
|
-
"name": "e",
|
|
8313
|
-
"type": {
|
|
8314
|
-
"text": "Event"
|
|
8315
|
-
}
|
|
8316
|
-
}
|
|
8317
|
-
],
|
|
8631
|
+
"name": "focus",
|
|
8318
8632
|
"inheritedFrom": {
|
|
8319
8633
|
"name": "InputEditor",
|
|
8320
8634
|
"module": "src/editors/input-editors.ts"
|
|
@@ -8396,7 +8710,7 @@
|
|
|
8396
8710
|
"name": "InputEditor",
|
|
8397
8711
|
"module": "src/editors/input-editors.ts"
|
|
8398
8712
|
},
|
|
8399
|
-
"tagName": "ox-
|
|
8713
|
+
"tagName": "ox-datetime-input",
|
|
8400
8714
|
"customElement": true,
|
|
8401
8715
|
"attributes": [
|
|
8402
8716
|
{
|
|
@@ -8490,29 +8804,8 @@
|
|
|
8490
8804
|
{
|
|
8491
8805
|
"kind": "class",
|
|
8492
8806
|
"description": "",
|
|
8493
|
-
"name": "
|
|
8807
|
+
"name": "ColorInput",
|
|
8494
8808
|
"members": [
|
|
8495
|
-
{
|
|
8496
|
-
"kind": "method",
|
|
8497
|
-
"name": "formatFromEditor",
|
|
8498
|
-
"return": {
|
|
8499
|
-
"type": {
|
|
8500
|
-
"text": "any"
|
|
8501
|
-
}
|
|
8502
|
-
},
|
|
8503
|
-
"parameters": [
|
|
8504
|
-
{
|
|
8505
|
-
"name": "e",
|
|
8506
|
-
"type": {
|
|
8507
|
-
"text": "Event"
|
|
8508
|
-
}
|
|
8509
|
-
}
|
|
8510
|
-
],
|
|
8511
|
-
"inheritedFrom": {
|
|
8512
|
-
"name": "InputEditor",
|
|
8513
|
-
"module": "src/editors/input-editors.ts"
|
|
8514
|
-
}
|
|
8515
|
-
},
|
|
8516
8809
|
{
|
|
8517
8810
|
"kind": "field",
|
|
8518
8811
|
"name": "editorTemplate",
|
|
@@ -8655,6 +8948,27 @@
|
|
|
8655
8948
|
"module": "src/editors/input-editors.ts"
|
|
8656
8949
|
}
|
|
8657
8950
|
},
|
|
8951
|
+
{
|
|
8952
|
+
"kind": "method",
|
|
8953
|
+
"name": "formatFromEditor",
|
|
8954
|
+
"return": {
|
|
8955
|
+
"type": {
|
|
8956
|
+
"text": "any"
|
|
8957
|
+
}
|
|
8958
|
+
},
|
|
8959
|
+
"parameters": [
|
|
8960
|
+
{
|
|
8961
|
+
"name": "e",
|
|
8962
|
+
"type": {
|
|
8963
|
+
"text": "Event"
|
|
8964
|
+
}
|
|
8965
|
+
}
|
|
8966
|
+
],
|
|
8967
|
+
"inheritedFrom": {
|
|
8968
|
+
"name": "InputEditor",
|
|
8969
|
+
"module": "src/editors/input-editors.ts"
|
|
8970
|
+
}
|
|
8971
|
+
},
|
|
8658
8972
|
{
|
|
8659
8973
|
"kind": "method",
|
|
8660
8974
|
"name": "_onfocusout",
|
|
@@ -8731,7 +9045,7 @@
|
|
|
8731
9045
|
"name": "InputEditor",
|
|
8732
9046
|
"module": "src/editors/input-editors.ts"
|
|
8733
9047
|
},
|
|
8734
|
-
"tagName": "ox-
|
|
9048
|
+
"tagName": "ox-color-input",
|
|
8735
9049
|
"customElement": true,
|
|
8736
9050
|
"attributes": [
|
|
8737
9051
|
{
|
|
@@ -8825,37 +9139,14 @@
|
|
|
8825
9139
|
{
|
|
8826
9140
|
"kind": "class",
|
|
8827
9141
|
"description": "",
|
|
8828
|
-
"name": "
|
|
9142
|
+
"name": "CheckboxInput",
|
|
8829
9143
|
"members": [
|
|
8830
|
-
{
|
|
8831
|
-
"kind": "field",
|
|
8832
|
-
"name": "imageInput",
|
|
8833
|
-
"type": {
|
|
8834
|
-
"text": "HTMLElement"
|
|
8835
|
-
}
|
|
8836
|
-
},
|
|
8837
|
-
{
|
|
8838
|
-
"kind": "field",
|
|
8839
|
-
"name": "editorTemplate",
|
|
8840
|
-
"inheritedFrom": {
|
|
8841
|
-
"name": "InputEditor",
|
|
8842
|
-
"module": "src/editors/input-editors.ts"
|
|
8843
|
-
}
|
|
8844
|
-
},
|
|
8845
|
-
{
|
|
8846
|
-
"kind": "method",
|
|
8847
|
-
"name": "focus",
|
|
8848
|
-
"inheritedFrom": {
|
|
8849
|
-
"name": "InputEditor",
|
|
8850
|
-
"module": "src/editors/input-editors.ts"
|
|
8851
|
-
}
|
|
8852
|
-
},
|
|
8853
9144
|
{
|
|
8854
9145
|
"kind": "method",
|
|
8855
|
-
"name": "
|
|
9146
|
+
"name": "formatFromEditor",
|
|
8856
9147
|
"return": {
|
|
8857
9148
|
"type": {
|
|
8858
|
-
"text": "
|
|
9149
|
+
"text": "any"
|
|
8859
9150
|
}
|
|
8860
9151
|
},
|
|
8861
9152
|
"parameters": [
|
|
@@ -8872,21 +9163,8 @@
|
|
|
8872
9163
|
}
|
|
8873
9164
|
},
|
|
8874
9165
|
{
|
|
8875
|
-
"kind": "
|
|
8876
|
-
"name": "
|
|
8877
|
-
"return": {
|
|
8878
|
-
"type": {
|
|
8879
|
-
"text": "any"
|
|
8880
|
-
}
|
|
8881
|
-
},
|
|
8882
|
-
"parameters": [
|
|
8883
|
-
{
|
|
8884
|
-
"name": "e",
|
|
8885
|
-
"type": {
|
|
8886
|
-
"text": "Event"
|
|
8887
|
-
}
|
|
8888
|
-
}
|
|
8889
|
-
],
|
|
9166
|
+
"kind": "field",
|
|
9167
|
+
"name": "editorTemplate",
|
|
8890
9168
|
"inheritedFrom": {
|
|
8891
9169
|
"name": "InputEditor",
|
|
8892
9170
|
"module": "src/editors/input-editors.ts"
|
|
@@ -8997,6 +9275,14 @@
|
|
|
8997
9275
|
"module": "src/editors/input-editors.ts"
|
|
8998
9276
|
}
|
|
8999
9277
|
},
|
|
9278
|
+
{
|
|
9279
|
+
"kind": "method",
|
|
9280
|
+
"name": "focus",
|
|
9281
|
+
"inheritedFrom": {
|
|
9282
|
+
"name": "InputEditor",
|
|
9283
|
+
"module": "src/editors/input-editors.ts"
|
|
9284
|
+
}
|
|
9285
|
+
},
|
|
9000
9286
|
{
|
|
9001
9287
|
"kind": "method",
|
|
9002
9288
|
"name": "formatForEditor",
|
|
@@ -9026,6 +9312,27 @@
|
|
|
9026
9312
|
"module": "src/editors/input-editors.ts"
|
|
9027
9313
|
}
|
|
9028
9314
|
},
|
|
9315
|
+
{
|
|
9316
|
+
"kind": "method",
|
|
9317
|
+
"name": "_onchange",
|
|
9318
|
+
"return": {
|
|
9319
|
+
"type": {
|
|
9320
|
+
"text": "void"
|
|
9321
|
+
}
|
|
9322
|
+
},
|
|
9323
|
+
"parameters": [
|
|
9324
|
+
{
|
|
9325
|
+
"name": "e",
|
|
9326
|
+
"type": {
|
|
9327
|
+
"text": "Event"
|
|
9328
|
+
}
|
|
9329
|
+
}
|
|
9330
|
+
],
|
|
9331
|
+
"inheritedFrom": {
|
|
9332
|
+
"name": "InputEditor",
|
|
9333
|
+
"module": "src/editors/input-editors.ts"
|
|
9334
|
+
}
|
|
9335
|
+
},
|
|
9029
9336
|
{
|
|
9030
9337
|
"kind": "method",
|
|
9031
9338
|
"name": "_onclick",
|
|
@@ -9073,7 +9380,7 @@
|
|
|
9073
9380
|
"name": "InputEditor",
|
|
9074
9381
|
"module": "src/editors/input-editors.ts"
|
|
9075
9382
|
},
|
|
9076
|
-
"tagName": "ox-
|
|
9383
|
+
"tagName": "ox-checkbox-input",
|
|
9077
9384
|
"customElement": true,
|
|
9078
9385
|
"attributes": [
|
|
9079
9386
|
{
|
|
@@ -9709,22 +10016,6 @@
|
|
|
9709
10016
|
"module": "src/editors/input-editors.ts"
|
|
9710
10017
|
}
|
|
9711
10018
|
},
|
|
9712
|
-
{
|
|
9713
|
-
"kind": "js",
|
|
9714
|
-
"name": "ImageInput",
|
|
9715
|
-
"declaration": {
|
|
9716
|
-
"name": "ImageInput",
|
|
9717
|
-
"module": "src/editors/input-editors.ts"
|
|
9718
|
-
}
|
|
9719
|
-
},
|
|
9720
|
-
{
|
|
9721
|
-
"kind": "custom-element-definition",
|
|
9722
|
-
"name": "ox-image-input",
|
|
9723
|
-
"declaration": {
|
|
9724
|
-
"name": "ImageInput",
|
|
9725
|
-
"module": "src/editors/input-editors.ts"
|
|
9726
|
-
}
|
|
9727
|
-
},
|
|
9728
10019
|
{
|
|
9729
10020
|
"kind": "js",
|
|
9730
10021
|
"name": "Select",
|
|
@@ -10014,17 +10305,23 @@
|
|
|
10014
10305
|
"name": "config",
|
|
10015
10306
|
"type": {
|
|
10016
10307
|
"text": "GristConfig"
|
|
10308
|
+
}
|
|
10309
|
+
},
|
|
10310
|
+
{
|
|
10311
|
+
"kind": "field",
|
|
10312
|
+
"name": "filterColumns",
|
|
10313
|
+
"type": {
|
|
10314
|
+
"text": "ColumnConfig[]"
|
|
10017
10315
|
},
|
|
10018
|
-
"
|
|
10316
|
+
"default": "[]"
|
|
10019
10317
|
},
|
|
10020
10318
|
{
|
|
10021
10319
|
"kind": "field",
|
|
10022
|
-
"name": "
|
|
10320
|
+
"name": "searchColumns",
|
|
10023
10321
|
"type": {
|
|
10024
|
-
"text": "
|
|
10322
|
+
"text": "ColumnConfig[]"
|
|
10025
10323
|
},
|
|
10026
|
-
"default": "
|
|
10027
|
-
"attribute": "defaultOperator"
|
|
10324
|
+
"default": "[]"
|
|
10028
10325
|
},
|
|
10029
10326
|
{
|
|
10030
10327
|
"kind": "field",
|
|
@@ -10034,28 +10331,21 @@
|
|
|
10034
10331
|
}
|
|
10035
10332
|
},
|
|
10036
10333
|
{
|
|
10037
|
-
"kind": "
|
|
10038
|
-
"name": "
|
|
10039
|
-
"
|
|
10040
|
-
"
|
|
10334
|
+
"kind": "method",
|
|
10335
|
+
"name": "getQueryFilters",
|
|
10336
|
+
"return": {
|
|
10337
|
+
"type": {
|
|
10338
|
+
"text": "Promise<QueryFilter[]>"
|
|
10339
|
+
}
|
|
10041
10340
|
}
|
|
10042
10341
|
}
|
|
10043
10342
|
],
|
|
10044
|
-
"
|
|
10045
|
-
{
|
|
10046
|
-
"name": "config",
|
|
10047
|
-
"type": {
|
|
10048
|
-
"text": "GristConfig"
|
|
10049
|
-
},
|
|
10050
|
-
"fieldName": "config"
|
|
10051
|
-
},
|
|
10343
|
+
"events": [
|
|
10052
10344
|
{
|
|
10053
|
-
"name": "
|
|
10345
|
+
"name": "change",
|
|
10054
10346
|
"type": {
|
|
10055
|
-
"text": "
|
|
10056
|
-
}
|
|
10057
|
-
"default": "'eq'",
|
|
10058
|
-
"fieldName": "defaultOperator"
|
|
10347
|
+
"text": "CustomEvent"
|
|
10348
|
+
}
|
|
10059
10349
|
}
|
|
10060
10350
|
],
|
|
10061
10351
|
"superclass": {
|
|
@@ -10760,7 +11050,7 @@
|
|
|
10760
11050
|
{
|
|
10761
11051
|
"kind": "variable",
|
|
10762
11052
|
"name": "RecordViewHandler",
|
|
10763
|
-
"default": "function (\n columns: ColumnConfig[],\n data: GristData,\n column: ColumnConfig,\n record: GristRecord,\n rowIndex: number,\n field: DataGridField\n): void {\n
|
|
11053
|
+
"default": "function (\n columns: ColumnConfig[],\n data: GristData,\n column: ColumnConfig,\n record: GristRecord,\n rowIndex: number,\n field: DataGridField\n): void {\n field.dispatchEvent(\n new CustomEvent('show-record-view', {\n bubbles: true,\n composed: true,\n detail: {\n record,\n row: rowIndex\n }\n })\n )\n}"
|
|
10764
11054
|
}
|
|
10765
11055
|
],
|
|
10766
11056
|
"exports": [
|
|
@@ -10899,25 +11189,127 @@
|
|
|
10899
11189
|
"exports": [
|
|
10900
11190
|
{
|
|
10901
11191
|
"kind": "js",
|
|
10902
|
-
"name": "SelectRow",
|
|
11192
|
+
"name": "SelectRow",
|
|
11193
|
+
"declaration": {
|
|
11194
|
+
"name": "SelectRow",
|
|
11195
|
+
"module": "src/handlers/select-row.ts"
|
|
11196
|
+
}
|
|
11197
|
+
}
|
|
11198
|
+
]
|
|
11199
|
+
},
|
|
11200
|
+
{
|
|
11201
|
+
"kind": "javascript-module",
|
|
11202
|
+
"path": "src/record-view/index.ts",
|
|
11203
|
+
"declarations": [],
|
|
11204
|
+
"exports": [
|
|
11205
|
+
{
|
|
11206
|
+
"kind": "js",
|
|
11207
|
+
"name": "*",
|
|
11208
|
+
"declaration": {
|
|
11209
|
+
"name": "*",
|
|
11210
|
+
"package": "./record-view"
|
|
11211
|
+
}
|
|
11212
|
+
},
|
|
11213
|
+
{
|
|
11214
|
+
"kind": "js",
|
|
11215
|
+
"name": "*",
|
|
11216
|
+
"declaration": {
|
|
11217
|
+
"name": "*",
|
|
11218
|
+
"package": "./record-creator"
|
|
11219
|
+
}
|
|
11220
|
+
}
|
|
11221
|
+
]
|
|
11222
|
+
},
|
|
11223
|
+
{
|
|
11224
|
+
"kind": "javascript-module",
|
|
11225
|
+
"path": "src/record-view/record-creator.ts",
|
|
11226
|
+
"declarations": [
|
|
11227
|
+
{
|
|
11228
|
+
"kind": "class",
|
|
11229
|
+
"description": "",
|
|
11230
|
+
"name": "RecordCreator",
|
|
11231
|
+
"members": [
|
|
11232
|
+
{
|
|
11233
|
+
"kind": "field",
|
|
11234
|
+
"name": "grist",
|
|
11235
|
+
"type": {
|
|
11236
|
+
"text": "DataGrist | undefined"
|
|
11237
|
+
}
|
|
11238
|
+
},
|
|
11239
|
+
{
|
|
11240
|
+
"kind": "field",
|
|
11241
|
+
"name": "callback",
|
|
11242
|
+
"type": {
|
|
11243
|
+
"text": "(operation: { [key: string]: any }) => boolean | undefined"
|
|
11244
|
+
},
|
|
11245
|
+
"attribute": "callback"
|
|
11246
|
+
},
|
|
11247
|
+
{
|
|
11248
|
+
"kind": "field",
|
|
11249
|
+
"name": "lightPopup",
|
|
11250
|
+
"type": {
|
|
11251
|
+
"text": "boolean"
|
|
11252
|
+
},
|
|
11253
|
+
"default": "false",
|
|
11254
|
+
"attribute": "light-popup"
|
|
11255
|
+
},
|
|
11256
|
+
{
|
|
11257
|
+
"kind": "method",
|
|
11258
|
+
"name": "lightPopupRecordView"
|
|
11259
|
+
},
|
|
11260
|
+
{
|
|
11261
|
+
"kind": "method",
|
|
11262
|
+
"name": "popupRecordView"
|
|
11263
|
+
}
|
|
11264
|
+
],
|
|
11265
|
+
"events": [
|
|
11266
|
+
{
|
|
11267
|
+
"name": "ok",
|
|
11268
|
+
"type": {
|
|
11269
|
+
"text": "CustomEvent"
|
|
11270
|
+
}
|
|
11271
|
+
}
|
|
11272
|
+
],
|
|
11273
|
+
"attributes": [
|
|
11274
|
+
{
|
|
11275
|
+
"name": "callback",
|
|
11276
|
+
"type": {
|
|
11277
|
+
"text": "(operation: { [key: string]: any }) => boolean | undefined"
|
|
11278
|
+
},
|
|
11279
|
+
"fieldName": "callback"
|
|
11280
|
+
},
|
|
11281
|
+
{
|
|
11282
|
+
"name": "light-popup",
|
|
11283
|
+
"type": {
|
|
11284
|
+
"text": "boolean"
|
|
11285
|
+
},
|
|
11286
|
+
"default": "false",
|
|
11287
|
+
"fieldName": "lightPopup"
|
|
11288
|
+
}
|
|
11289
|
+
],
|
|
11290
|
+
"superclass": {
|
|
11291
|
+
"name": "LitElement",
|
|
11292
|
+
"package": "lit"
|
|
11293
|
+
},
|
|
11294
|
+
"tagName": "ox-record-creator",
|
|
11295
|
+
"customElement": true
|
|
11296
|
+
}
|
|
11297
|
+
],
|
|
11298
|
+
"exports": [
|
|
11299
|
+
{
|
|
11300
|
+
"kind": "js",
|
|
11301
|
+
"name": "RecordCreator",
|
|
10903
11302
|
"declaration": {
|
|
10904
|
-
"name": "
|
|
10905
|
-
"module": "src/
|
|
11303
|
+
"name": "RecordCreator",
|
|
11304
|
+
"module": "src/record-view/record-creator.ts"
|
|
10906
11305
|
}
|
|
10907
|
-
}
|
|
10908
|
-
]
|
|
10909
|
-
},
|
|
10910
|
-
{
|
|
10911
|
-
"kind": "javascript-module",
|
|
10912
|
-
"path": "src/record-view/index.ts",
|
|
10913
|
-
"declarations": [],
|
|
10914
|
-
"exports": [
|
|
11306
|
+
},
|
|
10915
11307
|
{
|
|
10916
|
-
"kind": "
|
|
10917
|
-
"name": "
|
|
11308
|
+
"kind": "custom-element-definition",
|
|
11309
|
+
"name": "ox-record-creator",
|
|
10918
11310
|
"declaration": {
|
|
10919
|
-
"name": "
|
|
10920
|
-
"
|
|
11311
|
+
"name": "RecordCreator",
|
|
11312
|
+
"module": "src/record-view/record-creator.ts"
|
|
10921
11313
|
}
|
|
10922
11314
|
}
|
|
10923
11315
|
]
|
|
@@ -10960,19 +11352,20 @@
|
|
|
10960
11352
|
},
|
|
10961
11353
|
{
|
|
10962
11354
|
"kind": "field",
|
|
10963
|
-
"name": "
|
|
11355
|
+
"name": "onlyForEdit",
|
|
10964
11356
|
"type": {
|
|
10965
|
-
"text": "
|
|
11357
|
+
"text": "boolean"
|
|
10966
11358
|
},
|
|
10967
|
-
"
|
|
11359
|
+
"default": "false",
|
|
11360
|
+
"attribute": "only-for-edit"
|
|
10968
11361
|
},
|
|
10969
11362
|
{
|
|
10970
11363
|
"kind": "field",
|
|
10971
|
-
"name": "
|
|
11364
|
+
"name": "currentTarget",
|
|
10972
11365
|
"type": {
|
|
10973
11366
|
"text": "any"
|
|
10974
11367
|
},
|
|
10975
|
-
"privacy": "
|
|
11368
|
+
"privacy": "public"
|
|
10976
11369
|
},
|
|
10977
11370
|
{
|
|
10978
11371
|
"kind": "method",
|
|
@@ -11014,6 +11407,14 @@
|
|
|
11014
11407
|
},
|
|
11015
11408
|
"default": "-1",
|
|
11016
11409
|
"fieldName": "rowIndex"
|
|
11410
|
+
},
|
|
11411
|
+
{
|
|
11412
|
+
"name": "only-for-edit",
|
|
11413
|
+
"type": {
|
|
11414
|
+
"text": "boolean"
|
|
11415
|
+
},
|
|
11416
|
+
"default": "false",
|
|
11417
|
+
"fieldName": "onlyForEdit"
|
|
11017
11418
|
}
|
|
11018
11419
|
],
|
|
11019
11420
|
"superclass": {
|
|
@@ -11043,6 +11444,27 @@
|
|
|
11043
11444
|
}
|
|
11044
11445
|
]
|
|
11045
11446
|
},
|
|
11447
|
+
{
|
|
11448
|
+
"kind": "javascript-module",
|
|
11449
|
+
"path": "src/record-view/record-view-handler.ts",
|
|
11450
|
+
"declarations": [
|
|
11451
|
+
{
|
|
11452
|
+
"kind": "variable",
|
|
11453
|
+
"name": "RecordViewHandler",
|
|
11454
|
+
"default": "function (\n columns: ColumnConfig[],\n record: GristRecord,\n rowIndex: number,\n field: DataGridField | RecordCard | RecordPartial | DataGridBody,\n popupOptions: { [key: string]: any },\n closeCallback?: () => void\n): RecordView {\n var recordView = document.createElement('ox-record-view') as RecordView\n\n recordView.columns = columns\n recordView.record = record\n recordView.rowIndex = rowIndex\n\n document.dispatchEvent(\n new CustomEvent('open-popup', {\n detail: {\n template: recordView,\n options: {\n backdrop: true,\n size: 'large',\n title: record['name'],\n ...popupOptions\n },\n callback: (popup: any) => {\n recordView.addEventListener('field-change', (e: Event) => {\n field.dispatchEvent(\n new CustomEvent('field-change', {\n bubbles: true,\n composed: true,\n detail: (e as any).detail\n })\n )\n })\n\n recordView.addEventListener('reset', (e: Event) => {\n field.dispatchEvent(\n new CustomEvent('record-reset', {\n bubbles: true,\n composed: true,\n detail: {\n record: record,\n row: rowIndex\n }\n })\n )\n })\n\n recordView.addEventListener('cancel', (e: Event) => {\n field.dispatchEvent(\n new CustomEvent('record-reset', {\n bubbles: true,\n composed: true,\n detail: {\n record: record,\n row: rowIndex\n }\n })\n )\n popup.close()\n })\n\n recordView.addEventListener('ok', (e: Event) => {\n popup.close()\n })\n\n popup.onclosed = closeCallback\n }\n }\n } as any)\n )\n\n return recordView\n}"
|
|
11455
|
+
}
|
|
11456
|
+
],
|
|
11457
|
+
"exports": [
|
|
11458
|
+
{
|
|
11459
|
+
"kind": "js",
|
|
11460
|
+
"name": "RecordViewHandler",
|
|
11461
|
+
"declaration": {
|
|
11462
|
+
"name": "RecordViewHandler",
|
|
11463
|
+
"module": "src/record-view/record-view-handler.ts"
|
|
11464
|
+
}
|
|
11465
|
+
}
|
|
11466
|
+
]
|
|
11467
|
+
},
|
|
11046
11468
|
{
|
|
11047
11469
|
"kind": "javascript-module",
|
|
11048
11470
|
"path": "src/record-view/record-view.ts",
|
|
@@ -11052,15 +11474,6 @@
|
|
|
11052
11474
|
"description": "",
|
|
11053
11475
|
"name": "RecordView",
|
|
11054
11476
|
"members": [
|
|
11055
|
-
{
|
|
11056
|
-
"kind": "field",
|
|
11057
|
-
"name": "config",
|
|
11058
|
-
"type": {
|
|
11059
|
-
"text": "GristConfig"
|
|
11060
|
-
},
|
|
11061
|
-
"default": "ZERO_CONFIG",
|
|
11062
|
-
"attribute": "config"
|
|
11063
|
-
},
|
|
11064
11477
|
{
|
|
11065
11478
|
"kind": "field",
|
|
11066
11479
|
"name": "columns",
|
|
@@ -11089,8 +11502,13 @@
|
|
|
11089
11502
|
"attribute": "rowIndex"
|
|
11090
11503
|
},
|
|
11091
11504
|
{
|
|
11092
|
-
"kind": "
|
|
11093
|
-
"name": "
|
|
11505
|
+
"kind": "field",
|
|
11506
|
+
"name": "onlyForEdit",
|
|
11507
|
+
"type": {
|
|
11508
|
+
"text": "boolean"
|
|
11509
|
+
},
|
|
11510
|
+
"default": "false",
|
|
11511
|
+
"attribute": "only-for-edit"
|
|
11094
11512
|
},
|
|
11095
11513
|
{
|
|
11096
11514
|
"kind": "method",
|
|
@@ -11126,17 +11544,6 @@
|
|
|
11126
11544
|
}
|
|
11127
11545
|
],
|
|
11128
11546
|
"attributes": [
|
|
11129
|
-
{
|
|
11130
|
-
"name": "config",
|
|
11131
|
-
"type": {
|
|
11132
|
-
"text": "GristConfig"
|
|
11133
|
-
},
|
|
11134
|
-
"default": "ZERO_CONFIG",
|
|
11135
|
-
"resolveInitializer": {
|
|
11136
|
-
"module": "/src/configure/zero-config"
|
|
11137
|
-
},
|
|
11138
|
-
"fieldName": "config"
|
|
11139
|
-
},
|
|
11140
11547
|
{
|
|
11141
11548
|
"name": "columns",
|
|
11142
11549
|
"type": {
|
|
@@ -11163,6 +11570,14 @@
|
|
|
11163
11570
|
},
|
|
11164
11571
|
"default": "-1",
|
|
11165
11572
|
"fieldName": "rowIndex"
|
|
11573
|
+
},
|
|
11574
|
+
{
|
|
11575
|
+
"name": "only-for-edit",
|
|
11576
|
+
"type": {
|
|
11577
|
+
"text": "boolean"
|
|
11578
|
+
},
|
|
11579
|
+
"default": "false",
|
|
11580
|
+
"fieldName": "onlyForEdit"
|
|
11166
11581
|
}
|
|
11167
11582
|
],
|
|
11168
11583
|
"superclass": {
|
|
@@ -11830,6 +12245,86 @@
|
|
|
11830
12245
|
}
|
|
11831
12246
|
]
|
|
11832
12247
|
},
|
|
12248
|
+
{
|
|
12249
|
+
"kind": "javascript-module",
|
|
12250
|
+
"path": "src/sorters/sorters-control.ts",
|
|
12251
|
+
"declarations": [
|
|
12252
|
+
{
|
|
12253
|
+
"kind": "class",
|
|
12254
|
+
"description": "",
|
|
12255
|
+
"name": "SortersControl",
|
|
12256
|
+
"members": [
|
|
12257
|
+
{
|
|
12258
|
+
"kind": "field",
|
|
12259
|
+
"name": "config",
|
|
12260
|
+
"type": {
|
|
12261
|
+
"text": "GristConfig"
|
|
12262
|
+
}
|
|
12263
|
+
},
|
|
12264
|
+
{
|
|
12265
|
+
"kind": "field",
|
|
12266
|
+
"name": "columns",
|
|
12267
|
+
"type": {
|
|
12268
|
+
"text": "ColumnConfig[]"
|
|
12269
|
+
},
|
|
12270
|
+
"default": "[]"
|
|
12271
|
+
},
|
|
12272
|
+
{
|
|
12273
|
+
"kind": "field",
|
|
12274
|
+
"name": "sorters",
|
|
12275
|
+
"type": {
|
|
12276
|
+
"text": "SorterConfig[]"
|
|
12277
|
+
},
|
|
12278
|
+
"default": "[]"
|
|
12279
|
+
},
|
|
12280
|
+
{
|
|
12281
|
+
"kind": "method",
|
|
12282
|
+
"name": "onChangeSort",
|
|
12283
|
+
"parameters": [
|
|
12284
|
+
{
|
|
12285
|
+
"name": "name",
|
|
12286
|
+
"type": {
|
|
12287
|
+
"text": "string"
|
|
12288
|
+
}
|
|
12289
|
+
}
|
|
12290
|
+
]
|
|
12291
|
+
}
|
|
12292
|
+
],
|
|
12293
|
+
"events": [
|
|
12294
|
+
{
|
|
12295
|
+
"name": "sorters-change",
|
|
12296
|
+
"type": {
|
|
12297
|
+
"text": "CustomEvent"
|
|
12298
|
+
}
|
|
12299
|
+
}
|
|
12300
|
+
],
|
|
12301
|
+
"superclass": {
|
|
12302
|
+
"name": "LitElement",
|
|
12303
|
+
"package": "lit"
|
|
12304
|
+
},
|
|
12305
|
+
"tagName": "ox-sorters-control",
|
|
12306
|
+
"customElement": true
|
|
12307
|
+
}
|
|
12308
|
+
],
|
|
12309
|
+
"exports": [
|
|
12310
|
+
{
|
|
12311
|
+
"kind": "js",
|
|
12312
|
+
"name": "SortersControl",
|
|
12313
|
+
"declaration": {
|
|
12314
|
+
"name": "SortersControl",
|
|
12315
|
+
"module": "src/sorters/sorters-control.ts"
|
|
12316
|
+
}
|
|
12317
|
+
},
|
|
12318
|
+
{
|
|
12319
|
+
"kind": "custom-element-definition",
|
|
12320
|
+
"name": "ox-sorters-control",
|
|
12321
|
+
"declaration": {
|
|
12322
|
+
"name": "SortersControl",
|
|
12323
|
+
"module": "src/sorters/sorters-control.ts"
|
|
12324
|
+
}
|
|
12325
|
+
}
|
|
12326
|
+
]
|
|
12327
|
+
},
|
|
11833
12328
|
{
|
|
11834
12329
|
"kind": "javascript-module",
|
|
11835
12330
|
"path": "src/utils/index.ts",
|
|
@@ -12292,6 +12787,86 @@
|
|
|
12292
12787
|
}
|
|
12293
12788
|
}
|
|
12294
12789
|
]
|
|
12790
|
+
},
|
|
12791
|
+
{
|
|
12792
|
+
"kind": "javascript-module",
|
|
12793
|
+
"path": "src/record-view/event-handlers/record-view-body-click-handler.ts",
|
|
12794
|
+
"declarations": [
|
|
12795
|
+
{
|
|
12796
|
+
"kind": "function",
|
|
12797
|
+
"name": "recordViewBodyClickHandler",
|
|
12798
|
+
"return": {
|
|
12799
|
+
"type": {
|
|
12800
|
+
"text": "void"
|
|
12801
|
+
}
|
|
12802
|
+
},
|
|
12803
|
+
"parameters": [
|
|
12804
|
+
{
|
|
12805
|
+
"name": "this",
|
|
12806
|
+
"type": {
|
|
12807
|
+
"text": "RecordViewBody"
|
|
12808
|
+
}
|
|
12809
|
+
},
|
|
12810
|
+
{
|
|
12811
|
+
"name": "e",
|
|
12812
|
+
"type": {
|
|
12813
|
+
"text": "Event"
|
|
12814
|
+
}
|
|
12815
|
+
}
|
|
12816
|
+
],
|
|
12817
|
+
"description": "ox-record-view-body 의 click handler\n\n- handler의 this 는 ox-record-view-body임."
|
|
12818
|
+
}
|
|
12819
|
+
],
|
|
12820
|
+
"exports": [
|
|
12821
|
+
{
|
|
12822
|
+
"kind": "js",
|
|
12823
|
+
"name": "recordViewBodyClickHandler",
|
|
12824
|
+
"declaration": {
|
|
12825
|
+
"name": "recordViewBodyClickHandler",
|
|
12826
|
+
"module": "src/record-view/event-handlers/record-view-body-click-handler.ts"
|
|
12827
|
+
}
|
|
12828
|
+
}
|
|
12829
|
+
]
|
|
12830
|
+
},
|
|
12831
|
+
{
|
|
12832
|
+
"kind": "javascript-module",
|
|
12833
|
+
"path": "src/record-view/event-handlers/record-view-body-keydown-handler.ts",
|
|
12834
|
+
"declarations": [
|
|
12835
|
+
{
|
|
12836
|
+
"kind": "function",
|
|
12837
|
+
"name": "recordViewBodyKeydownHandler",
|
|
12838
|
+
"return": {
|
|
12839
|
+
"type": {
|
|
12840
|
+
"text": "Promise<void>"
|
|
12841
|
+
}
|
|
12842
|
+
},
|
|
12843
|
+
"parameters": [
|
|
12844
|
+
{
|
|
12845
|
+
"name": "this",
|
|
12846
|
+
"type": {
|
|
12847
|
+
"text": "RecordViewBody"
|
|
12848
|
+
}
|
|
12849
|
+
},
|
|
12850
|
+
{
|
|
12851
|
+
"name": "e",
|
|
12852
|
+
"type": {
|
|
12853
|
+
"text": "Event"
|
|
12854
|
+
}
|
|
12855
|
+
}
|
|
12856
|
+
],
|
|
12857
|
+
"description": "ox-record-view-body 의 keydown handler\n\n- handler의 this 는 ox-record-view-body임."
|
|
12858
|
+
}
|
|
12859
|
+
],
|
|
12860
|
+
"exports": [
|
|
12861
|
+
{
|
|
12862
|
+
"kind": "js",
|
|
12863
|
+
"name": "recordViewBodyKeydownHandler",
|
|
12864
|
+
"declaration": {
|
|
12865
|
+
"name": "recordViewBodyKeydownHandler",
|
|
12866
|
+
"module": "src/record-view/event-handlers/record-view-body-keydown-handler.ts"
|
|
12867
|
+
}
|
|
12868
|
+
}
|
|
12869
|
+
]
|
|
12295
12870
|
}
|
|
12296
12871
|
]
|
|
12297
12872
|
}
|