igniteui-grid-lite 0.3.1-alpha.8 → 0.4.0-beta.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 (59) hide show
  1. package/README.md +2 -0
  2. package/components/cell.js +3 -1
  3. package/components/cell.js.map +1 -1
  4. package/components/column.d.ts +2 -2
  5. package/components/column.js.map +1 -1
  6. package/components/filter-row.js.map +1 -1
  7. package/components/grid.d.ts +7 -4
  8. package/components/grid.js +3 -3
  9. package/components/grid.js.map +1 -1
  10. package/components/row.js +2 -1
  11. package/components/row.js.map +1 -1
  12. package/components/virtualizer.d.ts +1 -0
  13. package/components/virtualizer.js +4 -0
  14. package/components/virtualizer.js.map +1 -1
  15. package/controllers/filter.js.map +1 -1
  16. package/controllers/navigation.d.ts +7 -4
  17. package/controllers/navigation.js +18 -1
  18. package/controllers/navigation.js.map +1 -1
  19. package/custom-elements.json +142 -25
  20. package/docs/assets/hierarchy.js +1 -1
  21. package/docs/assets/navigation.js +1 -1
  22. package/docs/assets/search.js +1 -1
  23. package/docs/classes/IgcGridLite.html +12 -9
  24. package/docs/classes/IgcGridLiteColumn.html +2 -2
  25. package/docs/hierarchy.html +1 -1
  26. package/docs/index.html +2 -2
  27. package/docs/interfaces/BaseFilterExpression.html +3 -3
  28. package/docs/interfaces/IgcFilteredEvent.html +3 -3
  29. package/docs/interfaces/IgcFilteringEvent.html +3 -3
  30. package/docs/interfaces/IgcGridLiteEventMap.html +3 -3
  31. package/docs/interfaces/IgcHeaderContext.html +2 -2
  32. package/docs/modules.html +1 -1
  33. package/docs/types/BaseSortComparer.html +2 -2
  34. package/docs/types/Keys.html +1 -1
  35. package/docs/types/PropertyType.html +1 -1
  36. package/index.d.ts +1 -1
  37. package/index.js.map +1 -1
  38. package/internal/theming.js +1 -1
  39. package/internal/theming.js.map +1 -1
  40. package/internal/types.d.ts +10 -6
  41. package/internal/types.js.map +1 -1
  42. package/internal/utils.d.ts +10 -1
  43. package/internal/utils.js +11 -0
  44. package/internal/utils.js.map +1 -1
  45. package/internal/virt-flow-layout.d.ts +4 -0
  46. package/internal/virt-flow-layout.js +15 -0
  47. package/internal/virt-flow-layout.js.map +1 -0
  48. package/operations/base.d.ts +3 -3
  49. package/operations/base.js +2 -1
  50. package/operations/base.js.map +1 -1
  51. package/operations/filter/state.d.ts +3 -3
  52. package/operations/filter/types.d.ts +3 -3
  53. package/operations/filter/types.js.map +1 -1
  54. package/operations/sort/types.d.ts +2 -2
  55. package/operations/sort/types.js.map +1 -1
  56. package/package.json +1 -1
  57. package/styles/body-cell/body-cell.css.js +1 -1
  58. package/styles/body-cell/body-cell.css.js.map +1 -1
  59. package/docs/types/BasePropertyType.html +0 -2
@@ -86,14 +86,6 @@
86
86
  "module": "./internal/types.js"
87
87
  }
88
88
  },
89
- {
90
- "kind": "js",
91
- "name": "BasePropertyType",
92
- "declaration": {
93
- "name": "BasePropertyType",
94
- "module": "./internal/types.js"
95
- }
96
- },
97
89
  {
98
90
  "kind": "js",
99
91
  "name": "ColumnConfiguration",
@@ -449,7 +441,7 @@
449
441
  "kind": "field",
450
442
  "name": "field",
451
443
  "type": {
452
- "text": "keyof T"
444
+ "text": "Keys<T>"
453
445
  },
454
446
  "privacy": "public",
455
447
  "description": "The field from the data for this column.",
@@ -584,7 +576,7 @@
584
576
  {
585
577
  "name": "field",
586
578
  "type": {
587
- "text": "keyof T"
579
+ "text": "Keys<T>"
588
580
  },
589
581
  "description": "The field from the data for this column.",
590
582
  "fieldName": "field"
@@ -1341,41 +1333,50 @@
1341
1333
  },
1342
1334
  {
1343
1335
  "kind": "method",
1344
- "name": "getColumn",
1336
+ "name": "navigateTo",
1345
1337
  "privacy": "public",
1346
- "return": {
1347
- "type": {
1348
- "text": "ColumnConfiguration<T> | undefined"
1349
- }
1350
- },
1351
1338
  "parameters": [
1352
1339
  {
1353
- "name": "id",
1340
+ "name": "row",
1354
1341
  "type": {
1355
- "text": "Keys<T> | number"
1356
- }
1342
+ "text": "number"
1343
+ },
1344
+ "description": "The row index to navigate to"
1345
+ },
1346
+ {
1347
+ "name": "column",
1348
+ "optional": true,
1349
+ "type": {
1350
+ "text": "Keys<T>"
1351
+ },
1352
+ "description": "The column field to navigate to, if any"
1353
+ },
1354
+ {
1355
+ "name": "activate",
1356
+ "default": "false",
1357
+ "description": "Optionally also activate the navigated cell"
1357
1358
  }
1358
1359
  ],
1359
- "description": "Returns a ColumnConfiguration for a given column."
1360
+ "description": "Navigates to a position in the grid based on provided row index and column field."
1360
1361
  },
