@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
@@ -12,7 +12,7 @@
12
12
  "type": {
13
13
  "text": "object"
14
14
  },
15
- "default": "{\n foundationGridTabulatorActionRenderer,\n // foundationGridProActionsMenuRenderer,\n // foundationAgBooleanRenderer,\n // foundationAgTextRenderer,\n // foundationAgSelectRenderer,\n foundationGridTabulator,\n register(container?: Container, ...rest: any[]) {\n if (!container) {\n // preserve backward compatibility with code that loops through\n // the values of this object and calls them as funcs with no args\n return;\n }\n for (const key in this) {\n if (key === 'register') {\n continue;\n }\n this[key]().register(container, ...rest);\n }\n },\n}",
15
+ "default": "{\n // Cell editors\n foundationDateEditor,\n foundationNumberEditor,\n foundationSelectEditor,\n foundationStringEditor,\n foundationMultiselectEditor,\n\n // Column components\n foundationGridTabulatorColumn,\n foundationGridTabulatorCell,\n\n // Grid component\n foundationGridTabulator,\n\n register(container?: Container, ...rest: any[]) {\n if (!container) {\n // preserve backward compatibility with code that loops through\n // the values of this object and calls them as funcs with no args\n return;\n }\n for (const key in this) {\n if (key === 'register') {\n continue;\n }\n this[key]().register(container, ...rest);\n }\n },\n}",
16
16
  "description": "All `grid-tabulator` components.",
17
17
  "privacy": "public"
18
18
  }
@@ -32,6 +32,51 @@
32
32
  "kind": "javascript-module",
33
33
  "path": "src/grid-tabulator.definitions.ts",
34
34
  "declarations": [
35
+ {
36
+ "kind": "variable",
37
+ "name": "gridTabulatorEventNames",
38
+ "type": {
39
+ "text": "object"
40
+ },
41
+ "default": "{\n error: 'gridTabulator:error',\n datasourceErrorClose: 'gridTabulator:datasourceErrorClose',\n}",
42
+ "description": "Event names for grid-tabulator"
43
+ },
44
+ {
45
+ "kind": "variable",
46
+ "name": "gridTabulatorErrorNames",
47
+ "type": {
48
+ "text": "object"
49
+ },
50
+ "default": "{\n datasource: 'datasource',\n}",
51
+ "description": "Error types for grid-tabulator"
52
+ },
53
+ {
54
+ "kind": "variable",
55
+ "name": "EDITED_COLUMN_FIELD",
56
+ "type": {
57
+ "text": "string"
58
+ },
59
+ "default": "'__EDITED_FIELD__'",
60
+ "description": "The special column field name for marking a cell as edited"
61
+ },
62
+ {
63
+ "kind": "variable",
64
+ "name": "ERROR_COLUMN_FIELD",
65
+ "type": {
66
+ "text": "string"
67
+ },
68
+ "default": "'__ERROR_FIELD__'",
69
+ "description": "The special column field name for marking a cell as having an error"
70
+ },
71
+ {
72
+ "kind": "variable",
73
+ "name": "DEBOUNCED_RESIZE_TIME",
74
+ "type": {
75
+ "text": "number"
76
+ },
77
+ "default": "400",
78
+ "description": "Time in milliseconds to debounce resize events"
79
+ },
35
80
  {
36
81
  "kind": "function",
37
82
  "name": "getFilterByFieldType",
@@ -160,6 +205,46 @@
160
205
  }
161
206
  ],
162
207
  "exports": [
208
+ {
209
+ "kind": "js",
210
+ "name": "gridTabulatorEventNames",
211
+ "declaration": {
212
+ "name": "gridTabulatorEventNames",
213
+ "module": "src/grid-tabulator.definitions.ts"
214
+ }
215
+ },
216
+ {
217
+ "kind": "js",
218
+ "name": "gridTabulatorErrorNames",
219
+ "declaration": {
220
+ "name": "gridTabulatorErrorNames",
221
+ "module": "src/grid-tabulator.definitions.ts"
222
+ }
223
+ },
224
+ {
225
+ "kind": "js",
226
+ "name": "EDITED_COLUMN_FIELD",
227
+ "declaration": {
228
+ "name": "EDITED_COLUMN_FIELD",
229
+ "module": "src/grid-tabulator.definitions.ts"
230
+ }
231
+ },
232
+ {
233
+ "kind": "js",
234
+ "name": "ERROR_COLUMN_FIELD",
235
+ "declaration": {
236
+ "name": "ERROR_COLUMN_FIELD",
237
+ "module": "src/grid-tabulator.definitions.ts"
238
+ }
239
+ },
240
+ {
241
+ "kind": "js",
242
+ "name": "DEBOUNCED_RESIZE_TIME",
243
+ "declaration": {
244
+ "name": "DEBOUNCED_RESIZE_TIME",
245
+ "module": "src/grid-tabulator.definitions.ts"
246
+ }
247
+ },
163
248
  {
164
249
  "kind": "js",
165
250
  "name": "getFilterByFieldType",
@@ -220,7 +305,7 @@
220
305
  "type": {
221
306
  "text": "ElementStyles"
222
307
  },
223
- "default": "css`\n ${tabulatorExternalStockStyles}\n\n :host {\n width: 100%;\n height: 100%;\n }\n\n #grid {\n height: 100%;\n }\n`",
308
+ "default": "css`\n ${tabulatorExternalStockStyles}\n\n :host {\n width: 100%;\n height: 100%;\n }\n\n #grid {\n height: 100%;\n }\n\n /* Row flashing effect */\n @keyframes tabulator-row-flash-animation {\n 0% {\n background-color: rgb(144 238 144 / 70%);\n }\n\n 100% {\n background-color: transparent;\n }\n }\n\n :host .tabulator-row-flash {\n animation: tabulator-row-flash-animation 1s ease-out;\n }\n`",
224
309
  "description": "The styles for the grid-tabulator component",
225
310
  "privacy": "public"
226
311
  }
@@ -339,6 +424,14 @@
339
424
  "text": "string"
340
425
  }
341
426
  },
427
+ {
428
+ "kind": "field",
429
+ "name": "persistFilterModelKey",
430
+ "type": {
431
+ "text": "string"
432
+ },
433
+ "description": "The key to use for persisting the filter model in local browser or KV storage."
434
+ },
342
435
  {
343
436
  "kind": "field",
344
437
  "name": "rowHeight",
@@ -373,6 +466,61 @@
373
466
  }
374
467
  ]
375
468
  },
469
+ {
470
+ "kind": "field",
471
+ "name": "headerCaseType",
472
+ "type": {
473
+ "text": "GridTabulatorCaseType"
474
+ },
475
+ "description": "The case type to use for the header names. If not set, the default CONSTANT_CASE will be used.",
476
+ "privacy": "public"
477
+ },
478
+ {
479
+ "kind": "field",
480
+ "name": "gridAutosizingEnabled",
481
+ "type": {
482
+ "text": "boolean"
483
+ },
484
+ "default": "false",
485
+ "description": "Boolean attribute to control whether the grid autosizes the columns upon interaction.\nThis will disable the column widths from being manually set, and doesn't save the widths\nin local storage if you are using `persist-column-state-key`."
486
+ },
487
+ {
488
+ "kind": "field",
489
+ "name": "enableCellFlashing",
490
+ "type": {
491
+ "text": "boolean"
492
+ },
493
+ "default": "false",
494
+ "description": "If false, will disable cell flashing for all cells by default, unless otherwise defined in custom colDef"
495
+ },
496
+ {
497
+ "kind": "field",
498
+ "name": "enableRowFlashing",
499
+ "type": {
500
+ "text": "boolean"
501
+ },
502
+ "default": "false",
503
+ "description": "If true, will enable row flashing for all rows"
504
+ },
505
+ {
506
+ "kind": "field",
507
+ "name": "showHeaderFilters",
508
+ "type": {
509
+ "text": "boolean"
510
+ },
511
+ "default": "false",
512
+ "description": "If true, will show header filters on columns by default"
513
+ },
514
+ {
515
+ "kind": "field",
516
+ "name": "columnComponentName",
517
+ "type": {
518
+ "text": "string"
519
+ },
520
+ "default": "'grid-tabulator-column'",
521
+ "description": "The column component name used for querying child column elements",
522
+ "privacy": "public"
523
+ },
376
524
  {
377
525
  "kind": "field",
378
526
  "name": "rehydrationAttempted",
@@ -382,6 +530,16 @@
382
530
  "privacy": "private",
383
531
  "default": "false"
384
532
  },
533
+ {
534
+ "kind": "field",
535
+ "name": "gridComponents",
536
+ "type": {
537
+ "text": "{ [componentName: string]: any }"
538
+ },
539
+ "privacy": "private",
540
+ "default": "{\n // Using the new formatter approach, these components are no longer needed\n }",
541
+ "description": "Map of the available cell renderers"
542
+ },
385
543
  {
386
544
  "kind": "field",
387
545
  "name": "gridOptions",
@@ -391,6 +549,82 @@
391
549
  "description": "The current grid options.",
392
550
  "privacy": "public"
393
551
  },
552
+ {
553
+ "kind": "method",
554
+ "name": "registerCellFormatters",
555
+ "privacy": "private",
556
+ "parameters": [
557
+ {
558
+ "name": "customFormatters",
559
+ "type": {
560
+ "text": "any"
561
+ }
562
+ }
563
+ ],
564
+ "description": "Register custom cell formatters in the top-level formatters registry"
565
+ },
566
+ {
567
+ "kind": "method",
568
+ "name": "processColumnFormatters",
569
+ "privacy": "private",
570
+ "parameters": [
571
+ {
572
+ "name": "columns",
573
+ "type": {
574
+ "text": "any[]"
575
+ },
576
+ "description": "Array of column definitions"
577
+ },
578
+ {
579
+ "name": "formatters",
580
+ "type": {
581
+ "text": "any"
582
+ },
583
+ "description": "Available formatter functions"
584
+ }
585
+ ],
586
+ "description": "Process column formatters - convert string formatter names to function references"
587
+ },
588
+ {
589
+ "kind": "method",
590
+ "name": "registerCellEditors",
591
+ "privacy": "private",
592
+ "description": "Register our custom cell editors with Tabulator"
593
+ },
594
+ {
595
+ "kind": "method",
596
+ "name": "formatColumnHeaders",
597
+ "privacy": "private",
598
+ "parameters": [
599
+ {
600
+ "name": "columns",
601
+ "type": {
602
+ "text": "any[]"
603
+ }
604
+ }
605
+ ],
606
+ "description": "Format column headers based on headerCaseType setting"
607
+ },
608
+ {
609
+ "kind": "method",
610
+ "name": "applyCellFlashing",
611
+ "privacy": "private",
612
+ "parameters": [
613
+ {
614
+ "name": "columns",
615
+ "type": {
616
+ "text": "any[]"
617
+ }
618
+ }
619
+ ],
620
+ "description": "Apply cell flashing to columns if enableCellFlashing is true"
621
+ },
622
+ {
623
+ "kind": "method",
624
+ "name": "bindResizeEvents",
625
+ "privacy": "private",
626
+ "description": "Bind events to handle responsive grid resizing"
627
+ },
394
628
  {
395
629
  "kind": "field",
396
630
  "name": "statePersistanceEnabled",
@@ -482,6 +716,24 @@
482
716
  "description": "Download the Grid data as a file of the specified type.",
483
717
  "privacy": "public"
484
718
  },
719
+ {
720
+ "kind": "method",
721
+ "name": "refreshCells",
722
+ "description": "Refresh the grid cells",
723
+ "privacy": "public"
724
+ },
725
+ {
726
+ "kind": "method",
727
+ "name": "clearFilters",
728
+ "description": "Clear all filters",
729
+ "privacy": "public"
730
+ },
731
+ {
732
+ "kind": "method",
733
+ "name": "redraw",
734
+ "description": "Redraw the table",
735
+ "privacy": "public"
736
+ },
485
737
  {
486
738
  "kind": "field",
487
739
  "name": "fontFaceDestroy",
@@ -508,6 +760,43 @@
508
760
  "name": "destroyFontFace",
509
761
  "privacy": "private"
510
762
  },
