igniteui-grid-lite 0.3.1 → 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 -0
  8. package/components/grid.js +3 -0
  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 +146 -10
  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 -7
  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"
@@ -1339,6 +1331,34 @@
1339
1331
  ],
1340
1332
  "description": "Resets the current filter state of the control."
1341
1333
  },
1334
+ {
1335
+ "kind": "method",
1336
+ "name": "navigateTo",
1337
+ "privacy": "public",
1338
+ "parameters": [
1339
+ {
1340
+ "name": "row",
1341
+ "type": {
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"
1358
+ }
1359
+ ],
1360
+ "description": "Navigates to a position in the grid based on provided row index and column field."
1361
+ },
1342
1362
  {
1343
1363
  "kind": "method",
1344
1364
  "name": "getColumn",
@@ -1915,6 +1935,15 @@
1915
1935
  "static": true,
1916
1936
  "readonly": true
1917
1937
  },
1938
+ {
1939
+ "kind": "field",
1940
+ "name": "layout",
1941
+ "type": {
1942
+ "text": "LitVirtualizer['layout']"
1943
+ },
1944
+ "privacy": "public",
1945
+ "default": "{ type: IgcFlowLayout, }"
1946
+ },
1918
1947
  {
1919
1948
  "kind": "method",
1920
1949
  "name": "register",
@@ -2515,6 +2544,19 @@
2515
2544
  }
2516
2545
  ]
2517
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
+ },
2518
2560
  {
2519
2561
  "kind": "method",
2520
2562
  "name": "scrollToCell",
@@ -2583,6 +2625,30 @@
2583
2625
  }
2584
2626
  }
2585
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
+ ]
2586
2652
  }
2587
2653
  ]
2588
2654
  }
@@ -3835,6 +3901,32 @@
3835
3901
  "kind": "javascript-module",
3836
3902
  "path": "src/internal/utils.ts",
3837
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
+ },
3838
3930
  {
3839
3931
  "kind": "function",
3840
3932
  "name": "applyColumnWidths",
@@ -3968,6 +4060,14 @@
3968
4060
  }
3969
4061
  ],
3970
4062
  "exports": [
4063
+ {
4064
+ "kind": "js",
4065
+ "name": "resolveFieldValue",
4066
+ "declaration": {
4067
+ "name": "resolveFieldValue",
4068
+ "module": "src/internal/utils.ts"
4069
+ }
4070
+ },
3971
4071
  {
3972
4072
  "kind": "js",
3973
4073
  "name": "applyColumnWidths",
@@ -4034,6 +4134,42 @@
4034
4134
  }
4035
4135
  ]
4036
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
+ },
4037
4173
  {
4038
4174
  "kind": "javascript-module",
4039
4175
  "path": "src/internal/watch.ts",
@@ -1 +1 @@
1
- window.hierarchyData = "eJx1kMsKwjAQRf/lrlP7AK1kqQsR/APpIiTTNpgmkKSrkn+XUC2CdDOLmXs4w13gnYsB/Fm3VcfgqTcko3Y2gC+o87BiInDcB3nzWj10pKsz82TB8NJWgdfNmWH2BhzSiBAolH/hwxgnA7YGwBGDKjJdrIvEULfVj+0iwoe8OtvrYfYif7U5m+Pp69Q2ku+FpFDuULvyDc3HURvlyeYuupTSG3qEYGI="
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,6 +19,7 @@ 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
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>
24
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
@@ -47,12 +48,16 @@ chunk of elements in the DOM.</p>
47
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>
48
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>
49
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>
50
- </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>
51
- </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>
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="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>
53
- </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>
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">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>
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">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></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
56
61
  using the css tag function, via constructible stylesheets, or
57
62
  imported from native CSS module scripts.</p>
58
63
  <p>Note on Content Security Policy:</p>
@@ -67,4 +72,4 @@ loading application code:</p>
67
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>
68
73
  </code><button type="button">Copy</button></pre>
69
74
 
70
- </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></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="170" 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>