igniteui-grid-lite 0.0.2 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/components/cell.d.ts +1 -1
- package/components/cell.js +2 -3
- package/components/cell.js.map +1 -1
- package/components/column.d.ts +45 -0
- package/components/column.js +88 -0
- package/components/column.js.map +1 -0
- package/components/filter-row.d.ts +1 -1
- package/components/filter-row.js +45 -33
- package/components/filter-row.js.map +1 -1
- package/components/grid.d.ts +34 -34
- package/components/grid.js +143 -104
- package/components/grid.js.map +1 -1
- package/components/header-row.d.ts +5 -8
- package/components/header-row.js +18 -28
- package/components/header-row.js.map +1 -1
- package/components/header.d.ts +1 -1
- package/components/header.js +8 -12
- package/components/header.js.map +1 -1
- package/components/row.d.ts +3 -5
- package/components/row.js +6 -12
- package/components/row.js.map +1 -1
- package/components/virtualizer.d.ts +0 -1
- package/components/virtualizer.js +0 -5
- package/components/virtualizer.js.map +1 -1
- package/controllers/data-operation.d.ts +4 -1
- package/controllers/data-operation.js +5 -1
- package/controllers/data-operation.js.map +1 -1
- package/controllers/dom.d.ts +9 -10
- package/controllers/dom.js +20 -34
- package/controllers/dom.js.map +1 -1
- package/controllers/filter.d.ts +7 -4
- package/controllers/filter.js +10 -7
- package/controllers/filter.js.map +1 -1
- package/controllers/navigation.d.ts +8 -8
- package/controllers/navigation.js +28 -28
- package/controllers/navigation.js.map +1 -1
- package/controllers/sort.d.ts +4 -4
- package/controllers/sort.js +13 -13
- package/controllers/sort.js.map +1 -1
- package/controllers/state.d.ts +32 -15
- package/controllers/state.js +54 -17
- package/controllers/state.js.map +1 -1
- package/custom-elements.json +2073 -1278
- package/docs/assets/hierarchy.js +1 -1
- package/docs/assets/navigation.js +1 -1
- package/docs/assets/search.js +1 -1
- package/docs/assets/style.css +3 -3
- package/docs/classes/IgcGridLite.html +15 -17
- package/docs/classes/IgcGridLiteColumn.html +44 -0
- package/docs/hierarchy.html +1 -1
- package/docs/index.html +6 -6
- package/docs/interfaces/BaseColumnConfiguration.html +13 -7
- package/docs/interfaces/BaseColumnSortConfiguration.html +4 -6
- package/docs/interfaces/BaseFilterExpression.html +1 -1
- package/docs/interfaces/BaseIgcCellContext.html +1 -1
- package/docs/interfaces/{BaseSortExpression.html → BaseSortingExpression.html} +2 -2
- package/docs/interfaces/DataPipelineConfiguration.html +1 -1
- package/docs/interfaces/GridLiteSortingOptions.html +4 -0
- package/docs/interfaces/IgcFilteredEvent.html +1 -1
- package/docs/interfaces/IgcFilteringEvent.html +1 -1
- package/docs/interfaces/IgcGridLiteEventMap.html +4 -4
- package/docs/interfaces/IgcHeaderContext.html +1 -1
- package/docs/modules.html +1 -1
- package/docs/types/BasePropertyType.html +1 -1
- package/docs/types/BaseSortComparer.html +1 -1
- package/docs/types/ColumnConfiguration.html +1 -1
- package/docs/types/ColumnSortConfiguration.html +1 -1
- package/docs/types/DataPipelineHook.html +1 -1
- package/docs/types/DataPipelineParams.html +1 -1
- package/docs/types/DataType.html +1 -1
- package/docs/types/FilterCriteria.html +1 -1
- package/docs/types/FilterExpression.html +1 -1
- package/docs/types/IgcCellContext.html +1 -1
- package/docs/types/Keys.html +1 -1
- package/docs/types/PropertyType.html +1 -1
- package/docs/types/SortComparer.html +1 -1
- package/docs/types/SortState.html +1 -1
- package/docs/types/SortingDirection.html +1 -1
- package/docs/types/SortingExpression.html +2 -0
- package/index.d.ts +3 -2
- package/index.js +1 -0
- package/index.js.map +1 -1
- package/internal/constants.js +7 -3
- package/internal/constants.js.map +1 -1
- package/internal/context.d.ts +9 -0
- package/internal/context.js +7 -0
- package/internal/context.js.map +1 -0
- package/internal/element-from-event-path.d.ts +2 -0
- package/internal/element-from-event-path.js +12 -0
- package/internal/element-from-event-path.js.map +1 -0
- package/internal/part-map.d.ts +16 -3
- package/internal/part-map.js +44 -4
- package/internal/part-map.js.map +1 -1
- package/internal/tags.d.ts +1 -0
- package/internal/tags.js +1 -0
- package/internal/tags.js.map +1 -1
- package/internal/types.d.ts +19 -24
- package/internal/types.js.map +1 -1
- package/internal/utils.d.ts +6 -2
- package/internal/utils.js +46 -14
- package/internal/utils.js.map +1 -1
- package/operations/sort/types.d.ts +4 -4
- package/operations/sort/types.js.map +1 -1
- package/operations/sort.d.ts +2 -2
- package/operations/sort.js.map +1 -1
- package/package.json +1 -1
- package/styles/themes/dark/grid.bootstrap.css.js +1 -1
- package/styles/themes/dark/grid.bootstrap.css.js.map +1 -1
- package/styles/themes/dark/grid.fluent.css.js +1 -1
- package/styles/themes/dark/grid.fluent.css.js.map +1 -1
- package/styles/themes/dark/grid.indigo.css.js +1 -1
- package/styles/themes/dark/grid.indigo.css.js.map +1 -1
- package/styles/themes/dark/grid.material.css.js +1 -1
- package/styles/themes/dark/grid.material.css.js.map +1 -1
- package/styles/themes/grid.base.css.js +1 -1
- package/styles/themes/grid.base.css.js.map +1 -1
- package/styles/themes/light/grid.fluent.css.js +1 -1
- package/styles/themes/light/grid.fluent.css.js.map +1 -1
- package/styles/themes/light/grid.indigo.css.js +1 -1
- package/styles/themes/light/grid.indigo.css.js.map +1 -1
- package/styles/themes/light/grid.shared.css.js +1 -1
- package/styles/themes/light/grid.shared.css.js.map +1 -1
- package/docs/interfaces/ColumnFilterConfiguration.html +0 -4
- package/docs/interfaces/GridSortConfiguration.html +0 -6
- package/docs/types/SortExpression.html +0 -2
package/custom-elements.json
CHANGED
|
@@ -22,6 +22,14 @@
|
|
|
22
22
|
"path": "src/index.ts",
|
|
23
23
|
"declarations": [],
|
|
24
24
|
"exports": [
|
|
25
|
+
{
|
|
26
|
+
"kind": "js",
|
|
27
|
+
"name": "IgcGridLiteColumn",
|
|
28
|
+
"declaration": {
|
|
29
|
+
"name": "IgcGridLiteColumn",
|
|
30
|
+
"module": "./components/column.js"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
25
33
|
{
|
|
26
34
|
"kind": "js",
|
|
27
35
|
"name": "IgcFilteredEvent",
|
|
@@ -94,14 +102,6 @@
|
|
|
94
102
|
"module": "./internal/types.js"
|
|
95
103
|
}
|
|
96
104
|
},
|
|
97
|
-
{
|
|
98
|
-
"kind": "js",
|
|
99
|
-
"name": "ColumnFilterConfiguration",
|
|
100
|
-
"declaration": {
|
|
101
|
-
"name": "ColumnFilterConfiguration",
|
|
102
|
-
"module": "./internal/types.js"
|
|
103
|
-
}
|
|
104
|
-
},
|
|
105
105
|
{
|
|
106
106
|
"kind": "js",
|
|
107
107
|
"name": "ColumnSortConfiguration",
|
|
@@ -144,9 +144,9 @@
|
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
146
|
"kind": "js",
|
|
147
|
-
"name": "
|
|
147
|
+
"name": "GridLiteSortingOptions",
|
|
148
148
|
"declaration": {
|
|
149
|
-
"name": "
|
|
149
|
+
"name": "GridLiteSortingOptions",
|
|
150
150
|
"module": "./internal/types.js"
|
|
151
151
|
}
|
|
152
152
|
},
|
|
@@ -264,9 +264,9 @@
|
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
266
|
"kind": "js",
|
|
267
|
-
"name": "
|
|
267
|
+
"name": "BaseSortingExpression",
|
|
268
268
|
"declaration": {
|
|
269
|
-
"name": "
|
|
269
|
+
"name": "BaseSortingExpression",
|
|
270
270
|
"module": "./operations/sort/types.js"
|
|
271
271
|
}
|
|
272
272
|
},
|
|
@@ -280,17 +280,17 @@
|
|
|
280
280
|
},
|
|
281
281
|
{
|
|
282
282
|
"kind": "js",
|
|
283
|
-
"name": "
|
|
283
|
+
"name": "SortingDirection",
|
|
284
284
|
"declaration": {
|
|
285
|
-
"name": "
|
|
285
|
+
"name": "SortingDirection",
|
|
286
286
|
"module": "./operations/sort/types.js"
|
|
287
287
|
}
|
|
288
288
|
},
|
|
289
289
|
{
|
|
290
290
|
"kind": "js",
|
|
291
|
-
"name": "
|
|
291
|
+
"name": "SortingExpression",
|
|
292
292
|
"declaration": {
|
|
293
|
-
"name": "
|
|
293
|
+
"name": "SortingExpression",
|
|
294
294
|
"module": "./operations/sort/types.js"
|
|
295
295
|
}
|
|
296
296
|
},
|
|
@@ -306,1033 +306,1237 @@
|
|
|
306
306
|
},
|
|
307
307
|
{
|
|
308
308
|
"kind": "javascript-module",
|
|
309
|
-
"path": "src/
|
|
309
|
+
"path": "src/controllers/data-operation.ts",
|
|
310
310
|
"declarations": [
|
|
311
311
|
{
|
|
312
312
|
"kind": "class",
|
|
313
|
-
"description": "
|
|
314
|
-
"name": "
|
|
313
|
+
"description": "",
|
|
314
|
+
"name": "DataOperationsController",
|
|
315
315
|
"members": [
|
|
316
316
|
{
|
|
317
317
|
"kind": "field",
|
|
318
|
-
"name": "
|
|
319
|
-
"privacy": "
|
|
320
|
-
"
|
|
321
|
-
"readonly": true
|
|
318
|
+
"name": "sorting",
|
|
319
|
+
"privacy": "protected",
|
|
320
|
+
"default": "new SortDataOperation<T>()"
|
|
322
321
|
},
|
|
323
322
|
{
|
|
324
|
-
"kind": "
|
|
325
|
-
"name": "
|
|
326
|
-
"privacy": "
|
|
327
|
-
"
|
|
328
|
-
"return": {
|
|
329
|
-
"type": {
|
|
330
|
-
"text": "void"
|
|
331
|
-
}
|
|
332
|
-
}
|
|
323
|
+
"kind": "field",
|
|
324
|
+
"name": "filtering",
|
|
325
|
+
"privacy": "protected",
|
|
326
|
+
"default": "new FilterDataOperation<T>()"
|
|
333
327
|
},
|
|
334
328
|
{
|
|
335
|
-
"kind": "
|
|
336
|
-
"name": "
|
|
337
|
-
"
|
|
338
|
-
"text": "PropertyType<T>"
|
|
339
|
-
},
|
|
340
|
-
"privacy": "public",
|
|
341
|
-
"description": "The value which will be rendered by the component."
|
|
329
|
+
"kind": "method",
|
|
330
|
+
"name": "hostConnected",
|
|
331
|
+
"privacy": "public"
|
|
342
332
|
},
|
|
343
333
|
{
|
|
344
334
|
"kind": "field",
|
|
345
|
-
"name": "
|
|
346
|
-
"
|
|
347
|
-
|
|
348
|
-
},
|
|
349
|
-
"privacy": "public",
|
|
350
|
-
"description": "A reference to the column configuration object."
|
|
335
|
+
"name": "hasCustomSort",
|
|
336
|
+
"privacy": "protected",
|
|
337
|
+
"readonly": true
|
|
351
338
|
},
|
|
352
339
|
{
|
|
353
340
|
"kind": "field",
|
|
354
|
-
"name": "
|
|
355
|
-
"
|
|
356
|
-
|
|
357
|
-
},
|
|
358
|
-
"privacy": "public",
|
|
359
|
-
"default": "false",
|
|
360
|
-
"description": "Indicates whether this is the active cell in the grid.",
|
|
361
|
-
"attribute": "active",
|
|
362
|
-
"reflects": true
|
|
341
|
+
"name": "hasCustomFilter",
|
|
342
|
+
"privacy": "protected",
|
|
343
|
+
"readonly": true
|
|
363
344
|
},
|
|
364
345
|
{
|
|
365
346
|
"kind": "field",
|
|
366
|
-
"name": "
|
|
367
|
-
"
|
|
368
|
-
|
|
369
|
-
},
|
|
370
|
-
"privacy": "public",
|
|
371
|
-
"description": "The parent row component holding this cell."
|
|
347
|
+
"name": "customFilter",
|
|
348
|
+
"privacy": "protected",
|
|
349
|
+
"readonly": true
|
|
372
350
|
},
|
|
373
351
|
{
|
|
374
352
|
"kind": "field",
|
|
375
|
-
"name": "
|
|
376
|
-
"type": {
|
|
377
|
-
"text": "IgcCellContext<T>"
|
|
378
|
-
},
|
|
353
|
+
"name": "customSort",
|
|
379
354
|
"privacy": "protected",
|
|
380
355
|
"readonly": true
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"kind": "method",
|
|
359
|
+
"name": "apply",
|
|
360
|
+
"privacy": "public",
|
|
361
|
+
"parameters": [
|
|
362
|
+
{
|
|
363
|
+
"name": "data",
|
|
364
|
+
"type": {
|
|
365
|
+
"text": "T[]"
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"name": "state",
|
|
370
|
+
"type": {
|
|
371
|
+
"text": "StateController<T>"
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
]
|
|
381
375
|
}
|
|
382
|
-
]
|
|
383
|
-
|
|
376
|
+
]
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"kind": "function",
|
|
380
|
+
"name": "createDataOperationsController",
|
|
381
|
+
"return": {
|
|
382
|
+
"type": {
|
|
383
|
+
"text": "DataOperationsController<T>"
|
|
384
|
+
}
|
|
385
|
+
},
|
|
386
|
+
"parameters": [
|
|
384
387
|
{
|
|
385
|
-
"name": "
|
|
388
|
+
"name": "host",
|
|
386
389
|
"type": {
|
|
387
|
-
"text": "
|
|
388
|
-
}
|
|
389
|
-
"default": "false",
|
|
390
|
-
"description": "Indicates whether this is the active cell in the grid.",
|
|
391
|
-
"fieldName": "active"
|
|
390
|
+
"text": "GridHost<T>"
|
|
391
|
+
}
|
|
392
392
|
}
|
|
393
|
-
]
|
|
394
|
-
"superclass": {
|
|
395
|
-
"name": "LitElement",
|
|
396
|
-
"package": "lit"
|
|
397
|
-
},
|
|
398
|
-
"customElement": true
|
|
393
|
+
]
|
|
399
394
|
}
|
|
400
395
|
],
|
|
401
396
|
"exports": [
|
|
402
397
|
{
|
|
403
398
|
"kind": "js",
|
|
404
|
-
"name": "
|
|
399
|
+
"name": "createDataOperationsController",
|
|
405
400
|
"declaration": {
|
|
406
|
-
"name": "
|
|
407
|
-
"module": "src/
|
|
401
|
+
"name": "createDataOperationsController",
|
|
402
|
+
"module": "src/controllers/data-operation.ts"
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"kind": "js",
|
|
407
|
+
"name": "DataOperationsController",
|
|
408
|
+
"declaration": {
|
|
409
|
+
"name": "DataOperationsController",
|
|
410
|
+
"module": "src/controllers/data-operation.ts"
|
|
408
411
|
}
|
|
409
412
|
}
|
|
410
413
|
]
|
|
411
414
|
},
|
|
412
415
|
{
|
|
413
416
|
"kind": "javascript-module",
|
|
414
|
-
"path": "src/
|
|
417
|
+
"path": "src/controllers/dom.ts",
|
|
415
418
|
"declarations": [
|
|
416
419
|
{
|
|
417
420
|
"kind": "class",
|
|
418
421
|
"description": "",
|
|
419
|
-
"name": "
|
|
422
|
+
"name": "GridDOMController",
|
|
420
423
|
"members": [
|
|
421
424
|
{
|
|
422
425
|
"kind": "field",
|
|
423
|
-
"name": "
|
|
424
|
-
"privacy": "public",
|
|
425
|
-
"static": true,
|
|
426
|
-
"readonly": true
|
|
427
|
-
},
|
|
428
|
-
{
|
|
429
|
-
"kind": "method",
|
|
430
|
-
"name": "register",
|
|
431
|
-
"privacy": "public",
|
|
432
|
-
"static": true
|
|
433
|
-
},
|
|
434
|
-
{
|
|
435
|
-
"kind": "field",
|
|
436
|
-
"name": "state",
|
|
426
|
+
"name": "_host",
|
|
437
427
|
"type": {
|
|
438
|
-
"text": "
|
|
428
|
+
"text": "GridHost<T>"
|
|
439
429
|
},
|
|
440
|
-
"privacy": "public"
|
|
441
|
-
},
|
|
442
|
-
{
|
|
443
|
-
"kind": "field",
|
|
444
|
-
"name": "isNumeric",
|
|
445
|
-
"privacy": "protected",
|
|
446
|
-
"readonly": true
|
|
447
|
-
},
|
|
448
|
-
{
|
|
449
|
-
"kind": "field",
|
|
450
|
-
"name": "filterController",
|
|
451
430
|
"privacy": "protected",
|
|
452
|
-
"readonly": true
|
|
453
|
-
|
|
454
|
-
{
|
|
455
|
-
"kind": "field",
|
|
456
|
-
"name": "condition",
|
|
457
|
-
"privacy": "protected",
|
|
458
|
-
"readonly": true
|
|
431
|
+
"readonly": true,
|
|
432
|
+
"default": "host"
|
|
459
433
|
},
|
|
460
434
|
{
|
|
461
435
|
"kind": "field",
|
|
462
|
-
"name": "
|
|
436
|
+
"name": "_state",
|
|
463
437
|
"type": {
|
|
464
|
-
"text": "
|
|
438
|
+
"text": "StateController<T>"
|
|
465
439
|
},
|
|
466
|
-
"privacy": "
|
|
467
|
-
"
|
|
440
|
+
"privacy": "protected",
|
|
441
|
+
"readonly": true,
|
|
442
|
+
"default": "state"
|
|
468
443
|
},
|
|
469
444
|
{
|
|
470
445
|
"kind": "field",
|
|
471
|
-
"name": "
|
|
446
|
+
"name": "columnSizes",
|
|
472
447
|
"type": {
|
|
473
|
-
"text": "
|
|
448
|
+
"text": "StyleInfo"
|
|
474
449
|
},
|
|
475
|
-
"privacy": "public"
|
|
450
|
+
"privacy": "public",
|
|
451
|
+
"default": "{}"
|
|
476
452
|
},
|
|
477
453
|
{
|
|
478
|
-
"kind": "
|
|
479
|
-
"name": "
|
|
480
|
-
"
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
454
|
+
"kind": "method",
|
|
455
|
+
"name": "hostConnected",
|
|
456
|
+
"privacy": "public",
|
|
457
|
+
"return": {
|
|
458
|
+
"type": {
|
|
459
|
+
"text": "void"
|
|
460
|
+
}
|
|
461
|
+
}
|
|
484
462
|
},
|
|
485
463
|
{
|
|
486
|
-
"kind": "
|
|
487
|
-
"name": "
|
|
488
|
-
"
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
464
|
+
"kind": "method",
|
|
465
|
+
"name": "hostUpdate",
|
|
466
|
+
"privacy": "public",
|
|
467
|
+
"return": {
|
|
468
|
+
"type": {
|
|
469
|
+
"text": "void"
|
|
470
|
+
}
|
|
471
|
+
}
|
|
492
472
|
},
|
|
493
473
|
{
|
|
494
|
-
"kind": "
|
|
495
|
-
"name": "
|
|
496
|
-
"type": {
|
|
497
|
-
"text": "ColumnConfiguration<T>"
|
|
498
|
-
},
|
|
474
|
+
"kind": "method",
|
|
475
|
+
"name": "setScrollOffset",
|
|
499
476
|
"privacy": "public",
|
|
500
|
-
"
|
|
477
|
+
"return": {
|
|
478
|
+
"type": {
|
|
479
|
+
"text": "void"
|
|
480
|
+
}
|
|
481
|
+
}
|
|
501
482
|
},
|
|
502
483
|
{
|
|
503
|
-
"kind": "
|
|
504
|
-
"name": "
|
|
505
|
-
"
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
484
|
+
"kind": "method",
|
|
485
|
+
"name": "setGridColumnSizes",
|
|
486
|
+
"privacy": "protected",
|
|
487
|
+
"return": {
|
|
488
|
+
"type": {
|
|
489
|
+
"text": "void"
|
|
490
|
+
}
|
|
491
|
+
}
|
|
509
492
|
},
|
|
510
493
|
{
|
|
511
494
|
"kind": "method",
|
|
512
|
-
"name": "
|
|
513
|
-
"privacy": "
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
495
|
+
"name": "getActiveRowStyles",
|
|
496
|
+
"privacy": "public",
|
|
497
|
+
"return": {
|
|
498
|
+
"type": {
|
|
499
|
+
"text": "StyleInfo"
|
|
500
|
+
}
|
|
501
|
+
},
|
|
519
502
|
"parameters": [
|
|
520
503
|
{
|
|
521
|
-
"name": "
|
|
504
|
+
"name": "index",
|
|
522
505
|
"type": {
|
|
523
|
-
"text": "
|
|
506
|
+
"text": "number"
|
|
524
507
|
}
|
|
525
508
|
}
|
|
526
509
|
]
|
|
510
|
+
}
|
|
511
|
+
]
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"kind": "function",
|
|
515
|
+
"name": "createDomController",
|
|
516
|
+
"return": {
|
|
517
|
+
"type": {
|
|
518
|
+
"text": "GridDOMController<T>"
|
|
519
|
+
}
|
|
520
|
+
},
|
|
521
|
+
"parameters": [
|
|
522
|
+
{
|
|
523
|
+
"name": "host",
|
|
524
|
+
"type": {
|
|
525
|
+
"text": "GridHost<T>"
|
|
526
|
+
}
|
|
527
527
|
},
|
|
528
528
|
{
|
|
529
|
-
"
|
|
530
|
-
"
|
|
531
|
-
|
|
529
|
+
"name": "state",
|
|
530
|
+
"type": {
|
|
531
|
+
"text": "StateController<T>"
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
]
|
|
535
|
+
}
|
|
536
|
+
],
|
|
537
|
+
"exports": [
|
|
538
|
+
{
|
|
539
|
+
"kind": "js",
|
|
540
|
+
"name": "createDomController",
|
|
541
|
+
"declaration": {
|
|
542
|
+
"name": "createDomController",
|
|
543
|
+
"module": "src/controllers/dom.ts"
|
|
544
|
+
}
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"kind": "js",
|
|
548
|
+
"name": "GridDOMController",
|
|
549
|
+
"declaration": {
|
|
550
|
+
"name": "GridDOMController",
|
|
551
|
+
"module": "src/controllers/dom.ts"
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
]
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"kind": "javascript-module",
|
|
558
|
+
"path": "src/controllers/filter.ts",
|
|
559
|
+
"declarations": [
|
|
560
|
+
{
|
|
561
|
+
"kind": "class",
|
|
562
|
+
"description": "",
|
|
563
|
+
"name": "FilterController",
|
|
564
|
+
"members": [
|
|
565
|
+
{
|
|
566
|
+
"kind": "field",
|
|
567
|
+
"name": "_stateController",
|
|
568
|
+
"type": {
|
|
569
|
+
"text": "StateController<T>"
|
|
570
|
+
},
|
|
571
|
+
"privacy": "private",
|
|
572
|
+
"readonly": true,
|
|
573
|
+
"default": "state"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"kind": "field",
|
|
577
|
+
"name": "state",
|
|
578
|
+
"type": {
|
|
579
|
+
"text": "FilterState<T>"
|
|
580
|
+
},
|
|
581
|
+
"privacy": "public",
|
|
582
|
+
"default": "new FilterState()"
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"kind": "field",
|
|
586
|
+
"name": "host",
|
|
587
|
+
"privacy": "public",
|
|
588
|
+
"readonly": true
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"kind": "field",
|
|
592
|
+
"name": "filterRow",
|
|
593
|
+
"type": {
|
|
594
|
+
"text": "IgcFilterRow<T> | null"
|
|
595
|
+
},
|
|
596
|
+
"privacy": "public",
|
|
597
|
+
"readonly": true
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"kind": "field",
|
|
601
|
+
"name": "#virtualizer",
|
|
602
|
+
"privacy": "private",
|
|
603
|
+
"readonly": true
|
|
532
604
|
},
|
|
533
605
|
{
|
|
534
606
|
"kind": "method",
|
|
535
|
-
"name": "#
|
|
607
|
+
"name": "#emitFilteringEvent",
|
|
536
608
|
"privacy": "private",
|
|
537
609
|
"parameters": [
|
|
538
610
|
{
|
|
539
|
-
"name": "
|
|
611
|
+
"name": "expression",
|
|
540
612
|
"type": {
|
|
541
|
-
"text": "
|
|
613
|
+
"text": "FilterExpression<T>"
|
|
614
|
+
}
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"name": "type",
|
|
618
|
+
"type": {
|
|
619
|
+
"text": "'add' | 'modify' | 'remove'"
|
|
542
620
|
}
|
|
543
621
|
}
|
|
544
622
|
]
|
|
545
623
|
},
|
|
546
624
|
{
|
|
547
625
|
"kind": "method",
|
|
548
|
-
"name": "#
|
|
626
|
+
"name": "#emitFilteredEvent",
|
|
549
627
|
"privacy": "private",
|
|
550
628
|
"parameters": [
|
|
551
629
|
{
|
|
552
|
-
"name": "
|
|
630
|
+
"name": "detail",
|
|
631
|
+
"optional": true,
|
|
553
632
|
"type": {
|
|
554
|
-
"text": "
|
|
633
|
+
"text": "IgcFilteredEvent<T>"
|
|
555
634
|
}
|
|
556
635
|
}
|
|
557
636
|
]
|
|
558
637
|
},
|
|
559
638
|
{
|
|
560
639
|
"kind": "method",
|
|
561
|
-
"name": "#
|
|
640
|
+
"name": "#filter",
|
|
562
641
|
"privacy": "private",
|
|
563
642
|
"parameters": [
|
|
564
643
|
{
|
|
565
|
-
"name": "
|
|
644
|
+
"name": "expression",
|
|
566
645
|
"type": {
|
|
567
|
-
"text": "
|
|
646
|
+
"text": "FilterExpression<T> | FilterExpression<T>[]"
|
|
568
647
|
}
|
|
569
648
|
}
|
|
570
649
|
]
|
|
571
650
|
},
|
|
572
651
|
{
|
|
573
652
|
"kind": "method",
|
|
574
|
-
"name": "
|
|
575
|
-
"privacy": "
|
|
576
|
-
},
|
|
577
|
-
{
|
|
578
|
-
"kind": "method",
|
|
579
|
-
"name": "#openDropdownList",
|
|
580
|
-
"privacy": "private"
|
|
653
|
+
"name": "hostConnected",
|
|
654
|
+
"privacy": "public"
|
|
581
655
|
},
|
|
582
656
|
{
|
|
583
657
|
"kind": "method",
|
|
584
|
-
"name": "
|
|
585
|
-
"privacy": "
|
|
658
|
+
"name": "hostUpdate",
|
|
659
|
+
"privacy": "public",
|
|
660
|
+
"return": {
|
|
661
|
+
"type": {
|
|
662
|
+
"text": "void"
|
|
663
|
+
}
|
|
664
|
+
}
|
|
586
665
|
},
|
|
587
666
|
{
|
|
588
667
|
"kind": "method",
|
|
589
|
-
"name": "
|
|
590
|
-
"privacy": "
|
|
668
|
+
"name": "get",
|
|
669
|
+
"privacy": "public",
|
|
591
670
|
"parameters": [
|
|
592
671
|
{
|
|
593
|
-
"name": "
|
|
672
|
+
"name": "key",
|
|
594
673
|
"type": {
|
|
595
|
-
"text": "
|
|
674
|
+
"text": "Keys<T>"
|
|
596
675
|
}
|
|
597
676
|
}
|
|
598
677
|
]
|
|
599
678
|
},
|
|
600
679
|
{
|
|
601
680
|
"kind": "method",
|
|
602
|
-
"name": "
|
|
603
|
-
"privacy": "
|
|
681
|
+
"name": "reset",
|
|
682
|
+
"privacy": "public",
|
|
604
683
|
"parameters": [
|
|
605
684
|
{
|
|
606
|
-
"name": "
|
|
685
|
+
"name": "key",
|
|
686
|
+
"optional": true,
|
|
607
687
|
"type": {
|
|
608
|
-
"text": "
|
|
688
|
+
"text": "Keys<T>"
|
|
609
689
|
}
|
|
610
690
|
}
|
|
611
691
|
]
|
|
612
692
|
},
|
|
613
693
|
{
|
|
614
694
|
"kind": "method",
|
|
615
|
-
"name": "
|
|
616
|
-
"privacy": "
|
|
695
|
+
"name": "setActiveColumn",
|
|
696
|
+
"privacy": "public",
|
|
617
697
|
"parameters": [
|
|
618
698
|
{
|
|
619
|
-
"name": "
|
|
699
|
+
"name": "column",
|
|
700
|
+
"optional": true,
|
|
620
701
|
"type": {
|
|
621
|
-
"text": "
|
|
702
|
+
"text": "ColumnConfiguration<T>"
|
|
622
703
|
}
|
|
623
704
|
}
|
|
624
705
|
]
|
|
625
706
|
},
|
|
626
707
|
{
|
|
627
708
|
"kind": "method",
|
|
628
|
-
"name": "
|
|
629
|
-
"privacy": "
|
|
709
|
+
"name": "getDefaultExpression",
|
|
710
|
+
"privacy": "public",
|
|
630
711
|
"parameters": [
|
|
631
712
|
{
|
|
632
|
-
"name": "
|
|
633
|
-
"type": {
|
|
634
|
-
"text": "FilterExpression<T>"
|
|
635
|
-
}
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
"name": "index",
|
|
713
|
+
"name": "column",
|
|
639
714
|
"type": {
|
|
640
|
-
"text": "
|
|
715
|
+
"text": "ColumnConfiguration<T>"
|
|
641
716
|
}
|
|
642
717
|
}
|
|
643
718
|
]
|
|
644
719
|
},
|
|
645
720
|
{
|
|
646
721
|
"kind": "method",
|
|
647
|
-
"name": "
|
|
648
|
-
"privacy": "
|
|
722
|
+
"name": "removeAllExpressions",
|
|
723
|
+
"privacy": "public",
|
|
649
724
|
"parameters": [
|
|
650
725
|
{
|
|
651
|
-
"name": "
|
|
726
|
+
"name": "key",
|
|
652
727
|
"type": {
|
|
653
|
-
"text": "
|
|
728
|
+
"text": "Keys<T>"
|
|
654
729
|
}
|
|
655
730
|
}
|
|
656
731
|
]
|
|
657
732
|
},
|
|
658
733
|
{
|
|
659
734
|
"kind": "method",
|
|
660
|
-
"name": "
|
|
661
|
-
"privacy": "
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
"name": "renderDropdown",
|
|
671
|
-
"privacy": "protected"
|
|
672
|
-
},
|
|
673
|
-
{
|
|
674
|
-
"kind": "method",
|
|
675
|
-
"name": "renderDropdownTarget",
|
|
676
|
-
"privacy": "protected"
|
|
677
|
-
},
|
|
678
|
-
{
|
|
679
|
-
"kind": "method",
|
|
680
|
-
"name": "renderInputArea",
|
|
681
|
-
"privacy": "protected"
|
|
682
|
-
},
|
|
683
|
-
{
|
|
684
|
-
"kind": "method",
|
|
685
|
-
"name": "renderActiveState",
|
|
686
|
-
"privacy": "protected"
|
|
735
|
+
"name": "removeExpression",
|
|
736
|
+
"privacy": "public",
|
|
737
|
+
"parameters": [
|
|
738
|
+
{
|
|
739
|
+
"name": "expression",
|
|
740
|
+
"type": {
|
|
741
|
+
"text": "FilterExpression<T>"
|
|
742
|
+
}
|
|
743
|
+
}
|
|
744
|
+
]
|
|
687
745
|
},
|
|
688
746
|
{
|
|
689
747
|
"kind": "method",
|
|
690
|
-
"name": "
|
|
691
|
-
"privacy": "
|
|
748
|
+
"name": "filterWithEvent",
|
|
749
|
+
"privacy": "public",
|
|
692
750
|
"parameters": [
|
|
693
751
|
{
|
|
694
|
-
"name": "
|
|
752
|
+
"name": "expression",
|
|
695
753
|
"type": {
|
|
696
|
-
"text": "
|
|
754
|
+
"text": "FilterExpression<T>"
|
|
697
755
|
}
|
|
698
756
|
},
|
|
699
757
|
{
|
|
700
|
-
"name": "
|
|
758
|
+
"name": "type",
|
|
701
759
|
"type": {
|
|
702
|
-
"text": "
|
|
760
|
+
"text": "'add' | 'modify' | 'remove'"
|
|
703
761
|
}
|
|
704
762
|
}
|
|
705
763
|
]
|
|
706
764
|
},
|
|
707
765
|
{
|
|
708
766
|
"kind": "method",
|
|
709
|
-
"name": "
|
|
710
|
-
"privacy": "
|
|
767
|
+
"name": "filter",
|
|
768
|
+
"privacy": "public",
|
|
711
769
|
"parameters": [
|
|
712
770
|
{
|
|
713
|
-
"name": "
|
|
771
|
+
"name": "expression",
|
|
714
772
|
"type": {
|
|
715
|
-
"text": "
|
|
773
|
+
"text": "FilterExpression<T> | FilterExpression<T>[]"
|
|
716
774
|
}
|
|
717
775
|
}
|
|
718
776
|
]
|
|
719
|
-
},
|
|
720
|
-
{
|
|
721
|
-
"kind": "method",
|
|
722
|
-
"name": "renderInactiveState",
|
|
723
|
-
"privacy": "protected"
|
|
724
777
|
}
|
|
725
|
-
]
|
|
726
|
-
"superclass": {
|
|
727
|
-
"name": "LitElement",
|
|
728
|
-
"package": "lit"
|
|
729
|
-
},
|
|
730
|
-
"customElement": true
|
|
778
|
+
]
|
|
731
779
|
}
|
|
732
780
|
],
|
|
733
781
|
"exports": [
|
|
734
782
|
{
|
|
735
783
|
"kind": "js",
|
|
736
|
-
"name": "
|
|
784
|
+
"name": "FilterController",
|
|
737
785
|
"declaration": {
|
|
738
|
-
"name": "
|
|
739
|
-
"module": "src/
|
|
786
|
+
"name": "FilterController",
|
|
787
|
+
"module": "src/controllers/filter.ts"
|
|
740
788
|
}
|
|
741
789
|
}
|
|
742
790
|
]
|
|
743
791
|
},
|
|
744
792
|
{
|
|
745
793
|
"kind": "javascript-module",
|
|
746
|
-
"path": "src/
|
|
794
|
+
"path": "src/controllers/navigation.ts",
|
|
747
795
|
"declarations": [
|
|
748
796
|
{
|
|
749
797
|
"kind": "class",
|
|
750
|
-
"description": "
|
|
751
|
-
"name": "
|
|
798
|
+
"description": "",
|
|
799
|
+
"name": "NavigationController",
|
|
752
800
|
"members": [
|
|
753
801
|
{
|
|
754
802
|
"kind": "field",
|
|
755
|
-
"name": "
|
|
756
|
-
"privacy": "
|
|
757
|
-
"
|
|
758
|
-
"readonly": true
|
|
803
|
+
"name": "handlers",
|
|
804
|
+
"privacy": "protected",
|
|
805
|
+
"default": "new Map( Object.entries({ ArrowDown: this.arrowDown, ArrowUp: this.arrowUp, ArrowLeft: this.arrowLeft, ArrowRight: this.arrowRight, Home: this.home, End: this.end, }) )"
|
|
759
806
|
},
|
|
760
807
|
{
|
|
761
|
-
"kind": "
|
|
762
|
-
"name": "
|
|
763
|
-
"privacy": "
|
|
764
|
-
"
|
|
808
|
+
"kind": "field",
|
|
809
|
+
"name": "_virtualizer",
|
|
810
|
+
"privacy": "protected",
|
|
811
|
+
"readonly": true
|
|
765
812
|
},
|
|
766
813
|
{
|
|
767
814
|
"kind": "field",
|
|
768
|
-
"name": "
|
|
815
|
+
"name": "_navigationState",
|
|
769
816
|
"privacy": "protected",
|
|
770
|
-
"default": "
|
|
817
|
+
"default": "NAVIGATION_STATE"
|
|
771
818
|
},
|
|
772
819
|
{
|
|
773
820
|
"kind": "field",
|
|
774
|
-
"name": "
|
|
821
|
+
"name": "_active",
|
|
775
822
|
"privacy": "protected",
|
|
776
|
-
"default": "
|
|
823
|
+
"default": "SENTINEL_NODE"
|
|
777
824
|
},
|
|
778
825
|
{
|
|
779
826
|
"kind": "field",
|
|
780
|
-
"name": "
|
|
827
|
+
"name": "nextNode",
|
|
781
828
|
"privacy": "protected",
|
|
782
|
-
"
|
|
829
|
+
"readonly": true
|
|
783
830
|
},
|
|
784
831
|
{
|
|
785
832
|
"kind": "field",
|
|
786
|
-
"name": "
|
|
833
|
+
"name": "_columns",
|
|
787
834
|
"privacy": "protected",
|
|
788
|
-
"
|
|
835
|
+
"readonly": true
|
|
789
836
|
},
|
|
790
837
|
{
|
|
791
838
|
"kind": "field",
|
|
792
|
-
"name": "
|
|
793
|
-
"
|
|
794
|
-
|
|
795
|
-
},
|
|
796
|
-
"privacy": "protected"
|
|
839
|
+
"name": "_firstColumn",
|
|
840
|
+
"privacy": "protected",
|
|
841
|
+
"readonly": true
|
|
797
842
|
},
|
|
798
843
|
{
|
|
799
|
-
"kind": "
|
|
800
|
-
"name": "
|
|
801
|
-
"
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
844
|
+
"kind": "method",
|
|
845
|
+
"name": "getPreviousColumn",
|
|
846
|
+
"privacy": "protected",
|
|
847
|
+
"parameters": [
|
|
848
|
+
{
|
|
849
|
+
"name": "key",
|
|
850
|
+
"type": {
|
|
851
|
+
"text": "Keys<T>"
|
|
852
|
+
}
|
|
853
|
+
}
|
|
854
|
+
]
|
|
805
855
|
},
|
|
806
856
|
{
|
|
807
|
-
"kind": "
|
|
808
|
-
"name": "
|
|
809
|
-
"
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
857
|
+
"kind": "method",
|
|
858
|
+
"name": "getNextColumn",
|
|
859
|
+
"privacy": "protected",
|
|
860
|
+
"parameters": [
|
|
861
|
+
{
|
|
862
|
+
"name": "key",
|
|
863
|
+
"type": {
|
|
864
|
+
"text": "Keys<T>"
|
|
865
|
+
}
|
|
866
|
+
}
|
|
867
|
+
]
|
|
813
868
|
},
|
|
814
869
|
{
|
|
815
|
-
"kind": "
|
|
816
|
-
"name": "
|
|
817
|
-
"type": {
|
|
818
|
-
"text": "Array<T>"
|
|
819
|
-
},
|
|
870
|
+
"kind": "method",
|
|
871
|
+
"name": "scrollToCell",
|
|
820
872
|
"privacy": "protected",
|
|
821
|
-
"
|
|
873
|
+
"parameters": [
|
|
874
|
+
{
|
|
875
|
+
"name": "node",
|
|
876
|
+
"type": {
|
|
877
|
+
"text": "ActiveNode<T>"
|
|
878
|
+
}
|
|
879
|
+
}
|
|
880
|
+
]
|
|
822
881
|
},
|
|
823
882
|
{
|
|
824
883
|
"kind": "field",
|
|
825
|
-
"name": "
|
|
884
|
+
"name": "active",
|
|
826
885
|
"type": {
|
|
827
|
-
"text": "
|
|
886
|
+
"text": "ActiveNode<T>"
|
|
828
887
|
},
|
|
829
|
-
"privacy": "
|
|
888
|
+
"privacy": "public"
|
|
830
889
|
},
|
|
831
890
|
{
|
|
832
|
-
"kind": "
|
|
833
|
-
"name": "
|
|
834
|
-
"
|
|
835
|
-
"text": "Array<ColumnConfiguration<T>>"
|
|
836
|
-
},
|
|
837
|
-
"privacy": "public",
|
|
838
|
-
"default": "[]",
|
|
839
|
-
"description": "Column configuration for the grid."
|
|
891
|
+
"kind": "method",
|
|
892
|
+
"name": "home",
|
|
893
|
+
"privacy": "protected"
|
|
840
894
|
},
|
|
841
895
|
{
|
|
842
|
-
"kind": "
|
|
843
|
-
"name": "
|
|
844
|
-
"
|
|
845
|
-
"text": "Array<T>"
|
|
846
|
-
},
|
|
847
|
-
"privacy": "public",
|
|
848
|
-
"default": "[]",
|
|
849
|
-
"description": "The data source for the grid."
|
|
896
|
+
"kind": "method",
|
|
897
|
+
"name": "end",
|
|
898
|
+
"privacy": "protected"
|
|
850
899
|
},
|
|
851
900
|
{
|
|
852
|
-
"kind": "
|
|
853
|
-
"name": "
|
|
854
|
-
"
|
|
855
|
-
"text": "boolean"
|
|
856
|
-
},
|
|
857
|
-
"privacy": "public",
|
|
858
|
-
"default": "false",
|
|
859
|
-
"description": "Whether the grid will try to \"resolve\" its column configuration based on the passed\ndata source.",
|
|
860
|
-
"attribute": "auto-generate"
|
|
901
|
+
"kind": "method",
|
|
902
|
+
"name": "arrowDown",
|
|
903
|
+
"privacy": "protected"
|
|
861
904
|
},
|
|
862
905
|
{
|
|
863
|
-
"kind": "
|
|
864
|
-
"name": "
|
|
865
|
-
"
|
|
866
|
-
"text": "GridSortConfiguration"
|
|
867
|
-
},
|
|
868
|
-
"privacy": "public",
|
|
869
|
-
"default": "{ multiple: true, triState: true, }",
|
|
870
|
-
"description": "Sort configuration property for the grid."
|
|
906
|
+
"kind": "method",
|
|
907
|
+
"name": "arrowUp",
|
|
908
|
+
"privacy": "protected"
|
|
871
909
|
},
|
|
872
910
|
{
|
|
873
|
-
"kind": "
|
|
874
|
-
"name": "
|
|
875
|
-
"
|
|
876
|
-
"text": "DataPipelineConfiguration<T>"
|
|
877
|
-
},
|
|
878
|
-
"privacy": "public",
|
|
879
|
-
"description": "Configuration object which controls remote data operations for the grid."
|
|
911
|
+
"kind": "method",
|
|
912
|
+
"name": "arrowLeft",
|
|
913
|
+
"privacy": "protected"
|
|
880
914
|
},
|
|
881
915
|
{
|
|
882
|
-
"kind": "
|
|
883
|
-
"name": "
|
|
884
|
-
"privacy": "
|
|
885
|
-
"description": "Get the sort state for the grid.",
|
|
886
|
-
"type": {
|
|
887
|
-
"text": "SortExpression<T>[]"
|
|
888
|
-
}
|
|
916
|
+
"kind": "method",
|
|
917
|
+
"name": "arrowRight",
|
|
918
|
+
"privacy": "protected"
|
|
889
919
|
},
|
|
890
920
|
{
|
|
891
|
-
"kind": "
|
|
892
|
-
"name": "
|
|
893
|
-
"privacy": "public"
|
|
894
|
-
"description": "Get the filter state for the grid.",
|
|
895
|
-
"type": {
|
|
896
|
-
"text": "FilterExpression<T>[]"
|
|
897
|
-
}
|
|
921
|
+
"kind": "method",
|
|
922
|
+
"name": "hostDisconnected",
|
|
923
|
+
"privacy": "public"
|
|
898
924
|
},
|
|
899
925
|
{
|
|
900
|
-
"kind": "
|
|
901
|
-
"name": "
|
|
926
|
+
"kind": "method",
|
|
927
|
+
"name": "navigate",
|
|
902
928
|
"privacy": "public",
|
|
903
|
-
"
|
|
904
|
-
|
|
905
|
-
|
|
929
|
+
"parameters": [
|
|
930
|
+
{
|
|
931
|
+
"name": "event",
|
|
932
|
+
"type": {
|
|
933
|
+
"text": "KeyboardEvent"
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
]
|
|
937
|
+
}
|
|
938
|
+
]
|
|
939
|
+
}
|
|
940
|
+
],
|
|
941
|
+
"exports": [
|
|
942
|
+
{
|
|
943
|
+
"kind": "js",
|
|
944
|
+
"name": "NavigationController",
|
|
945
|
+
"declaration": {
|
|
946
|
+
"name": "NavigationController",
|
|
947
|
+
"module": "src/controllers/navigation.ts"
|
|
948
|
+
}
|
|
949
|
+
}
|
|
950
|
+
]
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"kind": "javascript-module",
|
|
954
|
+
"path": "src/controllers/resize.ts",
|
|
955
|
+
"declarations": [
|
|
956
|
+
{
|
|
957
|
+
"kind": "class",
|
|
958
|
+
"description": "",
|
|
959
|
+
"name": "ResizeController",
|
|
960
|
+
"members": [
|
|
906
961
|
{
|
|
907
962
|
"kind": "field",
|
|
908
|
-
"name": "
|
|
963
|
+
"name": "indicatorActive",
|
|
909
964
|
"type": {
|
|
910
|
-
"text": "
|
|
965
|
+
"text": "boolean"
|
|
911
966
|
},
|
|
912
967
|
"privacy": "public",
|
|
913
|
-
"
|
|
914
|
-
"readonly": true
|
|
968
|
+
"default": "false"
|
|
915
969
|
},
|
|
916
970
|
{
|
|
917
971
|
"kind": "field",
|
|
918
|
-
"name": "
|
|
972
|
+
"name": "indicatorOffset",
|
|
973
|
+
"type": {
|
|
974
|
+
"text": "number"
|
|
975
|
+
},
|
|
919
976
|
"privacy": "public",
|
|
920
|
-
"
|
|
921
|
-
"readonly": true
|
|
977
|
+
"default": "0"
|
|
922
978
|
},
|
|
923
979
|
{
|
|
924
980
|
"kind": "method",
|
|
925
|
-
"name": "
|
|
926
|
-
"privacy": "
|
|
981
|
+
"name": "#maxSize",
|
|
982
|
+
"privacy": "private",
|
|
927
983
|
"parameters": [
|
|
928
984
|
{
|
|
929
|
-
"name": "
|
|
985
|
+
"name": "key",
|
|
930
986
|
"type": {
|
|
931
|
-
"text": "
|
|
987
|
+
"text": "Keys<T>"
|
|
932
988
|
}
|
|
933
989
|
},
|
|
934
990
|
{
|
|
935
|
-
"name": "
|
|
936
|
-
"default": "[]",
|
|
991
|
+
"name": "headerWidth",
|
|
937
992
|
"type": {
|
|
938
|
-
"text": "
|
|
993
|
+
"text": "number"
|
|
939
994
|
}
|
|
940
995
|
}
|
|
941
996
|
]
|
|
942
997
|
},
|
|
943
998
|
{
|
|
944
999
|
"kind": "method",
|
|
945
|
-
"name": "
|
|
946
|
-
"privacy": "protected"
|
|
947
|
-
},
|
|
948
|
-
{
|
|
949
|
-
"kind": "method",
|
|
950
|
-
"name": "pipeline",
|
|
951
|
-
"privacy": "protected"
|
|
952
|
-
},
|
|
953
|
-
{
|
|
954
|
-
"kind": "method",
|
|
955
|
-
"name": "filter",
|
|
1000
|
+
"name": "start",
|
|
956
1001
|
"privacy": "public",
|
|
957
1002
|
"parameters": [
|
|
958
1003
|
{
|
|
959
|
-
"name": "
|
|
1004
|
+
"name": "header",
|
|
960
1005
|
"type": {
|
|
961
|
-
"text": "
|
|
962
|
-
}
|
|
1006
|
+
"text": "IgcGridLiteHeader<T>"
|
|
1007
|
+
},
|
|
1008
|
+
"description": "the"
|
|
963
1009
|
}
|
|
964
1010
|
],
|
|
965
|
-
"description": "
|
|
1011
|
+
"description": "Begins resizing a column by showing and positioning the resize indicator in relation to the column."
|
|
966
1012
|
},
|
|
967
1013
|
{
|
|
968
1014
|
"kind": "method",
|
|
969
|
-
"name": "
|
|
1015
|
+
"name": "stop",
|
|
1016
|
+
"privacy": "public",
|
|
1017
|
+
"description": "Stops and resets the resizing state."
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"kind": "method",
|
|
1021
|
+
"name": "resize",
|
|
970
1022
|
"privacy": "public",
|
|
971
1023
|
"parameters": [
|
|
972
1024
|
{
|
|
973
|
-
"name": "
|
|
1025
|
+
"name": "column",
|
|
1026
|
+
"type": {
|
|
1027
|
+
"text": "ColumnConfiguration<T>"
|
|
1028
|
+
}
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
"name": "width",
|
|
974
1032
|
"type": {
|
|
975
|
-
"text": "
|
|
1033
|
+
"text": "number"
|
|
1034
|
+
}
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
"name": "sizerOffset",
|
|
1038
|
+
"optional": true,
|
|
1039
|
+
"type": {
|
|
1040
|
+
"text": "number"
|
|
976
1041
|
}
|
|
977
1042
|
}
|
|
978
|
-
]
|
|
979
|
-
"description": "Performs a sort operation in the grid based on the passed expression(s)."
|
|
1043
|
+
]
|
|
980
1044
|
},
|
|
981
1045
|
{
|
|
982
1046
|
"kind": "method",
|
|
983
|
-
"name": "
|
|
1047
|
+
"name": "autosize",
|
|
984
1048
|
"privacy": "public",
|
|
985
1049
|
"parameters": [
|
|
986
1050
|
{
|
|
987
|
-
"name": "
|
|
988
|
-
"optional": true,
|
|
1051
|
+
"name": "column",
|
|
989
1052
|
"type": {
|
|
990
|
-
"text": "
|
|
1053
|
+
"text": "ColumnConfiguration<T>"
|
|
1054
|
+
}
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
"name": "header",
|
|
1058
|
+
"type": {
|
|
1059
|
+
"text": "IgcGridLiteHeader<T>"
|
|
991
1060
|
}
|
|
992
1061
|
}
|
|
993
|
-
]
|
|
994
|
-
"description": "Resets the current sort state of the control."
|
|
1062
|
+
]
|
|
995
1063
|
},
|
|
996
1064
|
{
|
|
997
1065
|
"kind": "method",
|
|
998
|
-
"name": "
|
|
1066
|
+
"name": "hostConnected",
|
|
1067
|
+
"privacy": "public"
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"kind": "method",
|
|
1071
|
+
"name": "renderIndicator",
|
|
1072
|
+
"privacy": "public",
|
|
1073
|
+
"description": "Renders the resize indicator in the grid."
|
|
1074
|
+
}
|
|
1075
|
+
]
|
|
1076
|
+
}
|
|
1077
|
+
],
|
|
1078
|
+
"exports": [
|
|
1079
|
+
{
|
|
1080
|
+
"kind": "js",
|
|
1081
|
+
"name": "ResizeController",
|
|
1082
|
+
"declaration": {
|
|
1083
|
+
"name": "ResizeController",
|
|
1084
|
+
"module": "src/controllers/resize.ts"
|
|
1085
|
+
}
|
|
1086
|
+
}
|
|
1087
|
+
]
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
"kind": "javascript-module",
|
|
1091
|
+
"path": "src/controllers/sort.ts",
|
|
1092
|
+
"declarations": [
|
|
1093
|
+
{
|
|
1094
|
+
"kind": "class",
|
|
1095
|
+
"description": "",
|
|
1096
|
+
"name": "SortController",
|
|
1097
|
+
"members": [
|
|
1098
|
+
{
|
|
1099
|
+
"kind": "field",
|
|
1100
|
+
"name": "state",
|
|
1101
|
+
"type": {
|
|
1102
|
+
"text": "SortState<T>"
|
|
1103
|
+
},
|
|
999
1104
|
"privacy": "public",
|
|
1105
|
+
"default": "new Map()"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"kind": "field",
|
|
1109
|
+
"name": "#isMultipleSort",
|
|
1110
|
+
"privacy": "private",
|
|
1111
|
+
"readonly": true
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"kind": "field",
|
|
1115
|
+
"name": "#isTriStateSort",
|
|
1116
|
+
"privacy": "private",
|
|
1117
|
+
"readonly": true
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"kind": "method",
|
|
1121
|
+
"name": "#resolveSortOptions",
|
|
1122
|
+
"privacy": "private",
|
|
1000
1123
|
"parameters": [
|
|
1001
1124
|
{
|
|
1002
|
-
"name": "
|
|
1125
|
+
"name": "column",
|
|
1003
1126
|
"optional": true,
|
|
1004
1127
|
"type": {
|
|
1005
|
-
"text": "
|
|
1128
|
+
"text": "ColumnConfiguration<T>"
|
|
1006
1129
|
}
|
|
1007
1130
|
}
|
|
1008
|
-
]
|
|
1009
|
-
"description": "Resets the current filter state of the control."
|
|
1131
|
+
]
|
|
1010
1132
|
},
|
|
1011
1133
|
{
|
|
1012
1134
|
"kind": "method",
|
|
1013
|
-
"name": "
|
|
1014
|
-
"privacy": "
|
|
1135
|
+
"name": "#createDefaultExpression",
|
|
1136
|
+
"privacy": "private",
|
|
1015
1137
|
"parameters": [
|
|
1016
1138
|
{
|
|
1017
|
-
"name": "
|
|
1139
|
+
"name": "key",
|
|
1018
1140
|
"type": {
|
|
1019
|
-
"text": "Keys<T>
|
|
1141
|
+
"text": "Keys<T>"
|
|
1020
1142
|
}
|
|
1021
1143
|
}
|
|
1022
|
-
]
|
|
1023
|
-
"description": "Returns a ColumnConfiguration for a given column."
|
|
1144
|
+
]
|
|
1024
1145
|
},
|
|
1025
1146
|
{
|
|
1026
1147
|
"kind": "method",
|
|
1027
|
-
"name": "
|
|
1028
|
-
"privacy": "
|
|
1148
|
+
"name": "#orderBy",
|
|
1149
|
+
"privacy": "private",
|
|
1150
|
+
"return": {
|
|
1151
|
+
"type": {
|
|
1152
|
+
"text": "SortingDirection"
|
|
1153
|
+
}
|
|
1154
|
+
},
|
|
1029
1155
|
"parameters": [
|
|
1030
1156
|
{
|
|
1031
|
-
"name": "
|
|
1157
|
+
"name": "dir",
|
|
1158
|
+
"optional": true,
|
|
1032
1159
|
"type": {
|
|
1033
|
-
"text": "
|
|
1160
|
+
"text": "SortingDirection"
|
|
1034
1161
|
}
|
|
1035
1162
|
}
|
|
1036
|
-
]
|
|
1037
|
-
"description": "Updates the column configuration of the grid."
|
|
1163
|
+
]
|
|
1038
1164
|
},
|
|
1039
1165
|
{
|
|
1040
1166
|
"kind": "method",
|
|
1041
|
-
"name": "
|
|
1042
|
-
"privacy": "
|
|
1167
|
+
"name": "#emitSortingEvent",
|
|
1168
|
+
"privacy": "private",
|
|
1043
1169
|
"parameters": [
|
|
1044
1170
|
{
|
|
1045
|
-
"name": "
|
|
1171
|
+
"name": "detail",
|
|
1046
1172
|
"type": {
|
|
1047
|
-
"text": "
|
|
1173
|
+
"text": "SortingExpression<T>"
|
|
1048
1174
|
}
|
|
1049
1175
|
}
|
|
1050
1176
|
]
|
|
1051
1177
|
},
|
|
1052
1178
|
{
|
|
1053
1179
|
"kind": "method",
|
|
1054
|
-
"name": "
|
|
1055
|
-
"privacy": "
|
|
1180
|
+
"name": "#emitSortedEvent",
|
|
1181
|
+
"privacy": "private",
|
|
1056
1182
|
"parameters": [
|
|
1057
1183
|
{
|
|
1058
|
-
"name": "
|
|
1184
|
+
"name": "detail",
|
|
1059
1185
|
"type": {
|
|
1060
|
-
"text": "
|
|
1186
|
+
"text": "SortingExpression<T>"
|
|
1061
1187
|
}
|
|
1062
1188
|
}
|
|
1063
1189
|
]
|
|
1064
1190
|
},
|
|
1065
1191
|
{
|
|
1066
1192
|
"kind": "method",
|
|
1067
|
-
"name": "
|
|
1068
|
-
"privacy": "
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
"name": "renderFilterRow",
|
|
1078
|
-
"privacy": "protected"
|
|
1193
|
+
"name": "#setExpression",
|
|
1194
|
+
"privacy": "private",
|
|
1195
|
+
"parameters": [
|
|
1196
|
+
{
|
|
1197
|
+
"name": "expression",
|
|
1198
|
+
"type": {
|
|
1199
|
+
"text": "SortingExpression<T>"
|
|
1200
|
+
}
|
|
1201
|
+
}
|
|
1202
|
+
]
|
|
1079
1203
|
},
|
|
1080
1204
|
{
|
|
1081
1205
|
"kind": "method",
|
|
1082
|
-
"name": "
|
|
1206
|
+
"name": "sortFromHeaderClick",
|
|
1083
1207
|
"privacy": "public",
|
|
1084
|
-
"return": {
|
|
1085
|
-
"type": {
|
|
1086
|
-
"text": "void"
|
|
1087
|
-
}
|
|
1088
|
-
},
|
|
1089
1208
|
"parameters": [
|
|
1090
1209
|
{
|
|
1091
|
-
"name": "
|
|
1092
|
-
"type": {
|
|
1093
|
-
"text": "K"
|
|
1094
|
-
}
|
|
1095
|
-
},
|
|
1096
|
-
{
|
|
1097
|
-
"name": "listener",
|
|
1098
|
-
"type": {
|
|
1099
|
-
"text": "(this: HTMLElement, ev: M[K]) => any"
|
|
1100
|
-
}
|
|
1101
|
-
},
|
|
1102
|
-
{
|
|
1103
|
-
"name": "options",
|
|
1104
|
-
"optional": true,
|
|
1210
|
+
"name": "column",
|
|
1105
1211
|
"type": {
|
|
1106
|
-
"text": "
|
|
1212
|
+
"text": "ColumnConfiguration<T>"
|
|
1107
1213
|
}
|
|
1108
1214
|
}
|
|
1109
|
-
]
|
|
1110
|
-
"inheritedFrom": {
|
|
1111
|
-
"name": "EventEmitterBase",
|
|
1112
|
-
"module": "src/internal/mixins/event-emitter.ts"
|
|
1113
|
-
}
|
|
1215
|
+
]
|
|
1114
1216
|
},
|
|
1115
1217
|
{
|
|
1116
1218
|
"kind": "method",
|
|
1117
|
-
"name": "
|
|
1219
|
+
"name": "prepareExpression",
|
|
1118
1220
|
"privacy": "public",
|
|
1119
1221
|
"return": {
|
|
1120
1222
|
"type": {
|
|
1121
|
-
"text": "
|
|
1223
|
+
"text": "SortingExpression<T>"
|
|
1122
1224
|
}
|
|
1123
1225
|
},
|
|
1124
1226
|
"parameters": [
|
|
1125
1227
|
{
|
|
1126
|
-
"name": "
|
|
1127
|
-
"type": {
|
|
1128
|
-
"text": "K"
|
|
1129
|
-
}
|
|
1130
|
-
},
|
|
1131
|
-
{
|
|
1132
|
-
"name": "listener",
|
|
1228
|
+
"name": "column",
|
|
1133
1229
|
"type": {
|
|
1134
|
-
"text": "
|
|
1230
|
+
"text": "ColumnConfiguration<T>"
|
|
1135
1231
|
}
|
|
1136
|
-
}
|
|
1232
|
+
}
|
|
1233
|
+
]
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"kind": "method",
|
|
1237
|
+
"name": "reset",
|
|
1238
|
+
"privacy": "public",
|
|
1239
|
+
"parameters": [
|
|
1137
1240
|
{
|
|
1138
|
-
"name": "
|
|
1241
|
+
"name": "key",
|
|
1139
1242
|
"optional": true,
|
|
1140
1243
|
"type": {
|
|
1141
|
-
"text": "
|
|
1244
|
+
"text": "Keys<T>"
|
|
1142
1245
|
}
|
|
1143
1246
|
}
|
|
1144
|
-
]
|
|
1145
|
-
"inheritedFrom": {
|
|
1146
|
-
"name": "EventEmitterBase",
|
|
1147
|
-
"module": "src/internal/mixins/event-emitter.ts"
|
|
1148
|
-
}
|
|
1247
|
+
]
|
|
1149
1248
|
},
|
|
1150
1249
|
{
|
|
1151
1250
|
"kind": "method",
|
|
1152
|
-
"name": "
|
|
1153
|
-
"privacy": "
|
|
1154
|
-
"return": {
|
|
1155
|
-
"type": {
|
|
1156
|
-
"text": "boolean"
|
|
1157
|
-
}
|
|
1158
|
-
},
|
|
1251
|
+
"name": "_sort",
|
|
1252
|
+
"privacy": "protected",
|
|
1159
1253
|
"parameters": [
|
|
1160
1254
|
{
|
|
1161
|
-
"name": "
|
|
1255
|
+
"name": "expressions",
|
|
1162
1256
|
"type": {
|
|
1163
|
-
"text": "
|
|
1257
|
+
"text": "SortingExpression<T> | SortingExpression<T>[]"
|
|
1164
1258
|
}
|
|
1165
|
-
}
|
|
1259
|
+
}
|
|
1260
|
+
]
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"kind": "method",
|
|
1264
|
+
"name": "sort",
|
|
1265
|
+
"privacy": "public",
|
|
1266
|
+
"parameters": [
|
|
1166
1267
|
{
|
|
1167
|
-
"name": "
|
|
1168
|
-
"optional": true,
|
|
1268
|
+
"name": "expressions",
|
|
1169
1269
|
"type": {
|
|
1170
|
-
"text": "
|
|
1270
|
+
"text": "SortingExpression<T> | SortingExpression<T>[]"
|
|
1171
1271
|
}
|
|
1172
1272
|
}
|
|
1173
|
-
]
|
|
1174
|
-
"inheritedFrom": {
|
|
1175
|
-
"name": "EventEmitterBase",
|
|
1176
|
-
"module": "src/internal/mixins/event-emitter.ts"
|
|
1177
|
-
}
|
|
1178
|
-
}
|
|
1179
|
-
],
|
|
1180
|
-
"events": [
|
|
1181
|
-
{
|
|
1182
|
-
"description": "Emitted when sorting is initiated through the UI.",
|
|
1183
|
-
"name": "sorting"
|
|
1273
|
+
]
|
|
1184
1274
|
},
|
|
1185
1275
|
{
|
|
1186
|
-
"
|
|
1187
|
-
"name": "
|
|
1188
|
-
|
|
1189
|
-
{
|
|
1190
|
-
"description": "Emitted when filtering is initiated through the UI.",
|
|
1191
|
-
"name": "filtering"
|
|
1192
|
-
},
|
|
1193
|
-
{
|
|
1194
|
-
"description": "Emitted when a filter operation initiated through the UI has completed.",
|
|
1195
|
-
"name": "filtered"
|
|
1196
|
-
},
|
|
1197
|
-
{
|
|
1198
|
-
"type": {
|
|
1199
|
-
"text": "CustomEvent"
|
|
1200
|
-
},
|
|
1201
|
-
"inheritedFrom": {
|
|
1202
|
-
"name": "EventEmitterBase",
|
|
1203
|
-
"module": "src/internal/mixins/event-emitter.ts"
|
|
1204
|
-
}
|
|
1205
|
-
}
|
|
1206
|
-
],
|
|
1207
|
-
"attributes": [
|
|
1208
|
-
{
|
|
1209
|
-
"name": "auto-generate",
|
|
1210
|
-
"type": {
|
|
1211
|
-
"text": "boolean"
|
|
1212
|
-
},
|
|
1213
|
-
"default": "false",
|
|
1214
|
-
"description": "Whether the grid will try to \"resolve\" its column configuration based on the passed\ndata source.",
|
|
1215
|
-
"fieldName": "autoGenerate",
|
|
1216
|
-
"attribute": "auto-generate"
|
|
1276
|
+
"kind": "method",
|
|
1277
|
+
"name": "hostConnected",
|
|
1278
|
+
"privacy": "public"
|
|
1217
1279
|
}
|
|
1218
|
-
]
|
|
1219
|
-
"superclass": {
|
|
1220
|
-
"name": "EventEmitterBase",
|
|
1221
|
-
"module": "/src/internal/mixins/event-emitter.js"
|
|
1222
|
-
},
|
|
1223
|
-
"tagName": "igc-grid-lite",
|
|
1224
|
-
"customElement": true
|
|
1280
|
+
]
|
|
1225
1281
|
}
|
|
1226
1282
|
],
|
|
1227
1283
|
"exports": [
|
|
1228
1284
|
{
|
|
1229
1285
|
"kind": "js",
|
|
1230
|
-
"name": "
|
|
1286
|
+
"name": "SortController",
|
|
1231
1287
|
"declaration": {
|
|
1232
|
-
"name": "
|
|
1233
|
-
"module": "src/
|
|
1288
|
+
"name": "SortController",
|
|
1289
|
+
"module": "src/controllers/sort.ts"
|
|
1234
1290
|
}
|
|
1235
1291
|
}
|
|
1236
1292
|
]
|
|
1237
1293
|
},
|
|
1238
1294
|
{
|
|
1239
1295
|
"kind": "javascript-module",
|
|
1240
|
-
"path": "src/
|
|
1296
|
+
"path": "src/controllers/state.ts",
|
|
1241
1297
|
"declarations": [
|
|
1242
1298
|
{
|
|
1243
1299
|
"kind": "class",
|
|
1244
1300
|
"description": "",
|
|
1245
|
-
"name": "
|
|
1301
|
+
"name": "StateController",
|
|
1246
1302
|
"members": [
|
|
1247
1303
|
{
|
|
1248
1304
|
"kind": "field",
|
|
1249
|
-
"name": "
|
|
1305
|
+
"name": "_columns",
|
|
1306
|
+
"type": {
|
|
1307
|
+
"text": "ColumnConfiguration<T>[]"
|
|
1308
|
+
},
|
|
1309
|
+
"privacy": "private",
|
|
1310
|
+
"default": "[]"
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"kind": "field",
|
|
1314
|
+
"name": "_observersCallback",
|
|
1315
|
+
"type": {
|
|
1316
|
+
"text": "() => void"
|
|
1317
|
+
},
|
|
1318
|
+
"privacy": "private",
|
|
1319
|
+
"readonly": true,
|
|
1320
|
+
"default": "observersCallback"
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
"kind": "field",
|
|
1324
|
+
"name": "host",
|
|
1325
|
+
"type": {
|
|
1326
|
+
"text": "GridHost<T>"
|
|
1327
|
+
},
|
|
1250
1328
|
"privacy": "public",
|
|
1251
|
-
"
|
|
1252
|
-
"
|
|
1329
|
+
"readonly": true,
|
|
1330
|
+
"description": "The grid host element.",
|
|
1331
|
+
"default": "host"
|
|
1253
1332
|
},
|
|
1254
1333
|
{
|
|
1255
|
-
"kind": "
|
|
1256
|
-
"name": "
|
|
1334
|
+
"kind": "field",
|
|
1335
|
+
"name": "sorting",
|
|
1336
|
+
"type": {
|
|
1337
|
+
"text": "SortController<T>"
|
|
1338
|
+
},
|
|
1257
1339
|
"privacy": "public",
|
|
1258
|
-
"
|
|
1259
|
-
"
|
|
1260
|
-
"type": {
|
|
1261
|
-
"text": "void"
|
|
1262
|
-
}
|
|
1263
|
-
}
|
|
1340
|
+
"readonly": true,
|
|
1341
|
+
"default": "new SortController(this.host)"
|
|
1264
1342
|
},
|
|
1265
1343
|
{
|
|
1266
1344
|
"kind": "field",
|
|
1267
|
-
"name": "
|
|
1345
|
+
"name": "filtering",
|
|
1268
1346
|
"type": {
|
|
1269
|
-
"text": "
|
|
1347
|
+
"text": "FilterController<T>"
|
|
1270
1348
|
},
|
|
1271
|
-
"privacy": "
|
|
1349
|
+
"privacy": "public",
|
|
1350
|
+
"readonly": true,
|
|
1351
|
+
"default": "new FilterController(this)"
|
|
1272
1352
|
},
|
|
1273
1353
|
{
|
|
1274
1354
|
"kind": "field",
|
|
1275
|
-
"name": "
|
|
1355
|
+
"name": "navigation",
|
|
1276
1356
|
"type": {
|
|
1277
|
-
"text": "
|
|
1357
|
+
"text": "NavigationController<T>"
|
|
1278
1358
|
},
|
|
1279
|
-
"privacy": "public"
|
|
1359
|
+
"privacy": "public",
|
|
1360
|
+
"readonly": true,
|
|
1361
|
+
"default": "new NavigationController(this)"
|
|
1362
|
+
},
|
|
1363
|
+
{
|
|
1364
|
+
"kind": "field",
|
|
1365
|
+
"name": "resizing",
|
|
1366
|
+
"type": {
|
|
1367
|
+
"text": "ResizeController<T>"
|
|
1368
|
+
},
|
|
1369
|
+
"privacy": "public",
|
|
1370
|
+
"readonly": true,
|
|
1371
|
+
"default": "new ResizeController(this.host)"
|
|
1280
1372
|
},
|
|
1281
1373
|
{
|
|
1282
1374
|
"kind": "field",
|
|
1283
1375
|
"name": "columns",
|
|
1284
1376
|
"type": {
|
|
1285
|
-
"text": "
|
|
1377
|
+
"text": "ColumnConfiguration<T>[]"
|
|
1286
1378
|
},
|
|
1287
1379
|
"privacy": "public",
|
|
1288
|
-
"
|
|
1380
|
+
"readonly": true
|
|
1289
1381
|
},
|
|
1290
1382
|
{
|
|
1291
1383
|
"kind": "field",
|
|
1292
|
-
"name": "
|
|
1384
|
+
"name": "headerRow",
|
|
1385
|
+
"type": {
|
|
1386
|
+
"text": "IgcGridLiteHeaderRow<T> | null"
|
|
1387
|
+
},
|
|
1388
|
+
"privacy": "public",
|
|
1389
|
+
"description": "Returns the header row element of the grid.",
|
|
1390
|
+
"readonly": true
|
|
1391
|
+
},
|
|
1392
|
+
{
|
|
1393
|
+
"kind": "field",
|
|
1394
|
+
"name": "filterRow",
|
|
1395
|
+
"type": {
|
|
1396
|
+
"text": "IgcFilterRow<T> | null"
|
|
1397
|
+
},
|
|
1398
|
+
"privacy": "public",
|
|
1399
|
+
"description": "Returns the filter row element of the grid.",
|
|
1400
|
+
"readonly": true
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"kind": "field",
|
|
1404
|
+
"name": "rows",
|
|
1405
|
+
"type": {
|
|
1406
|
+
"text": "IgcGridLiteRow<T>[]"
|
|
1407
|
+
},
|
|
1408
|
+
"privacy": "public",
|
|
1409
|
+
"description": "Returns the data row elements of the grid.",
|
|
1410
|
+
"readonly": true
|
|
1411
|
+
},
|
|
1412
|
+
{
|
|
1413
|
+
"kind": "field",
|
|
1414
|
+
"name": "virtualizer",
|
|
1415
|
+
"type": {
|
|
1416
|
+
"text": "IgcVirtualizer | null"
|
|
1417
|
+
},
|
|
1293
1418
|
"privacy": "public",
|
|
1419
|
+
"description": "Returns the virtualizer element of the grid.",
|
|
1294
1420
|
"readonly": true
|
|
1295
1421
|
},
|
|
1422
|
+
{
|
|
1423
|
+
"kind": "field",
|
|
1424
|
+
"name": "active",
|
|
1425
|
+
"type": {
|
|
1426
|
+
"text": "ActiveNode<T>"
|
|
1427
|
+
},
|
|
1428
|
+
"privacy": "public",
|
|
1429
|
+
"description": "Sets the currently active node in the grid."
|
|
1430
|
+
},
|
|
1296
1431
|
{
|
|
1297
1432
|
"kind": "method",
|
|
1298
|
-
"name": "
|
|
1299
|
-
"privacy": "
|
|
1433
|
+
"name": "hostUpdate",
|
|
1434
|
+
"privacy": "public",
|
|
1435
|
+
"return": {
|
|
1436
|
+
"type": {
|
|
1437
|
+
"text": "void"
|
|
1438
|
+
}
|
|
1439
|
+
}
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
"kind": "method",
|
|
1443
|
+
"name": "setColumnConfiguration",
|
|
1444
|
+
"privacy": "public",
|
|
1445
|
+
"return": {
|
|
1446
|
+
"type": {
|
|
1447
|
+
"text": "void"
|
|
1448
|
+
}
|
|
1449
|
+
},
|
|
1300
1450
|
"parameters": [
|
|
1301
1451
|
{
|
|
1302
|
-
"name": "
|
|
1452
|
+
"name": "columns",
|
|
1453
|
+
"type": {
|
|
1454
|
+
"text": "ColumnConfiguration<T>[]"
|
|
1455
|
+
}
|
|
1456
|
+
}
|
|
1457
|
+
]
|
|
1458
|
+
},
|
|
1459
|
+
{
|
|
1460
|
+
"kind": "method",
|
|
1461
|
+
"name": "setAutoColumnConfiguration",
|
|
1462
|
+
"privacy": "public",
|
|
1463
|
+
"return": {
|
|
1464
|
+
"type": {
|
|
1465
|
+
"text": "void"
|
|
1466
|
+
}
|
|
1467
|
+
}
|
|
1468
|
+
},
|
|
1469
|
+
{
|
|
1470
|
+
"kind": "method",
|
|
1471
|
+
"name": "updateColumnsConfiguration",
|
|
1472
|
+
"privacy": "public",
|
|
1473
|
+
"return": {
|
|
1474
|
+
"type": {
|
|
1475
|
+
"text": "void"
|
|
1476
|
+
}
|
|
1477
|
+
},
|
|
1478
|
+
"parameters": [
|
|
1479
|
+
{
|
|
1480
|
+
"name": "config",
|
|
1303
1481
|
"type": {
|
|
1304
|
-
"text": "
|
|
1482
|
+
"text": "ColumnConfiguration<T>[]"
|
|
1305
1483
|
}
|
|
1306
1484
|
}
|
|
1307
1485
|
]
|
|
1308
1486
|
}
|
|
1309
|
-
]
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1487
|
+
]
|
|
1488
|
+
},
|
|
1489
|
+
{
|
|
1490
|
+
"kind": "function",
|
|
1491
|
+
"name": "createStateController",
|
|
1492
|
+
"return": {
|
|
1493
|
+
"type": {
|
|
1494
|
+
"text": "StateController<T>"
|
|
1495
|
+
}
|
|
1313
1496
|
},
|
|
1314
|
-
"
|
|
1497
|
+
"parameters": [
|
|
1498
|
+
{
|
|
1499
|
+
"name": "host",
|
|
1500
|
+
"type": {
|
|
1501
|
+
"text": "GridHost<T>"
|
|
1502
|
+
}
|
|
1503
|
+
},
|
|
1504
|
+
{
|
|
1505
|
+
"name": "observersCallback",
|
|
1506
|
+
"type": {
|
|
1507
|
+
"text": "() => void"
|
|
1508
|
+
}
|
|
1509
|
+
}
|
|
1510
|
+
]
|
|
1315
1511
|
}
|
|
1316
1512
|
],
|
|
1317
1513
|
"exports": [
|
|
1318
1514
|
{
|
|
1319
1515
|
"kind": "js",
|
|
1320
|
-
"name": "
|
|
1516
|
+
"name": "createStateController",
|
|
1321
1517
|
"declaration": {
|
|
1322
|
-
"name": "
|
|
1323
|
-
"module": "src/
|
|
1518
|
+
"name": "createStateController",
|
|
1519
|
+
"module": "src/controllers/state.ts"
|
|
1520
|
+
}
|
|
1521
|
+
},
|
|
1522
|
+
{
|
|
1523
|
+
"kind": "js",
|
|
1524
|
+
"name": "StateController",
|
|
1525
|
+
"declaration": {
|
|
1526
|
+
"name": "StateController",
|
|
1527
|
+
"module": "src/controllers/state.ts"
|
|
1324
1528
|
}
|
|
1325
1529
|
}
|
|
1326
1530
|
]
|
|
1327
1531
|
},
|
|
1328
1532
|
{
|
|
1329
1533
|
"kind": "javascript-module",
|
|
1330
|
-
"path": "src/components/
|
|
1534
|
+
"path": "src/components/cell.ts",
|
|
1331
1535
|
"declarations": [
|
|
1332
1536
|
{
|
|
1333
1537
|
"kind": "class",
|
|
1334
|
-
"description": "",
|
|
1335
|
-
"name": "
|
|
1538
|
+
"description": "Component representing a DOM cell of the Igc grid.",
|
|
1539
|
+
"name": "IgcGridLiteCell",
|
|
1336
1540
|
"members": [
|
|
1337
1541
|
{
|
|
1338
1542
|
"kind": "field",
|
|
@@ -1354,101 +1558,62 @@
|
|
|
1354
1558
|
},
|
|
1355
1559
|
{
|
|
1356
1560
|
"kind": "field",
|
|
1357
|
-
"name": "
|
|
1561
|
+
"name": "value",
|
|
1358
1562
|
"type": {
|
|
1359
|
-
"text": "
|
|
1563
|
+
"text": "PropertyType<T>"
|
|
1360
1564
|
},
|
|
1361
|
-
"privacy": "
|
|
1362
|
-
"
|
|
1565
|
+
"privacy": "public",
|
|
1566
|
+
"description": "The value which will be rendered by the component."
|
|
1363
1567
|
},
|
|
1364
1568
|
{
|
|
1365
1569
|
"kind": "field",
|
|
1366
|
-
"name": "
|
|
1367
|
-
"
|
|
1368
|
-
|
|
1570
|
+
"name": "column",
|
|
1571
|
+
"type": {
|
|
1572
|
+
"text": "ColumnConfiguration<T>"
|
|
1573
|
+
},
|
|
1574
|
+
"privacy": "public",
|
|
1575
|
+
"description": "A reference to the column configuration object."
|
|
1369
1576
|
},
|
|
1370
1577
|
{
|
|
1371
1578
|
"kind": "field",
|
|
1372
|
-
"name": "
|
|
1373
|
-
"privacy": "protected",
|
|
1374
|
-
"readonly": true
|
|
1375
|
-
},
|
|
1376
|
-
{
|
|
1377
|
-
"kind": "field",
|
|
1378
|
-
"name": "state",
|
|
1579
|
+
"name": "active",
|
|
1379
1580
|
"type": {
|
|
1380
|
-
"text": "
|
|
1581
|
+
"text": "boolean"
|
|
1381
1582
|
},
|
|
1382
|
-
"privacy": "public"
|
|
1583
|
+
"privacy": "public",
|
|
1584
|
+
"default": "false",
|
|
1585
|
+
"description": "Indicates whether this is the active cell in the grid.",
|
|
1586
|
+
"attribute": "active",
|
|
1587
|
+
"reflects": true
|
|
1383
1588
|
},
|
|
1384
1589
|
{
|
|
1385
1590
|
"kind": "field",
|
|
1386
|
-
"name": "
|
|
1591
|
+
"name": "row",
|
|
1387
1592
|
"type": {
|
|
1388
|
-
"text": "
|
|
1593
|
+
"text": "IgcGridLiteRow<T>"
|
|
1389
1594
|
},
|
|
1390
|
-
"privacy": "public"
|
|
1391
|
-
|
|
1392
|
-
{
|
|
1393
|
-
"kind": "method",
|
|
1394
|
-
"name": "#addResizeEventHandlers",
|
|
1395
|
-
"privacy": "private"
|
|
1396
|
-
},
|
|
1397
|
-
{
|
|
1398
|
-
"kind": "method",
|
|
1399
|
-
"name": "#handleClick",
|
|
1400
|
-
"privacy": "private",
|
|
1401
|
-
"parameters": [
|
|
1402
|
-
{
|
|
1403
|
-
"name": "e",
|
|
1404
|
-
"type": {
|
|
1405
|
-
"text": "Event"
|
|
1406
|
-
}
|
|
1407
|
-
}
|
|
1408
|
-
]
|
|
1409
|
-
},
|
|
1410
|
-
{
|
|
1411
|
-
"kind": "field",
|
|
1412
|
-
"name": "#handleResize",
|
|
1413
|
-
"privacy": "private"
|
|
1414
|
-
},
|
|
1415
|
-
{
|
|
1416
|
-
"kind": "method",
|
|
1417
|
-
"name": "#handleResizeStart",
|
|
1418
|
-
"privacy": "private",
|
|
1419
|
-
"parameters": [
|
|
1420
|
-
{
|
|
1421
|
-
"name": "ev",
|
|
1422
|
-
"type": {
|
|
1423
|
-
"text": "PointerEvent"
|
|
1424
|
-
}
|
|
1425
|
-
}
|
|
1426
|
-
]
|
|
1427
|
-
},
|
|
1428
|
-
{
|
|
1429
|
-
"kind": "field",
|
|
1430
|
-
"name": "#handlePointerLost",
|
|
1431
|
-
"privacy": "private"
|
|
1595
|
+
"privacy": "public",
|
|
1596
|
+
"description": "The parent row component holding this cell."
|
|
1432
1597
|
},
|
|
1433
1598
|
{
|
|
1434
1599
|
"kind": "field",
|
|
1435
|
-
"name": "
|
|
1436
|
-
"
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
"
|
|
1440
|
-
"
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
"kind": "method",
|
|
1445
|
-
"name": "renderContentPart",
|
|
1446
|
-
"privacy": "protected"
|
|
1447
|
-
},
|
|
1600
|
+
"name": "context",
|
|
1601
|
+
"type": {
|
|
1602
|
+
"text": "IgcCellContext<T>"
|
|
1603
|
+
},
|
|
1604
|
+
"privacy": "protected",
|
|
1605
|
+
"readonly": true
|
|
1606
|
+
}
|
|
1607
|
+
],
|
|
1608
|
+
"attributes": [
|
|
1448
1609
|
{
|
|
1449
|
-
"
|
|
1450
|
-
"
|
|
1451
|
-
|
|
1610
|
+
"name": "active",
|
|
1611
|
+
"type": {
|
|
1612
|
+
"text": "boolean"
|
|
1613
|
+
},
|
|
1614
|
+
"default": "false",
|
|
1615
|
+
"description": "Indicates whether this is the active cell in the grid.",
|
|
1616
|
+
"fieldName": "active"
|
|
1452
1617
|
}
|
|
1453
1618
|
],
|
|
1454
1619
|
"superclass": {
|
|
@@ -1463,20 +1628,20 @@
|
|
|
1463
1628
|
"kind": "js",
|
|
1464
1629
|
"name": "default",
|
|
1465
1630
|
"declaration": {
|
|
1466
|
-
"name": "
|
|
1467
|
-
"module": "src/components/
|
|
1631
|
+
"name": "IgcGridLiteCell",
|
|
1632
|
+
"module": "src/components/cell.ts"
|
|
1468
1633
|
}
|
|
1469
1634
|
}
|
|
1470
1635
|
]
|
|
1471
1636
|
},
|
|
1472
1637
|
{
|
|
1473
1638
|
"kind": "javascript-module",
|
|
1474
|
-
"path": "src/components/
|
|
1639
|
+
"path": "src/components/column.ts",
|
|
1475
1640
|
"declarations": [
|
|
1476
1641
|
{
|
|
1477
1642
|
"kind": "class",
|
|
1478
|
-
"description": "
|
|
1479
|
-
"name": "
|
|
1643
|
+
"description": "",
|
|
1644
|
+
"name": "IgcGridLiteColumn",
|
|
1480
1645
|
"members": [
|
|
1481
1646
|
{
|
|
1482
1647
|
"kind": "field",
|
|
@@ -1498,79 +1663,264 @@
|
|
|
1498
1663
|
},
|
|
1499
1664
|
{
|
|
1500
1665
|
"kind": "field",
|
|
1501
|
-
"name": "
|
|
1666
|
+
"name": "_setConfig",
|
|
1502
1667
|
"type": {
|
|
1503
|
-
"text": "
|
|
1668
|
+
"text": "(config: BaseColumnConfiguration<T>) => void | undefined"
|
|
1504
1669
|
},
|
|
1505
|
-
"privacy": "protected"
|
|
1670
|
+
"privacy": "protected",
|
|
1671
|
+
"description": "Callback context to notify the parent grid about configuration changes"
|
|
1506
1672
|
},
|
|
1507
1673
|
{
|
|
1508
1674
|
"kind": "field",
|
|
1509
|
-
"name": "
|
|
1675
|
+
"name": "key",
|
|
1510
1676
|
"type": {
|
|
1511
|
-
"text": "T"
|
|
1677
|
+
"text": "keyof T"
|
|
1512
1678
|
},
|
|
1513
|
-
"privacy": "public"
|
|
1679
|
+
"privacy": "public",
|
|
1680
|
+
"description": "The key of the column, used to identify the data field.",
|
|
1681
|
+
"attribute": "key"
|
|
1514
1682
|
},
|
|
1515
1683
|
{
|
|
1516
1684
|
"kind": "field",
|
|
1517
|
-
"name": "
|
|
1685
|
+
"name": "type",
|
|
1518
1686
|
"type": {
|
|
1519
|
-
"text": "
|
|
1687
|
+
"text": "'number' | 'string' | 'boolean' | undefined"
|
|
1520
1688
|
},
|
|
1521
1689
|
"privacy": "public",
|
|
1522
|
-
"default": "
|
|
1690
|
+
"default": "'string'",
|
|
1691
|
+
"description": "The data type of the column's values.",
|
|
1692
|
+
"attribute": "type"
|
|
1523
1693
|
},
|
|
1524
1694
|
{
|
|
1525
1695
|
"kind": "field",
|
|
1526
|
-
"name": "
|
|
1696
|
+
"name": "headerText",
|
|
1697
|
+
"type": {
|
|
1698
|
+
"text": "string | undefined"
|
|
1699
|
+
},
|
|
1527
1700
|
"privacy": "public",
|
|
1528
|
-
"
|
|
1701
|
+
"description": "The header text of the column.",
|
|
1702
|
+
"attribute": "headerText"
|
|
1529
1703
|
},
|
|
1530
1704
|
{
|
|
1531
1705
|
"kind": "field",
|
|
1532
|
-
"name": "
|
|
1706
|
+
"name": "width",
|
|
1533
1707
|
"type": {
|
|
1534
|
-
"text": "
|
|
1708
|
+
"text": "string | undefined"
|
|
1535
1709
|
},
|
|
1536
|
-
"privacy": "public"
|
|
1710
|
+
"privacy": "public",
|
|
1711
|
+
"description": "The width of the column.",
|
|
1712
|
+
"attribute": "width"
|
|
1537
1713
|
},
|
|
1538
1714
|
{
|
|
1539
1715
|
"kind": "field",
|
|
1540
|
-
"name": "
|
|
1716
|
+
"name": "hidden",
|
|
1541
1717
|
"type": {
|
|
1542
|
-
"text": "
|
|
1718
|
+
"text": "boolean"
|
|
1543
1719
|
},
|
|
1544
1720
|
"privacy": "public",
|
|
1545
|
-
"default": "
|
|
1721
|
+
"default": "false",
|
|
1722
|
+
"description": "Indicates whether the column is hidden.",
|
|
1723
|
+
"attribute": "hidden"
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
"kind": "field",
|
|
1727
|
+
"name": "resizable",
|
|
1728
|
+
"type": {
|
|
1729
|
+
"text": "boolean"
|
|
1730
|
+
},
|
|
1731
|
+
"privacy": "public",
|
|
1732
|
+
"default": "false",
|
|
1733
|
+
"description": "Indicates whether the column is resizable.",
|
|
1734
|
+
"attribute": "resizable"
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
"kind": "field",
|
|
1738
|
+
"name": "sortable",
|
|
1739
|
+
"type": {
|
|
1740
|
+
"text": "boolean"
|
|
1741
|
+
},
|
|
1742
|
+
"privacy": "public",
|
|
1743
|
+
"default": "false",
|
|
1744
|
+
"description": "Indicates whether the column is sortable.",
|
|
1745
|
+
"attribute": "sortable"
|
|
1746
|
+
},
|
|
1747
|
+
{
|
|
1748
|
+
"kind": "field",
|
|
1749
|
+
"name": "sortingCaseSensitive",
|
|
1750
|
+
"type": {
|
|
1751
|
+
"text": "boolean"
|
|
1752
|
+
},
|
|
1753
|
+
"privacy": "public",
|
|
1754
|
+
"default": "false",
|
|
1755
|
+
"description": "Whether sort operations will be case sensitive.",
|
|
1756
|
+
"attribute": "sorting-case-sensitive"
|
|
1757
|
+
},
|
|
1758
|
+
{
|
|
1759
|
+
"kind": "field",
|
|
1760
|
+
"name": "sortConfiguration",
|
|
1761
|
+
"type": {
|
|
1762
|
+
"text": "ColumnSortConfiguration<T> | undefined"
|
|
1763
|
+
},
|
|
1764
|
+
"privacy": "public",
|
|
1765
|
+
"description": "Sort configuration for the column (e.g., custom comparer)."
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
"kind": "field",
|
|
1769
|
+
"name": "filterable",
|
|
1770
|
+
"type": {
|
|
1771
|
+
"text": "boolean"
|
|
1772
|
+
},
|
|
1773
|
+
"privacy": "public",
|
|
1774
|
+
"default": "false",
|
|
1775
|
+
"description": "Indicates whether the column is filterable.",
|
|
1776
|
+
"attribute": "filterable"
|
|
1777
|
+
},
|
|
1778
|
+
{
|
|
1779
|
+
"kind": "field",
|
|
1780
|
+
"name": "filteringCaseSensitive",
|
|
1781
|
+
"type": {
|
|
1782
|
+
"text": "boolean"
|
|
1783
|
+
},
|
|
1784
|
+
"privacy": "public",
|
|
1785
|
+
"default": "false",
|
|
1786
|
+
"description": "Whether filter operations will be case sensitive.",
|
|
1787
|
+
"attribute": "filtering-case-sensitive"
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
"kind": "field",
|
|
1791
|
+
"name": "headerTemplate",
|
|
1792
|
+
"type": {
|
|
1793
|
+
"text": "(params: IgcHeaderContext<T>) => unknown | undefined"
|
|
1794
|
+
},
|
|
1795
|
+
"privacy": "public",
|
|
1796
|
+
"description": "Custom header template for the column."
|
|
1797
|
+
},
|
|
1798
|
+
{
|
|
1799
|
+
"kind": "field",
|
|
1800
|
+
"name": "cellTemplate",
|
|
1801
|
+
"type": {
|
|
1802
|
+
"text": "(params: IgcCellContext<T>) => unknown | undefined"
|
|
1803
|
+
},
|
|
1804
|
+
"privacy": "public",
|
|
1805
|
+
"description": "Custom cell template for the column."
|
|
1806
|
+
}
|
|
1807
|
+
],
|
|
1808
|
+
"attributes": [
|
|
1809
|
+
{
|
|
1810
|
+
"name": "key",
|
|
1811
|
+
"type": {
|
|
1812
|
+
"text": "keyof T"
|
|
1813
|
+
},
|
|
1814
|
+
"description": "The key of the column, used to identify the data field.",
|
|
1815
|
+
"fieldName": "key"
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
"name": "type",
|
|
1819
|
+
"type": {
|
|
1820
|
+
"text": "'number' | 'string' | 'boolean' | undefined"
|
|
1821
|
+
},
|
|
1822
|
+
"default": "'string'",
|
|
1823
|
+
"description": "The data type of the column's values.",
|
|
1824
|
+
"fieldName": "type"
|
|
1825
|
+
},
|
|
1826
|
+
{
|
|
1827
|
+
"name": "headerText",
|
|
1828
|
+
"type": {
|
|
1829
|
+
"text": "string | undefined"
|
|
1830
|
+
},
|
|
1831
|
+
"description": "The header text of the column.",
|
|
1832
|
+
"fieldName": "headerText"
|
|
1833
|
+
},
|
|
1834
|
+
{
|
|
1835
|
+
"name": "width",
|
|
1836
|
+
"type": {
|
|
1837
|
+
"text": "string | undefined"
|
|
1838
|
+
},
|
|
1839
|
+
"description": "The width of the column.",
|
|
1840
|
+
"fieldName": "width"
|
|
1841
|
+
},
|
|
1842
|
+
{
|
|
1843
|
+
"name": "hidden",
|
|
1844
|
+
"type": {
|
|
1845
|
+
"text": "boolean"
|
|
1846
|
+
},
|
|
1847
|
+
"default": "false",
|
|
1848
|
+
"description": "Indicates whether the column is hidden.",
|
|
1849
|
+
"fieldName": "hidden"
|
|
1850
|
+
},
|
|
1851
|
+
{
|
|
1852
|
+
"name": "resizable",
|
|
1853
|
+
"type": {
|
|
1854
|
+
"text": "boolean"
|
|
1855
|
+
},
|
|
1856
|
+
"default": "false",
|
|
1857
|
+
"description": "Indicates whether the column is resizable.",
|
|
1858
|
+
"fieldName": "resizable"
|
|
1859
|
+
},
|
|
1860
|
+
{
|
|
1861
|
+
"name": "sortable",
|
|
1862
|
+
"type": {
|
|
1863
|
+
"text": "boolean"
|
|
1864
|
+
},
|
|
1865
|
+
"default": "false",
|
|
1866
|
+
"description": "Indicates whether the column is sortable.",
|
|
1867
|
+
"fieldName": "sortable"
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
"name": "sorting-case-sensitive",
|
|
1871
|
+
"type": {
|
|
1872
|
+
"text": "boolean"
|
|
1873
|
+
},
|
|
1874
|
+
"default": "false",
|
|
1875
|
+
"description": "Whether sort operations will be case sensitive.",
|
|
1876
|
+
"fieldName": "sortingCaseSensitive"
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
"name": "filterable",
|
|
1880
|
+
"type": {
|
|
1881
|
+
"text": "boolean"
|
|
1882
|
+
},
|
|
1883
|
+
"default": "false",
|
|
1884
|
+
"description": "Indicates whether the column is filterable.",
|
|
1885
|
+
"fieldName": "filterable"
|
|
1886
|
+
},
|
|
1887
|
+
{
|
|
1888
|
+
"name": "filtering-case-sensitive",
|
|
1889
|
+
"type": {
|
|
1890
|
+
"text": "boolean"
|
|
1891
|
+
},
|
|
1892
|
+
"default": "false",
|
|
1893
|
+
"description": "Whether filter operations will be case sensitive.",
|
|
1894
|
+
"fieldName": "filteringCaseSensitive"
|
|
1546
1895
|
}
|
|
1547
1896
|
],
|
|
1548
1897
|
"superclass": {
|
|
1549
1898
|
"name": "LitElement",
|
|
1550
1899
|
"package": "lit"
|
|
1551
1900
|
},
|
|
1901
|
+
"tagName": "igc-grid-lite-column",
|
|
1552
1902
|
"customElement": true
|
|
1553
1903
|
}
|
|
1554
1904
|
],
|
|
1555
1905
|
"exports": [
|
|
1556
1906
|
{
|
|
1557
1907
|
"kind": "js",
|
|
1558
|
-
"name": "
|
|
1908
|
+
"name": "IgcGridLiteColumn",
|
|
1559
1909
|
"declaration": {
|
|
1560
|
-
"name": "
|
|
1561
|
-
"module": "src/components/
|
|
1910
|
+
"name": "IgcGridLiteColumn",
|
|
1911
|
+
"module": "src/components/column.ts"
|
|
1562
1912
|
}
|
|
1563
1913
|
}
|
|
1564
1914
|
]
|
|
1565
1915
|
},
|
|
1566
1916
|
{
|
|
1567
1917
|
"kind": "javascript-module",
|
|
1568
|
-
"path": "src/components/
|
|
1918
|
+
"path": "src/components/filter-row.ts",
|
|
1569
1919
|
"declarations": [
|
|
1570
1920
|
{
|
|
1571
1921
|
"kind": "class",
|
|
1572
1922
|
"description": "",
|
|
1573
|
-
"name": "
|
|
1923
|
+
"name": "IgcFilterRow",
|
|
1574
1924
|
"members": [
|
|
1575
1925
|
{
|
|
1576
1926
|
"kind": "field",
|
|
@@ -1583,250 +1933,164 @@
|
|
|
1583
1933
|
"kind": "method",
|
|
1584
1934
|
"name": "register",
|
|
1585
1935
|
"privacy": "public",
|
|
1586
|
-
"static": true
|
|
1587
|
-
"return": {
|
|
1588
|
-
"type": {
|
|
1589
|
-
"text": "void"
|
|
1590
|
-
}
|
|
1591
|
-
}
|
|
1936
|
+
"static": true
|
|
1592
1937
|
},
|
|
1593
1938
|
{
|
|
1594
1939
|
"kind": "field",
|
|
1595
|
-
"name": "
|
|
1940
|
+
"name": "state",
|
|
1596
1941
|
"type": {
|
|
1597
|
-
"text": "
|
|
1942
|
+
"text": "StateController<T>"
|
|
1598
1943
|
},
|
|
1599
|
-
"privacy": "public",
|
|
1600
|
-
"default": "true"
|
|
1601
|
-
}
|
|
1602
|
-
],
|
|
1603
|
-
"superclass": {
|
|
1604
|
-
"name": "LitVirtualizer",
|
|
1605
|
-
"package": "@lit-labs/virtualizer/LitVirtualizer.js"
|
|
1606
|
-
}
|
|
1607
|
-
}
|
|
1608
|
-
],
|
|
1609
|
-
"exports": [
|
|
1610
|
-
{
|
|
1611
|
-
"kind": "js",
|
|
1612
|
-
"name": "default",
|
|
1613
|
-
"declaration": {
|
|
1614
|
-
"name": "IgcVirtualizer",
|
|
1615
|
-
"module": "src/components/virtualizer.ts"
|
|
1616
|
-
}
|
|
1617
|
-
}
|
|
1618
|
-
]
|
|
1619
|
-
},
|
|
1620
|
-
{
|
|
1621
|
-
"kind": "javascript-module",
|
|
1622
|
-
"path": "src/controllers/data-operation.ts",
|
|
1623
|
-
"declarations": [
|
|
1624
|
-
{
|
|
1625
|
-
"kind": "class",
|
|
1626
|
-
"description": "",
|
|
1627
|
-
"name": "DataOperationsController",
|
|
1628
|
-
"members": [
|
|
1629
|
-
{
|
|
1630
|
-
"kind": "field",
|
|
1631
|
-
"name": "sorting",
|
|
1632
|
-
"privacy": "protected",
|
|
1633
|
-
"default": "new SortDataOperation<T>()"
|
|
1634
|
-
},
|
|
1635
|
-
{
|
|
1636
|
-
"kind": "field",
|
|
1637
|
-
"name": "filtering",
|
|
1638
|
-
"privacy": "protected",
|
|
1639
|
-
"default": "new FilterDataOperation<T>()"
|
|
1640
|
-
},
|
|
1641
|
-
{
|
|
1642
|
-
"kind": "method",
|
|
1643
|
-
"name": "hostConnected",
|
|
1644
1944
|
"privacy": "public"
|
|
1645
1945
|
},
|
|
1646
1946
|
{
|
|
1647
1947
|
"kind": "field",
|
|
1648
|
-
"name": "
|
|
1948
|
+
"name": "isNumeric",
|
|
1649
1949
|
"privacy": "protected",
|
|
1650
1950
|
"readonly": true
|
|
1651
1951
|
},
|
|
1652
1952
|
{
|
|
1653
1953
|
"kind": "field",
|
|
1654
|
-
"name": "
|
|
1954
|
+
"name": "filterController",
|
|
1655
1955
|
"privacy": "protected",
|
|
1656
1956
|
"readonly": true
|
|
1657
1957
|
},
|
|
1658
1958
|
{
|
|
1659
1959
|
"kind": "field",
|
|
1660
|
-
"name": "
|
|
1960
|
+
"name": "condition",
|
|
1661
1961
|
"privacy": "protected",
|
|
1662
1962
|
"readonly": true
|
|
1663
1963
|
},
|
|
1664
1964
|
{
|
|
1665
1965
|
"kind": "field",
|
|
1666
|
-
"name": "
|
|
1667
|
-
"
|
|
1668
|
-
|
|
1966
|
+
"name": "active",
|
|
1967
|
+
"type": {
|
|
1968
|
+
"text": "boolean"
|
|
1969
|
+
},
|
|
1970
|
+
"privacy": "public",
|
|
1971
|
+
"default": "false"
|
|
1669
1972
|
},
|
|
1670
1973
|
{
|
|
1671
|
-
"kind": "
|
|
1672
|
-
"name": "
|
|
1673
|
-
"
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
"text": "T[]"
|
|
1679
|
-
}
|
|
1680
|
-
},
|
|
1681
|
-
{
|
|
1682
|
-
"name": "state",
|
|
1683
|
-
"type": {
|
|
1684
|
-
"text": "StateController<T>"
|
|
1685
|
-
}
|
|
1686
|
-
}
|
|
1687
|
-
]
|
|
1688
|
-
}
|
|
1689
|
-
]
|
|
1690
|
-
}
|
|
1691
|
-
],
|
|
1692
|
-
"exports": [
|
|
1693
|
-
{
|
|
1694
|
-
"kind": "js",
|
|
1695
|
-
"name": "DataOperationsController",
|
|
1696
|
-
"declaration": {
|
|
1697
|
-
"name": "DataOperationsController",
|
|
1698
|
-
"module": "src/controllers/data-operation.ts"
|
|
1699
|
-
}
|
|
1700
|
-
}
|
|
1701
|
-
]
|
|
1702
|
-
},
|
|
1703
|
-
{
|
|
1704
|
-
"kind": "javascript-module",
|
|
1705
|
-
"path": "src/controllers/dom.ts",
|
|
1706
|
-
"declarations": [
|
|
1707
|
-
{
|
|
1708
|
-
"kind": "class",
|
|
1709
|
-
"description": "",
|
|
1710
|
-
"name": "GridDOMController",
|
|
1711
|
-
"members": [
|
|
1974
|
+
"kind": "field",
|
|
1975
|
+
"name": "input",
|
|
1976
|
+
"type": {
|
|
1977
|
+
"text": "IgcInputComponent"
|
|
1978
|
+
},
|
|
1979
|
+
"privacy": "public"
|
|
1980
|
+
},
|
|
1712
1981
|
{
|
|
1713
1982
|
"kind": "field",
|
|
1714
|
-
"name": "
|
|
1715
|
-
"
|
|
1983
|
+
"name": "conditionElement",
|
|
1984
|
+
"type": {
|
|
1985
|
+
"text": "IgcIconComponent"
|
|
1986
|
+
},
|
|
1987
|
+
"privacy": "public"
|
|
1716
1988
|
},
|
|
1717
1989
|
{
|
|
1718
1990
|
"kind": "field",
|
|
1719
|
-
"name": "
|
|
1720
|
-
"
|
|
1721
|
-
|
|
1991
|
+
"name": "dropdown",
|
|
1992
|
+
"type": {
|
|
1993
|
+
"text": "IgcDropdownComponent"
|
|
1994
|
+
},
|
|
1995
|
+
"privacy": "public"
|
|
1722
1996
|
},
|
|
1723
1997
|
{
|
|
1724
1998
|
"kind": "field",
|
|
1725
|
-
"name": "
|
|
1999
|
+
"name": "column",
|
|
1726
2000
|
"type": {
|
|
1727
|
-
"text": "
|
|
2001
|
+
"text": "ColumnConfiguration<T>"
|
|
1728
2002
|
},
|
|
1729
2003
|
"privacy": "public",
|
|
1730
|
-
"default": "
|
|
2004
|
+
"default": "DEFAULT_COLUMN_CONFIG"
|
|
1731
2005
|
},
|
|
1732
2006
|
{
|
|
1733
2007
|
"kind": "field",
|
|
1734
|
-
"name": "
|
|
2008
|
+
"name": "expression",
|
|
1735
2009
|
"type": {
|
|
1736
|
-
"text": "
|
|
2010
|
+
"text": "FilterExpression<T>"
|
|
1737
2011
|
},
|
|
1738
2012
|
"privacy": "public"
|
|
1739
2013
|
},
|
|
1740
2014
|
{
|
|
1741
2015
|
"kind": "method",
|
|
1742
|
-
"name": "
|
|
1743
|
-
"privacy": "
|
|
2016
|
+
"name": "#setDefaultExpression",
|
|
2017
|
+
"privacy": "private"
|
|
1744
2018
|
},
|
|
1745
2019
|
{
|
|
1746
2020
|
"kind": "method",
|
|
1747
|
-
"name": "
|
|
1748
|
-
"privacy": "
|
|
1749
|
-
"
|
|
1750
|
-
|
|
1751
|
-
"
|
|
2021
|
+
"name": "#removeExpression",
|
|
2022
|
+
"privacy": "private",
|
|
2023
|
+
"parameters": [
|
|
2024
|
+
{
|
|
2025
|
+
"name": "expression",
|
|
2026
|
+
"type": {
|
|
2027
|
+
"text": "FilterExpression<T>"
|
|
2028
|
+
}
|
|
1752
2029
|
}
|
|
1753
|
-
|
|
2030
|
+
]
|
|
1754
2031
|
},
|
|
1755
2032
|
{
|
|
1756
2033
|
"kind": "method",
|
|
1757
|
-
"name": "
|
|
1758
|
-
"privacy": "
|
|
2034
|
+
"name": "#show",
|
|
2035
|
+
"privacy": "private"
|
|
1759
2036
|
},
|
|
1760
2037
|
{
|
|
1761
2038
|
"kind": "method",
|
|
1762
|
-
"name": "
|
|
1763
|
-
"privacy": "
|
|
2039
|
+
"name": "#handleConditionChanged",
|
|
2040
|
+
"privacy": "private",
|
|
2041
|
+
"parameters": [
|
|
2042
|
+
{
|
|
2043
|
+
"name": "event",
|
|
2044
|
+
"type": {
|
|
2045
|
+
"text": "CustomEvent<IgcDropdownItemComponent>"
|
|
2046
|
+
}
|
|
2047
|
+
}
|
|
2048
|
+
]
|
|
1764
2049
|
},
|
|
1765
2050
|
{
|
|
1766
2051
|
"kind": "method",
|
|
1767
|
-
"name": "
|
|
1768
|
-
"privacy": "
|
|
1769
|
-
"
|
|
1770
|
-
|
|
1771
|
-
"
|
|
2052
|
+
"name": "#handleInput",
|
|
2053
|
+
"privacy": "private",
|
|
2054
|
+
"parameters": [
|
|
2055
|
+
{
|
|
2056
|
+
"name": "event",
|
|
2057
|
+
"type": {
|
|
2058
|
+
"text": "CustomEvent<string>"
|
|
2059
|
+
}
|
|
1772
2060
|
}
|
|
1773
|
-
|
|
2061
|
+
]
|
|
2062
|
+
},
|
|
2063
|
+
{
|
|
2064
|
+
"kind": "method",
|
|
2065
|
+
"name": "#handleKeydown",
|
|
2066
|
+
"privacy": "private",
|
|
1774
2067
|
"parameters": [
|
|
1775
2068
|
{
|
|
1776
|
-
"name": "
|
|
2069
|
+
"name": "event",
|
|
1777
2070
|
"type": {
|
|
1778
|
-
"text": "
|
|
2071
|
+
"text": "KeyboardEvent"
|
|
1779
2072
|
}
|
|
1780
2073
|
}
|
|
1781
2074
|
]
|
|
1782
|
-
}
|
|
1783
|
-
]
|
|
1784
|
-
}
|
|
1785
|
-
],
|
|
1786
|
-
"exports": [
|
|
1787
|
-
{
|
|
1788
|
-
"kind": "js",
|
|
1789
|
-
"name": "GridDOMController",
|
|
1790
|
-
"declaration": {
|
|
1791
|
-
"name": "GridDOMController",
|
|
1792
|
-
"module": "src/controllers/dom.ts"
|
|
1793
|
-
}
|
|
1794
|
-
}
|
|
1795
|
-
]
|
|
1796
|
-
},
|
|
1797
|
-
{
|
|
1798
|
-
"kind": "javascript-module",
|
|
1799
|
-
"path": "src/controllers/filter.ts",
|
|
1800
|
-
"declarations": [
|
|
1801
|
-
{
|
|
1802
|
-
"kind": "class",
|
|
1803
|
-
"description": "",
|
|
1804
|
-
"name": "FilterController",
|
|
1805
|
-
"members": [
|
|
2075
|
+
},
|
|
1806
2076
|
{
|
|
1807
|
-
"kind": "
|
|
1808
|
-
"name": "
|
|
1809
|
-
"
|
|
1810
|
-
"text": "FilterState<T>"
|
|
1811
|
-
},
|
|
1812
|
-
"privacy": "public",
|
|
1813
|
-
"default": "new FilterState()"
|
|
2077
|
+
"kind": "method",
|
|
2078
|
+
"name": "#handleResetClick",
|
|
2079
|
+
"privacy": "private"
|
|
1814
2080
|
},
|
|
1815
2081
|
{
|
|
1816
|
-
"kind": "
|
|
1817
|
-
"name": "
|
|
1818
|
-
"privacy": "
|
|
1819
|
-
"readonly": true
|
|
2082
|
+
"kind": "method",
|
|
2083
|
+
"name": "#openDropdownList",
|
|
2084
|
+
"privacy": "private"
|
|
1820
2085
|
},
|
|
1821
2086
|
{
|
|
1822
|
-
"kind": "
|
|
1823
|
-
"name": "
|
|
1824
|
-
"privacy": "
|
|
1825
|
-
"readonly": true
|
|
2087
|
+
"kind": "method",
|
|
2088
|
+
"name": "activeChanged",
|
|
2089
|
+
"privacy": "protected"
|
|
1826
2090
|
},
|
|
1827
2091
|
{
|
|
1828
2092
|
"kind": "method",
|
|
1829
|
-
"name": "#
|
|
2093
|
+
"name": "#chipCriteriaFor",
|
|
1830
2094
|
"privacy": "private",
|
|
1831
2095
|
"parameters": [
|
|
1832
2096
|
{
|
|
@@ -1834,787 +2098,1101 @@
|
|
|
1834
2098
|
"type": {
|
|
1835
2099
|
"text": "FilterExpression<T>"
|
|
1836
2100
|
}
|
|
1837
|
-
},
|
|
1838
|
-
{
|
|
1839
|
-
"name": "type",
|
|
1840
|
-
"type": {
|
|
1841
|
-
"text": "'add' | 'modify' | 'remove'"
|
|
1842
|
-
}
|
|
1843
2101
|
}
|
|
1844
2102
|
]
|
|
1845
2103
|
},
|
|
1846
2104
|
{
|
|
1847
2105
|
"kind": "method",
|
|
1848
|
-
"name": "#
|
|
2106
|
+
"name": "#chipSelectFor",
|
|
1849
2107
|
"privacy": "private",
|
|
1850
2108
|
"parameters": [
|
|
1851
2109
|
{
|
|
1852
|
-
"name": "
|
|
1853
|
-
"optional": true,
|
|
2110
|
+
"name": "expression",
|
|
1854
2111
|
"type": {
|
|
1855
|
-
"text": "
|
|
2112
|
+
"text": "FilterExpression<T>"
|
|
1856
2113
|
}
|
|
1857
2114
|
}
|
|
1858
2115
|
]
|
|
1859
2116
|
},
|
|
1860
2117
|
{
|
|
1861
2118
|
"kind": "method",
|
|
1862
|
-
"name": "#
|
|
2119
|
+
"name": "#chipRemoveFor",
|
|
1863
2120
|
"privacy": "private",
|
|
1864
2121
|
"parameters": [
|
|
1865
2122
|
{
|
|
1866
2123
|
"name": "expression",
|
|
1867
2124
|
"type": {
|
|
1868
|
-
"text": "FilterExpression<T>
|
|
2125
|
+
"text": "FilterExpression<T>"
|
|
1869
2126
|
}
|
|
1870
2127
|
}
|
|
1871
2128
|
]
|
|
1872
2129
|
},
|
|
1873
2130
|
{
|
|
1874
2131
|
"kind": "method",
|
|
1875
|
-
"name": "
|
|
1876
|
-
"privacy": "
|
|
1877
|
-
},
|
|
1878
|
-
{
|
|
1879
|
-
"kind": "method",
|
|
1880
|
-
"name": "hostUpdate",
|
|
1881
|
-
"privacy": "public",
|
|
1882
|
-
"return": {
|
|
1883
|
-
"type": {
|
|
1884
|
-
"text": "void"
|
|
1885
|
-
}
|
|
1886
|
-
}
|
|
1887
|
-
},
|
|
1888
|
-
{
|
|
1889
|
-
"kind": "method",
|
|
1890
|
-
"name": "get",
|
|
1891
|
-
"privacy": "public",
|
|
2132
|
+
"name": "renderCriteriaButton",
|
|
2133
|
+
"privacy": "protected",
|
|
1892
2134
|
"parameters": [
|
|
1893
2135
|
{
|
|
1894
|
-
"name": "
|
|
2136
|
+
"name": "expr",
|
|
1895
2137
|
"type": {
|
|
1896
|
-
"text": "
|
|
2138
|
+
"text": "FilterExpression<T>"
|
|
1897
2139
|
}
|
|
1898
|
-
}
|
|
1899
|
-
]
|
|
1900
|
-
},
|
|
1901
|
-
{
|
|
1902
|
-
"kind": "method",
|
|
1903
|
-
"name": "reset",
|
|
1904
|
-
"privacy": "public",
|
|
1905
|
-
"parameters": [
|
|
2140
|
+
},
|
|
1906
2141
|
{
|
|
1907
|
-
"name": "
|
|
1908
|
-
"optional": true,
|
|
2142
|
+
"name": "index",
|
|
1909
2143
|
"type": {
|
|
1910
|
-
"text": "
|
|
2144
|
+
"text": "number"
|
|
1911
2145
|
}
|
|
1912
2146
|
}
|
|
1913
2147
|
]
|
|
1914
2148
|
},
|
|
1915
2149
|
{
|
|
1916
2150
|
"kind": "method",
|
|
1917
|
-
"name": "
|
|
1918
|
-
"privacy": "
|
|
2151
|
+
"name": "renderExpressionChip",
|
|
2152
|
+
"privacy": "protected",
|
|
1919
2153
|
"parameters": [
|
|
1920
2154
|
{
|
|
1921
|
-
"name": "
|
|
1922
|
-
"optional": true,
|
|
2155
|
+
"name": "props",
|
|
1923
2156
|
"type": {
|
|
1924
|
-
"text": "
|
|
2157
|
+
"text": "ExpressionChipProps<T>"
|
|
1925
2158
|
}
|
|
1926
2159
|
}
|
|
1927
2160
|
]
|
|
1928
2161
|
},
|
|
1929
2162
|
{
|
|
1930
2163
|
"kind": "method",
|
|
1931
|
-
"name": "
|
|
1932
|
-
"privacy": "
|
|
1933
|
-
"parameters": [
|
|
1934
|
-
{
|
|
1935
|
-
"name": "column",
|
|
1936
|
-
"type": {
|
|
1937
|
-
"text": "ColumnConfiguration<T>"
|
|
1938
|
-
}
|
|
1939
|
-
}
|
|
1940
|
-
]
|
|
2164
|
+
"name": "renderActiveChips",
|
|
2165
|
+
"privacy": "protected"
|
|
1941
2166
|
},
|
|
1942
2167
|
{
|
|
1943
2168
|
"kind": "method",
|
|
1944
|
-
"name": "
|
|
1945
|
-
"privacy": "
|
|
1946
|
-
"parameters": [
|
|
1947
|
-
{
|
|
1948
|
-
"name": "key",
|
|
1949
|
-
"type": {
|
|
1950
|
-
"text": "Keys<T>"
|
|
1951
|
-
}
|
|
1952
|
-
}
|
|
1953
|
-
]
|
|
2169
|
+
"name": "renderFilterActions",
|
|
2170
|
+
"privacy": "protected"
|
|
1954
2171
|
},
|
|
1955
2172
|
{
|
|
1956
2173
|
"kind": "method",
|
|
1957
|
-
"name": "
|
|
1958
|
-
"privacy": "
|
|
1959
|
-
"parameters": [
|
|
1960
|
-
{
|
|
1961
|
-
"name": "expression",
|
|
1962
|
-
"type": {
|
|
1963
|
-
"text": "FilterExpression<T>"
|
|
1964
|
-
}
|
|
1965
|
-
}
|
|
1966
|
-
]
|
|
2174
|
+
"name": "renderDropdown",
|
|
2175
|
+
"privacy": "protected"
|
|
1967
2176
|
},
|
|
1968
2177
|
{
|
|
1969
2178
|
"kind": "method",
|
|
1970
|
-
"name": "
|
|
1971
|
-
"privacy": "
|
|
2179
|
+
"name": "renderDropdownTarget",
|
|
2180
|
+
"privacy": "protected"
|
|
2181
|
+
},
|
|
2182
|
+
{
|
|
2183
|
+
"kind": "method",
|
|
2184
|
+
"name": "renderInputArea",
|
|
2185
|
+
"privacy": "protected"
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
"kind": "method",
|
|
2189
|
+
"name": "renderActiveState",
|
|
2190
|
+
"privacy": "protected"
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
"kind": "method",
|
|
2194
|
+
"name": "renderInactiveChips",
|
|
2195
|
+
"privacy": "protected",
|
|
1972
2196
|
"parameters": [
|
|
1973
2197
|
{
|
|
1974
|
-
"name": "
|
|
2198
|
+
"name": "column",
|
|
1975
2199
|
"type": {
|
|
1976
|
-
"text": "
|
|
2200
|
+
"text": "ColumnConfiguration<T>"
|
|
1977
2201
|
}
|
|
1978
2202
|
},
|
|
1979
2203
|
{
|
|
1980
|
-
"name": "
|
|
2204
|
+
"name": "state",
|
|
1981
2205
|
"type": {
|
|
1982
|
-
"text": "
|
|
2206
|
+
"text": "FilterExpressionTree<T>"
|
|
1983
2207
|
}
|
|
1984
2208
|
}
|
|
1985
2209
|
]
|
|
1986
2210
|
},
|
|
1987
2211
|
{
|
|
1988
2212
|
"kind": "method",
|
|
1989
|
-
"name": "
|
|
1990
|
-
"privacy": "
|
|
2213
|
+
"name": "renderFilterState",
|
|
2214
|
+
"privacy": "protected",
|
|
1991
2215
|
"parameters": [
|
|
1992
2216
|
{
|
|
1993
|
-
"name": "
|
|
2217
|
+
"name": "column",
|
|
1994
2218
|
"type": {
|
|
1995
|
-
"text": "
|
|
2219
|
+
"text": "ColumnConfiguration<T>"
|
|
1996
2220
|
}
|
|
1997
2221
|
}
|
|
1998
2222
|
]
|
|
2223
|
+
},
|
|
2224
|
+
{
|
|
2225
|
+
"kind": "method",
|
|
2226
|
+
"name": "renderInactiveState",
|
|
2227
|
+
"privacy": "protected"
|
|
1999
2228
|
}
|
|
2000
|
-
]
|
|
2229
|
+
],
|
|
2230
|
+
"superclass": {
|
|
2231
|
+
"name": "LitElement",
|
|
2232
|
+
"package": "lit"
|
|
2233
|
+
},
|
|
2234
|
+
"customElement": true
|
|
2001
2235
|
}
|
|
2002
2236
|
],
|
|
2003
2237
|
"exports": [
|
|
2004
2238
|
{
|
|
2005
2239
|
"kind": "js",
|
|
2006
|
-
"name": "
|
|
2240
|
+
"name": "default",
|
|
2007
2241
|
"declaration": {
|
|
2008
|
-
"name": "
|
|
2009
|
-
"module": "src/
|
|
2242
|
+
"name": "IgcFilterRow",
|
|
2243
|
+
"module": "src/components/filter-row.ts"
|
|
2010
2244
|
}
|
|
2011
2245
|
}
|
|
2012
2246
|
]
|
|
2013
2247
|
},
|
|
2014
2248
|
{
|
|
2015
2249
|
"kind": "javascript-module",
|
|
2016
|
-
"path": "src/
|
|
2250
|
+
"path": "src/components/grid.ts",
|
|
2017
2251
|
"declarations": [
|
|
2018
2252
|
{
|
|
2019
2253
|
"kind": "class",
|
|
2020
|
-
"description": "",
|
|
2021
|
-
"name": "
|
|
2254
|
+
"description": "IgcGridLite is a web component for displaying data in a tabular format quick and easy.\n\nOut of the box it provides row virtualization, sort and filter operations (client and server side),\nthe ability to template cells and headers and column hiding.",
|
|
2255
|
+
"name": "IgcGridLite",
|
|
2022
2256
|
"members": [
|
|
2023
2257
|
{
|
|
2024
2258
|
"kind": "field",
|
|
2025
|
-
"name": "
|
|
2026
|
-
"privacy": "
|
|
2027
|
-
"
|
|
2259
|
+
"name": "tagName",
|
|
2260
|
+
"privacy": "public",
|
|
2261
|
+
"static": true,
|
|
2262
|
+
"readonly": true
|
|
2263
|
+
},
|
|
2264
|
+
{
|
|
2265
|
+
"kind": "method",
|
|
2266
|
+
"name": "register",
|
|
2267
|
+
"privacy": "public",
|
|
2268
|
+
"static": true,
|
|
2269
|
+
"return": {
|
|
2270
|
+
"type": {
|
|
2271
|
+
"text": "void"
|
|
2272
|
+
}
|
|
2273
|
+
}
|
|
2028
2274
|
},
|
|
2029
2275
|
{
|
|
2030
2276
|
"kind": "field",
|
|
2031
|
-
"name": "
|
|
2277
|
+
"name": "_stateController",
|
|
2032
2278
|
"privacy": "protected",
|
|
2033
2279
|
"readonly": true
|
|
2034
2280
|
},
|
|
2035
2281
|
{
|
|
2036
2282
|
"kind": "field",
|
|
2037
|
-
"name": "
|
|
2283
|
+
"name": "_domController",
|
|
2038
2284
|
"privacy": "protected",
|
|
2039
|
-
"
|
|
2285
|
+
"readonly": true
|
|
2040
2286
|
},
|
|
2041
2287
|
{
|
|
2042
2288
|
"kind": "field",
|
|
2043
|
-
"name": "
|
|
2289
|
+
"name": "_dataController",
|
|
2044
2290
|
"privacy": "protected",
|
|
2045
|
-
"
|
|
2291
|
+
"readonly": true
|
|
2046
2292
|
},
|
|
2047
2293
|
{
|
|
2048
2294
|
"kind": "field",
|
|
2049
|
-
"name": "
|
|
2295
|
+
"name": "_stateProvider",
|
|
2050
2296
|
"privacy": "protected",
|
|
2051
|
-
"readonly": true
|
|
2297
|
+
"readonly": true,
|
|
2298
|
+
"default": "new ContextProvider(this, { context: GRID_STATE_CONTEXT, initialValue: this._stateController, })"
|
|
2052
2299
|
},
|
|
2053
2300
|
{
|
|
2054
2301
|
"kind": "field",
|
|
2055
|
-
"name": "
|
|
2302
|
+
"name": "_columnUpdateProvider",
|
|
2056
2303
|
"privacy": "protected",
|
|
2057
|
-
"readonly": true
|
|
2304
|
+
"readonly": true,
|
|
2305
|
+
"default": "new ContextProvider(this, { context: COLUMN_UPDATE_CONTEXT, initialValue: ((config: ColumnConfiguration<T>) => { this._updateConfiguration(config); }) as any, })"
|
|
2058
2306
|
},
|
|
2059
2307
|
{
|
|
2060
2308
|
"kind": "field",
|
|
2061
|
-
"name": "
|
|
2062
|
-
"
|
|
2063
|
-
|
|
2309
|
+
"name": "_initialSortExpressions",
|
|
2310
|
+
"type": {
|
|
2311
|
+
"text": "SortingExpression<T>[]"
|
|
2312
|
+
},
|
|
2313
|
+
"privacy": "private",
|
|
2314
|
+
"default": "[]"
|
|
2064
2315
|
},
|
|
2065
2316
|
{
|
|
2066
|
-
"kind": "
|
|
2067
|
-
"name": "
|
|
2068
|
-
"
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
"text": "Keys<T>"
|
|
2074
|
-
}
|
|
2075
|
-
}
|
|
2076
|
-
]
|
|
2317
|
+
"kind": "field",
|
|
2318
|
+
"name": "_initialFilterExpressions",
|
|
2319
|
+
"type": {
|
|
2320
|
+
"text": "FilterExpression<T>[]"
|
|
2321
|
+
},
|
|
2322
|
+
"privacy": "private",
|
|
2323
|
+
"default": "[]"
|
|
2077
2324
|
},
|
|
2078
2325
|
{
|
|
2079
2326
|
"kind": "method",
|
|
2080
|
-
"name": "
|
|
2081
|
-
"privacy": "
|
|
2082
|
-
"
|
|
2083
|
-
{
|
|
2084
|
-
"
|
|
2085
|
-
"type": {
|
|
2086
|
-
"text": "Keys<T>"
|
|
2087
|
-
}
|
|
2327
|
+
"name": "_updateObservers",
|
|
2328
|
+
"privacy": "private",
|
|
2329
|
+
"return": {
|
|
2330
|
+
"type": {
|
|
2331
|
+
"text": "void"
|
|
2088
2332
|
}
|
|
2089
|
-
|
|
2333
|
+
}
|
|
2090
2334
|
},
|
|
2091
2335
|
{
|
|
2092
2336
|
"kind": "method",
|
|
2093
|
-
"name": "
|
|
2094
|
-
"privacy": "
|
|
2337
|
+
"name": "_updateConfiguration",
|
|
2338
|
+
"privacy": "private",
|
|
2339
|
+
"return": {
|
|
2340
|
+
"type": {
|
|
2341
|
+
"text": "void"
|
|
2342
|
+
}
|
|
2343
|
+
},
|
|
2095
2344
|
"parameters": [
|
|
2096
2345
|
{
|
|
2097
|
-
"name": "
|
|
2346
|
+
"name": "config",
|
|
2098
2347
|
"type": {
|
|
2099
|
-
"text": "
|
|
2348
|
+
"text": "ColumnConfiguration<T>"
|
|
2100
2349
|
}
|
|
2101
2350
|
}
|
|
2102
2351
|
]
|
|
2103
2352
|
},
|
|
2104
2353
|
{
|
|
2105
2354
|
"kind": "field",
|
|
2106
|
-
"name": "
|
|
2107
|
-
"
|
|
2355
|
+
"name": "_dataState",
|
|
2356
|
+
"type": {
|
|
2357
|
+
"text": "T[]"
|
|
2358
|
+
},
|
|
2359
|
+
"privacy": "protected",
|
|
2360
|
+
"default": "[]"
|
|
2108
2361
|
},
|
|
2109
2362
|
{
|
|
2110
|
-
"kind": "
|
|
2111
|
-
"name": "
|
|
2112
|
-
"
|
|
2363
|
+
"kind": "field",
|
|
2364
|
+
"name": "data",
|
|
2365
|
+
"type": {
|
|
2366
|
+
"text": "T[]"
|
|
2367
|
+
},
|
|
2368
|
+
"privacy": "public",
|
|
2369
|
+
"default": "[]",
|
|
2370
|
+
"description": "The data source for the grid."
|
|
2113
2371
|
},
|
|
2114
2372
|
{
|
|
2115
|
-
"kind": "
|
|
2116
|
-
"name": "
|
|
2117
|
-
"
|
|
2373
|
+
"kind": "field",
|
|
2374
|
+
"name": "autoGenerate",
|
|
2375
|
+
"type": {
|
|
2376
|
+
"text": "boolean"
|
|
2377
|
+
},
|
|
2378
|
+
"privacy": "public",
|
|
2379
|
+
"default": "false",
|
|
2380
|
+
"description": "Whether the grid will try to \"resolve\" its column configuration based on the passed\ndata source.",
|
|
2381
|
+
"attribute": "auto-generate"
|
|
2118
2382
|
},
|
|
2119
2383
|
{
|
|
2120
|
-
"kind": "
|
|
2121
|
-
"name": "
|
|
2122
|
-
"
|
|
2384
|
+
"kind": "field",
|
|
2385
|
+
"name": "sortingOptions",
|
|
2386
|
+
"type": {
|
|
2387
|
+
"text": "GridLiteSortingOptions"
|
|
2388
|
+
},
|
|
2389
|
+
"privacy": "public",
|
|
2390
|
+
"default": "{ mode: 'multiple', }",
|
|
2391
|
+
"description": "Sort configuration property for the grid."
|
|
2123
2392
|
},
|
|
2124
2393
|
{
|
|
2125
|
-
"kind": "
|
|
2126
|
-
"name": "
|
|
2127
|
-
"
|
|
2394
|
+
"kind": "field",
|
|
2395
|
+
"name": "dataPipelineConfiguration",
|
|
2396
|
+
"type": {
|
|
2397
|
+
"text": "DataPipelineConfiguration<T>"
|
|
2398
|
+
},
|
|
2399
|
+
"privacy": "public",
|
|
2400
|
+
"description": "Configuration object which controls remote data operations for the grid."
|
|
2128
2401
|
},
|
|
2129
2402
|
{
|
|
2130
|
-
"kind": "
|
|
2131
|
-
"name": "
|
|
2132
|
-
"privacy": "
|
|
2403
|
+
"kind": "field",
|
|
2404
|
+
"name": "sortingExpressions",
|
|
2405
|
+
"privacy": "public",
|
|
2406
|
+
"description": "Get the sort state for the grid.",
|
|
2407
|
+
"type": {
|
|
2408
|
+
"text": "SortingExpression<T>[]"
|
|
2409
|
+
}
|
|
2410
|
+
},
|
|
2411
|
+
{
|
|
2412
|
+
"kind": "field",
|
|
2413
|
+
"name": "filterExpressions",
|
|
2414
|
+
"privacy": "public",
|
|
2415
|
+
"description": "Get the filter state for the grid.",
|
|
2416
|
+
"type": {
|
|
2417
|
+
"text": "FilterExpression<T>[]"
|
|
2418
|
+
}
|
|
2419
|
+
},
|
|
2420
|
+
{
|
|
2421
|
+
"kind": "field",
|
|
2422
|
+
"name": "columns",
|
|
2423
|
+
"type": {
|
|
2424
|
+
"text": "ColumnConfiguration<T>[]"
|
|
2425
|
+
},
|
|
2426
|
+
"privacy": "public",
|
|
2427
|
+
"readonly": true
|
|
2428
|
+
},
|
|
2429
|
+
{
|
|
2430
|
+
"kind": "field",
|
|
2431
|
+
"name": "rows",
|
|
2432
|
+
"privacy": "public",
|
|
2433
|
+
"description": "Returns the collection of rendered row elements in the grid.",
|
|
2434
|
+
"readonly": true
|
|
2435
|
+
},
|
|
2436
|
+
{
|
|
2437
|
+
"kind": "field",
|
|
2438
|
+
"name": "dataView",
|
|
2439
|
+
"type": {
|
|
2440
|
+
"text": "ReadonlyArray<T>"
|
|
2441
|
+
},
|
|
2442
|
+
"privacy": "public",
|
|
2443
|
+
"description": "Returns the state of the data source after sort/filter operations\nhave been applied.",
|
|
2444
|
+
"readonly": true
|
|
2445
|
+
},
|
|
2446
|
+
{
|
|
2447
|
+
"kind": "field",
|
|
2448
|
+
"name": "totalItems",
|
|
2449
|
+
"type": {
|
|
2450
|
+
"text": "number"
|
|
2451
|
+
},
|
|
2452
|
+
"privacy": "public",
|
|
2453
|
+
"description": "The total number of items in the IgcGridLite.dataView collection.",
|
|
2454
|
+
"readonly": true
|
|
2133
2455
|
},
|
|
2134
2456
|
{
|
|
2135
2457
|
"kind": "method",
|
|
2136
|
-
"name": "
|
|
2458
|
+
"name": "dataChanged",
|
|
2137
2459
|
"privacy": "protected"
|
|
2138
2460
|
},
|
|
2139
2461
|
{
|
|
2140
2462
|
"kind": "method",
|
|
2141
|
-
"name": "
|
|
2142
|
-
"privacy": "
|
|
2463
|
+
"name": "pipeline",
|
|
2464
|
+
"privacy": "protected"
|
|
2143
2465
|
},
|
|
2144
2466
|
{
|
|
2145
2467
|
"kind": "method",
|
|
2146
|
-
"name": "
|
|
2147
|
-
"privacy": "
|
|
2468
|
+
"name": "_hasAssignedColumns",
|
|
2469
|
+
"privacy": "private",
|
|
2470
|
+
"return": {
|
|
2471
|
+
"type": {
|
|
2472
|
+
"text": "boolean"
|
|
2473
|
+
}
|
|
2474
|
+
}
|
|
2148
2475
|
},
|
|
2149
2476
|
{
|
|
2150
2477
|
"kind": "method",
|
|
2151
|
-
"name": "
|
|
2152
|
-
"privacy": "
|
|
2478
|
+
"name": "_handleSlotChange",
|
|
2479
|
+
"privacy": "private",
|
|
2480
|
+
"return": {
|
|
2481
|
+
"type": {
|
|
2482
|
+
"text": "void"
|
|
2483
|
+
}
|
|
2484
|
+
},
|
|
2153
2485
|
"parameters": [
|
|
2154
2486
|
{
|
|
2155
2487
|
"name": "event",
|
|
2156
2488
|
"type": {
|
|
2157
|
-
"text": "
|
|
2489
|
+
"text": "Event"
|
|
2158
2490
|
}
|
|
2159
2491
|
}
|
|
2160
2492
|
]
|
|
2161
|
-
}
|
|
2162
|
-
]
|
|
2163
|
-
}
|
|
2164
|
-
],
|
|
2165
|
-
"exports": [
|
|
2166
|
-
{
|
|
2167
|
-
"kind": "js",
|
|
2168
|
-
"name": "NavigationController",
|
|
2169
|
-
"declaration": {
|
|
2170
|
-
"name": "NavigationController",
|
|
2171
|
-
"module": "src/controllers/navigation.ts"
|
|
2172
|
-
}
|
|
2173
|
-
}
|
|
2174
|
-
]
|
|
2175
|
-
},
|
|
2176
|
-
{
|
|
2177
|
-
"kind": "javascript-module",
|
|
2178
|
-
"path": "src/controllers/resize.ts",
|
|
2179
|
-
"declarations": [
|
|
2180
|
-
{
|
|
2181
|
-
"kind": "class",
|
|
2182
|
-
"description": "",
|
|
2183
|
-
"name": "ResizeController",
|
|
2184
|
-
"members": [
|
|
2493
|
+
},
|
|
2185
2494
|
{
|
|
2186
|
-
"kind": "
|
|
2187
|
-
"name": "
|
|
2188
|
-
"type": {
|
|
2189
|
-
"text": "boolean"
|
|
2190
|
-
},
|
|
2495
|
+
"kind": "method",
|
|
2496
|
+
"name": "filter",
|
|
2191
2497
|
"privacy": "public",
|
|
2192
|
-
"
|
|
2498
|
+
"return": {
|
|
2499
|
+
"type": {
|
|
2500
|
+
"text": "void"
|
|
2501
|
+
}
|
|
2502
|
+
},
|
|
2503
|
+
"parameters": [
|
|
2504
|
+
{
|
|
2505
|
+
"name": "config",
|
|
2506
|
+
"type": {
|
|
2507
|
+
"text": "FilterExpression<T> | FilterExpression<T>[]"
|
|
2508
|
+
}
|
|
2509
|
+
}
|
|
2510
|
+
],
|
|
2511
|
+
"description": "Performs a filter operation in the grid based on the passed expression(s)."
|
|
2193
2512
|
},
|
|
2194
2513
|
{
|
|
2195
|
-
"kind": "
|
|
2196
|
-
"name": "
|
|
2197
|
-
"type": {
|
|
2198
|
-
"text": "number"
|
|
2199
|
-
},
|
|
2514
|
+
"kind": "method",
|
|
2515
|
+
"name": "sort",
|
|
2200
2516
|
"privacy": "public",
|
|
2201
|
-
"
|
|
2517
|
+
"parameters": [
|
|
2518
|
+
{
|
|
2519
|
+
"name": "expressions",
|
|
2520
|
+
"type": {
|
|
2521
|
+
"text": "SortingExpression<T> | SortingExpression<T>[]"
|
|
2522
|
+
}
|
|
2523
|
+
}
|
|
2524
|
+
],
|
|
2525
|
+
"description": "Performs a sort operation in the grid based on the passed expression(s)."
|
|
2202
2526
|
},
|
|
2203
2527
|
{
|
|
2204
2528
|
"kind": "method",
|
|
2205
|
-
"name": "
|
|
2206
|
-
"privacy": "
|
|
2529
|
+
"name": "clearSort",
|
|
2530
|
+
"privacy": "public",
|
|
2531
|
+
"return": {
|
|
2532
|
+
"type": {
|
|
2533
|
+
"text": "void"
|
|
2534
|
+
}
|
|
2535
|
+
},
|
|
2207
2536
|
"parameters": [
|
|
2208
2537
|
{
|
|
2209
2538
|
"name": "key",
|
|
2539
|
+
"optional": true,
|
|
2210
2540
|
"type": {
|
|
2211
2541
|
"text": "Keys<T>"
|
|
2212
2542
|
}
|
|
2213
|
-
}
|
|
2543
|
+
}
|
|
2544
|
+
],
|
|
2545
|
+
"description": "Resets the current sort state of the control."
|
|
2546
|
+
},
|
|
2547
|
+
{
|
|
2548
|
+
"kind": "method",
|
|
2549
|
+
"name": "clearFilter",
|
|
2550
|
+
"privacy": "public",
|
|
2551
|
+
"return": {
|
|
2552
|
+
"type": {
|
|
2553
|
+
"text": "void"
|
|
2554
|
+
}
|
|
2555
|
+
},
|
|
2556
|
+
"parameters": [
|
|
2214
2557
|
{
|
|
2215
|
-
"name": "
|
|
2558
|
+
"name": "key",
|
|
2559
|
+
"optional": true,
|
|
2216
2560
|
"type": {
|
|
2217
|
-
"text": "
|
|
2561
|
+
"text": "Keys<T>"
|
|
2218
2562
|
}
|
|
2219
2563
|
}
|
|
2220
|
-
]
|
|
2564
|
+
],
|
|
2565
|
+
"description": "Resets the current filter state of the control."
|
|
2221
2566
|
},
|
|
2222
2567
|
{
|
|
2223
2568
|
"kind": "method",
|
|
2224
|
-
"name": "
|
|
2569
|
+
"name": "getColumn",
|
|
2225
2570
|
"privacy": "public",
|
|
2571
|
+
"return": {
|
|
2572
|
+
"type": {
|
|
2573
|
+
"text": "ColumnConfiguration<T> | undefined"
|
|
2574
|
+
}
|
|
2575
|
+
},
|
|
2226
2576
|
"parameters": [
|
|
2227
2577
|
{
|
|
2228
|
-
"name": "
|
|
2578
|
+
"name": "id",
|
|
2229
2579
|
"type": {
|
|
2230
|
-
"text": "
|
|
2231
|
-
}
|
|
2232
|
-
"description": "the"
|
|
2580
|
+
"text": "Keys<T> | number"
|
|
2581
|
+
}
|
|
2233
2582
|
}
|
|
2234
2583
|
],
|
|
2235
|
-
"description": "
|
|
2584
|
+
"description": "Returns a ColumnConfiguration for a given column."
|
|
2236
2585
|
},
|
|
2237
2586
|
{
|
|
2238
2587
|
"kind": "method",
|
|
2239
|
-
"name": "
|
|
2588
|
+
"name": "updateColumns",
|
|
2240
2589
|
"privacy": "public",
|
|
2241
|
-
"
|
|
2590
|
+
"return": {
|
|
2591
|
+
"type": {
|
|
2592
|
+
"text": "void"
|
|
2593
|
+
}
|
|
2594
|
+
},
|
|
2595
|
+
"parameters": [
|
|
2596
|
+
{
|
|
2597
|
+
"name": "columns",
|
|
2598
|
+
"type": {
|
|
2599
|
+
"text": "ColumnConfiguration<T> | ColumnConfiguration<T>[]"
|
|
2600
|
+
}
|
|
2601
|
+
}
|
|
2602
|
+
],
|
|
2603
|
+
"description": "Updates the column configuration of the grid."
|
|
2242
2604
|
},
|
|
2243
2605
|
{
|
|
2244
2606
|
"kind": "method",
|
|
2245
|
-
"name": "
|
|
2607
|
+
"name": "_bodyClickHandler",
|
|
2608
|
+
"privacy": "protected",
|
|
2609
|
+
"return": {
|
|
2610
|
+
"type": {
|
|
2611
|
+
"text": "void"
|
|
2612
|
+
}
|
|
2613
|
+
},
|
|
2614
|
+
"parameters": [
|
|
2615
|
+
{
|
|
2616
|
+
"name": "event",
|
|
2617
|
+
"type": {
|
|
2618
|
+
"text": "PointerEvent"
|
|
2619
|
+
}
|
|
2620
|
+
}
|
|
2621
|
+
]
|
|
2622
|
+
},
|
|
2623
|
+
{
|
|
2624
|
+
"kind": "method",
|
|
2625
|
+
"name": "_bodyKeydownHandler",
|
|
2626
|
+
"privacy": "protected",
|
|
2627
|
+
"return": {
|
|
2628
|
+
"type": {
|
|
2629
|
+
"text": "void"
|
|
2630
|
+
}
|
|
2631
|
+
},
|
|
2632
|
+
"parameters": [
|
|
2633
|
+
{
|
|
2634
|
+
"name": "event",
|
|
2635
|
+
"type": {
|
|
2636
|
+
"text": "KeyboardEvent"
|
|
2637
|
+
}
|
|
2638
|
+
}
|
|
2639
|
+
]
|
|
2640
|
+
},
|
|
2641
|
+
{
|
|
2642
|
+
"kind": "field",
|
|
2643
|
+
"name": "_renderRow",
|
|
2644
|
+
"type": {
|
|
2645
|
+
"text": "RenderItemFunction<T>"
|
|
2646
|
+
},
|
|
2647
|
+
"privacy": "protected"
|
|
2648
|
+
},
|
|
2649
|
+
{
|
|
2650
|
+
"kind": "method",
|
|
2651
|
+
"name": "_renderHeaderRow",
|
|
2652
|
+
"privacy": "protected"
|
|
2653
|
+
},
|
|
2654
|
+
{
|
|
2655
|
+
"kind": "method",
|
|
2656
|
+
"name": "_renderBody",
|
|
2657
|
+
"privacy": "protected"
|
|
2658
|
+
},
|
|
2659
|
+
{
|
|
2660
|
+
"kind": "method",
|
|
2661
|
+
"name": "_renderFilterRow",
|
|
2662
|
+
"privacy": "protected"
|
|
2663
|
+
},
|
|
2664
|
+
{
|
|
2665
|
+
"kind": "method",
|
|
2666
|
+
"name": "addEventListener",
|
|
2246
2667
|
"privacy": "public",
|
|
2668
|
+
"return": {
|
|
2669
|
+
"type": {
|
|
2670
|
+
"text": "void"
|
|
2671
|
+
}
|
|
2672
|
+
},
|
|
2247
2673
|
"parameters": [
|
|
2248
2674
|
{
|
|
2249
|
-
"name": "
|
|
2675
|
+
"name": "type",
|
|
2250
2676
|
"type": {
|
|
2251
|
-
"text": "
|
|
2677
|
+
"text": "K"
|
|
2252
2678
|
}
|
|
2253
2679
|
},
|
|
2254
2680
|
{
|
|
2255
|
-
"name": "
|
|
2681
|
+
"name": "listener",
|
|
2256
2682
|
"type": {
|
|
2257
|
-
"text": "
|
|
2683
|
+
"text": "(this: HTMLElement, ev: M[K]) => any"
|
|
2258
2684
|
}
|
|
2259
2685
|
},
|
|
2260
2686
|
{
|
|
2261
|
-
"name": "
|
|
2687
|
+
"name": "options",
|
|
2262
2688
|
"optional": true,
|
|
2263
2689
|
"type": {
|
|
2264
|
-
"text": "
|
|
2690
|
+
"text": "boolean | AddEventListenerOptions"
|
|
2265
2691
|
}
|
|
2266
2692
|
}
|
|
2267
|
-
]
|
|
2693
|
+
],
|
|
2694
|
+
"inheritedFrom": {
|
|
2695
|
+
"name": "EventEmitterBase",
|
|
2696
|
+
"module": "src/internal/mixins/event-emitter.ts"
|
|
2697
|
+
}
|
|
2268
2698
|
},
|
|
2269
2699
|
{
|
|
2270
2700
|
"kind": "method",
|
|
2271
|
-
"name": "
|
|
2701
|
+
"name": "removeEventListener",
|
|
2272
2702
|
"privacy": "public",
|
|
2703
|
+
"return": {
|
|
2704
|
+
"type": {
|
|
2705
|
+
"text": "void"
|
|
2706
|
+
}
|
|
2707
|
+
},
|
|
2273
2708
|
"parameters": [
|
|
2274
2709
|
{
|
|
2275
|
-
"name": "
|
|
2710
|
+
"name": "type",
|
|
2276
2711
|
"type": {
|
|
2277
|
-
"text": "
|
|
2712
|
+
"text": "K"
|
|
2278
2713
|
}
|
|
2279
2714
|
},
|
|
2280
2715
|
{
|
|
2281
|
-
"name": "
|
|
2716
|
+
"name": "listener",
|
|
2282
2717
|
"type": {
|
|
2283
|
-
"text": "
|
|
2718
|
+
"text": "(this: HTMLElement, ev: M[K]) => any"
|
|
2719
|
+
}
|
|
2720
|
+
},
|
|
2721
|
+
{
|
|
2722
|
+
"name": "options",
|
|
2723
|
+
"optional": true,
|
|
2724
|
+
"type": {
|
|
2725
|
+
"text": "boolean | EventListenerOptions"
|
|
2284
2726
|
}
|
|
2285
2727
|
}
|
|
2286
|
-
]
|
|
2728
|
+
],
|
|
2729
|
+
"inheritedFrom": {
|
|
2730
|
+
"name": "EventEmitterBase",
|
|
2731
|
+
"module": "src/internal/mixins/event-emitter.ts"
|
|
2732
|
+
}
|
|
2287
2733
|
},
|
|
2288
2734
|
{
|
|
2289
2735
|
"kind": "method",
|
|
2290
|
-
"name": "
|
|
2291
|
-
"privacy": "public"
|
|
2736
|
+
"name": "emitEvent",
|
|
2737
|
+
"privacy": "public",
|
|
2738
|
+
"return": {
|
|
2739
|
+
"type": {
|
|
2740
|
+
"text": "boolean"
|
|
2741
|
+
}
|
|
2742
|
+
},
|
|
2743
|
+
"parameters": [
|
|
2744
|
+
{
|
|
2745
|
+
"name": "type",
|
|
2746
|
+
"type": {
|
|
2747
|
+
"text": "K"
|
|
2748
|
+
}
|
|
2749
|
+
},
|
|
2750
|
+
{
|
|
2751
|
+
"name": "eventInitDict",
|
|
2752
|
+
"optional": true,
|
|
2753
|
+
"type": {
|
|
2754
|
+
"text": "CustomEventInit<D>"
|
|
2755
|
+
}
|
|
2756
|
+
}
|
|
2757
|
+
],
|
|
2758
|
+
"inheritedFrom": {
|
|
2759
|
+
"name": "EventEmitterBase",
|
|
2760
|
+
"module": "src/internal/mixins/event-emitter.ts"
|
|
2761
|
+
}
|
|
2762
|
+
}
|
|
2763
|
+
],
|
|
2764
|
+
"events": [
|
|
2765
|
+
{
|
|
2766
|
+
"description": "Emitted when sorting is initiated through the UI.",
|
|
2767
|
+
"name": "sorting"
|
|
2768
|
+
},
|
|
2769
|
+
{
|
|
2770
|
+
"description": "Emitted when a sort operation initiated through the UI has completed.",
|
|
2771
|
+
"name": "sorted"
|
|
2772
|
+
},
|
|
2773
|
+
{
|
|
2774
|
+
"description": "Emitted when filtering is initiated through the UI.",
|
|
2775
|
+
"name": "filtering"
|
|
2776
|
+
},
|
|
2777
|
+
{
|
|
2778
|
+
"description": "Emitted when a filter operation initiated through the UI has completed.",
|
|
2779
|
+
"name": "filtered"
|
|
2780
|
+
},
|
|
2781
|
+
{
|
|
2782
|
+
"type": {
|
|
2783
|
+
"text": "CustomEvent"
|
|
2784
|
+
},
|
|
2785
|
+
"inheritedFrom": {
|
|
2786
|
+
"name": "EventEmitterBase",
|
|
2787
|
+
"module": "src/internal/mixins/event-emitter.ts"
|
|
2788
|
+
}
|
|
2789
|
+
}
|
|
2790
|
+
],
|
|
2791
|
+
"attributes": [
|
|
2792
|
+
{
|
|
2793
|
+
"name": "auto-generate",
|
|
2794
|
+
"type": {
|
|
2795
|
+
"text": "boolean"
|
|
2796
|
+
},
|
|
2797
|
+
"default": "false",
|
|
2798
|
+
"description": "Whether the grid will try to \"resolve\" its column configuration based on the passed\ndata source.",
|
|
2799
|
+
"fieldName": "autoGenerate",
|
|
2800
|
+
"attribute": "auto-generate"
|
|
2801
|
+
}
|
|
2802
|
+
],
|
|
2803
|
+
"superclass": {
|
|
2804
|
+
"name": "EventEmitterBase",
|
|
2805
|
+
"module": "/src/internal/mixins/event-emitter.js"
|
|
2806
|
+
},
|
|
2807
|
+
"tagName": "igc-grid-lite",
|
|
2808
|
+
"customElement": true
|
|
2809
|
+
}
|
|
2810
|
+
],
|
|
2811
|
+
"exports": [
|
|
2812
|
+
{
|
|
2813
|
+
"kind": "js",
|
|
2814
|
+
"name": "IgcGridLite",
|
|
2815
|
+
"declaration": {
|
|
2816
|
+
"name": "IgcGridLite",
|
|
2817
|
+
"module": "src/components/grid.ts"
|
|
2818
|
+
}
|
|
2819
|
+
}
|
|
2820
|
+
]
|
|
2821
|
+
},
|
|
2822
|
+
{
|
|
2823
|
+
"kind": "javascript-module",
|
|
2824
|
+
"path": "src/components/header-row.ts",
|
|
2825
|
+
"declarations": [
|
|
2826
|
+
{
|
|
2827
|
+
"kind": "class",
|
|
2828
|
+
"description": "",
|
|
2829
|
+
"name": "IgcGridLiteHeaderRow",
|
|
2830
|
+
"members": [
|
|
2831
|
+
{
|
|
2832
|
+
"kind": "field",
|
|
2833
|
+
"name": "tagName",
|
|
2834
|
+
"privacy": "public",
|
|
2835
|
+
"static": true,
|
|
2836
|
+
"readonly": true
|
|
2292
2837
|
},
|
|
2293
2838
|
{
|
|
2294
2839
|
"kind": "method",
|
|
2295
|
-
"name": "
|
|
2840
|
+
"name": "register",
|
|
2296
2841
|
"privacy": "public",
|
|
2297
|
-
"
|
|
2842
|
+
"static": true,
|
|
2843
|
+
"return": {
|
|
2844
|
+
"type": {
|
|
2845
|
+
"text": "void"
|
|
2846
|
+
}
|
|
2847
|
+
}
|
|
2848
|
+
},
|
|
2849
|
+
{
|
|
2850
|
+
"kind": "field",
|
|
2851
|
+
"name": "_state",
|
|
2852
|
+
"type": {
|
|
2853
|
+
"text": "StateController<T> | undefined"
|
|
2854
|
+
},
|
|
2855
|
+
"privacy": "private",
|
|
2856
|
+
"readonly": true
|
|
2857
|
+
},
|
|
2858
|
+
{
|
|
2859
|
+
"kind": "field",
|
|
2860
|
+
"name": "columns",
|
|
2861
|
+
"type": {
|
|
2862
|
+
"text": "ColumnConfiguration<T>[]"
|
|
2863
|
+
},
|
|
2864
|
+
"privacy": "public",
|
|
2865
|
+
"default": "[]"
|
|
2866
|
+
},
|
|
2867
|
+
{
|
|
2868
|
+
"kind": "field",
|
|
2869
|
+
"name": "headers",
|
|
2870
|
+
"type": {
|
|
2871
|
+
"text": "IgcGridLiteHeader<T>[]"
|
|
2872
|
+
},
|
|
2873
|
+
"privacy": "public",
|
|
2874
|
+
"readonly": true
|
|
2875
|
+
},
|
|
2876
|
+
{
|
|
2877
|
+
"kind": "method",
|
|
2878
|
+
"name": "_setActiveFilterColumn",
|
|
2879
|
+
"privacy": "private",
|
|
2880
|
+
"return": {
|
|
2881
|
+
"type": {
|
|
2882
|
+
"text": "void"
|
|
2883
|
+
}
|
|
2884
|
+
},
|
|
2885
|
+
"parameters": [
|
|
2886
|
+
{
|
|
2887
|
+
"name": "event",
|
|
2888
|
+
"type": {
|
|
2889
|
+
"text": "PointerEvent"
|
|
2890
|
+
}
|
|
2891
|
+
}
|
|
2892
|
+
]
|
|
2298
2893
|
}
|
|
2299
|
-
]
|
|
2894
|
+
],
|
|
2895
|
+
"superclass": {
|
|
2896
|
+
"name": "LitElement",
|
|
2897
|
+
"package": "lit"
|
|
2898
|
+
},
|
|
2899
|
+
"customElement": true
|
|
2300
2900
|
}
|
|
2301
2901
|
],
|
|
2302
2902
|
"exports": [
|
|
2303
2903
|
{
|
|
2304
2904
|
"kind": "js",
|
|
2305
|
-
"name": "
|
|
2905
|
+
"name": "default",
|
|
2306
2906
|
"declaration": {
|
|
2307
|
-
"name": "
|
|
2308
|
-
"module": "src/
|
|
2907
|
+
"name": "IgcGridLiteHeaderRow",
|
|
2908
|
+
"module": "src/components/header-row.ts"
|
|
2309
2909
|
}
|
|
2310
2910
|
}
|
|
2311
2911
|
]
|
|
2312
2912
|
},
|
|
2313
2913
|
{
|
|
2314
2914
|
"kind": "javascript-module",
|
|
2315
|
-
"path": "src/
|
|
2915
|
+
"path": "src/components/header.ts",
|
|
2316
2916
|
"declarations": [
|
|
2317
2917
|
{
|
|
2318
2918
|
"kind": "class",
|
|
2319
2919
|
"description": "",
|
|
2320
|
-
"name": "
|
|
2920
|
+
"name": "IgcGridLiteHeader",
|
|
2321
2921
|
"members": [
|
|
2322
2922
|
{
|
|
2323
2923
|
"kind": "field",
|
|
2324
|
-
"name": "
|
|
2325
|
-
"type": {
|
|
2326
|
-
"text": "SortState<T>"
|
|
2327
|
-
},
|
|
2924
|
+
"name": "tagName",
|
|
2328
2925
|
"privacy": "public",
|
|
2329
|
-
"
|
|
2926
|
+
"static": true,
|
|
2927
|
+
"readonly": true
|
|
2928
|
+
},
|
|
2929
|
+
{
|
|
2930
|
+
"kind": "method",
|
|
2931
|
+
"name": "register",
|
|
2932
|
+
"privacy": "public",
|
|
2933
|
+
"static": true,
|
|
2934
|
+
"return": {
|
|
2935
|
+
"type": {
|
|
2936
|
+
"text": "void"
|
|
2937
|
+
}
|
|
2938
|
+
}
|
|
2330
2939
|
},
|
|
2331
2940
|
{
|
|
2332
2941
|
"kind": "field",
|
|
2333
|
-
"name": "
|
|
2334
|
-
"
|
|
2942
|
+
"name": "context",
|
|
2943
|
+
"type": {
|
|
2944
|
+
"text": "IgcHeaderContext<T>"
|
|
2945
|
+
},
|
|
2946
|
+
"privacy": "protected",
|
|
2335
2947
|
"readonly": true
|
|
2336
2948
|
},
|
|
2337
2949
|
{
|
|
2338
2950
|
"kind": "field",
|
|
2339
|
-
"name": "
|
|
2340
|
-
"privacy": "
|
|
2951
|
+
"name": "isSortable",
|
|
2952
|
+
"privacy": "protected",
|
|
2341
2953
|
"readonly": true
|
|
2342
2954
|
},
|
|
2343
2955
|
{
|
|
2344
|
-
"kind": "
|
|
2345
|
-
"name": "
|
|
2346
|
-
"privacy": "
|
|
2347
|
-
"
|
|
2348
|
-
{
|
|
2349
|
-
"name": "options",
|
|
2350
|
-
"optional": true,
|
|
2351
|
-
"type": {
|
|
2352
|
-
"text": "boolean | ColumnSortConfiguration<T>"
|
|
2353
|
-
}
|
|
2354
|
-
}
|
|
2355
|
-
]
|
|
2956
|
+
"kind": "field",
|
|
2957
|
+
"name": "resizeController",
|
|
2958
|
+
"privacy": "protected",
|
|
2959
|
+
"readonly": true
|
|
2356
2960
|
},
|
|
2357
2961
|
{
|
|
2358
|
-
"kind": "
|
|
2359
|
-
"name": "
|
|
2360
|
-
"
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
"type": {
|
|
2365
|
-
"text": "Keys<T>"
|
|
2366
|
-
}
|
|
2367
|
-
}
|
|
2368
|
-
]
|
|
2962
|
+
"kind": "field",
|
|
2963
|
+
"name": "state",
|
|
2964
|
+
"type": {
|
|
2965
|
+
"text": "StateController<T>"
|
|
2966
|
+
},
|
|
2967
|
+
"privacy": "public"
|
|
2369
2968
|
},
|
|
2370
2969
|
{
|
|
2371
|
-
"kind": "
|
|
2372
|
-
"name": "
|
|
2373
|
-
"
|
|
2374
|
-
|
|
2375
|
-
"type": {
|
|
2376
|
-
"text": "SortingDirection"
|
|
2377
|
-
}
|
|
2970
|
+
"kind": "field",
|
|
2971
|
+
"name": "column",
|
|
2972
|
+
"type": {
|
|
2973
|
+
"text": "ColumnConfiguration<T>"
|
|
2378
2974
|
},
|
|
2379
|
-
"
|
|
2380
|
-
{
|
|
2381
|
-
"name": "dir",
|
|
2382
|
-
"optional": true,
|
|
2383
|
-
"type": {
|
|
2384
|
-
"text": "SortingDirection"
|
|
2385
|
-
}
|
|
2386
|
-
}
|
|
2387
|
-
]
|
|
2975
|
+
"privacy": "public"
|
|
2388
2976
|
},
|
|
2389
2977
|
{
|
|
2390
2978
|
"kind": "method",
|
|
2391
|
-
"name": "#
|
|
2392
|
-
"privacy": "private"
|
|
2393
|
-
"parameters": [
|
|
2394
|
-
{
|
|
2395
|
-
"name": "detail",
|
|
2396
|
-
"type": {
|
|
2397
|
-
"text": "SortExpression<T>"
|
|
2398
|
-
}
|
|
2399
|
-
}
|
|
2400
|
-
]
|
|
2979
|
+
"name": "#addResizeEventHandlers",
|
|
2980
|
+
"privacy": "private"
|
|
2401
2981
|
},
|
|
2402
2982
|
{
|
|
2403
2983
|
"kind": "method",
|
|
2404
|
-
"name": "#
|
|
2984
|
+
"name": "#handleClick",
|
|
2405
2985
|
"privacy": "private",
|
|
2406
2986
|
"parameters": [
|
|
2407
2987
|
{
|
|
2408
|
-
"name": "
|
|
2988
|
+
"name": "e",
|
|
2409
2989
|
"type": {
|
|
2410
|
-
"text": "
|
|
2990
|
+
"text": "Event"
|
|
2411
2991
|
}
|
|
2412
2992
|
}
|
|
2413
2993
|
]
|
|
2414
2994
|
},
|
|
2415
2995
|
{
|
|
2416
|
-
"kind": "
|
|
2417
|
-
"name": "#
|
|
2418
|
-
"privacy": "private"
|
|
2419
|
-
"parameters": [
|
|
2420
|
-
{
|
|
2421
|
-
"name": "expression",
|
|
2422
|
-
"type": {
|
|
2423
|
-
"text": "SortExpression<T>"
|
|
2424
|
-
}
|
|
2425
|
-
}
|
|
2426
|
-
]
|
|
2996
|
+
"kind": "field",
|
|
2997
|
+
"name": "#handleResize",
|
|
2998
|
+
"privacy": "private"
|
|
2427
2999
|
},
|
|
2428
3000
|
{
|
|
2429
3001
|
"kind": "method",
|
|
2430
|
-
"name": "
|
|
2431
|
-
"privacy": "
|
|
3002
|
+
"name": "#handleResizeStart",
|
|
3003
|
+
"privacy": "private",
|
|
2432
3004
|
"parameters": [
|
|
2433
3005
|
{
|
|
2434
|
-
"name": "
|
|
3006
|
+
"name": "ev",
|
|
2435
3007
|
"type": {
|
|
2436
|
-
"text": "
|
|
3008
|
+
"text": "PointerEvent"
|
|
2437
3009
|
}
|
|
2438
3010
|
}
|
|
2439
3011
|
]
|
|
2440
3012
|
},
|
|
2441
3013
|
{
|
|
2442
|
-
"kind": "
|
|
2443
|
-
"name": "
|
|
2444
|
-
"privacy": "
|
|
2445
|
-
"return": {
|
|
2446
|
-
"type": {
|
|
2447
|
-
"text": "SortExpression<T>"
|
|
2448
|
-
}
|
|
2449
|
-
},
|
|
2450
|
-
"parameters": [
|
|
2451
|
-
{
|
|
2452
|
-
"name": "{ key, sort: options }",
|
|
2453
|
-
"type": {
|
|
2454
|
-
"text": "ColumnConfiguration<T>"
|
|
2455
|
-
}
|
|
2456
|
-
}
|
|
2457
|
-
]
|
|
3014
|
+
"kind": "field",
|
|
3015
|
+
"name": "#handlePointerLost",
|
|
3016
|
+
"privacy": "private"
|
|
2458
3017
|
},
|
|
2459
3018
|
{
|
|
2460
|
-
"kind": "
|
|
2461
|
-
"name": "
|
|
2462
|
-
"privacy": "
|
|
2463
|
-
"parameters": [
|
|
2464
|
-
{
|
|
2465
|
-
"name": "key",
|
|
2466
|
-
"optional": true,
|
|
2467
|
-
"type": {
|
|
2468
|
-
"text": "Keys<T>"
|
|
2469
|
-
}
|
|
2470
|
-
}
|
|
2471
|
-
]
|
|
3019
|
+
"kind": "field",
|
|
3020
|
+
"name": "#handleAutosize",
|
|
3021
|
+
"privacy": "private"
|
|
2472
3022
|
},
|
|
2473
3023
|
{
|
|
2474
3024
|
"kind": "method",
|
|
2475
|
-
"name": "
|
|
2476
|
-
"privacy": "protected"
|
|
2477
|
-
"parameters": [
|
|
2478
|
-
{
|
|
2479
|
-
"name": "expressions",
|
|
2480
|
-
"type": {
|
|
2481
|
-
"text": "SortExpression<T> | SortExpression<T>[]"
|
|
2482
|
-
}
|
|
2483
|
-
}
|
|
2484
|
-
]
|
|
3025
|
+
"name": "renderSortPart",
|
|
3026
|
+
"privacy": "protected"
|
|
2485
3027
|
},
|
|
2486
3028
|
{
|
|
2487
3029
|
"kind": "method",
|
|
2488
|
-
"name": "
|
|
2489
|
-
"privacy": "
|
|
2490
|
-
"parameters": [
|
|
2491
|
-
{
|
|
2492
|
-
"name": "expressions",
|
|
2493
|
-
"type": {
|
|
2494
|
-
"text": "SortExpression<T> | SortExpression<T>[]"
|
|
2495
|
-
}
|
|
2496
|
-
}
|
|
2497
|
-
]
|
|
3030
|
+
"name": "renderContentPart",
|
|
3031
|
+
"privacy": "protected"
|
|
2498
3032
|
},
|
|
2499
3033
|
{
|
|
2500
3034
|
"kind": "method",
|
|
2501
|
-
"name": "
|
|
2502
|
-
"privacy": "
|
|
3035
|
+
"name": "renderResizePart",
|
|
3036
|
+
"privacy": "protected"
|
|
2503
3037
|
}
|
|
2504
|
-
]
|
|
3038
|
+
],
|
|
3039
|
+
"superclass": {
|
|
3040
|
+
"name": "LitElement",
|
|
3041
|
+
"package": "lit"
|
|
3042
|
+
},
|
|
3043
|
+
"customElement": true
|
|
2505
3044
|
}
|
|
2506
3045
|
],
|
|
2507
3046
|
"exports": [
|
|
2508
3047
|
{
|
|
2509
3048
|
"kind": "js",
|
|
2510
|
-
"name": "
|
|
3049
|
+
"name": "default",
|
|
2511
3050
|
"declaration": {
|
|
2512
|
-
"name": "
|
|
2513
|
-
"module": "src/
|
|
3051
|
+
"name": "IgcGridLiteHeader",
|
|
3052
|
+
"module": "src/components/header.ts"
|
|
2514
3053
|
}
|
|
2515
3054
|
}
|
|
2516
3055
|
]
|
|
2517
3056
|
},
|
|
2518
3057
|
{
|
|
2519
3058
|
"kind": "javascript-module",
|
|
2520
|
-
"path": "src/
|
|
3059
|
+
"path": "src/components/row.ts",
|
|
2521
3060
|
"declarations": [
|
|
2522
3061
|
{
|
|
2523
3062
|
"kind": "class",
|
|
2524
|
-
"description": "",
|
|
2525
|
-
"name": "
|
|
3063
|
+
"description": "Component representing the DOM row in the IgcGridLite.",
|
|
3064
|
+
"name": "IgcGridLiteRow",
|
|
2526
3065
|
"members": [
|
|
2527
3066
|
{
|
|
2528
3067
|
"kind": "field",
|
|
2529
|
-
"name": "
|
|
2530
|
-
"
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
3068
|
+
"name": "tagName",
|
|
3069
|
+
"privacy": "public",
|
|
3070
|
+
"static": true,
|
|
3071
|
+
"readonly": true
|
|
3072
|
+
},
|
|
3073
|
+
{
|
|
3074
|
+
"kind": "method",
|
|
3075
|
+
"name": "register",
|
|
3076
|
+
"privacy": "public",
|
|
3077
|
+
"static": true,
|
|
3078
|
+
"return": {
|
|
3079
|
+
"type": {
|
|
3080
|
+
"text": "void"
|
|
3081
|
+
}
|
|
3082
|
+
}
|
|
2534
3083
|
},
|
|
2535
3084
|
{
|
|
2536
3085
|
"kind": "field",
|
|
2537
|
-
"name": "
|
|
3086
|
+
"name": "data",
|
|
2538
3087
|
"type": {
|
|
2539
|
-
"text": "
|
|
3088
|
+
"text": "T | undefined"
|
|
2540
3089
|
},
|
|
2541
3090
|
"privacy": "public"
|
|
2542
3091
|
},
|
|
2543
3092
|
{
|
|
2544
3093
|
"kind": "field",
|
|
2545
|
-
"name": "
|
|
3094
|
+
"name": "columns",
|
|
2546
3095
|
"type": {
|
|
2547
|
-
"text": "
|
|
3096
|
+
"text": "Array<ColumnConfiguration<T>>"
|
|
2548
3097
|
},
|
|
2549
|
-
"privacy": "public"
|
|
3098
|
+
"privacy": "public",
|
|
3099
|
+
"default": "[]"
|
|
2550
3100
|
},
|
|
2551
3101
|
{
|
|
2552
3102
|
"kind": "field",
|
|
2553
|
-
"name": "
|
|
3103
|
+
"name": "activeNode",
|
|
2554
3104
|
"type": {
|
|
2555
|
-
"text": "
|
|
3105
|
+
"text": "ActiveNode<T> | undefined"
|
|
2556
3106
|
},
|
|
2557
3107
|
"privacy": "public"
|
|
2558
3108
|
},
|
|
2559
3109
|
{
|
|
2560
3110
|
"kind": "field",
|
|
2561
|
-
"name": "
|
|
2562
|
-
"
|
|
3111
|
+
"name": "index",
|
|
3112
|
+
"type": {
|
|
3113
|
+
"text": "number"
|
|
3114
|
+
},
|
|
3115
|
+
"privacy": "public",
|
|
3116
|
+
"default": "-1"
|
|
2563
3117
|
},
|
|
2564
3118
|
{
|
|
2565
3119
|
"kind": "field",
|
|
2566
|
-
"name": "
|
|
3120
|
+
"name": "cells",
|
|
3121
|
+
"type": {
|
|
3122
|
+
"text": "IgcGridLiteCell<T>[]"
|
|
3123
|
+
},
|
|
2567
3124
|
"privacy": "public",
|
|
2568
3125
|
"readonly": true
|
|
2569
|
-
}
|
|
3126
|
+
}
|
|
3127
|
+
],
|
|
3128
|
+
"superclass": {
|
|
3129
|
+
"name": "LitElement",
|
|
3130
|
+
"package": "lit"
|
|
3131
|
+
},
|
|
3132
|
+
"customElement": true
|
|
3133
|
+
}
|
|
3134
|
+
],
|
|
3135
|
+
"exports": [
|
|
3136
|
+
{
|
|
3137
|
+
"kind": "js",
|
|
3138
|
+
"name": "default",
|
|
3139
|
+
"declaration": {
|
|
3140
|
+
"name": "IgcGridLiteRow",
|
|
3141
|
+
"module": "src/components/row.ts"
|
|
3142
|
+
}
|
|
3143
|
+
}
|
|
3144
|
+
]
|
|
3145
|
+
},
|
|
3146
|
+
{
|
|
3147
|
+
"kind": "javascript-module",
|
|
3148
|
+
"path": "src/components/virtualizer.ts",
|
|
3149
|
+
"declarations": [
|
|
3150
|
+
{
|
|
3151
|
+
"kind": "class",
|
|
3152
|
+
"description": "",
|
|
3153
|
+
"name": "IgcVirtualizer",
|
|
3154
|
+
"members": [
|
|
2570
3155
|
{
|
|
2571
3156
|
"kind": "field",
|
|
2572
|
-
"name": "
|
|
3157
|
+
"name": "tagName",
|
|
2573
3158
|
"privacy": "public",
|
|
3159
|
+
"static": true,
|
|
2574
3160
|
"readonly": true
|
|
2575
3161
|
},
|
|
2576
3162
|
{
|
|
2577
3163
|
"kind": "method",
|
|
2578
|
-
"name": "
|
|
2579
|
-
"privacy": "protected"
|
|
2580
|
-
},
|
|
2581
|
-
{
|
|
2582
|
-
"kind": "method",
|
|
2583
|
-
"name": "hostConnected",
|
|
2584
|
-
"privacy": "public"
|
|
2585
|
-
},
|
|
2586
|
-
{
|
|
2587
|
-
"kind": "method",
|
|
2588
|
-
"name": "hostUpdate",
|
|
3164
|
+
"name": "register",
|
|
2589
3165
|
"privacy": "public",
|
|
3166
|
+
"static": true,
|
|
2590
3167
|
"return": {
|
|
2591
3168
|
"type": {
|
|
2592
3169
|
"text": "void"
|
|
2593
3170
|
}
|
|
2594
3171
|
}
|
|
3172
|
+
},
|
|
3173
|
+
{
|
|
3174
|
+
"kind": "field",
|
|
3175
|
+
"name": "scroller",
|
|
3176
|
+
"type": {
|
|
3177
|
+
"text": "boolean"
|
|
3178
|
+
},
|
|
3179
|
+
"privacy": "public",
|
|
3180
|
+
"default": "true"
|
|
2595
3181
|
}
|
|
2596
|
-
]
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
3182
|
+
],
|
|
3183
|
+
"superclass": {
|
|
3184
|
+
"name": "LitVirtualizer",
|
|
3185
|
+
"package": "@lit-labs/virtualizer/LitVirtualizer.js"
|
|
3186
|
+
}
|
|
2601
3187
|
}
|
|
2602
3188
|
],
|
|
2603
3189
|
"exports": [
|
|
2604
3190
|
{
|
|
2605
3191
|
"kind": "js",
|
|
2606
|
-
"name": "
|
|
2607
|
-
"declaration": {
|
|
2608
|
-
"name": "StateController",
|
|
2609
|
-
"module": "src/controllers/state.ts"
|
|
2610
|
-
}
|
|
2611
|
-
},
|
|
2612
|
-
{
|
|
2613
|
-
"kind": "js",
|
|
2614
|
-
"name": "gridStateContext",
|
|
3192
|
+
"name": "default",
|
|
2615
3193
|
"declaration": {
|
|
2616
|
-
"name": "
|
|
2617
|
-
"module": "src/
|
|
3194
|
+
"name": "IgcVirtualizer",
|
|
3195
|
+
"module": "src/components/virtualizer.ts"
|
|
2618
3196
|
}
|
|
2619
3197
|
}
|
|
2620
3198
|
]
|
|
@@ -2734,6 +3312,77 @@
|
|
|
2734
3312
|
}
|
|
2735
3313
|
]
|
|
2736
3314
|
},
|
|
3315
|
+
{
|
|
3316
|
+
"kind": "javascript-module",
|
|
3317
|
+
"path": "src/internal/context.ts",
|
|
3318
|
+
"declarations": [
|
|
3319
|
+
{
|
|
3320
|
+
"kind": "variable",
|
|
3321
|
+
"name": "COLUMN_UPDATE_CONTEXT"
|
|
3322
|
+
},
|
|
3323
|
+
{
|
|
3324
|
+
"kind": "variable",
|
|
3325
|
+
"name": "GRID_STATE_CONTEXT"
|
|
3326
|
+
}
|
|
3327
|
+
],
|
|
3328
|
+
"exports": [
|
|
3329
|
+
{
|
|
3330
|
+
"kind": "js",
|
|
3331
|
+
"name": "COLUMN_UPDATE_CONTEXT",
|
|
3332
|
+
"declaration": {
|
|
3333
|
+
"name": "COLUMN_UPDATE_CONTEXT",
|
|
3334
|
+
"module": "src/internal/context.ts"
|
|
3335
|
+
}
|
|
3336
|
+
},
|
|
3337
|
+
{
|
|
3338
|
+
"kind": "js",
|
|
3339
|
+
"name": "GRID_STATE_CONTEXT",
|
|
3340
|
+
"declaration": {
|
|
3341
|
+
"name": "GRID_STATE_CONTEXT",
|
|
3342
|
+
"module": "src/internal/context.ts"
|
|
3343
|
+
}
|
|
3344
|
+
}
|
|
3345
|
+
]
|
|
3346
|
+
},
|
|
3347
|
+
{
|
|
3348
|
+
"kind": "javascript-module",
|
|
3349
|
+
"path": "src/internal/element-from-event-path.ts",
|
|
3350
|
+
"declarations": [
|
|
3351
|
+
{
|
|
3352
|
+
"kind": "function",
|
|
3353
|
+
"name": "getElementFromEventPath",
|
|
3354
|
+
"return": {
|
|
3355
|
+
"type": {
|
|
3356
|
+
"text": "T | undefined"
|
|
3357
|
+
}
|
|
3358
|
+
},
|
|
3359
|
+
"parameters": [
|
|
3360
|
+
{
|
|
3361
|
+
"name": "predicate",
|
|
3362
|
+
"type": {
|
|
3363
|
+
"text": "string | ((element: T) => boolean)"
|
|
3364
|
+
}
|
|
3365
|
+
},
|
|
3366
|
+
{
|
|
3367
|
+
"name": "event",
|
|
3368
|
+
"type": {
|
|
3369
|
+
"text": "Event"
|
|
3370
|
+
}
|
|
3371
|
+
}
|
|
3372
|
+
]
|
|
3373
|
+
}
|
|
3374
|
+
],
|
|
3375
|
+
"exports": [
|
|
3376
|
+
{
|
|
3377
|
+
"kind": "js",
|
|
3378
|
+
"name": "getElementFromEventPath",
|
|
3379
|
+
"declaration": {
|
|
3380
|
+
"name": "getElementFromEventPath",
|
|
3381
|
+
"module": "src/internal/element-from-event-path.ts"
|
|
3382
|
+
}
|
|
3383
|
+
}
|
|
3384
|
+
]
|
|
3385
|
+
},
|
|
2737
3386
|
{
|
|
2738
3387
|
"kind": "javascript-module",
|
|
2739
3388
|
"path": "src/internal/icon-registry.ts",
|
|
@@ -2827,24 +3476,44 @@
|
|
|
2827
3476
|
"path": "src/internal/part-map.ts",
|
|
2828
3477
|
"declarations": [
|
|
2829
3478
|
{
|
|
2830
|
-
"kind": "
|
|
2831
|
-
"
|
|
2832
|
-
"
|
|
3479
|
+
"kind": "class",
|
|
3480
|
+
"description": "",
|
|
3481
|
+
"name": "PartMapDirective",
|
|
3482
|
+
"members": [
|
|
2833
3483
|
{
|
|
2834
|
-
"
|
|
3484
|
+
"kind": "field",
|
|
3485
|
+
"name": "_previousParts",
|
|
2835
3486
|
"type": {
|
|
2836
|
-
"text": "
|
|
2837
|
-
}
|
|
3487
|
+
"text": "Set<string> | undefined"
|
|
3488
|
+
},
|
|
3489
|
+
"privacy": "private"
|
|
2838
3490
|
}
|
|
2839
|
-
]
|
|
3491
|
+
],
|
|
3492
|
+
"superclass": {
|
|
3493
|
+
"name": "Directive",
|
|
3494
|
+
"package": "lit/directive.js"
|
|
3495
|
+
}
|
|
3496
|
+
},
|
|
3497
|
+
{
|
|
3498
|
+
"kind": "variable",
|
|
3499
|
+
"name": "partMap",
|
|
3500
|
+
"description": "Similar to Lit's https://lit.dev/docs/templates/directives/#classmap | `classMap` and\nhttps://lit.dev/docs/templates/directives/#stylemap | `styleMap` but for `part` attributes."
|
|
2840
3501
|
}
|
|
2841
3502
|
],
|
|
2842
3503
|
"exports": [
|
|
2843
3504
|
{
|
|
2844
3505
|
"kind": "js",
|
|
2845
|
-
"name": "
|
|
3506
|
+
"name": "partMap",
|
|
2846
3507
|
"declaration": {
|
|
2847
|
-
"name": "
|
|
3508
|
+
"name": "partMap",
|
|
3509
|
+
"module": "src/internal/part-map.ts"
|
|
3510
|
+
}
|
|
3511
|
+
},
|
|
3512
|
+
{
|
|
3513
|
+
"kind": "js",
|
|
3514
|
+
"name": "PartMapDirective",
|
|
3515
|
+
"declaration": {
|
|
3516
|
+
"name": "PartMapDirective",
|
|
2848
3517
|
"module": "src/internal/part-map.ts"
|
|
2849
3518
|
}
|
|
2850
3519
|
}
|
|
@@ -2955,6 +3624,14 @@
|
|
|
2955
3624
|
"text": "'igc-filter-row'"
|
|
2956
3625
|
},
|
|
2957
3626
|
"default": "'igc-filter-row'"
|
|
3627
|
+
},
|
|
3628
|
+
{
|
|
3629
|
+
"kind": "variable",
|
|
3630
|
+
"name": "GRID_COLUMN_TAG",
|
|
3631
|
+
"type": {
|
|
3632
|
+
"text": "'igc-grid-lite-column'"
|
|
3633
|
+
},
|
|
3634
|
+
"default": "'igc-grid-lite-column'"
|
|
2958
3635
|
}
|
|
2959
3636
|
],
|
|
2960
3637
|
"exports": [
|
|
@@ -3013,6 +3690,14 @@
|
|
|
3013
3690
|
"name": "GRID_FILTER_ROW_TAG",
|
|
3014
3691
|
"module": "src/internal/tags.ts"
|
|
3015
3692
|
}
|
|
3693
|
+
},
|
|
3694
|
+
{
|
|
3695
|
+
"kind": "js",
|
|
3696
|
+
"name": "GRID_COLUMN_TAG",
|
|
3697
|
+
"declaration": {
|
|
3698
|
+
"name": "GRID_COLUMN_TAG",
|
|
3699
|
+
"module": "src/internal/tags.ts"
|
|
3700
|
+
}
|
|
3016
3701
|
}
|
|
3017
3702
|
]
|
|
3018
3703
|
},
|
|
@@ -3188,12 +3873,51 @@
|
|
|
3188
3873
|
},
|
|
3189
3874
|
{
|
|
3190
3875
|
"kind": "function",
|
|
3191
|
-
"name": "
|
|
3876
|
+
"name": "isBoolean",
|
|
3877
|
+
"return": {
|
|
3878
|
+
"type": {
|
|
3879
|
+
"text": "x is boolean"
|
|
3880
|
+
}
|
|
3881
|
+
},
|
|
3192
3882
|
"parameters": [
|
|
3193
3883
|
{
|
|
3194
|
-
"name": "
|
|
3884
|
+
"name": "x",
|
|
3195
3885
|
"type": {
|
|
3196
|
-
"text": "
|
|
3886
|
+
"text": "unknown"
|
|
3887
|
+
}
|
|
3888
|
+
}
|
|
3889
|
+
]
|
|
3890
|
+
},
|
|
3891
|
+
{
|
|
3892
|
+
"kind": "function",
|
|
3893
|
+
"name": "isNumber",
|
|
3894
|
+
"return": {
|
|
3895
|
+
"type": {
|
|
3896
|
+
"text": "x is number"
|
|
3897
|
+
}
|
|
3898
|
+
},
|
|
3899
|
+
"parameters": [
|
|
3900
|
+
{
|
|
3901
|
+
"name": "x",
|
|
3902
|
+
"type": {
|
|
3903
|
+
"text": "unknown"
|
|
3904
|
+
}
|
|
3905
|
+
}
|
|
3906
|
+
]
|
|
3907
|
+
},
|
|
3908
|
+
{
|
|
3909
|
+
"kind": "function",
|
|
3910
|
+
"name": "isString",
|
|
3911
|
+
"return": {
|
|
3912
|
+
"type": {
|
|
3913
|
+
"text": "x is string"
|
|
3914
|
+
}
|
|
3915
|
+
},
|
|
3916
|
+
"parameters": [
|
|
3917
|
+
{
|
|
3918
|
+
"name": "x",
|
|
3919
|
+
"type": {
|
|
3920
|
+
"text": "unknown"
|
|
3197
3921
|
}
|
|
3198
3922
|
}
|
|
3199
3923
|
]
|
|
@@ -3201,6 +3925,11 @@
|
|
|
3201
3925
|
{
|
|
3202
3926
|
"kind": "function",
|
|
3203
3927
|
"name": "asArray",
|
|
3928
|
+
"return": {
|
|
3929
|
+
"type": {
|
|
3930
|
+
"text": "T[]"
|
|
3931
|
+
}
|
|
3932
|
+
},
|
|
3204
3933
|
"parameters": [
|
|
3205
3934
|
{
|
|
3206
3935
|
"name": "value",
|
|
@@ -3221,6 +3950,40 @@
|
|
|
3221
3950
|
}
|
|
3222
3951
|
}
|
|
3223
3952
|
]
|
|
3953
|
+
},
|
|
3954
|
+
{
|
|
3955
|
+
"kind": "function",
|
|
3956
|
+
"name": "setColumnsFromData",
|
|
3957
|
+
"return": {
|
|
3958
|
+
"type": {
|
|
3959
|
+
"text": "Array<ColumnConfiguration<T>>"
|
|
3960
|
+
}
|
|
3961
|
+
},
|
|
3962
|
+
"parameters": [
|
|
3963
|
+
{
|
|
3964
|
+
"name": "record",
|
|
3965
|
+
"type": {
|
|
3966
|
+
"text": "T"
|
|
3967
|
+
}
|
|
3968
|
+
}
|
|
3969
|
+
]
|
|
3970
|
+
},
|
|
3971
|
+
{
|
|
3972
|
+
"kind": "function",
|
|
3973
|
+
"name": "createColumnConfiguration",
|
|
3974
|
+
"return": {
|
|
3975
|
+
"type": {
|
|
3976
|
+
"text": "ColumnConfiguration<T>"
|
|
3977
|
+
}
|
|
3978
|
+
},
|
|
3979
|
+
"parameters": [
|
|
3980
|
+
{
|
|
3981
|
+
"name": "config",
|
|
3982
|
+
"type": {
|
|
3983
|
+
"text": "Partial<ColumnConfiguration<T>>"
|
|
3984
|
+
}
|
|
3985
|
+
}
|
|
3986
|
+
]
|
|
3224
3987
|
}
|
|
3225
3988
|
],
|
|
3226
3989
|
"exports": [
|
|
@@ -3234,9 +3997,25 @@
|
|
|
3234
3997
|
},
|
|
3235
3998
|
{
|
|
3236
3999
|
"kind": "js",
|
|
3237
|
-
"name": "
|
|
4000
|
+
"name": "isBoolean",
|
|
4001
|
+
"declaration": {
|
|
4002
|
+
"name": "isBoolean",
|
|
4003
|
+
"module": "src/internal/utils.ts"
|
|
4004
|
+
}
|
|
4005
|
+
},
|
|
4006
|
+
{
|
|
4007
|
+
"kind": "js",
|
|
4008
|
+
"name": "isNumber",
|
|
4009
|
+
"declaration": {
|
|
4010
|
+
"name": "isNumber",
|
|
4011
|
+
"module": "src/internal/utils.ts"
|
|
4012
|
+
}
|
|
4013
|
+
},
|
|
4014
|
+
{
|
|
4015
|
+
"kind": "js",
|
|
4016
|
+
"name": "isString",
|
|
3238
4017
|
"declaration": {
|
|
3239
|
-
"name": "
|
|
4018
|
+
"name": "isString",
|
|
3240
4019
|
"module": "src/internal/utils.ts"
|
|
3241
4020
|
}
|
|
3242
4021
|
},
|
|
@@ -3255,6 +4034,22 @@
|
|
|
3255
4034
|
"name": "getFilterOperandsFor",
|
|
3256
4035
|
"module": "src/internal/utils.ts"
|
|
3257
4036
|
}
|
|
4037
|
+
},
|
|
4038
|
+
{
|
|
4039
|
+
"kind": "js",
|
|
4040
|
+
"name": "setColumnsFromData",
|
|
4041
|
+
"declaration": {
|
|
4042
|
+
"name": "setColumnsFromData",
|
|
4043
|
+
"module": "src/internal/utils.ts"
|
|
4044
|
+
}
|
|
4045
|
+
},
|
|
4046
|
+
{
|
|
4047
|
+
"kind": "js",
|
|
4048
|
+
"name": "createColumnConfiguration",
|
|
4049
|
+
"declaration": {
|
|
4050
|
+
"name": "createColumnConfiguration",
|
|
4051
|
+
"module": "src/internal/utils.ts"
|
|
4052
|
+
}
|
|
3258
4053
|
}
|
|
3259
4054
|
]
|
|
3260
4055
|
},
|
|
@@ -3578,7 +4373,7 @@
|
|
|
3578
4373
|
{
|
|
3579
4374
|
"name": "expression",
|
|
3580
4375
|
"type": {
|
|
3581
|
-
"text": "
|
|
4376
|
+
"text": "SortingExpression<T>"
|
|
3582
4377
|
}
|
|
3583
4378
|
}
|
|
3584
4379
|
]
|