763
+ {
764
+ "kind": "method",
765
+ "name": "mergeColumnDefsFromTemplate",
766
+ "privacy": "private",
767
+ "return": {
768
+ "type": {
769
+ "text": ""
770
+ }
771
+ },
772
+ "parameters": [
773
+ {
774
+ "name": "options",
775
+ "type": {
776
+ "text": "Options"
777
+ },
778
+ "description": "The Tabulator options object"
779
+ }
780
+ ],
781
+ "description": "Merges columnd definitions from child elements and options"
782
+ },
783
+ {
784
+ "kind": "method",
785
+ "name": "getTemplateColumnDefs",
786
+ "privacy": "private",
787
+ "return": {
788
+ "type": {
789
+ "text": ""
790
+ }
791
+ },
792
+ "description": "Gets column definitions from child column elements"
793
+ },
794
+ {
795
+ "kind": "method",
796
+ "name": "registerFormattersWithTabulator",
797
+ "privacy": "private",
798
+ "description": "Register our formatters with Tabulator's formatter registry, if available"
799
+ },
511
800
  {
512
801
  "kind": "method",
513
802
  "name": "cloneNode",
@@ -728,6 +1017,14 @@
728
1017
  },
729
1018
  "fieldName": "persistColumnStateKey"
730
1019
  },
1020
+ {
1021
+ "name": "persist-filter-model-key",
1022
+ "type": {
1023
+ "text": "string"
1024
+ },
1025
+ "description": "The key to use for persisting the filter model in local browser or KV storage.",
1026
+ "fieldName": "persistFilterModelKey"
1027
+ },
731
1028
  {
732
1029
  "name": "rowHeight",
733
1030
  "type": {
@@ -746,6 +1043,50 @@
746
1043
  },
747
1044
  "default": "'modern'",
748
1045
  "fieldName": "theme"
1046
+ },
1047
+ {
1048
+ "name": "header-case-type",
1049
+ "type": {
1050
+ "text": "GridTabulatorCaseType"
1051
+ },
1052
+ "description": "The case type to use for the header names. If not set, the default CONSTANT_CASE will be used.",
1053
+ "fieldName": "headerCaseType"
1054
+ },
1055
+ {
1056
+ "name": "grid-autosizing",
1057
+ "type": {
1058
+ "text": "boolean"
1059
+ },
1060
+ "default": "false",
1061
+ "description": "Boolean attribute to control whether the grid autosizes the columns upon interaction.\nThis will disable the column widths from being manually set, and doesn't save the widths\nin local storage if you are using `persist-column-state-key`.",
1062
+ "fieldName": "gridAutosizingEnabled"
1063
+ },
1064
+ {
1065
+ "name": "enable-cell-flashing",
1066
+ "type": {
1067
+ "text": "boolean"
1068
+ },
1069
+ "default": "false",
1070
+ "description": "If false, will disable cell flashing for all cells by default, unless otherwise defined in custom colDef",
1071
+ "fieldName": "enableCellFlashing"
1072
+ },
1073
+ {
1074
+ "name": "enable-row-flashing",
1075
+ "type": {
1076
+ "text": "boolean"
1077
+ },
1078
+ "default": "false",
1079
+ "description": "If true, will enable row flashing for all rows",
1080
+ "fieldName": "enableRowFlashing"
1081
+ },
1082
+ {
1083
+ "name": "show-header-filters",
1084
+ "type": {
1085
+ "text": "boolean"
1086
+ },
1087
+ "default": "false",
1088
+ "description": "If true, will show header filters on columns by default",
1089
+ "fieldName": "showHeaderFilters"
749
1090
  }
750
1091
  ],
751
1092
  "mixins": [
@@ -798,18 +1139,18 @@
798
1139
  },
799
1140
  {
800
1141
  "kind": "js",
801
- "name": "Options",
1142
+ "name": "*",
802
1143
  "declaration": {
803
- "name": "Options",
804
- "package": "tabulator-tables"
1144
+ "name": "*",
1145
+ "package": "./column"
805
1146
  }
806
1147
  },
807
1148
  {
808
1149
  "kind": "js",
809
- "name": "FormatterParams",
1150
+ "name": "*",
810
1151
  "declaration": {
811
- "name": "FormatterParams",
812
- "package": "tabulator-tables"
1152
+ "name": "*",
1153
+ "package": "./cell"
813
1154
  }
814
1155
  },
815
1156
  {
@@ -1008,18 +1349,42 @@
1008
1349
  },
1009
1350
  {
1010
1351
  "kind": "js",
1011
- "name": "*",
1352
+ "name": "Options",
1012
1353
  "declaration": {
1013
- "name": "*",
1014
- "package": "./cell"
1354
+ "name": "Options",
1355
+ "module": "./types"
1015
1356
  }
1016
1357
  },
1017
1358
  {
1018
1359
  "kind": "js",
1019
- "name": "*",
1360
+ "name": "ColumnDefinition",
1020
1361
  "declaration": {
1021
- "name": "*",
1022
- "package": "./cell-renderers"
1362
+ "name": "ColumnDefinition",
1363
+ "module": "./types"
1364
+ }
1365
+ },
1366
+ {
1367
+ "kind": "js",
1368
+ "name": "CustomFormatterParams",
1369
+ "declaration": {
1370
+ "name": "FormatterParams",
1371
+ "module": "./types"
1372
+ }
1373
+ },
1374
+ {
1375
+ "kind": "js",
1376
+ "name": "*",
1377
+ "declaration": {
1378
+ "name": "*",
1379
+ "package": "./cell"
1380
+ }
1381
+ },
1382
+ {
1383
+ "kind": "js",
1384
+ "name": "*",
1385
+ "declaration": {
1386
+ "name": "*",
1387
+ "package": "./cell-formatters"
1023
1388
  }
1024
1389
  },
1025
1390
  {
@@ -1058,57 +1423,2046 @@
1058
1423
  },
1059
1424
  {
1060
1425
  "kind": "javascript-module",
1061
- "path": "src/cell/index.ts",
1426
+ "path": "src/types.ts",
1062
1427
  "declarations": [],
1063
1428
  "exports": []
1064
1429
  },
