@genesislcap/grid-pro 15.13.1 → 15.14.0-FUI-2601.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.
- package/dist/custom-elements.json +1988 -563
- package/dist/dts/columns-tool-panel/columns-tool-panel.d.ts +98 -0
- package/dist/dts/columns-tool-panel/columns-tool-panel.d.ts.map +1 -0
- package/dist/dts/columns-tool-panel/columns-tool-panel.styles.d.ts +9 -0
- package/dist/dts/columns-tool-panel/columns-tool-panel.styles.d.ts.map +1 -0
- package/dist/dts/columns-tool-panel/columns-tool-panel.template.d.ts +12 -0
- package/dist/dts/columns-tool-panel/columns-tool-panel.template.d.ts.map +1 -0
- package/dist/dts/columns-tool-panel/columns-tool-panel.utils.d.ts +24 -0
- package/dist/dts/columns-tool-panel/columns-tool-panel.utils.d.ts.map +1 -0
- package/dist/dts/columns-tool-panel/index.d.ts +5 -0
- package/dist/dts/columns-tool-panel/index.d.ts.map +1 -0
- package/dist/dts/grid-pro-beta.d.ts +39 -4
- package/dist/dts/grid-pro-beta.d.ts.map +1 -1
- package/dist/dts/grid-pro.d.ts +10 -0
- package/dist/dts/grid-pro.d.ts.map +1 -1
- package/dist/dts/grid-pro.styles.d.ts.map +1 -1
- package/dist/dts/grid-pro.template.d.ts.map +1 -1
- package/dist/dts/grid-pro.types.d.ts +10 -0
- package/dist/dts/grid-pro.types.d.ts.map +1 -1
- package/dist/dts/index.d.ts +2 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/react.d.ts +24 -4
- package/dist/dts/side-bar/index.d.ts +6 -0
- package/dist/dts/side-bar/index.d.ts.map +1 -0
- package/dist/dts/side-bar/side-bar.d.ts +412 -0
- package/dist/dts/side-bar/side-bar.d.ts.map +1 -0
- package/dist/dts/side-bar/side-bar.styles.d.ts +19 -0
- package/dist/dts/side-bar/side-bar.styles.d.ts.map +1 -0
- package/dist/dts/side-bar/side-bar.template.d.ts +11 -0
- package/dist/dts/side-bar/side-bar.template.d.ts.map +1 -0
- package/dist/dts/side-bar/side-bar.tools.d.ts +12 -0
- package/dist/dts/side-bar/side-bar.tools.d.ts.map +1 -0
- package/dist/dts/side-bar/side-bar.types.d.ts +77 -0
- package/dist/dts/side-bar/side-bar.types.d.ts.map +1 -0
- package/dist/esm/columns-tool-panel/columns-tool-panel.js +312 -0
- package/dist/esm/columns-tool-panel/columns-tool-panel.styles.js +122 -0
- package/dist/esm/columns-tool-panel/columns-tool-panel.template.js +79 -0
- package/dist/esm/columns-tool-panel/columns-tool-panel.utils.js +129 -0
- package/dist/esm/columns-tool-panel/index.js +4 -0
- package/dist/esm/grid-pro-beta.js +89 -3
- package/dist/esm/grid-pro.js +24 -1
- package/dist/esm/grid-pro.styles.js +4 -0
- package/dist/esm/grid-pro.template.js +18 -2
- package/dist/esm/grid-pro.types.js +11 -0
- package/dist/esm/index.js +2 -0
- package/dist/esm/side-bar/index.js +5 -0
- package/dist/esm/side-bar/side-bar.js +166 -0
- package/dist/esm/side-bar/side-bar.styles.js +154 -0
- package/dist/esm/side-bar/side-bar.template.js +48 -0
- package/dist/esm/side-bar/side-bar.tools.js +19 -0
- package/dist/esm/side-bar/side-bar.types.js +45 -0
- package/dist/grid-pro.api.json +8838 -6330
- package/dist/grid-pro.d.ts +906 -168
- package/dist/react.cjs +17 -3
- package/dist/react.mjs +14 -2
- package/package.json +14 -14
|
@@ -225,6 +225,11 @@
|
|
|
225
225
|
"text": "HTMLSlotElement"
|
|
226
226
|
}
|
|
227
227
|
},
|
|
228
|
+
{
|
|
229
|
+
"kind": "method",
|
|
230
|
+
"name": "gridSlotChanged",
|
|
231
|
+
"description": "The slot ref binds asynchronously, and the queued `initGrid` skips any run that beats it. FAST\ncalls this the moment the ref lands, so a grid whose options were set BEFORE the view bound\nstill initialises rather than staying blank — closing the one gap that skip would leave.\n\nGuarded on `agGridOptions` as well: without options there is nothing to build, and AG Grid\nwould only log \"no gridOptions provided to the grid\". Those arrive via a grid-options change,\nwhich re-runs `initGrid` on its own."
|
|
232
|
+
},
|
|
228
233
|
{
|
|
229
234
|
"kind": "field",
|
|
230
235
|
"name": "themeMode",
|
|
@@ -258,6 +263,45 @@
|
|
|
258
263
|
"default": "false",
|
|
259
264
|
"description": "Enables or disables the grid status bar."
|
|
260
265
|
},
|
|
266
|
+
{
|
|
267
|
+
"kind": "field",
|
|
268
|
+
"name": "withSideBar",
|
|
269
|
+
"type": {
|
|
270
|
+
"text": "boolean"
|
|
271
|
+
},
|
|
272
|
+
"default": "false",
|
|
273
|
+
"description": "Community side bar shell (no AG side-bar chrome). Tools come from `sideBarTools`."
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"kind": "field",
|
|
277
|
+
"name": "sideBarTools",
|
|
278
|
+
"type": {
|
|
279
|
+
"text": "GridProSideBarToolDef[] | null"
|
|
280
|
+
},
|
|
281
|
+
"default": "null",
|
|
282
|
+
"description": "Dynamic side-bar tools (Columns, AG Filters, custom `IToolPanelComp`, etc.).\nDefaults to GRID_PRO_DEFAULT_SIDE_BAR_TOOLS (Columns only)."
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"kind": "method",
|
|
286
|
+
"name": "sideBarToolsChanged"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"kind": "field",
|
|
290
|
+
"name": "resolvedSideBarTools",
|
|
291
|
+
"type": {
|
|
292
|
+
"text": "ReadonlyArray<GridProSideBarToolDef>"
|
|
293
|
+
},
|
|
294
|
+
"description": "Resolved tools list used by the template.",
|
|
295
|
+
"readonly": true
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"kind": "field",
|
|
299
|
+
"name": "sideBar",
|
|
300
|
+
"type": {
|
|
301
|
+
"text": "GridProSideBar"
|
|
302
|
+
},
|
|
303
|
+
"description": "Community side bar element."
|
|
304
|
+
},
|
|
261
305
|
{
|
|
262
306
|
"kind": "field",
|
|
263
307
|
"name": "customErrorHandlerTemplate",
|
|
@@ -743,6 +787,45 @@
|
|
|
743
787
|
}
|
|
744
788
|
]
|
|
745
789
|
},
|
|
790
|
+
{
|
|
791
|
+
"kind": "method",
|
|
792
|
+
"name": "applyCommunitySideBarOptions",
|
|
793
|
+
"privacy": "private",
|
|
794
|
+
"return": {
|
|
795
|
+
"type": {
|
|
796
|
+
"text": "void"
|
|
797
|
+
}
|
|
798
|
+
}
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"kind": "method",
|
|
802
|
+
"name": "selectSideBarTool",
|
|
803
|
+
"return": {
|
|
804
|
+
"type": {
|
|
805
|
+
"text": "void"
|
|
806
|
+
}
|
|
807
|
+
},
|
|
808
|
+
"parameters": [
|
|
809
|
+
{
|
|
810
|
+
"name": "tool",
|
|
811
|
+
"type": {
|
|
812
|
+
"text": "GridProSideBarToolId"
|
|
813
|
+
}
|
|
814
|
+
}
|
|
815
|
+
],
|
|
816
|
+
"description": "Selects a Community side-bar tool. Clicking the active open tool collapses the panel.",
|
|
817
|
+
"privacy": "public"
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"kind": "method",
|
|
821
|
+
"name": "destroySideBarTools",
|
|
822
|
+
"privacy": "private",
|
|
823
|
+
"return": {
|
|
824
|
+
"type": {
|
|
825
|
+
"text": "void"
|
|
826
|
+
}
|
|
827
|
+
}
|
|
828
|
+
},
|
|
746
829
|
{
|
|
747
830
|
"kind": "method",
|
|
748
831
|
"name": "clearLocalGridOptions",
|
|
@@ -1234,6 +1317,15 @@
|
|
|
1234
1317
|
"default": "false",
|
|
1235
1318
|
"description": "Enables or disables the grid status bar.",
|
|
1236
1319
|
"fieldName": "withStatusBar"
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
"name": "with-side-bar",
|
|
1323
|
+
"type": {
|
|
1324
|
+
"text": "boolean"
|
|
1325
|
+
},
|
|
1326
|
+
"default": "false",
|
|
1327
|
+
"description": "Community side bar shell (no AG side-bar chrome). Tools come from `sideBarTools`.",
|
|
1328
|
+
"fieldName": "withSideBar"
|
|
1237
1329
|
}
|
|
1238
1330
|
],
|
|
1239
1331
|
"mixins": [
|
|
@@ -1472,7 +1564,7 @@
|
|
|
1472
1564
|
"type": {
|
|
1473
1565
|
"text": "ElementStyles"
|
|
1474
1566
|
},
|
|
1475
|
-
"default": "css`\n ${agExternalStockStyles}\n ${errorHandlerDialogStyles}\n ${agDragGhostShadowDomStyles}\n :host {\n --datasource-error-background-color: var(--neutral-layer-4);\n --datasource-error-background-opacity: 0.5;\n --datasource-error-dialog-max-width: 50%;\n --datasource-error-dialog-min-width: auto;\n --ag-status-bar-height: 32.5px;\n\n position: relative;\n width: 100%;\n height: 100%;\n }\n\n :host([ds-disconnected]) {\n display: block;\n }\n\n :host([ds-disconnected])::part(grid) {\n cursor: not-allowed;\n opacity: 40%;\n pointer-events: none;\n }\n\n .ag-side-bar,\n .ag-menu {\n --ag-subheader-background-color: var(--ag-background-color);\n --ag-control-panel-background-color: var(--ag-background-color);\n }\n\n .ag-cell-inline-editing {\n height: inherit !important;\n }\n\n .hidden {\n display: none;\n }\n\n .error {\n border-color: var(--error-color) !important;\n }\n\n .ag-status-bar {\n height: var(--ag-status-bar-height);\n }\n\n .ag-status-name-value {\n padding-top: var(--ag-grid-size);\n padding-bottom: var(--ag-grid-size);\n }\n\n /* Custom styling for the unsort icon (sortNone) - only for sortable columns */\n .ag-header-cell.ag-header-cell-sortable .ag-icon-none {\n opacity: 100%;\n color: var(--rapid-ag-header-foreground-color, var(--ag-foreground-color, #fff));\n font-size: calc(var(--ag-icon-size, 12px) * 1.2);\n font-weight: bold;\n }\n\n .ag-header-cell.ag-header-cell-sortable:hover .ag-icon-none {\n opacity: 100%;\n color: var(--rapid-ag-header-foreground-color, var(--ag-foreground-color, #fff));\n transform: scale(1.1);\n transition: transform 0.2s ease;\n }\n`",
|
|
1567
|
+
"default": "css`\n ${agExternalStockStyles}\n ${errorHandlerDialogStyles}\n ${agDragGhostShadowDomStyles}\n ${gridProSideBarHostStyles}\n ${columnsToolPanelStyles}\n :host {\n --datasource-error-background-color: var(--neutral-layer-4);\n --datasource-error-background-opacity: 0.5;\n --datasource-error-dialog-max-width: 50%;\n --datasource-error-dialog-min-width: auto;\n --ag-status-bar-height: 32.5px;\n\n position: relative;\n width: 100%;\n height: 100%;\n }\n\n :host([ds-disconnected]) {\n display: block;\n }\n\n :host([ds-disconnected])::part(grid) {\n cursor: not-allowed;\n opacity: 40%;\n pointer-events: none;\n }\n\n .ag-side-bar,\n .ag-menu {\n --ag-subheader-background-color: var(--ag-background-color);\n --ag-control-panel-background-color: var(--ag-background-color);\n }\n\n .ag-cell-inline-editing {\n height: inherit !important;\n }\n\n .hidden {\n display: none;\n }\n\n .error {\n border-color: var(--error-color) !important;\n }\n\n .ag-status-bar {\n height: var(--ag-status-bar-height);\n }\n\n .ag-status-name-value {\n padding-top: var(--ag-grid-size);\n padding-bottom: var(--ag-grid-size);\n }\n\n /* Custom styling for the unsort icon (sortNone) - only for sortable columns */\n .ag-header-cell.ag-header-cell-sortable .ag-icon-none {\n opacity: 100%;\n color: var(--rapid-ag-header-foreground-color, var(--ag-foreground-color, #fff));\n font-size: calc(var(--ag-icon-size, 12px) * 1.2);\n font-weight: bold;\n }\n\n .ag-header-cell.ag-header-cell-sortable:hover .ag-icon-none {\n opacity: 100%;\n color: var(--rapid-ag-header-foreground-color, var(--ag-foreground-color, #fff));\n transform: scale(1.1);\n transition: transform 0.2s ease;\n }\n`",
|
|
1476
1568
|
"description": "The Grid Pro styles.",
|
|
1477
1569
|
"privacy": "public"
|
|
1478
1570
|
}
|
|
@@ -1872,6 +1964,11 @@
|
|
|
1872
1964
|
"text": "HTMLSlotElement"
|
|
1873
1965
|
}
|
|
1874
1966
|
},
|
|
1967
|
+
{
|
|
1968
|
+
"kind": "method",
|
|
1969
|
+
"name": "gridSlotChanged",
|
|
1970
|
+
"description": "The slot ref binds asynchronously, and the queued `initGrid` skips any run that beats it. FAST\ncalls this the moment the ref lands, so a grid whose options were set BEFORE the view bound\nstill initialises rather than staying blank — closing the one gap that skip would leave.\n\nGuarded on `agGridOptions` as well: without options there is nothing to build, and AG Grid\nwould only log \"no gridOptions provided to the grid\". Those arrive via a grid-options change,\nwhich re-runs `initGrid` on its own."
|
|
1971
|
+
},
|
|
1875
1972
|
{
|
|
1876
1973
|
"kind": "field",
|
|
1877
1974
|
"name": "themeMode",
|
|
@@ -3351,6 +3448,14 @@
|
|
|
3351
3448
|
"package": "./column"
|
|
3352
3449
|
}
|
|
3353
3450
|
},
|
|
3451
|
+
{
|
|
3452
|
+
"kind": "js",
|
|
3453
|
+
"name": "*",
|
|
3454
|
+
"declaration": {
|
|
3455
|
+
"name": "*",
|
|
3456
|
+
"package": "./columns-tool-panel"
|
|
3457
|
+
}
|
|
3458
|
+
},
|
|
3354
3459
|
{
|
|
3355
3460
|
"kind": "js",
|
|
3356
3461
|
"name": "*",
|
|
@@ -3431,6 +3536,14 @@
|
|
|
3431
3536
|
"package": "./multicolumn-dropdown"
|
|
3432
3537
|
}
|
|
3433
3538
|
},
|
|
3539
|
+
{
|
|
3540
|
+
"kind": "js",
|
|
3541
|
+
"name": "*",
|
|
3542
|
+
"declaration": {
|
|
3543
|
+
"name": "*",
|
|
3544
|
+
"package": "./side-bar"
|
|
3545
|
+
}
|
|
3546
|
+
},
|
|
3434
3547
|
{
|
|
3435
3548
|
"kind": "js",
|
|
3436
3549
|
"name": "*",
|
|
@@ -5281,69 +5394,123 @@
|
|
|
5281
5394
|
},
|
|
5282
5395
|
{
|
|
5283
5396
|
"kind": "javascript-module",
|
|
5284
|
-
"path": "src/
|
|
5397
|
+
"path": "src/column/column.template.ts",
|
|
5398
|
+
"declarations": [
|
|
5399
|
+
{
|
|
5400
|
+
"kind": "variable",
|
|
5401
|
+
"name": "ColumnTemplate",
|
|
5402
|
+
"default": "html<GridProColumn>`\n <template>\n <slot ${slotted('slottedAgCell')} @slotchange=\"${(x) => x.slottedAgCellChanged()}\"></slot>\n </template>\n`",
|
|
5403
|
+
"description": "The Grid Pro Column Template.",
|
|
5404
|
+
"privacy": "public"
|
|
5405
|
+
}
|
|
5406
|
+
],
|
|
5407
|
+
"exports": [
|
|
5408
|
+
{
|
|
5409
|
+
"kind": "js",
|
|
5410
|
+
"name": "ColumnTemplate",
|
|
5411
|
+
"declaration": {
|
|
5412
|
+
"name": "ColumnTemplate",
|
|
5413
|
+
"module": "src/column/column.template.ts"
|
|
5414
|
+
}
|
|
5415
|
+
}
|
|
5416
|
+
]
|
|
5417
|
+
},
|
|
5418
|
+
{
|
|
5419
|
+
"kind": "javascript-module",
|
|
5420
|
+
"path": "src/column/column.ts",
|
|
5285
5421
|
"declarations": [
|
|
5286
5422
|
{
|
|
5287
5423
|
"kind": "class",
|
|
5288
|
-
"description": "The
|
|
5289
|
-
"name": "
|
|
5424
|
+
"description": "The Grid Pro Column element.",
|
|
5425
|
+
"name": "GridProColumn",
|
|
5290
5426
|
"members": [
|
|
5291
5427
|
{
|
|
5292
5428
|
"kind": "field",
|
|
5293
|
-
"name": "
|
|
5429
|
+
"name": "slottedAgCell",
|
|
5294
5430
|
"type": {
|
|
5295
|
-
"text": "
|
|
5431
|
+
"text": "HTMLElement[]"
|
|
5296
5432
|
},
|
|
5297
5433
|
"privacy": "public"
|
|
5298
5434
|
},
|
|
5299
5435
|
{
|
|
5300
5436
|
"kind": "field",
|
|
5301
|
-
"name": "
|
|
5437
|
+
"name": "definition",
|
|
5302
5438
|
"type": {
|
|
5303
|
-
"text": "
|
|
5439
|
+
"text": "ColDef"
|
|
5304
5440
|
},
|
|
5305
|
-
"
|
|
5441
|
+
"default": "{}"
|
|
5306
5442
|
},
|
|
5307
5443
|
{
|
|
5308
5444
|
"kind": "method",
|
|
5309
|
-
"name": "
|
|
5310
|
-
"privacy": "public"
|
|
5311
|
-
"parameters": [
|
|
5312
|
-
{
|
|
5313
|
-
"name": "params",
|
|
5314
|
-
"type": {
|
|
5315
|
-
"text": "ICellRendererParams & ActionRendererParams"
|
|
5316
|
-
}
|
|
5317
|
-
}
|
|
5318
|
-
]
|
|
5445
|
+
"name": "slottedAgCellChanged",
|
|
5446
|
+
"privacy": "public"
|
|
5319
5447
|
},
|
|
5320
5448
|
{
|
|
5321
5449
|
"kind": "method",
|
|
5322
|
-
"name": "
|
|
5323
|
-
"privacy": "public",
|
|
5450
|
+
"name": "deepClone",
|
|
5324
5451
|
"return": {
|
|
5325
5452
|
"type": {
|
|
5326
|
-
"text": "
|
|
5453
|
+
"text": "Node"
|
|
5327
5454
|
}
|
|
5455
|
+
},
|
|
5456
|
+
"inheritedFrom": {
|
|
5457
|
+
"name": "LifecycleMixin",
|
|
5458
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
5328
5459
|
}
|
|
5329
5460
|
},
|
|
5330
5461
|
{
|
|
5331
5462
|
"kind": "method",
|
|
5332
|
-
"name": "
|
|
5333
|
-
"
|
|
5463
|
+
"name": "cloneNode",
|
|
5464
|
+
"return": {
|
|
5465
|
+
"type": {
|
|
5466
|
+
"text": "Node"
|
|
5467
|
+
}
|
|
5468
|
+
},
|
|
5334
5469
|
"parameters": [
|
|
5335
5470
|
{
|
|
5336
|
-
"name": "
|
|
5471
|
+
"name": "deep",
|
|
5472
|
+
"optional": true,
|
|
5337
5473
|
"type": {
|
|
5338
|
-
"text": "
|
|
5474
|
+
"text": "boolean"
|
|
5339
5475
|
}
|
|
5340
5476
|
}
|
|
5341
|
-
]
|
|
5477
|
+
],
|
|
5478
|
+
"inheritedFrom": {
|
|
5479
|
+
"name": "LifecycleMixin",
|
|
5480
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
5481
|
+
}
|
|
5482
|
+
},
|
|
5483
|
+
{
|
|
5484
|
+
"kind": "field",
|
|
5485
|
+
"name": "shouldRunDisconnect",
|
|
5486
|
+
"return": {
|
|
5487
|
+
"type": {
|
|
5488
|
+
"text": ""
|
|
5489
|
+
}
|
|
5490
|
+
},
|
|
5491
|
+
"readonly": true,
|
|
5492
|
+
"inheritedFrom": {
|
|
5493
|
+
"name": "LifecycleMixin",
|
|
5494
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
5495
|
+
}
|
|
5496
|
+
},
|
|
5497
|
+
{
|
|
5498
|
+
"kind": "field",
|
|
5499
|
+
"name": "shouldRunConnect",
|
|
5500
|
+
"return": {
|
|
5501
|
+
"type": {
|
|
5502
|
+
"text": ""
|
|
5503
|
+
}
|
|
5504
|
+
},
|
|
5505
|
+
"readonly": true,
|
|
5506
|
+
"inheritedFrom": {
|
|
5507
|
+
"name": "LifecycleMixin",
|
|
5508
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
5509
|
+
}
|
|
5342
5510
|
},
|
|
5343
5511
|
{
|
|
5344
5512
|
"kind": "method",
|
|
5345
|
-
"name": "
|
|
5346
|
-
"privacy": "public",
|
|
5513
|
+
"name": "#_blockLifecycleDueToTokenChange",
|
|
5347
5514
|
"return": {
|
|
5348
5515
|
"type": {
|
|
5349
5516
|
"text": "boolean"
|
|
@@ -5351,19 +5518,16 @@
|
|
|
5351
5518
|
},
|
|
5352
5519
|
"parameters": [
|
|
5353
5520
|
{
|
|
5354
|
-
"name": "
|
|
5521
|
+
"name": "lifecycleType",
|
|
5522
|
+
"type": {
|
|
5523
|
+
"text": "Lifecycletype"
|
|
5524
|
+
}
|
|
5355
5525
|
}
|
|
5356
|
-
]
|
|
5357
|
-
|
|
5358
|
-
|
|
5359
|
-
|
|
5360
|
-
|
|
5361
|
-
"privacy": "public"
|
|
5362
|
-
},
|
|
5363
|
-
{
|
|
5364
|
-
"kind": "field",
|
|
5365
|
-
"name": "dataTestId",
|
|
5366
|
-
"readonly": true
|
|
5526
|
+
],
|
|
5527
|
+
"inheritedFrom": {
|
|
5528
|
+
"name": "LifecycleMixin",
|
|
5529
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
5530
|
+
}
|
|
5367
5531
|
},
|
|
5368
5532
|
{
|
|
5369
5533
|
"kind": "field",
|
|
@@ -5477,82 +5641,92 @@
|
|
|
5477
5641
|
}
|
|
5478
5642
|
}
|
|
5479
5643
|
],
|
|
5644
|
+
"mixins": [
|
|
5645
|
+
{
|
|
5646
|
+
"name": "LifecycleMixin",
|
|
5647
|
+
"package": "@genesislcap/foundation-utils"
|
|
5648
|
+
}
|
|
5649
|
+
],
|
|
5480
5650
|
"superclass": {
|
|
5481
5651
|
"name": "FoundationElement",
|
|
5482
5652
|
"package": "@microsoft/fast-foundation"
|
|
5483
5653
|
},
|
|
5484
|
-
"tagName": "
|
|
5654
|
+
"tagName": "grid-pro-column",
|
|
5485
5655
|
"customElement": true
|
|
5486
|
-
},
|
|
5487
|
-
{
|
|
5488
|
-
"kind": "variable",
|
|
5489
|
-
"name": "actionHeightMultiplier",
|
|
5490
|
-
"description": "The base height multiplier for the action renderer.",
|
|
5491
|
-
"privacy": "public"
|
|
5492
|
-
},
|
|
5493
|
-
{
|
|
5494
|
-
"kind": "variable",
|
|
5495
|
-
"name": "agActionRendererStyles",
|
|
5496
|
-
"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 color: var(--accent-foreground-rest);\n display: flex;\n height: calc(\n (var(--base-height-multiplier) + var(--density)) * var(--design-unit) *\n var(--action-height-multiplier)\n );\n }\n`",
|
|
5497
|
-
"description": "The AG Action Renderer Styles.",
|
|
5498
|
-
"privacy": "public"
|
|
5499
|
-
},
|
|
5500
|
-
{
|
|
5501
|
-
"kind": "variable",
|
|
5502
|
-
"name": "foundationGridProActionRenderer",
|
|
5503
|
-
"description": "A function that returns a Foundation Action Renderer for configuring the component with a DesignSystem.",
|
|
5504
|
-
"privacy": "public"
|
|
5505
5656
|
}
|
|
5506
5657
|
],
|
|
5507
5658
|
"exports": [
|
|
5508
5659
|
{
|
|
5509
5660
|
"kind": "js",
|
|
5510
|
-
"name": "
|
|
5661
|
+
"name": "GridProColumn",
|
|
5511
5662
|
"declaration": {
|
|
5512
|
-
"name": "
|
|
5513
|
-
"module": "src/
|
|
5663
|
+
"name": "GridProColumn",
|
|
5664
|
+
"module": "src/column/column.ts"
|
|
5514
5665
|
}
|
|
5515
5666
|
},
|
|
5516
5667
|
{
|
|
5517
|
-
"kind": "
|
|
5518
|
-
"name": "
|
|
5668
|
+
"kind": "custom-element-definition",
|
|
5669
|
+
"name": "grid-pro-column",
|
|
5519
5670
|
"declaration": {
|
|
5520
|
-
"name": "
|
|
5521
|
-
"module": "src/
|
|
5671
|
+
"name": "GridProColumn",
|
|
5672
|
+
"module": "src/column/column.ts"
|
|
5673
|
+
}
|
|
5674
|
+
}
|
|
5675
|
+
]
|
|
5676
|
+
},
|
|
5677
|
+
{
|
|
5678
|
+
"kind": "javascript-module",
|
|
5679
|
+
"path": "src/column/index.ts",
|
|
5680
|
+
"declarations": [],
|
|
5681
|
+
"exports": [
|
|
5682
|
+
{
|
|
5683
|
+
"kind": "js",
|
|
5684
|
+
"name": "*",
|
|
5685
|
+
"declaration": {
|
|
5686
|
+
"name": "*",
|
|
5687
|
+
"package": "./column.template"
|
|
5522
5688
|
}
|
|
5523
5689
|
},
|
|
5524
5690
|
{
|
|
5525
5691
|
"kind": "js",
|
|
5526
|
-
"name": "
|
|
5692
|
+
"name": "*",
|
|
5527
5693
|
"declaration": {
|
|
5528
|
-
"name": "
|
|
5529
|
-
"
|
|
5694
|
+
"name": "*",
|
|
5695
|
+
"package": "./column"
|
|
5530
5696
|
}
|
|
5531
5697
|
},
|
|
5532
5698
|
{
|
|
5533
5699
|
"kind": "js",
|
|
5534
|
-
"name": "
|
|
5700
|
+
"name": "*",
|
|
5535
5701
|
"declaration": {
|
|
5536
|
-
"name": "
|
|
5537
|
-
"
|
|
5702
|
+
"name": "*",
|
|
5703
|
+
"package": "./utils"
|
|
5538
5704
|
}
|
|
5539
5705
|
}
|
|
5540
5706
|
]
|
|
5541
5707
|
},
|
|
5542
5708
|
{
|
|
5543
5709
|
"kind": "javascript-module",
|
|
5544
|
-
"path": "src/cell-renderers/
|
|
5710
|
+
"path": "src/cell-renderers/action.renderer.ts",
|
|
5545
5711
|
"declarations": [
|
|
5546
5712
|
{
|
|
5547
5713
|
"kind": "class",
|
|
5548
|
-
"description": "The
|
|
5549
|
-
"name": "
|
|
5714
|
+
"description": "The AG Action Renderer element.",
|
|
5715
|
+
"name": "ActionRenderer",
|
|
5550
5716
|
"members": [
|
|
5551
5717
|
{
|
|
5552
5718
|
"kind": "field",
|
|
5553
5719
|
"name": "params",
|
|
5554
5720
|
"type": {
|
|
5555
|
-
"text": "ICellRendererParams"
|
|
5721
|
+
"text": "ICellRendererParams & ActionRendererParams"
|
|
5722
|
+
},
|
|
5723
|
+
"privacy": "public"
|
|
5724
|
+
},
|
|
5725
|
+
{
|
|
5726
|
+
"kind": "field",
|
|
5727
|
+
"name": "pendingAction",
|
|
5728
|
+
"type": {
|
|
5729
|
+
"text": "boolean"
|
|
5556
5730
|
},
|
|
5557
5731
|
"privacy": "public"
|
|
5558
5732
|
},
|
|
@@ -5564,7 +5738,7 @@
|
|
|
5564
5738
|
{
|
|
5565
5739
|
"name": "params",
|
|
5566
5740
|
"type": {
|
|
5567
|
-
"text": "ICellRendererParams"
|
|
5741
|
+
"text": "ICellRendererParams & ActionRendererParams"
|
|
5568
5742
|
}
|
|
5569
5743
|
}
|
|
5570
5744
|
]
|
|
@@ -5592,6 +5766,31 @@
|
|
|
5592
5766
|
}
|
|
5593
5767
|
]
|
|
5594
5768
|
},
|
|
5769
|
+
{
|
|
5770
|
+
"kind": "method",
|
|
5771
|
+
"name": "isDisabled",
|
|
5772
|
+
"privacy": "public",
|
|
5773
|
+
"return": {
|
|
5774
|
+
"type": {
|
|
5775
|
+
"text": "boolean"
|
|
5776
|
+
}
|
|
5777
|
+
},
|
|
5778
|
+
"parameters": [
|
|
5779
|
+
{
|
|
5780
|
+
"name": "data"
|
|
5781
|
+
}
|
|
5782
|
+
]
|
|
5783
|
+
},
|
|
5784
|
+
{
|
|
5785
|
+
"kind": "method",
|
|
5786
|
+
"name": "clickHandler",
|
|
5787
|
+
"privacy": "public"
|
|
5788
|
+
},
|
|
5789
|
+
{
|
|
5790
|
+
"kind": "field",
|
|
5791
|
+
"name": "dataTestId",
|
|
5792
|
+
"readonly": true
|
|
5793
|
+
},
|
|
5595
5794
|
{
|
|
5596
5795
|
"kind": "field",
|
|
5597
5796
|
"name": "_presentation",
|
|
@@ -5708,134 +5907,81 @@
|
|
|
5708
5907
|
"name": "FoundationElement",
|
|
5709
5908
|
"package": "@microsoft/fast-foundation"
|
|
5710
5909
|
},
|
|
5711
|
-
"tagName": "%%prefix%%-grid-pro-
|
|
5910
|
+
"tagName": "%%prefix%%-grid-pro-action-renderer",
|
|
5712
5911
|
"customElement": true
|
|
5713
5912
|
},
|
|
5714
5913
|
{
|
|
5715
5914
|
"kind": "variable",
|
|
5716
|
-
"name": "
|
|
5717
|
-
"description": "
|
|
5915
|
+
"name": "actionHeightMultiplier",
|
|
5916
|
+
"description": "The base height multiplier for the action renderer.",
|
|
5718
5917
|
"privacy": "public"
|
|
5719
5918
|
},
|
|
5720
5919
|
{
|
|
5721
|
-
"kind": "
|
|
5722
|
-
"name": "
|
|
5723
|
-
"
|
|
5724
|
-
|
|
5725
|
-
|
|
5726
|
-
|
|
5727
|
-
|
|
5728
|
-
"
|
|
5729
|
-
|
|
5730
|
-
|
|
5731
|
-
"type": {
|
|
5732
|
-
"text": "ActionMenuItem[]"
|
|
5733
|
-
},
|
|
5734
|
-
"description": "Array of `ActionMenuItem` to be displayed in the menu."
|
|
5735
|
-
},
|
|
5736
|
-
{
|
|
5737
|
-
"name": "overrideDef",
|
|
5738
|
-
"default": "{}",
|
|
5739
|
-
"type": {
|
|
5740
|
-
"text": "ColDef"
|
|
5741
|
-
},
|
|
5742
|
-
"description": "Optional override for the ColDef. Will override any of the default values. Default is an empty object."
|
|
5743
|
-
},
|
|
5744
|
-
{
|
|
5745
|
-
"name": "customActionsOpenerName",
|
|
5746
|
-
"default": "'⋮'",
|
|
5747
|
-
"type": {
|
|
5748
|
-
"text": "string"
|
|
5749
|
-
},
|
|
5750
|
-
"description": "Optional custom name for the button that opens the menu. Default is '⋮'."
|
|
5751
|
-
},
|
|
5752
|
-
{
|
|
5753
|
-
"name": "isVertical",
|
|
5754
|
-
"default": "false",
|
|
5755
|
-
"type": {
|
|
5756
|
-
"text": "boolean"
|
|
5757
|
-
},
|
|
5758
|
-
"description": "Optional flag to display the menu vertically. Default is false (displays the menu horizontally, follow the rowHeight)."
|
|
5759
|
-
},
|
|
5760
|
-
{
|
|
5761
|
-
"name": "buttonAppearance",
|
|
5762
|
-
"optional": true,
|
|
5763
|
-
"type": {
|
|
5764
|
-
"text": "string"
|
|
5765
|
-
},
|
|
5766
|
-
"description": "Optional appearance for the button that opens the menu. Default is 'outline'."
|
|
5767
|
-
}
|
|
5768
|
-
],
|
|
5769
|
-
"description": "Helper function to get ColDef https://www.ag-grid.com/javascript-data-grid/column-properties/ for Actions Menu Renderer.\nWill take the parameter values for a base ColDef and merge them with the overrideDef (if specified).",
|
|
5920
|
+
"kind": "variable",
|
|
5921
|
+
"name": "agActionRendererStyles",
|
|
5922
|
+
"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 color: var(--accent-foreground-rest);\n display: flex;\n height: calc(\n (var(--base-height-multiplier) + var(--density)) * var(--design-unit) *\n var(--action-height-multiplier)\n );\n }\n`",
|
|
5923
|
+
"description": "The AG Action Renderer Styles.",
|
|
5924
|
+
"privacy": "public"
|
|
5925
|
+
},
|
|
5926
|
+
{
|
|
5927
|
+
"kind": "variable",
|
|
5928
|
+
"name": "foundationGridProActionRenderer",
|
|
5929
|
+
"description": "A function that returns a Foundation Action Renderer for configuring the component with a DesignSystem.",
|
|
5770
5930
|
"privacy": "public"
|
|
5771
5931
|
}
|
|
5772
5932
|
],
|
|
5773
5933
|
"exports": [
|
|
5774
5934
|
{
|
|
5775
5935
|
"kind": "js",
|
|
5776
|
-
"name": "
|
|
5936
|
+
"name": "ActionRenderer",
|
|
5777
5937
|
"declaration": {
|
|
5778
|
-
"name": "
|
|
5779
|
-
"module": "src/cell-renderers/
|
|
5938
|
+
"name": "ActionRenderer",
|
|
5939
|
+
"module": "src/cell-renderers/action.renderer.ts"
|
|
5780
5940
|
}
|
|
5781
5941
|
},
|
|
5782
5942
|
{
|
|
5783
5943
|
"kind": "js",
|
|
5784
|
-
"name": "
|
|
5944
|
+
"name": "actionHeightMultiplier",
|
|
5785
5945
|
"declaration": {
|
|
5786
|
-
"name": "
|
|
5787
|
-
"module": "src/cell-renderers/
|
|
5946
|
+
"name": "actionHeightMultiplier",
|
|
5947
|
+
"module": "src/cell-renderers/action.renderer.ts"
|
|
5788
5948
|
}
|
|
5789
5949
|
},
|
|
5790
5950
|
{
|
|
5791
5951
|
"kind": "js",
|
|
5792
|
-
"name": "
|
|
5952
|
+
"name": "agActionRendererStyles",
|
|
5793
5953
|
"declaration": {
|
|
5794
|
-
"name": "
|
|
5795
|
-
"module": "src/cell-renderers/
|
|
5954
|
+
"name": "agActionRendererStyles",
|
|
5955
|
+
"module": "src/cell-renderers/action.renderer.ts"
|
|
5956
|
+
}
|
|
5957
|
+
},
|
|
5958
|
+
{
|
|
5959
|
+
"kind": "js",
|
|
5960
|
+
"name": "foundationGridProActionRenderer",
|
|
5961
|
+
"declaration": {
|
|
5962
|
+
"name": "foundationGridProActionRenderer",
|
|
5963
|
+
"module": "src/cell-renderers/action.renderer.ts"
|
|
5796
5964
|
}
|
|
5797
5965
|
}
|
|
5798
5966
|
]
|
|
5799
5967
|
},
|
|
5800
5968
|
{
|
|
5801
5969
|
"kind": "javascript-module",
|
|
5802
|
-
"path": "src/cell-renderers/
|
|
5970
|
+
"path": "src/cell-renderers/actions-menu.renderer.ts",
|
|
5803
5971
|
"declarations": [
|
|
5804
5972
|
{
|
|
5805
5973
|
"kind": "class",
|
|
5806
|
-
"description": "The
|
|
5807
|
-
"name": "
|
|
5974
|
+
"description": "The Actions Menu Renderer element.",
|
|
5975
|
+
"name": "ActionsMenuRenderer",
|
|
5808
5976
|
"members": [
|
|
5809
5977
|
{
|
|
5810
5978
|
"kind": "field",
|
|
5811
5979
|
"name": "params",
|
|
5812
5980
|
"type": {
|
|
5813
|
-
"text": "ICellRendererParams
|
|
5981
|
+
"text": "ICellRendererParams"
|
|
5814
5982
|
},
|
|
5815
5983
|
"privacy": "public"
|
|
5816
5984
|
},
|
|
5817
|
-
{
|
|
5818
|
-
"kind": "field",
|
|
5819
|
-
"name": "selected",
|
|
5820
|
-
"type": {
|
|
5821
|
-
"text": "boolean"
|
|
5822
|
-
}
|
|
5823
|
-
},
|
|
5824
|
-
{
|
|
5825
|
-
"kind": "method",
|
|
5826
|
-
"name": "isDisabled",
|
|
5827
|
-
"privacy": "public",
|
|
5828
|
-
"return": {
|
|
5829
|
-
"type": {
|
|
5830
|
-
"text": "boolean"
|
|
5831
|
-
}
|
|
5832
|
-
},
|
|
5833
|
-
"parameters": [
|
|
5834
|
-
{
|
|
5835
|
-
"name": "data"
|
|
5836
|
-
}
|
|
5837
|
-
]
|
|
5838
|
-
},
|
|
5839
5985
|
{
|
|
5840
5986
|
"kind": "method",
|
|
5841
5987
|
"name": "init",
|
|
@@ -5859,11 +6005,6 @@
|
|
|
5859
6005
|
}
|
|
5860
6006
|
}
|
|
5861
6007
|
},
|
|
5862
|
-
{
|
|
5863
|
-
"kind": "method",
|
|
5864
|
-
"name": "destroy",
|
|
5865
|
-
"privacy": "public"
|
|
5866
|
-
},
|
|
5867
6008
|
{
|
|
5868
6009
|
"kind": "method",
|
|
5869
6010
|
"name": "refresh",
|
|
@@ -5877,14 +6018,6 @@
|
|
|
5877
6018
|
}
|
|
5878
6019
|
]
|
|
5879
6020
|
},
|
|
5880
|
-
{
|
|
5881
|
-
"kind": "method",
|
|
5882
|
-
"name": "getValue"
|
|
5883
|
-
},
|
|
5884
|
-
{
|
|
5885
|
-
"kind": "method",
|
|
5886
|
-
"name": "isCancelBeforeStart"
|
|
5887
|
-
},
|
|
5888
6021
|
{
|
|
5889
6022
|
"kind": "field",
|
|
5890
6023
|
"name": "_presentation",
|
|
@@ -6001,92 +6134,134 @@
|
|
|
6001
6134
|
"name": "FoundationElement",
|
|
6002
6135
|
"package": "@microsoft/fast-foundation"
|
|
6003
6136
|
},
|
|
6004
|
-
"tagName": "%%prefix%%-
|
|
6137
|
+
"tagName": "%%prefix%%-grid-pro-actions-menu-renderer",
|
|
6005
6138
|
"customElement": true
|
|
6006
6139
|
},
|
|
6007
6140
|
{
|
|
6008
6141
|
"kind": "variable",
|
|
6009
|
-
"name": "
|
|
6010
|
-
"
|
|
6011
|
-
"description": "The AG Boolean Renderer Styles.",
|
|
6142
|
+
"name": "foundationGridProActionsMenuRenderer",
|
|
6143
|
+
"description": "A function that returns a Foundation Actions Menu for configuring the component with a DesignSystem.",
|
|
6012
6144
|
"privacy": "public"
|
|
6013
6145
|
},
|
|
6014
6146
|
{
|
|
6015
6147
|
"kind": "function",
|
|
6016
|
-
"name": "
|
|
6017
|
-
"parameters": [
|
|
6018
|
-
{
|
|
6019
|
-
"name": "designSystem",
|
|
6020
|
-
"default": "'foundation'",
|
|
6021
|
-
"description": "The design system prefix to use. Defaults to 'foundation'."
|
|
6022
|
-
}
|
|
6023
|
-
],
|
|
6024
|
-
"description": "Get a Design System prefixed Checkbox template.",
|
|
6148
|
+
"name": "getActionsMenuDef",
|
|
6025
6149
|
"return": {
|
|
6026
6150
|
"type": {
|
|
6027
6151
|
"text": ""
|
|
6028
6152
|
}
|
|
6029
6153
|
},
|
|
6030
|
-
"
|
|
6031
|
-
|
|
6032
|
-
|
|
6033
|
-
|
|
6034
|
-
|
|
6035
|
-
|
|
6036
|
-
|
|
6037
|
-
|
|
6038
|
-
|
|
6039
|
-
|
|
6040
|
-
|
|
6041
|
-
|
|
6042
|
-
|
|
6043
|
-
|
|
6044
|
-
|
|
6045
|
-
|
|
6046
|
-
|
|
6047
|
-
|
|
6048
|
-
|
|
6049
|
-
|
|
6050
|
-
|
|
6051
|
-
|
|
6052
|
-
|
|
6053
|
-
|
|
6054
|
-
|
|
6055
|
-
|
|
6056
|
-
|
|
6057
|
-
|
|
6058
|
-
|
|
6059
|
-
|
|
6060
|
-
|
|
6061
|
-
|
|
6062
|
-
|
|
6154
|
+
"parameters": [
|
|
6155
|
+
{
|
|
6156
|
+
"name": "actions",
|
|
6157
|
+
"type": {
|
|
6158
|
+
"text": "ActionMenuItem[]"
|
|
6159
|
+
},
|
|
6160
|
+
"description": "Array of `ActionMenuItem` to be displayed in the menu."
|
|
6161
|
+
},
|
|
6162
|
+
{
|
|
6163
|
+
"name": "overrideDef",
|
|
6164
|
+
"default": "{}",
|
|
6165
|
+
"type": {
|
|
6166
|
+
"text": "ColDef"
|
|
6167
|
+
},
|
|
6168
|
+
"description": "Optional override for the ColDef. Will override any of the default values. Default is an empty object."
|
|
6169
|
+
},
|
|
6170
|
+
{
|
|
6171
|
+
"name": "customActionsOpenerName",
|
|
6172
|
+
"default": "'⋮'",
|
|
6173
|
+
"type": {
|
|
6174
|
+
"text": "string"
|
|
6175
|
+
},
|
|
6176
|
+
"description": "Optional custom name for the button that opens the menu. Default is '⋮'."
|
|
6177
|
+
},
|
|
6178
|
+
{
|
|
6179
|
+
"name": "isVertical",
|
|
6180
|
+
"default": "false",
|
|
6181
|
+
"type": {
|
|
6182
|
+
"text": "boolean"
|
|
6183
|
+
},
|
|
6184
|
+
"description": "Optional flag to display the menu vertically. Default is false (displays the menu horizontally, follow the rowHeight)."
|
|
6185
|
+
},
|
|
6186
|
+
{
|
|
6187
|
+
"name": "buttonAppearance",
|
|
6188
|
+
"optional": true,
|
|
6189
|
+
"type": {
|
|
6190
|
+
"text": "string"
|
|
6191
|
+
},
|
|
6192
|
+
"description": "Optional appearance for the button that opens the menu. Default is 'outline'."
|
|
6193
|
+
}
|
|
6194
|
+
],
|
|
6195
|
+
"description": "Helper function to get ColDef https://www.ag-grid.com/javascript-data-grid/column-properties/ for Actions Menu Renderer.\nWill take the parameter values for a base ColDef and merge them with the overrideDef (if specified).",
|
|
6196
|
+
"privacy": "public"
|
|
6197
|
+
}
|
|
6198
|
+
],
|
|
6199
|
+
"exports": [
|
|
6200
|
+
{
|
|
6201
|
+
"kind": "js",
|
|
6202
|
+
"name": "ActionsMenuRenderer",
|
|
6203
|
+
"declaration": {
|
|
6204
|
+
"name": "ActionsMenuRenderer",
|
|
6205
|
+
"module": "src/cell-renderers/actions-menu.renderer.ts"
|
|
6206
|
+
}
|
|
6063
6207
|
},
|
|
6064
6208
|
{
|
|
6065
6209
|
"kind": "js",
|
|
6066
|
-
"name": "
|
|
6210
|
+
"name": "foundationGridProActionsMenuRenderer",
|
|
6067
6211
|
"declaration": {
|
|
6068
|
-
"name": "
|
|
6069
|
-
"module": "src/cell-renderers/
|
|
6212
|
+
"name": "foundationGridProActionsMenuRenderer",
|
|
6213
|
+
"module": "src/cell-renderers/actions-menu.renderer.ts"
|
|
6214
|
+
}
|
|
6215
|
+
},
|
|
6216
|
+
{
|
|
6217
|
+
"kind": "js",
|
|
6218
|
+
"name": "getActionsMenuDef",
|
|
6219
|
+
"declaration": {
|
|
6220
|
+
"name": "getActionsMenuDef",
|
|
6221
|
+
"module": "src/cell-renderers/actions-menu.renderer.ts"
|
|
6070
6222
|
}
|
|
6071
6223
|
}
|
|
6072
6224
|
]
|
|
6073
6225
|
},
|
|
6074
6226
|
{
|
|
6075
6227
|
"kind": "javascript-module",
|
|
6076
|
-
"path": "src/cell-renderers/
|
|
6228
|
+
"path": "src/cell-renderers/boolean.renderer.ts",
|
|
6077
6229
|
"declarations": [
|
|
6078
6230
|
{
|
|
6079
6231
|
"kind": "class",
|
|
6080
|
-
"description": "The AG
|
|
6081
|
-
"name": "
|
|
6232
|
+
"description": "The AG Boolean Renderer element.",
|
|
6233
|
+
"name": "BooleanRenderer",
|
|
6082
6234
|
"members": [
|
|
6083
6235
|
{
|
|
6084
6236
|
"kind": "field",
|
|
6085
|
-
"name": "
|
|
6237
|
+
"name": "params",
|
|
6086
6238
|
"type": {
|
|
6087
|
-
"text": "
|
|
6239
|
+
"text": "ICellRendererParams & BooleanRendererParams"
|
|
6240
|
+
},
|
|
6241
|
+
"privacy": "public"
|
|
6242
|
+
},
|
|
6243
|
+
{
|
|
6244
|
+
"kind": "field",
|
|
6245
|
+
"name": "selected",
|
|
6246
|
+
"type": {
|
|
6247
|
+
"text": "boolean"
|
|
6088
6248
|
}
|
|
6089
6249
|
},
|
|
6250
|
+
{
|
|
6251
|
+
"kind": "method",
|
|
6252
|
+
"name": "isDisabled",
|
|
6253
|
+
"privacy": "public",
|
|
6254
|
+
"return": {
|
|
6255
|
+
"type": {
|
|
6256
|
+
"text": "boolean"
|
|
6257
|
+
}
|
|
6258
|
+
},
|
|
6259
|
+
"parameters": [
|
|
6260
|
+
{
|
|
6261
|
+
"name": "data"
|
|
6262
|
+
}
|
|
6263
|
+
]
|
|
6264
|
+
},
|
|
6090
6265
|
{
|
|
6091
6266
|
"kind": "method",
|
|
6092
6267
|
"name": "init",
|
|
@@ -6110,6 +6285,11 @@
|
|
|
6110
6285
|
}
|
|
6111
6286
|
}
|
|
6112
6287
|
},
|
|
6288
|
+
{
|
|
6289
|
+
"kind": "method",
|
|
6290
|
+
"name": "destroy",
|
|
6291
|
+
"privacy": "public"
|
|
6292
|
+
},
|
|
6113
6293
|
{
|
|
6114
6294
|
"kind": "method",
|
|
6115
6295
|
"name": "refresh",
|
|
@@ -6123,6 +6303,14 @@
|
|
|
6123
6303
|
}
|
|
6124
6304
|
]
|
|
6125
6305
|
},
|
|
6306
|
+
{
|
|
6307
|
+
"kind": "method",
|
|
6308
|
+
"name": "getValue"
|
|
6309
|
+
},
|
|
6310
|
+
{
|
|
6311
|
+
"kind": "method",
|
|
6312
|
+
"name": "isCancelBeforeStart"
|
|
6313
|
+
},
|
|
6126
6314
|
{
|
|
6127
6315
|
"kind": "field",
|
|
6128
6316
|
"name": "_presentation",
|
|
@@ -6239,19 +6427,19 @@
|
|
|
6239
6427
|
"name": "FoundationElement",
|
|
6240
6428
|
"package": "@microsoft/fast-foundation"
|
|
6241
6429
|
},
|
|
6242
|
-
"tagName": "%%prefix%%-
|
|
6430
|
+
"tagName": "%%prefix%%-boolean-renderer",
|
|
6243
6431
|
"customElement": true
|
|
6244
6432
|
},
|
|
6245
6433
|
{
|
|
6246
6434
|
"kind": "variable",
|
|
6247
|
-
"name": "
|
|
6248
|
-
"default": "css`\n :host {\n
|
|
6249
|
-
"description": "The AG
|
|
6435
|
+
"name": "agBooleanRendererStyles",
|
|
6436
|
+
"default": "css`\n :host {\n align-center: center;\n display: flex;\n height: 100%;\n }\n`",
|
|
6437
|
+
"description": "The AG Boolean Renderer Styles.",
|
|
6250
6438
|
"privacy": "public"
|
|
6251
6439
|
},
|
|
6252
6440
|
{
|
|
6253
6441
|
"kind": "function",
|
|
6254
|
-
"name": "
|
|
6442
|
+
"name": "getAgBooleanRendererTemplate",
|
|
6255
6443
|
"parameters": [
|
|
6256
6444
|
{
|
|
6257
6445
|
"name": "designSystem",
|
|
@@ -6269,90 +6457,61 @@
|
|
|
6269
6457
|
},
|
|
6270
6458
|
{
|
|
6271
6459
|
"kind": "variable",
|
|
6272
|
-
"name": "
|
|
6273
|
-
"description": "A function that returns a Foundation
|
|
6460
|
+
"name": "foundationAgBooleanRenderer",
|
|
6461
|
+
"description": "A function that returns a Foundation Boolean Renderer registration for configuring the component with a DesignSystem.",
|
|
6274
6462
|
"privacy": "public"
|
|
6275
6463
|
}
|
|
6276
6464
|
],
|
|
6277
6465
|
"exports": [
|
|
6278
6466
|
{
|
|
6279
6467
|
"kind": "js",
|
|
6280
|
-
"name": "
|
|
6468
|
+
"name": "BooleanRenderer",
|
|
6281
6469
|
"declaration": {
|
|
6282
|
-
"name": "
|
|
6283
|
-
"module": "src/cell-renderers/
|
|
6470
|
+
"name": "BooleanRenderer",
|
|
6471
|
+
"module": "src/cell-renderers/boolean.renderer.ts"
|
|
6284
6472
|
}
|
|
6285
6473
|
},
|
|
6286
6474
|
{
|
|
6287
6475
|
"kind": "js",
|
|
6288
|
-
"name": "
|
|
6476
|
+
"name": "agBooleanRendererStyles",
|
|
6289
6477
|
"declaration": {
|
|
6290
|
-
"name": "
|
|
6291
|
-
"module": "src/cell-renderers/
|
|
6478
|
+
"name": "agBooleanRendererStyles",
|
|
6479
|
+
"module": "src/cell-renderers/boolean.renderer.ts"
|
|
6292
6480
|
}
|
|
6293
6481
|
},
|
|
6294
6482
|
{
|
|
6295
6483
|
"kind": "js",
|
|
6296
|
-
"name": "
|
|
6484
|
+
"name": "getAgBooleanRendererTemplate",
|
|
6297
6485
|
"declaration": {
|
|
6298
|
-
"name": "
|
|
6299
|
-
"module": "src/cell-renderers/
|
|
6486
|
+
"name": "getAgBooleanRendererTemplate",
|
|
6487
|
+
"module": "src/cell-renderers/boolean.renderer.ts"
|
|
6300
6488
|
}
|
|
6301
6489
|
},
|
|
6302
6490
|
{
|
|
6303
6491
|
"kind": "js",
|
|
6304
|
-
"name": "
|
|
6492
|
+
"name": "foundationAgBooleanRenderer",
|
|
6305
6493
|
"declaration": {
|
|
6306
|
-
"name": "
|
|
6307
|
-
"module": "src/cell-renderers/
|
|
6494
|
+
"name": "foundationAgBooleanRenderer",
|
|
6495
|
+
"module": "src/cell-renderers/boolean.renderer.ts"
|
|
6308
6496
|
}
|
|
6309
6497
|
}
|
|
6310
6498
|
]
|
|
6311
6499
|
},
|
|
6312
6500
|
{
|
|
6313
6501
|
"kind": "javascript-module",
|
|
6314
|
-
"path": "src/cell-renderers/
|
|
6502
|
+
"path": "src/cell-renderers/editable.renderer.ts",
|
|
6315
6503
|
"declarations": [
|
|
6316
|
-
{
|
|
6317
|
-
"kind": "variable",
|
|
6318
|
-
"name": "agIconRendererStyles",
|
|
6319
|
-
"default": "css`\n :host {\n display: flex;\n align-items: center;\n justify-content: center;\n height: 100%;\n width: 100%;\n position: relative;\n }\n\n .icon-container {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: 5px;\n }\n\n .icon-container.with-hover {\n padding: 5px;\n line-height: 1;\n }\n\n .icon-container.with-hover:hover {\n cursor: pointer;\n background-color: var(--neutral-stroke-hover);\n }\n\n .icon-container.disabled {\n cursor: not-allowed;\n opacity: 0.5;\n }\n\n .secondary-icon {\n position: absolute;\n top: 50%;\n bottom: 0px;\n right: -5px;\n z-index: 2;\n line-height: 1;\n }\n`",
|
|
6320
|
-
"description": "The AG Icon Renderer Styles.",
|
|
6321
|
-
"privacy": "public"
|
|
6322
|
-
},
|
|
6323
|
-
{
|
|
6324
|
-
"kind": "function",
|
|
6325
|
-
"name": "getIconRendererTemplate",
|
|
6326
|
-
"parameters": [
|
|
6327
|
-
{
|
|
6328
|
-
"name": "designSystem",
|
|
6329
|
-
"default": "'rapid'",
|
|
6330
|
-
"type": {
|
|
6331
|
-
"text": "string"
|
|
6332
|
-
},
|
|
6333
|
-
"description": "The design system prefix to use. Defaults to 'foundation'."
|
|
6334
|
-
}
|
|
6335
|
-
],
|
|
6336
|
-
"description": "Get a Design System prefixed Icon template.",
|
|
6337
|
-
"return": {
|
|
6338
|
-
"type": {
|
|
6339
|
-
"text": ""
|
|
6340
|
-
}
|
|
6341
|
-
},
|
|
6342
|
-
"privacy": "public"
|
|
6343
|
-
},
|
|
6344
6504
|
{
|
|
6345
6505
|
"kind": "class",
|
|
6346
|
-
"description": "
|
|
6347
|
-
"name": "
|
|
6506
|
+
"description": "The AG Editable Renderer element.",
|
|
6507
|
+
"name": "EditableRenderer",
|
|
6348
6508
|
"members": [
|
|
6349
6509
|
{
|
|
6350
6510
|
"kind": "field",
|
|
6351
|
-
"name": "
|
|
6511
|
+
"name": "valueFormatted",
|
|
6352
6512
|
"type": {
|
|
6353
|
-
"text": "
|
|
6354
|
-
}
|
|
6355
|
-
"privacy": "public"
|
|
6513
|
+
"text": "string"
|
|
6514
|
+
}
|
|
6356
6515
|
},
|
|
6357
6516
|
{
|
|
6358
6517
|
"kind": "method",
|
|
@@ -6362,7 +6521,7 @@
|
|
|
6362
6521
|
{
|
|
6363
6522
|
"name": "params",
|
|
6364
6523
|
"type": {
|
|
6365
|
-
"text": "
|
|
6524
|
+
"text": "ICellRendererParams"
|
|
6366
6525
|
}
|
|
6367
6526
|
}
|
|
6368
6527
|
]
|
|
@@ -6380,21 +6539,16 @@
|
|
|
6380
6539
|
{
|
|
6381
6540
|
"kind": "method",
|
|
6382
6541
|
"name": "refresh",
|
|
6542
|
+
"privacy": "public",
|
|
6383
6543
|
"parameters": [
|
|
6384
6544
|
{
|
|
6385
|
-
"name": "params"
|
|
6545
|
+
"name": "params",
|
|
6546
|
+
"type": {
|
|
6547
|
+
"text": "ICellRendererParams"
|
|
6548
|
+
}
|
|
6386
6549
|
}
|
|
6387
6550
|
]
|
|
6388
6551
|
},
|
|
6389
|
-
{
|
|
6390
|
-
"kind": "method",
|
|
6391
|
-
"name": "destroy",
|
|
6392
|
-
"return": {
|
|
6393
|
-
"type": {
|
|
6394
|
-
"text": "void"
|
|
6395
|
-
}
|
|
6396
|
-
}
|
|
6397
|
-
},
|
|
6398
6552
|
{
|
|
6399
6553
|
"kind": "field",
|
|
6400
6554
|
"name": "_presentation",
|
|
@@ -6510,35 +6664,307 @@
|
|
|
6510
6664
|
"superclass": {
|
|
6511
6665
|
"name": "FoundationElement",
|
|
6512
6666
|
"package": "@microsoft/fast-foundation"
|
|
6513
|
-
}
|
|
6667
|
+
},
|
|
6668
|
+
"tagName": "%%prefix%%-editable-renderer",
|
|
6669
|
+
"customElement": true
|
|
6514
6670
|
},
|
|
6515
6671
|
{
|
|
6516
6672
|
"kind": "variable",
|
|
6517
|
-
"name": "
|
|
6518
|
-
"
|
|
6673
|
+
"name": "agEditableRendererStyles",
|
|
6674
|
+
"default": "css`\n :host {\n display: flex;\n justify-content: space-between;\n align-items: center;\n }\n`",
|
|
6675
|
+
"description": "The AG Editable Renderer Styles.",
|
|
6676
|
+
"privacy": "public"
|
|
6677
|
+
},
|
|
6678
|
+
{
|
|
6679
|
+
"kind": "function",
|
|
6680
|
+
"name": "getAgEditableRendererTemplate",
|
|
6681
|
+
"parameters": [
|
|
6682
|
+
{
|
|
6683
|
+
"name": "designSystem",
|
|
6684
|
+
"default": "'foundation'",
|
|
6685
|
+
"description": "The design system prefix to use. Defaults to 'foundation'."
|
|
6686
|
+
}
|
|
6687
|
+
],
|
|
6688
|
+
"description": "Get a Design System prefixed Checkbox template.",
|
|
6689
|
+
"return": {
|
|
6690
|
+
"type": {
|
|
6691
|
+
"text": ""
|
|
6692
|
+
}
|
|
6693
|
+
},
|
|
6694
|
+
"privacy": "public"
|
|
6695
|
+
},
|
|
6696
|
+
{
|
|
6697
|
+
"kind": "variable",
|
|
6698
|
+
"name": "foundationAgEditableRenderer",
|
|
6699
|
+
"description": "A function that returns a Foundation Editable Renderer registration for configuring the component with a DesignSystem.",
|
|
6519
6700
|
"privacy": "public"
|
|
6520
6701
|
}
|
|
6521
6702
|
],
|
|
6522
6703
|
"exports": [
|
|
6523
6704
|
{
|
|
6524
6705
|
"kind": "js",
|
|
6525
|
-
"name": "
|
|
6706
|
+
"name": "EditableRenderer",
|
|
6526
6707
|
"declaration": {
|
|
6527
|
-
"name": "
|
|
6528
|
-
"module": "src/cell-renderers/
|
|
6708
|
+
"name": "EditableRenderer",
|
|
6709
|
+
"module": "src/cell-renderers/editable.renderer.ts"
|
|
6529
6710
|
}
|
|
6530
6711
|
},
|
|
6531
6712
|
{
|
|
6532
6713
|
"kind": "js",
|
|
6533
|
-
"name": "
|
|
6714
|
+
"name": "agEditableRendererStyles",
|
|
6534
6715
|
"declaration": {
|
|
6535
|
-
"name": "
|
|
6536
|
-
"module": "src/cell-renderers/
|
|
6716
|
+
"name": "agEditableRendererStyles",
|
|
6717
|
+
"module": "src/cell-renderers/editable.renderer.ts"
|
|
6537
6718
|
}
|
|
6538
6719
|
},
|
|
6539
6720
|
{
|
|
6540
6721
|
"kind": "js",
|
|
6541
|
-
"name": "
|
|
6722
|
+
"name": "getAgEditableRendererTemplate",
|
|
6723
|
+
"declaration": {
|
|
6724
|
+
"name": "getAgEditableRendererTemplate",
|
|
6725
|
+
"module": "src/cell-renderers/editable.renderer.ts"
|
|
6726
|
+
}
|
|
6727
|
+
},
|
|
6728
|
+
{
|
|
6729
|
+
"kind": "js",
|
|
6730
|
+
"name": "foundationAgEditableRenderer",
|
|
6731
|
+
"declaration": {
|
|
6732
|
+
"name": "foundationAgEditableRenderer",
|
|
6733
|
+
"module": "src/cell-renderers/editable.renderer.ts"
|
|
6734
|
+
}
|
|
6735
|
+
}
|
|
6736
|
+
]
|
|
6737
|
+
},
|
|
6738
|
+
{
|
|
6739
|
+
"kind": "javascript-module",
|
|
6740
|
+
"path": "src/cell-renderers/icon.renderer.ts",
|
|
6741
|
+
"declarations": [
|
|
6742
|
+
{
|
|
6743
|
+
"kind": "variable",
|
|
6744
|
+
"name": "agIconRendererStyles",
|
|
6745
|
+
"default": "css`\n :host {\n display: flex;\n align-items: center;\n justify-content: center;\n height: 100%;\n width: 100%;\n position: relative;\n }\n\n .icon-container {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: 5px;\n }\n\n .icon-container.with-hover {\n padding: 5px;\n line-height: 1;\n }\n\n .icon-container.with-hover:hover {\n cursor: pointer;\n background-color: var(--neutral-stroke-hover);\n }\n\n .icon-container.disabled {\n cursor: not-allowed;\n opacity: 0.5;\n }\n\n .secondary-icon {\n position: absolute;\n top: 50%;\n bottom: 0px;\n right: -5px;\n z-index: 2;\n line-height: 1;\n }\n`",
|
|
6746
|
+
"description": "The AG Icon Renderer Styles.",
|
|
6747
|
+
"privacy": "public"
|
|
6748
|
+
},
|
|
6749
|
+
{
|
|
6750
|
+
"kind": "function",
|
|
6751
|
+
"name": "getIconRendererTemplate",
|
|
6752
|
+
"parameters": [
|
|
6753
|
+
{
|
|
6754
|
+
"name": "designSystem",
|
|
6755
|
+
"default": "'rapid'",
|
|
6756
|
+
"type": {
|
|
6757
|
+
"text": "string"
|
|
6758
|
+
},
|
|
6759
|
+
"description": "The design system prefix to use. Defaults to 'foundation'."
|
|
6760
|
+
}
|
|
6761
|
+
],
|
|
6762
|
+
"description": "Get a Design System prefixed Icon template.",
|
|
6763
|
+
"return": {
|
|
6764
|
+
"type": {
|
|
6765
|
+
"text": ""
|
|
6766
|
+
}
|
|
6767
|
+
},
|
|
6768
|
+
"privacy": "public"
|
|
6769
|
+
},
|
|
6770
|
+
{
|
|
6771
|
+
"kind": "class",
|
|
6772
|
+
"description": "Plain ag-Grid cell renderer for icons.\nThis renderer creates the FAST custom element using document.createElement.",
|
|
6773
|
+
"name": "IconRenderer",
|
|
6774
|
+
"members": [
|
|
6775
|
+
{
|
|
6776
|
+
"kind": "field",
|
|
6777
|
+
"name": "params",
|
|
6778
|
+
"type": {
|
|
6779
|
+
"text": "IconRendererParams"
|
|
6780
|
+
},
|
|
6781
|
+
"privacy": "public"
|
|
6782
|
+
},
|
|
6783
|
+
{
|
|
6784
|
+
"kind": "method",
|
|
6785
|
+
"name": "init",
|
|
6786
|
+
"privacy": "public",
|
|
6787
|
+
"parameters": [
|
|
6788
|
+
{
|
|
6789
|
+
"name": "params",
|
|
6790
|
+
"type": {
|
|
6791
|
+
"text": "IconRendererParams & ICellRendererParams"
|
|
6792
|
+
}
|
|
6793
|
+
}
|
|
6794
|
+
]
|
|
6795
|
+
},
|
|
6796
|
+
{
|
|
6797
|
+
"kind": "method",
|
|
6798
|
+
"name": "getGui",
|
|
6799
|
+
"privacy": "public",
|
|
6800
|
+
"return": {
|
|
6801
|
+
"type": {
|
|
6802
|
+
"text": "HTMLElement"
|
|
6803
|
+
}
|
|
6804
|
+
}
|
|
6805
|
+
},
|
|
6806
|
+
{
|
|
6807
|
+
"kind": "method",
|
|
6808
|
+
"name": "refresh",
|
|
6809
|
+
"parameters": [
|
|
6810
|
+
{
|
|
6811
|
+
"name": "params"
|
|
6812
|
+
}
|
|
6813
|
+
]
|
|
6814
|
+
},
|
|
6815
|
+
{
|
|
6816
|
+
"kind": "method",
|
|
6817
|
+
"name": "destroy",
|
|
6818
|
+
"return": {
|
|
6819
|
+
"type": {
|
|
6820
|
+
"text": "void"
|
|
6821
|
+
}
|
|
6822
|
+
}
|
|
6823
|
+
},
|
|
6824
|
+
{
|
|
6825
|
+
"kind": "field",
|
|
6826
|
+
"name": "_presentation",
|
|
6827
|
+
"type": {
|
|
6828
|
+
"text": "ComponentPresentation | null | undefined"
|
|
6829
|
+
},
|
|
6830
|
+
"privacy": "private",
|
|
6831
|
+
"default": "void 0",
|
|
6832
|
+
"inheritedFrom": {
|
|
6833
|
+
"name": "FoundationElement",
|
|
6834
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
6835
|
+
}
|
|
6836
|
+
},
|
|
6837
|
+
{
|
|
6838
|
+
"kind": "field",
|
|
6839
|
+
"name": "$presentation",
|
|
6840
|
+
"type": {
|
|
6841
|
+
"text": "ComponentPresentation | null"
|
|
6842
|
+
},
|
|
6843
|
+
"privacy": "public",
|
|
6844
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
6845
|
+
"inheritedFrom": {
|
|
6846
|
+
"name": "FoundationElement",
|
|
6847
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
6848
|
+
}
|
|
6849
|
+
},
|
|
6850
|
+
{
|
|
6851
|
+
"kind": "field",
|
|
6852
|
+
"name": "template",
|
|
6853
|
+
"type": {
|
|
6854
|
+
"text": "ElementViewTemplate | void | null"
|
|
6855
|
+
},
|
|
6856
|
+
"privacy": "public",
|
|
6857
|
+
"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.",
|
|
6858
|
+
"inheritedFrom": {
|
|
6859
|
+
"name": "FoundationElement",
|
|
6860
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
6861
|
+
}
|
|
6862
|
+
},
|
|
6863
|
+
{
|
|
6864
|
+
"kind": "method",
|
|
6865
|
+
"name": "templateChanged",
|
|
6866
|
+
"privacy": "protected",
|
|
6867
|
+
"return": {
|
|
6868
|
+
"type": {
|
|
6869
|
+
"text": "void"
|
|
6870
|
+
}
|
|
6871
|
+
},
|
|
6872
|
+
"inheritedFrom": {
|
|
6873
|
+
"name": "FoundationElement",
|
|
6874
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
6875
|
+
}
|
|
6876
|
+
},
|
|
6877
|
+
{
|
|
6878
|
+
"kind": "field",
|
|
6879
|
+
"name": "styles",
|
|
6880
|
+
"type": {
|
|
6881
|
+
"text": "ElementStyles | void | null"
|
|
6882
|
+
},
|
|
6883
|
+
"privacy": "public",
|
|
6884
|
+
"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.",
|
|
6885
|
+
"inheritedFrom": {
|
|
6886
|
+
"name": "FoundationElement",
|
|
6887
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
6888
|
+
}
|
|
6889
|
+
},
|
|
6890
|
+
{
|
|
6891
|
+
"kind": "method",
|
|
6892
|
+
"name": "stylesChanged",
|
|
6893
|
+
"privacy": "protected",
|
|
6894
|
+
"return": {
|
|
6895
|
+
"type": {
|
|
6896
|
+
"text": "void"
|
|
6897
|
+
}
|
|
6898
|
+
},
|
|
6899
|
+
"inheritedFrom": {
|
|
6900
|
+
"name": "FoundationElement",
|
|
6901
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
6902
|
+
}
|
|
6903
|
+
},
|
|
6904
|
+
{
|
|
6905
|
+
"kind": "method",
|
|
6906
|
+
"name": "compose",
|
|
6907
|
+
"privacy": "public",
|
|
6908
|
+
"static": true,
|
|
6909
|
+
"return": {
|
|
6910
|
+
"type": {
|
|
6911
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
6912
|
+
}
|
|
6913
|
+
},
|
|
6914
|
+
"parameters": [
|
|
6915
|
+
{
|
|
6916
|
+
"name": "this",
|
|
6917
|
+
"type": {
|
|
6918
|
+
"text": "K"
|
|
6919
|
+
}
|
|
6920
|
+
},
|
|
6921
|
+
{
|
|
6922
|
+
"name": "elementDefinition",
|
|
6923
|
+
"type": {
|
|
6924
|
+
"text": "T"
|
|
6925
|
+
},
|
|
6926
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
6927
|
+
}
|
|
6928
|
+
],
|
|
6929
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
6930
|
+
"inheritedFrom": {
|
|
6931
|
+
"name": "FoundationElement",
|
|
6932
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
6933
|
+
}
|
|
6934
|
+
}
|
|
6935
|
+
],
|
|
6936
|
+
"superclass": {
|
|
6937
|
+
"name": "FoundationElement",
|
|
6938
|
+
"package": "@microsoft/fast-foundation"
|
|
6939
|
+
}
|
|
6940
|
+
},
|
|
6941
|
+
{
|
|
6942
|
+
"kind": "variable",
|
|
6943
|
+
"name": "foundationIconRenderer",
|
|
6944
|
+
"description": "A function that returns a Foundation Icon Renderer registration for configuring the component with a DesignSystem.",
|
|
6945
|
+
"privacy": "public"
|
|
6946
|
+
}
|
|
6947
|
+
],
|
|
6948
|
+
"exports": [
|
|
6949
|
+
{
|
|
6950
|
+
"kind": "js",
|
|
6951
|
+
"name": "agIconRendererStyles",
|
|
6952
|
+
"declaration": {
|
|
6953
|
+
"name": "agIconRendererStyles",
|
|
6954
|
+
"module": "src/cell-renderers/icon.renderer.ts"
|
|
6955
|
+
}
|
|
6956
|
+
},
|
|
6957
|
+
{
|
|
6958
|
+
"kind": "js",
|
|
6959
|
+
"name": "getIconRendererTemplate",
|
|
6960
|
+
"declaration": {
|
|
6961
|
+
"name": "getIconRendererTemplate",
|
|
6962
|
+
"module": "src/cell-renderers/icon.renderer.ts"
|
|
6963
|
+
}
|
|
6964
|
+
},
|
|
6965
|
+
{
|
|
6966
|
+
"kind": "js",
|
|
6967
|
+
"name": "IconRenderer",
|
|
6542
6968
|
"declaration": {
|
|
6543
6969
|
"name": "IconRenderer",
|
|
6544
6970
|
"module": "src/cell-renderers/icon.renderer.ts"
|
|
@@ -7760,140 +8186,293 @@
|
|
|
7760
8186
|
},
|
|
7761
8187
|
{
|
|
7762
8188
|
"kind": "javascript-module",
|
|
7763
|
-
"path": "src/
|
|
8189
|
+
"path": "src/columns-tool-panel/columns-tool-panel.styles.ts",
|
|
7764
8190
|
"declarations": [
|
|
7765
8191
|
{
|
|
7766
8192
|
"kind": "variable",
|
|
7767
|
-
"name": "
|
|
7768
|
-
"
|
|
7769
|
-
|
|
8193
|
+
"name": "columnsToolPanelStyles",
|
|
8194
|
+
"type": {
|
|
8195
|
+
"text": "ElementStyles"
|
|
8196
|
+
},
|
|
8197
|
+
"default": "css`\n .grid-pro-columns-tool-panel {\n display: flex;\n flex-grow: 1;\n flex-direction: column;\n height: 100%;\n min-width: 200px;\n padding: 8px;\n box-sizing: border-box;\n color: var(--ag-foreground-color, var(--neutral-foreground-rest));\n background: var(--ag-control-panel-background-color, var(--neutral-layer-2));\n font-family: var(--ag-font-family, var(--body-font));\n font-size: var(--ag-data-font-size, var(--type-ramp-minus-1-font-size));\n }\n\n .grid-pro-columns-search-wrap {\n flex: 0 0 auto;\n width: 100%;\n margin-bottom: 8px;\n }\n\n .grid-pro-columns-search-wrap > * {\n flex: 0 0 auto !important;\n height: auto !important;\n min-height: 0 !important;\n width: 100%;\n }\n\n .grid-pro-columns-search {\n width: 100%;\n display: block;\n }\n\n .grid-pro-columns-list {\n display: flex;\n flex-direction: column;\n gap: 2px;\n flex: 1 1 0;\n min-height: 0;\n overflow: auto;\n }\n\n .grid-pro-columns-divider {\n height: 1px;\n margin: 8px 0;\n background: var(--ag-border-color, var(--neutral-stroke-divider-rest));\n flex-shrink: 0;\n }\n\n .grid-pro-columns-divider[hidden] {\n display: none;\n }\n\n .grid-pro-columns-item {\n display: flex;\n align-items: center;\n gap: 6px;\n padding: 4px 6px;\n border-radius: 4px;\n cursor: default;\n user-select: none;\n }\n\n .grid-pro-columns-item.dragging {\n opacity: 0.5;\n }\n\n .grid-pro-columns-item.drag-over {\n background: var(--ag-row-hover-color, var(--neutral-fill-hover));\n }\n\n .grid-pro-columns-handle {\n flex: 0 0 auto;\n display: inline-flex;\n align-items: center;\n justify-content: center;\n min-width: 20px;\n min-height: 24px;\n margin: -4px 0;\n padding: 4px 6px;\n box-sizing: border-box;\n opacity: 0.45;\n letter-spacing: -1px;\n font-size: 12px;\n line-height: 1;\n touch-action: none;\n }\n\n .grid-pro-columns-handle[draggable='true'] {\n cursor: grab;\n }\n\n .grid-pro-columns-handle[draggable='true']:active {\n cursor: grabbing;\n }\n\n .grid-pro-columns-item--unselected .grid-pro-columns-handle,\n .grid-pro-columns-handle[hidden] {\n visibility: hidden;\n }\n\n .grid-pro-columns-checkbox {\n flex: 0 0 auto;\n }\n\n .grid-pro-columns-checkbox[aria-checked='true']:not([disabled]):hover::part(checked-indicator) {\n fill: var(--foreground-on-accent-hover);\n }\n\n .grid-pro-columns-label {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n`",
|
|
8198
|
+
"description": "Styles for ColumnsToolPanel.\nClass selectors only — the element has no shadow root so styles land on the\nparent root (Grid Pro shadow / document); `:host` would target the wrong node.",
|
|
7770
8199
|
"privacy": "public"
|
|
7771
8200
|
}
|
|
7772
8201
|
],
|
|
7773
8202
|
"exports": [
|
|
7774
8203
|
{
|
|
7775
8204
|
"kind": "js",
|
|
7776
|
-
"name": "
|
|
8205
|
+
"name": "columnsToolPanelStyles",
|
|
7777
8206
|
"declaration": {
|
|
7778
|
-
"name": "
|
|
7779
|
-
"module": "src/
|
|
8207
|
+
"name": "columnsToolPanelStyles",
|
|
8208
|
+
"module": "src/columns-tool-panel/columns-tool-panel.styles.ts"
|
|
7780
8209
|
}
|
|
7781
8210
|
}
|
|
7782
8211
|
]
|
|
7783
8212
|
},
|
|
7784
8213
|
{
|
|
7785
8214
|
"kind": "javascript-module",
|
|
7786
|
-
"path": "src/
|
|
8215
|
+
"path": "src/columns-tool-panel/columns-tool-panel.template.ts",
|
|
8216
|
+
"declarations": [
|
|
8217
|
+
{
|
|
8218
|
+
"kind": "function",
|
|
8219
|
+
"name": "getColumnsToolPanelTemplate",
|
|
8220
|
+
"parameters": [
|
|
8221
|
+
{
|
|
8222
|
+
"name": "prefix",
|
|
8223
|
+
"default": "'foundation'"
|
|
8224
|
+
}
|
|
8225
|
+
],
|
|
8226
|
+
"description": "Columns tool panel template with Design System prefix (`rapid-text-field`, etc.).",
|
|
8227
|
+
"privacy": "public"
|
|
8228
|
+
},
|
|
8229
|
+
{
|
|
8230
|
+
"kind": "variable",
|
|
8231
|
+
"name": "columnsToolPanelTemplate",
|
|
8232
|
+
"default": "html<ColumnsToolPanel>`\n ${(x) => getColumnsToolPanelTemplate(x.prefix || 'foundation')}\n`",
|
|
8233
|
+
"description": "Default columns tool panel template (`foundation-*` components).",
|
|
8234
|
+
"privacy": "public"
|
|
8235
|
+
}
|
|
8236
|
+
],
|
|
8237
|
+
"exports": [
|
|
8238
|
+
{
|
|
8239
|
+
"kind": "js",
|
|
8240
|
+
"name": "getColumnsToolPanelTemplate",
|
|
8241
|
+
"declaration": {
|
|
8242
|
+
"name": "getColumnsToolPanelTemplate",
|
|
8243
|
+
"module": "src/columns-tool-panel/columns-tool-panel.template.ts"
|
|
8244
|
+
}
|
|
8245
|
+
},
|
|
8246
|
+
{
|
|
8247
|
+
"kind": "js",
|
|
8248
|
+
"name": "columnsToolPanelTemplate",
|
|
8249
|
+
"declaration": {
|
|
8250
|
+
"name": "columnsToolPanelTemplate",
|
|
8251
|
+
"module": "src/columns-tool-panel/columns-tool-panel.template.ts"
|
|
8252
|
+
}
|
|
8253
|
+
}
|
|
8254
|
+
]
|
|
8255
|
+
},
|
|
8256
|
+
{
|
|
8257
|
+
"kind": "javascript-module",
|
|
8258
|
+
"path": "src/columns-tool-panel/columns-tool-panel.ts",
|
|
7787
8259
|
"declarations": [
|
|
7788
8260
|
{
|
|
7789
8261
|
"kind": "class",
|
|
7790
|
-
"description": "
|
|
7791
|
-
"name": "
|
|
8262
|
+
"description": "Custom columns tool panel. Replaces AG Grid Enterprise `agColumnsToolPanel`.",
|
|
8263
|
+
"name": "ColumnsToolPanel",
|
|
7792
8264
|
"members": [
|
|
7793
8265
|
{
|
|
7794
8266
|
"kind": "field",
|
|
7795
|
-
"name": "
|
|
8267
|
+
"name": "prefix",
|
|
7796
8268
|
"type": {
|
|
7797
|
-
"text": "
|
|
8269
|
+
"text": "string"
|
|
7798
8270
|
},
|
|
7799
|
-
"
|
|
8271
|
+
"default": "'foundation'"
|
|
7800
8272
|
},
|
|
7801
8273
|
{
|
|
7802
8274
|
"kind": "field",
|
|
7803
|
-
"name": "
|
|
8275
|
+
"name": "params",
|
|
7804
8276
|
"type": {
|
|
7805
|
-
"text": "
|
|
8277
|
+
"text": "IToolPanelParams"
|
|
7806
8278
|
},
|
|
7807
|
-
"
|
|
8279
|
+
"privacy": "private"
|
|
8280
|
+
},
|
|
8281
|
+
{
|
|
8282
|
+
"kind": "field",
|
|
8283
|
+
"name": "api",
|
|
8284
|
+
"type": {
|
|
8285
|
+
"text": "GridApi | null"
|
|
8286
|
+
},
|
|
8287
|
+
"privacy": "private"
|
|
8288
|
+
},
|
|
8289
|
+
{
|
|
8290
|
+
"kind": "field",
|
|
8291
|
+
"name": "dragColId",
|
|
8292
|
+
"type": {
|
|
8293
|
+
"text": "string | null"
|
|
8294
|
+
},
|
|
8295
|
+
"privacy": "private",
|
|
8296
|
+
"default": "null",
|
|
8297
|
+
"description": "Source colId while a visible-row drag is in progress."
|
|
8298
|
+
},
|
|
8299
|
+
{
|
|
8300
|
+
"kind": "field",
|
|
8301
|
+
"name": "dragOverElement",
|
|
8302
|
+
"type": {
|
|
8303
|
+
"text": "HTMLElement | null"
|
|
8304
|
+
},
|
|
8305
|
+
"privacy": "private",
|
|
8306
|
+
"default": "null",
|
|
8307
|
+
"description": "Row currently showing drag-over highlight (avoid observable updates mid-drag)."
|
|
8308
|
+
},
|
|
8309
|
+
{
|
|
8310
|
+
"kind": "field",
|
|
8311
|
+
"name": "dragBindingAbort",
|
|
8312
|
+
"type": {
|
|
8313
|
+
"text": "AbortController | null"
|
|
8314
|
+
},
|
|
8315
|
+
"privacy": "private",
|
|
8316
|
+
"default": "null",
|
|
8317
|
+
"description": "Cancels row drag listeners when the selected list re-renders."
|
|
8318
|
+
},
|
|
8319
|
+
{
|
|
8320
|
+
"kind": "field",
|
|
8321
|
+
"name": "pendingVisibility",
|
|
8322
|
+
"privacy": "private",
|
|
8323
|
+
"default": "new Map<string, boolean>()",
|
|
8324
|
+
"description": "Optimistic visibility while the grid applies setColumnsVisible."
|
|
8325
|
+
},
|
|
8326
|
+
{
|
|
8327
|
+
"kind": "field",
|
|
8328
|
+
"name": "search",
|
|
8329
|
+
"type": {
|
|
8330
|
+
"text": "string"
|
|
8331
|
+
},
|
|
8332
|
+
"default": "''"
|
|
8333
|
+
},
|
|
8334
|
+
{
|
|
8335
|
+
"kind": "field",
|
|
8336
|
+
"name": "selectedItems",
|
|
8337
|
+
"type": {
|
|
8338
|
+
"text": "ColumnPickerItem[]"
|
|
8339
|
+
},
|
|
8340
|
+
"default": "[]"
|
|
8341
|
+
},
|
|
8342
|
+
{
|
|
8343
|
+
"kind": "field",
|
|
8344
|
+
"name": "unselectedItems",
|
|
8345
|
+
"type": {
|
|
8346
|
+
"text": "ColumnPickerItem[]"
|
|
8347
|
+
},
|
|
8348
|
+
"default": "[]"
|
|
8349
|
+
},
|
|
8350
|
+
{
|
|
8351
|
+
"kind": "field",
|
|
8352
|
+
"name": "boundRefresh",
|
|
8353
|
+
"privacy": "private",
|
|
8354
|
+
"readonly": true,
|
|
8355
|
+
"description": "Stable listener refs so `destroy` can remove the same functions `init` added."
|
|
8356
|
+
},
|
|
8357
|
+
{
|
|
8358
|
+
"kind": "field",
|
|
8359
|
+
"name": "canDrag",
|
|
8360
|
+
"type": {
|
|
8361
|
+
"text": "boolean"
|
|
8362
|
+
},
|
|
8363
|
+
"description": "Drag reorder is only allowed on the full visible list (no active search).",
|
|
8364
|
+
"readonly": true
|
|
7808
8365
|
},
|
|
7809
8366
|
{
|
|
7810
8367
|
"kind": "method",
|
|
7811
|
-
"name": "
|
|
7812
|
-
"
|
|
8368
|
+
"name": "init",
|
|
8369
|
+
"return": {
|
|
8370
|
+
"type": {
|
|
8371
|
+
"text": "void"
|
|
8372
|
+
}
|
|
8373
|
+
},
|
|
8374
|
+
"parameters": [
|
|
8375
|
+
{
|
|
8376
|
+
"name": "params",
|
|
8377
|
+
"type": {
|
|
8378
|
+
"text": "IToolPanelParams"
|
|
8379
|
+
}
|
|
8380
|
+
}
|
|
8381
|
+
],
|
|
8382
|
+
"description": "AG Grid `IToolPanelComp` entry. Subscribes to column events so the picker\nstays in sync with header menu / API visibility changes."
|
|
7813
8383
|
},
|
|
7814
8384
|
{
|
|
7815
8385
|
"kind": "method",
|
|
7816
|
-
"name": "
|
|
8386
|
+
"name": "refresh",
|
|
7817
8387
|
"return": {
|
|
7818
8388
|
"type": {
|
|
7819
|
-
"text": "
|
|
8389
|
+
"text": "void"
|
|
7820
8390
|
}
|
|
7821
8391
|
},
|
|
7822
|
-
"
|
|
7823
|
-
"name": "LifecycleMixin",
|
|
7824
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
7825
|
-
}
|
|
8392
|
+
"description": "Rebuilds both lists from current grid column state.\nDisplayed columns stay first (grid order); hidden columns follow so search\nand drag operate on a single ordered picker model."
|
|
7826
8393
|
},
|
|
7827
8394
|
{
|
|
7828
8395
|
"kind": "method",
|
|
7829
|
-
"name": "
|
|
8396
|
+
"name": "applyPendingVisibility",
|
|
8397
|
+
"privacy": "private",
|
|
7830
8398
|
"return": {
|
|
7831
8399
|
"type": {
|
|
7832
|
-
"text": "
|
|
8400
|
+
"text": "ColumnPickerItem[]"
|
|
7833
8401
|
}
|
|
7834
8402
|
},
|
|
7835
8403
|
"parameters": [
|
|
7836
8404
|
{
|
|
7837
|
-
"name": "
|
|
7838
|
-
"optional": true,
|
|
8405
|
+
"name": "items",
|
|
7839
8406
|
"type": {
|
|
7840
|
-
"text": "
|
|
8407
|
+
"text": "ColumnPickerItem[]"
|
|
7841
8408
|
}
|
|
7842
8409
|
}
|
|
7843
|
-
]
|
|
7844
|
-
"inheritedFrom": {
|
|
7845
|
-
"name": "LifecycleMixin",
|
|
7846
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
7847
|
-
}
|
|
8410
|
+
]
|
|
7848
8411
|
},
|
|
7849
8412
|
{
|
|
7850
|
-
"kind": "
|
|
7851
|
-
"name": "
|
|
8413
|
+
"kind": "method",
|
|
8414
|
+
"name": "bindSelectedRowDrag",
|
|
8415
|
+
"privacy": "private",
|
|
7852
8416
|
"return": {
|
|
7853
8417
|
"type": {
|
|
7854
|
-
"text": ""
|
|
8418
|
+
"text": "void"
|
|
7855
8419
|
}
|
|
7856
8420
|
},
|
|
7857
|
-
"
|
|
7858
|
-
"inheritedFrom": {
|
|
7859
|
-
"name": "LifecycleMixin",
|
|
7860
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
7861
|
-
}
|
|
8421
|
+
"description": "HTML5 drag on visible row handles only (disabled while search is active)."
|
|
7862
8422
|
},
|
|
7863
8423
|
{
|
|
7864
|
-
"kind": "
|
|
7865
|
-
"name": "
|
|
8424
|
+
"kind": "method",
|
|
8425
|
+
"name": "getGui",
|
|
7866
8426
|
"return": {
|
|
7867
8427
|
"type": {
|
|
7868
|
-
"text": ""
|
|
8428
|
+
"text": "HTMLElement"
|
|
7869
8429
|
}
|
|
7870
8430
|
},
|
|
7871
|
-
"
|
|
7872
|
-
|
|
7873
|
-
|
|
7874
|
-
|
|
8431
|
+
"description": "Root element AG Grid mounts into the sidebar."
|
|
8432
|
+
},
|
|
8433
|
+
{
|
|
8434
|
+
"kind": "method",
|
|
8435
|
+
"name": "destroy",
|
|
8436
|
+
"return": {
|
|
8437
|
+
"type": {
|
|
8438
|
+
"text": "void"
|
|
8439
|
+
}
|
|
7875
8440
|
}
|
|
7876
8441
|
},
|
|
7877
8442
|
{
|
|
7878
8443
|
"kind": "method",
|
|
7879
|
-
"name": "
|
|
8444
|
+
"name": "clearDragOverHighlight",
|
|
8445
|
+
"privacy": "private",
|
|
7880
8446
|
"return": {
|
|
7881
8447
|
"type": {
|
|
7882
|
-
"text": "
|
|
8448
|
+
"text": "void"
|
|
8449
|
+
}
|
|
8450
|
+
}
|
|
8451
|
+
},
|
|
8452
|
+
{
|
|
8453
|
+
"kind": "method",
|
|
8454
|
+
"name": "reorderSelected",
|
|
8455
|
+
"privacy": "private",
|
|
8456
|
+
"return": {
|
|
8457
|
+
"type": {
|
|
8458
|
+
"text": "void"
|
|
7883
8459
|
}
|
|
7884
8460
|
},
|
|
7885
8461
|
"parameters": [
|
|
7886
8462
|
{
|
|
7887
|
-
"name": "
|
|
8463
|
+
"name": "fromId",
|
|
7888
8464
|
"type": {
|
|
7889
|
-
"text": "
|
|
8465
|
+
"text": "string"
|
|
8466
|
+
}
|
|
8467
|
+
},
|
|
8468
|
+
{
|
|
8469
|
+
"name": "toId",
|
|
8470
|
+
"type": {
|
|
8471
|
+
"text": "string"
|
|
7890
8472
|
}
|
|
7891
8473
|
}
|
|
7892
8474
|
],
|
|
7893
|
-
"
|
|
7894
|
-
"name": "LifecycleMixin",
|
|
7895
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
7896
|
-
}
|
|
8475
|
+
"description": "Applies a new visible-column order via `applyColumnState({ applyOrder: true })`.\nHidden columns keep their relative positions; only the visible slice is permuted."
|
|
7897
8476
|
},
|
|
7898
8477
|
{
|
|
7899
8478
|
"kind": "field",
|
|
@@ -8007,91 +8586,308 @@
|
|
|
8007
8586
|
}
|
|
8008
8587
|
}
|
|
8009
8588
|
],
|
|
8010
|
-
"
|
|
8589
|
+
"attributes": [
|
|
8011
8590
|
{
|
|
8012
|
-
"name": "
|
|
8013
|
-
"
|
|
8591
|
+
"name": "prefix",
|
|
8592
|
+
"type": {
|
|
8593
|
+
"text": "string"
|
|
8594
|
+
},
|
|
8595
|
+
"default": "'foundation'",
|
|
8596
|
+
"fieldName": "prefix"
|
|
8014
8597
|
}
|
|
8015
8598
|
],
|
|
8016
8599
|
"superclass": {
|
|
8017
8600
|
"name": "FoundationElement",
|
|
8018
8601
|
"package": "@microsoft/fast-foundation"
|
|
8019
8602
|
},
|
|
8020
|
-
"tagName": "grid-pro-
|
|
8603
|
+
"tagName": "grid-pro-columns-tool-panel",
|
|
8021
8604
|
"customElement": true
|
|
8022
8605
|
}
|
|
8023
8606
|
],
|
|
8024
8607
|
"exports": [
|
|
8025
8608
|
{
|
|
8026
8609
|
"kind": "js",
|
|
8027
|
-
"name": "
|
|
8610
|
+
"name": "ColumnsToolPanel",
|
|
8028
8611
|
"declaration": {
|
|
8029
|
-
"name": "
|
|
8030
|
-
"module": "src/
|
|
8612
|
+
"name": "ColumnsToolPanel",
|
|
8613
|
+
"module": "src/columns-tool-panel/columns-tool-panel.ts"
|
|
8031
8614
|
}
|
|
8032
8615
|
},
|
|
8033
8616
|
{
|
|
8034
8617
|
"kind": "custom-element-definition",
|
|
8035
|
-
"name": "grid-pro-
|
|
8036
|
-
"declaration": {
|
|
8037
|
-
"name": "GridProColumn",
|
|
8038
|
-
"module": "src/column/column.ts"
|
|
8039
|
-
}
|
|
8040
|
-
}
|
|
8041
|
-
]
|
|
8042
|
-
},
|
|
8043
|
-
{
|
|
8044
|
-
"kind": "javascript-module",
|
|
8045
|
-
"path": "src/column/index.ts",
|
|
8046
|
-
"declarations": [],
|
|
8047
|
-
"exports": [
|
|
8048
|
-
{
|
|
8049
|
-
"kind": "js",
|
|
8050
|
-
"name": "*",
|
|
8051
|
-
"declaration": {
|
|
8052
|
-
"name": "*",
|
|
8053
|
-
"package": "./column.template"
|
|
8054
|
-
}
|
|
8055
|
-
},
|
|
8056
|
-
{
|
|
8057
|
-
"kind": "js",
|
|
8058
|
-
"name": "*",
|
|
8059
|
-
"declaration": {
|
|
8060
|
-
"name": "*",
|
|
8061
|
-
"package": "./column"
|
|
8062
|
-
}
|
|
8063
|
-
},
|
|
8064
|
-
{
|
|
8065
|
-
"kind": "js",
|
|
8066
|
-
"name": "*",
|
|
8618
|
+
"name": "grid-pro-columns-tool-panel",
|
|
8067
8619
|
"declaration": {
|
|
8068
|
-
"name": "
|
|
8069
|
-
"
|
|
8620
|
+
"name": "ColumnsToolPanel",
|
|
8621
|
+
"module": "src/columns-tool-panel/columns-tool-panel.ts"
|
|
8070
8622
|
}
|
|
8071
8623
|
}
|
|
8072
8624
|
]
|
|
8073
8625
|
},
|
|
8074
8626
|
{
|
|
8075
8627
|
"kind": "javascript-module",
|
|
8076
|
-
"path": "src/
|
|
8628
|
+
"path": "src/columns-tool-panel/columns-tool-panel.utils.ts",
|
|
8077
8629
|
"declarations": [
|
|
8078
8630
|
{
|
|
8079
8631
|
"kind": "variable",
|
|
8080
|
-
"name": "
|
|
8632
|
+
"name": "gridProColumnsToolPanelDef",
|
|
8081
8633
|
"type": {
|
|
8082
|
-
"text": "
|
|
8634
|
+
"text": "ToolPanelDef"
|
|
8083
8635
|
},
|
|
8084
|
-
"default": "'
|
|
8085
|
-
"description": "The delimiter for the criteria string.",
|
|
8086
|
-
"privacy": "public"
|
|
8636
|
+
"default": "{\n id: 'columns',\n labelDefault: 'Columns',\n labelKey: 'columns',\n iconKey: 'columns',\n toolPanel: GridProToolPanelTypes.columns,\n}"
|
|
8087
8637
|
},
|
|
8088
8638
|
{
|
|
8089
|
-
"kind": "
|
|
8090
|
-
"name": "
|
|
8091
|
-
"
|
|
8092
|
-
"
|
|
8639
|
+
"kind": "function",
|
|
8640
|
+
"name": "toPickerItem",
|
|
8641
|
+
"return": {
|
|
8642
|
+
"type": {
|
|
8643
|
+
"text": "ColumnPickerItem | null"
|
|
8644
|
+
}
|
|
8093
8645
|
},
|
|
8094
|
-
"
|
|
8646
|
+
"parameters": [
|
|
8647
|
+
{
|
|
8648
|
+
"name": "col",
|
|
8649
|
+
"type": {
|
|
8650
|
+
"text": "Column"
|
|
8651
|
+
}
|
|
8652
|
+
}
|
|
8653
|
+
]
|
|
8654
|
+
},
|
|
8655
|
+
{
|
|
8656
|
+
"kind": "function",
|
|
8657
|
+
"name": "getPickerItems",
|
|
8658
|
+
"return": {
|
|
8659
|
+
"type": {
|
|
8660
|
+
"text": "ColumnPickerItem[]"
|
|
8661
|
+
}
|
|
8662
|
+
},
|
|
8663
|
+
"parameters": [
|
|
8664
|
+
{
|
|
8665
|
+
"name": "columns",
|
|
8666
|
+
"type": {
|
|
8667
|
+
"text": "Column[]"
|
|
8668
|
+
}
|
|
8669
|
+
}
|
|
8670
|
+
]
|
|
8671
|
+
},
|
|
8672
|
+
{
|
|
8673
|
+
"kind": "function",
|
|
8674
|
+
"name": "partitionPickerItems",
|
|
8675
|
+
"return": {
|
|
8676
|
+
"type": {
|
|
8677
|
+
"text": "{ selected: ColumnPickerItem[]; unselected: ColumnPickerItem[] }"
|
|
8678
|
+
}
|
|
8679
|
+
},
|
|
8680
|
+
"parameters": [
|
|
8681
|
+
{
|
|
8682
|
+
"name": "items",
|
|
8683
|
+
"type": {
|
|
8684
|
+
"text": "ColumnPickerItem[]"
|
|
8685
|
+
}
|
|
8686
|
+
},
|
|
8687
|
+
{
|
|
8688
|
+
"name": "search",
|
|
8689
|
+
"type": {
|
|
8690
|
+
"text": "string"
|
|
8691
|
+
}
|
|
8692
|
+
}
|
|
8693
|
+
]
|
|
8694
|
+
},
|
|
8695
|
+
{
|
|
8696
|
+
"kind": "function",
|
|
8697
|
+
"name": "reorderVisibleIds",
|
|
8698
|
+
"return": {
|
|
8699
|
+
"type": {
|
|
8700
|
+
"text": "string[] | null"
|
|
8701
|
+
}
|
|
8702
|
+
},
|
|
8703
|
+
"parameters": [
|
|
8704
|
+
{
|
|
8705
|
+
"name": "allVisibleIds",
|
|
8706
|
+
"type": {
|
|
8707
|
+
"text": "string[]"
|
|
8708
|
+
}
|
|
8709
|
+
},
|
|
8710
|
+
{
|
|
8711
|
+
"name": "shownIds",
|
|
8712
|
+
"type": {
|
|
8713
|
+
"text": "string[]"
|
|
8714
|
+
}
|
|
8715
|
+
},
|
|
8716
|
+
{
|
|
8717
|
+
"name": "fromId",
|
|
8718
|
+
"type": {
|
|
8719
|
+
"text": "string"
|
|
8720
|
+
}
|
|
8721
|
+
},
|
|
8722
|
+
{
|
|
8723
|
+
"name": "toId",
|
|
8724
|
+
"type": {
|
|
8725
|
+
"text": "string"
|
|
8726
|
+
}
|
|
8727
|
+
}
|
|
8728
|
+
]
|
|
8729
|
+
},
|
|
8730
|
+
{
|
|
8731
|
+
"kind": "function",
|
|
8732
|
+
"name": "applyVisibleOrder",
|
|
8733
|
+
"return": {
|
|
8734
|
+
"type": {
|
|
8735
|
+
"text": "T[]"
|
|
8736
|
+
}
|
|
8737
|
+
},
|
|
8738
|
+
"parameters": [
|
|
8739
|
+
{
|
|
8740
|
+
"name": "columnState",
|
|
8741
|
+
"type": {
|
|
8742
|
+
"text": "T[]"
|
|
8743
|
+
}
|
|
8744
|
+
},
|
|
8745
|
+
{
|
|
8746
|
+
"name": "visibleOrder",
|
|
8747
|
+
"type": {
|
|
8748
|
+
"text": "string[]"
|
|
8749
|
+
}
|
|
8750
|
+
}
|
|
8751
|
+
]
|
|
8752
|
+
},
|
|
8753
|
+
{
|
|
8754
|
+
"kind": "function",
|
|
8755
|
+
"name": "resolveGridProSideBar",
|
|
8756
|
+
"return": {
|
|
8757
|
+
"type": {
|
|
8758
|
+
"text": "GridOptions['sideBar']"
|
|
8759
|
+
}
|
|
8760
|
+
},
|
|
8761
|
+
"parameters": [
|
|
8762
|
+
{
|
|
8763
|
+
"name": "sideBar",
|
|
8764
|
+
"type": {
|
|
8765
|
+
"text": "GridOptions['sideBar']"
|
|
8766
|
+
}
|
|
8767
|
+
}
|
|
8768
|
+
],
|
|
8769
|
+
"description": "Rewrites `sideBar: ['columns']` / `agColumnsToolPanel` to the custom Grid Pro picker."
|
|
8770
|
+
}
|
|
8771
|
+
],
|
|
8772
|
+
"exports": [
|
|
8773
|
+
{
|
|
8774
|
+
"kind": "js",
|
|
8775
|
+
"name": "gridProColumnsToolPanelDef",
|
|
8776
|
+
"declaration": {
|
|
8777
|
+
"name": "gridProColumnsToolPanelDef",
|
|
8778
|
+
"module": "src/columns-tool-panel/columns-tool-panel.utils.ts"
|
|
8779
|
+
}
|
|
8780
|
+
},
|
|
8781
|
+
{
|
|
8782
|
+
"kind": "js",
|
|
8783
|
+
"name": "toPickerItem",
|
|
8784
|
+
"declaration": {
|
|
8785
|
+
"name": "toPickerItem",
|
|
8786
|
+
"module": "src/columns-tool-panel/columns-tool-panel.utils.ts"
|
|
8787
|
+
}
|
|
8788
|
+
},
|
|
8789
|
+
{
|
|
8790
|
+
"kind": "js",
|
|
8791
|
+
"name": "getPickerItems",
|
|
8792
|
+
"declaration": {
|
|
8793
|
+
"name": "getPickerItems",
|
|
8794
|
+
"module": "src/columns-tool-panel/columns-tool-panel.utils.ts"
|
|
8795
|
+
}
|
|
8796
|
+
},
|
|
8797
|
+
{
|
|
8798
|
+
"kind": "js",
|
|
8799
|
+
"name": "partitionPickerItems",
|
|
8800
|
+
"declaration": {
|
|
8801
|
+
"name": "partitionPickerItems",
|
|
8802
|
+
"module": "src/columns-tool-panel/columns-tool-panel.utils.ts"
|
|
8803
|
+
}
|
|
8804
|
+
},
|
|
8805
|
+
{
|
|
8806
|
+
"kind": "js",
|
|
8807
|
+
"name": "reorderVisibleIds",
|
|
8808
|
+
"declaration": {
|
|
8809
|
+
"name": "reorderVisibleIds",
|
|
8810
|
+
"module": "src/columns-tool-panel/columns-tool-panel.utils.ts"
|
|
8811
|
+
}
|
|
8812
|
+
},
|
|
8813
|
+
{
|
|
8814
|
+
"kind": "js",
|
|
8815
|
+
"name": "applyVisibleOrder",
|
|
8816
|
+
"declaration": {
|
|
8817
|
+
"name": "applyVisibleOrder",
|
|
8818
|
+
"module": "src/columns-tool-panel/columns-tool-panel.utils.ts"
|
|
8819
|
+
}
|
|
8820
|
+
},
|
|
8821
|
+
{
|
|
8822
|
+
"kind": "js",
|
|
8823
|
+
"name": "resolveGridProSideBar",
|
|
8824
|
+
"declaration": {
|
|
8825
|
+
"name": "resolveGridProSideBar",
|
|
8826
|
+
"module": "src/columns-tool-panel/columns-tool-panel.utils.ts"
|
|
8827
|
+
}
|
|
8828
|
+
}
|
|
8829
|
+
]
|
|
8830
|
+
},
|
|
8831
|
+
{
|
|
8832
|
+
"kind": "javascript-module",
|
|
8833
|
+
"path": "src/columns-tool-panel/index.ts",
|
|
8834
|
+
"declarations": [],
|
|
8835
|
+
"exports": [
|
|
8836
|
+
{
|
|
8837
|
+
"kind": "js",
|
|
8838
|
+
"name": "*",
|
|
8839
|
+
"declaration": {
|
|
8840
|
+
"name": "*",
|
|
8841
|
+
"package": "./columns-tool-panel"
|
|
8842
|
+
}
|
|
8843
|
+
},
|
|
8844
|
+
{
|
|
8845
|
+
"kind": "js",
|
|
8846
|
+
"name": "*",
|
|
8847
|
+
"declaration": {
|
|
8848
|
+
"name": "*",
|
|
8849
|
+
"package": "./columns-tool-panel.styles"
|
|
8850
|
+
}
|
|
8851
|
+
},
|
|
8852
|
+
{
|
|
8853
|
+
"kind": "js",
|
|
8854
|
+
"name": "*",
|
|
8855
|
+
"declaration": {
|
|
8856
|
+
"name": "*",
|
|
8857
|
+
"package": "./columns-tool-panel.template"
|
|
8858
|
+
}
|
|
8859
|
+
},
|
|
8860
|
+
{
|
|
8861
|
+
"kind": "js",
|
|
8862
|
+
"name": "*",
|
|
8863
|
+
"declaration": {
|
|
8864
|
+
"name": "*",
|
|
8865
|
+
"package": "./columns-tool-panel.utils"
|
|
8866
|
+
}
|
|
8867
|
+
}
|
|
8868
|
+
]
|
|
8869
|
+
},
|
|
8870
|
+
{
|
|
8871
|
+
"kind": "javascript-module",
|
|
8872
|
+
"path": "src/datasource/base.datasource.ts",
|
|
8873
|
+
"declarations": [
|
|
8874
|
+
{
|
|
8875
|
+
"kind": "variable",
|
|
8876
|
+
"name": "criteriaDelimiter",
|
|
8877
|
+
"type": {
|
|
8878
|
+
"text": "string"
|
|
8879
|
+
},
|
|
8880
|
+
"default": "';'",
|
|
8881
|
+
"description": "The delimiter for the criteria string.",
|
|
8882
|
+
"privacy": "public"
|
|
8883
|
+
},
|
|
8884
|
+
{
|
|
8885
|
+
"kind": "variable",
|
|
8886
|
+
"name": "criteriaJoin",
|
|
8887
|
+
"type": {
|
|
8888
|
+
"text": "string"
|
|
8889
|
+
},
|
|
8890
|
+
"default": "' && '",
|
|
8095
8891
|
"description": "The join for the criteria string.",
|
|
8096
8892
|
"privacy": "public"
|
|
8097
8893
|
},
|
|
@@ -18319,26 +19115,664 @@
|
|
|
18319
19115
|
},
|
|
18320
19116
|
{
|
|
18321
19117
|
"kind": "method",
|
|
18322
|
-
"name": "openChanged",
|
|
19118
|
+
"name": "openChanged",
|
|
19119
|
+
"privacy": "public"
|
|
19120
|
+
},
|
|
19121
|
+
{
|
|
19122
|
+
"kind": "method",
|
|
19123
|
+
"name": "dropdownWidthChanged",
|
|
19124
|
+
"privacy": "public"
|
|
19125
|
+
},
|
|
19126
|
+
{
|
|
19127
|
+
"kind": "method",
|
|
19128
|
+
"name": "changeHandler",
|
|
19129
|
+
"privacy": "public",
|
|
19130
|
+
"parameters": [
|
|
19131
|
+
{
|
|
19132
|
+
"name": "event",
|
|
19133
|
+
"type": {
|
|
19134
|
+
"text": "Event"
|
|
19135
|
+
}
|
|
19136
|
+
}
|
|
19137
|
+
]
|
|
19138
|
+
},
|
|
19139
|
+
{
|
|
19140
|
+
"kind": "method",
|
|
19141
|
+
"name": "cloneNode",
|
|
19142
|
+
"return": {
|
|
19143
|
+
"type": {
|
|
19144
|
+
"text": "Node"
|
|
19145
|
+
}
|
|
19146
|
+
},
|
|
19147
|
+
"parameters": [
|
|
19148
|
+
{
|
|
19149
|
+
"name": "deep",
|
|
19150
|
+
"optional": true,
|
|
19151
|
+
"type": {
|
|
19152
|
+
"text": "boolean"
|
|
19153
|
+
}
|
|
19154
|
+
}
|
|
19155
|
+
],
|
|
19156
|
+
"inheritedFrom": {
|
|
19157
|
+
"name": "LifecycleMixin",
|
|
19158
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
19159
|
+
}
|
|
19160
|
+
},
|
|
19161
|
+
{
|
|
19162
|
+
"kind": "method",
|
|
19163
|
+
"name": "deepClone",
|
|
19164
|
+
"return": {
|
|
19165
|
+
"type": {
|
|
19166
|
+
"text": "Node"
|
|
19167
|
+
}
|
|
19168
|
+
},
|
|
19169
|
+
"inheritedFrom": {
|
|
19170
|
+
"name": "LifecycleMixin",
|
|
19171
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
19172
|
+
}
|
|
19173
|
+
},
|
|
19174
|
+
{
|
|
19175
|
+
"kind": "field",
|
|
19176
|
+
"name": "shouldRunDisconnect",
|
|
19177
|
+
"return": {
|
|
19178
|
+
"type": {
|
|
19179
|
+
"text": ""
|
|
19180
|
+
}
|
|
19181
|
+
},
|
|
19182
|
+
"readonly": true,
|
|
19183
|
+
"inheritedFrom": {
|
|
19184
|
+
"name": "LifecycleMixin",
|
|
19185
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
19186
|
+
}
|
|
19187
|
+
},
|
|
19188
|
+
{
|
|
19189
|
+
"kind": "field",
|
|
19190
|
+
"name": "shouldRunConnect",
|
|
19191
|
+
"return": {
|
|
19192
|
+
"type": {
|
|
19193
|
+
"text": ""
|
|
19194
|
+
}
|
|
19195
|
+
},
|
|
19196
|
+
"readonly": true,
|
|
19197
|
+
"inheritedFrom": {
|
|
19198
|
+
"name": "LifecycleMixin",
|
|
19199
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
19200
|
+
}
|
|
19201
|
+
},
|
|
19202
|
+
{
|
|
19203
|
+
"kind": "method",
|
|
19204
|
+
"name": "#_blockLifecycleDueToTokenChange",
|
|
19205
|
+
"return": {
|
|
19206
|
+
"type": {
|
|
19207
|
+
"text": "boolean"
|
|
19208
|
+
}
|
|
19209
|
+
},
|
|
19210
|
+
"parameters": [
|
|
19211
|
+
{
|
|
19212
|
+
"name": "lifecycleType",
|
|
19213
|
+
"type": {
|
|
19214
|
+
"text": "Lifecycletype"
|
|
19215
|
+
}
|
|
19216
|
+
}
|
|
19217
|
+
],
|
|
19218
|
+
"inheritedFrom": {
|
|
19219
|
+
"name": "LifecycleMixin",
|
|
19220
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
19221
|
+
}
|
|
19222
|
+
},
|
|
19223
|
+
{
|
|
19224
|
+
"kind": "field",
|
|
19225
|
+
"name": "_presentation",
|
|
19226
|
+
"type": {
|
|
19227
|
+
"text": "ComponentPresentation | null | undefined"
|
|
19228
|
+
},
|
|
19229
|
+
"privacy": "private",
|
|
19230
|
+
"default": "void 0",
|
|
19231
|
+
"inheritedFrom": {
|
|
19232
|
+
"name": "FoundationElement",
|
|
19233
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
19234
|
+
}
|
|
19235
|
+
},
|
|
19236
|
+
{
|
|
19237
|
+
"kind": "field",
|
|
19238
|
+
"name": "$presentation",
|
|
19239
|
+
"type": {
|
|
19240
|
+
"text": "ComponentPresentation | null"
|
|
19241
|
+
},
|
|
19242
|
+
"privacy": "public",
|
|
19243
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
19244
|
+
"inheritedFrom": {
|
|
19245
|
+
"name": "FoundationElement",
|
|
19246
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
19247
|
+
}
|
|
19248
|
+
},
|
|
19249
|
+
{
|
|
19250
|
+
"kind": "field",
|
|
19251
|
+
"name": "template",
|
|
19252
|
+
"type": {
|
|
19253
|
+
"text": "ElementViewTemplate | void | null"
|
|
19254
|
+
},
|
|
19255
|
+
"privacy": "public",
|
|
19256
|
+
"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.",
|
|
19257
|
+
"inheritedFrom": {
|
|
19258
|
+
"name": "FoundationElement",
|
|
19259
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
19260
|
+
}
|
|
19261
|
+
},
|
|
19262
|
+
{
|
|
19263
|
+
"kind": "method",
|
|
19264
|
+
"name": "templateChanged",
|
|
19265
|
+
"privacy": "protected",
|
|
19266
|
+
"return": {
|
|
19267
|
+
"type": {
|
|
19268
|
+
"text": "void"
|
|
19269
|
+
}
|
|
19270
|
+
},
|
|
19271
|
+
"inheritedFrom": {
|
|
19272
|
+
"name": "FoundationElement",
|
|
19273
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
19274
|
+
}
|
|
19275
|
+
},
|
|
19276
|
+
{
|
|
19277
|
+
"kind": "field",
|
|
19278
|
+
"name": "styles",
|
|
19279
|
+
"type": {
|
|
19280
|
+
"text": "ElementStyles | void | null"
|
|
19281
|
+
},
|
|
19282
|
+
"privacy": "public",
|
|
19283
|
+
"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.",
|
|
19284
|
+
"inheritedFrom": {
|
|
19285
|
+
"name": "FoundationElement",
|
|
19286
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
19287
|
+
}
|
|
19288
|
+
},
|
|
19289
|
+
{
|
|
19290
|
+
"kind": "method",
|
|
19291
|
+
"name": "stylesChanged",
|
|
19292
|
+
"privacy": "protected",
|
|
19293
|
+
"return": {
|
|
19294
|
+
"type": {
|
|
19295
|
+
"text": "void"
|
|
19296
|
+
}
|
|
19297
|
+
},
|
|
19298
|
+
"inheritedFrom": {
|
|
19299
|
+
"name": "FoundationElement",
|
|
19300
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
19301
|
+
}
|
|
19302
|
+
},
|
|
19303
|
+
{
|
|
19304
|
+
"kind": "method",
|
|
19305
|
+
"name": "compose",
|
|
19306
|
+
"privacy": "public",
|
|
19307
|
+
"static": true,
|
|
19308
|
+
"return": {
|
|
19309
|
+
"type": {
|
|
19310
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
19311
|
+
}
|
|
19312
|
+
},
|
|
19313
|
+
"parameters": [
|
|
19314
|
+
{
|
|
19315
|
+
"name": "this",
|
|
19316
|
+
"type": {
|
|
19317
|
+
"text": "K"
|
|
19318
|
+
}
|
|
19319
|
+
},
|
|
19320
|
+
{
|
|
19321
|
+
"name": "elementDefinition",
|
|
19322
|
+
"type": {
|
|
19323
|
+
"text": "T"
|
|
19324
|
+
},
|
|
19325
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
19326
|
+
}
|
|
19327
|
+
],
|
|
19328
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
19329
|
+
"inheritedFrom": {
|
|
19330
|
+
"name": "FoundationElement",
|
|
19331
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
19332
|
+
}
|
|
19333
|
+
}
|
|
19334
|
+
],
|
|
19335
|
+
"events": [
|
|
19336
|
+
{
|
|
19337
|
+
"description": "Fired when the selected value changes. detail: `string`",
|
|
19338
|
+
"name": "change"
|
|
19339
|
+
},
|
|
19340
|
+
{
|
|
19341
|
+
"description": "Fired when the value is updated (including programmatic changes). detail: `string`",
|
|
19342
|
+
"name": "input"
|
|
19343
|
+
}
|
|
19344
|
+
],
|
|
19345
|
+
"attributes": [
|
|
19346
|
+
{
|
|
19347
|
+
"type": {
|
|
19348
|
+
"text": "boolean"
|
|
19349
|
+
},
|
|
19350
|
+
"description": "Whether to disable control of the component",
|
|
19351
|
+
"fieldName": "disabled"
|
|
19352
|
+
},
|
|
19353
|
+
{
|
|
19354
|
+
"name": "resource-name",
|
|
19355
|
+
"type": {
|
|
19356
|
+
"text": "string"
|
|
19357
|
+
},
|
|
19358
|
+
"description": "The name of the reqrep to get the options from",
|
|
19359
|
+
"fieldName": "resourceName"
|
|
19360
|
+
},
|
|
19361
|
+
{
|
|
19362
|
+
"name": "search-key",
|
|
19363
|
+
"type": {
|
|
19364
|
+
"text": "string | string[] | undefined"
|
|
19365
|
+
},
|
|
19366
|
+
"description": "The key(s) to search by. Use comma-separated values for multiple keys (e.g. search-key=\"NAME,ID\").",
|
|
19367
|
+
"fieldName": "searchKey"
|
|
19368
|
+
},
|
|
19369
|
+
{
|
|
19370
|
+
"name": "advanced-search-req",
|
|
19371
|
+
"type": {
|
|
19372
|
+
"text": "boolean"
|
|
19373
|
+
},
|
|
19374
|
+
"default": "false",
|
|
19375
|
+
"description": "Tells whether a given request supports lookup by Groovy Expressions.",
|
|
19376
|
+
"fieldName": "requestSupportsAdvancedSearch"
|
|
19377
|
+
},
|
|
19378
|
+
{
|
|
19379
|
+
"name": "value-key",
|
|
19380
|
+
"type": {
|
|
19381
|
+
"text": "string"
|
|
19382
|
+
},
|
|
19383
|
+
"description": "The key used as the value sent to the server",
|
|
19384
|
+
"fieldName": "valueKey"
|
|
19385
|
+
},
|
|
19386
|
+
{
|
|
19387
|
+
"name": "label-key",
|
|
19388
|
+
"type": {
|
|
19389
|
+
"text": "string"
|
|
19390
|
+
},
|
|
19391
|
+
"description": "The key used as the label displayed in the UI",
|
|
19392
|
+
"fieldName": "labelKey"
|
|
19393
|
+
},
|
|
19394
|
+
{
|
|
19395
|
+
"name": "dropdown-placement",
|
|
19396
|
+
"type": {
|
|
19397
|
+
"text": "'bottom-right' | 'bottom-left' | 'top-right' | 'top-left'"
|
|
19398
|
+
},
|
|
19399
|
+
"description": "Position of the dropdown panel relative to the control.\n- `'bottom-right'` – default; opens below and aligns to the right edge of the control\n- `'bottom-left'` – opens below and extends to the left\n- `'top-right'` – opens above and aligns to the right edge of the control\n- `'top-left'` – opens above and extends to the left",
|
|
19400
|
+
"fieldName": "dropdownPlacement"
|
|
19401
|
+
},
|
|
19402
|
+
{
|
|
19403
|
+
"name": "dropdownWidth",
|
|
19404
|
+
"type": {
|
|
19405
|
+
"text": "number"
|
|
19406
|
+
},
|
|
19407
|
+
"description": "Optionally specifies the width of the dropdown",
|
|
19408
|
+
"fieldName": "dropdownWidth"
|
|
19409
|
+
}
|
|
19410
|
+
],
|
|
19411
|
+
"mixins": [
|
|
19412
|
+
{
|
|
19413
|
+
"name": "LifecycleMixin",
|
|
19414
|
+
"package": "@genesislcap/foundation-utils"
|
|
19415
|
+
}
|
|
19416
|
+
],
|
|
19417
|
+
"superclass": {
|
|
19418
|
+
"name": "FoundationElement",
|
|
19419
|
+
"package": "@microsoft/fast-foundation"
|
|
19420
|
+
},
|
|
19421
|
+
"tagName": "%%prefix%%-multicolumn-dropdown",
|
|
19422
|
+
"customElement": true
|
|
19423
|
+
},
|
|
19424
|
+
{
|
|
19425
|
+
"kind": "variable",
|
|
19426
|
+
"name": "foundationMulticolumnDropdown",
|
|
19427
|
+
"description": "A function that returns a Multicolumn Dropdown registration for configuring the component with a DesignSystem.",
|
|
19428
|
+
"privacy": "public"
|
|
19429
|
+
}
|
|
19430
|
+
],
|
|
19431
|
+
"exports": [
|
|
19432
|
+
{
|
|
19433
|
+
"kind": "js",
|
|
19434
|
+
"name": "wasClickOutsideElement",
|
|
19435
|
+
"declaration": {
|
|
19436
|
+
"name": "wasClickOutsideElement",
|
|
19437
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
|
|
19438
|
+
}
|
|
19439
|
+
},
|
|
19440
|
+
{
|
|
19441
|
+
"kind": "js",
|
|
19442
|
+
"name": "MulticolumnDropdown",
|
|
19443
|
+
"declaration": {
|
|
19444
|
+
"name": "MulticolumnDropdown",
|
|
19445
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
|
|
19446
|
+
}
|
|
19447
|
+
},
|
|
19448
|
+
{
|
|
19449
|
+
"kind": "js",
|
|
19450
|
+
"name": "foundationMulticolumnDropdown",
|
|
19451
|
+
"declaration": {
|
|
19452
|
+
"name": "foundationMulticolumnDropdown",
|
|
19453
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
|
|
19454
|
+
}
|
|
19455
|
+
}
|
|
19456
|
+
]
|
|
19457
|
+
},
|
|
19458
|
+
{
|
|
19459
|
+
"kind": "javascript-module",
|
|
19460
|
+
"path": "src/side-bar/index.ts",
|
|
19461
|
+
"declarations": [],
|
|
19462
|
+
"exports": [
|
|
19463
|
+
{
|
|
19464
|
+
"kind": "js",
|
|
19465
|
+
"name": "*",
|
|
19466
|
+
"declaration": {
|
|
19467
|
+
"name": "*",
|
|
19468
|
+
"package": "./side-bar.types"
|
|
19469
|
+
}
|
|
19470
|
+
},
|
|
19471
|
+
{
|
|
19472
|
+
"kind": "js",
|
|
19473
|
+
"name": "*",
|
|
19474
|
+
"declaration": {
|
|
19475
|
+
"name": "*",
|
|
19476
|
+
"package": "./side-bar.tools"
|
|
19477
|
+
}
|
|
19478
|
+
},
|
|
19479
|
+
{
|
|
19480
|
+
"kind": "js",
|
|
19481
|
+
"name": "*",
|
|
19482
|
+
"declaration": {
|
|
19483
|
+
"name": "*",
|
|
19484
|
+
"package": "./side-bar.styles"
|
|
19485
|
+
}
|
|
19486
|
+
},
|
|
19487
|
+
{
|
|
19488
|
+
"kind": "js",
|
|
19489
|
+
"name": "*",
|
|
19490
|
+
"declaration": {
|
|
19491
|
+
"name": "*",
|
|
19492
|
+
"package": "./side-bar.template"
|
|
19493
|
+
}
|
|
19494
|
+
},
|
|
19495
|
+
{
|
|
19496
|
+
"kind": "js",
|
|
19497
|
+
"name": "*",
|
|
19498
|
+
"declaration": {
|
|
19499
|
+
"name": "*",
|
|
19500
|
+
"package": "./side-bar"
|
|
19501
|
+
}
|
|
19502
|
+
}
|
|
19503
|
+
]
|
|
19504
|
+
},
|
|
19505
|
+
{
|
|
19506
|
+
"kind": "javascript-module",
|
|
19507
|
+
"path": "src/side-bar/side-bar.styles.ts",
|
|
19508
|
+
"declarations": [
|
|
19509
|
+
{
|
|
19510
|
+
"kind": "variable",
|
|
19511
|
+
"name": "gridProSideBarHostStyles",
|
|
19512
|
+
"type": {
|
|
19513
|
+
"text": "ElementStyles"
|
|
19514
|
+
},
|
|
19515
|
+
"default": "css`\n :host([with-side-bar]) {\n display: flex;\n flex-direction: row;\n min-height: 0;\n }\n\n :host([with-side-bar]) [part='grid'] {\n flex: 1 1 auto;\n min-width: 0;\n height: 100%;\n }\n`",
|
|
19516
|
+
"description": "Layout on the Grid Pro host when `with-side-bar` is set.",
|
|
19517
|
+
"privacy": "public"
|
|
19518
|
+
},
|
|
19519
|
+
{
|
|
19520
|
+
"kind": "variable",
|
|
19521
|
+
"name": "gridProSideBarChromeStyles",
|
|
19522
|
+
"type": {
|
|
19523
|
+
"text": "ElementStyles"
|
|
19524
|
+
},
|
|
19525
|
+
"default": "css`\n .grid-pro-side-bar {\n --ag-icon-font-family: agGridAlpine;\n --ag-icon-size: 16px;\n display: flex;\n flex-direction: row-reverse;\n flex: 0 0 auto;\n min-height: 0;\n height: 100%;\n z-index: 1;\n border-left: 1px solid var(--neutral-stroke-divider-rest, var(--ag-border-color));\n background: var(--neutral-layer-2, var(--ag-control-panel-background-color));\n color: var(--neutral-foreground-rest, var(--ag-foreground-color));\n }\n\n .grid-pro-side-bar-buttons {\n display: flex;\n flex-direction: column;\n flex: 0 0 auto;\n border-left: 1px solid var(--neutral-stroke-divider-rest, var(--ag-border-color));\n }\n\n .grid-pro-side-bar-button {\n margin: 0;\n height: auto !important;\n min-height: 0;\n border-bottom: 1px solid var(--neutral-stroke-divider-rest, var(--ag-border-color));\n }\n\n .grid-pro-side-bar-button::part(control) {\n display: flex;\n flex-direction: column;\n align-items: center;\n padding: 12px 8px;\n border: 0;\n border-radius: 0;\n min-width: 0;\n min-height: 0;\n height: auto;\n white-space: nowrap;\n }\n\n .grid-pro-side-bar-button::part(content) {\n display: flex;\n flex-direction: column;\n align-items: center;\n gap: 4px;\n }\n\n .grid-pro-side-bar-button-icon {\n display: block;\n font-family: 'agGridAlpine';\n font-size: var(--ag-icon-size, 16px);\n line-height: var(--ag-icon-size, 16px);\n font-style: normal;\n font-weight: normal;\n speak: none;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n }\n\n .grid-pro-side-bar-button-icon::before {\n font-family: 'agGridAlpine';\n background-color: transparent;\n }\n\n .grid-pro-side-bar-button-icon.ag-icon-columns::before {\n content: '\\\\f10a';\n }\n\n .grid-pro-side-bar-button-icon.ag-icon-filter::before {\n content: '\\\\f114';\n }\n\n .grid-pro-side-bar-button-icon[hidden] {\n display: none;\n }\n\n .grid-pro-side-bar-button-label {\n writing-mode: vertical-rl;\n }\n\n .grid-pro-side-bar-button:hover::part(control),\n .grid-pro-side-bar-button[aria-selected='true']::part(control) {\n background: var(--neutral-fill-hover, rgba(255, 255, 255, 0.06));\n }\n\n .grid-pro-side-bar-button:hover::part(content)::before {\n background: transparent;\n }\n\n .grid-pro-side-bar-panel {\n display: flex;\n flex-direction: column;\n flex: 0 0 auto;\n width: 260px;\n max-width: 40vw;\n min-height: 0;\n }\n\n .grid-pro-side-bar-panel[hidden] {\n display: none;\n }\n\n .grid-pro-side-bar-panel-host {\n flex: 1 1 auto;\n min-height: 0;\n overflow: auto;\n }\n\n .grid-pro-side-bar-panel-host .ag-filter-toolpanel,\n .grid-pro-side-bar-panel-host .ag-tool-panel-wrapper {\n height: 100%;\n width: 100%;\n }\n\n .grid-pro-columns-checkbox {\n margin: 0;\n\n --design-unit: 3;\n }\n`",
|
|
19526
|
+
"description": "Chrome for GridProSideBar. Uses class selectors (no `:host`) because the\nelement has no shadow — styles land on Grid Pro's shadow root.",
|
|
19527
|
+
"privacy": "public"
|
|
19528
|
+
},
|
|
19529
|
+
{
|
|
19530
|
+
"kind": "variable",
|
|
19531
|
+
"name": "gridProSideBarStyles",
|
|
19532
|
+
"type": {
|
|
19533
|
+
"text": "ElementStyles"
|
|
19534
|
+
},
|
|
19535
|
+
"default": "css`\n ${gridProSideBarHostStyles}\n ${gridProSideBarChromeStyles}\n`",
|
|
19536
|
+
"description": "Host + chrome. Prefer gridProSideBarHostStyles on Grid Pro and\ngridProSideBarChromeStyles on the side-bar element.",
|
|
19537
|
+
"privacy": "public"
|
|
19538
|
+
}
|
|
19539
|
+
],
|
|
19540
|
+
"exports": [
|
|
19541
|
+
{
|
|
19542
|
+
"kind": "js",
|
|
19543
|
+
"name": "gridProSideBarHostStyles",
|
|
19544
|
+
"declaration": {
|
|
19545
|
+
"name": "gridProSideBarHostStyles",
|
|
19546
|
+
"module": "src/side-bar/side-bar.styles.ts"
|
|
19547
|
+
}
|
|
19548
|
+
},
|
|
19549
|
+
{
|
|
19550
|
+
"kind": "js",
|
|
19551
|
+
"name": "gridProSideBarChromeStyles",
|
|
19552
|
+
"declaration": {
|
|
19553
|
+
"name": "gridProSideBarChromeStyles",
|
|
19554
|
+
"module": "src/side-bar/side-bar.styles.ts"
|
|
19555
|
+
}
|
|
19556
|
+
},
|
|
19557
|
+
{
|
|
19558
|
+
"kind": "js",
|
|
19559
|
+
"name": "gridProSideBarStyles",
|
|
19560
|
+
"declaration": {
|
|
19561
|
+
"name": "gridProSideBarStyles",
|
|
19562
|
+
"module": "src/side-bar/side-bar.styles.ts"
|
|
19563
|
+
}
|
|
19564
|
+
}
|
|
19565
|
+
]
|
|
19566
|
+
},
|
|
19567
|
+
{
|
|
19568
|
+
"kind": "javascript-module",
|
|
19569
|
+
"path": "src/side-bar/side-bar.template.ts",
|
|
19570
|
+
"declarations": [
|
|
19571
|
+
{
|
|
19572
|
+
"kind": "function",
|
|
19573
|
+
"name": "getGridProSideBarTemplate",
|
|
19574
|
+
"parameters": [
|
|
19575
|
+
{
|
|
19576
|
+
"name": "prefix",
|
|
19577
|
+
"default": "'foundation'"
|
|
19578
|
+
}
|
|
19579
|
+
],
|
|
19580
|
+
"description": "Community side bar chrome. Prefix selects DS buttons (`rapid-button`, `zero-button`).",
|
|
19581
|
+
"privacy": "public"
|
|
19582
|
+
},
|
|
19583
|
+
{
|
|
19584
|
+
"kind": "variable",
|
|
19585
|
+
"name": "gridProSideBarTemplate",
|
|
19586
|
+
"privacy": "public"
|
|
19587
|
+
}
|
|
19588
|
+
],
|
|
19589
|
+
"exports": [
|
|
19590
|
+
{
|
|
19591
|
+
"kind": "js",
|
|
19592
|
+
"name": "getGridProSideBarTemplate",
|
|
19593
|
+
"declaration": {
|
|
19594
|
+
"name": "getGridProSideBarTemplate",
|
|
19595
|
+
"module": "src/side-bar/side-bar.template.ts"
|
|
19596
|
+
}
|
|
19597
|
+
},
|
|
19598
|
+
{
|
|
19599
|
+
"kind": "js",
|
|
19600
|
+
"name": "gridProSideBarTemplate",
|
|
19601
|
+
"declaration": {
|
|
19602
|
+
"name": "gridProSideBarTemplate",
|
|
19603
|
+
"module": "src/side-bar/side-bar.template.ts"
|
|
19604
|
+
}
|
|
19605
|
+
}
|
|
19606
|
+
]
|
|
19607
|
+
},
|
|
19608
|
+
{
|
|
19609
|
+
"kind": "javascript-module",
|
|
19610
|
+
"path": "src/side-bar/side-bar.tools.ts",
|
|
19611
|
+
"declarations": [
|
|
19612
|
+
{
|
|
19613
|
+
"kind": "variable",
|
|
19614
|
+
"name": "gridProSideBarColumnsTool",
|
|
19615
|
+
"type": {
|
|
19616
|
+
"text": "GridProSideBarToolDef"
|
|
19617
|
+
},
|
|
19618
|
+
"default": "{\n id: GridProSideBarTool.columns,\n label: 'Columns',\n iconKey: 'columns',\n createPanel: () => new ColumnsToolPanel(),\n}",
|
|
19619
|
+
"description": "Built-in Columns picker (Community, no AG SideBarModule).",
|
|
19620
|
+
"privacy": "public"
|
|
19621
|
+
},
|
|
19622
|
+
{
|
|
19623
|
+
"kind": "variable",
|
|
19624
|
+
"name": "GRID_PRO_DEFAULT_SIDE_BAR_TOOLS",
|
|
19625
|
+
"type": {
|
|
19626
|
+
"text": "ReadonlyArray<GridProSideBarToolDef>"
|
|
19627
|
+
},
|
|
19628
|
+
"default": "[\n gridProSideBarColumnsTool,\n]",
|
|
19629
|
+
"description": "Default tools when `with-side-bar` is set and `sideBarTools` is not provided.",
|
|
19630
|
+
"privacy": "public"
|
|
19631
|
+
}
|
|
19632
|
+
],
|
|
19633
|
+
"exports": [
|
|
19634
|
+
{
|
|
19635
|
+
"kind": "js",
|
|
19636
|
+
"name": "gridProSideBarColumnsTool",
|
|
19637
|
+
"declaration": {
|
|
19638
|
+
"name": "gridProSideBarColumnsTool",
|
|
19639
|
+
"module": "src/side-bar/side-bar.tools.ts"
|
|
19640
|
+
}
|
|
19641
|
+
},
|
|
19642
|
+
{
|
|
19643
|
+
"kind": "js",
|
|
19644
|
+
"name": "GRID_PRO_DEFAULT_SIDE_BAR_TOOLS",
|
|
19645
|
+
"declaration": {
|
|
19646
|
+
"name": "GRID_PRO_DEFAULT_SIDE_BAR_TOOLS",
|
|
19647
|
+
"module": "src/side-bar/side-bar.tools.ts"
|
|
19648
|
+
}
|
|
19649
|
+
}
|
|
19650
|
+
]
|
|
19651
|
+
},
|
|
19652
|
+
{
|
|
19653
|
+
"kind": "javascript-module",
|
|
19654
|
+
"path": "src/side-bar/side-bar.ts",
|
|
19655
|
+
"declarations": [
|
|
19656
|
+
{
|
|
19657
|
+
"kind": "class",
|
|
19658
|
+
"description": "The Grid Pro Side Bar element.",
|
|
19659
|
+
"name": "GridProSideBar",
|
|
19660
|
+
"members": [
|
|
19661
|
+
{
|
|
19662
|
+
"kind": "field",
|
|
19663
|
+
"name": "prefix",
|
|
19664
|
+
"type": {
|
|
19665
|
+
"text": "string"
|
|
19666
|
+
},
|
|
19667
|
+
"default": "'foundation'"
|
|
19668
|
+
},
|
|
19669
|
+
{
|
|
19670
|
+
"kind": "method",
|
|
19671
|
+
"name": "prefixChanged"
|
|
19672
|
+
},
|
|
19673
|
+
{
|
|
19674
|
+
"kind": "field",
|
|
19675
|
+
"name": "tools",
|
|
19676
|
+
"type": {
|
|
19677
|
+
"text": "ReadonlyArray<GridProSideBarToolDef>"
|
|
19678
|
+
},
|
|
19679
|
+
"default": "GRID_PRO_DEFAULT_SIDE_BAR_TOOLS"
|
|
19680
|
+
},
|
|
19681
|
+
{
|
|
19682
|
+
"kind": "method",
|
|
19683
|
+
"name": "toolsChanged"
|
|
19684
|
+
},
|
|
19685
|
+
{
|
|
19686
|
+
"kind": "field",
|
|
19687
|
+
"name": "gridApi",
|
|
19688
|
+
"type": {
|
|
19689
|
+
"text": "GridApi | undefined"
|
|
19690
|
+
}
|
|
19691
|
+
},
|
|
19692
|
+
{
|
|
19693
|
+
"kind": "method",
|
|
19694
|
+
"name": "gridApiChanged"
|
|
19695
|
+
},
|
|
19696
|
+
{
|
|
19697
|
+
"kind": "field",
|
|
19698
|
+
"name": "open",
|
|
19699
|
+
"type": {
|
|
19700
|
+
"text": "boolean"
|
|
19701
|
+
},
|
|
19702
|
+
"default": "false"
|
|
19703
|
+
},
|
|
19704
|
+
{
|
|
19705
|
+
"kind": "field",
|
|
19706
|
+
"name": "activeTool",
|
|
19707
|
+
"type": {
|
|
19708
|
+
"text": "GridProSideBarToolId"
|
|
19709
|
+
}
|
|
19710
|
+
},
|
|
19711
|
+
{
|
|
19712
|
+
"kind": "field",
|
|
19713
|
+
"name": "panelHost",
|
|
19714
|
+
"type": {
|
|
19715
|
+
"text": "HTMLElement"
|
|
19716
|
+
}
|
|
19717
|
+
},
|
|
19718
|
+
{
|
|
19719
|
+
"kind": "method",
|
|
19720
|
+
"name": "panelHostChanged"
|
|
19721
|
+
},
|
|
19722
|
+
{
|
|
19723
|
+
"kind": "field",
|
|
19724
|
+
"name": "mountedPanels",
|
|
19725
|
+
"privacy": "private",
|
|
19726
|
+
"default": "new Map<string, MountedSideBarPanel>()"
|
|
19727
|
+
},
|
|
19728
|
+
{
|
|
19729
|
+
"kind": "method",
|
|
19730
|
+
"name": "selectTool",
|
|
19731
|
+
"return": {
|
|
19732
|
+
"type": {
|
|
19733
|
+
"text": "void"
|
|
19734
|
+
}
|
|
19735
|
+
},
|
|
19736
|
+
"parameters": [
|
|
19737
|
+
{
|
|
19738
|
+
"name": "tool",
|
|
19739
|
+
"type": {
|
|
19740
|
+
"text": "GridProSideBarToolId"
|
|
19741
|
+
}
|
|
19742
|
+
}
|
|
19743
|
+
],
|
|
19744
|
+
"description": "Selects a tool. Clicking the active open tool collapses the panel.",
|
|
19745
|
+
"privacy": "public"
|
|
19746
|
+
},
|
|
19747
|
+
{
|
|
19748
|
+
"kind": "method",
|
|
19749
|
+
"name": "mountActiveTool",
|
|
19750
|
+
"return": {
|
|
19751
|
+
"type": {
|
|
19752
|
+
"text": "void"
|
|
19753
|
+
}
|
|
19754
|
+
},
|
|
18323
19755
|
"privacy": "public"
|
|
18324
19756
|
},
|
|
18325
19757
|
{
|
|
18326
19758
|
"kind": "method",
|
|
18327
|
-
"name": "
|
|
19759
|
+
"name": "destroyTools",
|
|
19760
|
+
"return": {
|
|
19761
|
+
"type": {
|
|
19762
|
+
"text": "void"
|
|
19763
|
+
}
|
|
19764
|
+
},
|
|
18328
19765
|
"privacy": "public"
|
|
18329
19766
|
},
|
|
18330
19767
|
{
|
|
18331
19768
|
"kind": "method",
|
|
18332
|
-
"name": "
|
|
18333
|
-
"privacy": "
|
|
18334
|
-
"
|
|
18335
|
-
{
|
|
18336
|
-
"
|
|
18337
|
-
"type": {
|
|
18338
|
-
"text": "Event"
|
|
18339
|
-
}
|
|
19769
|
+
"name": "closeAgToolPanel",
|
|
19770
|
+
"privacy": "private",
|
|
19771
|
+
"return": {
|
|
19772
|
+
"type": {
|
|
19773
|
+
"text": "void"
|
|
18340
19774
|
}
|
|
18341
|
-
|
|
19775
|
+
}
|
|
18342
19776
|
},
|
|
18343
19777
|
{
|
|
18344
19778
|
"kind": "method",
|
|
@@ -18536,80 +19970,14 @@
|
|
|
18536
19970
|
}
|
|
18537
19971
|
}
|
|
18538
19972
|
],
|
|
18539
|
-
"events": [
|
|
18540
|
-
{
|
|
18541
|
-
"description": "Fired when the selected value changes. detail: `string`",
|
|
18542
|
-
"name": "change"
|
|
18543
|
-
},
|
|
18544
|
-
{
|
|
18545
|
-
"description": "Fired when the value is updated (including programmatic changes). detail: `string`",
|
|
18546
|
-
"name": "input"
|
|
18547
|
-
}
|
|
18548
|
-
],
|
|
18549
19973
|
"attributes": [
|
|
18550
19974
|
{
|
|
18551
|
-
"
|
|
18552
|
-
"text": "boolean"
|
|
18553
|
-
},
|
|
18554
|
-
"description": "Whether to disable control of the component",
|
|
18555
|
-
"fieldName": "disabled"
|
|
18556
|
-
},
|
|
18557
|
-
{
|
|
18558
|
-
"name": "resource-name",
|
|
18559
|
-
"type": {
|
|
18560
|
-
"text": "string"
|
|
18561
|
-
},
|
|
18562
|
-
"description": "The name of the reqrep to get the options from",
|
|
18563
|
-
"fieldName": "resourceName"
|
|
18564
|
-
},
|
|
18565
|
-
{
|
|
18566
|
-
"name": "search-key",
|
|
18567
|
-
"type": {
|
|
18568
|
-
"text": "string | string[] | undefined"
|
|
18569
|
-
},
|
|
18570
|
-
"description": "The key(s) to search by. Use comma-separated values for multiple keys (e.g. search-key=\"NAME,ID\").",
|
|
18571
|
-
"fieldName": "searchKey"
|
|
18572
|
-
},
|
|
18573
|
-
{
|
|
18574
|
-
"name": "advanced-search-req",
|
|
18575
|
-
"type": {
|
|
18576
|
-
"text": "boolean"
|
|
18577
|
-
},
|
|
18578
|
-
"default": "false",
|
|
18579
|
-
"description": "Tells whether a given request supports lookup by Groovy Expressions.",
|
|
18580
|
-
"fieldName": "requestSupportsAdvancedSearch"
|
|
18581
|
-
},
|
|
18582
|
-
{
|
|
18583
|
-
"name": "value-key",
|
|
18584
|
-
"type": {
|
|
18585
|
-
"text": "string"
|
|
18586
|
-
},
|
|
18587
|
-
"description": "The key used as the value sent to the server",
|
|
18588
|
-
"fieldName": "valueKey"
|
|
18589
|
-
},
|
|
18590
|
-
{
|
|
18591
|
-
"name": "label-key",
|
|
19975
|
+
"name": "prefix",
|
|
18592
19976
|
"type": {
|
|
18593
19977
|
"text": "string"
|
|
18594
19978
|
},
|
|
18595
|
-
"
|
|
18596
|
-
"fieldName": "
|
|
18597
|
-
},
|
|
18598
|
-
{
|
|
18599
|
-
"name": "dropdown-placement",
|
|
18600
|
-
"type": {
|
|
18601
|
-
"text": "'bottom-right' | 'bottom-left' | 'top-right' | 'top-left'"
|
|
18602
|
-
},
|
|
18603
|
-
"description": "Position of the dropdown panel relative to the control.\n- `'bottom-right'` – default; opens below and aligns to the right edge of the control\n- `'bottom-left'` – opens below and extends to the left\n- `'top-right'` – opens above and aligns to the right edge of the control\n- `'top-left'` – opens above and extends to the left",
|
|
18604
|
-
"fieldName": "dropdownPlacement"
|
|
18605
|
-
},
|
|
18606
|
-
{
|
|
18607
|
-
"name": "dropdownWidth",
|
|
18608
|
-
"type": {
|
|
18609
|
-
"text": "number"
|
|
18610
|
-
},
|
|
18611
|
-
"description": "Optionally specifies the width of the dropdown",
|
|
18612
|
-
"fieldName": "dropdownWidth"
|
|
19979
|
+
"default": "'foundation'",
|
|
19980
|
+
"fieldName": "prefix"
|
|
18613
19981
|
}
|
|
18614
19982
|
],
|
|
18615
19983
|
"mixins": [
|
|
@@ -18622,39 +19990,96 @@
|
|
|
18622
19990
|
"name": "FoundationElement",
|
|
18623
19991
|
"package": "@microsoft/fast-foundation"
|
|
18624
19992
|
},
|
|
18625
|
-
"tagName": "
|
|
19993
|
+
"tagName": "grid-pro-side-bar",
|
|
18626
19994
|
"customElement": true
|
|
19995
|
+
}
|
|
19996
|
+
],
|
|
19997
|
+
"exports": [
|
|
19998
|
+
{
|
|
19999
|
+
"kind": "js",
|
|
20000
|
+
"name": "GridProSideBar",
|
|
20001
|
+
"declaration": {
|
|
20002
|
+
"name": "GridProSideBar",
|
|
20003
|
+
"module": "src/side-bar/side-bar.ts"
|
|
20004
|
+
}
|
|
20005
|
+
},
|
|
20006
|
+
{
|
|
20007
|
+
"kind": "custom-element-definition",
|
|
20008
|
+
"name": "grid-pro-side-bar",
|
|
20009
|
+
"declaration": {
|
|
20010
|
+
"name": "GridProSideBar",
|
|
20011
|
+
"module": "src/side-bar/side-bar.ts"
|
|
20012
|
+
}
|
|
20013
|
+
}
|
|
20014
|
+
]
|
|
20015
|
+
},
|
|
20016
|
+
{
|
|
20017
|
+
"kind": "javascript-module",
|
|
20018
|
+
"path": "src/side-bar/side-bar.types.ts",
|
|
20019
|
+
"declarations": [
|
|
20020
|
+
{
|
|
20021
|
+
"kind": "variable",
|
|
20022
|
+
"name": "GridProSideBarTool",
|
|
20023
|
+
"type": {
|
|
20024
|
+
"text": "{\n columns: 'columns',\n filters: 'filters',\n}"
|
|
20025
|
+
},
|
|
20026
|
+
"default": "{\n columns: 'columns',\n filters: 'filters',\n}",
|
|
20027
|
+
"description": "Well-known Community side-bar tool ids.",
|
|
20028
|
+
"privacy": "public"
|
|
18627
20029
|
},
|
|
18628
20030
|
{
|
|
18629
20031
|
"kind": "variable",
|
|
18630
|
-
"name": "
|
|
18631
|
-
"
|
|
20032
|
+
"name": "gridProSideBarFiltersTool",
|
|
20033
|
+
"type": {
|
|
20034
|
+
"text": "GridProSideBarToolDef"
|
|
20035
|
+
},
|
|
20036
|
+
"default": "{\n id: GridProSideBarTool.filters,\n label: 'Filters',\n labelKey: 'filters',\n iconKey: 'filter',\n toolPanel: 'agFiltersToolPanel',\n}",
|
|
20037
|
+
"description": "Built-in AG Filters tool (Enterprise `FiltersToolPanelModule` required at app register).",
|
|
20038
|
+
"privacy": "public"
|
|
20039
|
+
},
|
|
20040
|
+
{
|
|
20041
|
+
"kind": "function",
|
|
20042
|
+
"name": "createGridProSideBarTool",
|
|
20043
|
+
"return": {
|
|
20044
|
+
"type": {
|
|
20045
|
+
"text": "GridProSideBarToolDef"
|
|
20046
|
+
}
|
|
20047
|
+
},
|
|
20048
|
+
"parameters": [
|
|
20049
|
+
{
|
|
20050
|
+
"name": "def",
|
|
20051
|
+
"type": {
|
|
20052
|
+
"text": "GridProSideBarToolDef"
|
|
20053
|
+
}
|
|
20054
|
+
}
|
|
20055
|
+
],
|
|
20056
|
+
"description": "Builds a custom tool panel def (AG-style registration into our shell).",
|
|
18632
20057
|
"privacy": "public"
|
|
18633
20058
|
}
|
|
18634
20059
|
],
|
|
18635
20060
|
"exports": [
|
|
18636
20061
|
{
|
|
18637
20062
|
"kind": "js",
|
|
18638
|
-
"name": "
|
|
20063
|
+
"name": "GridProSideBarTool",
|
|
18639
20064
|
"declaration": {
|
|
18640
|
-
"name": "
|
|
18641
|
-
"module": "src/
|
|
20065
|
+
"name": "GridProSideBarTool",
|
|
20066
|
+
"module": "src/side-bar/side-bar.types.ts"
|
|
18642
20067
|
}
|
|
18643
20068
|
},
|
|
18644
20069
|
{
|
|
18645
20070
|
"kind": "js",
|
|
18646
|
-
"name": "
|
|
20071
|
+
"name": "gridProSideBarFiltersTool",
|
|
18647
20072
|
"declaration": {
|
|
18648
|
-
"name": "
|
|
18649
|
-
"module": "src/
|
|
20073
|
+
"name": "gridProSideBarFiltersTool",
|
|
20074
|
+
"module": "src/side-bar/side-bar.types.ts"
|
|
18650
20075
|
}
|
|
18651
20076
|
},
|
|
18652
20077
|
{
|
|
18653
20078
|
"kind": "js",
|
|
18654
|
-
"name": "
|
|
20079
|
+
"name": "createGridProSideBarTool",
|
|
18655
20080
|
"declaration": {
|
|
18656
|
-
"name": "
|
|
18657
|
-
"module": "src/
|
|
20081
|
+
"name": "createGridProSideBarTool",
|
|
20082
|
+
"module": "src/side-bar/side-bar.types.ts"
|
|
18658
20083
|
}
|
|
18659
20084
|
}
|
|
18660
20085
|
]
|
|
@@ -19966,60 +21391,6 @@
|
|
|
19966
21391
|
}
|
|
19967
21392
|
]
|
|
19968
21393
|
},
|
|
19969
|
-
{
|
|
19970
|
-
"kind": "javascript-module",
|
|
19971
|
-
"path": "src/cell-renderers/utils/accessor.ts",
|
|
19972
|
-
"declarations": [
|
|
19973
|
-
{
|
|
19974
|
-
"kind": "function",
|
|
19975
|
-
"name": "setValueWithAccessor",
|
|
19976
|
-
"return": {
|
|
19977
|
-
"type": {
|
|
19978
|
-
"text": "string"
|
|
19979
|
-
}
|
|
19980
|
-
},
|
|
19981
|
-
"parameters": [
|
|
19982
|
-
{
|
|
19983
|
-
"name": "data",
|
|
19984
|
-
"type": {
|
|
19985
|
-
"text": "any"
|
|
19986
|
-
}
|
|
19987
|
-
},
|
|
19988
|
-
{
|
|
19989
|
-
"name": "accessor",
|
|
19990
|
-
"type": {
|
|
19991
|
-
"text": "string"
|
|
19992
|
-
}
|
|
19993
|
-
}
|
|
19994
|
-
]
|
|
19995
|
-
}
|
|
19996
|
-
],
|
|
19997
|
-
"exports": [
|
|
19998
|
-
{
|
|
19999
|
-
"kind": "js",
|
|
20000
|
-
"name": "setValueWithAccessor",
|
|
20001
|
-
"declaration": {
|
|
20002
|
-
"name": "setValueWithAccessor",
|
|
20003
|
-
"module": "src/cell-renderers/utils/accessor.ts"
|
|
20004
|
-
}
|
|
20005
|
-
}
|
|
20006
|
-
]
|
|
20007
|
-
},
|
|
20008
|
-
{
|
|
20009
|
-
"kind": "javascript-module",
|
|
20010
|
-
"path": "src/cell-renderers/utils/index.ts",
|
|
20011
|
-
"declarations": [],
|
|
20012
|
-
"exports": [
|
|
20013
|
-
{
|
|
20014
|
-
"kind": "js",
|
|
20015
|
-
"name": "*",
|
|
20016
|
-
"declaration": {
|
|
20017
|
-
"name": "*",
|
|
20018
|
-
"package": "./accessor"
|
|
20019
|
-
}
|
|
20020
|
-
}
|
|
20021
|
-
]
|
|
20022
|
-
},
|
|
20023
21394
|
{
|
|
20024
21395
|
"kind": "javascript-module",
|
|
20025
21396
|
"path": "src/column/utils/grid-pro-columns.ts",
|
|
@@ -20113,6 +21484,60 @@
|
|
|
20113
21484
|
}
|
|
20114
21485
|
}
|
|
20115
21486
|
]
|
|
21487
|
+
},
|
|
21488
|
+
{
|
|
21489
|
+
"kind": "javascript-module",
|
|
21490
|
+
"path": "src/cell-renderers/utils/accessor.ts",
|
|
21491
|
+
"declarations": [
|
|
21492
|
+
{
|
|
21493
|
+
"kind": "function",
|
|
21494
|
+
"name": "setValueWithAccessor",
|
|
21495
|
+
"return": {
|
|
21496
|
+
"type": {
|
|
21497
|
+
"text": "string"
|
|
21498
|
+
}
|
|
21499
|
+
},
|
|
21500
|
+
"parameters": [
|
|
21501
|
+
{
|
|
21502
|
+
"name": "data",
|
|
21503
|
+
"type": {
|
|
21504
|
+
"text": "any"
|
|
21505
|
+
}
|
|
21506
|
+
},
|
|
21507
|
+
{
|
|
21508
|
+
"name": "accessor",
|
|
21509
|
+
"type": {
|
|
21510
|
+
"text": "string"
|
|
21511
|
+
}
|
|
21512
|
+
}
|
|
21513
|
+
]
|
|
21514
|
+
}
|
|
21515
|
+
],
|
|
21516
|
+
"exports": [
|
|
21517
|
+
{
|
|
21518
|
+
"kind": "js",
|
|
21519
|
+
"name": "setValueWithAccessor",
|
|
21520
|
+
"declaration": {
|
|
21521
|
+
"name": "setValueWithAccessor",
|
|
21522
|
+
"module": "src/cell-renderers/utils/accessor.ts"
|
|
21523
|
+
}
|
|
21524
|
+
}
|
|
21525
|
+
]
|
|
21526
|
+
},
|
|
21527
|
+
{
|
|
21528
|
+
"kind": "javascript-module",
|
|
21529
|
+
"path": "src/cell-renderers/utils/index.ts",
|
|
21530
|
+
"declarations": [],
|
|
21531
|
+
"exports": [
|
|
21532
|
+
{
|
|
21533
|
+
"kind": "js",
|
|
21534
|
+
"name": "*",
|
|
21535
|
+
"declaration": {
|
|
21536
|
+
"name": "*",
|
|
21537
|
+
"package": "./accessor"
|
|
21538
|
+
}
|
|
21539
|
+
}
|
|
21540
|
+
]
|
|
20116
21541
|
}
|
|
20117
21542
|
]
|
|
20118
21543
|
}
|