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