@genesislcap/grid-tabulator 14.262.1 → 14.262.2

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 (135) hide show
  1. package/dist/custom-elements.json +2613 -117
  2. package/dist/dts/cell/cell.d.ts +50 -0
  3. package/dist/dts/cell/cell.d.ts.map +1 -0
  4. package/dist/dts/cell/index.d.ts +1 -1
  5. package/dist/dts/cell/index.d.ts.map +1 -1
  6. package/dist/dts/cell-editors/date.editor.d.ts +75 -0
  7. package/dist/dts/cell-editors/date.editor.d.ts.map +1 -0
  8. package/dist/dts/cell-editors/index.d.ts +6 -0
  9. package/dist/dts/cell-editors/index.d.ts.map +1 -0
  10. package/dist/dts/cell-editors/multiselect.editor.d.ts +79 -0
  11. package/dist/dts/cell-editors/multiselect.editor.d.ts.map +1 -0
  12. package/dist/dts/cell-editors/number.editor.d.ts +76 -0
  13. package/dist/dts/cell-editors/number.editor.d.ts.map +1 -0
  14. package/dist/dts/cell-editors/select.editor.d.ts +83 -0
  15. package/dist/dts/cell-editors/select.editor.d.ts.map +1 -0
  16. package/dist/dts/cell-editors/string.editor.d.ts +67 -0
  17. package/dist/dts/cell-editors/string.editor.d.ts.map +1 -0
  18. package/dist/dts/cell-formatters/action.formatter.d.ts +45 -0
  19. package/dist/dts/cell-formatters/action.formatter.d.ts.map +1 -0
  20. package/dist/dts/cell-formatters/actions-menu.formatter.d.ts +57 -0
  21. package/dist/dts/cell-formatters/actions-menu.formatter.d.ts.map +1 -0
  22. package/dist/dts/cell-formatters/boolean.formatter.d.ts +27 -0
  23. package/dist/dts/cell-formatters/boolean.formatter.d.ts.map +1 -0
  24. package/dist/dts/cell-formatters/constants.d.ts +31 -0
  25. package/dist/dts/cell-formatters/constants.d.ts.map +1 -0
  26. package/dist/dts/cell-formatters/editable.formatter.d.ts +40 -0
  27. package/dist/dts/cell-formatters/editable.formatter.d.ts.map +1 -0
  28. package/dist/dts/cell-formatters/index.d.ts +27 -0
  29. package/dist/dts/cell-formatters/index.d.ts.map +1 -0
  30. package/dist/dts/cell-formatters/select.formatter.d.ts +43 -0
  31. package/dist/dts/cell-formatters/select.formatter.d.ts.map +1 -0
  32. package/dist/dts/cell-formatters/text.formatter.d.ts +36 -0
  33. package/dist/dts/cell-formatters/text.formatter.d.ts.map +1 -0
  34. package/dist/dts/column/column.d.ts +340 -0
  35. package/dist/dts/column/column.d.ts.map +1 -0
  36. package/dist/dts/column/index.d.ts +1 -1
  37. package/dist/dts/column/index.d.ts.map +1 -1
  38. package/dist/dts/datasource/client-side.datasource.d.ts +42 -16
  39. package/dist/dts/datasource/client-side.datasource.d.ts.map +1 -1
  40. package/dist/dts/grid-tabulator.components.d.ts +52 -4
  41. package/dist/dts/grid-tabulator.components.d.ts.map +1 -1
  42. package/dist/dts/grid-tabulator.d.ts +119 -11
  43. package/dist/dts/grid-tabulator.d.ts.map +1 -1
  44. package/dist/dts/grid-tabulator.definitions.d.ts +35 -0
  45. package/dist/dts/grid-tabulator.definitions.d.ts.map +1 -1
  46. package/dist/dts/grid-tabulator.styles.d.ts.map +1 -1
  47. package/dist/dts/grid-tabulator.types.d.ts +13 -1
  48. package/dist/dts/grid-tabulator.types.d.ts.map +1 -1
  49. package/dist/dts/index.d.ts +3 -1
  50. package/dist/dts/index.d.ts.map +1 -1
  51. package/dist/dts/types.d.ts +27 -0
  52. package/dist/dts/types.d.ts.map +1 -0
  53. package/dist/dts/utils/index.d.ts +1 -0
  54. package/dist/dts/utils/index.d.ts.map +1 -1
  55. package/dist/dts/utils/string-utils.d.ts +17 -0
  56. package/dist/dts/utils/string-utils.d.ts.map +1 -0
  57. package/dist/esm/cell/cell.js +66 -0
  58. package/dist/esm/cell/index.js +1 -1
  59. package/dist/esm/cell-editors/date.editor.js +92 -0
  60. package/dist/esm/cell-editors/index.js +5 -0
  61. package/dist/esm/cell-editors/multiselect.editor.js +105 -0
  62. package/dist/esm/cell-editors/number.editor.js +84 -0
  63. package/dist/esm/cell-editors/select.editor.js +91 -0
  64. package/dist/esm/cell-editors/string.editor.js +82 -0
  65. package/dist/esm/cell-formatters/action.formatter.js +73 -0
  66. package/dist/esm/cell-formatters/actions-menu.formatter.js +68 -0
  67. package/dist/esm/cell-formatters/boolean.formatter.js +25 -0
  68. package/dist/esm/cell-formatters/constants.js +31 -0
  69. package/dist/esm/cell-formatters/editable.formatter.js +21 -0
  70. package/dist/esm/cell-formatters/index.js +26 -0
  71. package/dist/esm/cell-formatters/select.formatter.js +32 -0
  72. package/dist/esm/cell-formatters/text.formatter.js +30 -0
  73. package/dist/esm/column/column.js +51 -0
  74. package/dist/esm/column/index.js +1 -1
  75. package/dist/esm/datasource/client-side.datasource.js +219 -91
  76. package/dist/esm/grid-tabulator.components.js +24 -11
  77. package/dist/esm/grid-tabulator.definitions.js +30 -0
  78. package/dist/esm/grid-tabulator.js +392 -27
  79. package/dist/esm/grid-tabulator.styles.js +15 -0
  80. package/dist/esm/grid-tabulator.types.js +13 -0
  81. package/dist/esm/index.js +1 -1
  82. package/dist/esm/types.js +1 -0
  83. package/dist/esm/utils/index.js +1 -0
  84. package/dist/esm/utils/string-utils.js +32 -0
  85. package/dist/grid-tabulator.api.json +1703 -466
  86. package/dist/grid-tabulator.d.ts +1237 -124
  87. package/docs/api/grid-tabulator.actionformatter.md +27 -0
  88. package/docs/api/grid-tabulator.actionsmenuformatter.md +27 -0
  89. package/docs/api/grid-tabulator.booleanformatter.md +27 -0
  90. package/docs/api/grid-tabulator.cellrendererfunc.md +15 -0
  91. package/docs/api/grid-tabulator.cellrendererparams.cell.md +13 -0
  92. package/docs/api/grid-tabulator.cellrendererparams.data.md +13 -0
  93. package/docs/api/grid-tabulator.cellrendererparams.formatterparams.md +13 -0
  94. package/docs/api/grid-tabulator.cellrendererparams.md +23 -0
  95. package/docs/api/grid-tabulator.cellrendererparams.value.md +13 -0
  96. package/docs/api/grid-tabulator.editableformatter.md +27 -0
  97. package/docs/api/grid-tabulator.foundationgridtabulatorcomponents.md +50 -4
  98. package/docs/api/grid-tabulator.gridtabulatorcell.connectedcallback.md +15 -0
  99. package/docs/api/grid-tabulator.gridtabulatorcell.destroy.md +15 -0
  100. package/docs/api/grid-tabulator.gridtabulatorcell.getelement.md +15 -0
  101. package/docs/api/grid-tabulator.gridtabulatorcell.init.md +22 -0
  102. package/docs/api/grid-tabulator.gridtabulatorcell.md +38 -0
  103. package/docs/api/grid-tabulator.gridtabulatorcell.refresh.md +22 -0
  104. package/docs/api/grid-tabulator.gridtabulatorcell.renderer.md +11 -0
  105. package/docs/api/grid-tabulator.gridtabulatorcell.rendererparams.md +11 -0
  106. package/docs/api/grid-tabulator.gridtabulatorcell.slottedrenderer.md +11 -0
  107. package/docs/api/grid-tabulator.gridtabulatorcell.slottedrendererchanged.md +15 -0
  108. package/docs/api/grid-tabulator.gridtabulatorcelleditortypes.md +24 -0
  109. package/docs/api/grid-tabulator.gridtabulatorcellrenderertypes.md +1 -0
  110. package/docs/api/grid-tabulator.gridtabulatorcolumn.deepclone.md +15 -0
  111. package/docs/api/grid-tabulator.gridtabulatorcolumn.definition.md +11 -0
  112. package/docs/api/grid-tabulator.gridtabulatorcolumn.md +33 -0
  113. package/docs/api/grid-tabulator.gridtabulatorcolumn.slottedcell.md +11 -0
  114. package/docs/api/grid-tabulator.gridtabulatorcolumn.slottedcellchanged.md +15 -0
  115. package/docs/api/grid-tabulator.md +11 -5
  116. package/docs/api/grid-tabulator.selectformatter.md +27 -0
  117. package/docs/api/grid-tabulator.textformatter.md +27 -0
  118. package/docs/api-report.md +328 -36
  119. package/package.json +16 -15
  120. package/dist/dts/cell-renderers/action.renderer.d.ts +0 -80
  121. package/dist/dts/cell-renderers/action.renderer.d.ts.map +0 -1
  122. package/dist/dts/cell-renderers/index.d.ts +0 -2
  123. package/dist/dts/cell-renderers/index.d.ts.map +0 -1
  124. package/dist/esm/cell-renderers/action.renderer.js +0 -107
  125. package/dist/esm/cell-renderers/index.js +0 -1
  126. package/docs/api/grid-tabulator.actionheightmultiplier.md +0 -18
  127. package/docs/api/grid-tabulator.actionrenderer.clickhandler.md +0 -15
  128. package/docs/api/grid-tabulator.actionrenderer.datatestid.md +0 -11
  129. package/docs/api/grid-tabulator.actionrenderer.init.md +0 -22
  130. package/docs/api/grid-tabulator.actionrenderer.md +0 -30
  131. package/docs/api/grid-tabulator.actionrenderer.params.md +0 -11
  132. package/docs/api/grid-tabulator.actionrenderer.pendingaction.md +0 -11
  133. package/docs/api/grid-tabulator.actionrendererparams.md +0 -26
  134. package/docs/api/grid-tabulator.foundationgridtabulatoractionrenderer.md +0 -26
  135. package/docs/api/grid-tabulator.tabulatoractionrendererstyles.md +0 -13
@@ -185,283 +185,88 @@
185
185
  "preserveMemberOrder": false,