1065
1430
  {
1066
1431
  "kind": "javascript-module",
1067
- "path": "src/cell-renderers/action.renderer.ts",
1432
+ "path": "src/cell/cell.ts",
1068
1433
  "declarations": [
1069
1434
  {
1070
1435
  "kind": "class",
1071
- "description": "The Tabulator Action Renderer element.",
1072
- "name": "ActionRenderer",
1436
+ "description": "The GridTabulator Cell element.",
1437
+ "name": "GridTabulatorCell",
1073
1438
  "members": [
1074
1439
  {
1075
1440
  "kind": "field",
1076
- "name": "params",
1441
+ "name": "renderer",
1442
+ "type": {
1443
+ "text": "CellRendererFunc"
1444
+ },
1445
+ "privacy": "public"
1446
+ },
1447
+ {
1448
+ "kind": "field",
1449
+ "name": "rendererParams",
1450
+ "type": {
1451
+ "text": "CellRendererParams"
1452
+ },
1453
+ "privacy": "public"
1454
+ },
1455
+ {
1456
+ "kind": "field",
1457
+ "name": "slottedRenderer",
1077
1458
  "type": {
1078
- "text": "ActionRendererParams"
1459
+ "text": "HTMLElement[]"
1460
+ },
1461
+ "privacy": "public"
1462
+ },
1463
+ {
1464
+ "kind": "method",
1465
+ "name": "init",
1466
+ "privacy": "public",
1467
+ "parameters": [
1468
+ {
1469
+ "name": "params",
1470
+ "type": {
1471
+ "text": "CellRendererParams"
1472
+ }
1473
+ }
1474
+ ]
1475
+ },
1476
+ {
1477
+ "kind": "method",
1478
+ "name": "getElement",
1479
+ "privacy": "public",
1480
+ "return": {
1481
+ "type": {
1482
+ "text": "HTMLElement"
1483
+ }
1484
+ }
1485
+ },
1486
+ {
1487
+ "kind": "method",
1488
+ "name": "destroy",
1489
+ "privacy": "public"
1490
+ },
1491
+ {
1492
+ "kind": "method",
1493
+ "name": "refresh",
1494
+ "privacy": "public",
1495
+ "return": {
1496
+ "type": {
1497
+ "text": "boolean"
1498
+ }
1079
1499
  },
1500
+ "parameters": [
1501
+ {
1502
+ "name": "params",
1503
+ "type": {
1504
+ "text": "CellRendererParams"
1505
+ }
1506
+ }
1507
+ ]
1508
+ },
1509
+ {
1510
+ "kind": "method",
1511
+ "name": "slottedRendererChanged",
1080
1512
  "privacy": "public"
1081
1513
  },
1082
1514
  {
1083
1515
  "kind": "field",
1084
- "name": "pendingAction",
1085
- "type": {
1086
- "text": "boolean"
1516
+ "name": "_presentation",
1517
+ "type": {
1518
+ "text": "ComponentPresentation | null | undefined"
1519
+ },
1520
+ "privacy": "private",
1521
+ "default": "void 0",
1522
+ "inheritedFrom": {
1523
+ "name": "FoundationElement",
1524
+ "module": "src/foundation-element/foundation-element.ts"
1525
+ }
1526
+ },
1527
+ {
1528
+ "kind": "field",
1529
+ "name": "$presentation",
1530
+ "type": {
1531
+ "text": "ComponentPresentation | null"
1532
+ },
1533
+ "privacy": "public",
1534
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
1535
+ "inheritedFrom": {
1536
+ "name": "FoundationElement",
1537
+ "module": "src/foundation-element/foundation-element.ts"
1538
+ }
1539
+ },
1540
+ {
1541
+ "kind": "field",
1542
+ "name": "template",
1543
+ "type": {
1544
+ "text": "ElementViewTemplate | void | null"
1545
+ },
1546
+ "privacy": "public",
1547
+ "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
1548
+ "inheritedFrom": {
1549
+ "name": "FoundationElement",
1550
+ "module": "src/foundation-element/foundation-element.ts"
1551
+ }
1552
+ },
1553
+ {
1554
+ "kind": "method",
1555
+ "name": "templateChanged",
1556
+ "privacy": "protected",
1557
+ "return": {
1558
+ "type": {
1559
+ "text": "void"
1560
+ }
1561
+ },
1562
+ "inheritedFrom": {
1563
+ "name": "FoundationElement",
1564
+ "module": "src/foundation-element/foundation-element.ts"
1565
+ }
1566
+ },
1567
+ {
1568
+ "kind": "field",
1569
+ "name": "styles",
1570
+ "type": {
1571
+ "text": "ElementStyles | void | null"
1572
+ },
1573
+ "privacy": "public",
1574
+ "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
1575
+ "inheritedFrom": {
1576
+ "name": "FoundationElement",
1577
+ "module": "src/foundation-element/foundation-element.ts"
1578
+ }
1579
+ },
1580
+ {
1581
+ "kind": "method",
1582
+ "name": "stylesChanged",
1583
+ "privacy": "protected",
1584
+ "return": {
1585
+ "type": {
1586
+ "text": "void"
1587
+ }
1588
+ },
1589
+ "inheritedFrom": {
1590
+ "name": "FoundationElement",
1591
+ "module": "src/foundation-element/foundation-element.ts"
1592
+ }
1593
+ },
1594
+ {
1595
+ "kind": "method",
1596
+ "name": "compose",
1597
+ "privacy": "public",
1598
+ "static": true,
1599
+ "return": {
1600
+ "type": {
1601
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
1602
+ }
1603
+ },
1604
+ "parameters": [
1605
+ {
1606
+ "name": "this",
1607
+ "type": {
1608
+ "text": "K"
1609
+ }
1610
+ },
1611
+ {
1612
+ "name": "elementDefinition",
1613
+ "type": {
1614
+ "text": "T"
1615
+ },
1616
+ "description": "The definition of the element to create the registry\nfunction for."
1617
+ }
1618
+ ],
1619
+ "description": "Defines an element registry function with a set of element definition defaults.",
1620
+ "inheritedFrom": {
1621
+ "name": "FoundationElement",
1622
+ "module": "src/foundation-element/foundation-element.ts"
1623
+ }
1624
+ }
1625
+ ],
1626
+ "superclass": {
1627
+ "name": "FoundationElement",
1628
+ "package": "@microsoft/fast-foundation"
1629
+ },
1630
+ "tagName": "grid-tabulator-cell",
1631
+ "customElement": true
1632
+ }
1633
+ ],
1634
+ "exports": [
1635
+ {
1636
+ "kind": "js",
1637
+ "name": "GridTabulatorCell",
1638
+ "declaration": {
1639
+ "name": "GridTabulatorCell",
1640
+ "module": "src/cell/cell.ts"
1641
+ }
1642
+ },
1643
+ {
1644
+ "kind": "custom-element-definition",
1645
+ "name": "grid-tabulator-cell",
1646
+ "declaration": {
1647
+ "name": "GridTabulatorCell",
1648
+ "module": "src/cell/cell.ts"
1649
+ }
1650
+ }
1651
+ ]
1652
+ },
1653
+ {
1654
+ "kind": "javascript-module",
1655
+ "path": "src/cell/index.ts",
1656
+ "declarations": [],
1657
+ "exports": [
1658
+ {
1659
+ "kind": "js",
1660
+ "name": "*",
1661
+ "declaration": {
1662
+ "name": "*",
1663
+ "package": "./cell"
1664
+ }
1665
+ }
1666
+ ]
1667
+ },
1668
+ {
1669
+ "kind": "javascript-module",
1670
+ "path": "src/cell-editors/date.editor.ts",
1671
+ "declarations": [
1672
+ {
1673
+ "kind": "class",
1674
+ "description": "The date editor class for grid-tabulator",
1675
+ "name": "DateEditor",
1676
+ "members": [
1677
+ {
1678
+ "kind": "field",
1679
+ "name": "params",
1680
+ "type": {
1681
+ "text": "DateEditorParams"
1682
+ }
1683
+ },
1684
+ {
1685
+ "kind": "field",
1686
+ "name": "dateField",
1687
+ "type": {
1688
+ "text": "any"
1689
+ }
1690
+ },
1691
+ {
1692
+ "kind": "method",
1693
+ "name": "init",
1694
+ "parameters": [
1695
+ {
1696
+ "name": "params",
1697
+ "type": {
1698
+ "text": "DateEditorParams"
1699
+ }
1700
+ }
1701
+ ],
1702
+ "description": "Initialize the editor with parameters"
1703
+ },
1704
+ {
1705
+ "kind": "method",
1706
+ "name": "getValue",
1707
+ "description": "Get current value"
1708
+ },
1709
+ {
1710
+ "kind": "method",
1711
+ "name": "getFormattedValue",
1712
+ "description": "Format value for display"
1713
+ },
1714
+ {
1715
+ "kind": "method",
1716
+ "name": "focus",
1717
+ "description": "Set focus to the input"
1718
+ },
1719
+ {
1720
+ "kind": "method",
1721
+ "name": "handleKeyDown",
1722
+ "parameters": [
1723
+ {
1724
+ "name": "event",
1725
+ "type": {
1726
+ "text": "KeyboardEvent"
1727
+ }
1728
+ }
1729
+ ],
1730
+ "description": "Process key down events"
1731
+ },
1732
+ {
1733
+ "kind": "field",
1734
+ "name": "_presentation",
1735
+ "type": {
1736
+ "text": "ComponentPresentation | null | undefined"
1737
+ },
1738
+ "privacy": "private",
1739
+ "default": "void 0",
1740
+ "inheritedFrom": {
1741
+ "name": "FoundationElement",
1742
+ "module": "src/foundation-element/foundation-element.ts"
1743
+ }
1744
+ },
1745
+ {
1746
+ "kind": "field",
1747
+ "name": "$presentation",
1748
+ "type": {
1749
+ "text": "ComponentPresentation | null"
1750
+ },
1751
+ "privacy": "public",
1752
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
1753
+ "inheritedFrom": {
1754
+ "name": "FoundationElement",
1755
+ "module": "src/foundation-element/foundation-element.ts"
1756
+ }
1757
+ },
1758
+ {
1759
+ "kind": "field",
1760
+ "name": "template",
1761
+ "type": {
1762
+ "text": "ElementViewTemplate | void | null"
1763
+ },
1764
+ "privacy": "public",
1765
+ "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
1766
+ "inheritedFrom": {
1767
+ "name": "FoundationElement",
1768
+ "module": "src/foundation-element/foundation-element.ts"
1769
+ }
1770
+ },
1771
+ {
1772
+ "kind": "method",
1773
+ "name": "templateChanged",
1774
+ "privacy": "protected",
1775
+ "return": {
1776
+ "type": {
1777
+ "text": "void"
1778
+ }
1779
+ },
1780
+ "inheritedFrom": {
1781
+ "name": "FoundationElement",
1782
+ "module": "src/foundation-element/foundation-element.ts"
1783
+ }
1784
+ },
1785
+ {
1786
+ "kind": "field",
1787
+ "name": "styles",
1788
+ "type": {
1789
+ "text": "ElementStyles | void | null"
1790
+ },
1791
+ "privacy": "public",
1792
+ "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
1793
+ "inheritedFrom": {
1794
+ "name": "FoundationElement",
1795
+ "module": "src/foundation-element/foundation-element.ts"
1796
+ }
1797
+ },
1798
+ {
1799
+ "kind": "method",
1800
+ "name": "stylesChanged",
1801
+ "privacy": "protected",
1802
+ "return": {
1803
+ "type": {
1804
+ "text": "void"
1805
+ }
1806
+ },
1807
+ "inheritedFrom": {
1808
+ "name": "FoundationElement",
1809
+ "module": "src/foundation-element/foundation-element.ts"
1810
+ }
1811
+ },
1812
+ {
1813
+ "kind": "method",
1814
+ "name": "compose",
1815
+ "privacy": "public",
1816
+ "static": true,
1817
+ "return": {
1818
+ "type": {
1819
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
1820
+ }
1821
+ },
1822
+ "parameters": [
1823
+ {
1824
+ "name": "this",
1825
+ "type": {
1826
+ "text": "K"
1827
+ }
1828
+ },
1829
+ {
1830
+ "name": "elementDefinition",
1831
+ "type": {
1832
+ "text": "T"
1833
+ },
1834
+ "description": "The definition of the element to create the registry\nfunction for."
1835
+ }
1836
+ ],
1837
+ "description": "Defines an element registry function with a set of element definition defaults.",
1838
+ "inheritedFrom": {
1839
+ "name": "FoundationElement",
1840
+ "module": "src/foundation-element/foundation-element.ts"
1841
+ }
1842
+ }
1843
+ ],
1844
+ "superclass": {
1845
+ "name": "FoundationElement",
1846
+ "package": "@microsoft/fast-foundation"
1847
+ }
1848
+ },
1849
+ {
1850
+ "kind": "variable",
1851
+ "name": "dateEditorStyles",
1852
+ "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
1853
+ "description": "Styles for the date editor"
1854
+ },
1855
+ {
1856
+ "kind": "function",
1857
+ "name": "getDateEditorTemplate",
1858
+ "parameters": [
1859
+ {
1860
+ "name": "prefix",
1861
+ "default": "'foundation'",
1862
+ "description": "The design system prefix to use. Defaults to 'foundation'."
1863
+ }
1864
+ ],
1865
+ "description": "Get a Design System prefixed date field template.",
1866
+ "return": {
1867
+ "type": {
1868
+ "text": ""
1869
+ }
1870
+ },
1871
+ "privacy": "public"
1872
+ },
1873
+ {
1874
+ "kind": "variable",
1875
+ "name": "foundationDateEditor",
1876
+ "description": "Definition for the date editor component"
1877
+ }
1878
+ ],
1879
+ "exports": [
1880
+ {
1881
+ "kind": "js",
1882
+ "name": "DateEditor",
1883
+ "declaration": {
1884
+ "name": "DateEditor",
1885
+ "module": "src/cell-editors/date.editor.ts"
1886
+ }
1887
+ },
1888
+ {
1889
+ "kind": "js",
1890
+ "name": "dateEditorStyles",
1891
+ "declaration": {
1892
+ "name": "dateEditorStyles",
1893
+ "module": "src/cell-editors/date.editor.ts"
1894
+ }
1895
+ },
1896
+ {
1897
+ "kind": "js",
1898
+ "name": "getDateEditorTemplate",
1899
+ "declaration": {
1900
+ "name": "getDateEditorTemplate",
1901
+ "module": "src/cell-editors/date.editor.ts"
1902
+ }
1903
+ },
1904
+ {
1905
+ "kind": "js",
1906
+ "name": "foundationDateEditor",
1907
+ "declaration": {
1908
+ "name": "foundationDateEditor",
1909
+ "module": "src/cell-editors/date.editor.ts"
1910
+ }
1911
+ }
1912
+ ]
1913
+ },
1914
+ {
1915
+ "kind": "javascript-module",
1916
+ "path": "src/cell-editors/index.ts",
1917
+ "declarations": [],
1918
+ "exports": [
1919
+ {
1920
+ "kind": "js",
1921
+ "name": "*",
1922
+ "declaration": {
1923
+ "name": "*",
1924
+ "package": "./date.editor"
1925
+ }
1926
+ },
1927
+ {
1928
+ "kind": "js",
1929
+ "name": "*",
1930
+ "declaration": {
1931
+ "name": "*",
1932
+ "package": "./number.editor"
1933
+ }
1934
+ },
1935
+ {
1936
+ "kind": "js",
1937
+ "name": "*",
1938
+ "declaration": {
1939
+ "name": "*",
1940
+ "package": "./select.editor"
1941
+ }
1942
+ },
1943
+ {
1944
+ "kind": "js",
1945
+ "name": "*",
1946
+ "declaration": {
1947
+ "name": "*",
1948
+ "package": "./string.editor"
1949
+ }
1950
+ },
1951
+ {
1952
+ "kind": "js",
1953
+ "name": "*",
1954
+ "declaration": {
1955
+ "name": "*",
1956
+ "package": "./multiselect.editor"
1957
+ }
1958
+ }
1959
+ ]
1960
+ },
1961
+ {
1962
+ "kind": "javascript-module",
1963
+ "path": "src/cell-editors/multiselect.editor.ts",
1964
+ "declarations": [
1965
+ {
1966
+ "kind": "class",
1967
+ "description": "The multiselect editor class for grid-tabulator",
1968
+ "name": "MultiselectEditor",
1969
+ "members": [
1970
+ {
1971
+ "kind": "field",
1972
+ "name": "params",
1973
+ "type": {
1974
+ "text": "MultiselectEditorParams"
1975
+ }
1976
+ },
1977
+ {
1978
+ "kind": "field",
1979
+ "name": "select",
1980
+ "type": {
1981
+ "text": "any"
1982
+ }
1983
+ },
1984
+ {
1985
+ "kind": "method",
1986
+ "name": "init",
1987
+ "parameters": [
1988
+ {
1989
+ "name": "params",
1990
+ "type": {
1991
+ "text": "MultiselectEditorParams"
1992
+ }
1993
+ }
1994
+ ],
1995
+ "description": "Initialize the editor with parameters"
1996
+ },
1997
+ {
1998
+ "kind": "method",
1999
+ "name": "getValues",
2000
+ "return": {
2001
+ "type": {
2002
+ "text": "(string | number)[]"
2003
+ }
2004
+ },
2005
+ "description": "Get current values"
2006
+ },
2007
+ {
2008
+ "kind": "method",
2009
+ "name": "focus",
2010
+ "description": "Set focus to the select"
2011
+ },
2012
+ {
2013
+ "kind": "method",
2014
+ "name": "isSelected",
2015
+ "return": {
2016
+ "type": {
2017
+ "text": "boolean"
2018
+ }
2019
+ },
2020
+ "parameters": [
2021
+ {
2022
+ "name": "value",
2023
+ "type": {
2024
+ "text": "string | number"
2025
+ }
2026
+ }
2027
+ ],
2028
+ "description": "Check if a value is selected"
2029
+ },
2030
+ {
2031
+ "kind": "method",
2032
+ "name": "handleKeyDown",
2033
+ "parameters": [
2034
+ {
2035
+ "name": "event",
2036
+ "type": {
2037
+ "text": "KeyboardEvent"
2038
+ }
2039
+ }
2040
+ ],
2041
+ "description": "Process key down events"
2042
+ },
2043
+ {
2044
+ "kind": "method",
2045
+ "name": "handleChange",
2046
+ "description": "Handle change event to save when selection changes"
2047
+ },
2048
+ {
2049
+ "kind": "field",
2050
+ "name": "_presentation",
2051
+ "type": {
2052
+ "text": "ComponentPresentation | null | undefined"
2053
+ },
2054
+ "privacy": "private",
2055
+ "default": "void 0",
2056
+ "inheritedFrom": {
2057
+ "name": "FoundationElement",
2058
+ "module": "src/foundation-element/foundation-element.ts"
2059
+ }
2060
+ },
2061
+ {
2062
+ "kind": "field",
2063
+ "name": "$presentation",
2064
+ "type": {
2065
+ "text": "ComponentPresentation | null"
2066
+ },
2067
+ "privacy": "public",
2068
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
2069
+ "inheritedFrom": {
2070
+ "name": "FoundationElement",
2071
+ "module": "src/foundation-element/foundation-element.ts"
2072
+ }
2073
+ },
2074
+ {
2075
+ "kind": "field",
2076
+ "name": "template",
2077
+ "type": {
2078
+ "text": "ElementViewTemplate | void | null"
2079
+ },
2080
+ "privacy": "public",
2081
+ "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
2082
+ "inheritedFrom": {
2083
+ "name": "FoundationElement",
2084
+ "module": "src/foundation-element/foundation-element.ts"
2085
+ }
2086
+ },
2087
+ {
2088
+ "kind": "method",
2089
+ "name": "templateChanged",
2090
+ "privacy": "protected",
2091
+ "return": {
2092
+ "type": {
2093
+ "text": "void"
2094
+ }
2095
+ },
2096
+ "inheritedFrom": {
2097
+ "name": "FoundationElement",
2098
+ "module": "src/foundation-element/foundation-element.ts"
2099
+ }
2100
+ },
2101
+ {
2102
+ "kind": "field",
2103
+ "name": "styles",
2104
+ "type": {
2105
+ "text": "ElementStyles | void | null"
2106
+ },
2107
+ "privacy": "public",
2108
+ "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
2109
+ "inheritedFrom": {
2110
+ "name": "FoundationElement",
2111
+ "module": "src/foundation-element/foundation-element.ts"
2112
+ }
2113
+ },
2114
+ {
2115
+ "kind": "method",
2116
+ "name": "stylesChanged",
2117
+ "privacy": "protected",
2118
+ "return": {
2119
+ "type": {
2120
+ "text": "void"
2121
+ }
2122
+ },
2123
+ "inheritedFrom": {
2124
+ "name": "FoundationElement",
2125
+ "module": "src/foundation-element/foundation-element.ts"
2126
+ }
2127
+ },
2128
+ {
2129
+ "kind": "method",
2130
+ "name": "compose",
2131
+ "privacy": "public",
2132
+ "static": true,
2133
+ "return": {
2134
+ "type": {
2135
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
2136
+ }
2137
+ },
2138
+ "parameters": [
2139
+ {
2140
+ "name": "this",
2141
+ "type": {
2142
+ "text": "K"
2143
+ }
2144
+ },
2145
+ {
2146
+ "name": "elementDefinition",
2147
+ "type": {
2148
+ "text": "T"
2149
+ },
2150
+ "description": "The definition of the element to create the registry\nfunction for."
2151
+ }
2152
+ ],
2153
+ "description": "Defines an element registry function with a set of element definition defaults.",
2154
+ "inheritedFrom": {
2155
+ "name": "FoundationElement",
2156
+ "module": "src/foundation-element/foundation-element.ts"
2157
+ }
2158
+ }
2159
+ ],
2160
+ "superclass": {
2161
+ "name": "FoundationElement",
2162
+ "package": "@microsoft/fast-foundation"
2163
+ }
2164
+ },
2165
+ {
2166
+ "kind": "variable",
2167
+ "name": "multiselectEditorStyles",
2168
+ "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
2169
+ "description": "Styles for the multiselect editor"
2170
+ },
2171
+ {
2172
+ "kind": "function",
2173
+ "name": "getMultiselectEditorTemplate",
2174
+ "parameters": [
2175
+ {
2176
+ "name": "prefix",
2177
+ "default": "'foundation'",
2178
+ "description": "The design system prefix to use. Defaults to 'foundation'."
2179
+ }
2180
+ ],
2181
+ "description": "Get a Design System prefixed Select template.",
2182
+ "return": {
2183
+ "type": {
2184
+ "text": ""
2185
+ }
2186
+ }
2187
+ },
2188
+ {
2189
+ "kind": "variable",
2190
+ "name": "foundationMultiselectEditor",
2191
+ "description": "Definition for the multiselect editor component"
2192
+ }
2193
+ ],
2194
+ "exports": [
2195
+ {
2196
+ "kind": "js",
2197
+ "name": "MultiselectEditor",
2198
+ "declaration": {
2199
+ "name": "MultiselectEditor",
2200
+ "module": "src/cell-editors/multiselect.editor.ts"
2201
+ }
2202
+ },
2203
+ {
2204
+ "kind": "js",
2205
+ "name": "multiselectEditorStyles",
2206
+ "declaration": {
2207
+ "name": "multiselectEditorStyles",
2208
+ "module": "src/cell-editors/multiselect.editor.ts"
2209
+ }
2210
+ },
2211
+ {
2212
+ "kind": "js",
2213
+ "name": "getMultiselectEditorTemplate",
2214
+ "declaration": {
2215
+ "name": "getMultiselectEditorTemplate",
2216
+ "module": "src/cell-editors/multiselect.editor.ts"
2217
+ }
2218
+ },
2219
+ {
2220
+ "kind": "js",
2221
+ "name": "foundationMultiselectEditor",
2222
+ "declaration": {
2223
+ "name": "foundationMultiselectEditor",
2224
+ "module": "src/cell-editors/multiselect.editor.ts"
2225
+ }
2226
+ }
2227
+ ]
2228
+ },
2229
+ {
2230
+ "kind": "javascript-module",
2231
+ "path": "src/cell-editors/number.editor.ts",
2232
+ "declarations": [
2233
+ {
2234
+ "kind": "class",
2235
+ "description": "The number editor class for grid-tabulator",
2236
+ "name": "NumberEditor",
2237
+ "members": [
2238
+ {
2239
+ "kind": "field",
2240
+ "name": "params",
2241
+ "type": {
2242
+ "text": "NumberEditorParams"
2243
+ }
2244
+ },
2245
+ {
2246
+ "kind": "field",
2247
+ "name": "numberField",
2248
+ "type": {
2249
+ "text": "any"
2250
+ }
2251
+ },
2252
+ {
2253
+ "kind": "method",
2254
+ "name": "init",
2255
+ "parameters": [
2256
+ {
2257
+ "name": "params",
2258
+ "type": {
2259
+ "text": "NumberEditorParams"
2260
+ }
2261
+ }
2262
+ ],
2263
+ "description": "Initialize the editor with parameters"
2264
+ },
2265
+ {
2266
+ "kind": "method",
2267
+ "name": "getValue",
2268
+ "description": "Get current value"
2269
+ },
2270
+ {
2271
+ "kind": "method",
2272
+ "name": "focus",
2273
+ "description": "Set focus to the input"
2274
+ },
2275
+ {
2276
+ "kind": "method",
2277
+ "name": "handleKeyDown",
2278
+ "parameters": [
2279
+ {
2280
+ "name": "event",
2281
+ "type": {
2282
+ "text": "KeyboardEvent"
2283
+ }
2284
+ }
2285
+ ],
2286
+ "description": "Process key down events"
2287
+ },
2288
+ {
2289
+ "kind": "field",
2290
+ "name": "_presentation",
2291
+ "type": {
2292
+ "text": "ComponentPresentation | null | undefined"
2293
+ },
2294
+ "privacy": "private",
2295
+ "default": "void 0",
2296
+ "inheritedFrom": {
2297
+ "name": "FoundationElement",
2298
+ "module": "src/foundation-element/foundation-element.ts"
2299
+ }
2300
+ },
2301
+ {
2302
+ "kind": "field",
2303
+ "name": "$presentation",
2304
+ "type": {
2305
+ "text": "ComponentPresentation | null"
2306
+ },
2307
+ "privacy": "public",
2308
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
2309
+ "inheritedFrom": {
2310
+ "name": "FoundationElement",
2311
+ "module": "src/foundation-element/foundation-element.ts"
2312
+ }
2313
+ },
2314
+ {
2315
+ "kind": "field",
2316
+ "name": "template",
2317
+ "type": {
2318
+ "text": "ElementViewTemplate | void | null"
2319
+ },
2320
+ "privacy": "public",
2321
+ "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
2322
+ "inheritedFrom": {
2323
+ "name": "FoundationElement",
2324
+ "module": "src/foundation-element/foundation-element.ts"
2325
+ }
2326
+ },
2327
+ {
2328
+ "kind": "method",
2329
+ "name": "templateChanged",
2330
+ "privacy": "protected",
2331
+ "return": {
2332
+ "type": {
2333
+ "text": "void"
2334
+ }
2335
+ },
2336
+ "inheritedFrom": {
2337
+ "name": "FoundationElement",
2338
+ "module": "src/foundation-element/foundation-element.ts"
2339
+ }
2340
+ },
2341
+ {
2342
+ "kind": "field",
2343
+ "name": "styles",
2344
+ "type": {
2345
+ "text": "ElementStyles | void | null"
2346
+ },
2347
+ "privacy": "public",
2348
+ "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
2349
+ "inheritedFrom": {
2350
+ "name": "FoundationElement",
2351
+ "module": "src/foundation-element/foundation-element.ts"
2352
+ }
2353
+ },
2354
+ {
2355
+ "kind": "method",
2356
+ "name": "stylesChanged",
2357
+ "privacy": "protected",
2358
+ "return": {
2359
+ "type": {
2360
+ "text": "void"
2361
+ }
2362
+ },
2363
+ "inheritedFrom": {
2364
+ "name": "FoundationElement",
2365
+ "module": "src/foundation-element/foundation-element.ts"
2366
+ }
2367
+ },
2368
+ {
2369
+ "kind": "method",
2370
+ "name": "compose",
2371
+ "privacy": "public",
2372
+ "static": true,
2373
+ "return": {
2374
+ "type": {
2375
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
2376
+ }
2377
+ },
2378
+ "parameters": [
2379
+ {
2380
+ "name": "this",
2381
+ "type": {
2382
+ "text": "K"
2383
+ }
2384
+ },
2385
+ {
2386
+ "name": "elementDefinition",
2387
+ "type": {
2388
+ "text": "T"
2389
+ },
2390
+ "description": "The definition of the element to create the registry\nfunction for."
2391
+ }
2392
+ ],
2393
+ "description": "Defines an element registry function with a set of element definition defaults.",
2394
+ "inheritedFrom": {
2395
+ "name": "FoundationElement",
2396
+ "module": "src/foundation-element/foundation-element.ts"
2397
+ }
2398
+ }
2399
+ ],
2400
+ "superclass": {
2401
+ "name": "FoundationElement",
2402
+ "package": "@microsoft/fast-foundation"
2403
+ }
2404
+ },
2405
+ {
2406
+ "kind": "variable",
2407
+ "name": "numberEditorStyles",
2408
+ "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
2409
+ "description": "Styles for the number editor"
2410
+ },
2411
+ {
2412
+ "kind": "function",
2413
+ "name": "getNumberEditorTemplate",
2414
+ "parameters": [
2415
+ {
2416
+ "name": "prefix",
2417
+ "default": "'foundation'",
2418
+ "description": "The design system prefix to use. Defaults to 'foundation'."
2419
+ }
2420
+ ],
2421
+ "description": "Get a Design System prefixed number field template.",
2422
+ "return": {
2423
+ "type": {
2424
+ "text": ""
2425
+ }
2426
+ }
2427
+ },
2428
+ {
2429
+ "kind": "variable",
2430
+ "name": "foundationNumberEditor",
2431
+ "description": "Definition for the number editor component"
2432
+ }
2433
+ ],
2434
+ "exports": [
2435
+ {
2436
+ "kind": "js",
2437
+ "name": "NumberEditor",
2438
+ "declaration": {
2439
+ "name": "NumberEditor",
2440
+ "module": "src/cell-editors/number.editor.ts"
2441
+ }
2442
+ },
2443
+ {
2444
+ "kind": "js",
2445
+ "name": "numberEditorStyles",
2446
+ "declaration": {
2447
+ "name": "numberEditorStyles",
2448
+ "module": "src/cell-editors/number.editor.ts"
2449
+ }
2450
+ },
2451
+ {
2452
+ "kind": "js",
2453
+ "name": "getNumberEditorTemplate",
2454
+ "declaration": {
2455
+ "name": "getNumberEditorTemplate",
2456
+ "module": "src/cell-editors/number.editor.ts"
2457
+ }
2458
+ },
2459
+ {
2460
+ "kind": "js",
2461
+ "name": "foundationNumberEditor",
2462
+ "declaration": {
2463
+ "name": "foundationNumberEditor",
2464
+ "module": "src/cell-editors/number.editor.ts"
2465
+ }
2466
+ }
2467
+ ]
2468
+ },
2469
+ {
2470
+ "kind": "javascript-module",
2471
+ "path": "src/cell-editors/select.editor.ts",
2472
+ "declarations": [
2473
+ {
2474
+ "kind": "class",
2475
+ "description": "The select editor class for grid-tabulator",
2476
+ "name": "SelectEditor",
2477
+ "members": [
2478
+ {
2479
+ "kind": "field",
2480
+ "name": "params",
2481
+ "type": {
2482
+ "text": "SelectEditorParams"
2483
+ }
2484
+ },
2485
+ {
2486
+ "kind": "field",
2487
+ "name": "select",
2488
+ "type": {
2489
+ "text": "any"
2490
+ }
2491
+ },
2492
+ {
2493
+ "kind": "method",
2494
+ "name": "init",
2495
+ "parameters": [
2496
+ {
2497
+ "name": "params",
2498
+ "type": {
2499
+ "text": "SelectEditorParams"
2500
+ }
2501
+ }
2502
+ ],
2503
+ "description": "Initialize the editor with parameters"
2504
+ },
2505
+ {
2506
+ "kind": "method",
2507
+ "name": "getValue",
2508
+ "description": "Get current value"
2509
+ },
2510
+ {
2511
+ "kind": "method",
2512
+ "name": "focus",
2513
+ "description": "Set focus to the select"
2514
+ },
2515
+ {
2516
+ "kind": "method",
2517
+ "name": "handleKeyDown",
2518
+ "parameters": [
2519
+ {
2520
+ "name": "event",
2521
+ "type": {
2522
+ "text": "KeyboardEvent"
2523
+ }
2524
+ }
2525
+ ],
2526
+ "description": "Process key down events"
2527
+ },
2528
+ {
2529
+ "kind": "method",
2530
+ "name": "handleChange",
2531
+ "description": "Handle change event"
2532
+ },
2533
+ {
2534
+ "kind": "field",
2535
+ "name": "_presentation",
2536
+ "type": {
2537
+ "text": "ComponentPresentation | null | undefined"
2538
+ },
2539
+ "privacy": "private",
2540
+ "default": "void 0",
2541
+ "inheritedFrom": {
2542
+ "name": "FoundationElement",
2543
+ "module": "src/foundation-element/foundation-element.ts"
2544
+ }
2545
+ },
2546
+ {
2547
+ "kind": "field",
2548
+ "name": "$presentation",
2549
+ "type": {
2550
+ "text": "ComponentPresentation | null"
2551
+ },
2552
+ "privacy": "public",
2553
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
2554
+ "inheritedFrom": {
2555
+ "name": "FoundationElement",
2556
+ "module": "src/foundation-element/foundation-element.ts"
2557
+ }
2558
+ },
2559
+ {
2560
+ "kind": "field",
2561
+ "name": "template",
2562
+ "type": {
2563
+ "text": "ElementViewTemplate | void | null"
2564
+ },
2565
+ "privacy": "public",
2566
+ "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
2567
+ "inheritedFrom": {
2568
+ "name": "FoundationElement",
2569
+ "module": "src/foundation-element/foundation-element.ts"
2570
+ }
2571
+ },
2572
+ {
2573
+ "kind": "method",
2574
+ "name": "templateChanged",
2575
+ "privacy": "protected",
2576
+ "return": {
2577
+ "type": {
2578
+ "text": "void"
2579
+ }
2580
+ },
2581
+ "inheritedFrom": {
2582
+ "name": "FoundationElement",
2583
+ "module": "src/foundation-element/foundation-element.ts"
2584
+ }
2585
+ },
2586
+ {
2587
+ "kind": "field",
2588
+ "name": "styles",
2589
+ "type": {
2590
+ "text": "ElementStyles | void | null"
2591
+ },
2592
+ "privacy": "public",
2593
+ "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
2594
+ "inheritedFrom": {
2595
+ "name": "FoundationElement",
2596
+ "module": "src/foundation-element/foundation-element.ts"
2597
+ }
2598
+ },
2599
+ {
2600
+ "kind": "method",
2601
+ "name": "stylesChanged",
2602
+ "privacy": "protected",
2603
+ "return": {
2604
+ "type": {
2605
+ "text": "void"
2606
+ }
2607
+ },
2608
+ "inheritedFrom": {
2609
+ "name": "FoundationElement",
2610
+ "module": "src/foundation-element/foundation-element.ts"
2611
+ }
2612
+ },
2613
+ {
2614
+ "kind": "method",
2615
+ "name": "compose",
2616
+ "privacy": "public",
2617
+ "static": true,
2618
+ "return": {
2619
+ "type": {
2620
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
2621
+ }
2622
+ },
2623
+ "parameters": [
2624
+ {
2625
+ "name": "this",
2626
+ "type": {
2627
+ "text": "K"
2628
+ }
2629
+ },
2630
+ {
2631
+ "name": "elementDefinition",
2632
+ "type": {
2633
+ "text": "T"
2634
+ },
2635
+ "description": "The definition of the element to create the registry\nfunction for."
2636
+ }
2637
+ ],
2638
+ "description": "Defines an element registry function with a set of element definition defaults.",
2639
+ "inheritedFrom": {
2640
+ "name": "FoundationElement",
2641
+ "module": "src/foundation-element/foundation-element.ts"
2642
+ }
2643
+ }
2644
+ ],
2645
+ "superclass": {
2646
+ "name": "FoundationElement",
2647
+ "package": "@microsoft/fast-foundation"
2648
+ }
2649
+ },
2650
+ {
2651
+ "kind": "variable",
2652
+ "name": "selectEditorStyles",
2653
+ "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
2654
+ "description": "Styles for the select editor"
2655
+ },
2656
+ {
2657
+ "kind": "function",
2658
+ "name": "getSelectEditorTemplate",
2659
+ "parameters": [
2660
+ {
2661
+ "name": "prefix",
2662
+ "default": "'foundation'",
2663
+ "description": "The design system prefix to use. Defaults to 'foundation'."
2664
+ }
2665
+ ],
2666
+ "description": "Get a Design System prefixed Select template.",
2667
+ "return": {
2668
+ "type": {
2669
+ "text": ""
2670
+ }
2671
+ },
2672
+ "privacy": "public"
2673
+ },
2674
+ {
2675
+ "kind": "variable",
2676
+ "name": "foundationSelectEditor",
2677
+ "description": "Definition for the select editor component"
2678
+ }
2679
+ ],
2680
+ "exports": [
2681
+ {
2682
+ "kind": "js",
2683
+ "name": "SelectEditor",
2684
+ "declaration": {
2685
+ "name": "SelectEditor",
2686
+ "module": "src/cell-editors/select.editor.ts"
2687
+ }
2688
+ },
2689
+ {
2690
+ "kind": "js",
2691
+ "name": "selectEditorStyles",
2692
+ "declaration": {
2693
+ "name": "selectEditorStyles",
2694
+ "module": "src/cell-editors/select.editor.ts"
2695
+ }
2696
+ },
2697
+ {
2698
+ "kind": "js",
2699
+ "name": "getSelectEditorTemplate",
2700
+ "declaration": {
2701
+ "name": "getSelectEditorTemplate",
2702
+ "module": "src/cell-editors/select.editor.ts"
2703
+ }
2704
+ },
2705
+ {
2706
+ "kind": "js",
2707
+ "name": "foundationSelectEditor",
2708
+ "declaration": {
2709
+ "name": "foundationSelectEditor",
2710
+ "module": "src/cell-editors/select.editor.ts"
2711
+ }
2712
+ }
2713
+ ]
2714
+ },
2715
+ {
2716
+ "kind": "javascript-module",
2717
+ "path": "src/cell-editors/string.editor.ts",
2718
+ "declarations": [
2719
+ {
2720
+ "kind": "class",
2721
+ "description": "The string editor class for grid-tabulator",
2722
+ "name": "StringEditor",
2723
+ "members": [
2724
+ {
2725
+ "kind": "field",
2726
+ "name": "params",
2727
+ "type": {
2728
+ "text": "StringEditorParams"
2729
+ }
2730
+ },
2731
+ {
2732
+ "kind": "field",
2733
+ "name": "textField",
2734
+ "type": {
2735
+ "text": "any"
2736
+ }
2737
+ },
2738
+ {
2739
+ "kind": "method",
2740
+ "name": "init",
2741
+ "parameters": [
2742
+ {
2743
+ "name": "params",
2744
+ "type": {
2745
+ "text": "StringEditorParams"
2746
+ }
2747
+ }
2748
+ ],
2749
+ "description": "Initialize the editor with parameters"
2750
+ },
2751
+ {
2752
+ "kind": "method",
2753
+ "name": "getValue",
2754
+ "description": "Get current value"
2755
+ },
2756
+ {
2757
+ "kind": "method",
2758
+ "name": "focus",
2759
+ "description": "Set focus to the input"
2760
+ },
2761
+ {
2762
+ "kind": "method",
2763
+ "name": "handleKeyDown",
2764
+ "parameters": [
2765
+ {
2766
+ "name": "event",
2767
+ "type": {
2768
+ "text": "KeyboardEvent"
2769
+ }
2770
+ }
2771
+ ],
2772
+ "description": "Process key down events"
2773
+ },
2774
+ {
2775
+ "kind": "field",
2776
+ "name": "_presentation",
2777
+ "type": {
2778
+ "text": "ComponentPresentation | null | undefined"
2779
+ },
2780
+ "privacy": "private",
2781
+ "default": "void 0",
2782
+ "inheritedFrom": {
2783
+ "name": "FoundationElement",
2784
+ "module": "src/foundation-element/foundation-element.ts"
2785
+ }
2786
+ },
2787
+ {
2788
+ "kind": "field",
2789
+ "name": "$presentation",
2790
+ "type": {
2791
+ "text": "ComponentPresentation | null"
2792
+ },
2793
+ "privacy": "public",
2794
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
2795
+ "inheritedFrom": {
2796
+ "name": "FoundationElement",
2797
+ "module": "src/foundation-element/foundation-element.ts"
2798
+ }
2799
+ },
2800
+ {
2801
+ "kind": "field",
2802
+ "name": "template",
2803
+ "type": {
2804
+ "text": "ElementViewTemplate | void | null"
2805
+ },
2806
+ "privacy": "public",
2807
+ "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
2808
+ "inheritedFrom": {
2809
+ "name": "FoundationElement",
2810
+ "module": "src/foundation-element/foundation-element.ts"
2811
+ }
2812
+ },
2813
+ {
2814
+ "kind": "method",
2815
+ "name": "templateChanged",
2816
+ "privacy": "protected",
2817
+ "return": {
2818
+ "type": {
2819
+ "text": "void"
2820
+ }
2821
+ },
2822
+ "inheritedFrom": {
2823
+ "name": "FoundationElement",
2824
+ "module": "src/foundation-element/foundation-element.ts"
2825
+ }
2826
+ },
2827
+ {
2828
+ "kind": "field",
2829
+ "name": "styles",
2830
+ "type": {
2831
+ "text": "ElementStyles | void | null"
2832
+ },
2833
+ "privacy": "public",
2834
+ "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
2835
+ "inheritedFrom": {
2836
+ "name": "FoundationElement",
2837
+ "module": "src/foundation-element/foundation-element.ts"
2838
+ }
2839
+ },
2840
+ {
2841
+ "kind": "method",
2842
+ "name": "stylesChanged",
2843
+ "privacy": "protected",
2844
+ "return": {
2845
+ "type": {
2846
+ "text": "void"
2847
+ }
2848
+ },
2849
+ "inheritedFrom": {
2850
+ "name": "FoundationElement",
2851
+ "module": "src/foundation-element/foundation-element.ts"
2852
+ }
2853
+ },
2854
+ {
2855
+ "kind": "method",
2856
+ "name": "compose",
2857
+ "privacy": "public",
2858
+ "static": true,
2859
+ "return": {
2860
+ "type": {
2861
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
2862
+ }
2863
+ },
2864
+ "parameters": [
2865
+ {
2866
+ "name": "this",
2867
+ "type": {
2868
+ "text": "K"
2869
+ }
2870
+ },
2871
+ {
2872
+ "name": "elementDefinition",
2873
+ "type": {
2874
+ "text": "T"
2875
+ },
2876
+ "description": "The definition of the element to create the registry\nfunction for."
2877
+ }
2878
+ ],
2879
+ "description": "Defines an element registry function with a set of element definition defaults.",
2880
+ "inheritedFrom": {
2881
+ "name": "FoundationElement",
2882
+ "module": "src/foundation-element/foundation-element.ts"
2883
+ }
2884
+ }
2885
+ ],
2886
+ "superclass": {
2887
+ "name": "FoundationElement",
2888
+ "package": "@microsoft/fast-foundation"
2889
+ }
2890
+ },
2891
+ {
2892
+ "kind": "variable",
2893
+ "name": "stringEditorStyles",
2894
+ "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
2895
+ "description": "Styles for the string editor"
2896
+ },
2897
+ {
2898
+ "kind": "function",
2899
+ "name": "getStringEditorTemplate",
2900
+ "parameters": [
2901
+ {
2902
+ "name": "prefix",
2903
+ "default": "'foundation'",
2904
+ "description": "The design system prefix to use. Defaults to 'foundation'."
2905
+ }
2906
+ ],
2907
+ "description": "Get a Design System prefixed text field template.",
2908
+ "return": {
2909
+ "type": {
2910
+ "text": ""
2911
+ }
2912
+ }
2913
+ },
2914
+ {
2915
+ "kind": "variable",
2916
+ "name": "foundationStringEditor",
2917
+ "description": "Definition for the string editor component"
2918
+ }
2919
+ ],
2920
+ "exports": [
2921
+ {
2922
+ "kind": "js",
2923
+ "name": "StringEditor",
2924
+ "declaration": {
2925
+ "name": "StringEditor",
2926
+ "module": "src/cell-editors/string.editor.ts"
2927
+ }
2928
+ },
2929
+ {
2930
+ "kind": "js",
2931
+ "name": "stringEditorStyles",
2932
+ "declaration": {
2933
+ "name": "stringEditorStyles",
2934
+ "module": "src/cell-editors/string.editor.ts"
2935
+ }
2936
+ },
2937
+ {
2938
+ "kind": "js",
2939
+ "name": "getStringEditorTemplate",
2940
+ "declaration": {
2941
+ "name": "getStringEditorTemplate",
2942
+ "module": "src/cell-editors/string.editor.ts"
2943
+ }
2944
+ },
2945
+ {
2946
+ "kind": "js",
2947
+ "name": "foundationStringEditor",
2948
+ "declaration": {
2949
+ "name": "foundationStringEditor",
2950
+ "module": "src/cell-editors/string.editor.ts"
2951
+ }
2952
+ }
2953
+ ]
2954
+ },
2955
+ {
2956
+ "kind": "javascript-module",
2957
+ "path": "src/cell-formatters/action.formatter.ts",
2958
+ "declarations": [
2959
+ {
2960
+ "kind": "function",
2961
+ "name": "actionFormatter",
2962
+ "return": {
2963
+ "type": {
2964
+ "text": ""
2965
+ }
2966
+ },
2967
+ "parameters": [
2968
+ {
2969
+ "name": "cell",
2970
+ "type": {
2971
+ "text": "any"
2972
+ },
2973
+ "description": "The cell component provided by Tabulator"
2974
+ },
2975
+ {
2976
+ "name": "formatterParams",
2977
+ "default": "{}",
2978
+ "type": {
2979
+ "text": "ActionFormatterParams"
2980
+ },
2981
+ "description": "Action formatter parameters"
2982
+ }
2983
+ ],
2984
+ "description": "Formatter that displays an action button in the cell.\nStyled to match grid-pro action renderer.",
2985
+ "privacy": "public"
2986
+ }
2987
+ ],
2988
+ "exports": [
2989
+ {
2990
+ "kind": "js",
2991
+ "name": "actionFormatter",
2992
+ "declaration": {
2993
+ "name": "actionFormatter",
2994
+ "module": "src/cell-formatters/action.formatter.ts"
2995
+ }
2996
+ }
2997
+ ]
2998
+ },
2999
+ {
3000
+ "kind": "javascript-module",
3001
+ "path": "src/cell-formatters/actions-menu.formatter.ts",
3002
+ "declarations": [
3003
+ {
3004
+ "kind": "function",
3005
+ "name": "actionsMenuFormatter",
3006
+ "return": {
3007
+ "type": {
3008
+ "text": ""
3009
+ }
3010
+ },
3011
+ "parameters": [
3012
+ {
3013
+ "name": "cell",
3014
+ "type": {
3015
+ "text": "any"
3016
+ },
3017
+ "description": "The cell component provided by Tabulator"
3018
+ },
3019
+ {
3020
+ "name": "formatterParams",
3021
+ "default": "{}",
3022
+ "type": {
3023
+ "text": "ActionsMenuFormatterParams"
3024
+ },
3025
+ "description": "Actions menu formatter parameters"
3026
+ }
3027
+ ],
3028
+ "description": "Formatter that displays a dropdown menu of actions in the cell.\nStyled to match grid-pro actions-menu renderer.",
3029
+ "privacy": "public"
3030
+ }
3031
+ ],
3032
+ "exports": [
3033
+ {
3034
+ "kind": "js",
3035
+ "name": "actionsMenuFormatter",
3036
+ "declaration": {
3037
+ "name": "actionsMenuFormatter",
3038
+ "module": "src/cell-formatters/actions-menu.formatter.ts"
3039
+ }
3040
+ }
3041
+ ]
3042
+ },
3043
+ {
3044
+ "kind": "javascript-module",
3045
+ "path": "src/cell-formatters/boolean.formatter.ts",
3046
+ "declarations": [
3047
+ {
3048
+ "kind": "function",
3049
+ "name": "booleanFormatter",
3050
+ "return": {
3051
+ "type": {
3052
+ "text": ""
3053
+ }
3054
+ },
3055
+ "parameters": [
3056
+ {
3057
+ "name": "cell",
3058
+ "type": {
3059
+ "text": "any"
3060
+ },
3061
+ "description": "The cell component provided by Tabulator"
3062
+ },
3063
+ {
3064
+ "name": "formatterParams",
3065
+ "default": "{}",
3066
+ "type": {
3067
+ "text": "BooleanFormatterParams"
3068
+ },
3069
+ "description": "Boolean formatter parameters"
3070
+ }
3071
+ ],
3072
+ "description": "Formatter that displays boolean values using a checkbox component.\nStyled to match grid-pro boolean renderer.",
3073
+ "privacy": "public"
3074
+ }
3075
+ ],
3076
+ "exports": [
3077
+ {
3078
+ "kind": "js",
3079
+ "name": "booleanFormatter",
3080
+ "declaration": {
3081
+ "name": "booleanFormatter",
3082
+ "module": "src/cell-formatters/boolean.formatter.ts"
3083
+ }
3084
+ }
3085
+ ]
3086
+ },
3087
+ {
3088
+ "kind": "javascript-module",
3089
+ "path": "src/cell-formatters/constants.ts",
3090
+ "declarations": [],
3091
+ "exports": []
3092
+ },
3093
+ {
3094
+ "kind": "javascript-module",
3095
+ "path": "src/cell-formatters/editable.formatter.ts",
3096
+ "declarations": [
3097
+ {
3098
+ "kind": "function",
3099
+ "name": "editableFormatter",
3100
+ "return": {
3101
+ "type": {
3102
+ "text": ""
3103
+ }
3104
+ },
3105
+ "parameters": [
3106
+ {
3107
+ "name": "cell",
3108
+ "type": {
3109
+ "text": "any"
3110
+ },
3111
+ "description": "The cell component provided by Tabulator"
3112
+ },
3113
+ {
3114
+ "name": "formatterParams",
3115
+ "default": "{}",
3116
+ "type": {
3117
+ "text": "EditableFormatterParams"
3118
+ },
3119
+ "description": "Editable formatter parameters"
3120
+ }
3121
+ ],
3122
+ "description": "Formatter that displays an editable cell with validation state",
3123
+ "privacy": "public"
3124
+ }
3125
+ ],
3126
+ "exports": [
3127
+ {
3128
+ "kind": "js",
3129
+ "name": "editableFormatter",
3130
+ "declaration": {
3131
+ "name": "editableFormatter",
3132
+ "module": "src/cell-formatters/editable.formatter.ts"
3133
+ }
3134
+ }
3135
+ ]
3136
+ },
3137
+ {
3138
+ "kind": "javascript-module",
3139
+ "path": "src/cell-formatters/index.ts",
3140
+ "declarations": [
3141
+ {
3142
+ "kind": "variable",
3143
+ "name": "formatters",
3144
+ "type": {
3145
+ "text": "object"
3146
+ },
3147
+ "default": "{\n action: actionFormatter,\n actionsMenu: actionsMenuFormatter,\n boolean: booleanFormatter,\n editable: editableFormatter,\n select: selectFormatter,\n text: textFormatter,\n}",
3148
+ "description": "Zero formatters for Tabulator grid"
3149
+ }
3150
+ ],
3151
+ "exports": [
3152
+ {
3153
+ "kind": "js",
3154
+ "name": "*",
3155
+ "declaration": {
3156
+ "name": "*",
3157
+ "package": "./constants"
3158
+ }
3159
+ },
3160
+ {
3161
+ "kind": "js",
3162
+ "name": "ActionFormatterParams",
3163
+ "declaration": {
3164
+ "name": "ActionFormatterParams",
3165
+ "module": "src/cell-formatters/index.ts"
3166
+ }
3167
+ },
3168
+ {
3169
+ "kind": "js",
3170
+ "name": "actionFormatter",
3171
+ "declaration": {
3172
+ "name": "actionFormatter",
3173
+ "module": "src/cell-formatters/index.ts"
3174
+ }
3175
+ },
3176
+ {
3177
+ "kind": "js",
3178
+ "name": "ActionsMenuFormatterParams",
3179
+ "declaration": {
3180
+ "name": "ActionsMenuFormatterParams",
3181
+ "module": "src/cell-formatters/index.ts"
3182
+ }
3183
+ },
3184
+ {
3185
+ "kind": "js",
3186
+ "name": "actionsMenuFormatter",
3187
+ "declaration": {
3188
+ "name": "actionsMenuFormatter",
3189
+ "module": "src/cell-formatters/index.ts"
3190
+ }
3191
+ },
3192
+ {
3193
+ "kind": "js",
3194
+ "name": "BooleanFormatterParams",
3195
+ "declaration": {
3196
+ "name": "BooleanFormatterParams",
3197
+ "module": "src/cell-formatters/index.ts"
3198
+ }
3199
+ },
3200
+ {
3201
+ "kind": "js",
3202
+ "name": "booleanFormatter",
3203
+ "declaration": {
3204
+ "name": "booleanFormatter",
3205
+ "module": "src/cell-formatters/index.ts"
3206
+ }
3207
+ },
3208
+ {
3209
+ "kind": "js",
3210
+ "name": "EditableFormatterParams",
3211
+ "declaration": {
3212
+ "name": "EditableFormatterParams",
3213
+ "module": "src/cell-formatters/index.ts"
3214
+ }
3215
+ },
3216
+ {
3217
+ "kind": "js",
3218
+ "name": "editableFormatter",
3219
+ "declaration": {
3220
+ "name": "editableFormatter",
3221
+ "module": "src/cell-formatters/index.ts"
3222
+ }
3223
+ },
3224
+ {
3225
+ "kind": "js",
3226
+ "name": "SelectFormatterParams",
3227
+ "declaration": {
3228
+ "name": "SelectFormatterParams",
3229
+ "module": "src/cell-formatters/index.ts"
3230
+ }
3231
+ },
3232
+ {
3233
+ "kind": "js",
3234
+ "name": "selectFormatter",
3235
+ "declaration": {
3236
+ "name": "selectFormatter",
3237
+ "module": "src/cell-formatters/index.ts"
3238
+ }
3239
+ },
3240
+ {
3241
+ "kind": "js",
3242
+ "name": "TextFormatterParams",
3243
+ "declaration": {
3244
+ "name": "TextFormatterParams",
3245
+ "module": "src/cell-formatters/index.ts"
3246
+ }
3247
+ },
3248
+ {
3249
+ "kind": "js",
3250
+ "name": "textFormatter",
3251
+ "declaration": {
3252
+ "name": "textFormatter",
3253
+ "module": "src/cell-formatters/index.ts"
3254
+ }
3255
+ },
3256
+ {
3257
+ "kind": "js",
3258
+ "name": "formatters",
3259
+ "declaration": {
3260
+ "name": "formatters",
3261
+ "module": "src/cell-formatters/index.ts"
3262
+ }
3263
+ }
3264
+ ]
3265
+ },
3266
+ {
3267
+ "kind": "javascript-module",
3268
+ "path": "src/cell-formatters/select.formatter.ts",
3269
+ "declarations": [
3270
+ {
3271
+ "kind": "function",
3272
+ "name": "selectFormatter",
3273
+ "return": {
3274
+ "type": {
3275
+ "text": ""
3276
+ }
3277
+ },
3278
+ "parameters": [
3279
+ {
3280
+ "name": "cell",
3281
+ "type": {
3282
+ "text": "any"
3283
+ },
3284
+ "description": "The cell component provided by Tabulator"
3285
+ },
3286
+ {
3287
+ "name": "formatterParams",
3288
+ "type": {
3289
+ "text": "SelectFormatterParams"
3290
+ },
3291
+ "description": "Select formatter parameters"
3292
+ }
3293
+ ],
3294
+ "description": "Formatter that displays a value from a select list of options\nStyled to match grid-pro select renderer.",
3295
+ "privacy": "public"
3296
+ }
3297
+ ],
3298
+ "exports": [
3299
+ {
3300
+ "kind": "js",
3301
+ "name": "selectFormatter",
3302
+ "declaration": {
3303
+ "name": "selectFormatter",
3304
+ "module": "src/cell-formatters/select.formatter.ts"
3305
+ }
3306
+ }
3307
+ ]
3308
+ },
3309
+ {
3310
+ "kind": "javascript-module",
3311
+ "path": "src/cell-formatters/text.formatter.ts",
3312
+ "declarations": [
3313
+ {
3314
+ "kind": "function",
3315
+ "name": "textFormatter",
3316
+ "return": {
3317
+ "type": {
3318
+ "text": ""
3319
+ }
3320
+ },
3321
+ "parameters": [
3322
+ {
3323
+ "name": "cell",
3324
+ "type": {
3325
+ "text": "any"
3326
+ },
3327
+ "description": "The cell component provided by Tabulator"
3328
+ },
3329
+ {
3330
+ "name": "formatterParams",
3331
+ "default": "{}",
3332
+ "type": {
3333
+ "text": "TextFormatterParams"
3334
+ },
3335
+ "description": "Text formatter parameters"
3336
+ }
3337
+ ],
3338
+ "description": "Text formatter for customized display of values.\nStyled to match grid-pro text renderer.",
3339
+ "privacy": "public"
3340
+ }
3341
+ ],
3342
+ "exports": [
3343
+ {
3344
+ "kind": "js",
3345
+ "name": "textFormatter",
3346
+ "declaration": {
3347
+ "name": "textFormatter",
3348
+ "module": "src/cell-formatters/text.formatter.ts"
3349
+ }
3350
+ }
3351
+ ]
3352
+ },
3353
+ {
3354
+ "kind": "javascript-module",
3355
+ "path": "src/column/column.ts",
3356
+ "declarations": [
3357
+ {
3358
+ "kind": "class",
3359
+ "description": "The GridTabulator Column element.",
3360
+ "name": "GridTabulatorColumn",
3361
+ "members": [
3362
+ {
3363
+ "kind": "field",
3364
+ "name": "slottedCell",
3365
+ "type": {
3366
+ "text": "HTMLElement[]"
3367
+ },
3368
+ "privacy": "public"
3369
+ },
3370
+ {
3371
+ "kind": "field",
3372
+ "name": "definition",
3373
+ "type": {
3374
+ "text": "Partial<ColumnDefinition>"
3375
+ },
3376
+ "default": "{}"
3377
+ },
3378
+ {
3379
+ "kind": "method",
3380
+ "name": "slottedCellChanged",
3381
+ "privacy": "public"
3382
+ },
3383
+ {
3384
+ "kind": "method",
3385
+ "name": "deepClone",
3386
+ "return": {
3387
+ "type": {
3388
+ "text": "Node"
3389
+ }
3390
+ },
3391
+ "inheritedFrom": {
3392
+ "name": "LifecycleMixin",
3393
+ "module": "src/mixins/lifecycle/lifecycle.ts"
3394
+ }
3395
+ },
3396
+ {
3397
+ "kind": "method",
3398
+ "name": "cloneNode",
3399
+ "return": {
3400
+ "type": {
3401
+ "text": "Node"
3402
+ }
3403
+ },
3404
+ "parameters": [
3405
+ {
3406
+ "name": "deep",
3407
+ "optional": true,
3408
+ "type": {
3409
+ "text": "boolean"
3410
+ }
3411
+ }
3412
+ ],
3413
+ "inheritedFrom": {
3414
+ "name": "LifecycleMixin",
3415
+ "module": "src/mixins/lifecycle/lifecycle.ts"
3416
+ }
3417
+ },
3418
+ {
3419
+ "kind": "field",
3420
+ "name": "shouldRunDisconnect",
3421
+ "return": {
3422
+ "type": {
3423
+ "text": ""
3424
+ }
3425
+ },
3426
+ "readonly": true,
3427
+ "inheritedFrom": {
3428
+ "name": "LifecycleMixin",
3429
+ "module": "src/mixins/lifecycle/lifecycle.ts"
3430
+ }
3431
+ },
3432
+ {
3433
+ "kind": "field",
3434
+ "name": "shouldRunConnect",
3435
+ "return": {
3436
+ "type": {
3437
+ "text": ""
3438
+ }
1087
3439
  },
1088
- "privacy": "public"
3440
+ "readonly": true,
3441
+ "inheritedFrom": {
3442
+ "name": "LifecycleMixin",
3443
+ "module": "src/mixins/lifecycle/lifecycle.ts"
3444
+ }
1089
3445
  },
1090
3446
  {
1091
3447
  "kind": "method",
1092
- "name": "init",
1093
- "privacy": "public",
3448
+ "name": "#_blockLifecycleDueToTokenChange",
3449
+ "return": {
3450
+ "type": {
3451
+ "text": "boolean"
3452
+ }
3453
+ },
1094
3454
  "parameters": [
1095
3455
  {
1096
- "name": "params",
3456
+ "name": "lifecycleType",
1097
3457
  "type": {
1098
- "text": "ActionRendererParams"
3458
+ "text": "Lifecycletype"
1099
3459
  }
1100
3460
  }
1101
- ]
1102
- },
1103
- {
1104
- "kind": "method",
1105
- "name": "clickHandler",
1106
- "privacy": "public"
1107
- },
1108
- {
1109
- "kind": "field",
1110
- "name": "dataTestId",
1111
- "readonly": true
3461
+ ],
3462
+ "inheritedFrom": {
3463
+ "name": "LifecycleMixin",
3464
+ "module": "src/mixins/lifecycle/lifecycle.ts"
3465
+ }
1112
3466
  },
1113
3467
  {
1114
3468
  "kind": "field",
@@ -1222,71 +3576,42 @@
1222
3576
  }
1223
3577
  }
1224
3578
  ],
3579
+ "mixins": [
3580
+ {
3581
+ "name": "LifecycleMixin",
3582
+ "package": "@genesislcap/foundation-utils"
3583
+ }
3584
+ ],
1225
3585
  "superclass": {
1226
3586
  "name": "FoundationElement",
1227
3587
  "package": "@microsoft/fast-foundation"
1228
3588
  },
1229
- "tagName": "%%prefix%%-grid-tabulator-action-renderer",
3589
+ "tagName": "grid-tabulator-column",
1230
3590
  "customElement": true
1231
- },
1232
- {
1233
- "kind": "variable",
1234
- "name": "actionHeightMultiplier",
1235
- "description": "The base height multiplier for the action renderer.",
1236
- "privacy": "public"
1237
- },
1238
- {
1239
- "kind": "variable",
1240
- "name": "tabulatorActionRendererStyles",
1241
- "default": "css`\n .action-container {\n align-items: center;\n display: flex;\n height: 100%;\n justify-content: center;\n }\n .action-renderer {\n align-self: center;\n display: flex;\n height: calc(\n (var(--base-height-multiplier) + var(--density)) * var(--design-unit) *\n var(--action-height-multiplier)\n );\n }\n`",
1242
- "description": "The Tabulator Action Renderer Styles.",
1243
- "privacy": "public"
1244
- },
1245
- {
1246
- "kind": "variable",
1247
- "name": "foundationGridTabulatorActionRenderer",
1248
- "description": "A function that returns a Foundation Action Renderer for configuring the component with a DesignSystem.",
1249
- "privacy": "public"
1250
3591
  }
1251
3592
  ],
