igniteui-webcomponents-grids 5.3.0 → 5.4.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.
Files changed (97) hide show
  1. package/bundles/igniteui-webcomponents-grids.umd.js +2341 -1701
  2. package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
  3. package/custom-elements.json +1423 -0
  4. package/esm2015/lib/CanvasTemplateCellPresenter.js +1 -1
  5. package/esm2015/lib/CheckboxListBridge.js +97 -49
  6. package/esm2015/lib/CheckboxListView_combined.js +989 -602
  7. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  8. package/esm2015/lib/ColumnFilterCondition_combined.js +803 -789
  9. package/esm2015/lib/ColumnGroupingView_combined.js +1 -1
  10. package/esm2015/lib/ColumnPinningView_combined.js +3 -3
  11. package/esm2015/lib/DataGridToolbarView_combined.js +1 -1
  12. package/esm2015/lib/GridCellBase.js +14 -4
  13. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
  14. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +3 -3
  15. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  16. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  17. package/esm2015/lib/GridColumnPinOptionsView_combined.js +1 -1
  18. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +2 -2
  19. package/esm2015/lib/GridEffectMainIntent.js +1 -1
  20. package/esm2015/lib/GridFilterDialogView_combined.js +2 -0
  21. package/esm2015/lib/ISummaryChooserView_combined.js +9 -9
  22. package/esm2015/lib/MultiColumnComboBoxView_combined.js +3 -3
  23. package/esm2015/lib/TemplateCellPresenter.js +1 -1
  24. package/esm2015/lib/TemplateHeader.js +1 -1
  25. package/esm2015/lib/igc-checkbox-list-component.js +150 -71
  26. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  27. package/esm2015/lib/igc-data-grid-column-component.js +77 -77
  28. package/esm2015/lib/igc-data-grid-filter-dialog-component.js +3 -0
  29. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  30. package/esm2015/lib/igc-image-column-component.js +12 -12
  31. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  32. package/esm2015/lib/igc-text-column-component.js +9 -9
  33. package/esm5/lib/CanvasTemplateCellPresenter.js +1 -1
  34. package/esm5/lib/CheckboxListBridge.js +97 -49
  35. package/esm5/lib/CheckboxListView_combined.js +1009 -580
  36. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  37. package/esm5/lib/ColumnFilterCondition_combined.js +836 -786
  38. package/esm5/lib/ColumnGroupingView_combined.js +1 -1
  39. package/esm5/lib/ColumnPinningView_combined.js +3 -3
  40. package/esm5/lib/DataGridToolbarView_combined.js +1 -1
  41. package/esm5/lib/GridCellBase.js +14 -4
  42. package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
  43. package/esm5/lib/GridColumnGroupOptionsView_combined.js +3 -3
  44. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  45. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  46. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  47. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +2 -2
  48. package/esm5/lib/GridEffectMainIntent.js +1 -1
  49. package/esm5/lib/GridFilterDialogView_combined.js +2 -0
  50. package/esm5/lib/ISummaryChooserView_combined.js +9 -9
  51. package/esm5/lib/MultiColumnComboBoxView_combined.js +3 -3
  52. package/esm5/lib/TemplateCellPresenter.js +1 -1
  53. package/esm5/lib/TemplateHeader.js +1 -1
  54. package/esm5/lib/igc-checkbox-list-component.js +179 -71
  55. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  56. package/esm5/lib/igc-data-grid-column-component.js +77 -77
  57. package/esm5/lib/igc-data-grid-filter-dialog-component.js +3 -0
  58. package/esm5/lib/igc-date-time-column-component.js +23 -23
  59. package/esm5/lib/igc-image-column-component.js +12 -12
  60. package/esm5/lib/igc-numeric-column-component.js +35 -35
  61. package/esm5/lib/igc-text-column-component.js +9 -9
  62. package/fesm2015/igniteui-webcomponents-grids.js +2259 -1726
  63. package/fesm5/igniteui-webcomponents-grids.js +2343 -1703
  64. package/grids/combined.js +25338 -23125
  65. package/grids/index.d.ts +1 -204
  66. package/grids/lib/igc-column-component.d.ts +1 -1
  67. package/grids/lib/igc-expression-tree.d.ts +7 -0
  68. package/grids/lib/igc-filtering-expression.d.ts +9 -4
  69. package/grids/lib/igc-filtering-expressions-tree.d.ts +9 -1
  70. package/grids/lib/igc-filtering-operand.d.ts +1 -1
  71. package/grids/lib/igc-filtering-operation.d.ts +4 -2
  72. package/grids/lib/igc-grid-base-directive.d.ts +1 -1
  73. package/grids/lib/igc-grid-created-event-args.d.ts +3 -0
  74. package/grids/lib/igc-hierarchical-grid-base-directive.d.ts +1 -1
  75. package/grids/lib/igc-pivot-dimension.d.ts +1 -1
  76. package/grids/lib/igc-pivot-value.d.ts +1 -1
  77. package/grids/lib/igc-row-island-component.d.ts +1 -1
  78. package/grids/lib/index.d.ts +204 -0
  79. package/grids/styles.css +1 -1
  80. package/grids/themes/dark/bootstrap.css +1 -1
  81. package/grids/themes/dark/fluent.css +1 -1
  82. package/grids/themes/dark/indigo.css +1 -1
  83. package/grids/themes/dark/material.css +1 -1
  84. package/grids/themes/light/bootstrap.css +1 -1
  85. package/grids/themes/light/fluent.css +1 -1
  86. package/grids/themes/light/indigo.css +1 -1
  87. package/grids/themes/light/material.css +1 -1
  88. package/lib/CheckboxListBridge.d.ts +12 -9
  89. package/lib/CheckboxListExternal.d.ts +12 -0
  90. package/lib/CheckboxListViewExternal.d.ts +1 -0
  91. package/lib/CheckboxListView_combined.d.ts +184 -151
  92. package/lib/ColumnFilterCondition_combined.d.ts +178 -176
  93. package/lib/GridEffectMainIntent.d.ts +4 -3
  94. package/lib/GridFilterDialogView_combined.d.ts +1 -0
  95. package/lib/igc-checkbox-list-component.d.ts +29 -0
  96. package/lib/igc-data-grid-filter-dialog-component.d.ts +1 -0
  97. package/package.json +4 -4
@@ -21188,6 +21188,1429 @@
21188
21188
  "tagName": "igc-paginator",
21189
21189
  "customElement": true
21190
21190
  }
