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