186
186
  "members": [
187
187
  {
188
- "kind": "Variable",
189
- "canonicalReference": "@genesislcap/grid-tabulator!actionHeightMultiplier:var",
190
- "docComment": "/**\n * The base height multiplier for the action renderer.\n *\n * @remarks\n *\n * Results in `--action-height-multiplier`. This is a DesignToken {@link https://www.fast.design/docs/design-systems/design-tokens/#what-is-a-design-token} value. Defaults to `0.6px`. May have other values depending on the design system or can be set to a different value.\n *\n * @public\n */\n",
188
+ "kind": "Function",
189
+ "canonicalReference": "@genesislcap/grid-tabulator!actionFormatter:function(1)",
190
+ "docComment": "/**\n * Formatter that displays an action button in the cell. Styled to match grid-pro action renderer.\n *\n * @param cell - The cell component provided by Tabulator\n *\n * @param formatterParams - Action formatter parameters\n *\n * @returns HTML content for the action button\n *\n * @public\n */\n",
191
191
  "excerptTokens": [
192
192
  {
193
193
  "kind": "Content",
194
- "text": "actionHeightMultiplier: "
194
+ "text": "export declare function actionFormatter(cell: "
195
195
  },
196
196
  {
197
197
  "kind": "Content",
198
- "text": "import(\"@microsoft/fast-foundation\")."
198
+ "text": "any"
199
199
  },
200
200
  {
201
- "kind": "Reference",
202
- "text": "CSSDesignToken",
203
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:interface"
201
+ "kind": "Content",
202
+ "text": ", formatterParams?: "
204
203
  },
205
204
  {
206
- "kind": "Content",
207
- "text": "<string>"
208
- }
209
- ],
210
- "fileUrlPath": "src/cell-renderers/action.renderer.ts",
211
- "isReadonly": true,
212
- "releaseTag": "Public",
213
- "name": "actionHeightMultiplier",
214
- "variableTypeTokenRange": {
215
- "startIndex": 1,
216
- "endIndex": 4
217
- }
218
- },
219
- {
220
- "kind": "Class",
221
- "canonicalReference": "@genesislcap/grid-tabulator!ActionRenderer:class",
222
- "docComment": "/**\n * The Tabulator Action Renderer element.\n *\n * @tagname\n *\n * %%prefix%%-grid-tabulator-action-renderer\n *\n * @public\n */\n",
223
- "excerptTokens": [
205
+ "kind": "Reference",
206
+ "text": "ActionFormatterParams",
207
+ "canonicalReference": "@genesislcap/grid-tabulator!ActionFormatterParams:interface"
208
+ },
224
209
  {
225
210
  "kind": "Content",
226
- "text": "export declare class ActionRenderer extends "
211
+ "text": "): "
227
212
  },
228
213
  {
229
- "kind": "Reference",
230
- "text": "FoundationElement",
231
- "canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
214
+ "kind": "Content",
215
+ "text": "string"
232
216
  },
233
217
  {
234
218
  "kind": "Content",
235
- "text": " "
219
+ "text": ";"
236
220
  }
237
221
  ],
238
- "fileUrlPath": "src/cell-renderers/action.renderer.ts",
222
+ "fileUrlPath": "src/cell-formatters/action.formatter.ts",
223
+ "returnTypeTokenRange": {
224
+ "startIndex": 5,
225
+ "endIndex": 6
226
+ },
239
227
  "releaseTag": "Public",
240
- "isAbstract": false,
241
- "name": "ActionRenderer",
242
- "preserveMemberOrder": false,
243
- "members": [
244
- {
245
- "kind": "Method",
246
- "canonicalReference": "@genesislcap/grid-tabulator!ActionRenderer#clickHandler:member(1)",
247
- "docComment": "",
248
- "excerptTokens": [
249
- {
250
- "kind": "Content",
251
- "text": "clickHandler(): "
252
- },
253
- {
254
- "kind": "Reference",
255
- "text": "Promise",
256
- "canonicalReference": "!Promise:interface"
257
- },
258
- {
259
- "kind": "Content",
260
- "text": "<void>"
261
- },
262
- {
263
- "kind": "Content",
264
- "text": ";"
265
- }
266
- ],
267
- "isStatic": false,
268
- "returnTypeTokenRange": {
269
- "startIndex": 1,
270
- "endIndex": 3
271
- },
272
- "releaseTag": "Public",
273
- "isProtected": false,
274
- "overloadIndex": 1,
275
- "parameters": [],
276
- "isOptional": false,
277
- "isAbstract": false,
278
- "name": "clickHandler"
279
- },
228
+ "overloadIndex": 1,
229
+ "parameters": [
280
230
  {
281
- "kind": "Property",
282
- "canonicalReference": "@genesislcap/grid-tabulator!ActionRenderer#dataTestId:member",
283
- "docComment": "",
284
- "excerptTokens": [
285
- {
286
- "kind": "Content",
287
- "text": "get dataTestId(): "
288
- },
289
- {
290
- "kind": "Content",
291
- "text": "any"
292
- },
293
- {
294
- "kind": "Content",
295
- "text": ";"
296
- }
297
- ],
298
- "isReadonly": true,
299
- "isOptional": false,
300
- "releaseTag": "Public",
301
- "name": "dataTestId",
302
- "propertyTypeTokenRange": {
231
+ "parameterName": "cell",
232
+ "parameterTypeTokenRange": {
303
233
  "startIndex": 1,
304
234
  "endIndex": 2
305
235
  },
306
- "isStatic": false,
307
- "isProtected": false,
308
- "isAbstract": false
236
+ "isOptional": false
309
237
  },
310
238
  {
311
- "kind": "Method",
312
- "canonicalReference": "@genesislcap/grid-tabulator!ActionRenderer#init:member(1)",
313
- "docComment": "",
314
- "excerptTokens": [
315
- {
316
- "kind": "Content",
317
- "text": "init(params: "
318
- },
319
- {
320
- "kind": "Reference",
321
- "text": "ActionRendererParams",
322
- "canonicalReference": "@genesislcap/grid-tabulator!ActionRendererParams:type"
323
- },
324
- {
325
- "kind": "Content",
326
- "text": "): "
327
- },
328
- {
329
- "kind": "Content",
330
- "text": "void"
331
- },
332
- {
333
- "kind": "Content",
334
- "text": ";"
335
- }
336
- ],
337
- "isStatic": false,
338
- "returnTypeTokenRange": {
239
+ "parameterName": "formatterParams",
240
+ "parameterTypeTokenRange": {
339
241
  "startIndex": 3,
340
242
  "endIndex": 4
341
243
  },
342
- "releaseTag": "Public",
343
- "isProtected": false,
344
- "overloadIndex": 1,
345
- "parameters": [
346
- {
347
- "parameterName": "params",
348
- "parameterTypeTokenRange": {
349
- "startIndex": 1,
350
- "endIndex": 2
351
- },
352
- "isOptional": false
353
- }
354
- ],
355
- "isOptional": false,
356
- "isAbstract": false,
357
- "name": "init"
358
- },
359
- {
360
- "kind": "Property",
361
- "canonicalReference": "@genesislcap/grid-tabulator!ActionRenderer#params:member",
362
- "docComment": "",
363
- "excerptTokens": [
364
- {
365
- "kind": "Content",
366
- "text": "params: "
367
- },
368
- {
369
- "kind": "Reference",
370
- "text": "ActionRendererParams",
371
- "canonicalReference": "@genesislcap/grid-tabulator!ActionRendererParams:type"
372
- },
373
- {
374
- "kind": "Content",
375
- "text": ";"
376
- }
377
- ],
378
- "isReadonly": false,
379
- "isOptional": false,
380
- "releaseTag": "Public",
381
- "name": "params",
382
- "propertyTypeTokenRange": {
383
- "startIndex": 1,
384
- "endIndex": 2
385
- },
386
- "isStatic": false,
387
- "isProtected": false,
388
- "isAbstract": false
389
- },
390
- {
391
- "kind": "Property",
392
- "canonicalReference": "@genesislcap/grid-tabulator!ActionRenderer#pendingAction:member",
393
- "docComment": "",
394
- "excerptTokens": [
395
- {
396
- "kind": "Content",
397
- "text": "pendingAction: "
398
- },
399
- {
400
- "kind": "Content",
401
- "text": "boolean"
402
- },
403
- {
404
- "kind": "Content",
405
- "text": ";"
406
- }
407
- ],
408
- "isReadonly": false,
409
- "isOptional": false,
410
- "releaseTag": "Public",
411
- "name": "pendingAction",
412
- "propertyTypeTokenRange": {
413
- "startIndex": 1,
414
- "endIndex": 2
415
- },
416
- "isStatic": false,
417
- "isProtected": false,
418
- "isAbstract": false
244
+ "isOptional": true
419
245
  }
420
246
  ],
421
- "extendsTokenRange": {
422
- "startIndex": 1,
423
- "endIndex": 2
424
- },
425
- "implementsTokenRanges": []
247
+ "name": "actionFormatter"
426
248
  },
427
249
  {
428
- "kind": "TypeAlias",
429
- "canonicalReference": "@genesislcap/grid-tabulator!ActionRendererParams:type",
430
- "docComment": "/**\n * Parameters for the `grid-tabulator` action renderer.\n *\n * @remarks\n *\n * For single action button scenarios.\n *\n * @public\n */\n",
250
+ "kind": "Function",
251
+ "canonicalReference": "@genesislcap/grid-tabulator!actionsMenuFormatter:function(1)",
252
+ "docComment": "/**\n * Formatter that displays a dropdown menu of actions in the cell. Styled to match grid-pro actions-menu renderer.\n *\n * @param cell - The cell component provided by Tabulator\n *\n * @param formatterParams - Actions menu formatter parameters\n *\n * @returns HTML content for the actions menu\n *\n * @public\n */\n",
431
253
  "excerptTokens": [
432
254
  {
433
255
  "kind": "Content",
434
- "text": "export type ActionRendererParams = "
256
+ "text": "export declare function actionsMenuFormatter(cell: "
435
257
  },
436
258
  {
437
259
  "kind": "Content",
438
- "text": "{\n actionClick?: (rowData: any) => void;\n actionName?: string;\n appearance?: string;\n dataTestId?: string;\n isDisabled?: (rowData: any) => boolean;\n uniqueFieldName?: string;\n contentTemplate?: string;\n}"
260
+ "text": "any"
439
261
  },
440
262
  {
441
263
  "kind": "Content",
442
- "text": ";"
443
- }
444
- ],
445
- "fileUrlPath": "src/cell-renderers/action.renderer.ts",
446
- "releaseTag": "Public",
447
- "name": "ActionRendererParams",
448
- "typeTokenRange": {
449
- "startIndex": 1,
450
- "endIndex": 2
451
- }
452
- },
453
- {
454
- "kind": "Function",
455
- "canonicalReference": "@genesislcap/grid-tabulator!dateTimeValueFormatter:function(1)",
456
- "docComment": "/**\n * Format a date time value to a readable string.\n *\n * @remarks\n *\n * Formats [DATETIME] UNIX Timestamps (with time) to readable strings\n *\n * @param param - The field type.\n *\n * @returns The filter params.\n *\n * @public\n */\n",
457
- "excerptTokens": [
458
- {
459
- "kind": "Content",
460
- "text": "export declare function dateTimeValueFormatter({ value }: "
264
+ "text": ", formatterParams?: "
461
265
  },
462
266
  {
463
- "kind": "Content",
464
- "text": "any"
267
+ "kind": "Reference",
268
+ "text": "ActionsMenuFormatterParams",
269
+ "canonicalReference": "@genesislcap/grid-tabulator!ActionsMenuFormatterParams:interface"
465
270
  },
466
271
  {
467
272
  "kind": "Content",
@@ -476,38 +281,55 @@
476
281
  "text": ";"
477
282
  }
478
283
  ],
479
- "fileUrlPath": "src/grid-tabulator.definitions.ts",
284
+ "fileUrlPath": "src/cell-formatters/actions-menu.formatter.ts",
480
285
  "returnTypeTokenRange": {
481
- "startIndex": 3,
482
- "endIndex": 4
286
+ "startIndex": 5,
287
+ "endIndex": 6
483
288
  },
484
289
  "releaseTag": "Public",
485
290
  "overloadIndex": 1,
486
291
  "parameters": [
487
292
  {
488
- "parameterName": "{ value }",
293
+ "parameterName": "cell",
489
294
  "parameterTypeTokenRange": {
490
295
  "startIndex": 1,
491
296
  "endIndex": 2
492
297
  },
493
298
  "isOptional": false
299
+ },
300
+ {
301
+ "parameterName": "formatterParams",
302
+ "parameterTypeTokenRange": {
303
+ "startIndex": 3,
304
+ "endIndex": 4
305
+ },
306
+ "isOptional": true
494
307
  }
495
308
  ],
496
- "name": "dateTimeValueFormatter"
309
+ "name": "actionsMenuFormatter"
497
310
  },
498
311
  {
499
312
  "kind": "Function",
500
- "canonicalReference": "@genesislcap/grid-tabulator!dateValueFormatter:function(1)",
501
- "docComment": "/**\n * Format a date value.\n *\n * @remarks\n *\n * Formats [DATE] UNIX Timestamps (with time) to readable strings\n *\n * @param param - The field type.\n *\n * @returns The filter params.\n *\n * @public\n */\n",
313
+ "canonicalReference": "@genesislcap/grid-tabulator!booleanFormatter:function(1)",
314
+ "docComment": "/**\n * Formatter that displays boolean values using a checkbox component. Styled to match grid-pro boolean renderer.\n *\n * @param cell - The cell component provided by Tabulator\n *\n * @param formatterParams - Boolean formatter parameters\n *\n * @returns HTML content for the boolean value\n *\n * @public\n */\n",
502
315
  "excerptTokens": [
503
316
  {
504
317
  "kind": "Content",
505
- "text": "export declare function dateValueFormatter({ value }: "
318
+ "text": "export declare function booleanFormatter(cell: "
506
319
  },
507
320
  {
508
321
  "kind": "Content",
509
322
  "text": "any"
510
323
  },
324
+ {
325
+ "kind": "Content",
326
+ "text": ", formatterParams?: "
327
+ },
328
+ {
329
+ "kind": "Reference",
330
+ "text": "BooleanFormatterParams",
331
+ "canonicalReference": "@genesislcap/grid-tabulator!BooleanFormatterParams:interface"
332
+ },
511
333
  {
512
334
  "kind": "Content",
513
335
  "text": "): "
@@ -521,60 +343,261 @@
521
343
  "text": ";"
522
344
  }
523
345
  ],
524
- "fileUrlPath": "src/grid-tabulator.definitions.ts",
346
+ "fileUrlPath": "src/cell-formatters/boolean.formatter.ts",
525
347
  "returnTypeTokenRange": {
526
- "startIndex": 3,
527
- "endIndex": 4
348
+ "startIndex": 5,
349
+ "endIndex": 6
528
350
  },
529
351
  "releaseTag": "Public",
530
352
  "overloadIndex": 1,
531
353
  "parameters": [
532
354
  {
533
- "parameterName": "{ value }",
355
+ "parameterName": "cell",
534
356
  "parameterTypeTokenRange": {
535
357
  "startIndex": 1,
536
358
  "endIndex": 2
537
359
  },
538
360
  "isOptional": false
361
+ },
362
+ {
363
+ "parameterName": "formatterParams",
364
+ "parameterTypeTokenRange": {
365
+ "startIndex": 3,
366
+ "endIndex": 4
367
+ },
368
+ "isOptional": true
539
369
  }
540
370
  ],
541
- "name": "dateValueFormatter"
371
+ "name": "booleanFormatter"
542
372
  },
543
373
  {
544
- "kind": "Variable",
545
- "canonicalReference": "@genesislcap/grid-tabulator!defaultGridTabulatorConfig:var",
546
- "docComment": "/**\n * The default grid-tabulator configuration.\n *\n * @public\n */\n",
374
+ "kind": "TypeAlias",
375
+ "canonicalReference": "@genesislcap/grid-tabulator!CellRendererFunc:type",
376
+ "docComment": "/**\n * Function type for cell renderer\n *\n * @public\n */\n",
547
377
  "excerptTokens": [
548
378
  {
549
379
  "kind": "Content",
550
- "text": "defaultGridTabulatorConfig: "
380
+ "text": "export type CellRendererFunc = "
551
381
  },
552
382
  {
553
383
  "kind": "Content",
554
- "text": "{\n shadowOptions: any;\n}"
555
- }
556
- ],
557
- "fileUrlPath": "src/grid-tabulator.ts",
558
- "isReadonly": true,
559
- "releaseTag": "Public",
560
- "name": "defaultGridTabulatorConfig",
561
- "variableTypeTokenRange": {
562
- "startIndex": 1,
563
- "endIndex": 2
384
+ "text": "(params: "
385
+ },
386
+ {
387
+ "kind": "Reference",
388
+ "text": "CellRendererParams",
389
+ "canonicalReference": "@genesislcap/grid-tabulator!CellRendererParams:interface"
390
+ },
391
+ {
392
+ "kind": "Content",
393
+ "text": ") => "
394
+ },
395
+ {
396
+ "kind": "Reference",
397
+ "text": "HTMLElement",
398
+ "canonicalReference": "!HTMLElement:interface"
399
+ },
400
+ {
401
+ "kind": "Content",
402
+ "text": " | string"
403
+ },
404
+ {
405
+ "kind": "Content",
406
+ "text": ";"
407
+ }
408
+ ],
409
+ "fileUrlPath": "src/cell/cell.ts",
410
+ "releaseTag": "Public",
411
+ "name": "CellRendererFunc",
412
+ "typeTokenRange": {
413
+ "startIndex": 1,
414
+ "endIndex": 6
564
415
  }
565
416
  },
417
+ {
418
+ "kind": "Interface",
419
+ "canonicalReference": "@genesislcap/grid-tabulator!CellRendererParams:interface",
420
+ "docComment": "/**\n * Parameters for custom cell renderers\n *\n * @public\n */\n",
421
+ "excerptTokens": [
422
+ {
423
+ "kind": "Content",
424
+ "text": "export interface CellRendererParams "
425
+ }
426
+ ],
427
+ "fileUrlPath": "src/cell/cell.ts",
428
+ "releaseTag": "Public",
429
+ "name": "CellRendererParams",
430
+ "preserveMemberOrder": false,
431
+ "members": [
432
+ {
433
+ "kind": "IndexSignature",
434
+ "canonicalReference": "@genesislcap/grid-tabulator!CellRendererParams:index(1)",
435
+ "docComment": "/**\n * Allow indexing by string\n */\n",
436
+ "excerptTokens": [
437
+ {
438
+ "kind": "Content",
439
+ "text": "[key: "
440
+ },
441
+ {
442
+ "kind": "Content",
443
+ "text": "string"
444
+ },
445
+ {
446
+ "kind": "Content",
447
+ "text": "]: "
448
+ },
449
+ {
450
+ "kind": "Content",
451
+ "text": "any"
452
+ },
453
+ {
454
+ "kind": "Content",
455
+ "text": ";"
456
+ }
457
+ ],
458
+ "isReadonly": false,
459
+ "returnTypeTokenRange": {
460
+ "startIndex": 3,
461
+ "endIndex": 4
462
+ },
463
+ "releaseTag": "Public",
464
+ "overloadIndex": 1,
465
+ "parameters": [
466
+ {
467
+ "parameterName": "key",
468
+ "parameterTypeTokenRange": {
469
+ "startIndex": 1,
470
+ "endIndex": 2
471
+ },
472
+ "isOptional": false
473
+ }
474
+ ]
475
+ },
476
+ {
477
+ "kind": "PropertySignature",
478
+ "canonicalReference": "@genesislcap/grid-tabulator!CellRendererParams#cell:member",
479
+ "docComment": "/**\n * The cell component\n */\n",
480
+ "excerptTokens": [
481
+ {
482
+ "kind": "Content",
483
+ "text": "cell?: "
484
+ },
485
+ {
486
+ "kind": "Reference",
487
+ "text": "CellComponent",
488
+ "canonicalReference": "@types/tabulator-tables!CellComponent:interface"
489
+ },
490
+ {
491
+ "kind": "Content",
492
+ "text": ";"
493
+ }
494
+ ],
495
+ "isReadonly": false,
496
+ "isOptional": true,
497
+ "releaseTag": "Public",
498
+ "name": "cell",
499
+ "propertyTypeTokenRange": {
500
+ "startIndex": 1,
501
+ "endIndex": 2
502
+ }
503
+ },
504
+ {
505
+ "kind": "PropertySignature",
506
+ "canonicalReference": "@genesislcap/grid-tabulator!CellRendererParams#data:member",
507
+ "docComment": "/**\n * The row data\n */\n",
508
+ "excerptTokens": [
509
+ {
510
+ "kind": "Content",
511
+ "text": "data?: "
512
+ },
513
+ {
514
+ "kind": "Content",
515
+ "text": "any"
516
+ },
517
+ {
518
+ "kind": "Content",
519
+ "text": ";"
520
+ }
521
+ ],
522
+ "isReadonly": false,
523
+ "isOptional": true,
524
+ "releaseTag": "Public",
525
+ "name": "data",
526
+ "propertyTypeTokenRange": {
527
+ "startIndex": 1,
528
+ "endIndex": 2
529
+ }
530
+ },
531
+ {
532
+ "kind": "PropertySignature",
533
+ "canonicalReference": "@genesislcap/grid-tabulator!CellRendererParams#formatterParams:member",
534
+ "docComment": "/**\n * Additional formatter parameters\n */\n",
535
+ "excerptTokens": [
536
+ {
537
+ "kind": "Content",
538
+ "text": "formatterParams?: "
539
+ },
540
+ {
541
+ "kind": "Reference",
542
+ "text": "FormatterParams",
543
+ "canonicalReference": "@types/tabulator-tables!FormatterParams:type"
544
+ },
545
+ {
546
+ "kind": "Content",
547
+ "text": ";"
548
+ }
549
+ ],
550
+ "isReadonly": false,
551
+ "isOptional": true,
552
+ "releaseTag": "Public",
553
+ "name": "formatterParams",
554
+ "propertyTypeTokenRange": {
555
+ "startIndex": 1,
556
+ "endIndex": 2
557
+ }
558
+ },
559
+ {
560
+ "kind": "PropertySignature",
561
+ "canonicalReference": "@genesislcap/grid-tabulator!CellRendererParams#value:member",
562
+ "docComment": "/**\n * The cell value\n */\n",
563
+ "excerptTokens": [
564
+ {
565
+ "kind": "Content",
566
+ "text": "value?: "
567
+ },
568
+ {
569
+ "kind": "Content",
570
+ "text": "any"
571
+ },
572
+ {
573
+ "kind": "Content",
574
+ "text": ";"
575
+ }
576
+ ],
577
+ "isReadonly": false,
578
+ "isOptional": true,
579
+ "releaseTag": "Public",
580
+ "name": "value",
581
+ "propertyTypeTokenRange": {
582
+ "startIndex": 1,
583
+ "endIndex": 2
584
+ }
585
+ }
586
+ ],
587
+ "extendsTokenRanges": []
588
+ },
566
589
  {
567
590
  "kind": "Function",
568
- "canonicalReference": "@genesislcap/grid-tabulator!formatDateExtra:function(1)",
569
- "docComment": "/**\n * Format am epoch value to a readable ISO date string.\n *\n * @param epoch - The epoch number.\n *\n * @returns The formatted date value.\n *\n * @public\n */\n",
591
+ "canonicalReference": "@genesislcap/grid-tabulator!dateTimeValueFormatter:function(1)",
592
+ "docComment": "/**\n * Format a date time value to a readable string.\n *\n * @remarks\n *\n * Formats [DATETIME] UNIX Timestamps (with time) to readable strings\n *\n * @param param - The field type.\n *\n * @returns The filter params.\n *\n * @public\n */\n",
570
593
  "excerptTokens": [
571
594
  {
572
595
  "kind": "Content",
573
- "text": "export declare function formatDateExtra(epoch: "
596
+ "text": "export declare function dateTimeValueFormatter({ value }: "
574
597
  },
575
598
  {
576
599
  "kind": "Content",
577
- "text": "number"
600
+ "text": "any"
578
601
  },
579
602
  {
580
603
  "kind": "Content",
@@ -598,7 +621,7 @@
598
621
  "overloadIndex": 1,
599
622
  "parameters": [
600
623
  {
601
- "parameterName": "epoch",
624
+ "parameterName": "{ value }",
602
625
  "parameterTypeTokenRange": {
603
626
  "startIndex": 1,
604
627
  "endIndex": 2
@@ -606,111 +629,182 @@
606
629
  "isOptional": false
607
630
  }
608
631
  ],
609
- "name": "formatDateExtra"
632
+ "name": "dateTimeValueFormatter"
610
633
  },
611
634
  {
612
- "kind": "Variable",
613
- "canonicalReference": "@genesislcap/grid-tabulator!foundationGridTabulatorActionRenderer:var",
614
- "docComment": "/**\n * A function that returns a Foundation Action Renderer for configuring the component with a DesignSystem.\n *\n * @remarks\n *\n * HTML Element: \\<foundation-grid-tabulator-action-renderer\\>\n *\n * @public\n */\n",
635
+ "kind": "Function",
636
+ "canonicalReference": "@genesislcap/grid-tabulator!dateValueFormatter:function(1)",
637
+ "docComment": "/**\n * Format a date value.\n *\n * @remarks\n *\n * Formats [DATE] UNIX Timestamps (with time) to readable strings\n *\n * @param param - The field type.\n *\n * @returns The filter params.\n *\n * @public\n */\n",
615
638
  "excerptTokens": [
616
639
  {
617
640
  "kind": "Content",
618
- "text": "foundationGridTabulatorActionRenderer: "
641
+ "text": "export declare function dateValueFormatter({ value }: "
619
642
  },
620
643
  {
621
644
  "kind": "Content",
622
- "text": "(overrideDefinition?: import(\"@microsoft/fast-foundation\")."
623
- },
624
- {
625
- "kind": "Reference",
626
- "text": "OverrideFoundationElementDefinition",
627
- "canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
645
+ "text": "any"
628
646
  },
629
647
  {
630
648
  "kind": "Content",
631
- "text": "<{\n baseName: string;\n styles: import(\"@microsoft/fast-element\")."
649
+ "text": "): "
632
650
  },
633
651
  {
634
- "kind": "Reference",
635
- "text": "ElementStyles",
636
- "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
652
+ "kind": "Content",
653
+ "text": "string"
637
654
  },
638
655
  {
639
656
  "kind": "Content",
640
- "text": ";\n template: import(\"@microsoft/fast-element\")."
641
- },
657
+ "text": ";"
658
+ }
659
+ ],
660
+ "fileUrlPath": "src/grid-tabulator.definitions.ts",
661
+ "returnTypeTokenRange": {
662
+ "startIndex": 3,
663
+ "endIndex": 4
664
+ },
665
+ "releaseTag": "Public",
666
+ "overloadIndex": 1,
667
+ "parameters": [
642
668
  {
643
- "kind": "Reference",
644
- "text": "ViewTemplate",
645
- "canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
646
- },
669
+ "parameterName": "{ value }",
670
+ "parameterTypeTokenRange": {
671
+ "startIndex": 1,
672
+ "endIndex": 2
673
+ },
674
+ "isOptional": false
675
+ }
676
+ ],
677
+ "name": "dateValueFormatter"
678
+ },
679
+ {
680
+ "kind": "Variable",
681
+ "canonicalReference": "@genesislcap/grid-tabulator!defaultGridTabulatorConfig:var",
682
+ "docComment": "/**\n * The default grid-tabulator configuration.\n *\n * @public\n */\n",
683
+ "excerptTokens": [
647
684
  {
648
685
  "kind": "Content",
649
- "text": "<"
686
+ "text": "defaultGridTabulatorConfig: "
650
687
  },
651
688
  {
652
- "kind": "Reference",
653
- "text": "ActionRenderer",
654
- "canonicalReference": "@genesislcap/grid-tabulator!ActionRenderer:class"
655
- },
689
+ "kind": "Content",
690
+ "text": "{\n shadowOptions: any;\n}"
691
+ }
692
+ ],
693
+ "fileUrlPath": "src/grid-tabulator.ts",
694
+ "isReadonly": true,
695
+ "releaseTag": "Public",
696
+ "name": "defaultGridTabulatorConfig",
697
+ "variableTypeTokenRange": {
698
+ "startIndex": 1,
699
+ "endIndex": 2
700
+ }
701
+ },
702
+ {
703
+ "kind": "Function",
704
+ "canonicalReference": "@genesislcap/grid-tabulator!editableFormatter:function(1)",
705
+ "docComment": "/**\n * Formatter that displays an editable cell with validation state\n *\n * @param cell - The cell component provided by Tabulator\n *\n * @param formatterParams - Editable formatter parameters\n *\n * @returns HTML content for the editable cell\n *\n * @public\n */\n",
706
+ "excerptTokens": [
656
707
  {
657
708
  "kind": "Content",
658
- "text": ", any>;\n}>) => import(\"@microsoft/fast-foundation\")."
709
+ "text": "export declare function editableFormatter(cell: "
659
710
  },
660
711
  {
661
- "kind": "Reference",
662
- "text": "FoundationElementRegistry",
663
- "canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
712
+ "kind": "Content",
713
+ "text": "any"
664
714
  },
665
715
  {
666
716
  "kind": "Content",
667
- "text": "<{\n baseName: string;\n styles: import(\"@microsoft/fast-element\")."
717
+ "text": ", formatterParams?: "
668
718
  },
669
719
  {
670
720
  "kind": "Reference",
671
- "text": "ElementStyles",
672
- "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
721
+ "text": "EditableFormatterParams",
722
+ "canonicalReference": "@genesislcap/grid-tabulator!EditableFormatterParams:interface"
673
723
  },
674
724
  {
675
725
  "kind": "Content",
676
- "text": ";\n template: import(\"@microsoft/fast-element\")."
677
- },
678
- {
679
- "kind": "Reference",
680
- "text": "ViewTemplate",
681
- "canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
726
+ "text": "): "
682
727
  },
683
728
  {
684
729
  "kind": "Content",
685
- "text": "<"
730
+ "text": "string"
686
731
  },
687
732
  {
688
- "kind": "Reference",
689
- "text": "ActionRenderer",
690
- "canonicalReference": "@genesislcap/grid-tabulator!ActionRenderer:class"
691
- },
733
+ "kind": "Content",
734
+ "text": ";"
735
+ }
736
+ ],
737
+ "fileUrlPath": "src/cell-formatters/editable.formatter.ts",
738
+ "returnTypeTokenRange": {
739
+ "startIndex": 5,
740
+ "endIndex": 6
741
+ },
742
+ "releaseTag": "Public",
743
+ "overloadIndex": 1,
744
+ "parameters": [
745
+ {
746
+ "parameterName": "cell",
747
+ "parameterTypeTokenRange": {
748
+ "startIndex": 1,
749
+ "endIndex": 2
750
+ },
751
+ "isOptional": false
752
+ },
753
+ {
754
+ "parameterName": "formatterParams",
755
+ "parameterTypeTokenRange": {
756
+ "startIndex": 3,
757
+ "endIndex": 4
758
+ },
759
+ "isOptional": true
760
+ }
761
+ ],
762
+ "name": "editableFormatter"
763
+ },
764
+ {
765
+ "kind": "Function",
766
+ "canonicalReference": "@genesislcap/grid-tabulator!formatDateExtra:function(1)",
767
+ "docComment": "/**\n * Format am epoch value to a readable ISO date string.\n *\n * @param epoch - The epoch number.\n *\n * @returns The formatted date value.\n *\n * @public\n */\n",
768
+ "excerptTokens": [
692
769
  {
693
770
  "kind": "Content",
694
- "text": ", any>;\n}, typeof "
771
+ "text": "export declare function formatDateExtra(epoch: "
695
772
  },
696
773
  {
697
- "kind": "Reference",
698
- "text": "ActionRenderer",
699
- "canonicalReference": "@genesislcap/grid-tabulator!ActionRenderer:class"
774
+ "kind": "Content",
775
+ "text": "number"
776
+ },
777
+ {
778
+ "kind": "Content",
779
+ "text": "): "
780
+ },
781
+ {
782
+ "kind": "Content",
783
+ "text": "string"
700
784
  },
701
785
  {
702
786
  "kind": "Content",
703
- "text": ">"
787
+ "text": ";"
704
788
  }
705
789
  ],
706
- "fileUrlPath": "src/cell-renderers/action.renderer.ts",
707
- "isReadonly": true,
790
+ "fileUrlPath": "src/grid-tabulator.definitions.ts",
791
+ "returnTypeTokenRange": {
792
+ "startIndex": 3,
793
+ "endIndex": 4
794
+ },
708
795
  "releaseTag": "Public",
709
- "name": "foundationGridTabulatorActionRenderer",
710
- "variableTypeTokenRange": {
711
- "startIndex": 1,
712
- "endIndex": 20
713
- }
796
+ "overloadIndex": 1,
797
+ "parameters": [
798
+ {
799
+ "parameterName": "epoch",
800
+ "parameterTypeTokenRange": {
801
+ "startIndex": 1,
802
+ "endIndex": 2
803
+ },
804
+ "isOptional": false
805
+ }
806
+ ],
807
+ "name": "formatDateExtra"
714
808
  },
715
809
  {
716
810
  "kind": "Variable",
@@ -723,7 +817,7 @@
723
817
  },
724
818
  {
725
819
  "kind": "Content",
726
- "text": "{\n foundationGridTabulatorActionRenderer: (overrideDefinition?: import(\"@microsoft/fast-foundation\")."
820
+ "text": "{\n foundationDateEditor: (overrideDefinition?: import(\"@microsoft/fast-foundation\")."
727
821
  },
728
822
  {
729
823
  "kind": "Reference",
@@ -750,12 +844,12 @@
750
844
  },
751
845
  {
752
846
  "kind": "Content",
753
- "text": "<import(\"./cell-renderers\")."
847
+ "text": "<import(\"./cell-editors/date.editor\")."
754
848
  },
755
849
  {
756
850
  "kind": "Reference",
757
- "text": "ActionRenderer",
758
- "canonicalReference": "@genesislcap/grid-tabulator!ActionRenderer:class"
851
+ "text": "DateEditor",
852
+ "canonicalReference": "@genesislcap/grid-tabulator!~DateEditor:class"
759
853
  },
760
854
  {
761
855
  "kind": "Content",
@@ -786,25 +880,25 @@
786
880
  },
787
881
  {
788
882
  "kind": "Content",
789
- "text": "<import(\"./cell-renderers\")."
883
+ "text": "<import(\"./cell-editors/date.editor\")."
790
884
  },
791
885
  {
792
886
  "kind": "Reference",
793
- "text": "ActionRenderer",
794
- "canonicalReference": "@genesislcap/grid-tabulator!ActionRenderer:class"
887
+ "text": "DateEditor",
888
+ "canonicalReference": "@genesislcap/grid-tabulator!~DateEditor:class"
795
889
  },
796
890
  {
797
891
  "kind": "Content",
798
- "text": ", any>;\n }, typeof import(\"./cell-renderers\")."
892
+ "text": ", any>;\n }, typeof import(\"./cell-editors/date.editor\")."
799
893
  },
800
894
  {
801
895
  "kind": "Reference",
802
- "text": "ActionRenderer",
803
- "canonicalReference": "@genesislcap/grid-tabulator!ActionRenderer:class"
896
+ "text": "DateEditor",
897
+ "canonicalReference": "@genesislcap/grid-tabulator!~DateEditor:class"
804
898
  },
805
899
  {
806
900
  "kind": "Content",
807
- "text": ">;\n foundationGridTabulator: (overrideDefinition?: import(\"@microsoft/fast-foundation\")."
901
+ "text": ">;\n foundationNumberEditor: (overrideDefinition?: import(\"@microsoft/fast-foundation\")."
808
902
  },
809
903
  {
810
904
  "kind": "Reference",
@@ -813,7 +907,7 @@
813
907
  },
814
908
  {
815
909
  "kind": "Content",
816
- "text": "<{\n shadowOptions: any;\n baseName: string;\n styles: import(\"@microsoft/fast-element\")."
910
+ "text": "<{\n baseName: string;\n styles: import(\"@microsoft/fast-element\")."
817
911
  },
818
912
  {
819
913
  "kind": "Reference",
@@ -831,7 +925,16 @@
831
925
  },
832
926
  {
833
927
  "kind": "Content",
834
- "text": "<any, any>;\n }>) => import(\"@microsoft/fast-foundation\")."
928
+ "text": "<import(\"./cell-editors/number.editor\")."
929
+ },
930
+ {
931
+ "kind": "Reference",
932
+ "text": "NumberEditor",
933
+ "canonicalReference": "@genesislcap/grid-tabulator!~NumberEditor:class"
934
+ },
935
+ {
936
+ "kind": "Content",
937
+ "text": ", any>;\n }>) => import(\"@microsoft/fast-foundation\")."
835
938
  },
836
939
  {
837
940
  "kind": "Reference",
@@ -840,7 +943,7 @@
840
943
  },
841
944
  {
842
945
  "kind": "Content",
843
- "text": "<{\n shadowOptions: any;\n baseName: string;\n styles: import(\"@microsoft/fast-element\")."
946
+ "text": "<{\n baseName: string;\n styles: import(\"@microsoft/fast-element\")."
844
947
  },
845
948
  {
846
949
  "kind": "Reference",
@@ -858,177 +961,546 @@
858
961
  },
859
962
  {
860
963
  "kind": "Content",
861
- "text": "<any, any>;\n }, typeof import(\"./grid-tabulator\")."
964
+ "text": "<import(\"./cell-editors/number.editor\")."
862
965
  },
863
966
  {
864
967
  "kind": "Reference",
865
- "text": "GridTabulator",
866
- "canonicalReference": "@genesislcap/grid-tabulator!GridTabulator:class"
968
+ "text": "NumberEditor",
969
+ "canonicalReference": "@genesislcap/grid-tabulator!~NumberEditor:class"
867
970
  },
868
971
  {
869
972
  "kind": "Content",
870
- "text": ">;\n register(container?: "
973
+ "text": ", any>;\n }, typeof import(\"./cell-editors/number.editor\")."
871
974
  },
872
975
  {
873
976
  "kind": "Reference",
874
- "text": "Container",
875
- "canonicalReference": "@microsoft/fast-foundation!Container:interface"
977
+ "text": "NumberEditor",
978
+ "canonicalReference": "@genesislcap/grid-tabulator!~NumberEditor:class"
876
979
  },
877
980
  {
878
981
  "kind": "Content",
879
- "text": ", ...rest: any[]): void;\n}"
880
- }
881
- ],
882
- "fileUrlPath": "src/grid-tabulator.components.ts",
883
- "isReadonly": true,
884
- "releaseTag": "Public",
885
- "name": "foundationGridTabulatorComponents",
886
- "variableTypeTokenRange": {
887
- "startIndex": 1,
888
- "endIndex": 36
889
- }
890
- },
891
- {
892
- "kind": "Function",
893
- "canonicalReference": "@genesislcap/grid-tabulator!getColumnType:function(1)",
894
- "docComment": "/**\n * Get the column type based on the metadata type.\n *\n * @param metadataType - The metadata type.\n *\n * @returns The column type.\n *\n * @public\n */\n",
895
- "excerptTokens": [
982
+ "text": ">;\n foundationSelectEditor: (overrideDefinition?: import(\"@microsoft/fast-foundation\")."
983
+ },
896
984
  {
897
- "kind": "Content",
898
- "text": "export declare function getColumnType(metadataType: "
985
+ "kind": "Reference",
986
+ "text": "OverrideFoundationElementDefinition",
987
+ "canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
899
988
  },
900
989
  {
901
990
  "kind": "Content",
902
- "text": "string"
991
+ "text": "<{\n baseName: string;\n styles: import(\"@microsoft/fast-element\")."
992
+ },
993
+ {
994
+ "kind": "Reference",
995
+ "text": "ElementStyles",
996
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
903
997
  },
904
998
  {
905
999
  "kind": "Content",
906
- "text": "): "
1000
+ "text": ";\n template: import(\"@microsoft/fast-element\")."
1001
+ },
1002
+ {
1003
+ "kind": "Reference",
1004
+ "text": "ViewTemplate",
1005
+ "canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
907
1006
  },
908
1007
  {
909
1008
  "kind": "Content",
910
- "text": "string"
1009
+ "text": "<import(\"./cell-editors/select.editor\")."
1010
+ },
1011
+ {
1012
+ "kind": "Reference",
1013
+ "text": "SelectEditor",
1014
+ "canonicalReference": "@genesislcap/grid-tabulator!~SelectEditor:class"
911
1015
  },
912
1016
  {
913
1017
  "kind": "Content",
914
- "text": ";"
915
- }
916
- ],
917
- "fileUrlPath": "src/grid-tabulator.definitions.ts",
918
- "returnTypeTokenRange": {
919
- "startIndex": 3,
920
- "endIndex": 4
921
- },
922
- "releaseTag": "Public",
923
- "overloadIndex": 1,
924
- "parameters": [
1018
+ "text": ", any>;\n }>) => import(\"@microsoft/fast-foundation\")."
1019
+ },
925
1020
  {
926
- "parameterName": "metadataType",
927
- "parameterTypeTokenRange": {
928
- "startIndex": 1,
929
- "endIndex": 2
930
- },
931
- "isOptional": false
932
- }
933
- ],
934
- "name": "getColumnType"
935
- },
936
- {
937
- "kind": "Function",
938
- "canonicalReference": "@genesislcap/grid-tabulator!getFilterByFieldType:function(1)",
939
- "docComment": "/**\n * Get the filter type based on the field type.\n *\n * @param type - The field type.\n *\n * @returns The filter type.\n *\n * @public\n */\n",
940
- "excerptTokens": [
1021
+ "kind": "Reference",
1022
+ "text": "FoundationElementRegistry",
1023
+ "canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
1024
+ },
941
1025
  {
942
1026
  "kind": "Content",
943
- "text": "export declare function getFilterByFieldType(type: "
1027
+ "text": "<{\n baseName: string;\n styles: import(\"@microsoft/fast-element\")."
1028
+ },
1029
+ {
1030
+ "kind": "Reference",
1031
+ "text": "ElementStyles",
1032
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
944
1033
  },
945
1034
  {
946
1035
  "kind": "Content",
947
- "text": "string"
1036
+ "text": ";\n template: import(\"@microsoft/fast-element\")."
1037
+ },
1038
+ {
1039
+ "kind": "Reference",
1040
+ "text": "ViewTemplate",
1041
+ "canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
948
1042
  },
949
1043
  {
950
1044
  "kind": "Content",
951
- "text": "): "
1045
+ "text": "<import(\"./cell-editors/select.editor\")."
1046
+ },
1047
+ {
1048
+ "kind": "Reference",
1049
+ "text": "SelectEditor",
1050
+ "canonicalReference": "@genesislcap/grid-tabulator!~SelectEditor:class"
952
1051
  },
953
1052
  {
954
1053
  "kind": "Content",
955
- "text": "string"
1054
+ "text": ", any>;\n }, typeof import(\"./cell-editors/select.editor\")."
1055
+ },
1056
+ {
1057
+ "kind": "Reference",
1058
+ "text": "SelectEditor",
1059
+ "canonicalReference": "@genesislcap/grid-tabulator!~SelectEditor:class"
956
1060
  },
957
1061
  {
958
1062
  "kind": "Content",
959
- "text": ";"
960
- }
961
- ],
962
- "fileUrlPath": "src/grid-tabulator.definitions.ts",
963
- "returnTypeTokenRange": {
964
- "startIndex": 3,
965
- "endIndex": 4
966
- },
967
- "releaseTag": "Public",
968
- "overloadIndex": 1,
969
- "parameters": [
1063
+ "text": ">;\n foundationStringEditor: (overrideDefinition?: import(\"@microsoft/fast-foundation\")."
1064
+ },
970
1065
  {
971
- "parameterName": "type",
972
- "parameterTypeTokenRange": {
973
- "startIndex": 1,
974
- "endIndex": 2
975
- },
976
- "isOptional": false
977
- }
978
- ],
979
- "name": "getFilterByFieldType"
980
- },
981
- {
982
- "kind": "Function",
983
- "canonicalReference": "@genesislcap/grid-tabulator!getFilterParamsByFieldType:function(1)",
984
- "docComment": "/**\n * Get the filter params based on the field type.\n *\n * @param type - The field type.\n *\n * @returns The filter params.\n *\n * @public\n */\n",
985
- "excerptTokens": [
1066
+ "kind": "Reference",
1067
+ "text": "OverrideFoundationElementDefinition",
1068
+ "canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
1069
+ },
986
1070
  {
987
1071
  "kind": "Content",
988
- "text": "export declare function getFilterParamsByFieldType(type: "
1072
+ "text": "<{\n baseName: string;\n styles: import(\"@microsoft/fast-element\")."
1073
+ },
1074
+ {
1075
+ "kind": "Reference",
1076
+ "text": "ElementStyles",
1077
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
989
1078
  },
990
1079
  {
991
1080
  "kind": "Content",
992
- "text": "string"
1081
+ "text": ";\n template: import(\"@microsoft/fast-element\")."
1082
+ },
1083
+ {
1084
+ "kind": "Reference",
1085
+ "text": "ViewTemplate",
1086
+ "canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
993
1087
  },
994
1088
  {
995
1089
  "kind": "Content",
996
- "text": "): "
1090
+ "text": "<import(\"./cell-editors/string.editor\")."
997
1091
  },
998
1092
  {
999
1093
  "kind": "Reference",
1000
- "text": "FilterParams",
1001
- "canonicalReference": "@types/tabulator-tables!FilterParams:interface"
1094
+ "text": "StringEditor",
1095
+ "canonicalReference": "@genesislcap/grid-tabulator!~StringEditor:class"
1002
1096
  },
1003
1097
  {
1004
1098
  "kind": "Content",
1005
- "text": ";"
1006
- }
1007
- ],
1008
- "fileUrlPath": "src/grid-tabulator.definitions.ts",
1009
- "returnTypeTokenRange": {
1010
- "startIndex": 3,
1011
- "endIndex": 4
1012
- },
1013
- "releaseTag": "Public",
1014
- "overloadIndex": 1,
1015
- "parameters": [
1099
+ "text": ", any>;\n }>) => import(\"@microsoft/fast-foundation\")."
1100
+ },
1016
1101
  {
1017
- "parameterName": "type",
1018
- "parameterTypeTokenRange": {
1019
- "startIndex": 1,
1020
- "endIndex": 2
1021
- },
1022
- "isOptional": false
1023
- }
1024
- ],
1025
- "name": "getFilterParamsByFieldType"
1026
- },
1027
- {
1028
- "kind": "Enum",
1029
- "canonicalReference": "@genesislcap/grid-tabulator!GridCSSVars:enum",
1030
- "docComment": "/**\n * All official Tabulator CSS variables\n *\n * @public\n */\n",
1031
- "excerptTokens": [
1102
+ "kind": "Reference",
1103
+ "text": "FoundationElementRegistry",
1104
+ "canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
1105
+ },
1106
+ {
1107
+ "kind": "Content",
1108
+ "text": "<{\n baseName: string;\n styles: import(\"@microsoft/fast-element\")."
1109
+ },
1110
+ {
1111
+ "kind": "Reference",
1112
+ "text": "ElementStyles",
1113
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
1114
+ },
1115
+ {
1116
+ "kind": "Content",
1117
+ "text": ";\n template: import(\"@microsoft/fast-element\")."
1118
+ },
1119
+ {
1120
+ "kind": "Reference",
1121
+ "text": "ViewTemplate",
1122
+ "canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
1123
+ },
1124
+ {
1125
+ "kind": "Content",
1126
+ "text": "<import(\"./cell-editors/string.editor\")."
1127
+ },
1128
+ {
1129
+ "kind": "Reference",
1130
+ "text": "StringEditor",
1131
+ "canonicalReference": "@genesislcap/grid-tabulator!~StringEditor:class"
1132
+ },
1133
+ {
1134
+ "kind": "Content",
1135
+ "text": ", any>;\n }, typeof import(\"./cell-editors/string.editor\")."
1136
+ },
1137
+ {
1138
+ "kind": "Reference",
1139
+ "text": "StringEditor",
1140
+ "canonicalReference": "@genesislcap/grid-tabulator!~StringEditor:class"
1141
+ },
1142
+ {
1143
+ "kind": "Content",
1144
+ "text": ">;\n foundationMultiselectEditor: (overrideDefinition?: import(\"@microsoft/fast-foundation\")."
1145
+ },
1146
+ {
1147
+ "kind": "Reference",
1148
+ "text": "OverrideFoundationElementDefinition",
1149
+ "canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
1150
+ },
1151
+ {
1152
+ "kind": "Content",
1153
+ "text": "<{\n baseName: string;\n styles: import(\"@microsoft/fast-element\")."
1154
+ },
1155
+ {
1156
+ "kind": "Reference",
1157
+ "text": "ElementStyles",
1158
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
1159
+ },
1160
+ {
1161
+ "kind": "Content",
1162
+ "text": ";\n template: import(\"@microsoft/fast-element\")."
1163
+ },
1164
+ {
1165
+ "kind": "Reference",
1166
+ "text": "ViewTemplate",
1167
+ "canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
1168
+ },
1169
+ {
1170
+ "kind": "Content",
1171
+ "text": "<import(\"./cell-editors/multiselect.editor\")."
1172
+ },
1173
+ {
1174
+ "kind": "Reference",
1175
+ "text": "MultiselectEditor",
1176
+ "canonicalReference": "@genesislcap/grid-tabulator!~MultiselectEditor:class"
1177
+ },
1178
+ {
1179
+ "kind": "Content",
1180
+ "text": ", any>;\n }>) => import(\"@microsoft/fast-foundation\")."
1181
+ },
1182
+ {
1183
+ "kind": "Reference",
1184
+ "text": "FoundationElementRegistry",
1185
+ "canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
1186
+ },
1187
+ {
1188
+ "kind": "Content",
1189
+ "text": "<{\n baseName: string;\n styles: import(\"@microsoft/fast-element\")."
1190
+ },
1191
+ {
1192
+ "kind": "Reference",
1193
+ "text": "ElementStyles",
1194
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
1195
+ },
1196
+ {
1197
+ "kind": "Content",
1198
+ "text": ";\n template: import(\"@microsoft/fast-element\")."
1199
+ },
1200
+ {
1201
+ "kind": "Reference",
1202
+ "text": "ViewTemplate",
1203
+ "canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
1204
+ },
1205
+ {
1206
+ "kind": "Content",
1207
+ "text": "<import(\"./cell-editors/multiselect.editor\")."
1208
+ },
1209
+ {
1210
+ "kind": "Reference",
1211
+ "text": "MultiselectEditor",
1212
+ "canonicalReference": "@genesislcap/grid-tabulator!~MultiselectEditor:class"
1213
+ },
1214
+ {
1215
+ "kind": "Content",
1216
+ "text": ", any>;\n }, typeof import(\"./cell-editors/multiselect.editor\")."
1217
+ },
1218
+ {
1219
+ "kind": "Reference",
1220
+ "text": "MultiselectEditor",
1221
+ "canonicalReference": "@genesislcap/grid-tabulator!~MultiselectEditor:class"
1222
+ },
1223
+ {
1224
+ "kind": "Content",
1225
+ "text": ">;\n foundationGridTabulatorColumn: (overrideDefinition?: import(\"@microsoft/fast-foundation\")."
1226
+ },
1227
+ {
1228
+ "kind": "Reference",
1229
+ "text": "OverrideFoundationElementDefinition",
1230
+ "canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
1231
+ },
1232
+ {
1233
+ "kind": "Content",
1234
+ "text": "<{\n baseName: string;\n }>) => import(\"@microsoft/fast-foundation\")."
1235
+ },
1236
+ {
1237
+ "kind": "Reference",
1238
+ "text": "FoundationElementRegistry",
1239
+ "canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
1240
+ },
1241
+ {
1242
+ "kind": "Content",
1243
+ "text": "<{\n baseName: string;\n }, typeof "
1244
+ },
1245
+ {
1246
+ "kind": "Reference",
1247
+ "text": "GridTabulatorColumn",
1248
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorColumn:class"
1249
+ },
1250
+ {
1251
+ "kind": "Content",
1252
+ "text": ">;\n foundationGridTabulatorCell: (overrideDefinition?: import(\"@microsoft/fast-foundation\")."
1253
+ },
1254
+ {
1255
+ "kind": "Reference",
1256
+ "text": "OverrideFoundationElementDefinition",
1257
+ "canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
1258
+ },
1259
+ {
1260
+ "kind": "Content",
1261
+ "text": "<{\n baseName: string;\n }>) => import(\"@microsoft/fast-foundation\")."
1262
+ },
1263
+ {
1264
+ "kind": "Reference",
1265
+ "text": "FoundationElementRegistry",
1266
+ "canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
1267
+ },
1268
+ {
1269
+ "kind": "Content",
1270
+ "text": "<{\n baseName: string;\n }, typeof "
1271
+ },
1272
+ {
1273
+ "kind": "Reference",
1274
+ "text": "GridTabulatorCell",
1275
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCell:class"
1276
+ },
1277
+ {
1278
+ "kind": "Content",
1279
+ "text": ">;\n foundationGridTabulator: (overrideDefinition?: import(\"@microsoft/fast-foundation\")."
1280
+ },
1281
+ {
1282
+ "kind": "Reference",
1283
+ "text": "OverrideFoundationElementDefinition",
1284
+ "canonicalReference": "@microsoft/fast-foundation!OverrideFoundationElementDefinition:type"
1285
+ },
1286
+ {
1287
+ "kind": "Content",
1288
+ "text": "<{\n shadowOptions: any;\n baseName: string;\n styles: import(\"@microsoft/fast-element\")."
1289
+ },
1290
+ {
1291
+ "kind": "Reference",
1292
+ "text": "ElementStyles",
1293
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
1294
+ },
1295
+ {
1296
+ "kind": "Content",
1297
+ "text": ";\n template: import(\"@microsoft/fast-element\")."
1298
+ },
1299
+ {
1300
+ "kind": "Reference",
1301
+ "text": "ViewTemplate",
1302
+ "canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
1303
+ },
1304
+ {
1305
+ "kind": "Content",
1306
+ "text": "<any, any>;\n }>) => import(\"@microsoft/fast-foundation\")."
1307
+ },
1308
+ {
1309
+ "kind": "Reference",
1310
+ "text": "FoundationElementRegistry",
1311
+ "canonicalReference": "@microsoft/fast-foundation!FoundationElementRegistry:class"
1312
+ },
1313
+ {
1314
+ "kind": "Content",
1315
+ "text": "<{\n shadowOptions: any;\n baseName: string;\n styles: import(\"@microsoft/fast-element\")."
1316
+ },
1317
+ {
1318
+ "kind": "Reference",
1319
+ "text": "ElementStyles",
1320
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
1321
+ },
1322
+ {
1323
+ "kind": "Content",
1324
+ "text": ";\n template: import(\"@microsoft/fast-element\")."
1325
+ },
1326
+ {
1327
+ "kind": "Reference",
1328
+ "text": "ViewTemplate",
1329
+ "canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
1330
+ },
1331
+ {
1332
+ "kind": "Content",
1333
+ "text": "<any, any>;\n }, typeof import(\"./grid-tabulator\")."
1334
+ },
1335
+ {
1336
+ "kind": "Reference",
1337
+ "text": "GridTabulator",
1338
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulator:class"
1339
+ },
1340
+ {
1341
+ "kind": "Content",
1342
+ "text": ">;\n register(container?: "
1343
+ },
1344
+ {
1345
+ "kind": "Reference",
1346
+ "text": "Container",
1347
+ "canonicalReference": "@microsoft/fast-foundation!Container:interface"
1348
+ },
1349
+ {
1350
+ "kind": "Content",
1351
+ "text": ", ...rest: any[]): void;\n}"
1352
+ }
1353
+ ],
1354
+ "fileUrlPath": "src/grid-tabulator.components.ts",
1355
+ "isReadonly": true,
1356
+ "releaseTag": "Public",
1357
+ "name": "foundationGridTabulatorComponents",
1358
+ "variableTypeTokenRange": {
1359
+ "startIndex": 1,
1360
+ "endIndex": 120
1361
+ }
1362
+ },
1363
+ {
1364
+ "kind": "Function",
1365
+ "canonicalReference": "@genesislcap/grid-tabulator!getColumnType:function(1)",
1366
+ "docComment": "/**\n * Get the column type based on the metadata type.\n *\n * @param metadataType - The metadata type.\n *\n * @returns The column type.\n *\n * @public\n */\n",
1367
+ "excerptTokens": [
1368
+ {
1369
+ "kind": "Content",
1370
+ "text": "export declare function getColumnType(metadataType: "
1371
+ },
1372
+ {
1373
+ "kind": "Content",
1374
+ "text": "string"
1375
+ },
1376
+ {
1377
+ "kind": "Content",
1378
+ "text": "): "
1379
+ },
1380
+ {
1381
+ "kind": "Content",
1382
+ "text": "string"
1383
+ },
1384
+ {
1385
+ "kind": "Content",
1386
+ "text": ";"
1387
+ }
1388
+ ],
1389
+ "fileUrlPath": "src/grid-tabulator.definitions.ts",
1390
+ "returnTypeTokenRange": {
1391
+ "startIndex": 3,
1392
+ "endIndex": 4
1393
+ },
1394
+ "releaseTag": "Public",
1395
+ "overloadIndex": 1,
1396
+ "parameters": [
1397
+ {
1398
+ "parameterName": "metadataType",
1399
+ "parameterTypeTokenRange": {
1400
+ "startIndex": 1,
1401
+ "endIndex": 2
1402
+ },
1403
+ "isOptional": false
1404
+ }
1405
+ ],
1406
+ "name": "getColumnType"
1407
+ },
1408
+ {
1409
+ "kind": "Function",
1410
+ "canonicalReference": "@genesislcap/grid-tabulator!getFilterByFieldType:function(1)",
1411
+ "docComment": "/**\n * Get the filter type based on the field type.\n *\n * @param type - The field type.\n *\n * @returns The filter type.\n *\n * @public\n */\n",
1412
+ "excerptTokens": [
1413
+ {
1414
+ "kind": "Content",
1415
+ "text": "export declare function getFilterByFieldType(type: "
1416
+ },
1417
+ {
1418
+ "kind": "Content",
1419
+ "text": "string"
1420
+ },
1421
+ {
1422
+ "kind": "Content",
1423
+ "text": "): "
1424
+ },
1425
+ {
1426
+ "kind": "Content",
1427
+ "text": "string"
1428
+ },
1429
+ {
1430
+ "kind": "Content",
1431
+ "text": ";"
1432
+ }
1433
+ ],
1434
+ "fileUrlPath": "src/grid-tabulator.definitions.ts",
1435
+ "returnTypeTokenRange": {
1436
+ "startIndex": 3,
1437
+ "endIndex": 4
1438
+ },
1439
+ "releaseTag": "Public",
1440
+ "overloadIndex": 1,
1441
+ "parameters": [
1442
+ {
1443
+ "parameterName": "type",
1444
+ "parameterTypeTokenRange": {
1445
+ "startIndex": 1,
1446
+ "endIndex": 2
1447
+ },
1448
+ "isOptional": false
1449
+ }
1450
+ ],
1451
+ "name": "getFilterByFieldType"
1452
+ },
1453
+ {
1454
+ "kind": "Function",
1455
+ "canonicalReference": "@genesislcap/grid-tabulator!getFilterParamsByFieldType:function(1)",
1456
+ "docComment": "/**\n * Get the filter params based on the field type.\n *\n * @param type - The field type.\n *\n * @returns The filter params.\n *\n * @public\n */\n",
1457
+ "excerptTokens": [
1458
+ {
1459
+ "kind": "Content",
1460
+ "text": "export declare function getFilterParamsByFieldType(type: "
1461
+ },
1462
+ {
1463
+ "kind": "Content",
1464
+ "text": "string"
1465
+ },
1466
+ {
1467
+ "kind": "Content",
1468
+ "text": "): "
1469
+ },
1470
+ {
1471
+ "kind": "Reference",
1472
+ "text": "FilterParams",
1473
+ "canonicalReference": "@types/tabulator-tables!FilterParams:interface"
1474
+ },
1475
+ {
1476
+ "kind": "Content",
1477
+ "text": ";"
1478
+ }
1479
+ ],
1480
+ "fileUrlPath": "src/grid-tabulator.definitions.ts",
1481
+ "returnTypeTokenRange": {
1482
+ "startIndex": 3,
1483
+ "endIndex": 4
1484
+ },
1485
+ "releaseTag": "Public",
1486
+ "overloadIndex": 1,
1487
+ "parameters": [
1488
+ {
1489
+ "parameterName": "type",
1490
+ "parameterTypeTokenRange": {
1491
+ "startIndex": 1,
1492
+ "endIndex": 2
1493
+ },
1494
+ "isOptional": false
1495
+ }
1496
+ ],
1497
+ "name": "getFilterParamsByFieldType"
1498
+ },
1499
+ {
1500
+ "kind": "Enum",
1501
+ "canonicalReference": "@genesislcap/grid-tabulator!GridCSSVars:enum",
1502
+ "docComment": "/**\n * All official Tabulator CSS variables\n *\n * @public\n */\n",
1503
+ "excerptTokens": [
1032
1504
  {
1033
1505
  "kind": "Content",
1034
1506
  "text": "export declare enum GridCSSVars "
@@ -1036,9 +1508,483 @@
1036
1508
  ],
1037
1509
  "fileUrlPath": "src/grid-tabulator.types.ts",
1038
1510
  "releaseTag": "Public",
1039
- "name": "GridCSSVars",
1511
+ "name": "GridCSSVars",
1512
+ "preserveMemberOrder": false,
1513
+ "members": []
1514
+ },
1515
+ {
1516
+ "kind": "Class",
1517
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCell:class",
1518
+ "docComment": "/**\n * The GridTabulator Cell element.\n *\n * @remarks\n *\n * Used inside the GridTabulator Column element to define a cell renderer from the template.\n *\n * @public\n */\n",
1519
+ "excerptTokens": [
1520
+ {
1521
+ "kind": "Content",
1522
+ "text": "export declare class GridTabulatorCell extends "
1523
+ },
1524
+ {
1525
+ "kind": "Reference",
1526
+ "text": "FoundationElement",
1527
+ "canonicalReference": "@microsoft/fast-foundation!FoundationElement:class"
1528
+ },
1529
+ {
1530
+ "kind": "Content",
1531
+ "text": " "
1532
+ }
1533
+ ],
1534
+ "fileUrlPath": "src/cell/cell.ts",
1535
+ "releaseTag": "Public",
1536
+ "isAbstract": false,
1537
+ "name": "GridTabulatorCell",
1538
+ "preserveMemberOrder": false,
1539
+ "members": [
1540
+ {
1541
+ "kind": "Method",
1542
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCell#connectedCallback:member(1)",
1543
+ "docComment": "",
1544
+ "excerptTokens": [
1545
+ {
1546
+ "kind": "Content",
1547
+ "text": "connectedCallback(): "
1548
+ },
1549
+ {
1550
+ "kind": "Content",
1551
+ "text": "void"
1552
+ },
1553
+ {
1554
+ "kind": "Content",
1555
+ "text": ";"
1556
+ }
1557
+ ],
1558
+ "isStatic": false,
1559
+ "returnTypeTokenRange": {
1560
+ "startIndex": 1,
1561
+ "endIndex": 2
1562
+ },
1563
+ "releaseTag": "Public",
1564
+ "isProtected": false,
1565
+ "overloadIndex": 1,
1566
+ "parameters": [],
1567
+ "isOptional": false,
1568
+ "isAbstract": false,
1569
+ "name": "connectedCallback"
1570
+ },
1571
+ {
1572
+ "kind": "Method",
1573
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCell#destroy:member(1)",
1574
+ "docComment": "",
1575
+ "excerptTokens": [
1576
+ {
1577
+ "kind": "Content",
1578
+ "text": "destroy(): "
1579
+ },
1580
+ {
1581
+ "kind": "Content",
1582
+ "text": "void"
1583
+ },
1584
+ {
1585
+ "kind": "Content",
1586
+ "text": ";"
1587
+ }
1588
+ ],
1589
+ "isStatic": false,
1590
+ "returnTypeTokenRange": {
1591
+ "startIndex": 1,
1592
+ "endIndex": 2
1593
+ },
1594
+ "releaseTag": "Public",
1595
+ "isProtected": false,
1596
+ "overloadIndex": 1,
1597
+ "parameters": [],
1598
+ "isOptional": false,
1599
+ "isAbstract": false,
1600
+ "name": "destroy"
1601
+ },
1602
+ {
1603
+ "kind": "Method",
1604
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCell#getElement:member(1)",
1605
+ "docComment": "",
1606
+ "excerptTokens": [
1607
+ {
1608
+ "kind": "Content",
1609
+ "text": "getElement(): "
1610
+ },
1611
+ {
1612
+ "kind": "Reference",
1613
+ "text": "HTMLElement",
1614
+ "canonicalReference": "!HTMLElement:interface"
1615
+ },
1616
+ {
1617
+ "kind": "Content",
1618
+ "text": ";"
1619
+ }
1620
+ ],
1621
+ "isStatic": false,
1622
+ "returnTypeTokenRange": {
1623
+ "startIndex": 1,
1624
+ "endIndex": 2
1625
+ },
1626
+ "releaseTag": "Public",
1627
+ "isProtected": false,
1628
+ "overloadIndex": 1,
1629
+ "parameters": [],
1630
+ "isOptional": false,
1631
+ "isAbstract": false,
1632
+ "name": "getElement"
1633
+ },
1634
+ {
1635
+ "kind": "Method",
1636
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCell#init:member(1)",
1637
+ "docComment": "",
1638
+ "excerptTokens": [
1639
+ {
1640
+ "kind": "Content",
1641
+ "text": "init(params: "
1642
+ },
1643
+ {
1644
+ "kind": "Reference",
1645
+ "text": "CellRendererParams",
1646
+ "canonicalReference": "@genesislcap/grid-tabulator!CellRendererParams:interface"
1647
+ },
1648
+ {
1649
+ "kind": "Content",
1650
+ "text": "): "
1651
+ },
1652
+ {
1653
+ "kind": "Content",
1654
+ "text": "void"
1655
+ },
1656
+ {
1657
+ "kind": "Content",
1658
+ "text": ";"
1659
+ }
1660
+ ],
1661
+ "isStatic": false,
1662
+ "returnTypeTokenRange": {
1663
+ "startIndex": 3,
1664
+ "endIndex": 4
1665
+ },
1666
+ "releaseTag": "Public",
1667
+ "isProtected": false,
1668
+ "overloadIndex": 1,
1669
+ "parameters": [
1670
+ {
1671
+ "parameterName": "params",
1672
+ "parameterTypeTokenRange": {
1673
+ "startIndex": 1,
1674
+ "endIndex": 2
1675
+ },
1676
+ "isOptional": false
1677
+ }
1678
+ ],
1679
+ "isOptional": false,
1680
+ "isAbstract": false,
1681
+ "name": "init"
1682
+ },
1683
+ {
1684
+ "kind": "Method",
1685
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCell#refresh:member(1)",
1686
+ "docComment": "",
1687
+ "excerptTokens": [
1688
+ {
1689
+ "kind": "Content",
1690
+ "text": "refresh(params: "
1691
+ },
1692
+ {
1693
+ "kind": "Reference",
1694
+ "text": "CellRendererParams",
1695
+ "canonicalReference": "@genesislcap/grid-tabulator!CellRendererParams:interface"
1696
+ },
1697
+ {
1698
+ "kind": "Content",
1699
+ "text": "): "
1700
+ },
1701
+ {
1702
+ "kind": "Content",
1703
+ "text": "boolean"
1704
+ },
1705
+ {
1706
+ "kind": "Content",
1707
+ "text": ";"
1708
+ }
1709
+ ],
1710
+ "isStatic": false,
1711
+ "returnTypeTokenRange": {
1712
+ "startIndex": 3,
1713
+ "endIndex": 4
1714
+ },
1715
+ "releaseTag": "Public",
1716
+ "isProtected": false,
1717
+ "overloadIndex": 1,
1718
+ "parameters": [
1719
+ {
1720
+ "parameterName": "params",
1721
+ "parameterTypeTokenRange": {
1722
+ "startIndex": 1,
1723
+ "endIndex": 2
1724
+ },
1725
+ "isOptional": false
1726
+ }
1727
+ ],
1728
+ "isOptional": false,
1729
+ "isAbstract": false,
1730
+ "name": "refresh"
1731
+ },
1732
+ {
1733
+ "kind": "Property",
1734
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCell#renderer:member",
1735
+ "docComment": "",
1736
+ "excerptTokens": [
1737
+ {
1738
+ "kind": "Content",
1739
+ "text": "renderer: "
1740
+ },
1741
+ {
1742
+ "kind": "Reference",
1743
+ "text": "CellRendererFunc",
1744
+ "canonicalReference": "@genesislcap/grid-tabulator!CellRendererFunc:type"
1745
+ },
1746
+ {
1747
+ "kind": "Content",
1748
+ "text": ";"
1749
+ }
1750
+ ],
1751
+ "isReadonly": false,
1752
+ "isOptional": false,
1753
+ "releaseTag": "Public",
1754
+ "name": "renderer",
1755
+ "propertyTypeTokenRange": {
1756
+ "startIndex": 1,
1757
+ "endIndex": 2
1758
+ },
1759
+ "isStatic": false,
1760
+ "isProtected": false,
1761
+ "isAbstract": false
1762
+ },
1763
+ {
1764
+ "kind": "Property",
1765
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCell#rendererParams:member",
1766
+ "docComment": "",
1767
+ "excerptTokens": [
1768
+ {
1769
+ "kind": "Content",
1770
+ "text": "rendererParams: "
1771
+ },
1772
+ {
1773
+ "kind": "Reference",
1774
+ "text": "CellRendererParams",
1775
+ "canonicalReference": "@genesislcap/grid-tabulator!CellRendererParams:interface"
1776
+ },
1777
+ {
1778
+ "kind": "Content",
1779
+ "text": ";"
1780
+ }
1781
+ ],
1782
+ "isReadonly": false,
1783
+ "isOptional": false,
1784
+ "releaseTag": "Public",
1785
+ "name": "rendererParams",
1786
+ "propertyTypeTokenRange": {
1787
+ "startIndex": 1,
1788
+ "endIndex": 2
1789
+ },
1790
+ "isStatic": false,
1791
+ "isProtected": false,
1792
+ "isAbstract": false
1793
+ },
1794
+ {
1795
+ "kind": "Property",
1796
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCell#slottedRenderer:member",
1797
+ "docComment": "",
1798
+ "excerptTokens": [
1799
+ {
1800
+ "kind": "Content",
1801
+ "text": "slottedRenderer: "
1802
+ },
1803
+ {
1804
+ "kind": "Reference",
1805
+ "text": "HTMLElement",
1806
+ "canonicalReference": "!HTMLElement:interface"
1807
+ },
1808
+ {
1809
+ "kind": "Content",
1810
+ "text": "[]"
1811
+ },
1812
+ {
1813
+ "kind": "Content",
1814
+ "text": ";"
1815
+ }
1816
+ ],
1817
+ "isReadonly": false,
1818
+ "isOptional": false,
1819
+ "releaseTag": "Public",
1820
+ "name": "slottedRenderer",
1821
+ "propertyTypeTokenRange": {
1822
+ "startIndex": 1,
1823
+ "endIndex": 3
1824
+ },
1825
+ "isStatic": false,
1826
+ "isProtected": false,
1827
+ "isAbstract": false
1828
+ },
1829
+ {
1830
+ "kind": "Method",
1831
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCell#slottedRendererChanged:member(1)",
1832
+ "docComment": "",
1833
+ "excerptTokens": [
1834
+ {
1835
+ "kind": "Content",
1836
+ "text": "slottedRendererChanged(): "
1837
+ },
1838
+ {
1839
+ "kind": "Content",
1840
+ "text": "void"
1841
+ },
1842
+ {
1843
+ "kind": "Content",
1844
+ "text": ";"
1845
+ }
1846
+ ],
1847
+ "isStatic": false,
1848
+ "returnTypeTokenRange": {
1849
+ "startIndex": 1,
1850
+ "endIndex": 2
1851
+ },
1852
+ "releaseTag": "Public",
1853
+ "isProtected": false,
1854
+ "overloadIndex": 1,
1855
+ "parameters": [],
1856
+ "isOptional": false,
1857
+ "isAbstract": false,
1858
+ "name": "slottedRendererChanged"
1859
+ }
1860
+ ],
1861
+ "extendsTokenRange": {
1862
+ "startIndex": 1,
1863
+ "endIndex": 2
1864
+ },
1865
+ "implementsTokenRanges": []
1866
+ },
1867
+ {
1868
+ "kind": "Enum",
1869
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCellEditorTypes:enum",
1870
+ "docComment": "/**\n * The available `grid-tabulator` Editor Types\n *\n * @public\n */\n",
1871
+ "excerptTokens": [
1872
+ {
1873
+ "kind": "Content",
1874
+ "text": "export declare enum GridTabulatorCellEditorTypes "
1875
+ }
1876
+ ],
1877
+ "fileUrlPath": "src/grid-tabulator.types.ts",
1878
+ "releaseTag": "Public",
1879
+ "name": "GridTabulatorCellEditorTypes",
1040
1880
  "preserveMemberOrder": false,
1041
- "members": []
1881
+ "members": [
1882
+ {
1883
+ "kind": "EnumMember",
1884
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCellEditorTypes.date:member",
1885
+ "docComment": "",
1886
+ "excerptTokens": [
1887
+ {
1888
+ "kind": "Content",
1889
+ "text": "date = "
1890
+ },
1891
+ {
1892
+ "kind": "Content",
1893
+ "text": "\"date\""
1894
+ }
1895
+ ],
1896
+ "initializerTokenRange": {
1897
+ "startIndex": 1,
1898
+ "endIndex": 2
1899
+ },
1900
+ "releaseTag": "Public",
1901
+ "name": "date"
1902
+ },
1903
+ {
1904
+ "kind": "EnumMember",
1905
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCellEditorTypes.multiselect:member",
1906
+ "docComment": "",
1907
+ "excerptTokens": [
1908
+ {
1909
+ "kind": "Content",
1910
+ "text": "multiselect = "
1911
+ },
1912
+ {
1913
+ "kind": "Content",
1914
+ "text": "\"multiselect\""
1915
+ }
1916
+ ],
1917
+ "initializerTokenRange": {
1918
+ "startIndex": 1,
1919
+ "endIndex": 2
1920
+ },
1921
+ "releaseTag": "Public",
1922
+ "name": "multiselect"
1923
+ },
1924
+ {
1925
+ "kind": "EnumMember",
1926
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCellEditorTypes.number:member",
1927
+ "docComment": "",
1928
+ "excerptTokens": [
1929
+ {
1930
+ "kind": "Content",
1931
+ "text": "number = "
1932
+ },
1933
+ {
1934
+ "kind": "Content",
1935
+ "text": "\"number\""
1936
+ }
1937
+ ],
1938
+ "initializerTokenRange": {
1939
+ "startIndex": 1,
1940
+ "endIndex": 2
1941
+ },
1942
+ "releaseTag": "Public",
1943
+ "name": "number"
1944
+ },
1945
+ {
1946
+ "kind": "EnumMember",
1947
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCellEditorTypes.select:member",
1948
+ "docComment": "",
1949
+ "excerptTokens": [
1950
+ {
1951
+ "kind": "Content",
1952
+ "text": "select = "
1953
+ },
1954
+ {
1955
+ "kind": "Content",
1956
+ "text": "\"select\""
1957
+ }
1958
+ ],
1959
+ "initializerTokenRange": {
1960
+ "startIndex": 1,
1961
+ "endIndex": 2
1962
+ },
1963
+ "releaseTag": "Public",
1964
+ "name": "select"
1965
+ },
1966
+ {
1967
+ "kind": "EnumMember",
1968
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCellEditorTypes.string:member",
1969
+ "docComment": "",
1970
+ "excerptTokens": [
1971
+ {
1972
+ "kind": "Content",
1973
+ "text": "string = "
1974
+ },
1975
+ {
1976
+ "kind": "Content",
1977
+ "text": "\"string\""
1978
+ }
1979
+ ],
1980
+ "initializerTokenRange": {
1981
+ "startIndex": 1,
1982
+ "endIndex": 2
1983
+ },
1984
+ "releaseTag": "Public",
1985
+ "name": "string"
1986
+ }
1987
+ ]
1042
1988
  },
1043
1989
  {
1044
1990
  "kind": "Enum",
@@ -1118,6 +2064,27 @@
1118
2064
  "releaseTag": "Public",
1119
2065
  "name": "boolean"
1120
2066
  },
2067
+ {
2068
+ "kind": "EnumMember",
2069
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCellRendererTypes.editable:member",
2070
+ "docComment": "",
2071
+ "excerptTokens": [
2072
+ {
2073
+ "kind": "Content",
2074
+ "text": "editable = "
2075
+ },
2076
+ {
2077
+ "kind": "Content",
2078
+ "text": "\"editable\""
2079
+ }
2080
+ ],
2081
+ "initializerTokenRange": {
2082
+ "startIndex": 1,
2083
+ "endIndex": 2
2084
+ },
2085
+ "releaseTag": "Public",
2086
+ "name": "editable"
2087
+ },
1121
2088
  {
1122
2089
  "kind": "EnumMember",
1123
2090
  "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorCellRendererTypes.select:member",
@@ -1162,6 +2129,180 @@
1162
2129
  }
1163
2130
  ]