21191
+ ],
21192
+ "exports": [
21193
+ {
21194
+ "kind": "js",
21195
+ "name": "IgcGridStateComponent",
21196
+ "declaration": {
21197
+ "name": "IgcGridStateComponent"
21198
+ }
21199
+ },
21200
+ {
21201
+ "kind": "js",
21202
+ "name": "IgcGridStateBaseDirective",
21203
+ "declaration": {
21204
+ "name": "IgcGridStateBaseDirective"
21205
+ }
21206
+ },
21207
+ {
21208
+ "kind": "js",
21209
+ "name": "IgcGridStateInfo",
21210
+ "declaration": {
21211
+ "name": "IgcGridStateInfo"
21212
+ }
21213
+ },
21214
+ {
21215
+ "kind": "js",
21216
+ "name": "IgcActionStripComponent",
21217
+ "declaration": {
21218
+ "name": "IgcActionStripComponent"
21219
+ }
21220
+ },
21221
+ {
21222
+ "kind": "js",
21223
+ "name": "IgcGridActionsBaseDirective",
21224
+ "declaration": {
21225
+ "name": "IgcGridActionsBaseDirective"
21226
+ }
21227
+ },
21228
+ {
21229
+ "kind": "js",
21230
+ "name": "IgcActionStripResourceStrings",
21231
+ "declaration": {
21232
+ "name": "IgcActionStripResourceStrings"
21233
+ }
21234
+ },
21235
+ {
21236
+ "kind": "js",
21237
+ "name": "IgcGridEditingActionsComponent",
21238
+ "declaration": {
21239
+ "name": "IgcGridEditingActionsComponent"
21240
+ }
21241
+ },
21242
+ {
21243
+ "kind": "js",
21244
+ "name": "IgcGridPinningActionsComponent",
21245
+ "declaration": {
21246
+ "name": "IgcGridPinningActionsComponent"
21247
+ }
21248
+ },
21249
+ {
21250
+ "kind": "js",
21251
+ "name": "IgcBooleanFilteringOperand",
21252
+ "declaration": {
21253
+ "name": "IgcBooleanFilteringOperand"
21254
+ }
21255
+ },
21256
+ {
21257
+ "kind": "js",
21258
+ "name": "IgcFilteringOperand",
21259
+ "declaration": {
21260
+ "name": "IgcFilteringOperand"
21261
+ }
21262
+ },
21263
+ {
21264
+ "kind": "js",
21265
+ "name": "IgcDateFilteringOperand",
21266
+ "declaration": {
21267
+ "name": "IgcDateFilteringOperand"
21268
+ }
21269
+ },
21270
+ {
21271
+ "kind": "js",
21272
+ "name": "IgcBaseDateTimeFilteringOperand",
21273
+ "declaration": {
21274
+ "name": "IgcBaseDateTimeFilteringOperand"
21275
+ }
21276
+ },
21277
+ {
21278
+ "kind": "js",
21279
+ "name": "IgcDateTimeFilteringOperand",
21280
+ "declaration": {
21281
+ "name": "IgcDateTimeFilteringOperand"
21282
+ }
21283
+ },
21284
+ {
21285
+ "kind": "js",
21286
+ "name": "IgcTimeFilteringOperand",
21287
+ "declaration": {
21288
+ "name": "IgcTimeFilteringOperand"
21289
+ }
21290
+ },
21291
+ {
21292
+ "kind": "js",
21293
+ "name": "IgcNumberFilteringOperand",
21294
+ "declaration": {
21295
+ "name": "IgcNumberFilteringOperand"
21296
+ }
21297
+ },
21298
+ {
21299
+ "kind": "js",
21300
+ "name": "IgcStringFilteringOperand",
21301
+ "declaration": {
21302
+ "name": "IgcStringFilteringOperand"
21303
+ }
21304
+ },
21305
+ {
21306
+ "kind": "js",
21307
+ "name": "IgcFilteringExpression",
21308
+ "declaration": {
21309
+ "name": "IgcFilteringExpression"
21310
+ }
21311
+ },
21312
+ {
21313
+ "kind": "js",
21314
+ "name": "IgcFilteringOperation",
21315
+ "declaration": {
21316
+ "name": "IgcFilteringOperation"
21317
+ }
21318
+ },
21319
+ {
21320
+ "kind": "js",
21321
+ "name": "IgcExpressionTree",
21322
+ "declaration": {
21323
+ "name": "IgcExpressionTree"
21324
+ }
21325
+ },
21326
+ {
21327
+ "kind": "js",
21328
+ "name": "IgcNoopFilteringStrategy",
21329
+ "declaration": {
21330
+ "name": "IgcNoopFilteringStrategy"
21331
+ }
21332
+ },
21333
+ {
21334
+ "kind": "js",
21335
+ "name": "IgcBaseFilteringStrategy",
21336
+ "declaration": {
21337
+ "name": "IgcBaseFilteringStrategy"
21338
+ }
21339
+ },
21340
+ {
21341
+ "kind": "js",
21342
+ "name": "IgcFilteringExpressionsTree",
21343
+ "declaration": {
21344
+ "name": "IgcFilteringExpressionsTree"
21345
+ }
21346
+ },
21347
+ {
21348
+ "kind": "js",
21349
+ "name": "IgcGroupByResult",
21350
+ "declaration": {
21351
+ "name": "IgcGroupByResult"
21352
+ }
21353
+ },
21354
+ {
21355
+ "kind": "js",
21356
+ "name": "IgcGroupByRecord",
21357
+ "declaration": {
21358
+ "name": "IgcGroupByRecord"
21359
+ }
21360
+ },
21361
+ {
21362
+ "kind": "js",
21363
+ "name": "IgcNoopPivotDimensionsStrategy",
21364
+ "declaration": {
21365
+ "name": "IgcNoopPivotDimensionsStrategy"
21366
+ }
21367
+ },
21368
+ {
21369
+ "kind": "js",
21370
+ "name": "IgcPivotDimension",
21371
+ "declaration": {
21372
+ "name": "IgcPivotDimension"
21373
+ }
21374
+ },
21375
+ {
21376
+ "kind": "js",
21377
+ "name": "IgcPivotValue",
21378
+ "declaration": {
21379
+ "name": "IgcPivotValue"
21380
+ }
21381
+ },
21382
+ {
21383
+ "kind": "js",
21384
+ "name": "IgcColumnGroupComponent",
21385
+ "declaration": {
21386
+ "name": "IgcColumnGroupComponent"
21387
+ }
21388
+ },
21389
+ {
21390
+ "kind": "js",
21391
+ "name": "IgcColumnComponent",
21392
+ "declaration": {
21393
+ "name": "IgcColumnComponent"
21394
+ }
21395
+ },
21396
+ {
21397
+ "kind": "js",
21398
+ "name": "IgcColumnTemplateContext",
21399
+ "declaration": {
21400
+ "name": "IgcColumnTemplateContext"
21401
+ }
21402
+ },
21403
+ {
21404
+ "kind": "js",
21405
+ "name": "IgcColumnLayoutComponent",
21406
+ "declaration": {
21407
+ "name": "IgcColumnLayoutComponent"
21408
+ }
21409
+ },
21410
+ {
21411
+ "kind": "js",
21412
+ "name": "IgcNoopSortingStrategy",
21413
+ "declaration": {
21414
+ "name": "IgcNoopSortingStrategy"
21415
+ }
21416
+ },
21417
+ {
21418
+ "kind": "js",
21419
+ "name": "IgcGridComponent",
21420
+ "declaration": {
21421
+ "name": "IgcGridComponent"
21422
+ }
21423
+ },
21424
+ {
21425
+ "kind": "js",
21426
+ "name": "IgcGridBaseDirective",
21427
+ "declaration": {
21428
+ "name": "IgcGridBaseDirective"
21429
+ }
21430
+ },
21431
+ {
21432
+ "kind": "js",
21433
+ "name": "IgcForOfState",
21434
+ "declaration": {
21435
+ "name": "IgcForOfState"
21436
+ }
21437
+ },
21438
+ {
21439
+ "kind": "js",
21440
+ "name": "IgcGroupingDoneEventArgs",
21441
+ "declaration": {
21442
+ "name": "IgcGroupingDoneEventArgs"
21443
+ }
21444
+ },
21445
+ {
21446
+ "kind": "js",
21447
+ "name": "IgcGridMasterDetailContext",
21448
+ "declaration": {
21449
+ "name": "IgcGridMasterDetailContext"
21450
+ }
21451
+ },
21452
+ {
21453
+ "kind": "js",
21454
+ "name": "IgcGroupingExpression",
21455
+ "declaration": {
21456
+ "name": "IgcGroupingExpression"
21457
+ }
21458
+ },
21459
+ {
21460
+ "kind": "js",
21461
+ "name": "IgcGroupByExpandState",
21462
+ "declaration": {
21463
+ "name": "IgcGroupByExpandState"
21464
+ }
21465
+ },
21466
+ {
21467
+ "kind": "js",
21468
+ "name": "IgcGridGroupingStrategy",
21469
+ "declaration": {
21470
+ "name": "IgcGridGroupingStrategy"
21471
+ }
21472
+ },
21473
+ {
21474
+ "kind": "js",
21475
+ "name": "IgcGroupByRowSelectorTemplateContext",
21476
+ "declaration": {
21477
+ "name": "IgcGroupByRowSelectorTemplateContext"
21478
+ }
21479
+ },
21480
+ {
21481
+ "kind": "js",
21482
+ "name": "IgcGroupByRowTemplateContext",
21483
+ "declaration": {
21484
+ "name": "IgcGroupByRowTemplateContext"
21485
+ }
21486
+ },
21487
+ {
21488
+ "kind": "js",
21489
+ "name": "IgcRowType",
21490
+ "declaration": {
21491
+ "name": "IgcRowType"
21492
+ }
21493
+ },
21494
+ {
21495
+ "kind": "js",
21496
+ "name": "IgcCellType",
21497
+ "declaration": {
21498
+ "name": "IgcCellType"
21499
+ }
21500
+ },
21501
+ {
21502
+ "kind": "js",
21503
+ "name": "IgcHierarchicalGridComponent",
21504
+ "declaration": {
21505
+ "name": "IgcHierarchicalGridComponent"
21506
+ }
21507
+ },
21508
+ {
21509
+ "kind": "js",
21510
+ "name": "IgcHierarchicalGridBaseDirective",
21511
+ "declaration": {
21512
+ "name": "IgcHierarchicalGridBaseDirective"
21513
+ }
21514
+ },
21515
+ {
21516
+ "kind": "js",
21517
+ "name": "IgcRowIslandComponent",
21518
+ "declaration": {
21519
+ "name": "IgcRowIslandComponent"
21520
+ }
21521
+ },
21522
+ {
21523
+ "kind": "js",
21524
+ "name": "IgcPivotDataSelectorComponent",
21525
+ "declaration": {
21526
+ "name": "IgcPivotDataSelectorComponent"
21527
+ }
21528
+ },
21529
+ {
21530
+ "kind": "js",
21531
+ "name": "IgcPivotDateDimension",
21532
+ "declaration": {
21533
+ "name": "IgcPivotDateDimension"
21534
+ }
21535
+ },
21536
+ {
21537
+ "kind": "js",
21538
+ "name": "GridColumnDataType",
21539
+ "declaration": {
21540
+ "name": "GridColumnDataType"
21541
+ }
21542
+ },
21543
+ {
21544
+ "kind": "js",
21545
+ "name": "IgcGridResourceStrings",
21546
+ "declaration": {
21547
+ "name": "IgcGridResourceStrings"
21548
+ }
21549
+ },
21550
+ {
21551
+ "kind": "js",
21552
+ "name": "IgcPivotDateDimensionOptions",
21553
+ "declaration": {
21554
+ "name": "IgcPivotDateDimensionOptions"
21555
+ }
21556
+ },
21557
+ {
21558
+ "kind": "js",
21559
+ "name": "IgcPivotGridComponent",
21560
+ "declaration": {
21561
+ "name": "IgcPivotGridComponent"
21562
+ }
21563
+ },
21564
+ {
21565
+ "kind": "js",
21566
+ "name": "IgcDimensionsChange",
21567
+ "declaration": {
21568
+ "name": "IgcDimensionsChange"
21569
+ }
21570
+ },
21571
+ {
21572
+ "kind": "js",
21573
+ "name": "IgcPivotConfigurationChangedEventArgs",
21574
+ "declaration": {
21575
+ "name": "IgcPivotConfigurationChangedEventArgs"
21576
+ }
21577
+ },
21578
+ {
21579
+ "kind": "js",
21580
+ "name": "IgcSortingExpression",
21581
+ "declaration": {
21582
+ "name": "IgcSortingExpression"
21583
+ }
21584
+ },
21585
+ {
21586
+ "kind": "js",
21587
+ "name": "IgcValuesChange",
21588
+ "declaration": {
21589
+ "name": "IgcValuesChange"
21590
+ }
21591
+ },
21592
+ {
21593
+ "kind": "js",
21594
+ "name": "IgcPivotGridValueTemplateContext",
21595
+ "declaration": {
21596
+ "name": "IgcPivotGridValueTemplateContext"
21597
+ }
21598
+ },
21599
+ {
21600
+ "kind": "js",
21601
+ "name": "IgcPivotConfiguration",
21602
+ "declaration": {
21603
+ "name": "IgcPivotConfiguration"
21604
+ }
21605
+ },
21606
+ {
21607
+ "kind": "js",
21608
+ "name": "IgcPivotUISettings",
21609
+ "declaration": {
21610
+ "name": "IgcPivotUISettings"
21611
+ }
21612
+ },
21613
+ {
21614
+ "kind": "js",
21615
+ "name": "PivotDimensionType",
21616
+ "declaration": {
21617
+ "name": "PivotDimensionType"
21618
+ }
21619
+ },
21620
+ {
21621
+ "kind": "js",
21622
+ "name": "SortingDirection",
21623
+ "declaration": {
21624
+ "name": "SortingDirection"
21625
+ }
21626
+ },
21627
+ {
21628
+ "kind": "js",
21629
+ "name": "IgcSummaryExpression",
21630
+ "declaration": {
21631
+ "name": "IgcSummaryExpression"
21632
+ }
21633
+ },
21634
+ {
21635
+ "kind": "js",
21636
+ "name": "IgcSummaryOperand",
21637
+ "declaration": {
21638
+ "name": "IgcSummaryOperand"
21639
+ }
21640
+ },
21641
+ {
21642
+ "kind": "js",
21643
+ "name": "IgcSummaryResult",
21644
+ "declaration": {
21645
+ "name": "IgcSummaryResult"
21646
+ }
21647
+ },
21648
+ {
21649
+ "kind": "js",
21650
+ "name": "IgcNumberSummaryOperand",
21651
+ "declaration": {
21652
+ "name": "IgcNumberSummaryOperand"
21653
+ }
21654
+ },
21655
+ {
21656
+ "kind": "js",
21657
+ "name": "IgcDateSummaryOperand",
21658
+ "declaration": {
21659
+ "name": "IgcDateSummaryOperand"
21660
+ }
21661
+ },
21662
+ {
21663
+ "kind": "js",
21664
+ "name": "IgcTimeSummaryOperand",
21665
+ "declaration": {
21666
+ "name": "IgcTimeSummaryOperand"
21667
+ }
21668
+ },
21669
+ {
21670
+ "kind": "js",
21671
+ "name": "IgcGridToolbarTitleComponent",
21672
+ "declaration": {
21673
+ "name": "IgcGridToolbarTitleComponent"
21674
+ }
21675
+ },
21676
+ {
21677
+ "kind": "js",
21678
+ "name": "IgcGridToolbarActionsComponent",
21679
+ "declaration": {
21680
+ "name": "IgcGridToolbarActionsComponent"
21681
+ }
21682
+ },
21683
+ {
21684
+ "kind": "js",
21685
+ "name": "IgcGridToolbarAdvancedFilteringComponent",
21686
+ "declaration": {
21687
+ "name": "IgcGridToolbarAdvancedFilteringComponent"
21688
+ }
21689
+ },
21690
+ {
21691
+ "kind": "js",
21692
+ "name": "IgcOverlaySettings",
21693
+ "declaration": {
21694
+ "name": "IgcOverlaySettings"
21695
+ }
21696
+ },
21697
+ {
21698
+ "kind": "js",
21699
+ "name": "IgcGridToolbarExporterComponent",
21700
+ "declaration": {
21701
+ "name": "IgcGridToolbarExporterComponent"
21702
+ }
21703
+ },
21704
+ {
21705
+ "kind": "js",
21706
+ "name": "IgcBaseToolbarDirective",
21707
+ "declaration": {
21708
+ "name": "IgcBaseToolbarDirective"
21709
+ }
21710
+ },
21711
+ {
21712
+ "kind": "js",
21713
+ "name": "IgcExporterEventArgs",
21714
+ "declaration": {
21715
+ "name": "IgcExporterEventArgs"
21716
+ }
21717
+ },
21718
+ {
21719
+ "kind": "js",
21720
+ "name": "GridToolbarExporterType",
21721
+ "declaration": {
21722
+ "name": "GridToolbarExporterType"
21723
+ }
21724
+ },
21725
+ {
21726
+ "kind": "js",
21727
+ "name": "IgcGridToolbarHidingComponent",
21728
+ "declaration": {
21729
+ "name": "IgcGridToolbarHidingComponent"
21730
+ }
21731
+ },
21732
+ {
21733
+ "kind": "js",
21734
+ "name": "IgcBaseToolbarColumnActionsDirective",
21735
+ "declaration": {
21736
+ "name": "IgcBaseToolbarColumnActionsDirective"
21737
+ }
21738
+ },
21739
+ {
21740
+ "kind": "js",
21741
+ "name": "IgcGridToolbarPinningComponent",
21742
+ "declaration": {
21743
+ "name": "IgcGridToolbarPinningComponent"
21744
+ }
21745
+ },
21746
+ {
21747
+ "kind": "js",
21748
+ "name": "IgcToggleViewCancelableEventArgs",
21749
+ "declaration": {
21750
+ "name": "IgcToggleViewCancelableEventArgs"
21751
+ }
21752
+ },
21753
+ {
21754
+ "kind": "js",
21755
+ "name": "IgcToggleViewEventArgs",
21756
+ "declaration": {
21757
+ "name": "IgcToggleViewEventArgs"
21758
+ }
21759
+ },
21760
+ {
21761
+ "kind": "js",
21762
+ "name": "IgcColumnToggledEventArgs",
21763
+ "declaration": {
21764
+ "name": "IgcColumnToggledEventArgs"
21765
+ }
21766
+ },
21767
+ {
21768
+ "kind": "js",
21769
+ "name": "IgcTreeGridComponent",
21770
+ "declaration": {
21771
+ "name": "IgcTreeGridComponent"
21772
+ }
21773
+ },
21774
+ {
21775
+ "kind": "js",
21776
+ "name": "IgcTreeGridRecord",
21777
+ "declaration": {
21778
+ "name": "IgcTreeGridRecord"
21779
+ }
21780
+ },
21781
+ {
21782
+ "kind": "js",
21783
+ "name": "IgcGridStateOptions",
21784
+ "declaration": {
21785
+ "name": "IgcGridStateOptions"
21786
+ }
21787
+ },
21788
+ {
21789
+ "kind": "js",
21790
+ "name": "IgcColumnState",
21791
+ "declaration": {
21792
+ "name": "IgcColumnState"
21793
+ }
21794
+ },
21795
+ {
21796
+ "kind": "js",
21797
+ "name": "IgcPagingState",
21798
+ "declaration": {
21799
+ "name": "IgcPagingState"
21800
+ }
21801
+ },
21802
+ {
21803
+ "kind": "js",
21804
+ "name": "IgcGroupingState",
21805
+ "declaration": {
21806
+ "name": "IgcGroupingState"
21807
+ }
21808
+ },
21809
+ {
21810
+ "kind": "js",
21811
+ "name": "IgcGridSelectionRange",
21812
+ "declaration": {
21813
+ "name": "IgcGridSelectionRange"
21814
+ }
21815
+ },
21816
+ {
21817
+ "kind": "js",
21818
+ "name": "IgcPinningConfig",
21819
+ "declaration": {
21820
+ "name": "IgcPinningConfig"
21821
+ }
21822
+ },
21823
+ {
21824
+ "kind": "js",
21825
+ "name": "IgcGridStateCollection",
21826
+ "declaration": {
21827
+ "name": "IgcGridStateCollection"
21828
+ }
21829
+ },
21830
+ {
21831
+ "kind": "js",
21832
+ "name": "FilteringLogic",
21833
+ "declaration": {
21834
+ "name": "FilteringLogic"
21835
+ }
21836
+ },
21837
+ {
21838
+ "kind": "js",
21839
+ "name": "IgcFilterItem",
21840
+ "declaration": {
21841
+ "name": "IgcFilterItem"
21842
+ }
21843
+ },
21844
+ {
21845
+ "kind": "js",
21846
+ "name": "IgcBaseEventArgs",
21847
+ "declaration": {
21848
+ "name": "IgcBaseEventArgs"
21849
+ }
21850
+ },
21851
+ {
21852
+ "kind": "js",
21853
+ "name": "FilteringExpressionsTreeType",
21854
+ "declaration": {
21855
+ "name": "FilteringExpressionsTreeType"
21856
+ }
21857
+ },
21858
+ {
21859
+ "kind": "js",
21860
+ "name": "IgcGroupedRecords",
21861
+ "declaration": {
21862
+ "name": "IgcGroupedRecords"
21863
+ }
21864
+ },
21865
+ {
21866
+ "kind": "js",
21867
+ "name": "IgcPivotAggregator",
21868
+ "declaration": {
21869
+ "name": "IgcPivotAggregator"
21870
+ }
21871
+ },
21872
+ {
21873
+ "kind": "js",
21874
+ "name": "IgcPivotGridRecord",
21875
+ "declaration": {
21876
+ "name": "IgcPivotGridRecord"
21877
+ }
21878
+ },
21879
+ {
21880
+ "kind": "js",
21881
+ "name": "IgcPivotGridColumn",
21882
+ "declaration": {
21883
+ "name": "IgcPivotGridColumn"
21884
+ }
21885
+ },
21886
+ {
21887
+ "kind": "js",
21888
+ "name": "IgcSortingStrategy",
21889
+ "declaration": {
21890
+ "name": "IgcSortingStrategy"
21891
+ }
21892
+ },
21893
+ {
21894
+ "kind": "js",
21895
+ "name": "IgcSummaryTemplateContext",
21896
+ "declaration": {
21897
+ "name": "IgcSummaryTemplateContext"
21898
+ }
21899
+ },
21900
+ {
21901
+ "kind": "js",
21902
+ "name": "IgcCellTemplateContext",
21903
+ "declaration": {
21904
+ "name": "IgcCellTemplateContext"
21905
+ }
21906
+ },
21907
+ {
21908
+ "kind": "js",
21909
+ "name": "IgcColumnPipeArgs",
21910
+ "declaration": {
21911
+ "name": "IgcColumnPipeArgs"
21912
+ }
21913
+ },
21914
+ {
21915
+ "kind": "js",
21916
+ "name": "IgcColumnEditorOptions",
21917
+ "declaration": {
21918
+ "name": "IgcColumnEditorOptions"
21919
+ }
21920
+ },
21921
+ {
21922
+ "kind": "js",
21923
+ "name": "IgcDataCloneStrategy",
21924
+ "declaration": {
21925
+ "name": "IgcDataCloneStrategy"
21926
+ }
21927
+ },
21928
+ {
21929
+ "kind": "js",
21930
+ "name": "IgcClipboardOptions",
21931
+ "declaration": {
21932
+ "name": "IgcClipboardOptions"
21933
+ }
21934
+ },
21935
+ {
21936
+ "kind": "js",
21937
+ "name": "IgcGridScrollEventArgs",
21938
+ "declaration": {
21939
+ "name": "IgcGridScrollEventArgs"
21940
+ }
21941
+ },
21942
+ {
21943
+ "kind": "js",
21944
+ "name": "IgcGridCellEventArgs",
21945
+ "declaration": {
21946
+ "name": "IgcGridCellEventArgs"
21947
+ }
21948
+ },
21949
+ {
21950
+ "kind": "js",
21951
+ "name": "IgcGridRowEventArgs",
21952
+ "declaration": {
21953
+ "name": "IgcGridRowEventArgs"
21954
+ }
21955
+ },
21956
+ {
21957
+ "kind": "js",
21958
+ "name": "IgcGridFormGroupCreatedEventArgs",
21959
+ "declaration": {
21960
+ "name": "IgcGridFormGroupCreatedEventArgs"
21961
+ }
21962
+ },
21963
+ {
21964
+ "kind": "js",
21965
+ "name": "IgcGridValidationStatusEventArgs",
21966
+ "declaration": {
21967
+ "name": "IgcGridValidationStatusEventArgs"
21968
+ }
21969
+ },
21970
+ {
21971
+ "kind": "js",
21972
+ "name": "IgcRowSelectionEventArgs",
21973
+ "declaration": {
21974
+ "name": "IgcRowSelectionEventArgs"
21975
+ }
21976
+ },
21977
+ {
21978
+ "kind": "js",
21979
+ "name": "IgcColumnSelectionEventArgs",
21980
+ "declaration": {
21981
+ "name": "IgcColumnSelectionEventArgs"
21982
+ }
21983
+ },
21984
+ {
21985
+ "kind": "js",
21986
+ "name": "IgcPinColumnCancellableEventArgs",
21987
+ "declaration": {
21988
+ "name": "IgcPinColumnCancellableEventArgs"
21989
+ }
21990
+ },
21991
+ {
21992
+ "kind": "js",
21993
+ "name": "IgcPinColumnEventArgs",
21994
+ "declaration": {
21995
+ "name": "IgcPinColumnEventArgs"
21996
+ }
21997
+ },
21998
+ {
21999
+ "kind": "js",
22000
+ "name": "IgcGridEditEventArgs",
22001
+ "declaration": {
22002
+ "name": "IgcGridEditEventArgs"
22003
+ }
22004
+ },
22005
+ {
22006
+ "kind": "js",
22007
+ "name": "IgcGridEditDoneEventArgs",
22008
+ "declaration": {
22009
+ "name": "IgcGridEditDoneEventArgs"
22010
+ }
22011
+ },
22012
+ {
22013
+ "kind": "js",
22014
+ "name": "IgcColumnsAutoGeneratedEventArgs",
22015
+ "declaration": {
22016
+ "name": "IgcColumnsAutoGeneratedEventArgs"
22017
+ }
22018
+ },
22019
+ {
22020
+ "kind": "js",
22021
+ "name": "IgcSortingEventArgs",
22022
+ "declaration": {
22023
+ "name": "IgcSortingEventArgs"
22024
+ }
22025
+ },
22026
+ {
22027
+ "kind": "js",
22028
+ "name": "IgcFilteringEventArgs",
22029
+ "declaration": {
22030
+ "name": "IgcFilteringEventArgs"
22031
+ }
22032
+ },
22033
+ {
22034
+ "kind": "js",
22035
+ "name": "IgcRowDataEventArgs",
22036
+ "declaration": {
22037
+ "name": "IgcRowDataEventArgs"
22038
+ }
22039
+ },
22040
+ {
22041
+ "kind": "js",
22042
+ "name": "IgcRowDataCancelableEventArgs",
22043
+ "declaration": {
22044
+ "name": "IgcRowDataCancelableEventArgs"
22045
+ }
22046
+ },
22047
+ {
22048
+ "kind": "js",
22049
+ "name": "IgcColumnResizeEventArgs",
22050
+ "declaration": {
22051
+ "name": "IgcColumnResizeEventArgs"
22052
+ }
22053
+ },
22054
+ {
22055
+ "kind": "js",
22056
+ "name": "IgcGridContextMenuEventArgs",
22057
+ "declaration": {
22058
+ "name": "IgcGridContextMenuEventArgs"
22059
+ }
22060
+ },
22061
+ {
22062
+ "kind": "js",
22063
+ "name": "IgcColumnVisibilityChangingEventArgs",
22064
+ "declaration": {
22065
+ "name": "IgcColumnVisibilityChangingEventArgs"
22066
+ }
22067
+ },
22068
+ {
22069
+ "kind": "js",
22070
+ "name": "IgcColumnVisibilityChangedEventArgs",
22071
+ "declaration": {
22072
+ "name": "IgcColumnVisibilityChangedEventArgs"
22073
+ }
22074
+ },
22075
+ {
22076
+ "kind": "js",
22077
+ "name": "IgcColumnMovingStartEventArgs",
22078
+ "declaration": {
22079
+ "name": "IgcColumnMovingStartEventArgs"
22080
+ }
22081
+ },
22082
+ {
22083
+ "kind": "js",
22084
+ "name": "IgcColumnMovingEventArgs",
22085
+ "declaration": {
22086
+ "name": "IgcColumnMovingEventArgs"
22087
+ }
22088
+ },
22089
+ {
22090
+ "kind": "js",
22091
+ "name": "IgcColumnMovingEndEventArgs",
22092
+ "declaration": {
22093
+ "name": "IgcColumnMovingEndEventArgs"
22094
+ }
22095
+ },
22096
+ {
22097
+ "kind": "js",
22098
+ "name": "IgcGridKeydownEventArgs",
22099
+ "declaration": {
22100
+ "name": "IgcGridKeydownEventArgs"
22101
+ }
22102
+ },
22103
+ {
22104
+ "kind": "js",
22105
+ "name": "IgcRowDragStartEventArgs",
22106
+ "declaration": {
22107
+ "name": "IgcRowDragStartEventArgs"
22108
+ }
22109
+ },
22110
+ {
22111
+ "kind": "js",
22112
+ "name": "IgcRowDragEndEventArgs",
22113
+ "declaration": {
22114
+ "name": "IgcRowDragEndEventArgs"
22115
+ }
22116
+ },
22117
+ {
22118
+ "kind": "js",
22119
+ "name": "IgcGridClipboardEvent",
22120
+ "declaration": {
22121
+ "name": "IgcGridClipboardEvent"
22122
+ }
22123
+ },
22124
+ {
22125
+ "kind": "js",
22126
+ "name": "IgcRowToggleEventArgs",
22127
+ "declaration": {
22128
+ "name": "IgcRowToggleEventArgs"
22129
+ }
22130
+ },
22131
+ {
22132
+ "kind": "js",
22133
+ "name": "IgcPinRowEventArgs",
22134
+ "declaration": {
22135
+ "name": "IgcPinRowEventArgs"
22136
+ }
22137
+ },
22138
+ {
22139
+ "kind": "js",
22140
+ "name": "IgcActiveNodeChangeEventArgs",
22141
+ "declaration": {
22142
+ "name": "IgcActiveNodeChangeEventArgs"
22143
+ }
22144
+ },
22145
+ {
22146
+ "kind": "js",
22147
+ "name": "IgcGridToolbarExportEventArgs",
22148
+ "declaration": {
22149
+ "name": "IgcGridToolbarExportEventArgs"
22150
+ }
22151
+ },
22152
+ {
22153
+ "kind": "js",
22154
+ "name": "IgcForOfDataChangingEventArgs",
22155
+ "declaration": {
22156
+ "name": "IgcForOfDataChangingEventArgs"
22157
+ }
22158
+ },
22159
+ {
22160
+ "kind": "js",
22161
+ "name": "IgcActionStripToken",
22162
+ "declaration": {
22163
+ "name": "IgcActionStripToken"
22164
+ }
22165
+ },
22166
+ {
22167
+ "kind": "js",
22168
+ "name": "IgcGridRowDragGhostContext",
22169
+ "declaration": {
22170
+ "name": "IgcGridRowDragGhostContext"
22171
+ }
22172
+ },
22173
+ {
22174
+ "kind": "js",
22175
+ "name": "IgcGridRowEditTextTemplateContext",
22176
+ "declaration": {
22177
+ "name": "IgcGridRowEditTextTemplateContext"
22178
+ }
22179
+ },
22180
+ {
22181
+ "kind": "js",
22182
+ "name": "IgcGridEmptyTemplateContext",
22183
+ "declaration": {
22184
+ "name": "IgcGridEmptyTemplateContext"
22185
+ }
22186
+ },
22187
+ {
22188
+ "kind": "js",
22189
+ "name": "IgcGridRowEditActionsTemplateContext",
22190
+ "declaration": {
22191
+ "name": "IgcGridRowEditActionsTemplateContext"
22192
+ }
22193
+ },
22194
+ {
22195
+ "kind": "js",
22196
+ "name": "IgcGridRowTemplateContext",
22197
+ "declaration": {
22198
+ "name": "IgcGridRowTemplateContext"
22199
+ }
22200
+ },
22201
+ {
22202
+ "kind": "js",
22203
+ "name": "IgcGridTemplateContext",
22204
+ "declaration": {
22205
+ "name": "IgcGridTemplateContext"
22206
+ }
22207
+ },
22208
+ {
22209
+ "kind": "js",
22210
+ "name": "IgcGridHeaderTemplateContext",
22211
+ "declaration": {
22212
+ "name": "IgcGridHeaderTemplateContext"
22213
+ }
22214
+ },
22215
+ {
22216
+ "kind": "js",
22217
+ "name": "IgcGridToolbarComponent",
22218
+ "declaration": {
22219
+ "name": "IgcGridToolbarComponent"
22220
+ }
22221
+ },
22222
+ {
22223
+ "kind": "js",
22224
+ "name": "IgcPaginatorComponent",
22225
+ "declaration": {
22226
+ "name": "IgcPaginatorComponent"
22227
+ }
22228
+ },
22229
+ {
22230
+ "kind": "js",
22231
+ "name": "GridPagingMode",
22232
+ "declaration": {
22233
+ "name": "GridPagingMode"
22234
+ }
22235
+ },
22236
+ {
22237
+ "kind": "js",
22238
+ "name": "GridValidationTrigger",
22239
+ "declaration": {
22240
+ "name": "GridValidationTrigger"
22241
+ }
22242
+ },
22243
+ {
22244
+ "kind": "js",
22245
+ "name": "FilterMode",
22246
+ "declaration": {
22247
+ "name": "FilterMode"
22248
+ }
22249
+ },
22250
+ {
22251
+ "kind": "js",
22252
+ "name": "GridSummaryPosition",
22253
+ "declaration": {
22254
+ "name": "GridSummaryPosition"
22255
+ }
22256
+ },
22257
+ {
22258
+ "kind": "js",
22259
+ "name": "GridSummaryCalculationMode",
22260
+ "declaration": {
22261
+ "name": "GridSummaryCalculationMode"
22262
+ }
22263
+ },
22264
+ {
22265
+ "kind": "js",
22266
+ "name": "IgcFilteringStrategy",
22267
+ "declaration": {
22268
+ "name": "IgcFilteringStrategy"
22269
+ }
22270
+ },
22271
+ {
22272
+ "kind": "js",
22273
+ "name": "IgcGridSortingStrategy",
22274
+ "declaration": {
22275
+ "name": "IgcGridSortingStrategy"
22276
+ }
22277
+ },
22278
+ {
22279
+ "kind": "js",
22280
+ "name": "IgcSortingOptions",
22281
+ "declaration": {
22282
+ "name": "IgcSortingOptions"
22283
+ }
22284
+ },
22285
+ {
22286
+ "kind": "js",
22287
+ "name": "IgcRowDirective",
22288
+ "declaration": {
22289
+ "name": "IgcRowDirective"
22290
+ }
22291
+ },
22292
+ {
22293
+ "kind": "js",
22294
+ "name": "IgcHeadSelectorTemplateContext",
22295
+ "declaration": {
22296
+ "name": "IgcHeadSelectorTemplateContext"
22297
+ }
22298
+ },
22299
+ {
22300
+ "kind": "js",
22301
+ "name": "IgcRowSelectorTemplateContext",
22302
+ "declaration": {
22303
+ "name": "IgcRowSelectorTemplateContext"
22304
+ }
22305
+ },
22306
+ {
22307
+ "kind": "js",
22308
+ "name": "GridSelectionMode",
22309
+ "declaration": {
22310
+ "name": "GridSelectionMode"
22311
+ }
22312
+ },
22313
+ {
22314
+ "kind": "js",
22315
+ "name": "IgcSearchInfo",
22316
+ "declaration": {
22317
+ "name": "IgcSearchInfo"
22318
+ }
22319
+ },
22320
+ {
22321
+ "kind": "js",
22322
+ "name": "IgcOverlayOutletDirective",
22323
+ "declaration": {
22324
+ "name": "IgcOverlayOutletDirective"
22325
+ }
22326
+ },
22327
+ {
22328
+ "kind": "js",
22329
+ "name": "IgcGridRowComponent",
22330
+ "declaration": {
22331
+ "name": "IgcGridRowComponent"
22332
+ }
22333
+ },
22334
+ {
22335
+ "kind": "js",
22336
+ "name": "DropPosition",
22337
+ "declaration": {
22338
+ "name": "DropPosition"
22339
+ }
22340
+ },
22341
+ {
22342
+ "kind": "js",
22343
+ "name": "IgcCellPosition",
22344
+ "declaration": {
22345
+ "name": "IgcCellPosition"
22346
+ }
22347
+ },
22348
+ {
22349
+ "kind": "js",
22350
+ "name": "IgcGroupByKey",
22351
+ "declaration": {
22352
+ "name": "IgcGroupByKey"
22353
+ }
22354
+ },
22355
+ {
22356
+ "kind": "js",
22357
+ "name": "IgcGroupByRowSelectorTemplateDetails",
22358
+ "declaration": {
22359
+ "name": "IgcGroupByRowSelectorTemplateDetails"
22360
+ }
22361
+ },
22362
+ {
22363
+ "kind": "js",
22364
+ "name": "IgcGridValidationState",
22365
+ "declaration": {
22366
+ "name": "IgcGridValidationState"
22367
+ }
22368
+ },
22369
+ {
22370
+ "kind": "js",
22371
+ "name": "IgcGridToolbarTemplateContext",
22372
+ "declaration": {
22373
+ "name": "IgcGridToolbarTemplateContext"
22374
+ }
22375
+ },
22376
+ {
22377
+ "kind": "js",
22378
+ "name": "IgcGridPaginatorTemplateContext",
22379
+ "declaration": {
22380
+ "name": "IgcGridPaginatorTemplateContext"
22381
+ }
22382
+ },
22383
+ {
22384
+ "kind": "js",
22385
+ "name": "IgcGridCreatedEventArgs",
22386
+ "declaration": {
22387
+ "name": "IgcGridCreatedEventArgs"
22388
+ }
22389
+ },
22390
+ {
22391
+ "kind": "js",
22392
+ "name": "IgcPivotDimensionStrategy",
22393
+ "declaration": {
22394
+ "name": "IgcPivotDimensionStrategy"
22395
+ }
22396
+ },
22397
+ {
22398
+ "kind": "js",
22399
+ "name": "IgcPivotKeys",
22400
+ "declaration": {
22401
+ "name": "IgcPivotKeys"
22402
+ }
22403
+ },
22404
+ {
22405
+ "kind": "js",
22406
+ "name": "PivotRowLayoutType",
22407
+ "declaration": {
22408
+ "name": "PivotRowLayoutType"
22409
+ }
22410
+ },
22411
+ {
22412
+ "kind": "js",
22413
+ "name": "PivotSummaryPosition",
22414
+ "declaration": {
22415
+ "name": "PivotSummaryPosition"
22416
+ }
22417
+ },
22418
+ {
22419
+ "kind": "js",
22420
+ "name": "IgcPositionStrategy",
22421
+ "declaration": {
22422
+ "name": "IgcPositionStrategy"
22423
+ }
22424
+ },
22425
+ {
22426
+ "kind": "js",
22427
+ "name": "IgcScrollStrategy",
22428
+ "declaration": {
22429
+ "name": "IgcScrollStrategy"
22430
+ }
22431
+ },
22432
+ {
22433
+ "kind": "js",
22434
+ "name": "IgcBaseExporter",
22435
+ "declaration": {
22436
+ "name": "IgcBaseExporter"
22437
+ }
22438
+ },
22439
+ {
22440
+ "kind": "js",
22441
+ "name": "IgcCancelableBrowserEventArgs",
22442
+ "declaration": {
22443
+ "name": "IgcCancelableBrowserEventArgs"
22444
+ }
22445
+ },
22446
+ {
22447
+ "kind": "js",
22448
+ "name": "ColumnPinningPosition",
22449
+ "declaration": {
22450
+ "name": "ColumnPinningPosition"
22451
+ }
22452
+ },
22453
+ {
22454
+ "kind": "js",
22455
+ "name": "RowPinningPosition",
22456
+ "declaration": {
22457
+ "name": "RowPinningPosition"
22458
+ }
22459
+ },
22460
+ {
22461
+ "kind": "js",
22462
+ "name": "PivotAggregationType",
22463
+ "declaration": {
22464
+ "name": "PivotAggregationType"
22465
+ }
22466
+ },
22467
+ {
22468
+ "kind": "js",
22469
+ "name": "IgcFieldPipeArgs",
22470
+ "declaration": {
22471
+ "name": "IgcFieldPipeArgs"
22472
+ }
22473
+ },
22474
+ {
22475
+ "kind": "js",
22476
+ "name": "IgcFieldEditorOptions",
22477
+ "declaration": {
22478
+ "name": "IgcFieldEditorOptions"
22479
+ }
22480
+ },
22481
+ {
22482
+ "kind": "js",
22483
+ "name": "ValidationStatus",
22484
+ "declaration": {
22485
+ "name": "ValidationStatus"
22486
+ }
22487
+ },
22488
+ {
22489
+ "kind": "js",
22490
+ "name": "IgcCancelableEventArgs",
22491
+ "declaration": {
22492
+ "name": "IgcCancelableEventArgs"
22493
+ }
22494
+ },
22495
+ {
22496
+ "kind": "js",
22497
+ "name": "GridKeydownTargetType",
22498
+ "declaration": {
22499
+ "name": "GridKeydownTargetType"
22500
+ }
22501
+ },
22502
+ {
22503
+ "kind": "js",
22504
+ "name": "IgcExporterOptionsBase",
22505
+ "declaration": {
22506
+ "name": "IgcExporterOptionsBase"
22507
+ }
22508
+ },
22509
+ {
22510
+ "kind": "js",
22511
+ "name": "IgcHeaderType",
22512
+ "declaration": {
22513
+ "name": "IgcHeaderType"
22514
+ }
22515
+ },
22516
+ {
22517
+ "kind": "js",
22518
+ "name": "IgcPageCancellableEventArgs",
22519
+ "declaration": {
22520
+ "name": "IgcPageCancellableEventArgs"
22521
+ }
22522
+ },
22523
+ {
22524
+ "kind": "js",
22525
+ "name": "IgcPageEventArgs",
22526
+ "declaration": {
22527
+ "name": "IgcPageEventArgs"
22528
+ }
22529
+ },
22530
+ {
22531
+ "kind": "js",
22532
+ "name": "IgcPaginatorResourceStrings",
22533
+ "declaration": {
22534
+ "name": "IgcPaginatorResourceStrings"
22535
+ }
22536
+ },
22537
+ {
22538
+ "kind": "js",
22539
+ "name": "SortingOptionsMode",
22540
+ "declaration": {
22541
+ "name": "SortingOptionsMode"
22542
+ }
22543
+ },
22544
+ {
22545
+ "kind": "js",
22546
+ "name": "IgcHeadSelectorTemplateDetails",
22547
+ "declaration": {
22548
+ "name": "IgcHeadSelectorTemplateDetails"
22549
+ }
22550
+ },
22551
+ {
22552
+ "kind": "js",
22553
+ "name": "IgcRowSelectorTemplateDetails",
22554
+ "declaration": {
22555
+ "name": "IgcRowSelectorTemplateDetails"
22556
+ }
22557
+ },
22558
+ {
22559
+ "kind": "js",
22560
+ "name": "IgcBaseSearchInfo",
22561
+ "declaration": {
22562
+ "name": "IgcBaseSearchInfo"
22563
+ }
22564
+ },
22565
+ {
22566
+ "kind": "js",
22567
+ "name": "IgcValidationErrors",
22568
+ "declaration": {
22569
+ "name": "IgcValidationErrors"
22570
+ }
22571
+ },
22572
+ {
22573
+ "kind": "js",
22574
+ "name": "IgcPositionSettings",
22575
+ "declaration": {
22576
+ "name": "IgcPositionSettings"
22577
+ }
22578
+ },
22579
+ {
22580
+ "kind": "js",
22581
+ "name": "IgcRowExportingEventArgs",
22582
+ "declaration": {
22583
+ "name": "IgcRowExportingEventArgs"
22584
+ }
22585
+ },
22586
+ {
22587
+ "kind": "js",
22588
+ "name": "IgcColumnExportingEventArgs",
22589
+ "declaration": {
22590
+ "name": "IgcColumnExportingEventArgs"
22591
+ }
22592
+ },
22593
+ {
22594
+ "kind": "js",
22595
+ "name": "HorizontalAlignment",
22596
+ "declaration": {
22597
+ "name": "HorizontalAlignment"
22598
+ }
22599
+ },
22600
+ {
22601
+ "kind": "js",
22602
+ "name": "VerticalAlignment",
22603
+ "declaration": {
22604
+ "name": "VerticalAlignment"
22605
+ }
22606
+ },
22607
+ {
22608
+ "kind": "js",
22609
+ "name": "IgcSize",
22610
+ "declaration": {
22611
+ "name": "IgcSize"
22612
+ }
22613
+ }
21191
22614
  ]
21192
22615
  }
21193
22616
  ]