1252
3593
  "exports": [
1253
3594
  {
1254
3595
  "kind": "js",
1255
- "name": "ActionRenderer",
1256
- "declaration": {
1257
- "name": "ActionRenderer",
1258
- "module": "src/cell-renderers/action.renderer.ts"
1259
- }
1260
- },
1261
- {
1262
- "kind": "js",
1263
- "name": "actionHeightMultiplier",
3596
+ "name": "GridTabulatorColumn",
1264
3597
  "declaration": {
1265
- "name": "actionHeightMultiplier",
1266
- "module": "src/cell-renderers/action.renderer.ts"
3598
+ "name": "GridTabulatorColumn",
3599
+ "module": "src/column/column.ts"
1267
3600
  }
1268
3601
  },
1269
3602
  {
1270
- "kind": "js",
1271
- "name": "tabulatorActionRendererStyles",
1272
- "declaration": {
1273
- "name": "tabulatorActionRendererStyles",
1274
- "module": "src/cell-renderers/action.renderer.ts"
1275
- }
1276
- },
1277
- {
1278
- "kind": "js",
1279
- "name": "foundationGridTabulatorActionRenderer",
3603
+ "kind": "custom-element-definition",
3604
+ "name": "grid-tabulator-column",
1280
3605
  "declaration": {
1281
- "name": "foundationGridTabulatorActionRenderer",
1282
- "module": "src/cell-renderers/action.renderer.ts"
3606
+ "name": "GridTabulatorColumn",
3607
+ "module": "src/column/column.ts"
1283
3608
  }
1284
3609
  }
1285
3610
  ]
