@genesislcap/grid-pro 15.11.0 → 15.12.0-FUI-2601.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +506 -0
- package/dist/dts/columns-tool-panel/columns-tool-panel.d.ts +61 -0
- package/dist/dts/columns-tool-panel/columns-tool-panel.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 +3 -0
- package/dist/dts/columns-tool-panel/index.d.ts.map +1 -0
- package/dist/dts/grid-pro-beta.d.ts +1 -3
- package/dist/dts/grid-pro-beta.d.ts.map +1 -1
- package/dist/dts/grid-pro.types.d.ts +8 -0
- package/dist/dts/grid-pro.types.d.ts.map +1 -1
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/esm/columns-tool-panel/columns-tool-panel.js +274 -0
- package/dist/esm/columns-tool-panel/columns-tool-panel.utils.js +129 -0
- package/dist/esm/columns-tool-panel/index.js +2 -0
- package/dist/esm/grid-pro-beta.js +4 -1
- package/dist/esm/grid-pro.types.js +9 -0
- package/dist/esm/index.js +1 -0
- package/dist/grid-pro.api.json +793 -9
- package/dist/grid-pro.d.ts +117 -17
- package/package.json +14 -14
|
@@ -3342,6 +3342,14 @@
|
|
|
3342
3342
|
"package": "./column"
|
|
3343
3343
|
}
|
|
3344
3344
|
},
|
|
3345
|
+
{
|
|
3346
|
+
"kind": "js",
|
|
3347
|
+
"name": "*",
|
|
3348
|
+
"declaration": {
|
|
3349
|
+
"name": "*",
|
|
3350
|
+
"package": "./columns-tool-panel"
|
|
3351
|
+
}
|
|
3352
|
+
},
|
|
3345
3353
|
{
|
|
3346
3354
|
"kind": "js",
|
|
3347
3355
|
"name": "*",
|
|
@@ -8062,6 +8070,504 @@
|
|
|
8062
8070
|
}
|
|
8063
8071
|
]
|
|
8064
8072
|
},
|
|
8073
|
+
{
|
|
8074
|
+
"kind": "javascript-module",
|
|
8075
|
+
"path": "src/columns-tool-panel/columns-tool-panel.ts",
|
|
8076
|
+
"declarations": [
|
|
8077
|
+
{
|
|
8078
|
+
"kind": "class",
|
|
8079
|
+
"description": "Custom columns tool panel. Replaces AG Grid Enterprise `agColumnsToolPanel`.",
|
|
8080
|
+
"name": "ColumnsToolPanel",
|
|
8081
|
+
"members": [
|
|
8082
|
+
{
|
|
8083
|
+
"kind": "field",
|
|
8084
|
+
"name": "params",
|
|
8085
|
+
"type": {
|
|
8086
|
+
"text": "IToolPanelParams"
|
|
8087
|
+
},
|
|
8088
|
+
"privacy": "private"
|
|
8089
|
+
},
|
|
8090
|
+
{
|
|
8091
|
+
"kind": "field",
|
|
8092
|
+
"name": "api",
|
|
8093
|
+
"type": {
|
|
8094
|
+
"text": "GridApi | null"
|
|
8095
|
+
},
|
|
8096
|
+
"privacy": "private"
|
|
8097
|
+
},
|
|
8098
|
+
{
|
|
8099
|
+
"kind": "field",
|
|
8100
|
+
"name": "eGui",
|
|
8101
|
+
"type": {
|
|
8102
|
+
"text": "HTMLElement"
|
|
8103
|
+
},
|
|
8104
|
+
"privacy": "private"
|
|
8105
|
+
},
|
|
8106
|
+
{
|
|
8107
|
+
"kind": "field",
|
|
8108
|
+
"name": "searchInput",
|
|
8109
|
+
"type": {
|
|
8110
|
+
"text": "HTMLInputElement"
|
|
8111
|
+
},
|
|
8112
|
+
"privacy": "private"
|
|
8113
|
+
},
|
|
8114
|
+
{
|
|
8115
|
+
"kind": "field",
|
|
8116
|
+
"name": "selectedList",
|
|
8117
|
+
"type": {
|
|
8118
|
+
"text": "HTMLElement"
|
|
8119
|
+
},
|
|
8120
|
+
"privacy": "private",
|
|
8121
|
+
"description": "Visible (checked) columns, in grid display order."
|
|
8122
|
+
},
|
|
8123
|
+
{
|
|
8124
|
+
"kind": "field",
|
|
8125
|
+
"name": "unselectedList",
|
|
8126
|
+
"type": {
|
|
8127
|
+
"text": "HTMLElement"
|
|
8128
|
+
},
|
|
8129
|
+
"privacy": "private",
|
|
8130
|
+
"description": "Hidden columns, alphabetical after search filter."
|
|
8131
|
+
},
|
|
8132
|
+
{
|
|
8133
|
+
"kind": "field",
|
|
8134
|
+
"name": "divider",
|
|
8135
|
+
"type": {
|
|
8136
|
+
"text": "HTMLElement"
|
|
8137
|
+
},
|
|
8138
|
+
"privacy": "private"
|
|
8139
|
+
},
|
|
8140
|
+
{
|
|
8141
|
+
"kind": "field",
|
|
8142
|
+
"name": "search",
|
|
8143
|
+
"type": {
|
|
8144
|
+
"text": "string"
|
|
8145
|
+
},
|
|
8146
|
+
"privacy": "private",
|
|
8147
|
+
"default": "''"
|
|
8148
|
+
},
|
|
8149
|
+
{
|
|
8150
|
+
"kind": "field",
|
|
8151
|
+
"name": "dragColId",
|
|
8152
|
+
"type": {
|
|
8153
|
+
"text": "string | null"
|
|
8154
|
+
},
|
|
8155
|
+
"privacy": "private",
|
|
8156
|
+
"default": "null",
|
|
8157
|
+
"description": "Source colId while a visible-row drag is in progress."
|
|
8158
|
+
},
|
|
8159
|
+
{
|
|
8160
|
+
"kind": "field",
|
|
8161
|
+
"name": "boundRefresh",
|
|
8162
|
+
"privacy": "private",
|
|
8163
|
+
"readonly": true,
|
|
8164
|
+
"description": "Stable listener refs so `destroy` can remove the same functions `init` added."
|
|
8165
|
+
},
|
|
8166
|
+
{
|
|
8167
|
+
"kind": "method",
|
|
8168
|
+
"name": "init",
|
|
8169
|
+
"return": {
|
|
8170
|
+
"type": {
|
|
8171
|
+
"text": "void"
|
|
8172
|
+
}
|
|
8173
|
+
},
|
|
8174
|
+
"parameters": [
|
|
8175
|
+
{
|
|
8176
|
+
"name": "params",
|
|
8177
|
+
"type": {
|
|
8178
|
+
"text": "IToolPanelParams"
|
|
8179
|
+
}
|
|
8180
|
+
}
|
|
8181
|
+
],
|
|
8182
|
+
"description": "AG Grid `IToolPanelComp` entry. Builds the DOM once and subscribes to column\nevents so the picker stays in sync with header menu / API visibility changes."
|
|
8183
|
+
},
|
|
8184
|
+
{
|
|
8185
|
+
"kind": "method",
|
|
8186
|
+
"name": "refresh",
|
|
8187
|
+
"return": {
|
|
8188
|
+
"type": {
|
|
8189
|
+
"text": "void"
|
|
8190
|
+
}
|
|
8191
|
+
},
|
|
8192
|
+
"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."
|
|
8193
|
+
},
|
|
8194
|
+
{
|
|
8195
|
+
"kind": "method",
|
|
8196
|
+
"name": "getGui",
|
|
8197
|
+
"return": {
|
|
8198
|
+
"type": {
|
|
8199
|
+
"text": "HTMLElement"
|
|
8200
|
+
}
|
|
8201
|
+
},
|
|
8202
|
+
"description": "Root element AG Grid mounts into the sidebar."
|
|
8203
|
+
},
|
|
8204
|
+
{
|
|
8205
|
+
"kind": "method",
|
|
8206
|
+
"name": "destroy",
|
|
8207
|
+
"return": {
|
|
8208
|
+
"type": {
|
|
8209
|
+
"text": "void"
|
|
8210
|
+
}
|
|
8211
|
+
}
|
|
8212
|
+
},
|
|
8213
|
+
{
|
|
8214
|
+
"kind": "method",
|
|
8215
|
+
"name": "buildGui",
|
|
8216
|
+
"privacy": "private",
|
|
8217
|
+
"return": {
|
|
8218
|
+
"type": {
|
|
8219
|
+
"text": "void"
|
|
8220
|
+
}
|
|
8221
|
+
},
|
|
8222
|
+
"description": "One-time DOM: scoped styles, search, visible list, divider, hidden list."
|
|
8223
|
+
},
|
|
8224
|
+
{
|
|
8225
|
+
"kind": "method",
|
|
8226
|
+
"name": "renderList",
|
|
8227
|
+
"privacy": "private",
|
|
8228
|
+
"return": {
|
|
8229
|
+
"type": {
|
|
8230
|
+
"text": "void"
|
|
8231
|
+
}
|
|
8232
|
+
},
|
|
8233
|
+
"parameters": [
|
|
8234
|
+
{
|
|
8235
|
+
"name": "container",
|
|
8236
|
+
"type": {
|
|
8237
|
+
"text": "HTMLElement"
|
|
8238
|
+
}
|
|
8239
|
+
},
|
|
8240
|
+
{
|
|
8241
|
+
"name": "items",
|
|
8242
|
+
"type": {
|
|
8243
|
+
"text": "ColumnPickerItem[]"
|
|
8244
|
+
}
|
|
8245
|
+
},
|
|
8246
|
+
{
|
|
8247
|
+
"name": "selected",
|
|
8248
|
+
"type": {
|
|
8249
|
+
"text": "boolean"
|
|
8250
|
+
}
|
|
8251
|
+
}
|
|
8252
|
+
]
|
|
8253
|
+
},
|
|
8254
|
+
{
|
|
8255
|
+
"kind": "method",
|
|
8256
|
+
"name": "createItem",
|
|
8257
|
+
"privacy": "private",
|
|
8258
|
+
"return": {
|
|
8259
|
+
"type": {
|
|
8260
|
+
"text": "HTMLElement"
|
|
8261
|
+
}
|
|
8262
|
+
},
|
|
8263
|
+
"parameters": [
|
|
8264
|
+
{
|
|
8265
|
+
"name": "item",
|
|
8266
|
+
"type": {
|
|
8267
|
+
"text": "ColumnPickerItem"
|
|
8268
|
+
}
|
|
8269
|
+
},
|
|
8270
|
+
{
|
|
8271
|
+
"name": "selected",
|
|
8272
|
+
"type": {
|
|
8273
|
+
"text": "boolean"
|
|
8274
|
+
}
|
|
8275
|
+
}
|
|
8276
|
+
],
|
|
8277
|
+
"description": "One picker row: drag handle + visibility checkbox + header label.\nDrag is only bound for visible rows when search is empty so reorder\nmatches full grid order, not a filtered subset."
|
|
8278
|
+
},
|
|
8279
|
+
{
|
|
8280
|
+
"kind": "method",
|
|
8281
|
+
"name": "bindDrag",
|
|
8282
|
+
"privacy": "private",
|
|
8283
|
+
"return": {
|
|
8284
|
+
"type": {
|
|
8285
|
+
"text": "void"
|
|
8286
|
+
}
|
|
8287
|
+
},
|
|
8288
|
+
"parameters": [
|
|
8289
|
+
{
|
|
8290
|
+
"name": "row",
|
|
8291
|
+
"type": {
|
|
8292
|
+
"text": "HTMLElement"
|
|
8293
|
+
}
|
|
8294
|
+
},
|
|
8295
|
+
{
|
|
8296
|
+
"name": "colId",
|
|
8297
|
+
"type": {
|
|
8298
|
+
"text": "string"
|
|
8299
|
+
}
|
|
8300
|
+
}
|
|
8301
|
+
],
|
|
8302
|
+
"description": "HTML5 drag-and-drop between visible rows; drop target colId is `colId`."
|
|
8303
|
+
},
|
|
8304
|
+
{
|
|
8305
|
+
"kind": "method",
|
|
8306
|
+
"name": "reorderSelected",
|
|
8307
|
+
"privacy": "private",
|
|
8308
|
+
"return": {
|
|
8309
|
+
"type": {
|
|
8310
|
+
"text": "void"
|
|
8311
|
+
}
|
|
8312
|
+
},
|
|
8313
|
+
"parameters": [
|
|
8314
|
+
{
|
|
8315
|
+
"name": "fromId",
|
|
8316
|
+
"type": {
|
|
8317
|
+
"text": "string"
|
|
8318
|
+
}
|
|
8319
|
+
},
|
|
8320
|
+
{
|
|
8321
|
+
"name": "toId",
|
|
8322
|
+
"type": {
|
|
8323
|
+
"text": "string"
|
|
8324
|
+
}
|
|
8325
|
+
}
|
|
8326
|
+
],
|
|
8327
|
+
"description": "Applies a new visible-column order via `applyColumnState({ applyOrder: true })`.\nHidden columns keep their relative positions; only the visible slice is permuted."
|
|
8328
|
+
}
|
|
8329
|
+
]
|
|
8330
|
+
}
|
|
8331
|
+
],
|
|
8332
|
+
"exports": [
|
|
8333
|
+
{
|
|
8334
|
+
"kind": "js",
|
|
8335
|
+
"name": "ColumnsToolPanel",
|
|
8336
|
+
"declaration": {
|
|
8337
|
+
"name": "ColumnsToolPanel",
|
|
8338
|
+
"module": "src/columns-tool-panel/columns-tool-panel.ts"
|
|
8339
|
+
}
|
|
8340
|
+
}
|
|
8341
|
+
]
|
|
8342
|
+
},
|
|
8343
|
+
{
|
|
8344
|
+
"kind": "javascript-module",
|
|
8345
|
+
"path": "src/columns-tool-panel/columns-tool-panel.utils.ts",
|
|
8346
|
+
"declarations": [
|
|
8347
|
+
{
|
|
8348
|
+
"kind": "variable",
|
|
8349
|
+
"name": "gridProColumnsToolPanelDef",
|
|
8350
|
+
"type": {
|
|
8351
|
+
"text": "ToolPanelDef"
|
|
8352
|
+
},
|
|
8353
|
+
"default": "{\n id: 'columns',\n labelDefault: 'Columns',\n labelKey: 'columns',\n iconKey: 'columns',\n toolPanel: GridProToolPanelTypes.columns,\n}"
|
|
8354
|
+
},
|
|
8355
|
+
{
|
|
8356
|
+
"kind": "function",
|
|
8357
|
+
"name": "toPickerItem",
|
|
8358
|
+
"return": {
|
|
8359
|
+
"type": {
|
|
8360
|
+
"text": "ColumnPickerItem | null"
|
|
8361
|
+
}
|
|
8362
|
+
},
|
|
8363
|
+
"parameters": [
|
|
8364
|
+
{
|
|
8365
|
+
"name": "col",
|
|
8366
|
+
"type": {
|
|
8367
|
+
"text": "Column"
|
|
8368
|
+
}
|
|
8369
|
+
}
|
|
8370
|
+
]
|
|
8371
|
+
},
|
|
8372
|
+
{
|
|
8373
|
+
"kind": "function",
|
|
8374
|
+
"name": "getPickerItems",
|
|
8375
|
+
"return": {
|
|
8376
|
+
"type": {
|
|
8377
|
+
"text": "ColumnPickerItem[]"
|
|
8378
|
+
}
|
|
8379
|
+
},
|
|
8380
|
+
"parameters": [
|
|
8381
|
+
{
|
|
8382
|
+
"name": "columns",
|
|
8383
|
+
"type": {
|
|
8384
|
+
"text": "Column[]"
|
|
8385
|
+
}
|
|
8386
|
+
}
|
|
8387
|
+
]
|
|
8388
|
+
},
|
|
8389
|
+
{
|
|
8390
|
+
"kind": "function",
|
|
8391
|
+
"name": "partitionPickerItems",
|
|
8392
|
+
"return": {
|
|
8393
|
+
"type": {
|
|
8394
|
+
"text": "{ selected: ColumnPickerItem[]; unselected: ColumnPickerItem[] }"
|
|
8395
|
+
}
|
|
8396
|
+
},
|
|
8397
|
+
"parameters": [
|
|
8398
|
+
{
|
|
8399
|
+
"name": "items",
|
|
8400
|
+
"type": {
|
|
8401
|
+
"text": "ColumnPickerItem[]"
|
|
8402
|
+
}
|
|
8403
|
+
},
|
|
8404
|
+
{
|
|
8405
|
+
"name": "search",
|
|
8406
|
+
"type": {
|
|
8407
|
+
"text": "string"
|
|
8408
|
+
}
|
|
8409
|
+
}
|
|
8410
|
+
]
|
|
8411
|
+
},
|
|
8412
|
+
{
|
|
8413
|
+
"kind": "function",
|
|
8414
|
+
"name": "reorderVisibleIds",
|
|
8415
|
+
"return": {
|
|
8416
|
+
"type": {
|
|
8417
|
+
"text": "string[] | null"
|
|
8418
|
+
}
|
|
8419
|
+
},
|
|
8420
|
+
"parameters": [
|
|
8421
|
+
{
|
|
8422
|
+
"name": "allVisibleIds",
|
|
8423
|
+
"type": {
|
|
8424
|
+
"text": "string[]"
|
|
8425
|
+
}
|
|
8426
|
+
},
|
|
8427
|
+
{
|
|
8428
|
+
"name": "shownIds",
|
|
8429
|
+
"type": {
|
|
8430
|
+
"text": "string[]"
|
|
8431
|
+
}
|
|
8432
|
+
},
|
|
8433
|
+
{
|
|
8434
|
+
"name": "fromId",
|
|
8435
|
+
"type": {
|
|
8436
|
+
"text": "string"
|
|
8437
|
+
}
|
|
8438
|
+
},
|
|
8439
|
+
{
|
|
8440
|
+
"name": "toId",
|
|
8441
|
+
"type": {
|
|
8442
|
+
"text": "string"
|
|
8443
|
+
}
|
|
8444
|
+
}
|
|
8445
|
+
]
|
|
8446
|
+
},
|
|
8447
|
+
{
|
|
8448
|
+
"kind": "function",
|
|
8449
|
+
"name": "applyVisibleOrder",
|
|
8450
|
+
"return": {
|
|
8451
|
+
"type": {
|
|
8452
|
+
"text": "T[]"
|
|
8453
|
+
}
|
|
8454
|
+
},
|
|
8455
|
+
"parameters": [
|
|
8456
|
+
{
|
|
8457
|
+
"name": "columnState",
|
|
8458
|
+
"type": {
|
|
8459
|
+
"text": "T[]"
|
|
8460
|
+
}
|
|
8461
|
+
},
|
|
8462
|
+
{
|
|
8463
|
+
"name": "visibleOrder",
|
|
8464
|
+
"type": {
|
|
8465
|
+
"text": "string[]"
|
|
8466
|
+
}
|
|
8467
|
+
}
|
|
8468
|
+
]
|
|
8469
|
+
},
|
|
8470
|
+
{
|
|
8471
|
+
"kind": "function",
|
|
8472
|
+
"name": "resolveGridProSideBar",
|
|
8473
|
+
"return": {
|
|
8474
|
+
"type": {
|
|
8475
|
+
"text": "GridOptions['sideBar']"
|
|
8476
|
+
}
|
|
8477
|
+
},
|
|
8478
|
+
"parameters": [
|
|
8479
|
+
{
|
|
8480
|
+
"name": "sideBar",
|
|
8481
|
+
"type": {
|
|
8482
|
+
"text": "GridOptions['sideBar']"
|
|
8483
|
+
}
|
|
8484
|
+
}
|
|
8485
|
+
],
|
|
8486
|
+
"description": "Rewrites `sideBar: ['columns']` / `agColumnsToolPanel` to the custom Grid Pro picker."
|
|
8487
|
+
}
|
|
8488
|
+
],
|
|
8489
|
+
"exports": [
|
|
8490
|
+
{
|
|
8491
|
+
"kind": "js",
|
|
8492
|
+
"name": "gridProColumnsToolPanelDef",
|
|
8493
|
+
"declaration": {
|
|
8494
|
+
"name": "gridProColumnsToolPanelDef",
|
|
8495
|
+
"module": "src/columns-tool-panel/columns-tool-panel.utils.ts"
|
|
8496
|
+
}
|
|
8497
|
+
},
|
|
8498
|
+
{
|
|
8499
|
+
"kind": "js",
|
|
8500
|
+
"name": "toPickerItem",
|
|
8501
|
+
"declaration": {
|
|
8502
|
+
"name": "toPickerItem",
|
|
8503
|
+
"module": "src/columns-tool-panel/columns-tool-panel.utils.ts"
|
|
8504
|
+
}
|
|
8505
|
+
},
|
|
8506
|
+
{
|
|
8507
|
+
"kind": "js",
|
|
8508
|
+
"name": "getPickerItems",
|
|
8509
|
+
"declaration": {
|
|
8510
|
+
"name": "getPickerItems",
|
|
8511
|
+
"module": "src/columns-tool-panel/columns-tool-panel.utils.ts"
|
|
8512
|
+
}
|
|
8513
|
+
},
|
|
8514
|
+
{
|
|
8515
|
+
"kind": "js",
|
|
8516
|
+
"name": "partitionPickerItems",
|
|
8517
|
+
"declaration": {
|
|
8518
|
+
"name": "partitionPickerItems",
|
|
8519
|
+
"module": "src/columns-tool-panel/columns-tool-panel.utils.ts"
|
|
8520
|
+
}
|
|
8521
|
+
},
|
|
8522
|
+
{
|
|
8523
|
+
"kind": "js",
|
|
8524
|
+
"name": "reorderVisibleIds",
|
|
8525
|
+
"declaration": {
|
|
8526
|
+
"name": "reorderVisibleIds",
|
|
8527
|
+
"module": "src/columns-tool-panel/columns-tool-panel.utils.ts"
|
|
8528
|
+
}
|
|
8529
|
+
},
|
|
8530
|
+
{
|
|
8531
|
+
"kind": "js",
|
|
8532
|
+
"name": "applyVisibleOrder",
|
|
8533
|
+
"declaration": {
|
|
8534
|
+
"name": "applyVisibleOrder",
|
|
8535
|
+
"module": "src/columns-tool-panel/columns-tool-panel.utils.ts"
|
|
8536
|
+
}
|
|
8537
|
+
},
|
|
8538
|
+
{
|
|
8539
|
+
"kind": "js",
|
|
8540
|
+
"name": "resolveGridProSideBar",
|
|
8541
|
+
"declaration": {
|
|
8542
|
+
"name": "resolveGridProSideBar",
|
|
8543
|
+
"module": "src/columns-tool-panel/columns-tool-panel.utils.ts"
|
|
8544
|
+
}
|
|
8545
|
+
}
|
|
8546
|
+
]
|
|
8547
|
+
},
|
|
8548
|
+
{
|
|
8549
|
+
"kind": "javascript-module",
|
|
8550
|
+
"path": "src/columns-tool-panel/index.ts",
|
|
8551
|
+
"declarations": [],
|
|
8552
|
+
"exports": [
|
|
8553
|
+
{
|
|
8554
|
+
"kind": "js",
|
|
8555
|
+
"name": "*",
|
|
8556
|
+
"declaration": {
|
|
8557
|
+
"name": "*",
|
|
8558
|
+
"package": "./columns-tool-panel"
|
|
8559
|
+
}
|
|
8560
|
+
},
|
|
8561
|
+
{
|
|
8562
|
+
"kind": "js",
|
|
8563
|
+
"name": "*",
|
|
8564
|
+
"declaration": {
|
|
8565
|
+
"name": "*",
|
|
8566
|
+
"package": "./columns-tool-panel.utils"
|
|
8567
|
+
}
|
|
8568
|
+
}
|
|
8569
|
+
]
|
|
8570
|
+
},
|
|
8065
8571
|
{
|
|
8066
8572
|
"kind": "javascript-module",
|
|
8067
8573
|
"path": "src/datasource/base.datasource.ts",
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import type { IToolPanelComp, IToolPanelParams } from 'ag-grid-community';
|
|
2
|
+
/**
|
|
3
|
+
* Custom columns tool panel. Replaces AG Grid Enterprise `agColumnsToolPanel`.
|
|
4
|
+
*
|
|
5
|
+
* @public
|
|
6
|
+
* @remarks
|
|
7
|
+
* Registered as `gridProColumnsToolPanel` (`GridProToolPanelTypes.columns`).
|
|
8
|
+
* `resolveGridProSideBar` rewrites `sideBar: ['columns']` / `agColumnsToolPanel` to this
|
|
9
|
+
* component so hosts do not need `ColumnsToolPanelModule` — only `SideBarModule`.
|
|
10
|
+
*
|
|
11
|
+
* Layout: search → visible columns (drag to reorder) → divider → hidden columns.
|
|
12
|
+
* Checkboxes toggle visibility via `api.setColumnsVisible`; drag is limited to the
|
|
13
|
+
* visible list and disabled while a search filter is active.
|
|
14
|
+
*/
|
|
15
|
+
export declare class ColumnsToolPanel implements IToolPanelComp {
|
|
16
|
+
private params;
|
|
17
|
+
private api;
|
|
18
|
+
private eGui;
|
|
19
|
+
private searchInput;
|
|
20
|
+
/** Visible (checked) columns, in grid display order. */
|
|
21
|
+
private selectedList;
|
|
22
|
+
/** Hidden columns, alphabetical after search filter. */
|
|
23
|
+
private unselectedList;
|
|
24
|
+
private divider;
|
|
25
|
+
private search;
|
|
26
|
+
/** Source colId while a visible-row drag is in progress. */
|
|
27
|
+
private dragColId;
|
|
28
|
+
/** Stable listener refs so `destroy` can remove the same functions `init` added. */
|
|
29
|
+
private readonly boundRefresh;
|
|
30
|
+
/**
|
|
31
|
+
* AG Grid `IToolPanelComp` entry. Builds the DOM once and subscribes to column
|
|
32
|
+
* events so the picker stays in sync with header menu / API visibility changes.
|
|
33
|
+
*/
|
|
34
|
+
init(params: IToolPanelParams): void;
|
|
35
|
+
/**
|
|
36
|
+
* Rebuilds both lists from current grid column state.
|
|
37
|
+
* Displayed columns stay first (grid order); hidden columns follow so search
|
|
38
|
+
* and drag operate on a single ordered picker model.
|
|
39
|
+
*/
|
|
40
|
+
refresh(): void;
|
|
41
|
+
/** Root element AG Grid mounts into the sidebar. */
|
|
42
|
+
getGui(): HTMLElement;
|
|
43
|
+
destroy(): void;
|
|
44
|
+
/** One-time DOM: scoped styles, search, visible list, divider, hidden list. */
|
|
45
|
+
private buildGui;
|
|
46
|
+
private renderList;
|
|
47
|
+
/**
|
|
48
|
+
* One picker row: drag handle + visibility checkbox + header label.
|
|
49
|
+
* Drag is only bound for visible rows when search is empty so reorder
|
|
50
|
+
* matches full grid order, not a filtered subset.
|
|
51
|
+
*/
|
|
52
|
+
private createItem;
|
|
53
|
+
/** HTML5 drag-and-drop between visible rows; drop target colId is `colId`. */
|
|
54
|
+
private bindDrag;
|
|
55
|
+
/**
|
|
56
|
+
* Applies a new visible-column order via `applyColumnState({ applyOrder: true })`.
|
|
57
|
+
* Hidden columns keep their relative positions; only the visible slice is permuted.
|
|
58
|
+
*/
|
|
59
|
+
private reorderSelected;
|
|
60
|
+
}
|
|
61
|
+
//# sourceMappingURL=columns-tool-panel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"columns-tool-panel.d.ts","sourceRoot":"","sources":["../../../src/columns-tool-panel/columns-tool-panel.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAW,cAAc,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AA8EnF;;;;;;;;;;;;GAYG;AACH,qBAAa,gBAAiB,YAAW,cAAc;IACrD,OAAO,CAAC,MAAM,CAAmB;IACjC,OAAO,CAAC,GAAG,CAAiB;IAC5B,OAAO,CAAC,IAAI,CAAc;IAC1B,OAAO,CAAC,WAAW,CAAmB;IACtC,wDAAwD;IACxD,OAAO,CAAC,YAAY,CAAc;IAClC,wDAAwD;IACxD,OAAO,CAAC,cAAc,CAAc;IACpC,OAAO,CAAC,OAAO,CAAc;IAC7B,OAAO,CAAC,MAAM,CAAM;IACpB,4DAA4D;IAC5D,OAAO,CAAC,SAAS,CAAuB;IACxC,oFAAoF;IACpF,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAwB;IAErD;;;OAGG;IACH,IAAI,CAAC,MAAM,EAAE,gBAAgB,GAAG,IAAI;IAWpC;;;;OAIG;IACH,OAAO,IAAI,IAAI;IA+Bf,oDAAoD;IACpD,MAAM,IAAI,WAAW;IAIrB,OAAO,IAAI,IAAI;IAUf,+EAA+E;IAC/E,OAAO,CAAC,QAAQ;IAoChB,OAAO,CAAC,UAAU;IAOlB;;;;OAIG;IACH,OAAO,CAAC,UAAU;IAoClB,8EAA8E;IAC9E,OAAO,CAAC,QAAQ;IA4BhB;;;OAGG;IACH,OAAO,CAAC,eAAe;CA0BxB"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { Column, GridOptions, ToolPanelDef } from 'ag-grid-community';
|
|
2
|
+
export interface ColumnPickerItem {
|
|
3
|
+
colId: string;
|
|
4
|
+
headerName: string;
|
|
5
|
+
visible: boolean;
|
|
6
|
+
lockVisible: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare const gridProColumnsToolPanelDef: ToolPanelDef;
|
|
9
|
+
export declare function toPickerItem(col: Column): ColumnPickerItem | null;
|
|
10
|
+
export declare function getPickerItems(columns: Column[]): ColumnPickerItem[];
|
|
11
|
+
export declare function partitionPickerItems(items: ColumnPickerItem[], search: string): {
|
|
12
|
+
selected: ColumnPickerItem[];
|
|
13
|
+
unselected: ColumnPickerItem[];
|
|
14
|
+
};
|
|
15
|
+
export declare function reorderVisibleIds(allVisibleIds: string[], shownIds: string[], fromId: string, toId: string): string[] | null;
|
|
16
|
+
export declare function applyVisibleOrder<T extends {
|
|
17
|
+
colId?: string;
|
|
18
|
+
hide?: boolean | null;
|
|
19
|
+
}>(columnState: T[], visibleOrder: string[]): T[];
|
|
20
|
+
/**
|
|
21
|
+
* Rewrites `sideBar: ['columns']` / `agColumnsToolPanel` to the custom Grid Pro picker.
|
|
22
|
+
*/
|
|
23
|
+
export declare function resolveGridProSideBar(sideBar: GridOptions['sideBar']): GridOptions['sideBar'];
|
|
24
|
+
//# sourceMappingURL=columns-tool-panel.utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"columns-tool-panel.utils.d.ts","sourceRoot":"","sources":["../../../src/columns-tool-panel/columns-tool-panel.utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAG3E,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,OAAO,CAAC;IACjB,WAAW,EAAE,OAAO,CAAC;CACtB;AAED,eAAO,MAAM,0BAA0B,EAAE,YAMxC,CAAC;AAUF,wBAAgB,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,gBAAgB,GAAG,IAAI,CAkBjE;AAED,wBAAgB,cAAc,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,gBAAgB,EAAE,CAEpE;AAED,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,gBAAgB,EAAE,EACzB,MAAM,EAAE,MAAM,GACb;IAAE,QAAQ,EAAE,gBAAgB,EAAE,CAAC;IAAC,UAAU,EAAE,gBAAgB,EAAE,CAAA;CAAE,CAWlE;AAED,wBAAgB,iBAAiB,CAC/B,aAAa,EAAE,MAAM,EAAE,EACvB,QAAQ,EAAE,MAAM,EAAE,EAClB,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,MAAM,GACX,MAAM,EAAE,GAAG,IAAI,CAoBjB;AAED,wBAAgB,iBAAiB,CAAC,CAAC,SAAS;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,OAAO,GAAG,IAAI,CAAA;CAAE,EACnF,WAAW,EAAE,CAAC,EAAE,EAChB,YAAY,EAAE,MAAM,EAAE,GACrB,CAAC,EAAE,CAYL;AA2BD;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,WAAW,CAAC,SAAS,CAAC,GAAG,WAAW,CAAC,SAAS,CAAC,CA6C7F"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/columns-tool-panel/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,4BAA4B,CAAC"}
|
|
@@ -81,9 +81,7 @@ declare const GridProBeta_base: (new (...args: any[]) => {
|
|
|
81
81
|
slot: string;
|
|
82
82
|
readonly tagName: string;
|
|
83
83
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
84
|
-
checkVisibility(options
|
|
85
|
-
* The key to use for persisting the filter model in local browser or KV storage.
|
|
86
|
-
*/: CheckVisibilityOptions): boolean;
|
|
84
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
87
85
|
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
|
|
88
86
|
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
|
|
89
87
|
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grid-pro-beta.d.ts","sourceRoot":"","sources":["../../src/grid-pro-beta.ts"],"names":[],"mappings":"AAOA,OAAO,EAAyB,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAC9E,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,KAAK,EACV,MAAM,EACN,WAAW,EAGX,OAAO,EACP,WAAW,EACX,UAAU,EAEX,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"grid-pro-beta.d.ts","sourceRoot":"","sources":["../../src/grid-pro-beta.ts"],"names":[],"mappings":"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"}
|
|
@@ -153,6 +153,14 @@ export declare enum GridProStatusBarTypes {
|
|
|
153
153
|
reload = "reload",
|
|
154
154
|
rowCount = "rowCount"
|
|
155
155
|
}
|
|
156
|
+
/**
|
|
157
|
+
* Custom Grid Pro tool panel component names.
|
|
158
|
+
* @public
|
|
159
|
+
* @remarks Replaces AG Grid Enterprise `agColumnsToolPanel`. Requires `SideBarModule`.
|
|
160
|
+
*/
|
|
161
|
+
export declare enum GridProToolPanelTypes {
|
|
162
|
+
columns = "gridProColumnsToolPanel"
|
|
163
|
+
}
|
|
156
164
|
/**
|
|
157
165
|
* Event fired when grid is ready
|
|
158
166
|
* @public
|