1361
1362
  {
1362
1363
  "kind": "method",
1363
- "name": "updateColumns",
1364
+ "name": "getColumn",
1364
1365
  "privacy": "public",
1365
1366
  "return": {
1366
1367
  "type": {
1367
- "text": "void"
1368
+ "text": "ColumnConfiguration<T> | undefined"
1368
1369
  }
1369
1370
  },
1370
1371
  "parameters": [
1371
1372
  {
1372
- "name": "columns",
1373
+ "name": "id",
1373
1374
  "type": {
1374
- "text": "ColumnConfiguration<T> | ColumnConfiguration<T>[]"
1375
+ "text": "Keys<T> | number"
1375
1376
  }
1376
1377
  }
1377
1378
  ],
1378
- "description": "Updates the column configuration of the grid."
1379
+ "description": "Returns a ColumnConfiguration for a given column."
1379
1380
  },
1380
1381
  {
1381
1382
  "kind": "method",
@@ -1934,6 +1935,15 @@
1934
1935
  "static": true,
1935
1936
  "readonly": true
1936
1937
  },
1938
+ {
1939
+ "kind": "field",
1940
+ "name": "layout",
1941
+ "type": {
1942
+ "text": "LitVirtualizer['layout']"
1943
+ },
1944
+ "privacy": "public",
1945
+ "default": "{ type: IgcFlowLayout, }"
1946
+ },
1937
1947
  {
1938
1948
  "kind": "method",
1939
1949
  "name": "register",
@@ -2534,6 +2544,19 @@
2534
2544
  }
2535
2545
  ]
2536
2546
  },
2547
+ {
2548
+ "kind": "method",
2549
+ "name": "queryRowByIndex",
2550
+ "privacy": "protected",
2551
+ "parameters": [
2552
+ {
2553
+ "name": "index",
2554
+ "type": {
2555
+ "text": "number"
2556
+ }
2557
+ }
2558
+ ]
2559
+ },
2537
2560
  {
2538
2561
  "kind": "method",
2539
2562
  "name": "scrollToCell",
@@ -2602,6 +2625,30 @@
2602
2625
  }
2603
2626
  }
2604
2627
  ]
2628
+ },
2629
+ {
2630
+ "kind": "method",
2631
+ "name": "navigateTo",
2632
+ "privacy": "public",
2633
+ "parameters": [
2634
+ {
2635
+ "name": "row",
2636
+ "type": {
2637
+ "text": "number"
2638
+ }
2639
+ },
2640
+ {
2641
+ "name": "column",
2642
+ "optional": true,
2643
+ "type": {
2644
+ "text": "Keys<T>"
2645
+ }
2646
+ },
2647
+ {
2648
+ "name": "activate",
2649
+ "default": "false"
2650
+ }
2651
+ ]
2605
2652
  }
2606
2653
  ]
2607
2654
  }
@@ -3854,6 +3901,32 @@
3854
3901
  "kind": "javascript-module",
3855
3902
  "path": "src/internal/utils.ts",
3856
3903
  "declarations": [
3904
+ {
3905
+ "kind": "function",
3906
+ "name": "resolveFieldValue",
3907
+ "return": {
3908
+ "type": {
3909
+ "text": ""
3910
+ }
3911
+ },
3912
+ "parameters": [
3913
+ {
3914
+ "name": "obj",
3915
+ "type": {
3916
+ "text": "T"
3917
+ },
3918
+ "description": "The object to resolve the value from."
3919
+ },
3920
+ {
3921
+ "name": "path",
3922
+ "type": {
3923
+ "text": "Keys<T>"
3924
+ },
3925
+ "description": "The path to the property, can be a simple key or dot-separated path."
3926
+ }
3927
+ ],
3928
+ "description": "Resolves a value from an object using a path string.\nSupports nested properties using dot notation (e.g., 'prop.nestedProp')."
3929
+ },
3857
3930
  {
3858
3931
  "kind": "function",
3859
3932
  "name": "applyColumnWidths",
@@ -3987,6 +4060,14 @@
3987
4060
  }
3988
4061
  ],
3989
4062
  "exports": [
4063
+ {
4064
+ "kind": "js",
4065
+ "name": "resolveFieldValue",
4066
+ "declaration": {
4067
+ "name": "resolveFieldValue",
4068
+ "module": "src/internal/utils.ts"
4069
+ }
4070
+ },
3990
4071
  {
3991
4072
  "kind": "js",
3992
4073
  "name": "applyColumnWidths",
@@ -4053,6 +4134,42 @@
4053
4134
  }
4054
4135
  ]
4055
4136
  },