1286
3611
  },
1287
3612
  {
1288
3613
  "kind": "javascript-module",
1289
- "path": "src/cell-renderers/index.ts",
3614
+ "path": "src/column/index.ts",
1290
3615
  "declarations": [],
1291
3616
  "exports": [
1292
3617
  {
@@ -1294,21 +3619,33 @@
1294
3619
  "name": "*",
1295
3620
  "declaration": {
1296
3621
  "name": "*",
1297
- "package": "./action.renderer"
3622
+ "package": "./column"
1298
3623
  }
1299
3624
  }
1300
3625
  ]
1301
3626
  },
1302
- {
1303
- "kind": "javascript-module",
1304
- "path": "src/column/index.ts",
1305
- "declarations": [],
1306
- "exports": []
1307
- },
1308
3627
  {
1309
3628
  "kind": "javascript-module",
1310
3629
  "path": "src/datasource/client-side.datasource.ts",
1311
3630
  "declarations": [
3631
+ {
3632
+ "kind": "variable",
3633
+ "name": "criteriaDelimiter",
3634
+ "type": {
3635
+ "text": "string"
3636
+ },
3637
+ "default": "';'",
3638
+ "description": "Delimiter for criteria in the datasource"
3639
+ },
3640
+ {
3641
+ "kind": "variable",
3642
+ "name": "criteriaJoin",
3643
+ "type": {
3644
+ "text": "string"
3645
+ },
3646
+ "default": "' && '",
3647
+ "description": "Join operator for criteria in the datasource"
3648
+ },
1312
3649
  {
1313
3650
  "kind": "class",
1314
3651
  "description": "The Genesis Datasource element, for client-side data fetching and used exclusively by the GridTabulator element.",
@@ -1342,6 +3679,15 @@
1342
3679
  "text": "Options"
1343
3680
  }
1344
3681
  },
3682
+ {
3683
+ "kind": "field",
3684
+ "name": "deferredColumnStates",
3685
+ "type": {
3686
+ "text": "any[]"
3687
+ },
3688
+ "default": "[]",
3689
+ "description": "Allows storing column layouts between datasource initializations"
3690
+ },
1345
3691
  {
1346
3692
  "kind": "field",
1347
3693
  "name": "criteria",
@@ -1471,6 +3817,15 @@
1471
3817
  },
1472
3818
  "default": "true"
1473
3819
  },
