igniteui-grid-lite 0.0.1

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 (207) hide show
  1. package/LICENSE +9 -0
  2. package/README.md +17 -0
  3. package/components/cell.d.ts +35 -0
  4. package/components/cell.js +47 -0
  5. package/components/cell.js.map +1 -0
  6. package/components/filter-row.d.ts +47 -0
  7. package/components/filter-row.js +313 -0
  8. package/components/filter-row.js.map +1 -0
  9. package/components/grid.d.ts +226 -0
  10. package/components/grid.js +227 -0
  11. package/components/grid.js.map +1 -0
  12. package/components/header-row.d.ts +23 -0
  13. package/components/header-row.js +72 -0
  14. package/components/header-row.js.map +1 -0
  15. package/components/header.d.ts +23 -0
  16. package/components/header.js +137 -0
  17. package/components/header.js.map +1 -0
  18. package/components/row.d.ts +24 -0
  19. package/components/row.js +64 -0
  20. package/components/row.js.map +1 -0
  21. package/components/virtualizer.d.ts +12 -0
  22. package/components/virtualizer.js +21 -0
  23. package/components/virtualizer.js.map +1 -0
  24. package/controllers/data-operation.d.ts +17 -0
  25. package/controllers/data-operation.js +36 -0
  26. package/controllers/data-operation.js.map +1 -0
  27. package/controllers/dom.d.ts +19 -0
  28. package/controllers/dom.js +54 -0
  29. package/controllers/dom.js.map +1 -0
  30. package/controllers/filter.d.ts +21 -0
  31. package/controllers/filter.js +105 -0
  32. package/controllers/filter.js.map +1 -0
  33. package/controllers/navigation.d.ts +27 -0
  34. package/controllers/navigation.js +98 -0
  35. package/controllers/navigation.js.map +1 -0
  36. package/controllers/resize.d.ts +27 -0
  37. package/controllers/resize.js +52 -0
  38. package/controllers/resize.js.map +1 -0
  39. package/controllers/sort.d.ts +15 -0
  40. package/controllers/sort.js +94 -0
  41. package/controllers/sort.js.map +1 -0
  42. package/controllers/state.d.ts +24 -0
  43. package/controllers/state.js +37 -0
  44. package/controllers/state.js.map +1 -0
  45. package/custom-elements.json +4166 -0
  46. package/define.d.ts +2 -0
  47. package/define.js +4 -0
  48. package/define.js.map +1 -0
  49. package/docs/.nojekyll +1 -0
  50. package/docs/assets/hierarchy.js +1 -0
  51. package/docs/assets/highlight.css +71 -0
  52. package/docs/assets/icons.js +18 -0
  53. package/docs/assets/icons.svg +1 -0
  54. package/docs/assets/main.js +60 -0
  55. package/docs/assets/navigation.js +1 -0
  56. package/docs/assets/search.js +1 -0
  57. package/docs/assets/style.css +1633 -0
  58. package/docs/classes/IgcGridLite.html +74 -0
  59. package/docs/hierarchy.html +1 -0
  60. package/docs/index.html +11 -0
  61. package/docs/interfaces/BaseColumnConfiguration.html +28 -0
  62. package/docs/interfaces/BaseColumnSortConfiguration.html +6 -0
  63. package/docs/interfaces/BaseFilterExpression.html +15 -0
  64. package/docs/interfaces/BaseIgcCellContext.html +10 -0
  65. package/docs/interfaces/BaseSortExpression.html +12 -0
  66. package/docs/interfaces/ColumnFilterConfiguration.html +4 -0
  67. package/docs/interfaces/DataPipelineConfiguration.html +6 -0
  68. package/docs/interfaces/GridSortConfiguration.html +6 -0
  69. package/docs/interfaces/IgcFilteredEvent.html +6 -0
  70. package/docs/interfaces/IgcFilteringEvent.html +12 -0
  71. package/docs/interfaces/IgcGridLiteEventMap.html +17 -0
  72. package/docs/interfaces/IgcHeaderContext.html +6 -0
  73. package/docs/modules.html +1 -0
  74. package/docs/types/BasePropertyType.html +2 -0
  75. package/docs/types/BaseSortComparer.html +2 -0
  76. package/docs/types/ColumnConfiguration.html +2 -0
  77. package/docs/types/ColumnSortConfiguration.html +2 -0
  78. package/docs/types/DataPipelineHook.html +2 -0
  79. package/docs/types/DataPipelineParams.html +8 -0
  80. package/docs/types/DataType.html +2 -0
  81. package/docs/types/FilterCriteria.html +6 -0
  82. package/docs/types/FilterExpression.html +2 -0
  83. package/docs/types/IgcCellContext.html +2 -0
  84. package/docs/types/Keys.html +2 -0
  85. package/docs/types/PropertyType.html +2 -0
  86. package/docs/types/SortComparer.html +2 -0
  87. package/docs/types/SortExpression.html +2 -0
  88. package/docs/types/SortState.html +2 -0
  89. package/docs/types/SortingDirection.html +3 -0
  90. package/index.d.ts +8 -0
  91. package/index.js +5 -0
  92. package/index.js.map +1 -0
  93. package/internal/constants.d.ts +8 -0
  94. package/internal/constants.js +19 -0
  95. package/internal/constants.js.map +1 -0
  96. package/internal/icon-registry.d.ts +1 -0
  97. package/internal/icon-registry.js +29 -0
  98. package/internal/icon-registry.js.map +1 -0
  99. package/internal/is-defined.d.ts +1 -0
  100. package/internal/is-defined.js +4 -0
  101. package/internal/is-defined.js.map +1 -0
  102. package/internal/mixins/event-emitter.d.ts +7 -0
  103. package/internal/mixins/event-emitter.js +18 -0
  104. package/internal/mixins/event-emitter.js.map +1 -0
  105. package/internal/normalize-case.d.ts +1 -0
  106. package/internal/normalize-case.js +4 -0
  107. package/internal/normalize-case.js.map +1 -0
  108. package/internal/part-map.d.ts +4 -0
  109. package/internal/part-map.js +6 -0
  110. package/internal/part-map.js.map +1 -0
  111. package/internal/register.d.ts +6 -0
  112. package/internal/register.js +9 -0
  113. package/internal/register.js.map +1 -0
  114. package/internal/tags.d.ts +7 -0
  115. package/internal/tags.js +8 -0
  116. package/internal/tags.js.map +1 -0
  117. package/internal/theming.d.ts +34 -0
  118. package/internal/theming.js +123 -0
  119. package/internal/theming.js.map +1 -0
  120. package/internal/types.d.ts +198 -0
  121. package/internal/types.js +2 -0
  122. package/internal/types.js.map +1 -0
  123. package/internal/utils.d.ts +6 -0
  124. package/internal/utils.js +34 -0
  125. package/internal/utils.js.map +1 -0
  126. package/internal/watch.d.ts +5 -0
  127. package/internal/watch.js +19 -0
  128. package/internal/watch.js.map +1 -0
  129. package/operations/base.d.ts +6 -0
  130. package/operations/base.js +9 -0
  131. package/operations/base.js.map +1 -0
  132. package/operations/filter/operands/boolean.d.ts +3 -0
  133. package/operations/filter/operands/boolean.js +34 -0
  134. package/operations/filter/operands/boolean.js.map +1 -0
  135. package/operations/filter/operands/number.d.ts +3 -0
  136. package/operations/filter/operands/number.js +52 -0
  137. package/operations/filter/operands/number.js.map +1 -0
  138. package/operations/filter/operands/string.d.ts +3 -0
  139. package/operations/filter/operands/string.js +53 -0
  140. package/operations/filter/operands/string.js.map +1 -0
  141. package/operations/filter/state.d.ts +16 -0
  142. package/operations/filter/state.js +41 -0
  143. package/operations/filter/state.js.map +1 -0
  144. package/operations/filter/tree.d.ts +17 -0
  145. package/operations/filter/tree.js +46 -0
  146. package/operations/filter/tree.js.map +1 -0
  147. package/operations/filter/types.d.ts +57 -0
  148. package/operations/filter/types.js +2 -0
  149. package/operations/filter/types.js.map +1 -0
  150. package/operations/filter.d.ts +8 -0
  151. package/operations/filter.js +22 -0
  152. package/operations/filter.js.map +1 -0
  153. package/operations/sort/types.d.ts +49 -0
  154. package/operations/sort/types.js +2 -0
  155. package/operations/sort/types.js.map +1 -0
  156. package/operations/sort.d.ts +8 -0
  157. package/operations/sort.js +37 -0
  158. package/operations/sort.js.map +1 -0
  159. package/package.json +41 -0
  160. package/styles/_common.css.d.ts +1 -0
  161. package/styles/_common.css.js +3 -0
  162. package/styles/_common.css.js.map +1 -0
  163. package/styles/body-cell/body-cell.css.d.ts +1 -0
  164. package/styles/body-cell/body-cell.css.js +3 -0
  165. package/styles/body-cell/body-cell.css.js.map +1 -0
  166. package/styles/body-row/body-row.css.d.ts +1 -0
  167. package/styles/body-row/body-row.css.js +3 -0
  168. package/styles/body-row/body-row.css.js.map +1 -0
  169. package/styles/filter-row/filter-row.css.d.ts +1 -0
  170. package/styles/filter-row/filter-row.css.js +3 -0
  171. package/styles/filter-row/filter-row.css.js.map +1 -0
  172. package/styles/grid/themes/dark/grid.bootstrap.css.d.ts +1 -0
  173. package/styles/grid/themes/dark/grid.bootstrap.css.js +3 -0
  174. package/styles/grid/themes/dark/grid.bootstrap.css.js.map +1 -0
  175. package/styles/grid/themes/dark/grid.fluent.css.d.ts +1 -0
  176. package/styles/grid/themes/dark/grid.fluent.css.js +3 -0
  177. package/styles/grid/themes/dark/grid.fluent.css.js.map +1 -0
  178. package/styles/grid/themes/dark/grid.indigo.css.d.ts +1 -0
  179. package/styles/grid/themes/dark/grid.indigo.css.js +3 -0
  180. package/styles/grid/themes/dark/grid.indigo.css.js.map +1 -0
  181. package/styles/grid/themes/dark/grid.material.css.d.ts +1 -0
  182. package/styles/grid/themes/dark/grid.material.css.js +3 -0
  183. package/styles/grid/themes/dark/grid.material.css.js.map +1 -0
  184. package/styles/grid/themes/grid.base.css.d.ts +1 -0
  185. package/styles/grid/themes/grid.base.css.js +3 -0
  186. package/styles/grid/themes/grid.base.css.js.map +1 -0
  187. package/styles/grid/themes/light/grid.bootstrap.css.d.ts +1 -0
  188. package/styles/grid/themes/light/grid.bootstrap.css.js +3 -0
  189. package/styles/grid/themes/light/grid.bootstrap.css.js.map +1 -0
  190. package/styles/grid/themes/light/grid.fluent.css.d.ts +1 -0
  191. package/styles/grid/themes/light/grid.fluent.css.js +3 -0
  192. package/styles/grid/themes/light/grid.fluent.css.js.map +1 -0
  193. package/styles/grid/themes/light/grid.indigo.css.d.ts +1 -0
  194. package/styles/grid/themes/light/grid.indigo.css.js +3 -0
  195. package/styles/grid/themes/light/grid.indigo.css.js.map +1 -0
  196. package/styles/grid/themes/light/grid.material.css.d.ts +1 -0
  197. package/styles/grid/themes/light/grid.material.css.js +3 -0
  198. package/styles/grid/themes/light/grid.material.css.js.map +1 -0
  199. package/styles/grid/themes/themes.d.ts +2 -0
  200. package/styles/grid/themes/themes.js +39 -0
  201. package/styles/grid/themes/themes.js.map +1 -0
  202. package/styles/header-cell/header-cell.css.d.ts +1 -0
  203. package/styles/header-cell/header-cell.css.js +3 -0
  204. package/styles/header-cell/header-cell.css.js.map +1 -0
  205. package/styles/header-row/header-row.base.css.d.ts +1 -0
  206. package/styles/header-row/header-row.base.css.js +3 -0
  207. package/styles/header-row/header-row.base.css.js.map +1 -0