1164
2131
  },
2132
+ {
2133
+ "kind": "Class",
2134
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorColumn:class",
2135
+ "docComment": "/**\n * The GridTabulator Column element.\n *\n * @remarks\n *\n * Used inside the GridTabulator element to specify column definitions for a given column.\n *\n * @public\n */\n",
2136
+ "excerptTokens": [
2137
+ {
2138
+ "kind": "Content",
2139
+ "text": "export declare class GridTabulatorColumn extends "
2140
+ },
2141
+ {
2142
+ "kind": "Reference",
2143
+ "text": "GridTabulatorColumn_base",
2144
+ "canonicalReference": "@genesislcap/grid-tabulator!~GridTabulatorColumn_base"
2145
+ },
2146
+ {
2147
+ "kind": "Content",
2148
+ "text": " "
2149
+ }
2150
+ ],
2151
+ "fileUrlPath": "src/column/column.ts",
2152
+ "releaseTag": "Public",
2153
+ "isAbstract": false,
2154
+ "name": "GridTabulatorColumn",
2155
+ "preserveMemberOrder": false,
2156
+ "members": [
2157
+ {
2158
+ "kind": "Method",
2159
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorColumn#deepClone:member(1)",
2160
+ "docComment": "",
2161
+ "excerptTokens": [
2162
+ {
2163
+ "kind": "Content",
2164
+ "text": "deepClone(): "
2165
+ },
2166
+ {
2167
+ "kind": "Reference",
2168
+ "text": "Node",
2169
+ "canonicalReference": "!Node:interface"
2170
+ },
2171
+ {
2172
+ "kind": "Content",
2173
+ "text": ";"
2174
+ }
2175
+ ],
2176
+ "isStatic": false,
2177
+ "returnTypeTokenRange": {
2178
+ "startIndex": 1,
2179
+ "endIndex": 2
2180
+ },
2181
+ "releaseTag": "Public",
2182
+ "isProtected": false,
2183
+ "overloadIndex": 1,
2184
+ "parameters": [],
2185
+ "isOptional": false,
2186
+ "isAbstract": false,
2187
+ "name": "deepClone"
2188
+ },
2189
+ {
2190
+ "kind": "Property",
2191
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorColumn#definition:member",
2192
+ "docComment": "",
2193
+ "excerptTokens": [
2194
+ {
2195
+ "kind": "Content",
2196
+ "text": "definition: "
2197
+ },
2198
+ {
2199
+ "kind": "Reference",
2200
+ "text": "Partial",
2201
+ "canonicalReference": "!Partial:type"
2202
+ },
2203
+ {
2204
+ "kind": "Content",
2205
+ "text": "<"
2206
+ },
2207
+ {
2208
+ "kind": "Reference",
2209
+ "text": "ColumnDefinition",
2210
+ "canonicalReference": "@types/tabulator-tables!ColumnDefinition:interface"
2211
+ },
2212
+ {
2213
+ "kind": "Content",
2214
+ "text": ">"
2215
+ },
2216
+ {
2217
+ "kind": "Content",
2218
+ "text": ";"
2219
+ }
2220
+ ],
2221
+ "isReadonly": false,
2222
+ "isOptional": false,
2223
+ "releaseTag": "Public",
2224
+ "name": "definition",
2225
+ "propertyTypeTokenRange": {
2226
+ "startIndex": 1,
2227
+ "endIndex": 5
2228
+ },
2229
+ "isStatic": false,
2230
+ "isProtected": false,
2231
+ "isAbstract": false
2232
+ },
2233
+ {
2234
+ "kind": "Property",
2235
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorColumn#slottedCell:member",
2236
+ "docComment": "",
2237
+ "excerptTokens": [
2238
+ {
2239
+ "kind": "Content",
2240
+ "text": "slottedCell: "
2241
+ },
2242
+ {
2243
+ "kind": "Reference",
2244
+ "text": "HTMLElement",
2245
+ "canonicalReference": "!HTMLElement:interface"
2246
+ },
2247
+ {
2248
+ "kind": "Content",
2249
+ "text": "[]"
2250
+ },
2251
+ {
2252
+ "kind": "Content",
2253
+ "text": ";"
2254
+ }
2255
+ ],
2256
+ "isReadonly": false,
2257
+ "isOptional": false,
2258
+ "releaseTag": "Public",
2259
+ "name": "slottedCell",
2260
+ "propertyTypeTokenRange": {
2261
+ "startIndex": 1,
2262
+ "endIndex": 3
2263
+ },
2264
+ "isStatic": false,
2265
+ "isProtected": false,
2266
+ "isAbstract": false
2267
+ },
2268
+ {
2269
+ "kind": "Method",
2270
+ "canonicalReference": "@genesislcap/grid-tabulator!GridTabulatorColumn#slottedCellChanged:member(1)",
2271
+ "docComment": "",
2272
+ "excerptTokens": [
2273
+ {
2274
+ "kind": "Content",
2275
+ "text": "slottedCellChanged(): "
2276
+ },
2277
+ {
2278
+ "kind": "Content",
2279
+ "text": "void"
2280
+ },
2281
+ {
2282
+ "kind": "Content",
2283
+ "text": ";"
2284
+ }
2285
+ ],
2286
+ "isStatic": false,
2287
+ "returnTypeTokenRange": {
2288
+ "startIndex": 1,
2289
+ "endIndex": 2
2290
+ },
2291
+ "releaseTag": "Public",
2292
+ "isProtected": false,
2293
+ "overloadIndex": 1,
2294
+ "parameters": [],
2295
+ "isOptional": false,
2296
+ "isAbstract": false,
2297
+ "name": "slottedCellChanged"
2298
+ }
2299
+ ],
2300
+ "extendsTokenRange": {
2301
+ "startIndex": 1,
2302
+ "endIndex": 2
2303
+ },
2304
+ "implementsTokenRanges": []
2305
+ },
1165
2306
  {
1166
2307
  "kind": "Variable",
1167
2308
  "canonicalReference": "@genesislcap/grid-tabulator!gridTabulatorShadowOptions:var",
@@ -1469,32 +2610,66 @@
1469
2610
  "extendsTokenRanges": []
1470
2611
  },