3820
+ {
3821
+ "kind": "field",
3822
+ "name": "keepColDefsOnClearRowData",
3823
+ "type": {
3824
+ "text": "boolean"
3825
+ },
3826
+ "default": "false",
3827
+ "description": "Whether to keep column definitions when clearing row data"
3828
+ },
1474
3829
  {
1475
3830
  "kind": "field",
1476
3831
  "name": "rowDataMapper",
@@ -1512,24 +3867,6 @@
1512
3867
  "privacy": "private",
1513
3868
  "default": "false"
1514
3869
  },
1515
- {
1516
- "kind": "method",
1517
- "name": "datasourceStatusChanged",
1518
- "parameters": [
1519
- {
1520
- "name": "prev",
1521
- "type": {
1522
- "text": "DatasourceStatus"
1523
- }
1524
- },
1525
- {
1526
- "name": "next",
1527
- "type": {
1528
- "text": "DatasourceStatus"
1529
- }
1530
- }
1531
- ]
1532
- },
1533
3870
  {
1534
3871
  "kind": "field",
1535
3872
  "name": "requiresFullRowDataAndColDefs",
@@ -1613,15 +3950,6 @@
1613
3950
  "privacy": "private",
1614
3951
  "readonly": true
1615
3952
  },
1616
- {
1617
- "kind": "field",
1618
- "name": "defaultRowIdByResourceType",
1619
- "type": {
1620
- "text": "string"
1621
- },
1622
- "privacy": "private",
1623
- "readonly": true
1624
- },
1625
3953
  {
1626
3954
  "kind": "method",
1627
3955
  "name": "init",
@@ -1645,6 +3973,34 @@
1645
3973
  "name": "refreshRows",
1646
3974
  "description": "Force the grid to redispatch the current rows"
1647
3975
  },