4137
+ {
4138
+ "kind": "javascript-module",
4139
+ "path": "src/internal/virt-flow-layout.ts",
4140
+ "declarations": [
4141
+ {
4142
+ "kind": "class",
4143
+ "description": "",
4144
+ "name": "IgcFlowLayout",
4145
+ "members": [
4146
+ {
4147
+ "kind": "field",
4148
+ "name": "measureChildren",
4149
+ "type": {
4150
+ "text": "boolean"
4151
+ },
4152
+ "privacy": "public",
4153
+ "readonly": true
4154
+ }
4155
+ ],
4156
+ "superclass": {
4157
+ "name": "FlowLayout",
4158
+ "package": "@lit-labs/virtualizer/layouts/flow.js"
4159
+ }
4160
+ }
4161
+ ],
4162
+ "exports": [
4163
+ {
4164
+ "kind": "js",
4165
+ "name": "IgcFlowLayout",
4166
+ "declaration": {
4167
+ "name": "IgcFlowLayout",
4168
+ "module": "src/internal/virt-flow-layout.ts"
4169
+ }
4170
+ }
4171
+ ]
4172
+ },
4056
4173
  {
4057
4174
  "kind": "javascript-module",
4058
4175
  "path": "src/internal/watch.ts",
@@ -1 +1 @@
1
- window.hierarchyData = "eJx1kEEKgzAQRe/y17ESpbVk2S5KoTcoLkKMGhoTyMSV5O4l2EqhuJnFzH+84S8I3keCePKmbhmC7q1W0XhHEAt4Hk5OGgL3Qd2C6R4m6qu38+TA8DKug+DVmWEOFgLKSiJN5V/4MMbJgq0BCETqikwX6yIx8Kb+sV0kfcird70Z5iDzV5uzOp6+TuOiDr1Umsodale+ofk4GtsF7XIXbUrpDX9bYGg="
1
+ window.hierarchyData = "eJx1kEEKgzAQRe/y17ESwVqyrItS6A2Ki5BEDY0JZOJKvHsJtlIobmYx8x9v+AtiCIkgnrypO4ZoemdUssETxAKeh5eTgcB9ULdo9cMm0wY3Tx4ML+s1BK8uDHN0EFBOEhkq/8KnMU0ObAtAIJEuMl1si5WBN/WP7SrpQ7bB93aYo8xf7c6qPn+d1icTe6kMlQfUoXxH83G0Tkfjcxfduq5vgpVgbA=="
@@ -1 +1 @@
1
- window.navigationData = "eJyVlV1vwiAUhv8L12ZOE/fh5apOsy0zcXfLLkh7rEQKBHCxWfbfl9p2QcpHe8v78lAO57z9/EEazhrN0SZPnyXJXokGNEIC6wOao5RipUCNDfHmoAuKRuhIWIbmk+nD78jFSDg9FSxIqi0h3hNWjSvhbE/yk8SacINKmAa5xymoscd7jZ/O7pz4HZd6yBEdf+yYFaEa5PIsJCgV4tvGGHiTpwlQmnB2WfRhr20xaHU9wvIen9txhtALrPGWCKCEQbzaXnfoiLa3mu96F9UG5eS7rSH4Jk/r54Fs+Q3MXW3b1AtYlTBObF0RZHuxi/cNCx/U9kWwa8AZyFCj2aZYm20lFyB1+VEKI3N0KZrmMnWLdft4P5lNHW2b8EJgCdLFM/UYLxg7NTKeNh5qIG1McixkOnRzYtacH22srQ/hbbHEhQoRa0cfpuu92/XY/noSEkmqecA25Vrtx3KlnEnzZluH58vimhaM4A7rBcpOtau12L7QTA2Zp9AsDZmjJl0XRELqanVb78nzP1rsj+Qk7jTWnXL9C27C1x+joCzT"
1
+ window.navigationData = "eJyV1V1PwjAUBuD/0msiQoIfXDpQiBpJ8M540WyH0dC1TVsMi/G/mzGmpZ/jduft0607O/v4RhoOGk3RssyfJCleiAY0QALrLZqinGKlQA2N4tVWVxQN0I6wAk1H47ufgc/ION1XLCq1kZj3gNUplXG2IeVeYk24oRKmQW5wDmoYyJ7z48mNl19zqS/ZwsmntnkkVIOcH4QEpWK+HUzByzLPgNKMs+PFEHseS6HN4xFW9rhdJxmjZ1jjFRFACYP0aQfTsS263jrd15toFiiv74/G8GWZt68HivkXMP9p26FeYHOEabFLJcjuwY7ZVyxCqJ1LsAvABchYo9mhPm2W8UpgCfIf1LUwmqurW9b1/e1oMja86JhoyfR0CKiR6WDKqaHg6GaHLzjf2axdv8RbYYkrFRPbRB/zvRbgk5rrqfVt52aSNP2LbeW82s/yTSVTC84ixwvNzlaLjkzHeobaOe3mWmrdSnIBUte+MzZrKSf2LV3yHZ2m4YxIyH2tbtd7euGXlvqDeMW1xto5rr+CX/j8BUjNEYg="
@@ -1 +1 @@
1
- window.searchData = "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";
1
+ window.searchData = "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";
@@ -19,8 +19,8 @@ the ability to template cells and headers and column hiding.</p>
19
19
  <a href="#clearsort" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>clear<wbr/>Sort</span></a>
20
20
  <a href="#filter" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>filter</span></a>
21
21
  <a href="#getcolumn" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>get<wbr/>Column</span></a>
22
+ <a href="#navigateto" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>navigate<wbr/>To</span></a>
22
23
  <a href="#sort" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>sort</span></a>
23
- <a href="#updatecolumns" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>update<wbr/>Columns</span></a>
24
24
  </div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">styles</h3><div class="tsd-index-list"><a href="#styles" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>styles</span></a>
25
25
  </div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Other"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Other</h2></summary><section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="autogenerate"><span>auto<wbr/>Generate</span><a href="#autogenerate" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">autoGenerate</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = false</span></div><div class="tsd-comment tsd-typography"><p>Whether the grid will try to &quot;resolve&quot; its column configuration based on the passed
26
26
  data source.</p>
@@ -48,13 +48,16 @@ chunk of elements in the DOM.</p>
48
48
  </div></div></div></li></ul></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="sortingexpressions"><span>sorting<wbr/>Expressions</span><a href="#sortingexpressions" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li><div class="tsd-signature" id="sortingexpressionssortingexpressions"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">sortingExpressions</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="../types/SortingExpression.html" class="tsd-signature-type tsd-kind-type-alias">SortingExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Get the sort state for the grid.</p>
49
49
  </div><h4 class="tsd-returns-title">Returns <a href="../types/SortingExpression.html" class="tsd-signature-type tsd-kind-type-alias">SortingExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span></h4></div></li><li><div class="tsd-signature" id="sortingexpressionssortingexpressions-1"><span class="tsd-signature-keyword">set</span> <span class="tsd-kind-set-signature">sortingExpressions</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">expressions</span><span class="tsd-signature-symbol">:</span> <a href="../types/SortingExpression.html" class="tsd-signature-type tsd-kind-type-alias">SortingExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Set the sort state for the grid.</p>
50
50
  </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">expressions</span>: <a href="../types/SortingExpression.html" class="tsd-signature-type tsd-kind-type-alias">SortingExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></div></li></ul></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="totalitems"><span>total<wbr/>Items</span><a href="#totalitems" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li><div class="tsd-signature" id="totalitemstotalitems"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">totalItems</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>The total number of items in the <a href="#dataview" class="tsd-kind-accessor">IgcGridLite.dataView</a> collection.</p>
51
- </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4></div></li></ul></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="clearfilter"><span>clear<wbr/>Filter</span><a href="#clearfilter" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class=""><div class="tsd-signature tsd-anchor-link" id="clearfilter-1"><span class="tsd-kind-call-signature">clearFilter</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">key</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-keyword">keyof</span> <a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#clearfilter-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Resets the current filter state of the control.</p>
52
- </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><code class="tsd-tag">Optional</code><span class="tsd-kind-parameter">key</span>: <span class="tsd-signature-keyword">keyof</span> <a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></div></li></ul></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="clearsort"><span>clear<wbr/>Sort</span><a href="#clearsort" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class=""><div class="tsd-signature tsd-anchor-link" id="clearsort-1"><span class="tsd-kind-call-signature">clearSort</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">key</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-keyword">keyof</span> <a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#clearsort-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Resets the current sort state of the control.</p>
53
- </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><code class="tsd-tag">Optional</code><span class="tsd-kind-parameter">key</span>: <span class="tsd-signature-keyword">keyof</span> <a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></div></li></ul></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="filter"><span>filter</span><a href="#filter" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class=""><div class="tsd-signature tsd-anchor-link" id="filter-1"><span class="tsd-kind-call-signature">filter</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">config</span><span class="tsd-signature-symbol">:</span> <a href="../types/FilterExpression.html" class="tsd-signature-type tsd-kind-type-alias">FilterExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span> <span class="tsd-signature-symbol">|</span> <a href="../types/FilterExpression.html" class="tsd-signature-type tsd-kind-type-alias">FilterExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#filter-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Performs a filter operation in the grid based on the passed expression(s).</p>
54
- </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">config</span>: <a href="../types/FilterExpression.html" class="tsd-signature-type tsd-kind-type-alias">FilterExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span> <span class="tsd-signature-symbol">|</span> <a href="../types/FilterExpression.html" class="tsd-signature-type tsd-kind-type-alias">FilterExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></div></li></ul></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="getcolumn"><span>get<wbr/>Column</span><a href="#getcolumn" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class=""><div class="tsd-signature tsd-anchor-link" id="getcolumn-1"><span class="tsd-kind-call-signature">getColumn</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">id</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-keyword">keyof</span> <a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <a href="../types/ColumnConfiguration.html" class="tsd-signature-type tsd-kind-type-alias">ColumnConfiguration</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span><a href="#getcolumn-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Returns a <a href="../types/ColumnConfiguration.html" class="tsd-kind-type-alias">ColumnConfiguration</a> for a given column.</p>
55
- </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">id</span>: <span class="tsd-signature-type">number</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-keyword">keyof</span> <a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a></span></li></ul></div><h4 class="tsd-returns-title">Returns <a href="../types/ColumnConfiguration.html" class="tsd-signature-type tsd-kind-type-alias">ColumnConfiguration</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></h4></div></li></ul></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="sort"><span>sort</span><a href="#sort" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class=""><div class="tsd-signature tsd-anchor-link" id="sort-1"><span class="tsd-kind-call-signature">sort</span><span class="tsd-signature-symbol">(</span><br/>    <span class="tsd-kind-parameter">expressions</span><span class="tsd-signature-symbol">:</span><br/>        <span class="tsd-signature-symbol">|</span> <a href="../types/SortingExpression.html" class="tsd-signature-type tsd-kind-type-alias">SortingExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">,</span> <span class="tsd-signature-keyword">keyof</span> <a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><br/>        <span class="tsd-signature-symbol">|</span> <a href="../types/SortingExpression.html" class="tsd-signature-type tsd-kind-type-alias">SortingExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">,</span> <span class="tsd-signature-keyword">keyof</span> <a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">,</span><br/><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#sort-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Performs a sort operation in the grid based on the passed expression(s).</p>
56
- </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">expressions</span>: <a href="../types/SortingExpression.html" class="tsd-signature-type tsd-kind-type-alias">SortingExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">,</span> <span class="tsd-signature-keyword">keyof</span> <a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span> <span class="tsd-signature-symbol">|</span> <a href="../types/SortingExpression.html" class="tsd-signature-type tsd-kind-type-alias">SortingExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">,</span> <span class="tsd-signature-keyword">keyof</span> <a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></div></li></ul></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="updatecolumns"><span>update<wbr/>Columns</span><a href="#updatecolumns" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class=""><div class="tsd-signature tsd-anchor-link" id="updatecolumns-1"><span class="tsd-kind-call-signature">updateColumns</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">columns</span><span class="tsd-signature-symbol">:</span> <a href="../types/ColumnConfiguration.html" class="tsd-signature-type tsd-kind-type-alias">ColumnConfiguration</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span> <span class="tsd-signature-symbol">|</span> <a href="../types/ColumnConfiguration.html" class="tsd-signature-type tsd-kind-type-alias">ColumnConfiguration</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#updatecolumns-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Updates the column configuration of the grid.</p>
57
- </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">columns</span>: <a href="../types/ColumnConfiguration.html" class="tsd-signature-type tsd-kind-type-alias">ColumnConfiguration</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span> <span class="tsd-signature-symbol">|</span> <a href="../types/ColumnConfiguration.html" class="tsd-signature-type tsd-kind-type-alias">ColumnConfiguration</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></div></li></ul></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-styles"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>styles</h2></summary><section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="styles"><code class="tsd-tag">Static</code><span>styles</span><a href="#styles" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">styles</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">CSSResult</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ...</span></div><div class="tsd-comment tsd-typography"><p>Array of styles to apply to the element. The styles should be defined
51
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4></div></li></ul></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="clearfilter"><span>clear<wbr/>Filter</span><a href="#clearfilter" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class=""><div class="tsd-signature tsd-anchor-link" id="clearfilter-1"><span class="tsd-kind-call-signature">clearFilter</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">key</span><span class="tsd-signature-symbol">?:</span> <a href="../types/Keys.html" class="tsd-signature-type tsd-kind-type-alias">Keys</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#clearfilter-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Resets the current filter state of the control.</p>
52
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><code class="tsd-tag">Optional</code><span class="tsd-kind-parameter">key</span>: <a href="../types/Keys.html" class="tsd-signature-type tsd-kind-type-alias">Keys</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></div></li></ul></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="clearsort"><span>clear<wbr/>Sort</span><a href="#clearsort" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class=""><div class="tsd-signature tsd-anchor-link" id="clearsort-1"><span class="tsd-kind-call-signature">clearSort</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">key</span><span class="tsd-signature-symbol">?:</span> <a href="../types/Keys.html" class="tsd-signature-type tsd-kind-type-alias">Keys</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#clearsort-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Resets the current sort state of the control.</p>
53
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><code class="tsd-tag">Optional</code><span class="tsd-kind-parameter">key</span>: <a href="../types/Keys.html" class="tsd-signature-type tsd-kind-type-alias">Keys</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></div></li></ul></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="filter"><span>filter</span><a href="#filter" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class=""><div class="tsd-signature tsd-anchor-link" id="filter-1"><span class="tsd-kind-call-signature">filter</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">config</span><span class="tsd-signature-symbol">:</span> <a href="../types/FilterExpression.html" class="tsd-signature-type tsd-kind-type-alias">FilterExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span> <span class="tsd-signature-symbol">|</span> <a href="../types/FilterExpression.html" class="tsd-signature-type tsd-kind-type-alias">FilterExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#filter-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Performs a filter operation in the grid based on the passed expression(s).</p>
54
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">config</span>: <a href="../types/FilterExpression.html" class="tsd-signature-type tsd-kind-type-alias">FilterExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span> <span class="tsd-signature-symbol">|</span> <a href="../types/FilterExpression.html" class="tsd-signature-type tsd-kind-type-alias">FilterExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></div></li></ul></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="getcolumn"><span>get<wbr/>Column</span><a href="#getcolumn" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class=""><div class="tsd-signature tsd-anchor-link" id="getcolumn-1"><span class="tsd-kind-call-signature">getColumn</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">id</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span> <span class="tsd-signature-symbol">|</span> <a href="../types/Keys.html" class="tsd-signature-type tsd-kind-type-alias">Keys</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <a href="../types/ColumnConfiguration.html" class="tsd-signature-type tsd-kind-type-alias">ColumnConfiguration</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span><a href="#getcolumn-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Returns a <a href="../types/ColumnConfiguration.html" class="tsd-kind-type-alias">ColumnConfiguration</a> for a given column.</p>
55
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">id</span>: <span class="tsd-signature-type">number</span> <span class="tsd-signature-symbol">|</span> <a href="../types/Keys.html" class="tsd-signature-type tsd-kind-type-alias">Keys</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <a href="../types/ColumnConfiguration.html" class="tsd-signature-type tsd-kind-type-alias">ColumnConfiguration</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></h4></div></li></ul></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="navigateto"><span>navigate<wbr/>To</span><a href="#navigateto" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class=""><div class="tsd-signature tsd-anchor-link" id="navigateto-1"><span class="tsd-kind-call-signature">navigateTo</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">row</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">,</span> <span class="tsd-kind-parameter">column</span><span class="tsd-signature-symbol">?:</span> <a href="../types/Keys.html" class="tsd-signature-type tsd-kind-type-alias">Keys</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">,</span> <span class="tsd-kind-parameter">activate</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">&gt;</span><a href="#navigateto-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Navigates to a position in the grid based on provided row index and column field.</p>
56
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">row</span>: <span class="tsd-signature-type">number</span></span><div class="tsd-comment tsd-typography"><p>The row index to navigate to</p>
57
+ </div></li><li><span><code class="tsd-tag">Optional</code><span class="tsd-kind-parameter">column</span>: <a href="../types/Keys.html" class="tsd-signature-type tsd-kind-type-alias">Keys</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span></span><div class="tsd-comment tsd-typography"><p>The column field to navigate to, if any</p>
58
+ </div></li><li><span><span class="tsd-kind-parameter">activate</span>: <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = false</span></span><div class="tsd-comment tsd-typography"><p>Optionally also activate the navigated cell</p>
59
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">&gt;</span></h4></div></li></ul></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="sort"><span>sort</span><a href="#sort" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class=""><div class="tsd-signature tsd-anchor-link" id="sort-1"><span class="tsd-kind-call-signature">sort</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">expressions</span><span class="tsd-signature-symbol">:</span> <a href="../types/SortingExpression.html" class="tsd-signature-type tsd-kind-type-alias">SortingExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span> <span class="tsd-signature-symbol">|</span> <a href="../types/SortingExpression.html" class="tsd-signature-type tsd-kind-type-alias">SortingExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#sort-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Performs a sort operation in the grid based on the passed expression(s).</p>
60
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">expressions</span>: <a href="../types/SortingExpression.html" class="tsd-signature-type tsd-kind-type-alias">SortingExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span> <span class="tsd-signature-symbol">|</span> <a href="../types/SortingExpression.html" class="tsd-signature-type tsd-kind-type-alias">SortingExpression</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></div></li></ul></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-styles"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>styles</h2></summary><section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="styles"><code class="tsd-tag">Static</code><span>styles</span><a href="#styles" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">styles</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">CSSResult</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = ...</span></div><div class="tsd-comment tsd-typography"><p>Array of styles to apply to the element. The styles should be defined
58
61
  using the css tag function, via constructible stylesheets, or
59
62
  imported from native CSS module scripts.</p>
60
63
  <p>Note on Content Security Policy:</p>
@@ -69,4 +72,4 @@ loading application code:</p>
69
72
  <pre><code class="html"><span class="hl-4">&lt;</span><span class="hl-5">script</span><span class="hl-4">&gt;</span><br/><span class="hl-8"> </span><span class="hl-6">// Generated and unique per request:</span><br/><span class="hl-8"> </span><span class="hl-7">window</span><span class="hl-8">.</span><span class="hl-7">litNonce</span><span class="hl-8"> </span><span class="hl-1">=</span><span class="hl-8"> </span><span class="hl-2">&#39;a1b2c3d4&#39;</span><span class="hl-8">;</span><br/><span class="hl-4">&lt;/</span><span class="hl-5">script</span><span class="hl-4">&gt;</span>
70
73
  </code><button type="button">Copy</button></pre>
71
74
 
72
- </div><div class="tsd-comment tsd-typography"><div class="tsd-tag-nocollapse"><h4 class="tsd-anchor-link" id="nocollapse">Nocollapse<a href="#nocollapse" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4></div></div><aside class="tsd-sources"><p>Overrides EventEmitterBase.styles</p></aside></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Other"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Other</summary><div><a href="#autogenerate"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>auto<wbr/>Generate</span></a><a href="#data"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>data</span></a><a href="#datapipelineconfiguration"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>data<wbr/>Pipeline<wbr/>Configuration</span></a><a href="#sortingoptions"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>sorting<wbr/>Options</span></a><a href="#dataview"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>data<wbr/>View</span></a><a href="#filterexpressions"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>filter<wbr/>Expressions</span></a><a href="#rows"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>rows</span></a><a href="#sortingexpressions"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>sorting<wbr/>Expressions</span></a><a href="#totalitems"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>total<wbr/>Items</span></a><a href="#clearfilter"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>clear<wbr/>Filter</span></a><a href="#clearsort"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>clear<wbr/>Sort</span></a><a href="#filter"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>filter</span></a><a href="#getcolumn"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>get<wbr/>Column</span></a><a href="#sort"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>sort</span></a><a href="#updatecolumns"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>update<wbr/>Columns</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-styles"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>styles</summary><div><a href="#styles"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>styles</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html">igniteui-grid-lite-workspace</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
75
+ </div><div class="tsd-comment tsd-typography"><div class="tsd-tag-nocollapse"><h4 class="tsd-anchor-link" id="nocollapse">Nocollapse<a href="#nocollapse" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4></div></div><aside class="tsd-sources"><p>Overrides EventEmitterBase.styles</p></aside></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Other"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Other</summary><div><a href="#autogenerate"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>auto<wbr/>Generate</span></a><a href="#data"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>data</span></a><a href="#datapipelineconfiguration"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>data<wbr/>Pipeline<wbr/>Configuration</span></a><a href="#sortingoptions"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>sorting<wbr/>Options</span></a><a href="#dataview"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>data<wbr/>View</span></a><a href="#filterexpressions"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>filter<wbr/>Expressions</span></a><a href="#rows"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>rows</span></a><a href="#sortingexpressions"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>sorting<wbr/>Expressions</span></a><a href="#totalitems"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>total<wbr/>Items</span></a><a href="#clearfilter"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>clear<wbr/>Filter</span></a><a href="#clearsort"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>clear<wbr/>Sort</span></a><a href="#filter"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>filter</span></a><a href="#getcolumn"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>get<wbr/>Column</span></a><a href="#navigateto"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>navigate<wbr/>To</span></a><a href="#sort"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>sort</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-styles"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>styles</summary><div><a href="#styles"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>styles</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html">igniteui-grid-lite-workspace</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
@@ -15,7 +15,7 @@
15
15
  </div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">styles</h3><div class="tsd-index-list"><a href="#styles" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>styles</span></a>
16
16
  </div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Other"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Other</h2></summary><section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="celltemplate"><code class="tsd-tag">Optional</code><span>cell<wbr/>Template</span><a href="#celltemplate" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">cellTemplate</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">params</span><span class="tsd-signature-symbol">:</span> <a href="../types/IgcCellContext.html" class="tsd-signature-type tsd-kind-type-alias">IgcCellContext</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span> <span class="tsd-signature-symbol">=&gt;</span> <span class="tsd-signature-type">unknown</span></div><div class="tsd-comment tsd-typography"><p>Custom cell template for the column.</p>
17
17
  </div><aside class="tsd-sources"><p>Implementation of <a href="../interfaces/BaseColumnConfiguration.html">BaseColumnConfiguration</a>.<a href="../interfaces/BaseColumnConfiguration.html#celltemplate">cellTemplate</a></p></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="datatype"><code class="tsd-tag">Optional</code><span>data<wbr/>Type</span><a href="#datatype" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">dataType</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">&quot;string&quot;</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">&quot;number&quot;</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">&quot;boolean&quot;</span><span class="tsd-signature-symbol"> = &#39;string&#39;</span></div><div class="tsd-comment tsd-typography"><p>The data type of the column's values.</p>
18
- </div><aside class="tsd-sources"><p>Implementation of <a href="../interfaces/BaseColumnConfiguration.html">BaseColumnConfiguration</a>.<a href="../interfaces/BaseColumnConfiguration.html#datatype">dataType</a></p></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="field"><span>field</span><a href="#field" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">field</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-keyword">keyof</span> <a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a></div><div class="tsd-comment tsd-typography"><p>The field from the data for this column.</p>
18
+ </div><aside class="tsd-sources"><p>Implementation of <a href="../interfaces/BaseColumnConfiguration.html">BaseColumnConfiguration</a>.<a href="../interfaces/BaseColumnConfiguration.html#datatype">dataType</a></p></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="field"><span>field</span><a href="#field" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">field</span><span class="tsd-signature-symbol">:</span> <a href="../types/Keys.html" class="tsd-signature-type tsd-kind-type-alias">Keys</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span></div><div class="tsd-comment tsd-typography"><p>The field from the data for this column.</p>
19
19
  </div><aside class="tsd-sources"><p>Implementation of <a href="../interfaces/BaseColumnConfiguration.html">BaseColumnConfiguration</a>.<a href="../interfaces/BaseColumnConfiguration.html#field">field</a></p></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="filterable"><span>filterable</span><a href="#filterable" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">filterable</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = false</span></div><div class="tsd-comment tsd-typography"><p>Indicates whether the column is filterable.</p>
20
20
  </div><aside class="tsd-sources"><p>Implementation of <a href="../interfaces/BaseColumnConfiguration.html">BaseColumnConfiguration</a>.<a href="../interfaces/BaseColumnConfiguration.html#filterable">filterable</a></p></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="filteringcasesensitive"><span>filtering<wbr/>Case<wbr/>Sensitive</span><a href="#filteringcasesensitive" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">filteringCaseSensitive</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = false</span></div><div class="tsd-comment tsd-typography"><p>Whether filter operations will be case sensitive.</p>
21
21
  </div><aside class="tsd-sources"><p>Implementation of <a href="../interfaces/BaseColumnConfiguration.html">BaseColumnConfiguration</a>.<a href="../interfaces/BaseColumnConfiguration.html#filteringcasesensitive">filteringCaseSensitive</a></p></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="header"><code class="tsd-tag">Optional</code><span>header</span><a href="#header" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">header</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>The header text of the column.</p>
@@ -23,7 +23,7 @@
23
23
  </div><aside class="tsd-sources"><p>Implementation of <a href="../interfaces/BaseColumnConfiguration.html">BaseColumnConfiguration</a>.<a href="../interfaces/BaseColumnConfiguration.html#headertemplate">headerTemplate</a></p></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="hidden"><span>hidden</span><a href="#hidden" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">hidden</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = false</span></div><div class="tsd-comment tsd-typography"><p>Indicates whether the column is hidden.</p>
24
24
  </div><aside class="tsd-sources"><p>Implementation of <a href="../interfaces/BaseColumnConfiguration.html">BaseColumnConfiguration</a>.<a href="../interfaces/BaseColumnConfiguration.html#hidden">hidden</a></p><p>Overrides LitElement.hidden</p></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="resizable"><span>resizable</span><a href="#resizable" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">resizable</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = false</span></div><div class="tsd-comment tsd-typography"><p>Indicates whether the column is resizable.</p>
25
25
  </div><aside class="tsd-sources"><p>Implementation of <a href="../interfaces/BaseColumnConfiguration.html">BaseColumnConfiguration</a>.<a href="../interfaces/BaseColumnConfiguration.html#resizable">resizable</a></p></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="sortable"><span>sortable</span><a href="#sortable" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">sortable</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = false</span></div><div class="tsd-comment tsd-typography"><p>Indicates whether the column is sortable.</p>
26
- </div><aside class="tsd-sources"><p>Implementation of <a href="../interfaces/BaseColumnConfiguration.html">BaseColumnConfiguration</a>.<a href="../interfaces/BaseColumnConfiguration.html#sortable">sortable</a></p></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="sortconfiguration"><code class="tsd-tag">Optional</code><span>sort<wbr/>Configuration</span><a href="#sortconfiguration" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">sortConfiguration</span><span class="tsd-signature-symbol">?:</span> <a href="../types/ColumnSortConfiguration.html" class="tsd-signature-type tsd-kind-type-alias">ColumnSortConfiguration</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">,</span> <span class="tsd-signature-keyword">keyof</span> <a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span></div><div class="tsd-comment tsd-typography"><p>Sort configuration for the column (e.g., custom comparer).</p>
26
+ </div><aside class="tsd-sources"><p>Implementation of <a href="../interfaces/BaseColumnConfiguration.html">BaseColumnConfiguration</a>.<a href="../interfaces/BaseColumnConfiguration.html#sortable">sortable</a></p></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="sortconfiguration"><code class="tsd-tag">Optional</code><span>sort<wbr/>Configuration</span><a href="#sortconfiguration" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">sortConfiguration</span><span class="tsd-signature-symbol">?:</span> <a href="../types/ColumnSortConfiguration.html" class="tsd-signature-type tsd-kind-type-alias">ColumnSortConfiguration</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="#t">T</a><span class="tsd-signature-symbol">&gt;</span></div><div class="tsd-comment tsd-typography"><p>Sort configuration for the column (e.g., custom comparer).</p>
27
27
  </div><aside class="tsd-sources"><p>Implementation of <a href="../interfaces/BaseColumnConfiguration.html">BaseColumnConfiguration</a>.<a href="../interfaces/BaseColumnConfiguration.html#sortconfiguration">sortConfiguration</a></p></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="sortingcasesensitive"><span>sorting<wbr/>Case<wbr/>Sensitive</span><a href="#sortingcasesensitive" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">sortingCaseSensitive</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = false</span></div><div class="tsd-comment tsd-typography"><p>Whether sort operations will be case sensitive.</p>
28
28
  </div><aside class="tsd-sources"><p>Implementation of <a href="../interfaces/BaseColumnConfiguration.html">BaseColumnConfiguration</a>.<a href="../interfaces/BaseColumnConfiguration.html#sortingcasesensitive">sortingCaseSensitive</a></p></aside></section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="width"><code class="tsd-tag">Optional</code><span>width</span><a href="#width" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">width</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>The width of the column.</p>
29
29
  </div><aside class="tsd-sources"><p>Implementation of <a href="../interfaces/BaseColumnConfiguration.html">BaseColumnConfiguration</a>.<a href="../interfaces/BaseColumnConfiguration.html#width">width</a></p></aside></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-styles"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>styles</h2></summary><section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="styles"><code class="tsd-tag">Static</code><span>styles</span><a href="#styles" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">styles</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">CSSResult</span><span class="tsd-signature-symbol"> = ...</span></div><div class="tsd-comment tsd-typography"><p>Array of styles to apply to the element. The styles should be defined
@@ -1 +1 @@
1
- <!DOCTYPE html><html class="default" lang="en" data-base="./"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>igniteui-grid-lite-workspace</title><meta name="description" content="Documentation for igniteui-grid-lite-workspace"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="assets/style.css"/><link rel="stylesheet" href="assets/highlight.css"/><script defer src="assets/main.js"></script><script async src="assets/icons.js" id="tsd-icons-script"></script><script async src="assets/search.js" id="tsd-search-script"></script><script async src="assets/navigation.js" id="tsd-nav-script"></script><script async src="assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="index.html" class="title">igniteui-grid-lite-workspace</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><h1>igniteui-grid-lite-workspace</h1></div><h2>Hierarchy Summary</h2><ul class="tsd-full-hierarchy"><li data-refl="173" id="BaseColumnConfiguration"><a href="interfaces/BaseColumnConfiguration.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Interface"><use href="assets/icons.svg#icon-256"></use></svg>BaseColumnConfiguration</a><ul><li data-refl="1" id="IgcGridLiteColumn"><a href="classes/IgcGridLiteColumn.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Class"><use href="assets/icons.svg#icon-128"></use></svg>IgcGridLiteColumn</a></li></ul></li></ul></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div><div class="site-menu"><nav class="tsd-navigation"><a href="modules.html">igniteui-grid-lite-workspace</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
1
+ <!DOCTYPE html><html class="default" lang="en" data-base="./"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>igniteui-grid-lite-workspace</title><meta name="description" content="Documentation for igniteui-grid-lite-workspace"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="assets/style.css"/><link rel="stylesheet" href="assets/highlight.css"/><script defer src="assets/main.js"></script><script async src="assets/icons.js" id="tsd-icons-script"></script><script async src="assets/search.js" id="tsd-search-script"></script><script async src="assets/navigation.js" id="tsd-nav-script"></script><script async src="assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="index.html" class="title">igniteui-grid-lite-workspace</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><h1>igniteui-grid-lite-workspace</h1></div><h2>Hierarchy Summary</h2><ul class="tsd-full-hierarchy"><li data-refl="175" id="BaseColumnConfiguration"><a href="interfaces/BaseColumnConfiguration.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Interface"><use href="assets/icons.svg#icon-256"></use></svg>BaseColumnConfiguration</a><ul><li data-refl="1" id="IgcGridLiteColumn"><a href="classes/IgcGridLiteColumn.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Class"><use href="assets/icons.svg#icon-128"></use></svg>IgcGridLiteColumn</a></li></ul></li></ul></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div><div class="site-menu"><nav class="tsd-navigation"><a href="modules.html">igniteui-grid-lite-workspace</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>