1471
2612
  {
1472
- "kind": "Variable",
1473
- "canonicalReference": "@genesislcap/grid-tabulator!tabulatorActionRendererStyles:var",
1474
- "docComment": "/**\n * The Tabulator Action Renderer Styles.\n *\n * @public\n */\n",
2613
+ "kind": "Function",
2614
+ "canonicalReference": "@genesislcap/grid-tabulator!selectFormatter:function(1)",
2615
+ "docComment": "/**\n * Formatter that displays a value from a select list of options Styled to match grid-pro select renderer.\n *\n * @param cell - The cell component provided by Tabulator\n *\n * @param formatterParams - Select formatter parameters\n *\n * @returns Text content for the selected option\n *\n * @public\n */\n",
1475
2616
  "excerptTokens": [
1476
2617
  {
1477
2618
  "kind": "Content",
1478
- "text": "tabulatorActionRendererStyles: "
2619
+ "text": "export declare function selectFormatter(cell: "
1479
2620
  },
1480
2621
  {
1481
2622
  "kind": "Content",
1482
- "text": "import(\"@microsoft/fast-element\")."
2623
+ "text": "any"
2624
+ },
2625
+ {
2626
+ "kind": "Content",
2627
+ "text": ", formatterParams: "
1483
2628
  },
1484
2629
  {
1485
2630
  "kind": "Reference",
1486
- "text": "ElementStyles",
1487
- "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
2631
+ "text": "SelectFormatterParams",
2632
+ "canonicalReference": "@genesislcap/grid-tabulator!SelectFormatterParams:interface"
2633
+ },
2634
+ {
2635
+ "kind": "Content",
2636
+ "text": "): "
2637
+ },
2638
+ {
2639
+ "kind": "Content",
2640
+ "text": "string"
2641
+ },
2642
+ {
2643
+ "kind": "Content",
2644
+ "text": ";"
1488
2645
  }
1489
2646
  ],
1490
- "fileUrlPath": "src/cell-renderers/action.renderer.ts",
1491
- "isReadonly": true,
2647
+ "fileUrlPath": "src/cell-formatters/select.formatter.ts",
2648
+ "returnTypeTokenRange": {
2649
+ "startIndex": 5,
2650
+ "endIndex": 6
2651
+ },
1492
2652
  "releaseTag": "Public",
1493
- "name": "tabulatorActionRendererStyles",
1494
- "variableTypeTokenRange": {
1495
- "startIndex": 1,
1496
- "endIndex": 3
1497
- }
2653
+ "overloadIndex": 1,
2654
+ "parameters": [
2655
+ {
2656
+ "parameterName": "cell",
2657
+ "parameterTypeTokenRange": {
2658
+ "startIndex": 1,
2659
+ "endIndex": 2
2660
+ },
2661
+ "isOptional": false
2662
+ },
2663
+ {
2664
+ "parameterName": "formatterParams",
2665
+ "parameterTypeTokenRange": {
2666
+ "startIndex": 3,
2667
+ "endIndex": 4
2668
+ },
2669
+ "isOptional": false
2670
+ }
2671
+ ],
2672
+ "name": "selectFormatter"
1498
2673
  },