3976
+ {
3977
+ "kind": "method",
3978
+ "name": "handleErrors",
3979
+ "parameters": [
3980
+ {
3981
+ "name": "errors",
3982
+ "type": {
3983
+ "text": "string | any[]"
3984
+ }
3985
+ }
3986
+ ],
3987
+ "description": "Handles errors by emitting an error event"
3988
+ },
3989
+ {
3990
+ "kind": "method",
3991
+ "name": "getColumnDefs",
3992
+ "privacy": "private",
3993
+ "parameters": [
3994
+ {
3995
+ "name": "fieldsMetadata",
3996
+ "type": {
3997
+ "text": "FieldMetadata[]"
3998
+ },
3999
+ "description": "The field metadata to generate column definitions from"
4000
+ }
4001
+ ],
4002
+ "description": "Generate column definitions from the field metadata"
4003
+ },
1648
4004
  {
1649
4005
  "kind": "method",
1650
4006
  "name": "handleSnapshot",
@@ -1761,6 +4117,26 @@
1761
4117
  }
1762
4118
  ]
1763
4119
  },
4120
+ {
4121
+ "kind": "method",
4122
+ "name": "handleSizeChanged",
4123
+ "privacy": "private",
4124
+ "parameters": [
4125
+ {
4126
+ "name": "oldSize",
4127
+ "type": {
4128
+ "text": "number"
4129
+ }
4130
+ },
4131
+ {
4132
+ "name": "newSize",
4133
+ "type": {
4134
+ "text": "number"
4135
+ }
4136
+ }
4137
+ ],
4138
+ "description": "Emit event when the number of rows changes"
4139
+ },
1764
4140
  {
1765
4141
  "kind": "method",
1766
4142
  "name": "buildCriteria",
@@ -1803,6 +4179,24 @@
1803
4179
  }