@@ -0,0 +1,4166 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "src/define.ts",
8
+ "declarations": [],
9
+ "exports": [
10
+ {
11
+ "kind": "js",
12
+ "name": "IgcGridLite",
13
+ "declaration": {
14
+ "name": "IgcGridLite",
15
+ "module": "src/define.ts"
16
+ }
17
+ }
18
+ ]
19
+ },
20
+ {
21
+ "kind": "javascript-module",
22
+ "path": "src/index.ts",
23
+ "declarations": [],
24
+ "exports": [
25
+ {
26
+ "kind": "js",
27
+ "name": "IgcFilteredEvent",
28
+ "declaration": {
29
+ "name": "IgcFilteredEvent",
30
+ "module": "./components/grid.js"
31
+ }
32
+ },
33
+ {
34
+ "kind": "js",
35
+ "name": "IgcFilteringEvent",
36
+ "declaration": {
37
+ "name": "IgcFilteringEvent",
38
+ "module": "./components/grid.js"
39
+ }
40
+ },
41
+ {
42
+ "kind": "js",
43
+ "name": "IgcGridLiteEventMap",
44
+ "declaration": {
45
+ "name": "IgcGridLiteEventMap",
46
+ "module": "./components/grid.js"
47
+ }
48
+ },
49
+ {
50
+ "kind": "js",
51
+ "name": "IgcGridLite",
52
+ "declaration": {
53
+ "name": "IgcGridLite",
54
+ "module": "./components/grid.js"
55
+ }
56
+ },
57
+ {
58
+ "kind": "js",
59
+ "name": "BaseColumnConfiguration",
60
+ "declaration": {
61
+ "name": "BaseColumnConfiguration",
62
+ "module": "./internal/types.js"
63
+ }
64
+ },
65
+ {
66
+ "kind": "js",
67
+ "name": "BaseColumnSortConfiguration",
68
+ "declaration": {
69
+ "name": "BaseColumnSortConfiguration",
70
+ "module": "./internal/types.js"
71
+ }
72
+ },
73
+ {
74
+ "kind": "js",
75
+ "name": "BaseIgcCellContext",
76
+ "declaration": {
77
+ "name": "BaseIgcCellContext",
78
+ "module": "./internal/types.js"
79
+ }
80
+ },
81
+ {
82
+ "kind": "js",
83
+ "name": "BasePropertyType",
84
+ "declaration": {
85
+ "name": "BasePropertyType",
86
+ "module": "./internal/types.js"
87
+ }
88
+ },
89
+ {
90
+ "kind": "js",
91
+ "name": "ColumnConfiguration",
92
+ "declaration": {
93
+ "name": "ColumnConfiguration",
94
+ "module": "./internal/types.js"
95
+ }
96
+ },
97
+ {
98
+ "kind": "js",
99
+ "name": "ColumnFilterConfiguration",
100
+ "declaration": {
101
+ "name": "ColumnFilterConfiguration",
102
+ "module": "./internal/types.js"
103
+ }
104
+ },
105
+ {
106
+ "kind": "js",
107
+ "name": "ColumnSortConfiguration",
108
+ "declaration": {
109
+ "name": "ColumnSortConfiguration",
110
+ "module": "./internal/types.js"
111
+ }
112
+ },
113
+ {
114
+ "kind": "js",
115
+ "name": "DataPipelineConfiguration",
116
+ "declaration": {
117
+ "name": "DataPipelineConfiguration",
118
+ "module": "./internal/types.js"
119
+ }
120
+ },
121
+ {
122
+ "kind": "js",
123
+ "name": "DataPipelineHook",
124
+ "declaration": {
125
+ "name": "DataPipelineHook",
126
+ "module": "./internal/types.js"
127
+ }
128
+ },
129
+ {
130
+ "kind": "js",
131
+ "name": "DataPipelineParams",
132
+ "declaration": {
133
+ "name": "DataPipelineParams",
134
+ "module": "./internal/types.js"
135
+ }
136
+ },
137
+ {
138
+ "kind": "js",
139
+ "name": "DataType",
140
+ "declaration": {
141
+ "name": "DataType",
142
+ "module": "./internal/types.js"
143
+ }
144
+ },
145
+ {
146
+ "kind": "js",
147
+ "name": "GridSortConfiguration",
148
+ "declaration": {
149
+ "name": "GridSortConfiguration",
150
+ "module": "./internal/types.js"
151
+ }
152
+ },
153
+ {
154
+ "kind": "js",
155
+ "name": "IgcCellContext",
156
+ "declaration": {
157
+ "name": "IgcCellContext",
158
+ "module": "./internal/types.js"
159
+ }
160
+ },
161
+ {
162
+ "kind": "js",
163
+ "name": "IgcHeaderContext",
164
+ "declaration": {
165
+ "name": "IgcHeaderContext",
166
+ "module": "./internal/types.js"
167
+ }
168
+ },
169
+ {
170
+ "kind": "js",
171
+ "name": "Keys",
172
+ "declaration": {
173
+ "name": "Keys",
174
+ "module": "./internal/types.js"
175
+ }
176
+ },
177
+ {
178
+ "kind": "js",
179
+ "name": "PropertyType",
180
+ "declaration": {
181
+ "name": "PropertyType",
182
+ "module": "./internal/types.js"
183
+ }
184
+ },
185
+ {
186
+ "kind": "js",
187
+ "name": "BooleanOperands",
188
+ "declaration": {
189
+ "name": "BooleanOperands",
190
+ "module": "./operations/filter/operands/boolean.js"
191
+ }
192
+ },
193
+ {
194
+ "kind": "js",
195
+ "name": "NumberOperands",
196
+ "declaration": {
197
+ "name": "NumberOperands",
198
+ "module": "./operations/filter/operands/number.js"
199
+ }
200
+ },
201
+ {
202
+ "kind": "js",
203
+ "name": "StringOperands",
204
+ "declaration": {
205
+ "name": "StringOperands",
206
+ "module": "./operations/filter/operands/string.js"
207
+ }
208
+ },
209
+ {
210
+ "kind": "js",
211
+ "name": "BaseFilterExpression",
212
+ "declaration": {
213
+ "name": "BaseFilterExpression",
214
+ "module": "./operations/filter/types.js"
215
+ }
216
+ },
217
+ {
218
+ "kind": "js",
219
+ "name": "FilterCriteria",
220
+ "declaration": {
221
+ "name": "FilterCriteria",
222
+ "module": "./operations/filter/types.js"
223
+ }
224
+ },
225
+ {
226
+ "kind": "js",
227
+ "name": "FilterExpression",
228
+ "declaration": {
229
+ "name": "FilterExpression",
230
+ "module": "./operations/filter/types.js"
231
+ }
232
+ },
233
+ {
234
+ "kind": "js",
235
+ "name": "FilterOperation",
236
+ "declaration": {
237
+ "name": "FilterOperation",
238
+ "module": "./operations/filter/types.js"
239
+ }
240
+ },
241
+ {
242
+ "kind": "js",
243
+ "name": "FilterOperationLogic",
244
+ "declaration": {
245
+ "name": "FilterOperationLogic",
246
+ "module": "./operations/filter/types.js"
247
+ }
248
+ },
249
+ {
250
+ "kind": "js",
251
+ "name": "OperandKeys",
252
+ "declaration": {
253
+ "name": "OperandKeys",
254
+ "module": "./operations/filter/types.js"
255
+ }
256
+ },
257
+ {
258
+ "kind": "js",
259
+ "name": "BaseSortComparer",
260
+ "declaration": {
261
+ "name": "BaseSortComparer",
262
+ "module": "./operations/sort/types.js"
263
+ }
264
+ },
265
+ {
266
+ "kind": "js",
267
+ "name": "BaseSortExpression",
268
+ "declaration": {
269
+ "name": "BaseSortExpression",
270
+ "module": "./operations/sort/types.js"
271
+ }
272
+ },
273
+ {
274
+ "kind": "js",
275
+ "name": "SortComparer",
276
+ "declaration": {
277
+ "name": "SortComparer",
278
+ "module": "./operations/sort/types.js"
279
+ }
280
+ },
281
+ {
282
+ "kind": "js",
283
+ "name": "SortExpression",
284
+ "declaration": {
285
+ "name": "SortExpression",
286
+ "module": "./operations/sort/types.js"
287
+ }
288
+ },
289
+ {
290
+ "kind": "js",
291
+ "name": "SortingDirection",
292
+ "declaration": {
293
+ "name": "SortingDirection",
294
+ "module": "./operations/sort/types.js"
295
+ }
296
+ },
297
+ {
298
+ "kind": "js",
299
+ "name": "SortState",
300
+ "declaration": {
301
+ "name": "SortState",
302
+ "module": "./operations/sort/types.js"
303
+ }
304
+ }
305
+ ]
306
+ },
307
+ {
308
+ "kind": "javascript-module",
309
+ "path": "src/components/cell.ts",
310
+ "declarations": [
311
+ {
312
+ "kind": "class",
313
+ "description": "Component representing a DOM cell of the Igc grid.",
314
+ "name": "IgcGridLiteCell",
315
+ "members": [
316
+ {
317
+ "kind": "field",
318
+ "name": "tagName",
319
+ "privacy": "public",
320
+ "static": true,
321
+ "readonly": true
322
+ },
323
+ {
324
+ "kind": "method",
325
+ "name": "register",
326
+ "privacy": "public",
327
+ "static": true,
328
+ "return": {
329
+ "type": {
330
+ "text": "void"
331
+ }
332
+ }
333
+ },
334
+ {
335
+ "kind": "field",
336
+ "name": "value",
337
+ "type": {
338
+ "text": "PropertyType<T>"
339
+ },
340
+ "privacy": "public",
341
+ "description": "The value which will be rendered by the component."
342
+ },
343
+ {
344
+ "kind": "field",
345
+ "name": "column",
346
+ "type": {
347
+ "text": "ColumnConfiguration<T>"
348
+ },
349
+ "privacy": "public",
350
+ "description": "A reference to the column configuration object."
351
+ },
352
+ {
353
+ "kind": "field",
354
+ "name": "active",
355
+ "type": {
356
+ "text": "boolean"
357
+ },
358
+ "privacy": "public",
359
+ "default": "false",
360
+ "description": "Indicates whether this is the active cell in the grid.",
361
+ "attribute": "active",
362
+ "reflects": true
363
+ },
364
+ {
365
+ "kind": "field",
366
+ "name": "row",
367
+ "type": {
368
+ "text": "IgcGridLiteRow<T>"
369
+ },
370
+ "privacy": "public",
371
+ "description": "The parent row component holding this cell."
372
+ },
373
+ {
374
+ "kind": "field",
375
+ "name": "context",
376
+ "type": {
377
+ "text": "IgcCellContext<T>"
378
+ },
379
+ "privacy": "protected",
380
+ "readonly": true
381
+ }
382
+ ],
383
+ "attributes": [
384
+ {
385
+ "name": "active",
386
+ "type": {
387
+ "text": "boolean"
388
+ },
389
+ "default": "false",
390
+ "description": "Indicates whether this is the active cell in the grid.",
391
+ "fieldName": "active"
392
+ }
393
+ ],
394
+ "superclass": {
395
+ "name": "LitElement",
396
+ "package": "lit"
397
+ },
398
+ "customElement": true
399
+ }
400
+ ],
401
+ "exports": [
402
+ {
403
+ "kind": "js",
404
+ "name": "default",
405
+ "declaration": {
406
+ "name": "IgcGridLiteCell",
407
+ "module": "src/components/cell.ts"
408
+ }
409
+ }
410
+ ]
411
+ },
412
+ {
413
+ "kind": "javascript-module",
414
+ "path": "src/components/filter-row.ts",
415
+ "declarations": [
416
+ {
417
+ "kind": "class",
418
+ "description": "",
419
+ "name": "IgcFilterRow",
420
+ "members": [
421
+ {
422
+ "kind": "field",
423
+ "name": "tagName",
424
+ "privacy": "public",
425
+ "static": true,
426
+ "readonly": true
427
+ },
428
+ {
429
+ "kind": "method",
430
+ "name": "register",
431
+ "privacy": "public",
432
+ "static": true
433
+ },
434
+ {
435
+ "kind": "field",
436
+ "name": "state",
437
+ "type": {
438
+ "text": "StateController<T>"
439
+ },
440
+ "privacy": "public"
441
+ },
442
+ {
443
+ "kind": "field",
444
+ "name": "isNumeric",
445
+ "privacy": "protected",
446
+ "readonly": true
447
+ },
448
+ {
449
+ "kind": "field",
450
+ "name": "filterController",
451
+ "privacy": "protected",
452
+ "readonly": true
453
+ },
454
+ {
455
+ "kind": "field",
456
+ "name": "condition",
457
+ "privacy": "protected",
458
+ "readonly": true
459
+ },
460
+ {
461
+ "kind": "field",
462
+ "name": "active",
463
+ "type": {
464
+ "text": "boolean"
465
+ },
466
+ "privacy": "public",
467
+ "default": "false"
468
+ },
469
+ {
470
+ "kind": "field",
471
+ "name": "input",
472
+ "type": {
473
+ "text": "IgcInputComponent"
474
+ },
475
+ "privacy": "public"
476
+ },
477
+ {
478
+ "kind": "field",
479
+ "name": "conditionElement",
480
+ "type": {
481
+ "text": "IgcIconComponent"
482
+ },
483
+ "privacy": "public"
484
+ },
485
+ {
486
+ "kind": "field",
487
+ "name": "dropdown",
488
+ "type": {
489
+ "text": "IgcDropdownComponent"
490
+ },
491
+ "privacy": "public"
492
+ },
493
+ {
494
+ "kind": "field",
495
+ "name": "column",
496
+ "type": {
497
+ "text": "ColumnConfiguration<T>"
498
+ },
499
+ "privacy": "public",
500
+ "default": "DEFAULT_COLUMN_CONFIG"
501
+ },
502
+ {
503
+ "kind": "field",
504
+ "name": "expression",
505
+ "type": {
506
+ "text": "FilterExpression<T>"
507
+ },
508
+ "privacy": "public"
509
+ },
510
+ {
511
+ "kind": "method",
512
+ "name": "#setDefaultExpression",
513
+ "privacy": "private"
514
+ },
515
+ {
516
+ "kind": "method",
517
+ "name": "#removeExpression",
518
+ "privacy": "private",
519
+ "parameters": [
520
+ {
521
+ "name": "expression",
522
+ "type": {
523
+ "text": "FilterExpression<T>"
524
+ }
525
+ }
526
+ ]
527
+ },
528
+ {
529
+ "kind": "method",
530
+ "name": "#show",
531
+ "privacy": "private"
532
+ },
533
+ {
534
+ "kind": "method",
535
+ "name": "#handleConditionChanged",
536
+ "privacy": "private",
537
+ "parameters": [
538
+ {
539
+ "name": "event",
540
+ "type": {
541
+ "text": "CustomEvent<IgcDropdownItemComponent>"
542
+ }
543
+ }
544
+ ]
545
+ },
546
+ {
547
+ "kind": "method",
548
+ "name": "#handleInput",
549
+ "privacy": "private",
550
+ "parameters": [
551
+ {
552
+ "name": "event",
553
+ "type": {
554
+ "text": "CustomEvent<string>"
555
+ }
556
+ }
557
+ ]
558
+ },
559
+ {
560
+ "kind": "method",
561
+ "name": "#handleKeydown",
562
+ "privacy": "private",
563
+ "parameters": [
564
+ {
565
+ "name": "event",
566
+ "type": {
567
+ "text": "KeyboardEvent"
568
+ }
569
+ }
570
+ ]
571
+ },
572
+ {
573
+ "kind": "method",
574
+ "name": "#handleResetClick",
575
+ "privacy": "private"
576
+ },
577
+ {
578
+ "kind": "method",
579
+ "name": "#openDropdownList",
580
+ "privacy": "private"
581
+ },
582
+ {
583
+ "kind": "method",
584
+ "name": "activeChanged",
585
+ "privacy": "protected"
586
+ },
587
+ {
588
+ "kind": "method",
589
+ "name": "#chipCriteriaFor",
590
+ "privacy": "private",
591
+ "parameters": [
592
+ {
593
+ "name": "expression",
594
+ "type": {
595
+ "text": "FilterExpression<T>"
596
+ }
597
+ }
598
+ ]
599
+ },
600
+ {
601
+ "kind": "method",
602
+ "name": "#chipSelectFor",
603
+ "privacy": "private",
604
+ "parameters": [
605
+ {
606
+ "name": "expression",
607
+ "type": {
608
+ "text": "FilterExpression<T>"
609
+ }
610
+ }
611
+ ]
612
+ },
613
+ {
614
+ "kind": "method",
615
+ "name": "#chipRemoveFor",
616
+ "privacy": "private",
617
+ "parameters": [
618
+ {
619
+ "name": "expression",
620
+ "type": {
621
+ "text": "FilterExpression<T>"
622
+ }
623
+ }
624
+ ]
625
+ },
626
+ {
627
+ "kind": "method",
628
+ "name": "renderCriteriaButton",
629
+ "privacy": "protected",
630
+ "parameters": [
631
+ {
632
+ "name": "expr",
633
+ "type": {
634
+ "text": "FilterExpression<T>"
635
+ }
636
+ },
637
+ {
638
+ "name": "index",
639
+ "type": {
640
+ "text": "number"
641
+ }
642
+ }
643
+ ]
644
+ },
645
+ {
646
+ "kind": "method",
647
+ "name": "renderExpressionChip",
648
+ "privacy": "protected",
649
+ "parameters": [
650
+ {
651
+ "name": "props",
652
+ "type": {
653
+ "text": "ExpressionChipProps<T>"
654
+ }
655
+ }
656
+ ]
657
+ },
658
+ {
659
+ "kind": "method",
660
+ "name": "renderActiveChips",
661
+ "privacy": "protected"
662
+ },
663
+ {
664
+ "kind": "method",
665
+ "name": "renderFilterActions",
666
+ "privacy": "protected"
667
+ },
668
+ {
669
+ "kind": "method",
670
+ "name": "renderDropdown",
671
+ "privacy": "protected"
672
+ },
673
+ {
674
+ "kind": "method",
675
+ "name": "renderDropdownTarget",
676
+ "privacy": "protected"
677
+ },
678
+ {
679
+ "kind": "method",
680
+ "name": "renderInputArea",
681
+ "privacy": "protected"
682
+ },
683
+ {
684
+ "kind": "method",
685
+ "name": "renderActiveState",
686
+ "privacy": "protected"
687
+ },
688
+ {
689
+ "kind": "method",
690
+ "name": "renderInactiveChips",
691
+ "privacy": "protected",
692
+ "parameters": [
693
+ {
694
+ "name": "column",
695
+ "type": {
696
+ "text": "ColumnConfiguration<T>"
697
+ }
698
+ },
699
+ {
700
+ "name": "state",
701
+ "type": {
702
+ "text": "FilterExpressionTree<T>"
703
+ }
704
+ }
705
+ ]
706
+ },
707
+ {
708
+ "kind": "method",
709
+ "name": "renderFilterState",
710
+ "privacy": "protected",
711
+ "parameters": [
712
+ {
713
+ "name": "column",
714
+ "type": {
715
+ "text": "ColumnConfiguration<T>"
716
+ }
717
+ }
718
+ ]
719
+ },
720
+ {
721
+ "kind": "method",
722
+ "name": "renderInactiveState",
723
+ "privacy": "protected"
724
+ }
725
+ ],
726
+ "superclass": {
727
+ "name": "LitElement",
728
+ "package": "lit"
729
+ },
730
+ "customElement": true
731
+ }
732
+ ],
733
+ "exports": [
734
+ {
735
+ "kind": "js",
736
+ "name": "default",
737
+ "declaration": {
738
+ "name": "IgcFilterRow",
739
+ "module": "src/components/filter-row.ts"
740
+ }
741
+ }
742
+ ]
743
+ },
744
+ {
745
+ "kind": "javascript-module",
746
+ "path": "src/components/grid.ts",
747
+ "declarations": [
748
+ {
749
+ "kind": "class",
750
+ "description": "IgcGridLite is a web component for displaying data in a tabular format quick and easy.\n\nOut of the box it provides row virtualization, sort and filter operations (client and server side),\nthe ability to template cells and headers and column hiding.",
751
+ "name": "IgcGridLite",
752
+ "members": [
753
+ {
754
+ "kind": "field",
755
+ "name": "tagName",
756
+ "privacy": "public",
757
+ "static": true,
758
+ "readonly": true
759
+ },
760
+ {
761
+ "kind": "method",
762
+ "name": "register",
763
+ "privacy": "public",
764
+ "static": true
765
+ },
766
+ {
767
+ "kind": "field",
768
+ "name": "stateController",
769
+ "privacy": "protected",
770
+ "default": "new StateController<T>(this)"
771
+ },
772
+ {
773
+ "kind": "field",
774
+ "name": "DOM",
775
+ "privacy": "protected",
776
+ "default": "new GridDOMController<T>(this, this.stateController)"
777
+ },
778
+ {
779
+ "kind": "field",
780
+ "name": "dataController",
781
+ "privacy": "protected",
782
+ "default": "new DataOperationsController<T>(this)"
783
+ },
784
+ {
785
+ "kind": "field",
786
+ "name": "stateProvider",
787
+ "privacy": "protected",
788
+ "default": "new ContextProvider(this, { context: gridStateContext, initialValue: this.stateController, })"
789
+ },
790
+ {
791
+ "kind": "field",
792
+ "name": "scrollContainer",
793
+ "type": {
794
+ "text": "IgcVirtualizer"
795
+ },
796
+ "privacy": "protected"
797
+ },
798
+ {
799
+ "kind": "field",
800
+ "name": "headerRow",
801
+ "type": {
802
+ "text": "IgcGridLiteHeaderRow<T>"
803
+ },
804
+ "privacy": "protected"
805
+ },
806
+ {
807
+ "kind": "field",
808
+ "name": "filterRow",
809
+ "type": {
810
+ "text": "IgcFilterRow<T>"
811
+ },
812
+ "privacy": "protected"
813
+ },
814
+ {
815
+ "kind": "field",
816
+ "name": "dataState",
817
+ "type": {
818
+ "text": "Array<T>"
819
+ },
820
+ "privacy": "protected",
821
+ "default": "[]"
822
+ },
823
+ {
824
+ "kind": "field",
825
+ "name": "_rows",
826
+ "type": {
827
+ "text": "NodeListOf<IgcGridLiteRow<T>>"
828
+ },
829
+ "privacy": "protected"
830
+ },
831
+ {
832
+ "kind": "field",
833
+ "name": "columns",
834
+ "type": {
835
+ "text": "Array<ColumnConfiguration<T>>"
836
+ },
837
+ "privacy": "public",
838
+ "default": "[]",
839
+ "description": "Column configuration for the grid."
840
+ },
841
+ {
842
+ "kind": "field",
843
+ "name": "data",
844
+ "type": {
845
+ "text": "Array<T>"
846
+ },
847
+ "privacy": "public",
848
+ "default": "[]",
849
+ "description": "The data source for the grid."
850
+ },
851
+ {
852
+ "kind": "field",
853
+ "name": "autoGenerate",
854
+ "type": {
855
+ "text": "boolean"
856
+ },
857
+ "privacy": "public",
858
+ "default": "false",
859
+ "description": "Whether the grid will try to \"resolve\" its column configuration based on the passed\ndata source.",
860
+ "attribute": "auto-generate"
861
+ },
862
+ {
863
+ "kind": "field",
864
+ "name": "sortConfiguration",
865
+ "type": {
866
+ "text": "GridSortConfiguration"
867
+ },
868
+ "privacy": "public",
869
+ "default": "{ multiple: true, triState: true, }",
870
+ "description": "Sort configuration property for the grid."
871
+ },
872
+ {
873
+ "kind": "field",
874
+ "name": "dataPipelineConfiguration",
875
+ "type": {
876
+ "text": "DataPipelineConfiguration<T>"
877
+ },
878
+ "privacy": "public",
879
+ "description": "Configuration object which controls remote data operations for the grid."
880
+ },
881
+ {
882
+ "kind": "field",
883
+ "name": "sortExpressions",
884
+ "privacy": "public",
885
+ "description": "Get the sort state for the grid.",
886
+ "type": {
887
+ "text": "SortExpression<T>[]"
888
+ }
889
+ },
890
+ {
891
+ "kind": "field",
892
+ "name": "filterExpressions",
893
+ "privacy": "public",
894
+ "description": "Get the filter state for the grid.",
895
+ "type": {
896
+ "text": "FilterExpression<T>[]"
897
+ }
898
+ },
899
+ {
900
+ "kind": "field",
901
+ "name": "rows",
902
+ "privacy": "public",
903
+ "description": "Returns the collection of rendered row elements in the grid.",
904
+ "readonly": true
905
+ },
906
+ {
907
+ "kind": "field",
908
+ "name": "dataView",
909
+ "type": {
910
+ "text": "ReadonlyArray<T>"
911
+ },
912
+ "privacy": "public",
913
+ "description": "Returns the state of the data source after sort/filter operations\nhave been applied.",
914
+ "readonly": true
915
+ },
916
+ {
917
+ "kind": "field",
918
+ "name": "totalItems",
919
+ "privacy": "public",
920
+ "description": "The total number of items in the IgcGridLite.dataView collection.",
921
+ "readonly": true
922
+ },
923
+ {
924
+ "kind": "method",
925
+ "name": "watchColumns",
926
+ "privacy": "protected",
927
+ "parameters": [
928
+ {
929
+ "name": "_",
930
+ "type": {
931
+ "text": "ColumnConfiguration<T>[]"
932
+ }
933
+ },
934
+ {
935
+ "name": "newConfig",
936
+ "default": "[]",
937
+ "type": {
938
+ "text": "ColumnConfiguration<T>[]"
939
+ }
940
+ }
941
+ ]
942
+ },
943
+ {
944
+ "kind": "method",
945
+ "name": "dataChanged",
946
+ "privacy": "protected"
947
+ },
948
+ {
949
+ "kind": "method",
950
+ "name": "pipeline",
951
+ "privacy": "protected"
952
+ },
953
+ {
954
+ "kind": "method",
955
+ "name": "filter",
956
+ "privacy": "public",
957
+ "parameters": [
958
+ {
959
+ "name": "config",
960
+ "type": {
961
+ "text": "FilterExpression<T> | FilterExpression<T>[]"
962
+ }
963
+ }
964
+ ],
965
+ "description": "Performs a filter operation in the grid based on the passed expression(s)."
966
+ },
967
+ {
968
+ "kind": "method",
969
+ "name": "sort",
970
+ "privacy": "public",
971
+ "parameters": [
972
+ {
973
+ "name": "expressions",
974
+ "type": {
975
+ "text": "SortExpression<T> | SortExpression<T>[]"
976
+ }
977
+ }
978
+ ],
979
+ "description": "Performs a sort operation in the grid based on the passed expression(s)."
980
+ },
981
+ {
982
+ "kind": "method",
983
+ "name": "clearSort",
984
+ "privacy": "public",
985
+ "parameters": [
986
+ {
987
+ "name": "key",
988
+ "optional": true,
989
+ "type": {
990
+ "text": "Keys<T>"
991
+ }
992
+ }
993
+ ],
994
+ "description": "Resets the current sort state of the control."
995
+ },
996
+ {
997
+ "kind": "method",
998
+ "name": "clearFilter",
999
+ "privacy": "public",
1000
+ "parameters": [
1001
+ {
1002
+ "name": "key",
1003
+ "optional": true,
1004
+ "type": {
1005
+ "text": "Keys<T>"
1006
+ }
1007
+ }
1008
+ ],
1009
+ "description": "Resets the current filter state of the control."
1010
+ },
1011
+ {
1012
+ "kind": "method",
1013
+ "name": "getColumn",
1014
+ "privacy": "public",
1015
+ "parameters": [
1016
+ {
1017
+ "name": "id",
1018
+ "type": {
1019
+ "text": "Keys<T> | number"
1020
+ }
1021
+ }
1022
+ ],
1023
+ "description": "Returns a ColumnConfiguration for a given column."
1024
+ },
1025
+ {
1026
+ "kind": "method",
1027
+ "name": "updateColumns",
1028
+ "privacy": "public",
1029
+ "parameters": [
1030
+ {
1031
+ "name": "columns",
1032
+ "type": {
1033
+ "text": "ColumnConfiguration<T> | ColumnConfiguration<T>[]"
1034
+ }
1035
+ }
1036
+ ],
1037
+ "description": "Updates the column configuration of the grid."
1038
+ },
1039
+ {
1040
+ "kind": "method",
1041
+ "name": "bodyClickHandler",
1042
+ "privacy": "protected",
1043
+ "parameters": [
1044
+ {
1045
+ "name": "event",
1046
+ "type": {
1047
+ "text": "MouseEvent"
1048
+ }
1049
+ }
1050
+ ]
1051
+ },
1052
+ {
1053
+ "kind": "method",
1054
+ "name": "bodyKeydownHandler",
1055
+ "privacy": "protected",
1056
+ "parameters": [
1057
+ {
1058
+ "name": "event",
1059
+ "type": {
1060
+ "text": "KeyboardEvent"
1061
+ }
1062
+ }
1063
+ ]
1064
+ },
1065
+ {
1066
+ "kind": "method",
1067
+ "name": "renderHeaderRow",
1068
+ "privacy": "protected"
1069
+ },
1070
+ {
1071
+ "kind": "method",
1072
+ "name": "renderBody",
1073
+ "privacy": "protected"
1074
+ },
1075
+ {
1076
+ "kind": "method",
1077
+ "name": "renderFilterRow",
1078
+ "privacy": "protected"
1079
+ },
1080
+ {
1081
+ "kind": "method",
1082
+ "name": "addEventListener",
1083
+ "privacy": "public",
1084
+ "return": {
1085
+ "type": {
1086
+ "text": "void"
1087
+ }
1088
+ },
1089
+ "parameters": [
1090
+ {
1091
+ "name": "type",
1092
+ "type": {
1093
+ "text": "K"
1094
+ }
1095
+ },
1096
+ {
1097
+ "name": "listener",
1098
+ "type": {
1099
+ "text": "(this: HTMLElement, ev: M[K]) => any"
1100
+ }
1101
+ },
1102
+ {
1103
+ "name": "options",
1104
+ "optional": true,
1105
+ "type": {
1106
+ "text": "boolean | AddEventListenerOptions"
1107
+ }
1108
+ }
1109
+ ],
1110
+ "inheritedFrom": {
1111
+ "name": "EventEmitterBase",
1112
+ "module": "src/internal/mixins/event-emitter.ts"
1113
+ }
1114
+ },
1115
+ {
1116
+ "kind": "method",
1117
+ "name": "removeEventListener",
1118
+ "privacy": "public",
1119
+ "return": {
1120
+ "type": {
1121
+ "text": "void"
1122
+ }
1123
+ },
1124
+ "parameters": [
1125
+ {
1126
+ "name": "type",
1127
+ "type": {
1128
+ "text": "K"
1129
+ }
1130
+ },
1131
+ {
1132
+ "name": "listener",
1133
+ "type": {
1134
+ "text": "(this: HTMLElement, ev: M[K]) => any"
1135
+ }
1136
+ },
1137
+ {
1138
+ "name": "options",
1139
+ "optional": true,
1140
+ "type": {
1141
+ "text": "boolean | EventListenerOptions"
1142
+ }
1143
+ }
1144
+ ],
1145
+ "inheritedFrom": {
1146
+ "name": "EventEmitterBase",
1147
+ "module": "src/internal/mixins/event-emitter.ts"
1148
+ }
1149
+ },
1150
+ {
1151
+ "kind": "method",
1152
+ "name": "emitEvent",
1153
+ "privacy": "public",
1154
+ "return": {
1155
+ "type": {
1156
+ "text": "boolean"
1157
+ }
1158
+ },
1159
+ "parameters": [
1160
+ {
1161
+ "name": "type",
1162
+ "type": {
1163
+ "text": "K"
1164
+ }
1165
+ },
1166
+ {
1167
+ "name": "eventInitDict",
1168
+ "optional": true,
1169
+ "type": {
1170
+ "text": "CustomEventInit<D>"
1171
+ }
1172
+ }
1173
+ ],
1174
+ "inheritedFrom": {
1175
+ "name": "EventEmitterBase",
1176
+ "module": "src/internal/mixins/event-emitter.ts"
1177
+ }
1178
+ }
1179
+ ],
1180
+ "events": [
1181
+ {
1182
+ "description": "Emitted when sorting is initiated through the UI.",
1183
+ "name": "sorting"
1184
+ },
1185
+ {
1186
+ "description": "Emitted when a sort operation initiated through the UI has completed.",
1187
+ "name": "sorted"
1188
+ },
1189
+ {
1190
+ "description": "Emitted when filtering is initiated through the UI.",
1191
+ "name": "filtering"
1192
+ },
1193
+ {
1194
+ "description": "Emitted when a filter operation initiated through the UI has completed.",
1195
+ "name": "filtered"
1196
+ },
1197
+ {
1198
+ "type": {
1199
+ "text": "CustomEvent"
1200
+ },
1201
+ "inheritedFrom": {
1202
+ "name": "EventEmitterBase",
1203
+ "module": "src/internal/mixins/event-emitter.ts"
1204
+ }
1205
+ }
1206
+ ],
1207
+ "attributes": [
1208
+ {
1209
+ "name": "auto-generate",
1210
+ "type": {
1211
+ "text": "boolean"
1212
+ },
1213
+ "default": "false",
1214
+ "description": "Whether the grid will try to \"resolve\" its column configuration based on the passed\ndata source.",
1215
+ "fieldName": "autoGenerate",
1216
+ "attribute": "auto-generate"
1217
+ }
1218
+ ],
1219
+ "superclass": {
1220
+ "name": "EventEmitterBase",
1221
+ "module": "/src/internal/mixins/event-emitter.js"
1222
+ },
1223
+ "tagName": "igc-grid-lite",
1224
+ "customElement": true
1225
+ }
1226
+ ],
1227
+ "exports": [
1228
+ {
1229
+ "kind": "js",
1230
+ "name": "IgcGridLite",
1231
+ "declaration": {
1232
+ "name": "IgcGridLite",
1233
+ "module": "src/components/grid.ts"
1234
+ }
1235
+ }
1236
+ ]
1237
+ },
1238
+ {
1239
+ "kind": "javascript-module",
1240
+ "path": "src/components/header-row.ts",
1241
+ "declarations": [
1242
+ {
1243
+ "kind": "class",
1244
+ "description": "",
1245
+ "name": "IgcGridLiteHeaderRow",
1246
+ "members": [
1247
+ {
1248
+ "kind": "field",
1249
+ "name": "tagName",
1250
+ "privacy": "public",
1251
+ "static": true,
1252
+ "readonly": true
1253
+ },
1254
+ {
1255
+ "kind": "method",
1256
+ "name": "register",
1257
+ "privacy": "public",
1258
+ "static": true,
1259
+ "return": {
1260
+ "type": {
1261
+ "text": "void"
1262
+ }
1263
+ }
1264
+ },
1265
+ {
1266
+ "kind": "field",
1267
+ "name": "_headers",
1268
+ "type": {
1269
+ "text": "NodeListOf<IgcGridLiteHeader<T>>"
1270
+ },
1271
+ "privacy": "protected"
1272
+ },
1273
+ {
1274
+ "kind": "field",
1275
+ "name": "state",
1276
+ "type": {
1277
+ "text": "StateController<T>"
1278
+ },
1279
+ "privacy": "public"
1280
+ },
1281
+ {
1282
+ "kind": "field",
1283
+ "name": "columns",
1284
+ "type": {
1285
+ "text": "Array<ColumnConfiguration<T>>"
1286
+ },
1287
+ "privacy": "public",
1288
+ "default": "[]"
1289
+ },
1290
+ {
1291
+ "kind": "field",
1292
+ "name": "headers",
1293
+ "privacy": "public",
1294
+ "readonly": true
1295
+ },
1296
+ {
1297
+ "kind": "method",
1298
+ "name": "#activeFilterColumn",
1299
+ "privacy": "private",
1300
+ "parameters": [
1301
+ {
1302
+ "name": "event",
1303
+ "type": {
1304
+ "text": "MouseEvent"
1305
+ }
1306
+ }
1307
+ ]
1308
+ }
1309
+ ],
1310
+ "superclass": {
1311
+ "name": "LitElement",
1312
+ "package": "lit"
1313
+ },
1314
+ "customElement": true
1315
+ }
1316
+ ],
1317
+ "exports": [
1318
+ {
1319
+ "kind": "js",
1320
+ "name": "default",
1321
+ "declaration": {
1322
+ "name": "IgcGridLiteHeaderRow",
1323
+ "module": "src/components/header-row.ts"
1324
+ }
1325
+ }
1326
+ ]
1327
+ },
1328
+ {
1329
+ "kind": "javascript-module",
1330
+ "path": "src/components/header.ts",
1331
+ "declarations": [
1332
+ {
1333
+ "kind": "class",
1334
+ "description": "",
1335
+ "name": "IgcGridLiteHeader",
1336
+ "members": [
1337
+ {
1338
+ "kind": "field",
1339
+ "name": "tagName",
1340
+ "privacy": "public",
1341
+ "static": true,
1342
+ "readonly": true
1343
+ },
1344
+ {
1345
+ "kind": "method",
1346
+ "name": "register",
1347
+ "privacy": "public",
1348
+ "static": true,
1349
+ "return": {
1350
+ "type": {
1351
+ "text": "void"
1352
+ }
1353
+ }
1354
+ },
1355
+ {
1356
+ "kind": "field",
1357
+ "name": "context",
1358
+ "type": {
1359
+ "text": "IgcHeaderContext<T>"
1360
+ },
1361
+ "privacy": "protected",
1362
+ "readonly": true
1363
+ },
1364
+ {
1365
+ "kind": "field",
1366
+ "name": "isSortable",
1367
+ "privacy": "protected",
1368
+ "readonly": true
1369
+ },
1370
+ {
1371
+ "kind": "field",
1372
+ "name": "resizeController",
1373
+ "privacy": "protected",
1374
+ "readonly": true
1375
+ },
1376
+ {
1377
+ "kind": "field",
1378
+ "name": "state",
1379
+ "type": {
1380
+ "text": "StateController<T>"
1381
+ },
1382
+ "privacy": "public"
1383
+ },
1384
+ {
1385
+ "kind": "field",
1386
+ "name": "column",
1387
+ "type": {
1388
+ "text": "ColumnConfiguration<T>"
1389
+ },
1390
+ "privacy": "public"
1391
+ },
1392
+ {
1393
+ "kind": "method",
1394
+ "name": "#addResizeEventHandlers",
1395
+ "privacy": "private"
1396
+ },
1397
+ {
1398
+ "kind": "method",
1399
+ "name": "#handleClick",
1400
+ "privacy": "private",
1401
+ "parameters": [
1402
+ {
1403
+ "name": "e",
1404
+ "type": {
1405
+ "text": "Event"
1406
+ }
1407
+ }
1408
+ ]
1409
+ },
1410
+ {
1411
+ "kind": "field",
1412
+ "name": "#handleResize",
1413
+ "privacy": "private"
1414
+ },
1415
+ {
1416
+ "kind": "method",
1417
+ "name": "#handleResizeStart",
1418
+ "privacy": "private",
1419
+ "parameters": [
1420
+ {
1421
+ "name": "ev",
1422
+ "type": {
1423
+ "text": "PointerEvent"
1424
+ }
1425
+ }
1426
+ ]
1427
+ },
1428
+ {
1429
+ "kind": "field",
1430
+ "name": "#handlePointerLost",
1431
+ "privacy": "private"
1432
+ },
1433
+ {
1434
+ "kind": "field",
1435
+ "name": "#handleAutosize",
1436
+ "privacy": "private"
1437
+ },
1438
+ {
1439
+ "kind": "method",
1440
+ "name": "renderSortPart",
1441
+ "privacy": "protected"
1442
+ },
1443
+ {
1444
+ "kind": "method",
1445
+ "name": "renderContentPart",
1446
+ "privacy": "protected"
1447
+ },
1448
+ {
1449
+ "kind": "method",
1450
+ "name": "renderResizePart",
1451
+ "privacy": "protected"
1452
+ }
1453
+ ],
1454
+ "superclass": {
1455
+ "name": "LitElement",
1456
+ "package": "lit"
1457
+ },
1458
+ "customElement": true
1459
+ }
1460
+ ],
1461
+ "exports": [
1462
+ {
1463
+ "kind": "js",
1464
+ "name": "default",
1465
+ "declaration": {
1466
+ "name": "IgcGridLiteHeader",
1467
+ "module": "src/components/header.ts"
1468
+ }
1469
+ }
1470
+ ]
1471
+ },
1472
+ {
1473
+ "kind": "javascript-module",
1474
+ "path": "src/components/row.ts",
1475
+ "declarations": [
1476
+ {
1477
+ "kind": "class",
1478
+ "description": "Component representing the DOM row in the IgcGridLite.",
1479
+ "name": "IgcGridLiteRow",
1480
+ "members": [
1481
+ {
1482
+ "kind": "field",
1483
+ "name": "tagName",
1484
+ "privacy": "public",
1485
+ "static": true,
1486
+ "readonly": true
1487
+ },
1488
+ {
1489
+ "kind": "method",
1490
+ "name": "register",
1491
+ "privacy": "public",
1492
+ "static": true,
1493
+ "return": {
1494
+ "type": {
1495
+ "text": "void"
1496
+ }
1497
+ }
1498
+ },
1499
+ {
1500
+ "kind": "field",
1501
+ "name": "_cells",
1502
+ "type": {
1503
+ "text": "NodeListOf<IgcGridLiteCell<T>>"
1504
+ },
1505
+ "privacy": "protected"
1506
+ },
1507
+ {
1508
+ "kind": "field",
1509
+ "name": "data",
1510
+ "type": {
1511
+ "text": "T"
1512
+ },
1513
+ "privacy": "public"
1514
+ },
1515
+ {
1516
+ "kind": "field",
1517
+ "name": "columns",
1518
+ "type": {
1519
+ "text": "Array<ColumnConfiguration<T>>"
1520
+ },
1521
+ "privacy": "public",
1522
+ "default": "[]"
1523
+ },
1524
+ {
1525
+ "kind": "field",
1526
+ "name": "cells",
1527
+ "privacy": "public",
1528
+ "readonly": true
1529
+ },
1530
+ {
1531
+ "kind": "field",
1532
+ "name": "activeNode",
1533
+ "type": {
1534
+ "text": "ActiveNode<T>"
1535
+ },
1536
+ "privacy": "public"
1537
+ },
1538
+ {
1539
+ "kind": "field",
1540
+ "name": "index",
1541
+ "type": {
1542
+ "text": "number"
1543
+ },
1544
+ "privacy": "public",
1545
+ "default": "-1"
1546
+ }
1547
+ ],
1548
+ "superclass": {
1549
+ "name": "LitElement",
1550
+ "package": "lit"
1551
+ },
1552
+ "customElement": true
1553
+ }
1554
+ ],
1555
+ "exports": [
1556
+ {
1557
+ "kind": "js",
1558
+ "name": "default",
1559
+ "declaration": {
1560
+ "name": "IgcGridLiteRow",
1561
+ "module": "src/components/row.ts"
1562
+ }
1563
+ }
1564
+ ]
1565
+ },
1566
+ {
1567
+ "kind": "javascript-module",
1568
+ "path": "src/components/virtualizer.ts",
1569
+ "declarations": [
1570
+ {
1571
+ "kind": "class",
1572
+ "description": "",
1573
+ "name": "IgcVirtualizer",
1574
+ "members": [
1575
+ {
1576
+ "kind": "field",
1577
+ "name": "tagName",
1578
+ "privacy": "public",
1579
+ "static": true,
1580
+ "readonly": true
1581
+ },
1582
+ {
1583
+ "kind": "method",
1584
+ "name": "register",
1585
+ "privacy": "public",
1586
+ "static": true,
1587
+ "return": {
1588
+ "type": {
1589
+ "text": "void"
1590
+ }
1591
+ }
1592
+ },
1593
+ {
1594
+ "kind": "field",
1595
+ "name": "scroller",
1596
+ "type": {
1597
+ "text": "boolean"
1598
+ },
1599
+ "privacy": "public",
1600
+ "default": "true"
1601
+ }
1602
+ ],
1603
+ "superclass": {
1604
+ "name": "LitVirtualizer",
1605
+ "package": "@lit-labs/virtualizer/LitVirtualizer.js"
1606
+ }
1607
+ }
1608
+ ],
1609
+ "exports": [
1610
+ {
1611
+ "kind": "js",
1612
+ "name": "default",
1613
+ "declaration": {
1614
+ "name": "IgcVirtualizer",
1615
+ "module": "src/components/virtualizer.ts"
1616
+ }
1617
+ }
1618
+ ]
1619
+ },
1620
+ {
1621
+ "kind": "javascript-module",
1622
+ "path": "src/controllers/data-operation.ts",
1623
+ "declarations": [
1624
+ {
1625
+ "kind": "class",
1626
+ "description": "",
1627
+ "name": "DataOperationsController",
1628
+ "members": [
1629
+ {
1630
+ "kind": "field",
1631
+ "name": "sorting",
1632
+ "privacy": "protected",
1633
+ "default": "new SortDataOperation<T>()"
1634
+ },
1635
+ {
1636
+ "kind": "field",
1637
+ "name": "filtering",
1638
+ "privacy": "protected",
1639
+ "default": "new FilterDataOperation<T>()"
1640
+ },
1641
+ {
1642
+ "kind": "method",
1643
+ "name": "hostConnected",
1644
+ "privacy": "public"
1645
+ },
1646
+ {
1647
+ "kind": "field",
1648
+ "name": "hasCustomSort",
1649
+ "privacy": "protected",
1650
+ "readonly": true
1651
+ },
1652
+ {
1653
+ "kind": "field",
1654
+ "name": "hasCustomFilter",
1655
+ "privacy": "protected",
1656
+ "readonly": true
1657
+ },
1658
+ {
1659
+ "kind": "field",
1660
+ "name": "customFilter",
1661
+ "privacy": "protected",
1662
+ "readonly": true
1663
+ },
1664
+ {
1665
+ "kind": "field",
1666
+ "name": "customSort",
1667
+ "privacy": "protected",
1668
+ "readonly": true
1669
+ },
1670
+ {
1671
+ "kind": "method",
1672
+ "name": "apply",
1673
+ "privacy": "public",
1674
+ "parameters": [
1675
+ {
1676
+ "name": "data",
1677
+ "type": {
1678
+ "text": "T[]"
1679
+ }
1680
+ },
1681
+ {
1682
+ "name": "state",
1683
+ "type": {
1684
+ "text": "StateController<T>"
1685
+ }
1686
+ }
1687
+ ]
1688
+ }
1689
+ ]
1690
+ }
1691
+ ],
1692
+ "exports": [
1693
+ {
1694
+ "kind": "js",
1695
+ "name": "DataOperationsController",
1696
+ "declaration": {
1697
+ "name": "DataOperationsController",
1698
+ "module": "src/controllers/data-operation.ts"
1699
+ }
1700
+ }
1701
+ ]
1702
+ },
1703
+ {
1704
+ "kind": "javascript-module",
1705
+ "path": "src/controllers/dom.ts",
1706
+ "declarations": [
1707
+ {
1708
+ "kind": "class",
1709
+ "description": "",
1710
+ "name": "GridDOMController",
1711
+ "members": [
1712
+ {
1713
+ "kind": "field",
1714
+ "name": "#initialSize",
1715
+ "privacy": "private"
1716
+ },
1717
+ {
1718
+ "kind": "field",
1719
+ "name": "container",
1720
+ "privacy": "public",
1721
+ "readonly": true
1722
+ },
1723
+ {
1724
+ "kind": "field",
1725
+ "name": "columnSizes",
1726
+ "type": {
1727
+ "text": "StyleInfo"
1728
+ },
1729
+ "privacy": "public",
1730
+ "default": "{}"
1731
+ },
1732
+ {
1733
+ "kind": "field",
1734
+ "name": "rowRenderer",
1735
+ "type": {
1736
+ "text": "RenderItemFunction<T>"
1737
+ },
1738
+ "privacy": "public"
1739
+ },
1740
+ {
1741
+ "kind": "method",
1742
+ "name": "hostConnected",
1743
+ "privacy": "public"
1744
+ },
1745
+ {
1746
+ "kind": "method",
1747
+ "name": "hostUpdate",
1748
+ "privacy": "public",
1749
+ "return": {
1750
+ "type": {
1751
+ "text": "void"
1752
+ }
1753
+ }
1754
+ },
1755
+ {
1756
+ "kind": "method",
1757
+ "name": "setScrollOffset",
1758
+ "privacy": "public"
1759
+ },
1760
+ {
1761
+ "kind": "method",
1762
+ "name": "setGridColumnSizes",
1763
+ "privacy": "protected"
1764
+ },
1765
+ {
1766
+ "kind": "method",
1767
+ "name": "getActiveRowStyles",
1768
+ "privacy": "public",
1769
+ "return": {
1770
+ "type": {
1771
+ "text": "StyleInfo"
1772
+ }
1773
+ },
1774
+ "parameters": [
1775
+ {
1776
+ "name": "index",
1777
+ "type": {
1778
+ "text": "number"
1779
+ }
1780
+ }
1781
+ ]
1782
+ }
1783
+ ]
1784
+ }
1785
+ ],
1786
+ "exports": [
1787
+ {
1788
+ "kind": "js",
1789
+ "name": "GridDOMController",
1790
+ "declaration": {
1791
+ "name": "GridDOMController",
1792
+ "module": "src/controllers/dom.ts"
1793
+ }
1794
+ }
1795
+ ]
1796
+ },
1797
+ {
1798
+ "kind": "javascript-module",
1799
+ "path": "src/controllers/filter.ts",
1800
+ "declarations": [
1801
+ {
1802
+ "kind": "class",
1803
+ "description": "",
1804
+ "name": "FilterController",
1805
+ "members": [
1806
+ {
1807
+ "kind": "field",
1808
+ "name": "state",
1809
+ "type": {
1810
+ "text": "FilterState<T>"
1811
+ },
1812
+ "privacy": "public",
1813
+ "default": "new FilterState()"
1814
+ },
1815
+ {
1816
+ "kind": "field",
1817
+ "name": "filterRow",
1818
+ "privacy": "public",
1819
+ "readonly": true
1820
+ },
1821
+ {
1822
+ "kind": "field",
1823
+ "name": "#virtualizer",
1824
+ "privacy": "private",
1825
+ "readonly": true
1826
+ },
1827
+ {
1828
+ "kind": "method",
1829
+ "name": "#emitFilteringEvent",
1830
+ "privacy": "private",
1831
+ "parameters": [
1832
+ {
1833
+ "name": "expression",
1834
+ "type": {
1835
+ "text": "FilterExpression<T>"
1836
+ }
1837
+ },
1838
+ {
1839
+ "name": "type",
1840
+ "type": {
1841
+ "text": "'add' | 'modify' | 'remove'"
1842
+ }
1843
+ }
1844
+ ]
1845
+ },
1846
+ {
1847
+ "kind": "method",
1848
+ "name": "#emitFilteredEvent",
1849
+ "privacy": "private",
1850
+ "parameters": [
1851
+ {
1852
+ "name": "detail",
1853
+ "optional": true,
1854
+ "type": {
1855
+ "text": "IgcFilteredEvent<T>"
1856
+ }
1857
+ }
1858
+ ]
1859
+ },
1860
+ {
1861
+ "kind": "method",
1862
+ "name": "#filter",
1863
+ "privacy": "private",
1864
+ "parameters": [
1865
+ {
1866
+ "name": "expression",
1867
+ "type": {
1868
+ "text": "FilterExpression<T> | FilterExpression<T>[]"
1869
+ }
1870
+ }
1871
+ ]
1872
+ },
1873
+ {
1874
+ "kind": "method",
1875
+ "name": "hostConnected",
1876
+ "privacy": "public"
1877
+ },
1878
+ {
1879
+ "kind": "method",
1880
+ "name": "hostUpdate",
1881
+ "privacy": "public",
1882
+ "return": {
1883
+ "type": {
1884
+ "text": "void"
1885
+ }
1886
+ }
1887
+ },
1888
+ {
1889
+ "kind": "method",
1890
+ "name": "get",
1891
+ "privacy": "public",
1892
+ "parameters": [
1893
+ {
1894
+ "name": "key",
1895
+ "type": {
1896
+ "text": "Keys<T>"
1897
+ }
1898
+ }
1899
+ ]
1900
+ },
1901
+ {
1902
+ "kind": "method",
1903
+ "name": "reset",
1904
+ "privacy": "public",
1905
+ "parameters": [
1906
+ {
1907
+ "name": "key",
1908
+ "optional": true,
1909
+ "type": {
1910
+ "text": "Keys<T>"
1911
+ }
1912
+ }
1913
+ ]
1914
+ },
1915
+ {
1916
+ "kind": "method",
1917
+ "name": "setActiveColumn",
1918
+ "privacy": "public",
1919
+ "parameters": [
1920
+ {
1921
+ "name": "column",
1922
+ "optional": true,
1923
+ "type": {
1924
+ "text": "ColumnConfiguration<T>"
1925
+ }
1926
+ }
1927
+ ]
1928
+ },
1929
+ {
1930
+ "kind": "method",
1931
+ "name": "getDefaultExpression",
1932
+ "privacy": "public",
1933
+ "parameters": [
1934
+ {
1935
+ "name": "column",
1936
+ "type": {
1937
+ "text": "ColumnConfiguration<T>"
1938
+ }
1939
+ }
1940
+ ]
1941
+ },
1942
+ {
1943
+ "kind": "method",
1944
+ "name": "removeAllExpressions",
1945
+ "privacy": "public",
1946
+ "parameters": [
1947
+ {
1948
+ "name": "key",
1949
+ "type": {
1950
+ "text": "Keys<T>"
1951
+ }
1952
+ }
1953
+ ]
1954
+ },
1955
+ {
1956
+ "kind": "method",
1957
+ "name": "removeExpression",
1958
+ "privacy": "public",
1959
+ "parameters": [
1960
+ {
1961
+ "name": "expression",
1962
+ "type": {
1963
+ "text": "FilterExpression<T>"
1964
+ }
1965
+ }
1966
+ ]
1967
+ },
1968
+ {
1969
+ "kind": "method",
1970
+ "name": "filterWithEvent",
1971
+ "privacy": "public",
1972
+ "parameters": [
1973
+ {
1974
+ "name": "expression",
1975
+ "type": {
1976
+ "text": "FilterExpression<T>"
1977
+ }
1978
+ },
1979
+ {
1980
+ "name": "type",
1981
+ "type": {
1982
+ "text": "'add' | 'modify' | 'remove'"
1983
+ }
1984
+ }
1985
+ ]
1986
+ },
1987
+ {
1988
+ "kind": "method",
1989
+ "name": "filter",
1990
+ "privacy": "public",
1991
+ "parameters": [
1992
+ {
1993
+ "name": "expression",
1994
+ "type": {
1995
+ "text": "FilterExpression<T> | FilterExpression<T>[]"
1996
+ }
1997
+ }
1998
+ ]
1999
+ }
2000
+ ]
2001
+ }
2002
+ ],
2003
+ "exports": [
2004
+ {
2005
+ "kind": "js",
2006
+ "name": "FilterController",
2007
+ "declaration": {
2008
+ "name": "FilterController",
2009
+ "module": "src/controllers/filter.ts"
2010
+ }
2011
+ }
2012
+ ]
2013
+ },
2014
+ {
2015
+ "kind": "javascript-module",
2016
+ "path": "src/controllers/navigation.ts",
2017
+ "declarations": [
2018
+ {
2019
+ "kind": "class",
2020
+ "description": "",
2021
+ "name": "NavigationController",
2022
+ "members": [
2023
+ {
2024
+ "kind": "field",
2025
+ "name": "handlers",
2026
+ "privacy": "protected",
2027
+ "default": "new Map( Object.entries({ ArrowDown: this.arrowDown, ArrowUp: this.arrowUp, ArrowLeft: this.arrowLeft, ArrowRight: this.arrowRight, Home: this.home, End: this.end, }) )"
2028
+ },
2029
+ {
2030
+ "kind": "field",
2031
+ "name": "virtualizer",
2032
+ "privacy": "protected",
2033
+ "readonly": true
2034
+ },
2035
+ {
2036
+ "kind": "field",
2037
+ "name": "state",
2038
+ "privacy": "protected",
2039
+ "default": "NAVIGATION_STATE"
2040
+ },
2041
+ {
2042
+ "kind": "field",
2043
+ "name": "_active",
2044
+ "privacy": "protected",
2045
+ "default": "SENTINEL_NODE"
2046
+ },
2047
+ {
2048
+ "kind": "field",
2049
+ "name": "nextNode",
2050
+ "privacy": "protected",
2051
+ "readonly": true
2052
+ },
2053
+ {
2054
+ "kind": "field",
2055
+ "name": "columns",
2056
+ "privacy": "protected",
2057
+ "readonly": true
2058
+ },
2059
+ {
2060
+ "kind": "field",
2061
+ "name": "firstColumn",
2062
+ "privacy": "protected",
2063
+ "readonly": true
2064
+ },
2065
+ {
2066
+ "kind": "method",
2067
+ "name": "getPreviousColumn",
2068
+ "privacy": "protected",
2069
+ "parameters": [
2070
+ {
2071
+ "name": "key",
2072
+ "type": {
2073
+ "text": "Keys<T>"
2074
+ }
2075
+ }
2076
+ ]
2077
+ },
2078
+ {
2079
+ "kind": "method",
2080
+ "name": "getNextColumn",
2081
+ "privacy": "protected",
2082
+ "parameters": [
2083
+ {
2084
+ "name": "key",
2085
+ "type": {
2086
+ "text": "Keys<T>"
2087
+ }
2088
+ }
2089
+ ]
2090
+ },
2091
+ {
2092
+ "kind": "method",
2093
+ "name": "scrollToCell",
2094
+ "privacy": "protected",
2095
+ "parameters": [
2096
+ {
2097
+ "name": "node",
2098
+ "type": {
2099
+ "text": "ActiveNode<T>"
2100
+ }
2101
+ }
2102
+ ]
2103
+ },
2104
+ {
2105
+ "kind": "field",
2106
+ "name": "active",
2107
+ "privacy": "public"
2108
+ },
2109
+ {
2110
+ "kind": "method",
2111
+ "name": "home",
2112
+ "privacy": "protected"
2113
+ },
2114
+ {
2115
+ "kind": "method",
2116
+ "name": "end",
2117
+ "privacy": "protected"
2118
+ },
2119
+ {
2120
+ "kind": "method",
2121
+ "name": "arrowDown",
2122
+ "privacy": "protected"
2123
+ },
2124
+ {
2125
+ "kind": "method",
2126
+ "name": "arrowUp",
2127
+ "privacy": "protected"
2128
+ },
2129
+ {
2130
+ "kind": "method",
2131
+ "name": "arrowLeft",
2132
+ "privacy": "protected"
2133
+ },
2134
+ {
2135
+ "kind": "method",
2136
+ "name": "arrowRight",
2137
+ "privacy": "protected"
2138
+ },
2139
+ {
2140
+ "kind": "method",
2141
+ "name": "hostConnected",
2142
+ "privacy": "public"
2143
+ },
2144
+ {
2145
+ "kind": "method",
2146
+ "name": "hostDisconnected",
2147
+ "privacy": "public"
2148
+ },
2149
+ {
2150
+ "kind": "method",
2151
+ "name": "navigate",
2152
+ "privacy": "public",
2153
+ "parameters": [
2154
+ {
2155
+ "name": "event",
2156
+ "type": {
2157
+ "text": "KeyboardEvent"
2158
+ }
2159
+ }
2160
+ ]
2161
+ }
2162
+ ]
2163
+ }
2164
+ ],
2165
+ "exports": [
2166
+ {
2167
+ "kind": "js",
2168
+ "name": "NavigationController",
2169
+ "declaration": {
2170
+ "name": "NavigationController",
2171
+ "module": "src/controllers/navigation.ts"
2172
+ }
2173
+ }
2174
+ ]
2175
+ },
2176
+ {
2177
+ "kind": "javascript-module",
2178
+ "path": "src/controllers/resize.ts",
2179
+ "declarations": [
2180
+ {
2181
+ "kind": "class",
2182
+ "description": "",
2183
+ "name": "ResizeController",
2184
+ "members": [
2185
+ {
2186
+ "kind": "field",
2187
+ "name": "indicatorActive",
2188
+ "type": {
2189
+ "text": "boolean"
2190
+ },
2191
+ "privacy": "public",
2192
+ "default": "false"
2193
+ },
2194
+ {
2195
+ "kind": "field",
2196
+ "name": "indicatorOffset",
2197
+ "type": {
2198
+ "text": "number"
2199
+ },
2200
+ "privacy": "public",
2201
+ "default": "0"
2202
+ },
2203
+ {
2204
+ "kind": "method",
2205
+ "name": "#maxSize",
2206
+ "privacy": "private",
2207
+ "parameters": [
2208
+ {
2209
+ "name": "key",
2210
+ "type": {
2211
+ "text": "Keys<T>"
2212
+ }
2213
+ },
2214
+ {
2215
+ "name": "headerWidth",
2216
+ "type": {
2217
+ "text": "number"
2218
+ }
2219
+ }
2220
+ ]
2221
+ },
2222
+ {
2223
+ "kind": "method",
2224
+ "name": "start",
2225
+ "privacy": "public",
2226
+ "parameters": [
2227
+ {
2228
+ "name": "header",
2229
+ "type": {
2230
+ "text": "IgcGridLiteHeader<T>"
2231
+ },
2232
+ "description": "the"
2233
+ }
2234
+ ],
2235
+ "description": "Begins resizing a column by showing and positioning the resize indicator in relation to the column."
2236
+ },
2237
+ {
2238
+ "kind": "method",
2239
+ "name": "stop",
2240
+ "privacy": "public",
2241
+ "description": "Stops and resets the resizing state."
2242
+ },
2243
+ {
2244
+ "kind": "method",
2245
+ "name": "resize",
2246
+ "privacy": "public",
2247
+ "parameters": [
2248
+ {
2249
+ "name": "column",
2250
+ "type": {
2251
+ "text": "ColumnConfiguration<T>"
2252
+ }
2253
+ },
2254
+ {
2255
+ "name": "width",
2256
+ "type": {
2257
+ "text": "number"
2258
+ }
2259
+ },
2260
+ {
2261
+ "name": "sizerOffset",
2262
+ "optional": true,
2263
+ "type": {
2264
+ "text": "number"
2265
+ }
2266
+ }
2267
+ ]
2268
+ },
2269
+ {
2270
+ "kind": "method",
2271
+ "name": "autosize",
2272
+ "privacy": "public",
2273
+ "parameters": [
2274
+ {
2275
+ "name": "column",
2276
+ "type": {
2277
+ "text": "ColumnConfiguration<T>"
2278
+ }
2279
+ },
2280
+ {
2281
+ "name": "header",
2282
+ "type": {
2283
+ "text": "IgcGridLiteHeader<T>"
2284
+ }
2285
+ }
2286
+ ]
2287
+ },
2288
+ {
2289
+ "kind": "method",
2290
+ "name": "hostConnected",
2291
+ "privacy": "public"
2292
+ },
2293
+ {
2294
+ "kind": "method",
2295
+ "name": "renderIndicator",
2296
+ "privacy": "public",
2297
+ "description": "Renders the resize indicator in the grid."
2298
+ }
2299
+ ]
2300
+ }
2301
+ ],
2302
+ "exports": [
2303
+ {
2304
+ "kind": "js",
2305
+ "name": "ResizeController",
2306
+ "declaration": {
2307
+ "name": "ResizeController",
2308
+ "module": "src/controllers/resize.ts"
2309
+ }
2310
+ }
2311
+ ]
2312
+ },
2313
+ {
2314
+ "kind": "javascript-module",
2315
+ "path": "src/controllers/sort.ts",
2316
+ "declarations": [
2317
+ {
2318
+ "kind": "class",
2319
+ "description": "",
2320
+ "name": "SortController",
2321
+ "members": [
2322
+ {
2323
+ "kind": "field",
2324
+ "name": "state",
2325
+ "type": {
2326
+ "text": "SortState<T>"
2327
+ },
2328
+ "privacy": "public",
2329
+ "default": "new Map()"
2330
+ },
2331
+ {
2332
+ "kind": "field",
2333
+ "name": "#isMultipleSort",
2334
+ "privacy": "private",
2335
+ "readonly": true
2336
+ },
2337
+ {
2338
+ "kind": "field",
2339
+ "name": "#isTriStateSort",
2340
+ "privacy": "private",
2341
+ "readonly": true
2342
+ },
2343
+ {
2344
+ "kind": "method",
2345
+ "name": "#resolveSortOptions",
2346
+ "privacy": "private",
2347
+ "parameters": [
2348
+ {
2349
+ "name": "options",
2350
+ "optional": true,
2351
+ "type": {
2352
+ "text": "boolean | ColumnSortConfiguration<T>"
2353
+ }
2354
+ }
2355
+ ]
2356
+ },
2357
+ {
2358
+ "kind": "method",
2359
+ "name": "#createDefaultExpression",
2360
+ "privacy": "private",
2361
+ "parameters": [
2362
+ {
2363
+ "name": "key",
2364
+ "type": {
2365
+ "text": "Keys<T>"
2366
+ }
2367
+ }
2368
+ ]
2369
+ },
2370
+ {
2371
+ "kind": "method",
2372
+ "name": "#orderBy",
2373
+ "privacy": "private",
2374
+ "return": {
2375
+ "type": {
2376
+ "text": "SortingDirection"
2377
+ }
2378
+ },
2379
+ "parameters": [
2380
+ {
2381
+ "name": "dir",
2382
+ "optional": true,
2383
+ "type": {
2384
+ "text": "SortingDirection"
2385
+ }
2386
+ }
2387
+ ]
2388
+ },
2389
+ {
2390
+ "kind": "method",
2391
+ "name": "#emitSortingEvent",
2392
+ "privacy": "private",
2393
+ "parameters": [
2394
+ {
2395
+ "name": "detail",
2396
+ "type": {
2397
+ "text": "SortExpression<T>"
2398
+ }
2399
+ }
2400
+ ]
2401
+ },
2402
+ {
2403
+ "kind": "method",
2404
+ "name": "#emitSortedEvent",
2405
+ "privacy": "private",
2406
+ "parameters": [
2407
+ {
2408
+ "name": "detail",
2409
+ "type": {
2410
+ "text": "SortExpression<T>"
2411
+ }
2412
+ }
2413
+ ]
2414
+ },
2415
+ {
2416
+ "kind": "method",
2417
+ "name": "#setExpression",
2418
+ "privacy": "private",
2419
+ "parameters": [
2420
+ {
2421
+ "name": "expression",
2422
+ "type": {
2423
+ "text": "SortExpression<T>"
2424
+ }
2425
+ }
2426
+ ]
2427
+ },
2428
+ {
2429
+ "kind": "method",
2430
+ "name": "sortFromHeaderClick",
2431
+ "privacy": "public",
2432
+ "parameters": [
2433
+ {
2434
+ "name": "column",
2435
+ "type": {
2436
+ "text": "ColumnConfiguration<T>"
2437
+ }
2438
+ }
2439
+ ]
2440
+ },
2441
+ {
2442
+ "kind": "method",
2443
+ "name": "prepareExpression",
2444
+ "privacy": "public",
2445
+ "return": {
2446
+ "type": {
2447
+ "text": "SortExpression<T>"
2448
+ }
2449
+ },
2450
+ "parameters": [
2451
+ {
2452
+ "name": "{ key, sort: options }",
2453
+ "type": {
2454
+ "text": "ColumnConfiguration<T>"
2455
+ }
2456
+ }
2457
+ ]
2458
+ },
2459
+ {
2460
+ "kind": "method",
2461
+ "name": "reset",
2462
+ "privacy": "public",
2463
+ "parameters": [
2464
+ {
2465
+ "name": "key",
2466
+ "optional": true,
2467
+ "type": {
2468
+ "text": "Keys<T>"
2469
+ }
2470
+ }
2471
+ ]
2472
+ },
2473
+ {
2474
+ "kind": "method",
2475
+ "name": "_sort",
2476
+ "privacy": "protected",
2477
+ "parameters": [
2478
+ {
2479
+ "name": "expressions",
2480
+ "type": {
2481
+ "text": "SortExpression<T> | SortExpression<T>[]"
2482
+ }
2483
+ }
2484
+ ]
2485
+ },
2486
+ {
2487
+ "kind": "method",
2488
+ "name": "sort",
2489
+ "privacy": "public",
2490
+ "parameters": [
2491
+ {
2492
+ "name": "expressions",
2493
+ "type": {
2494
+ "text": "SortExpression<T> | SortExpression<T>[]"
2495
+ }
2496
+ }
2497
+ ]
2498
+ },
2499
+ {
2500
+ "kind": "method",
2501
+ "name": "hostConnected",
2502
+ "privacy": "public"
2503
+ }
2504
+ ]
2505
+ }
2506
+ ],
2507
+ "exports": [
2508
+ {
2509
+ "kind": "js",
2510
+ "name": "SortController",
2511
+ "declaration": {
2512
+ "name": "SortController",
2513
+ "module": "src/controllers/sort.ts"
2514
+ }
2515
+ }
2516
+ ]
2517
+ },
2518
+ {
2519
+ "kind": "javascript-module",
2520
+ "path": "src/controllers/state.ts",
2521
+ "declarations": [
2522
+ {
2523
+ "kind": "class",
2524
+ "description": "",
2525
+ "name": "StateController",
2526
+ "members": [
2527
+ {
2528
+ "kind": "field",
2529
+ "name": "sorting",
2530
+ "type": {
2531
+ "text": "SortController<T>"
2532
+ },
2533
+ "privacy": "public"
2534
+ },
2535
+ {
2536
+ "kind": "field",
2537
+ "name": "filtering",
2538
+ "type": {
2539
+ "text": "FilterController<T>"
2540
+ },
2541
+ "privacy": "public"
2542
+ },
2543
+ {
2544
+ "kind": "field",
2545
+ "name": "navigation",
2546
+ "type": {
2547
+ "text": "NavigationController<T>"
2548
+ },
2549
+ "privacy": "public"
2550
+ },
2551
+ {
2552
+ "kind": "field",
2553
+ "name": "resizing",
2554
+ "type": {
2555
+ "text": "ResizeController<T>"
2556
+ },
2557
+ "privacy": "public"
2558
+ },
2559
+ {
2560
+ "kind": "field",
2561
+ "name": "active",
2562
+ "privacy": "public"
2563
+ },
2564
+ {
2565
+ "kind": "field",
2566
+ "name": "headerRow",
2567
+ "privacy": "public",
2568
+ "readonly": true
2569
+ },
2570
+ {
2571
+ "kind": "field",
2572
+ "name": "scrollContainer",
2573
+ "privacy": "public",
2574
+ "readonly": true
2575
+ },
2576
+ {
2577
+ "kind": "method",
2578
+ "name": "init",
2579
+ "privacy": "protected"
2580
+ },
2581
+ {
2582
+ "kind": "method",
2583
+ "name": "hostConnected",
2584
+ "privacy": "public"
2585
+ },
2586
+ {
2587
+ "kind": "method",
2588
+ "name": "hostUpdate",
2589
+ "privacy": "public",
2590
+ "return": {
2591
+ "type": {
2592
+ "text": "void"
2593
+ }
2594
+ }
2595
+ }
2596
+ ]
2597
+ },
2598
+ {
2599
+ "kind": "variable",
2600
+ "name": "gridStateContext"
2601
+ }
2602
+ ],
2603
+ "exports": [
2604
+ {
2605
+ "kind": "js",
2606
+ "name": "StateController",
2607
+ "declaration": {
2608
+ "name": "StateController",
2609
+ "module": "src/controllers/state.ts"
2610
+ }
2611
+ },
2612
+ {
2613
+ "kind": "js",
2614
+ "name": "gridStateContext",
2615
+ "declaration": {
2616
+ "name": "gridStateContext",
2617
+ "module": "src/controllers/state.ts"
2618
+ }
2619
+ }
2620
+ ]
2621
+ },
2622
+ {
2623
+ "kind": "javascript-module",
2624
+ "path": "src/internal/constants.ts",
2625
+ "declarations": [
2626
+ {
2627
+ "kind": "variable",
2628
+ "name": "PIPELINE",
2629
+ "type": {
2630
+ "text": "string"
2631
+ },
2632
+ "default": "'pipeline'"
2633
+ },
2634
+ {
2635
+ "kind": "variable",
2636
+ "name": "SORT_ICON_ASCENDING",
2637
+ "type": {
2638
+ "text": "'arrow-upward'"
2639
+ },
2640
+ "default": "'arrow-upward'"
2641
+ },
2642
+ {
2643
+ "kind": "variable",
2644
+ "name": "SORT_ICON_DESCENDING",
2645
+ "type": {
2646
+ "text": "'arrow-downward'"
2647
+ },
2648
+ "default": "'arrow-downward'"
2649
+ },
2650
+ {
2651
+ "kind": "variable",
2652
+ "name": "MIN_COL_RESIZE_WIDTH",
2653
+ "type": {
2654
+ "text": "number"
2655
+ },
2656
+ "default": "80"
2657
+ },
2658
+ {
2659
+ "kind": "variable",
2660
+ "name": "SENTINEL_NODE",
2661
+ "type": {
2662
+ "text": "Readonly<ActiveNode<any>>"
2663
+ }
2664
+ },
2665
+ {
2666
+ "kind": "variable",
2667
+ "name": "DEFAULT_COLUMN_CONFIG"
2668
+ },
2669
+ {
2670
+ "kind": "variable",
2671
+ "name": "NAVIGATION_STATE",
2672
+ "type": {
2673
+ "text": "Map<NavigationState, ActiveNode<any>>"
2674
+ },
2675
+ "default": "new Map([ ['previous', SENTINEL_NODE], ['current', SENTINEL_NODE], ])"
2676
+ }
2677
+ ],
2678
+ "exports": [
2679
+ {
2680
+ "kind": "js",
2681
+ "name": "PIPELINE",
2682
+ "declaration": {
2683
+ "name": "PIPELINE",
2684
+ "module": "src/internal/constants.ts"
2685
+ }
2686
+ },
2687
+ {
2688
+ "kind": "js",
2689
+ "name": "SORT_ICON_ASCENDING",
2690
+ "declaration": {
2691
+ "name": "SORT_ICON_ASCENDING",
2692
+ "module": "src/internal/constants.ts"
2693
+ }
2694
+ },
2695
+ {
2696
+ "kind": "js",
2697
+ "name": "SORT_ICON_DESCENDING",
2698
+ "declaration": {
2699
+ "name": "SORT_ICON_DESCENDING",
2700
+ "module": "src/internal/constants.ts"
2701
+ }
2702
+ },
2703
+ {
2704
+ "kind": "js",
2705
+ "name": "MIN_COL_RESIZE_WIDTH",
2706
+ "declaration": {
2707
+ "name": "MIN_COL_RESIZE_WIDTH",
2708
+ "module": "src/internal/constants.ts"
2709
+ }
2710
+ },
2711
+ {
2712
+ "kind": "js",
2713
+ "name": "SENTINEL_NODE",
2714
+ "declaration": {
2715
+ "name": "SENTINEL_NODE",
2716
+ "module": "src/internal/constants.ts"
2717
+ }
2718
+ },
2719
+ {
2720
+ "kind": "js",
2721
+ "name": "DEFAULT_COLUMN_CONFIG",
2722
+ "declaration": {
2723
+ "name": "DEFAULT_COLUMN_CONFIG",
2724
+ "module": "src/internal/constants.ts"
2725
+ }
2726
+ },
2727
+ {
2728
+ "kind": "js",
2729
+ "name": "NAVIGATION_STATE",
2730
+ "declaration": {
2731
+ "name": "NAVIGATION_STATE",
2732
+ "module": "src/internal/constants.ts"
2733
+ }
2734
+ }
2735
+ ]
2736
+ },
2737
+ {
2738
+ "kind": "javascript-module",
2739
+ "path": "src/internal/icon-registry.ts",
2740
+ "declarations": [
2741
+ {
2742
+ "kind": "function",
2743
+ "name": "registerGridIcons"
2744
+ }
2745
+ ],
2746
+ "exports": [
2747
+ {
2748
+ "kind": "js",
2749
+ "name": "registerGridIcons",
2750
+ "declaration": {
2751
+ "name": "registerGridIcons",
2752
+ "module": "src/internal/icon-registry.ts"
2753
+ }
2754
+ }
2755
+ ]
2756
+ },
2757
+ {
2758
+ "kind": "javascript-module",
2759
+ "path": "src/internal/is-defined.ts",
2760
+ "declarations": [
2761
+ {
2762
+ "kind": "function",
2763
+ "name": "isDefined",
2764
+ "return": {
2765
+ "type": {
2766
+ "text": "value is NonNullable<T>"
2767
+ }
2768
+ },
2769
+ "parameters": [
2770
+ {
2771
+ "name": "value",
2772
+ "type": {
2773
+ "text": "T | null | undefined"
2774
+ }
2775
+ }
2776
+ ]
2777
+ }
2778
+ ],
2779
+ "exports": [
2780
+ {
2781
+ "kind": "js",
2782
+ "name": "isDefined",
2783
+ "declaration": {
2784
+ "name": "isDefined",
2785
+ "module": "src/internal/is-defined.ts"
2786
+ }
2787
+ }
2788
+ ]
2789
+ },
2790
+ {
2791
+ "kind": "javascript-module",
2792
+ "path": "src/internal/normalize-case.ts",
2793
+ "declarations": [
2794
+ {
2795
+ "kind": "function",
2796
+ "name": "normalizeCase",
2797
+ "parameters": [
2798
+ {
2799
+ "name": "string",
2800
+ "type": {
2801
+ "text": "string"
2802
+ }
2803
+ },
2804
+ {
2805
+ "name": "caseSensitive",
2806
+ "optional": true,
2807
+ "type": {
2808
+ "text": "boolean"
2809
+ }
2810
+ }
2811
+ ]
2812
+ }
2813
+ ],
2814
+ "exports": [
2815
+ {
2816
+ "kind": "js",
2817
+ "name": "normalizeCase",
2818
+ "declaration": {
2819
+ "name": "normalizeCase",
2820
+ "module": "src/internal/normalize-case.ts"
2821
+ }
2822
+ }
2823
+ ]
2824
+ },
2825
+ {
2826
+ "kind": "javascript-module",
2827
+ "path": "src/internal/part-map.ts",
2828
+ "declarations": [
2829
+ {
2830
+ "kind": "function",
2831
+ "name": "partNameMap",
2832
+ "parameters": [
2833
+ {
2834
+ "name": "parts",
2835
+ "type": {
2836
+ "text": "PartNameInfo"
2837
+ }
2838
+ }
2839
+ ]
2840
+ }
2841
+ ],
2842
+ "exports": [
2843
+ {
2844
+ "kind": "js",
2845
+ "name": "partNameMap",
2846
+ "declaration": {
2847
+ "name": "partNameMap",
2848
+ "module": "src/internal/part-map.ts"
2849
+ }
2850
+ }
2851
+ ]
2852
+ },
2853
+ {
2854
+ "kind": "javascript-module",
2855
+ "path": "src/internal/register.ts",
2856
+ "declarations": [
2857
+ {
2858
+ "kind": "function",
2859
+ "name": "registerComponent",
2860
+ "return": {
2861
+ "type": {
2862
+ "text": "void"
2863
+ }
2864
+ },
2865
+ "parameters": [
2866
+ {
2867
+ "name": "component",
2868
+ "type": {
2869
+ "text": "IgcComponent"
2870
+ }
2871
+ },
2872
+ {
2873
+ "name": "dependencies",
2874
+ "type": {
2875
+ "text": "IgcComponent[]"
2876
+ }
2877
+ }
2878
+ ]
2879
+ }
2880
+ ],
2881
+ "exports": [
2882
+ {
2883
+ "kind": "js",
2884
+ "name": "registerComponent",
2885
+ "declaration": {
2886
+ "name": "registerComponent",
2887
+ "module": "src/internal/register.ts"
2888
+ }
2889
+ },
2890
+ {
2891
+ "kind": "custom-element-definition",
2892
+ "declaration": {
2893
+ "name": "component",
2894
+ "module": "src/internal/register.ts"
2895
+ }
2896
+ }
2897
+ ]
2898
+ },
2899
+ {
2900
+ "kind": "javascript-module",
2901
+ "path": "src/internal/tags.ts",
2902
+ "declarations": [
2903
+ {
2904
+ "kind": "variable",
2905
+ "name": "GRID_TAG",
2906
+ "type": {
2907
+ "text": "'igc-grid-lite'"
2908
+ },
2909
+ "default": "'igc-grid-lite'"
2910
+ },
2911
+ {
2912
+ "kind": "variable",
2913
+ "name": "GRID_BODY",
2914
+ "type": {
2915
+ "text": "'igc-virtualizer'"
2916
+ },
2917
+ "default": "'igc-virtualizer'"
2918
+ },
2919
+ {
2920
+ "kind": "variable",
2921
+ "name": "GRID_HEADER_ROW_TAG",
2922
+ "type": {
2923
+ "text": "'igc-grid-lite-header-row'"
2924
+ },
2925
+ "default": "'igc-grid-lite-header-row'"
2926
+ },
2927
+ {
2928
+ "kind": "variable",
2929
+ "name": "GRID_HEADER_TAG",
2930
+ "type": {
2931
+ "text": "'igc-grid-lite-header'"
2932
+ },
2933
+ "default": "'igc-grid-lite-header'"
2934
+ },
2935
+ {
2936
+ "kind": "variable",
2937
+ "name": "GRID_ROW_TAG",
2938
+ "type": {
2939
+ "text": "'igc-grid-lite-row'"
2940
+ },
2941
+ "default": "'igc-grid-lite-row'"
2942
+ },
2943
+ {
2944
+ "kind": "variable",
2945
+ "name": "GRID_CELL_TAG",
2946
+ "type": {
2947
+ "text": "'igc-grid-lite-cell'"
2948
+ },
2949
+ "default": "'igc-grid-lite-cell'"
2950
+ },
2951
+ {
2952
+ "kind": "variable",
2953
+ "name": "GRID_FILTER_ROW_TAG",
2954
+ "type": {
2955
+ "text": "'igc-filter-row'"
2956
+ },
2957
+ "default": "'igc-filter-row'"
2958
+ }
2959
+ ],
2960
+ "exports": [
2961
+ {
2962
+ "kind": "js",
2963
+ "name": "GRID_TAG",
2964
+ "declaration": {
2965
+ "name": "GRID_TAG",
2966
+ "module": "src/internal/tags.ts"
2967
+ }
2968
+ },
2969
+ {
2970
+ "kind": "js",
2971
+ "name": "GRID_BODY",
2972
+ "declaration": {
2973
+ "name": "GRID_BODY",
2974
+ "module": "src/internal/tags.ts"
2975
+ }
2976
+ },
2977
+ {
2978
+ "kind": "js",
2979
+ "name": "GRID_HEADER_ROW_TAG",
2980
+ "declaration": {
2981
+ "name": "GRID_HEADER_ROW_TAG",
2982
+ "module": "src/internal/tags.ts"
2983
+ }
2984
+ },
2985
+ {
2986
+ "kind": "js",
2987
+ "name": "GRID_HEADER_TAG",
2988
+ "declaration": {
2989
+ "name": "GRID_HEADER_TAG",
2990
+ "module": "src/internal/tags.ts"
2991
+ }
2992
+ },
2993
+ {
2994
+ "kind": "js",
2995
+ "name": "GRID_ROW_TAG",
2996
+ "declaration": {
2997
+ "name": "GRID_ROW_TAG",
2998
+ "module": "src/internal/tags.ts"
2999
+ }
3000
+ },
3001
+ {
3002
+ "kind": "js",
3003
+ "name": "GRID_CELL_TAG",
3004
+ "declaration": {
3005
+ "name": "GRID_CELL_TAG",
3006
+ "module": "src/internal/tags.ts"
3007
+ }
3008
+ },
3009
+ {
3010
+ "kind": "js",
3011
+ "name": "GRID_FILTER_ROW_TAG",
3012
+ "declaration": {
3013
+ "name": "GRID_FILTER_ROW_TAG",
3014
+ "module": "src/internal/tags.ts"
3015
+ }
3016
+ }
3017
+ ]
3018
+ },
3019
+ {
3020
+ "kind": "javascript-module",
3021
+ "path": "src/internal/theming.ts",
3022
+ "declarations": [
3023
+ {
3024
+ "kind": "class",
3025
+ "description": "",
3026
+ "name": "ThemingController",
3027
+ "members": [
3028
+ {
3029
+ "kind": "field",
3030
+ "name": "_host",
3031
+ "type": {
3032
+ "text": "ReactiveControllerHost & ReactiveElement"
3033
+ },
3034
+ "privacy": "private",
3035
+ "readonly": true,
3036
+ "default": "host"
3037
+ },
3038
+ {
3039
+ "kind": "field",
3040
+ "name": "_themes",
3041
+ "type": {
3042
+ "text": "Themes"
3043
+ },
3044
+ "privacy": "private",
3045
+ "readonly": true,
3046
+ "default": "themes"
3047
+ },
3048
+ {
3049
+ "kind": "field",
3050
+ "name": "_options",
3051
+ "type": {
3052
+ "text": "ThemingControllerConfig | undefined"
3053
+ },
3054
+ "privacy": "private",
3055
+ "readonly": true,
3056
+ "default": "config"
3057
+ },
3058
+ {
3059
+ "kind": "field",
3060
+ "name": "_theme",
3061
+ "type": {
3062
+ "text": "Theme"
3063
+ },
3064
+ "privacy": "private",
3065
+ "default": "'bootstrap'"
3066
+ },
3067
+ {
3068
+ "kind": "field",
3069
+ "name": "_variant",
3070
+ "type": {
3071
+ "text": "ThemeVariant"
3072
+ },
3073
+ "privacy": "private",
3074
+ "default": "'light'"
3075
+ },
3076
+ {
3077
+ "kind": "field",
3078
+ "name": "theme",
3079
+ "type": {
3080
+ "text": "Theme"
3081
+ },
3082
+ "privacy": "public",
3083
+ "readonly": true
3084
+ },
3085
+ {
3086
+ "kind": "method",
3087
+ "name": "_getStyles",
3088
+ "privacy": "private"
3089
+ },
3090
+ {
3091
+ "kind": "method",
3092
+ "name": "_adoptStyles",
3093
+ "privacy": "protected",
3094
+ "return": {
3095
+ "type": {
3096
+ "text": "void"
3097
+ }
3098
+ }
3099
+ },
3100
+ {
3101
+ "kind": "method",
3102
+ "name": "_handleThemeChanged",
3103
+ "privacy": "private",
3104
+ "return": {
3105
+ "type": {
3106
+ "text": "void"
3107
+ }
3108
+ }
3109
+ }
3110
+ ]
3111
+ },
3112
+ {
3113
+ "kind": "function",
3114
+ "name": "addThemingController",
3115
+ "return": {
3116
+ "type": {
3117
+ "text": "ThemingController"
3118
+ }
3119
+ },
3120
+ "parameters": [
3121
+ {
3122
+ "name": "host",
3123
+ "type": {
3124
+ "text": "ReactiveControllerHost & ReactiveElement"
3125
+ }
3126
+ },
3127
+ {
3128
+ "name": "themes",
3129
+ "type": {
3130
+ "text": "Themes"
3131
+ }
3132
+ },
3133
+ {
3134
+ "name": "config",
3135
+ "optional": true,
3136
+ "type": {
3137
+ "text": "ThemingControllerConfig"
3138
+ }
3139
+ }
3140
+ ]
3141
+ }
3142
+ ],
3143
+ "exports": [
3144
+ {
3145
+ "kind": "js",
3146
+ "name": "addThemingController",
3147
+ "declaration": {
3148
+ "name": "addThemingController",
3149
+ "module": "src/internal/theming.ts"
3150
+ }
3151
+ },
3152
+ {
3153
+ "kind": "js",
3154
+ "name": "ThemingController",
3155
+ "declaration": {
3156
+ "name": "ThemingController",
3157
+ "module": "src/internal/theming.ts"
3158
+ }
3159
+ }
3160
+ ]
3161
+ },
3162
+ {
3163
+ "kind": "javascript-module",
3164
+ "path": "src/internal/types.ts",
3165
+ "declarations": [],
3166
+ "exports": []
3167
+ },
3168
+ {
3169
+ "kind": "javascript-module",
3170
+ "path": "src/internal/utils.ts",
3171
+ "declarations": [
3172
+ {
3173
+ "kind": "function",
3174
+ "name": "applyColumnWidths",
3175
+ "return": {
3176
+ "type": {
3177
+ "text": "StyleInfo"
3178
+ }
3179
+ },
3180
+ "parameters": [
3181
+ {
3182
+ "name": "columns",
3183
+ "type": {
3184
+ "text": "Array<ColumnConfiguration<T>>"
3185
+ }
3186
+ }
3187
+ ]
3188
+ },
3189
+ {
3190
+ "kind": "function",
3191
+ "name": "autoGenerateColumns",
3192
+ "parameters": [
3193
+ {
3194
+ "name": "grid",
3195
+ "type": {
3196
+ "text": "GridHost<T>"
3197
+ }
3198
+ }
3199
+ ]
3200
+ },
3201
+ {
3202
+ "kind": "function",
3203
+ "name": "asArray",
3204
+ "parameters": [
3205
+ {
3206
+ "name": "value",
3207
+ "type": {
3208
+ "text": "T | T[]"
3209
+ }
3210
+ }
3211
+ ]
3212
+ },
3213
+ {
3214
+ "kind": "function",
3215
+ "name": "getFilterOperandsFor",
3216
+ "parameters": [
3217
+ {
3218
+ "name": "column",
3219
+ "type": {
3220
+ "text": "ColumnConfiguration<T>"
3221
+ }
3222
+ }
3223
+ ]
3224
+ }
3225
+ ],
3226
+ "exports": [
3227
+ {
3228
+ "kind": "js",
3229
+ "name": "applyColumnWidths",
3230
+ "declaration": {
3231
+ "name": "applyColumnWidths",
3232
+ "module": "src/internal/utils.ts"
3233
+ }
3234
+ },
3235
+ {
3236
+ "kind": "js",
3237
+ "name": "autoGenerateColumns",
3238
+ "declaration": {
3239
+ "name": "autoGenerateColumns",
3240
+ "module": "src/internal/utils.ts"
3241
+ }
3242
+ },
3243
+ {
3244
+ "kind": "js",
3245
+ "name": "asArray",
3246
+ "declaration": {
3247
+ "name": "asArray",
3248
+ "module": "src/internal/utils.ts"
3249
+ }
3250
+ },
3251
+ {
3252
+ "kind": "js",
3253
+ "name": "getFilterOperandsFor",
3254
+ "declaration": {
3255
+ "name": "getFilterOperandsFor",
3256
+ "module": "src/internal/utils.ts"
3257
+ }
3258
+ }
3259
+ ]
3260
+ },
3261
+ {
3262
+ "kind": "javascript-module",
3263
+ "path": "src/internal/watch.ts",
3264
+ "declarations": [
3265
+ {
3266
+ "kind": "function",
3267
+ "name": "watch",
3268
+ "parameters": [
3269
+ {
3270
+ "name": "propName",
3271
+ "type": {
3272
+ "text": "string"
3273
+ }
3274
+ },
3275
+ {
3276
+ "name": "options",
3277
+ "optional": true,
3278
+ "type": {
3279
+ "text": "WatchOptions"
3280
+ }
3281
+ }
3282
+ ]
3283
+ }
3284
+ ],
3285
+ "exports": [
3286
+ {
3287
+ "kind": "js",
3288
+ "name": "watch",
3289
+ "declaration": {
3290
+ "name": "watch",
3291
+ "module": "src/internal/watch.ts"
3292
+ }
3293
+ }
3294
+ ]
3295
+ },
3296
+ {
3297
+ "kind": "javascript-module",
3298
+ "path": "src/operations/base.ts",
3299
+ "declarations": [
3300
+ {
3301
+ "kind": "class",
3302
+ "description": "",
3303
+ "name": "DataOperation",
3304
+ "members": [
3305
+ {
3306
+ "kind": "method",
3307
+ "name": "resolveValue",
3308
+ "privacy": "protected",
3309
+ "parameters": [
3310
+ {
3311
+ "name": "record",
3312
+ "type": {
3313
+ "text": "T"
3314
+ }
3315
+ },
3316
+ {
3317
+ "name": "key",
3318
+ "type": {
3319
+ "text": "K"
3320
+ }
3321
+ }
3322
+ ]
3323
+ },
3324
+ {
3325
+ "kind": "method",
3326
+ "name": "resolveCase",
3327
+ "privacy": "protected",
3328
+ "parameters": [
3329
+ {
3330
+ "name": "value",
3331
+ "type": {
3332
+ "text": "U"
3333
+ }
3334
+ },
3335
+ {
3336
+ "name": "caseSensitive",
3337
+ "optional": true,
3338
+ "type": {
3339
+ "text": "boolean"
3340
+ }
3341
+ }
3342
+ ]
3343
+ },
3344
+ {
3345
+ "kind": "method",
3346
+ "name": "apply",
3347
+ "privacy": "public",
3348
+ "return": {
3349
+ "type": {
3350
+ "text": "T[]"
3351
+ }
3352
+ },
3353
+ "parameters": [
3354
+ {
3355
+ "name": "args",
3356
+ "type": {
3357
+ "text": "unknown[]"
3358
+ }
3359
+ }
3360
+ ]
3361
+ }
3362
+ ]
3363
+ }
3364
+ ],
3365
+ "exports": [
3366
+ {
3367
+ "kind": "js",
3368
+ "name": "default",
3369
+ "declaration": {
3370
+ "name": "DataOperation",
3371
+ "module": "src/operations/base.ts"
3372
+ }
3373
+ }
3374
+ ]
3375
+ },
3376
+ {
3377
+ "kind": "javascript-module",
3378
+ "path": "src/operations/filter.ts",
3379
+ "declarations": [
3380
+ {
3381
+ "kind": "class",
3382
+ "description": "",
3383
+ "name": "FilterDataOperation",
3384
+ "members": [
3385
+ {
3386
+ "kind": "method",
3387
+ "name": "resolveFilter",
3388
+ "privacy": "protected",
3389
+ "parameters": [
3390
+ {
3391
+ "name": "record",
3392
+ "type": {
3393
+ "text": "T"
3394
+ }
3395
+ },
3396
+ {
3397
+ "name": "expr",
3398
+ "type": {
3399
+ "text": "FilterExpression<T>"
3400
+ }
3401
+ }
3402
+ ]
3403
+ },
3404
+ {
3405
+ "kind": "method",
3406
+ "name": "match",
3407
+ "privacy": "protected",
3408
+ "return": {
3409
+ "type": {
3410
+ "text": "boolean"
3411
+ }
3412
+ },
3413
+ "parameters": [
3414
+ {
3415
+ "name": "record",
3416
+ "type": {
3417
+ "text": "T"
3418
+ }
3419
+ },
3420
+ {
3421
+ "name": "ands",
3422
+ "type": {
3423
+ "text": "FilterExpression<T>[]"
3424
+ }
3425
+ },
3426
+ {
3427
+ "name": "ors",
3428
+ "type": {
3429
+ "text": "FilterExpression<T>[]"
3430
+ }
3431
+ }
3432
+ ]
3433
+ },
3434
+ {
3435
+ "kind": "method",
3436
+ "name": "apply",
3437
+ "privacy": "public",
3438
+ "return": {
3439
+ "type": {
3440
+ "text": "T[]"
3441
+ }
3442
+ },
3443
+ "parameters": [
3444
+ {
3445
+ "name": "data",
3446
+ "type": {
3447
+ "text": "T[]"
3448
+ }
3449
+ },
3450
+ {
3451
+ "name": "state",
3452
+ "type": {
3453
+ "text": "FilterState<T>"
3454
+ }
3455
+ }
3456
+ ],
3457
+ "inheritedFrom": {
3458
+ "name": "DataOperation",
3459
+ "module": "src/operations/base.ts"
3460
+ }
3461
+ },
3462
+ {
3463
+ "kind": "method",
3464
+ "name": "resolveValue",
3465
+ "privacy": "protected",
3466
+ "parameters": [
3467
+ {
3468
+ "name": "record",
3469
+ "type": {
3470
+ "text": "T"
3471
+ }
3472
+ },
3473
+ {
3474
+ "name": "key",
3475
+ "type": {
3476
+ "text": "K"
3477
+ }
3478
+ }
3479
+ ],
3480
+ "inheritedFrom": {
3481
+ "name": "DataOperation",
3482
+ "module": "src/operations/base.ts"
3483
+ }
3484
+ },
3485
+ {
3486
+ "kind": "method",
3487
+ "name": "resolveCase",
3488
+ "privacy": "protected",
3489
+ "parameters": [
3490
+ {
3491
+ "name": "value",
3492
+ "type": {
3493
+ "text": "U"
3494
+ }
3495
+ },
3496
+ {
3497
+ "name": "caseSensitive",
3498
+ "optional": true,
3499
+ "type": {
3500
+ "text": "boolean"
3501
+ }
3502
+ }
3503
+ ],
3504
+ "inheritedFrom": {
3505
+ "name": "DataOperation",
3506
+ "module": "src/operations/base.ts"
3507
+ }
3508
+ }
3509
+ ],
3510
+ "superclass": {
3511
+ "name": "DataOperation",
3512
+ "module": "/src/operations/base.js"
3513
+ }
3514
+ }
3515
+ ],
3516
+ "exports": [
3517
+ {
3518
+ "kind": "js",
3519
+ "name": "default",
3520
+ "declaration": {
3521
+ "name": "FilterDataOperation",
3522
+ "module": "src/operations/filter.ts"
3523
+ }
3524
+ }
3525
+ ]
3526
+ },
3527
+ {
3528
+ "kind": "javascript-module",
3529
+ "path": "src/operations/sort.ts",
3530
+ "declarations": [
3531
+ {
3532
+ "kind": "class",
3533
+ "description": "",
3534
+ "name": "SortDataOperation",
3535
+ "members": [
3536
+ {
3537
+ "kind": "field",
3538
+ "name": "orderBy",
3539
+ "privacy": "protected",
3540
+ "default": "new Map( Object.entries({ ascending: 1, descending: -1, }) )"
3541
+ },
3542
+ {
3543
+ "kind": "method",
3544
+ "name": "compareValues",
3545
+ "privacy": "protected",
3546
+ "parameters": [
3547
+ {
3548
+ "name": "first",
3549
+ "type": {
3550
+ "text": "U"
3551
+ }
3552
+ },
3553
+ {
3554
+ "name": "second",
3555
+ "type": {
3556
+ "text": "U"
3557
+ }
3558
+ }
3559
+ ]
3560
+ },
3561
+ {
3562
+ "kind": "method",
3563
+ "name": "compareObjects",
3564
+ "privacy": "protected",
3565
+ "parameters": [
3566
+ {
3567
+ "name": "first",
3568
+ "type": {
3569
+ "text": "T"
3570
+ }
3571
+ },
3572
+ {
3573
+ "name": "second",
3574
+ "type": {
3575
+ "text": "T"
3576
+ }
3577
+ },
3578
+ {
3579
+ "name": "expression",
3580
+ "type": {
3581
+ "text": "SortExpression<T>"
3582
+ }
3583
+ }
3584
+ ]
3585
+ },
3586
+ {
3587
+ "kind": "method",
3588
+ "name": "apply",
3589
+ "privacy": "public",
3590
+ "return": {
3591
+ "type": {
3592
+ "text": "T[]"
3593
+ }
3594
+ },
3595
+ "parameters": [
3596
+ {
3597
+ "name": "data",
3598
+ "type": {
3599
+ "text": "T[]"
3600
+ }
3601
+ },
3602
+ {
3603
+ "name": "state",
3604
+ "type": {
3605
+ "text": "SortState<T>"
3606
+ }
3607
+ }
3608
+ ],
3609
+ "inheritedFrom": {
3610
+ "name": "DataOperation",
3611
+ "module": "src/operations/base.ts"
3612
+ }
3613
+ },
3614
+ {
3615
+ "kind": "method",
3616
+ "name": "resolveValue",
3617
+ "privacy": "protected",
3618
+ "parameters": [
3619
+ {
3620
+ "name": "record",
3621
+ "type": {
3622
+ "text": "T"
3623
+ }
3624
+ },
3625
+ {
3626
+ "name": "key",
3627
+ "type": {
3628
+ "text": "K"
3629
+ }
3630
+ }
3631
+ ],
3632
+ "inheritedFrom": {
3633
+ "name": "DataOperation",
3634
+ "module": "src/operations/base.ts"
3635
+ }
3636
+ },
3637
+ {
3638
+ "kind": "method",
3639
+ "name": "resolveCase",
3640
+ "privacy": "protected",
3641
+ "parameters": [
3642
+ {
3643
+ "name": "value",
3644
+ "type": {
3645
+ "text": "U"
3646
+ }
3647
+ },
3648
+ {
3649
+ "name": "caseSensitive",
3650
+ "optional": true,
3651
+ "type": {
3652
+ "text": "boolean"
3653
+ }
3654
+ }
3655
+ ],
3656
+ "inheritedFrom": {
3657
+ "name": "DataOperation",
3658
+ "module": "src/operations/base.ts"
3659
+ }
3660
+ }
3661
+ ],
3662
+ "superclass": {
3663
+ "name": "DataOperation",
3664
+ "module": "/src/operations/base.js"
3665
+ }
3666
+ }
3667
+ ],
3668
+ "exports": [
3669
+ {
3670
+ "kind": "js",
3671
+ "name": "default",
3672
+ "declaration": {
3673
+ "name": "SortDataOperation",
3674
+ "module": "src/operations/sort.ts"
3675
+ }
3676
+ }
3677
+ ]
3678
+ },
3679
+ {
3680
+ "kind": "javascript-module",
3681
+ "path": "src/internal/mixins/event-emitter.ts",
3682
+ "declarations": [
3683
+ {
3684
+ "kind": "class",
3685
+ "description": "",
3686
+ "name": "EventEmitterBase",
3687
+ "members": [
3688
+ {
3689
+ "kind": "method",
3690
+ "name": "addEventListener",
3691
+ "privacy": "public",
3692
+ "return": {
3693
+ "type": {
3694
+ "text": "void"
3695
+ }
3696
+ },
3697
+ "parameters": [
3698
+ {
3699
+ "name": "type",
3700
+ "type": {
3701
+ "text": "K"
3702
+ }
3703
+ },
3704
+ {
3705
+ "name": "listener",
3706
+ "type": {
3707
+ "text": "(this: HTMLElement, ev: M[K]) => any"
3708
+ }
3709
+ },
3710
+ {
3711
+ "name": "options",
3712
+ "optional": true,
3713
+ "type": {
3714
+ "text": "boolean | AddEventListenerOptions"
3715
+ }
3716
+ }
3717
+ ]
3718
+ },
3719
+ {
3720
+ "kind": "method",
3721
+ "name": "addEventListener",
3722
+ "privacy": "public",
3723
+ "return": {
3724
+ "type": {
3725
+ "text": "void"
3726
+ }
3727
+ },
3728
+ "parameters": [
3729
+ {
3730
+ "name": "type",
3731
+ "type": {
3732
+ "text": "string"
3733
+ }
3734
+ },
3735
+ {
3736
+ "name": "listener",
3737
+ "type": {
3738
+ "text": "EventListenerOrEventListenerObject"
3739
+ }
3740
+ },
3741
+ {
3742
+ "name": "options",
3743
+ "optional": true,
3744
+ "type": {
3745
+ "text": "boolean | AddEventListenerOptions"
3746
+ }
3747
+ }
3748
+ ]
3749
+ },
3750
+ {
3751
+ "kind": "method",
3752
+ "name": "removeEventListener",
3753
+ "privacy": "public",
3754
+ "return": {
3755
+ "type": {
3756
+ "text": "void"
3757
+ }
3758
+ },
3759
+ "parameters": [
3760
+ {
3761
+ "name": "type",
3762
+ "type": {
3763
+ "text": "K"
3764
+ }
3765
+ },
3766
+ {
3767
+ "name": "listener",
3768
+ "type": {
3769
+ "text": "(this: HTMLElement, ev: M[K]) => any"
3770
+ }
3771
+ },
3772
+ {
3773
+ "name": "options",
3774
+ "optional": true,
3775
+ "type": {
3776
+ "text": "boolean | EventListenerOptions"
3777
+ }
3778
+ }
3779
+ ]
3780
+ },
3781
+ {
3782
+ "kind": "method",
3783
+ "name": "removeEventListener",
3784
+ "privacy": "public",
3785
+ "return": {
3786
+ "type": {
3787
+ "text": "void"
3788
+ }
3789
+ },
3790
+ "parameters": [
3791
+ {
3792
+ "name": "type",
3793
+ "type": {
3794
+ "text": "string"
3795
+ }
3796
+ },
3797
+ {
3798
+ "name": "listener",
3799
+ "type": {
3800
+ "text": "EventListenerOrEventListenerObject"
3801
+ }
3802
+ },
3803
+ {
3804
+ "name": "options",
3805
+ "optional": true,
3806
+ "type": {
3807
+ "text": "boolean | EventListenerOptions"
3808
+ }
3809
+ }
3810
+ ]
3811
+ },
3812
+ {
3813
+ "kind": "method",
3814
+ "name": "emitEvent",
3815
+ "privacy": "public",
3816
+ "return": {
3817
+ "type": {
3818
+ "text": "boolean"
3819
+ }
3820
+ },
3821
+ "parameters": [
3822
+ {
3823
+ "name": "type",
3824
+ "type": {
3825
+ "text": "K"
3826
+ }
3827
+ },
3828
+ {
3829
+ "name": "eventInitDict",
3830
+ "optional": true,
3831
+ "type": {
3832
+ "text": "CustomEventInit<D>"
3833
+ }
3834
+ }
3835
+ ]
3836
+ }
3837
+ ],
3838
+ "events": [
3839
+ {
3840
+ "type": {
3841
+ "text": "CustomEvent"
3842
+ }
3843
+ }
3844
+ ],
3845
+ "superclass": {
3846
+ "name": "LitElement",
3847
+ "package": "lit"
3848
+ },
3849
+ "customElement": true
3850
+ }
3851
+ ],
3852
+ "exports": [
3853
+ {
3854
+ "kind": "js",
3855
+ "name": "EventEmitterBase",
3856
+ "declaration": {
3857
+ "name": "EventEmitterBase",
3858
+ "module": "src/internal/mixins/event-emitter.ts"
3859
+ }
3860
+ }
3861
+ ]
3862
+ },
3863
+ {
3864
+ "kind": "javascript-module",
3865
+ "path": "src/operations/filter/state.ts",
3866
+ "declarations": [
3867
+ {
3868
+ "kind": "class",
3869
+ "description": "",
3870
+ "name": "FilterState",
3871
+ "members": [
3872
+ {
3873
+ "kind": "field",
3874
+ "name": "state",
3875
+ "type": {
3876
+ "text": "Map<Keys<T>, FilterExpressionTree<T>>"
3877
+ },
3878
+ "privacy": "protected",
3879
+ "default": "new Map()"
3880
+ },
3881
+ {
3882
+ "kind": "field",
3883
+ "name": "empty",
3884
+ "privacy": "public",
3885
+ "readonly": true
3886
+ },
3887
+ {
3888
+ "kind": "field",
3889
+ "name": "keys",
3890
+ "privacy": "public",
3891
+ "readonly": true
3892
+ },
3893
+ {
3894
+ "kind": "field",
3895
+ "name": "values",
3896
+ "privacy": "public",
3897
+ "readonly": true
3898
+ },
3899
+ {
3900
+ "kind": "field",
3901
+ "name": "ands",
3902
+ "privacy": "public",
3903
+ "readonly": true
3904
+ },
3905
+ {
3906
+ "kind": "field",
3907
+ "name": "ors",
3908
+ "privacy": "public",
3909
+ "readonly": true
3910
+ },
3911
+ {
3912
+ "kind": "method",
3913
+ "name": "has",
3914
+ "privacy": "public",
3915
+ "parameters": [
3916
+ {
3917
+ "name": "key",
3918
+ "type": {
3919
+ "text": "Keys<T>"
3920
+ }
3921
+ }
3922
+ ]
3923
+ },
3924
+ {
3925
+ "kind": "method",
3926
+ "name": "get",
3927
+ "privacy": "public",
3928
+ "parameters": [
3929
+ {
3930
+ "name": "key",
3931
+ "type": {
3932
+ "text": "Keys<T>"
3933
+ }
3934
+ }
3935
+ ]
3936
+ },
3937
+ {
3938
+ "kind": "method",
3939
+ "name": "delete",
3940
+ "privacy": "public",
3941
+ "parameters": [
3942
+ {
3943
+ "name": "key",
3944
+ "type": {
3945
+ "text": "Keys<T>"
3946
+ }
3947
+ }
3948
+ ]
3949
+ },
3950
+ {
3951
+ "kind": "method",
3952
+ "name": "clear",
3953
+ "privacy": "public"
3954
+ },
3955
+ {
3956
+ "kind": "method",
3957
+ "name": "set",
3958
+ "privacy": "public",
3959
+ "parameters": [
3960
+ {
3961
+ "name": "expression",
3962
+ "type": {
3963
+ "text": "FilterExpression<T>"
3964
+ }
3965
+ }
3966
+ ]
3967
+ }
3968
+ ]
3969
+ }
3970
+ ],
3971
+ "exports": [
3972
+ {
3973
+ "kind": "js",
3974
+ "name": "FilterState",
3975
+ "declaration": {
3976
+ "name": "FilterState",
3977
+ "module": "src/operations/filter/state.ts"
3978
+ }
3979
+ }
3980
+ ]
3981
+ },
3982
+ {
3983
+ "kind": "javascript-module",
3984
+ "path": "src/operations/filter/tree.ts",
3985
+ "declarations": [
3986
+ {
3987
+ "kind": "class",
3988
+ "description": "",
3989
+ "name": "FilterExpressionTree",
3990
+ "members": [
3991
+ {
3992
+ "kind": "field",
3993
+ "name": "operands",
3994
+ "type": {
3995
+ "text": "Array<FilterExpression<T>>"
3996
+ },
3997
+ "privacy": "protected",
3998
+ "default": "[]"
3999
+ },
4000
+ {
4001
+ "kind": "field",
4002
+ "name": "empty",
4003
+ "privacy": "public",
4004
+ "readonly": true
4005
+ },
4006
+ {
4007
+ "kind": "field",
4008
+ "name": "length",
4009
+ "privacy": "public",
4010
+ "readonly": true
4011
+ },
4012
+ {
4013
+ "kind": "field",
4014
+ "name": "all",
4015
+ "privacy": "public",
4016
+ "readonly": true
4017
+ },
4018
+ {
4019
+ "kind": "field",
4020
+ "name": "ands",
4021
+ "privacy": "public",
4022
+ "readonly": true
4023
+ },
4024
+ {
4025
+ "kind": "field",
4026
+ "name": "ors",
4027
+ "privacy": "public",
4028
+ "readonly": true
4029
+ },
4030
+ {
4031
+ "kind": "method",
4032
+ "name": "has",
4033
+ "privacy": "public",
4034
+ "parameters": [
4035
+ {
4036
+ "name": "expression",
4037
+ "type": {
4038
+ "text": "FilterExpression<T>"
4039
+ }
4040
+ }
4041
+ ]
4042
+ },
4043
+ {
4044
+ "kind": "method",
4045
+ "name": "add",
4046
+ "privacy": "public",
4047
+ "parameters": [
4048
+ {
4049
+ "name": "expression",
4050
+ "type": {
4051
+ "text": "FilterExpression<T>"
4052
+ }
4053
+ }
4054
+ ]
4055
+ },
4056
+ {
4057
+ "kind": "method",
4058
+ "name": "remove",
4059
+ "privacy": "public",
4060
+ "parameters": [
4061
+ {
4062
+ "name": "expression",
4063
+ "type": {
4064
+ "text": "FilterExpression<T>"
4065
+ }
4066
+ }
4067
+ ]
4068
+ },
4069
+ {
4070
+ "kind": "method",
4071
+ "name": "iterator",
4072
+ "privacy": "protected"
4073
+ },
4074
+ {
4075
+ "kind": "method",
4076
+ "name": "[Symbol.iterator]",
4077
+ "privacy": "public"
4078
+ }
4079
+ ]
4080
+ }
4081
+ ],
4082
+ "exports": [
4083
+ {
4084
+ "kind": "js",
4085
+ "name": "FilterExpressionTree",
4086
+ "declaration": {
4087
+ "name": "FilterExpressionTree",
4088
+ "module": "src/operations/filter/tree.ts"
4089
+ }
4090
+ }
4091
+ ]
4092
+ },
4093
+ {
4094
+ "kind": "javascript-module",
4095
+ "path": "src/operations/filter/types.ts",
4096
+ "declarations": [],
4097
+ "exports": []
4098
+ },
4099
+ {
4100
+ "kind": "javascript-module",
4101
+ "path": "src/operations/sort/types.ts",
4102
+ "declarations": [],
4103
+ "exports": []
4104
+ },
4105
+ {
4106
+ "kind": "javascript-module",
4107
+ "path": "src/operations/filter/operands/boolean.ts",
4108
+ "declarations": [
4109
+ {
4110
+ "kind": "variable",
4111
+ "name": "BooleanOperands"
4112
+ }
4113
+ ],
4114
+ "exports": [
4115
+ {
4116
+ "kind": "js",
4117
+ "name": "BooleanOperands",
4118
+ "declaration": {
4119
+ "name": "BooleanOperands",
4120
+ "module": "src/operations/filter/operands/boolean.ts"
4121
+ }
4122
+ }
4123
+ ]
4124
+ },
4125
+ {
4126
+ "kind": "javascript-module",
4127
+ "path": "src/operations/filter/operands/number.ts",
4128
+ "declarations": [
4129
+ {
4130
+ "kind": "variable",
4131
+ "name": "NumberOperands"
4132
+ }
4133
+ ],
4134
+ "exports": [
4135
+ {
4136
+ "kind": "js",
4137
+ "name": "NumberOperands",
4138
+ "declaration": {
4139
+ "name": "NumberOperands",
4140
+ "module": "src/operations/filter/operands/number.ts"
4141
+ }
4142
+ }
4143
+ ]
4144
+ },
4145
+ {
4146
+ "kind": "javascript-module",
4147
+ "path": "src/operations/filter/operands/string.ts",
4148
+ "declarations": [
4149
+ {
4150
+ "kind": "variable",
4151
+ "name": "StringOperands"
4152
+ }
4153
+ ],
4154
+ "exports": [
4155
+ {
4156
+ "kind": "js",
4157
+ "name": "StringOperands",
4158
+ "declaration": {
4159
+ "name": "StringOperands",
4160
+ "module": "src/operations/filter/operands/string.ts"
4161
+ }
4162
+ }
4163
+ ]
4164
+ }
4165
+ ]
4166
+ }