1499
2674
  {
1500
2675
  "kind": "Variable",
@@ -1552,6 +2727,68 @@
1552
2727
  "endIndex": 3
1553
2728
  }
1554
2729
  },
2730
+ {
2731
+ "kind": "Function",
2732
+ "canonicalReference": "@genesislcap/grid-tabulator!textFormatter:function(1)",
2733
+ "docComment": "/**\n * Text formatter for customized display of values. Styled to match grid-pro text renderer.\n *\n * @param cell - The cell component provided by Tabulator\n *\n * @param formatterParams - Text formatter parameters\n *\n * @returns Text content for the cell\n *\n * @public\n */\n",
2734
+ "excerptTokens": [
2735
+ {
2736
+ "kind": "Content",
2737
+ "text": "export declare function textFormatter(cell: "
2738
+ },
2739
+ {
2740
+ "kind": "Content",
2741
+ "text": "any"
2742
+ },
2743
+ {
2744
+ "kind": "Content",
2745
+ "text": ", formatterParams?: "
2746
+ },
2747
+ {
2748
+ "kind": "Reference",
2749
+ "text": "TextFormatterParams",
2750
+ "canonicalReference": "@genesislcap/grid-tabulator!TextFormatterParams:interface"
2751
+ },
2752
+ {
2753
+ "kind": "Content",
2754
+ "text": "): "
2755
+ },
2756
+ {
2757
+ "kind": "Content",
2758
+ "text": "string"
2759
+ },
2760
+ {
2761
+ "kind": "Content",
2762
+ "text": ";"
2763
+ }
2764
+ ],
2765
+ "fileUrlPath": "src/cell-formatters/text.formatter.ts",
2766
+ "returnTypeTokenRange": {
2767
+ "startIndex": 5,
2768
+ "endIndex": 6
2769
+ },
2770
+ "releaseTag": "Public",
2771
+ "overloadIndex": 1,
2772
+ "parameters": [
2773
+ {
2774
+ "parameterName": "cell",
2775
+ "parameterTypeTokenRange": {
2776
+ "startIndex": 1,
2777
+ "endIndex": 2
2778
+ },
2779
+ "isOptional": false
2780
+ },
2781
+ {
2782
+ "parameterName": "formatterParams",
2783
+ "parameterTypeTokenRange": {
2784
+ "startIndex": 3,
2785
+ "endIndex": 4
2786
+ },
2787
+ "isOptional": true
2788
+ }
2789
+ ],
2790
+ "name": "textFormatter"
2791
+ },
1555
2792
  {
1556
2793
  "kind": "Variable",
1557
2794
  "canonicalReference": "@genesislcap/grid-tabulator!themeFontsId:var",