1804
4180
  ]
1805
4181
  },
4182
+ {
4183
+ "kind": "method",
4184
+ "name": "datasourceStatusChanged",
4185
+ "parameters": [
4186
+ {
4187
+ "name": "prev",
4188
+ "type": {
4189
+ "text": "DatasourceStatus"
4190
+ }
4191
+ },
4192
+ {
4193
+ "name": "next",
4194
+ "type": {
4195
+ "text": "DatasourceStatus"
4196
+ }
4197
+ }
4198
+ ]
4199
+ },
1806
4200
  {
1807
4201
  "kind": "method",
1808
4202
  "name": "cloneNode",
@@ -2071,6 +4465,15 @@
2071
4465
  },
2072
4466
  "default": "true",
2073
4467
  "fieldName": "restartOnReconnection"
4468
+ },
4469
+ {
4470
+ "name": "keep-col-defs-on-clear-row-data",
4471
+ "type": {
4472
+ "text": "boolean"
4473
+ },
4474
+ "default": "false",
4475
+ "description": "Whether to keep column definitions when clearing row data",
4476
+ "fieldName": "keepColDefsOnClearRowData"
2074
4477
  }
2075
4478
  ],
2076
4479
  "mixins": [
@@ -2092,6 +4495,22 @@
2092
4495
  }
2093
4496
  ],
2094
4497
  "exports": [
4498
+ {
4499
+ "kind": "js",
4500
+ "name": "criteriaDelimiter",
4501
+ "declaration": {
4502
+ "name": "criteriaDelimiter",
4503
+ "module": "src/datasource/client-side.datasource.ts"
4504
+ }
4505
+ },
4506
+ {
4507
+ "kind": "js",
4508
+ "name": "criteriaJoin",
4509
+ "declaration": {
4510
+ "name": "criteriaJoin",
4511
+ "module": "src/datasource/client-side.datasource.ts"
4512
+ }
4513
+ },
2095
4514
  {
2096
4515
  "kind": "js",
2097
4516
  "name": "GridTabulatorClientSideDatasource",
@@ -2289,6 +4708,14 @@
2289
4708
  "name": "*",
2290
4709
  "package": "./logger"
2291
4710
  }
4711
+ },
4712
+ {
4713
+ "kind": "js",
4714
+ "name": "*",
4715
+ "declaration": {
4716
+ "name": "*",
4717
+ "package": "./string-utils"
4718
+ }
2292
4719
  }
2293
4720
  ]
2294
4721
  },
@@ -2313,6 +4740,75 @@
2313
4740
  }
2314
4741
  }
2315
4742
  ]
4743
+ },
4744
+ {
4745
+ "kind": "javascript-module",
4746
+ "path": "src/utils/string-utils.ts",
4747
+ "declarations": [
4748
+ {
4749
+ "kind": "function",
4750
+ "name": "convertToKebabCase",
4751
+ "return": {
4752
+ "type": {
4753
+ "text": ""
4754
+ }
4755
+ },
4756
+ "parameters": [
4757
+ {
4758
+ "name": "str",
4759
+ "type": {
4760
+ "text": "string"
4761
+ },
4762
+ "description": "The string to convert"
4763
+ }
4764
+ ],
4765
+ "description": "Convert a string to kebab case\nExample: convertToKebabCase('helloWorld') // 'hello-world'"
4766
+ },
4767
+ {
4768
+ "kind": "function",
4769
+ "name": "mergeAndDedupColDefWithColumnState",
4770
+ "return": {
4771
+ "type": {
4772
+ "text": ""
4773
+ }
4774
+ },
4775
+ "parameters": [
4776
+ {
4777
+ "name": "colDefs",
4778
+ "type": {
4779
+ "text": "any[]"
4780
+ },
4781
+ "description": "The column definitions"
4782
+ },
4783
+ {
4784
+ "name": "columnState",
4785
+ "type": {
4786
+ "text": "any[]"
4787
+ },
4788
+ "description": "The column state"
4789
+ }
4790
+ ],
4791
+ "description": "Merges and dedupes column definitions with column state"
4792
+ }
4793
+ ],
4794
+ "exports": [
4795
+ {
4796
+ "kind": "js",
4797
+ "name": "convertToKebabCase",
4798
+ "declaration": {
4799
+ "name": "convertToKebabCase",
4800
+ "module": "src/utils/string-utils.ts"
4801
+ }
4802
+ },
4803
+ {
4804
+ "kind": "js",
4805
+ "name": "mergeAndDedupColDefWithColumnState",
4806
+ "declaration": {
4807
+ "name": "mergeAndDedupColDefWithColumnState",
4808
+ "module": "src/utils/string-utils.ts"
4809
+ }
4810
+ }
4811
+ ]
2316
4812
  }
2317
4813
  ]
2318
4814
  }