@genesislcap/grid-pro 15.23.2 → 15.24.0-FUI-2603.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/custom-elements.json +611 -611
  2. package/package.json +13 -13
@@ -7808,6 +7808,319 @@
7808
7808
  }
7809
7809
  ]
7810
7810
  },
7811
+ {
7812
+ "kind": "javascript-module",
7813
+ "path": "src/column/column.template.ts",
7814
+ "declarations": [
7815
+ {
7816
+ "kind": "variable",
7817
+ "name": "ColumnTemplate",
7818
+ "default": "html<GridProColumn>`\n <template>\n <slot ${slotted('slottedAgCell')} @slotchange=\"${(x) => x.slottedAgCellChanged()}\"></slot>\n </template>\n`",
7819
+ "description": "The Grid Pro Column Template.",
7820
+ "privacy": "public"
7821
+ }
7822
+ ],
7823
+ "exports": [
7824
+ {
7825
+ "kind": "js",
7826
+ "name": "ColumnTemplate",
7827
+ "declaration": {
7828
+ "name": "ColumnTemplate",
7829
+ "module": "src/column/column.template.ts"
7830
+ }
7831
+ }
7832
+ ]
7833
+ },
7834
+ {
7835
+ "kind": "javascript-module",
7836
+ "path": "src/column/column.ts",
7837
+ "declarations": [
7838
+ {
7839
+ "kind": "class",
7840
+ "description": "The Grid Pro Column element.",
7841
+ "name": "GridProColumn",
7842
+ "members": [
7843
+ {
7844
+ "kind": "field",
7845
+ "name": "slottedAgCell",
7846
+ "type": {
7847
+ "text": "HTMLElement[]"
7848
+ },
7849
+ "privacy": "public"
7850
+ },
7851
+ {
7852
+ "kind": "field",
7853
+ "name": "definition",
7854
+ "type": {
7855
+ "text": "ColDef"
7856
+ },
7857
+ "default": "{}"
7858
+ },
7859
+ {
7860
+ "kind": "method",
7861
+ "name": "slottedAgCellChanged",
7862
+ "privacy": "public"
7863
+ },
7864
+ {
7865
+ "kind": "method",
7866
+ "name": "deepClone",
7867
+ "return": {
7868
+ "type": {
7869
+ "text": "Node"
7870
+ }
7871
+ },
7872
+ "inheritedFrom": {
7873
+ "name": "LifecycleMixin",
7874
+ "module": "src/mixins/lifecycle/lifecycle.ts"
7875
+ }
7876
+ },
7877
+ {
7878
+ "kind": "method",
7879
+ "name": "cloneNode",
7880
+ "return": {
7881
+ "type": {
7882
+ "text": "Node"
7883
+ }
7884
+ },
7885
+ "parameters": [
7886
+ {
7887
+ "name": "deep",
7888
+ "optional": true,
7889
+ "type": {
7890
+ "text": "boolean"
7891
+ }
7892
+ }
7893
+ ],
7894
+ "inheritedFrom": {
7895
+ "name": "LifecycleMixin",
7896
+ "module": "src/mixins/lifecycle/lifecycle.ts"
7897
+ }
7898
+ },
7899
+ {
7900
+ "kind": "field",
7901
+ "name": "shouldRunDisconnect",
7902
+ "return": {
7903
+ "type": {
7904
+ "text": ""
7905
+ }
7906
+ },
7907
+ "readonly": true,
7908
+ "inheritedFrom": {
7909
+ "name": "LifecycleMixin",
7910
+ "module": "src/mixins/lifecycle/lifecycle.ts"
7911
+ }
7912
+ },
7913
+ {
7914
+ "kind": "field",
7915
+ "name": "shouldRunConnect",
7916
+ "return": {
7917
+ "type": {
7918
+ "text": ""
7919
+ }
7920
+ },
7921
+ "readonly": true,
7922
+ "inheritedFrom": {
7923
+ "name": "LifecycleMixin",
7924
+ "module": "src/mixins/lifecycle/lifecycle.ts"
7925
+ }
7926
+ },
7927
+ {
7928
+ "kind": "method",
7929
+ "name": "#_blockLifecycleDueToTokenChange",
7930
+ "return": {
7931
+ "type": {
7932
+ "text": "boolean"
7933
+ }
7934
+ },
7935
+ "parameters": [
7936
+ {
7937
+ "name": "lifecycleType",
7938
+ "type": {
7939
+ "text": "Lifecycletype"
7940
+ }
7941
+ }
7942
+ ],
7943
+ "inheritedFrom": {
7944
+ "name": "LifecycleMixin",
7945
+ "module": "src/mixins/lifecycle/lifecycle.ts"
7946
+ }
7947
+ },
7948
+ {
7949
+ "kind": "field",
7950
+ "name": "_presentation",
7951
+ "type": {
7952
+ "text": "ComponentPresentation | null | undefined"
7953
+ },
7954
+ "privacy": "private",
7955
+ "default": "void 0",
7956
+ "inheritedFrom": {
7957
+ "name": "FoundationElement",
7958
+ "module": "src/foundation-element/foundation-element.ts"
7959
+ }
7960
+ },
7961
+ {
7962
+ "kind": "field",
7963
+ "name": "$presentation",
7964
+ "type": {
7965
+ "text": "ComponentPresentation | null"
7966
+ },
7967
+ "privacy": "public",
7968
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
7969
+ "inheritedFrom": {
7970
+ "name": "FoundationElement",
7971
+ "module": "src/foundation-element/foundation-element.ts"
7972
+ }
7973
+ },
7974
+ {
7975
+ "kind": "field",
7976
+ "name": "template",
7977
+ "type": {
7978
+ "text": "ElementViewTemplate | void | null"
7979
+ },
7980
+ "privacy": "public",
7981
+ "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.",
7982
+ "inheritedFrom": {
7983
+ "name": "FoundationElement",
7984
+ "module": "src/foundation-element/foundation-element.ts"
7985
+ }
7986
+ },
7987
+ {
7988
+ "kind": "method",
7989
+ "name": "templateChanged",
7990
+ "privacy": "protected",
7991
+ "return": {
7992
+ "type": {
7993
+ "text": "void"
7994
+ }
7995
+ },
7996
+ "inheritedFrom": {
7997
+ "name": "FoundationElement",
7998
+ "module": "src/foundation-element/foundation-element.ts"
7999
+ }
8000
+ },
8001
+ {
8002
+ "kind": "field",
8003
+ "name": "styles",
8004
+ "type": {
8005
+ "text": "ElementStyles | void | null"
8006
+ },
8007
+ "privacy": "public",
8008
+ "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.",
8009
+ "inheritedFrom": {
8010
+ "name": "FoundationElement",
8011
+ "module": "src/foundation-element/foundation-element.ts"
8012
+ }
8013
+ },
8014
+ {
8015
+ "kind": "method",
8016
+ "name": "stylesChanged",
8017
+ "privacy": "protected",
8018
+ "return": {
8019
+ "type": {
8020
+ "text": "void"
8021
+ }
8022
+ },
8023
+ "inheritedFrom": {
8024
+ "name": "FoundationElement",
8025
+ "module": "src/foundation-element/foundation-element.ts"
8026
+ }
8027
+ },
8028
+ {
8029
+ "kind": "method",
8030
+ "name": "compose",
8031
+ "privacy": "public",
8032
+ "static": true,
8033
+ "return": {
8034
+ "type": {
8035
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
8036
+ }
8037
+ },
8038
+ "parameters": [
8039
+ {
8040
+ "name": "this",
8041
+ "type": {
8042
+ "text": "K"
8043
+ }
8044
+ },
8045
+ {
8046
+ "name": "elementDefinition",
8047
+ "type": {
8048
+ "text": "T"
8049
+ },
8050
+ "description": "The definition of the element to create the registry\nfunction for."
8051
+ }
8052
+ ],
8053
+ "description": "Defines an element registry function with a set of element definition defaults.",
8054
+ "inheritedFrom": {
8055
+ "name": "FoundationElement",
8056
+ "module": "src/foundation-element/foundation-element.ts"
8057
+ }
8058
+ }
8059
+ ],
8060
+ "mixins": [
8061
+ {
8062
+ "name": "LifecycleMixin",
8063
+ "package": "@genesislcap/foundation-utils"
8064
+ }
8065
+ ],
8066
+ "superclass": {
8067
+ "name": "FoundationElement",
8068
+ "package": "@microsoft/fast-foundation"
8069
+ },
8070
+ "tagName": "grid-pro-column",
8071
+ "customElement": true
8072
+ }
8073
+ ],
8074
+ "exports": [
8075
+ {
8076
+ "kind": "js",
8077
+ "name": "GridProColumn",
8078
+ "declaration": {
8079
+ "name": "GridProColumn",
8080
+ "module": "src/column/column.ts"
8081
+ }
8082
+ },
8083
+ {
8084
+ "kind": "custom-element-definition",
8085
+ "name": "grid-pro-column",
8086
+ "declaration": {
8087
+ "name": "GridProColumn",
8088
+ "module": "src/column/column.ts"
8089
+ }
8090
+ }
8091
+ ]
8092
+ },
8093
+ {
8094
+ "kind": "javascript-module",
8095
+ "path": "src/column/index.ts",
8096
+ "declarations": [],
8097
+ "exports": [
8098
+ {
8099
+ "kind": "js",
8100
+ "name": "*",
8101
+ "declaration": {
8102
+ "name": "*",
8103
+ "package": "./column.template"
8104
+ }
8105
+ },
8106
+ {
8107
+ "kind": "js",
8108
+ "name": "*",
8109
+ "declaration": {
8110
+ "name": "*",
8111
+ "package": "./column"
8112
+ }
8113
+ },
8114
+ {
8115
+ "kind": "js",
8116
+ "name": "*",
8117
+ "declaration": {
8118
+ "name": "*",
8119
+ "package": "./utils"
8120
+ }
8121
+ }
8122
+ ]
8123
+ },
7811
8124
  {
7812
8125
  "kind": "javascript-module",
7813
8126
  "path": "src/column-filters/enum-column.filter.ts",
@@ -7984,165 +8297,22 @@
7984
8297
  "default": "null",
7985
8298
  "description": "`null` while inactive (everything passes); otherwise the selected values, with `null`\nstanding for blanks. May contain values absent from `allValues` (e.g. a restored model\nreferencing rows not loaded yet) — those are preserved and rendered as extra list entries\nso restoring a persisted model never silently narrows it, while still letting the user\ndeselect them."
7986
8299
  },
7987
- {
7988
- "kind": "field",
7989
- "name": "searchTerm",
7990
- "type": {
7991
- "text": "string"
7992
- },
7993
- "privacy": "private",
7994
- "default": "''"
7995
- },
7996
- {
7997
- "kind": "method",
7998
- "name": "init",
7999
- "privacy": "public",
8000
- "return": {
8001
- "type": {
8002
- "text": "void"
8003
- }
8004
- },
8005
- "parameters": [
8006
- {
8007
- "name": "params",
8008
- "type": {
8009
- "text": "IFilterParams & EnumColumnFilterParams"
8010
- }
8011
- }
8012
- ]
8013
- },
8014
- {
8015
- "kind": "method",
8016
- "name": "getGui",
8017
- "privacy": "public",
8018
- "return": {
8019
- "type": {
8020
- "text": "HTMLElement"
8021
- }
8022
- }
8023
- },
8024
- {
8025
- "kind": "method",
8026
- "name": "isFilterActive",
8027
- "privacy": "public",
8028
- "return": {
8029
- "type": {
8030
- "text": "boolean"
8031
- }
8032
- }
8033
- },
8034
- {
8035
- "kind": "method",
8036
- "name": "doesFilterPass",
8037
- "privacy": "public",
8038
- "return": {
8039
- "type": {
8040
- "text": "boolean"
8041
- }
8042
- },
8043
- "parameters": [
8044
- {
8045
- "name": "params",
8046
- "type": {
8047
- "text": "IDoesFilterPassParams"
8048
- }
8049
- }
8050
- ]
8051
- },
8052
- {
8053
- "kind": "method",
8054
- "name": "getModel",
8055
- "privacy": "public",
8056
- "return": {
8057
- "type": {
8058
- "text": "EnumColumnFilterModel | null"
8059
- }
8060
- }
8061
- },
8062
- {
8063
- "kind": "method",
8064
- "name": "setModel",
8065
- "privacy": "public",
8066
- "return": {
8067
- "type": {
8068
- "text": "void"
8069
- }
8070
- },
8071
- "parameters": [
8072
- {
8073
- "name": "model",
8074
- "type": {
8075
- "text": "EnumColumnFilterModel | null"
8076
- }
8077
- }
8078
- ]
8079
- },
8080
- {
8081
- "kind": "method",
8082
- "name": "getModelAsString",
8083
- "privacy": "public",
8084
- "return": {
8085
- "type": {
8086
- "text": "string"
8087
- }
8088
- },
8089
- "parameters": [
8090
- {
8091
- "name": "model",
8092
- "type": {
8093
- "text": "EnumColumnFilterModel | null"
8094
- }
8095
- }
8096
- ]
8097
- },
8098
- {
8099
- "kind": "method",
8100
- "name": "clear",
8101
- "privacy": "public",
8102
- "return": {
8103
- "type": {
8104
- "text": "void"
8105
- }
8106
- },
8107
- "description": "Clears the filter back to inactive and notifies the grid; used by the floating filter."
8108
- },
8109
- {
8110
- "kind": "method",
8111
- "name": "installHeaderTooltip",
8112
- "privacy": "private",
8113
- "return": {
8114
- "type": {
8115
- "text": "void"
8116
- }
8117
- },
8118
- "description": "Surfaces the active selection in the column's header tooltip (alongside AG's native header\nfilter icon), so the filter state is inspectable from the header without the layout-changing\nfloating filter row. Installed as a `headerTooltipValueGetter`, which AG evaluates lazily on\nhover — no header refresh needed when the model changes. While inactive it returns\n`undefined`, which falls back to the consumer's own `headerTooltip`; when active, that\ntooltip is kept as the prefix. A consumer-provided getter is left untouched."
8119
- },
8120
- {
8121
- "kind": "method",
8122
- "name": "afterGuiAttached",
8123
- "privacy": "public",
8124
- "return": {
8125
- "type": {
8126
- "text": "void"
8127
- }
8300
+ {
8301
+ "kind": "field",
8302
+ "name": "searchTerm",
8303
+ "type": {
8304
+ "text": "string"
8128
8305
  },
8129
- "parameters": [
8130
- {
8131
- "name": "params",
8132
- "optional": true,
8133
- "type": {
8134
- "text": "{ suppressFocus?: boolean }"
8135
- }
8136
- }
8137
- ]
8306
+ "privacy": "private",
8307
+ "default": "''"
8138
8308
  },
8139
8309
  {
8140
8310
  "kind": "method",
8141
- "name": "refresh",
8311
+ "name": "init",
8142
8312
  "privacy": "public",
8143
8313
  "return": {
8144
8314
  "type": {
8145
- "text": "boolean"
8315
+ "text": "void"
8146
8316
  }
8147
8317
  },
8148
8318
  "parameters": [
@@ -8156,169 +8326,114 @@
8156
8326
  },
8157
8327
  {
8158
8328
  "kind": "method",
8159
- "name": "destroy",
8329
+ "name": "getGui",
8160
8330
  "privacy": "public",
8161
8331
  "return": {
8162
8332
  "type": {
8163
- "text": "void"
8333
+ "text": "HTMLElement"
8164
8334
  }
8165
8335
  }
8166
8336
  },
8167
8337
  {
8168
8338
  "kind": "method",
8169
- "name": "resolveState",
8170
- "privacy": "private",
8339
+ "name": "isFilterActive",
8340
+ "privacy": "public",
8171
8341
  "return": {
8172
8342
  "type": {
8173
- "text": "void"
8343
+ "text": "boolean"
8174
8344
  }
8175
- },
8176
- "description": "Resolves the option list (values array or getter) and re-renders."
8345
+ }
8177
8346
  },
8178
8347
  {
8179
8348
  "kind": "method",
8180
- "name": "loadAsyncValues",
8181
- "privacy": "private",
8349
+ "name": "doesFilterPass",
8350
+ "privacy": "public",
8182
8351
  "return": {
8183
8352
  "type": {
8184
- "text": "void"
8353
+ "text": "boolean"
8185
8354
  }
8186
8355
  },
8187
8356
  "parameters": [
8188
8357
  {
8189
- "name": "getValues",
8358
+ "name": "params",
8190
8359
  "type": {
8191
- "text": "EnumColumnFilterValuesGetter"
8360
+ "text": "IDoesFilterPassParams"
8192
8361
  }
8193
8362
  }
8194
8363
  ]
8195
8364
  },
8196
8365
  {
8197
8366
  "kind": "method",
8198
- "name": "getCellValue",
8199
- "privacy": "private",
8200
- "return": {
8201
- "type": {
8202
- "text": "unknown"
8203
- }
8204
- },
8205
- "parameters": [
8206
- {
8207
- "name": "node",
8208
- "type": {
8209
- "text": "any"
8210
- }
8211
- }
8212
- ],
8213
- "description": "The raw field read covers params without `getValue` (e.g. stripped-down test params)."
8214
- },
8215
- {
8216
- "kind": "method",
8217
- "name": "extraModelValues",
8218
- "privacy": "private",
8219
- "return": {
8220
- "type": {
8221
- "text": "string[]"
8222
- }
8223
- },
8224
- "description": "Model values that are not in the option list, e.g. from a restored persisted model."
8225
- },
8226
- {
8227
- "kind": "method",
8228
- "name": "allKeys",
8229
- "privacy": "private",
8367
+ "name": "getModel",
8368
+ "privacy": "public",
8230
8369
  "return": {
8231
8370
  "type": {
8232
- "text": "(string | null)[]"
8371
+ "text": "EnumColumnFilterModel | null"
8233
8372
  }
8234
- },
8235
- "description": "All offered entry keys: the option list, then any off-list model values (rendered so they can\nbe deselected rather than being stuck in the model forever), then `null` (blanks) last like\nExcel. The blanks entry is also offered whenever the model references it, so a restored\nblanks selection stays visible and removable even before blank rows are detected."
8373
+ }
8236
8374
  },
8237
8375
  {
8238
8376
  "kind": "method",
8239
- "name": "isSelected",
8240
- "privacy": "private",
8377
+ "name": "setModel",
8378
+ "privacy": "public",
8241
8379
  "return": {
8242
8380
  "type": {
8243
- "text": "boolean"
8381
+ "text": "void"
8244
8382
  }
8245
8383
  },
8246
8384
  "parameters": [
8247
8385
  {
8248
- "name": "key",
8386
+ "name": "model",
8249
8387
  "type": {
8250
- "text": "string | null"
8388
+ "text": "EnumColumnFilterModel | null"
8251
8389
  }
8252
8390
  }
8253
8391
  ]
8254
8392
  },
8255
8393
  {
8256
8394
  "kind": "method",
8257
- "name": "visibleKeys",
8258
- "privacy": "private",
8259
- "return": {
8260
- "type": {
8261
- "text": "(string | null)[]"
8262
- }
8263
- }
8264
- },
8265
- {
8266
- "kind": "method",
8267
- "name": "updateSelection",
8268
- "privacy": "private",
8395
+ "name": "getModelAsString",
8396
+ "privacy": "public",
8269
8397
  "return": {
8270
8398
  "type": {
8271
- "text": "void"
8399
+ "text": "string"
8272
8400
  }
8273
8401
  },
8274
8402
  "parameters": [
8275
8403
  {
8276
- "name": "selected",
8404
+ "name": "model",
8277
8405
  "type": {
8278
- "text": "Set<string | null>"
8406
+ "text": "EnumColumnFilterModel | null"
8279
8407
  }
8280
8408
  }
8281
- ],
8282
- "description": "Applies a new selection. Collapses back to the inactive (`null`) model when every offered\nentry is selected, so a fully re-selected filter reports inactive exactly like the\nenterprise set filter. Selected values beyond the offered keys don't restrict anything an\ninactive filter would pass, so a superset selection collapses too."
8409
+ ]
8283
8410
  },
8284
8411
  {
8285
8412
  "kind": "method",
8286
- "name": "currentSelection",
8287
- "privacy": "private",
8413
+ "name": "clear",
8414
+ "privacy": "public",
8288
8415
  "return": {
8289
8416
  "type": {
8290
- "text": "Set<string | null>"
8417
+ "text": "void"
8291
8418
  }
8292
- }
8419
+ },
8420
+ "description": "Clears the filter back to inactive and notifies the grid; used by the floating filter."
8293
8421
  },
8294
8422
  {
8295
8423
  "kind": "method",
8296
- "name": "toggleValue",
8424
+ "name": "installHeaderTooltip",
8297
8425
  "privacy": "private",
8298
8426
  "return": {
8299
8427
  "type": {
8300
8428
  "text": "void"
8301
8429
  }
8302
8430
  },
8303
- "parameters": [
8304
- {
8305
- "name": "key",
8306
- "type": {
8307
- "text": "string | null"
8308
- }
8309
- },
8310
- {
8311
- "name": "checked",
8312
- "type": {
8313
- "text": "boolean"
8314
- }
8315
- }
8316
- ]
8431
+ "description": "Surfaces the active selection in the column's header tooltip (alongside AG's native header\nfilter icon), so the filter state is inspectable from the header without the layout-changing\nfloating filter row. Installed as a `headerTooltipValueGetter`, which AG evaluates lazily on\nhover — no header refresh needed when the model changes. While inactive it returns\n`undefined`, which falls back to the consumer's own `headerTooltip`; when active, that\ntooltip is kept as the prefix. A consumer-provided getter is left untouched."
8317
8432
  },
8318
8433
  {
8319
8434
  "kind": "method",
8320
- "name": "toggleAllVisible",
8321
- "privacy": "private",
8435
+ "name": "afterGuiAttached",
8436
+ "privacy": "public",
8322
8437
  "return": {
8323
8438
  "type": {
8324
8439
  "text": "void"
@@ -8326,213 +8441,144 @@
8326
8441
  },
8327
8442
  "parameters": [
8328
8443
  {
8329
- "name": "checked",
8444
+ "name": "params",
8445
+ "optional": true,
8330
8446
  "type": {
8331
- "text": "boolean"
8447
+ "text": "{ suppressFocus?: boolean }"
8332
8448
  }
8333
8449
  }
8334
- ],
8335
- "description": "Select-all acts on the searched subset only, mirroring Excel's AutoFilter."
8336
- },
8337
- {
8338
- "kind": "method",
8339
- "name": "createGui",
8340
- "privacy": "private",
8341
- "return": {
8342
- "type": {
8343
- "text": "void"
8344
- }
8345
- }
8450
+ ]
8346
8451
  },
8347
8452
  {
8348
8453
  "kind": "method",
8349
- "name": "createItem",
8350
- "privacy": "private",
8454
+ "name": "refresh",
8455
+ "privacy": "public",
8351
8456
  "return": {
8352
8457
  "type": {
8353
- "text": "{ label: HTMLLabelElement; input: HTMLInputElement }"
8458
+ "text": "boolean"
8354
8459
  }
8355
8460
  },
8356
8461
  "parameters": [
8357
8462
  {
8358
- "name": "text",
8463
+ "name": "params",
8359
8464
  "type": {
8360
- "text": "string"
8465
+ "text": "IFilterParams & EnumColumnFilterParams"
8361
8466
  }
8362
8467
  }
8363
8468
  ]
8364
8469
  },
8365
8470
  {
8366
8471
  "kind": "method",
8367
- "name": "renderList",
8368
- "privacy": "private",
8369
- "return": {
8370
- "type": {
8371
- "text": "void"
8372
- }
8373
- },
8374
- "description": "Rebuilds the value list; used when the values or the search term change."
8375
- },
8376
- {
8377
- "kind": "method",
8378
- "name": "syncCheckedStates",
8379
- "privacy": "private",
8472
+ "name": "destroy",
8473
+ "privacy": "public",
8380
8474
  "return": {
8381
8475
  "type": {
8382
8476
  "text": "void"
8383
8477
  }
8384
- },
8385
- "description": "Refreshes checkbox states in place, preserving DOM (and keyboard focus) on toggles."
8386
- },
8387
- {
8388
- "kind": "method",
8389
- "name": "focusables",
8390
- "privacy": "private",
8391
- "return": {
8392
- "type": {
8393
- "text": "HTMLElement[]"
8394
- }
8395
8478
  }
8396
8479
  },
8397
8480
  {
8398
8481
  "kind": "method",
8399
- "name": "handleKeyDown",
8482
+ "name": "resolveState",
8400
8483
  "privacy": "private",
8401
8484
  "return": {
8402
8485
  "type": {
8403
8486
  "text": "void"
8404
8487
  }
8405
8488
  },
8406
- "parameters": [
8407
- {
8408
- "name": "event",
8409
- "type": {
8410
- "text": "KeyboardEvent"
8411
- }
8412
- }
8413
- ],
8414
- "description": "Arrow keys walk search box, \"(Select All)\" and the visible entries; Enter toggles the\nfocused entry (Space is the checkbox's native toggle). Tab wraps within the popup: AG's own\npopup focus trap collects focusable elements with `querySelectorAll`, which does not pierce\nthe shadow root, so the trap must live here."
8415
- }
8416
- ]
8417
- }
8418
- ],
8419
- "exports": [
8420
- {
8421
- "kind": "js",
8422
- "name": "createEnumValueLabelFormatter",
8423
- "declaration": {
8424
- "name": "createEnumValueLabelFormatter",
8425
- "module": "src/column-filters/enum-column.filter.ts"
8426
- }
8427
- },
8428
- {
8429
- "kind": "js",
8430
- "name": "formatEnumFilterModelAsString",
8431
- "declaration": {
8432
- "name": "formatEnumFilterModelAsString",
8433
- "module": "src/column-filters/enum-column.filter.ts"
8434
- }
8435
- },
8436
- {
8437
- "kind": "js",
8438
- "name": "EnumColumnFilter",
8439
- "declaration": {
8440
- "name": "EnumColumnFilter",
8441
- "module": "src/column-filters/enum-column.filter.ts"
8442
- }
8443
- }
8444
- ]
8445
- },
8446
- {
8447
- "kind": "javascript-module",
8448
- "path": "src/column-filters/enum-column.floating-filter.ts",
8449
- "declarations": [
8450
- {
8451
- "kind": "class",
8452
- "description": "Floating filter companion for EnumColumnFilter: shows the current selection as a\ncompact summary (e.g. `(2) Active, Pending`), opens the parent filter on click, and offers a\none-click clear. Set via `ColDef.floatingFilterComponent` (see\nGridProFilterTypes.enumFloatingFilter); shown when the column enables `floatingFilter`.",
8453
- "name": "EnumColumnFloatingFilter",
8454
- "members": [
8455
- {
8456
- "kind": "field",
8457
- "name": "params",
8458
- "type": {
8459
- "text": "IFloatingFilterParams"
8460
- },
8461
- "privacy": "private"
8489
+ "description": "Resolves the option list (values array or getter) and re-renders."
8462
8490
  },
8463
8491
  {
8464
- "kind": "field",
8465
- "name": "eGui",
8466
- "type": {
8467
- "text": "HTMLElement"
8492
+ "kind": "method",
8493
+ "name": "loadAsyncValues",
8494
+ "privacy": "private",
8495
+ "return": {
8496
+ "type": {
8497
+ "text": "void"
8498
+ }
8468
8499
  },
8469
- "privacy": "private"
8500
+ "parameters": [
8501
+ {
8502
+ "name": "getValues",
8503
+ "type": {
8504
+ "text": "EnumColumnFilterValuesGetter"
8505
+ }
8506
+ }
8507
+ ]
8470
8508
  },
8471
8509
  {
8472
- "kind": "field",
8473
- "name": "eRoot",
8474
- "type": {
8475
- "text": "ShadowRoot"
8476
- },
8510
+ "kind": "method",
8511
+ "name": "getCellValue",
8477
8512
  "privacy": "private",
8478
- "description": "The GUI's shadow root — hosts the content and the shared FAST stylesheet."
8479
- },
8480
- {
8481
- "kind": "field",
8482
- "name": "eSummary",
8483
- "type": {
8484
- "text": "HTMLElement"
8513
+ "return": {
8514
+ "type": {
8515
+ "text": "unknown"
8516
+ }
8485
8517
  },
8486
- "privacy": "private"
8518
+ "parameters": [
8519
+ {
8520
+ "name": "node",
8521
+ "type": {
8522
+ "text": "any"
8523
+ }
8524
+ }
8525
+ ],
8526
+ "description": "The raw field read covers params without `getValue` (e.g. stripped-down test params)."
8487
8527
  },
8488
8528
  {
8489
- "kind": "field",
8490
- "name": "eClear",
8491
- "type": {
8492
- "text": "HTMLButtonElement"
8529
+ "kind": "method",
8530
+ "name": "extraModelValues",
8531
+ "privacy": "private",
8532
+ "return": {
8533
+ "type": {
8534
+ "text": "string[]"
8535
+ }
8493
8536
  },
8494
- "privacy": "private"
8537
+ "description": "Model values that are not in the option list, e.g. from a restored persisted model."
8495
8538
  },
8496
8539
  {
8497
- "kind": "field",
8498
- "name": "formatLabel",
8499
- "type": {
8500
- "text": "(value: string | null) => string"
8540
+ "kind": "method",
8541
+ "name": "allKeys",
8542
+ "privacy": "private",
8543
+ "return": {
8544
+ "type": {
8545
+ "text": "(string | null)[]"
8546
+ }
8501
8547
  },
8502
- "privacy": "private"
8548
+ "description": "All offered entry keys: the option list, then any off-list model values (rendered so they can\nbe deselected rather than being stuck in the model forever), then `null` (blanks) last like\nExcel. The blanks entry is also offered whenever the model references it, so a restored\nblanks selection stays visible and removable even before blank rows are detected."
8503
8549
  },
8504
8550
  {
8505
8551
  "kind": "method",
8506
- "name": "init",
8507
- "privacy": "public",
8552
+ "name": "isSelected",
8553
+ "privacy": "private",
8508
8554
  "return": {
8509
8555
  "type": {
8510
- "text": "void"
8556
+ "text": "boolean"
8511
8557
  }
8512
8558
  },
8513
8559
  "parameters": [
8514
8560
  {
8515
- "name": "params",
8561
+ "name": "key",
8516
8562
  "type": {
8517
- "text": "IFloatingFilterParams"
8563
+ "text": "string | null"
8518
8564
  }
8519
8565
  }
8520
8566
  ]
8521
8567
  },
8522
8568
  {
8523
8569
  "kind": "method",
8524
- "name": "getGui",
8525
- "privacy": "public",
8570
+ "name": "visibleKeys",
8571
+ "privacy": "private",
8526
8572
  "return": {
8527
8573
  "type": {
8528
- "text": "HTMLElement"
8574
+ "text": "(string | null)[]"
8529
8575
  }
8530
8576
  }
8531
8577
  },
8532
8578
  {
8533
8579
  "kind": "method",
8534
- "name": "onParentModelChanged",
8535
- "privacy": "public",
8580
+ "name": "updateSelection",
8581
+ "privacy": "private",
8536
8582
  "return": {
8537
8583
  "type": {
8538
8584
  "text": "void"
@@ -8540,345 +8586,307 @@
8540
8586
  },
8541
8587
  "parameters": [
8542
8588
  {
8543
- "name": "model",
8589
+ "name": "selected",
8544
8590
  "type": {
8545
- "text": "EnumColumnFilterModel | null"
8591
+ "text": "Set<string | null>"
8546
8592
  }
8547
8593
  }
8548
- ]
8594
+ ],
8595
+ "description": "Applies a new selection. Collapses back to the inactive (`null`) model when every offered\nentry is selected, so a fully re-selected filter reports inactive exactly like the\nenterprise set filter. Selected values beyond the offered keys don't restrict anything an\ninactive filter would pass, so a superset selection collapses too."
8549
8596
  },
8550
8597
  {
8551
8598
  "kind": "method",
8552
- "name": "destroy",
8553
- "privacy": "public",
8599
+ "name": "currentSelection",
8600
+ "privacy": "private",
8554
8601
  "return": {
8555
8602
  "type": {
8556
- "text": "void"
8603
+ "text": "Set<string | null>"
8557
8604
  }
8558
8605
  }
8559
- }
8560
- ]
8561
- }
8562
- ],
8563
- "exports": [
8564
- {
8565
- "kind": "js",
8566
- "name": "EnumColumnFloatingFilter",
8567
- "declaration": {
8568
- "name": "EnumColumnFloatingFilter",
8569
- "module": "src/column-filters/enum-column.floating-filter.ts"
8570
- }
8571
- }
8572
- ]
8573
- },
8574
- {
8575
- "kind": "javascript-module",
8576
- "path": "src/column-filters/index.ts",
8577
- "declarations": [],
8578
- "exports": [
8579
- {
8580
- "kind": "js",
8581
- "name": "*",
8582
- "declaration": {
8583
- "name": "*",
8584
- "package": "./enum-column.filter"
8585
- }
8586
- },
8587
- {
8588
- "kind": "js",
8589
- "name": "*",
8590
- "declaration": {
8591
- "name": "*",
8592
- "package": "./enum-column.floating-filter"
8593
- }
8594
- }
8595
- ]
8596
- },
8597
- {
8598
- "kind": "javascript-module",
8599
- "path": "src/column/column.template.ts",
8600
- "declarations": [
8601
- {
8602
- "kind": "variable",
8603
- "name": "ColumnTemplate",
8604
- "default": "html<GridProColumn>`\n <template>\n <slot ${slotted('slottedAgCell')} @slotchange=\"${(x) => x.slottedAgCellChanged()}\"></slot>\n </template>\n`",
8605
- "description": "The Grid Pro Column Template.",
8606
- "privacy": "public"
8607
- }
8608
- ],
8609
- "exports": [
8610
- {
8611
- "kind": "js",
8612
- "name": "ColumnTemplate",
8613
- "declaration": {
8614
- "name": "ColumnTemplate",
8615
- "module": "src/column/column.template.ts"
8616
- }
8617
- }
8618
- ]
8619
- },
8620
- {
8621
- "kind": "javascript-module",
8622
- "path": "src/column/column.ts",
8623
- "declarations": [
8624
- {
8625
- "kind": "class",
8626
- "description": "The Grid Pro Column element.",
8627
- "name": "GridProColumn",
8628
- "members": [
8629
- {
8630
- "kind": "field",
8631
- "name": "slottedAgCell",
8632
- "type": {
8633
- "text": "HTMLElement[]"
8634
- },
8635
- "privacy": "public"
8636
8606
  },
8637
8607
  {
8638
- "kind": "field",
8639
- "name": "definition",
8640
- "type": {
8641
- "text": "ColDef"
8608
+ "kind": "method",
8609
+ "name": "toggleValue",
8610
+ "privacy": "private",
8611
+ "return": {
8612
+ "type": {
8613
+ "text": "void"
8614
+ }
8642
8615
  },
8643
- "default": "{}"
8616
+ "parameters": [
8617
+ {
8618
+ "name": "key",
8619
+ "type": {
8620
+ "text": "string | null"
8621
+ }
8622
+ },
8623
+ {
8624
+ "name": "checked",
8625
+ "type": {
8626
+ "text": "boolean"
8627
+ }
8628
+ }
8629
+ ]
8644
8630
  },
8645
8631
  {
8646
8632
  "kind": "method",
8647
- "name": "slottedAgCellChanged",
8648
- "privacy": "public"
8633
+ "name": "toggleAllVisible",
8634
+ "privacy": "private",
8635
+ "return": {
8636
+ "type": {
8637
+ "text": "void"
8638
+ }
8639
+ },
8640
+ "parameters": [
8641
+ {
8642
+ "name": "checked",
8643
+ "type": {
8644
+ "text": "boolean"
8645
+ }
8646
+ }
8647
+ ],
8648
+ "description": "Select-all acts on the searched subset only, mirroring Excel's AutoFilter."
8649
8649
  },
8650
8650
  {
8651
8651
  "kind": "method",
8652
- "name": "deepClone",
8652
+ "name": "createGui",
8653
+ "privacy": "private",
8653
8654
  "return": {
8654
8655
  "type": {
8655
- "text": "Node"
8656
+ "text": "void"
8656
8657
  }
8657
- },
8658
- "inheritedFrom": {
8659
- "name": "LifecycleMixin",
8660
- "module": "src/mixins/lifecycle/lifecycle.ts"
8661
8658
  }
8662
8659
  },
8663
8660
  {
8664
8661
  "kind": "method",
8665
- "name": "cloneNode",
8662
+ "name": "createItem",
8663
+ "privacy": "private",
8666
8664
  "return": {
8667
8665
  "type": {
8668
- "text": "Node"
8666
+ "text": "{ label: HTMLLabelElement; input: HTMLInputElement }"
8669
8667
  }
8670
8668
  },
8671
8669
  "parameters": [
8672
8670
  {
8673
- "name": "deep",
8674
- "optional": true,
8671
+ "name": "text",
8675
8672
  "type": {
8676
- "text": "boolean"
8677
- }
8678
- }
8679
- ],
8680
- "inheritedFrom": {
8681
- "name": "LifecycleMixin",
8682
- "module": "src/mixins/lifecycle/lifecycle.ts"
8683
- }
8673
+ "text": "string"
8674
+ }
8675
+ }
8676
+ ]
8684
8677
  },
8685
8678
  {
8686
- "kind": "field",
8687
- "name": "shouldRunDisconnect",
8679
+ "kind": "method",
8680
+ "name": "renderList",
8681
+ "privacy": "private",
8688
8682
  "return": {
8689
8683
  "type": {
8690
- "text": ""
8684
+ "text": "void"
8691
8685
  }
8692
8686
  },
8693
- "readonly": true,
8694
- "inheritedFrom": {
8695
- "name": "LifecycleMixin",
8696
- "module": "src/mixins/lifecycle/lifecycle.ts"
8697
- }
8687
+ "description": "Rebuilds the value list; used when the values or the search term change."
8698
8688
  },
8699
8689
  {
8700
- "kind": "field",
8701
- "name": "shouldRunConnect",
8690
+ "kind": "method",
8691
+ "name": "syncCheckedStates",
8692
+ "privacy": "private",
8702
8693
  "return": {
8703
8694
  "type": {
8704
- "text": ""
8695
+ "text": "void"
8705
8696
  }
8706
8697
  },
8707
- "readonly": true,
8708
- "inheritedFrom": {
8709
- "name": "LifecycleMixin",
8710
- "module": "src/mixins/lifecycle/lifecycle.ts"
8698
+ "description": "Refreshes checkbox states in place, preserving DOM (and keyboard focus) on toggles."
8699
+ },
8700
+ {
8701
+ "kind": "method",
8702
+ "name": "focusables",
8703
+ "privacy": "private",
8704
+ "return": {
8705
+ "type": {
8706
+ "text": "HTMLElement[]"
8707
+ }
8711
8708
  }
8712
8709
  },
8713
8710
  {
8714
8711
  "kind": "method",
8715
- "name": "#_blockLifecycleDueToTokenChange",
8712
+ "name": "handleKeyDown",
8713
+ "privacy": "private",
8716
8714
  "return": {
8717
8715
  "type": {
8718
- "text": "boolean"
8716
+ "text": "void"
8719
8717
  }
8720
8718
  },
8721
8719
  "parameters": [
8722
8720
  {
8723
- "name": "lifecycleType",
8721
+ "name": "event",
8724
8722
  "type": {
8725
- "text": "Lifecycletype"
8723
+ "text": "KeyboardEvent"
8726
8724
  }
8727
8725
  }
8728
8726
  ],
8729
- "inheritedFrom": {
8730
- "name": "LifecycleMixin",
8731
- "module": "src/mixins/lifecycle/lifecycle.ts"
8732
- }
8727
+ "description": "Arrow keys walk search box, \"(Select All)\" and the visible entries; Enter toggles the\nfocused entry (Space is the checkbox's native toggle). Tab wraps within the popup: AG's own\npopup focus trap collects focusable elements with `querySelectorAll`, which does not pierce\nthe shadow root, so the trap must live here."
8728
+ }
8729
+ ]
8730
+ }
8731
+ ],
8732
+ "exports": [
8733
+ {
8734
+ "kind": "js",
8735
+ "name": "createEnumValueLabelFormatter",
8736
+ "declaration": {
8737
+ "name": "createEnumValueLabelFormatter",
8738
+ "module": "src/column-filters/enum-column.filter.ts"
8739
+ }
8740
+ },
8741
+ {
8742
+ "kind": "js",
8743
+ "name": "formatEnumFilterModelAsString",
8744
+ "declaration": {
8745
+ "name": "formatEnumFilterModelAsString",
8746
+ "module": "src/column-filters/enum-column.filter.ts"
8747
+ }
8748
+ },
8749
+ {
8750
+ "kind": "js",
8751
+ "name": "EnumColumnFilter",
8752
+ "declaration": {
8753
+ "name": "EnumColumnFilter",
8754
+ "module": "src/column-filters/enum-column.filter.ts"
8755
+ }
8756
+ }
8757
+ ]
8758
+ },
8759
+ {
8760
+ "kind": "javascript-module",
8761
+ "path": "src/column-filters/enum-column.floating-filter.ts",
8762
+ "declarations": [
8763
+ {
8764
+ "kind": "class",
8765
+ "description": "Floating filter companion for EnumColumnFilter: shows the current selection as a\ncompact summary (e.g. `(2) Active, Pending`), opens the parent filter on click, and offers a\none-click clear. Set via `ColDef.floatingFilterComponent` (see\nGridProFilterTypes.enumFloatingFilter); shown when the column enables `floatingFilter`.",
8766
+ "name": "EnumColumnFloatingFilter",
8767
+ "members": [
8768
+ {
8769
+ "kind": "field",
8770
+ "name": "params",
8771
+ "type": {
8772
+ "text": "IFloatingFilterParams"
8773
+ },
8774
+ "privacy": "private"
8733
8775
  },
8734
8776
  {
8735
8777
  "kind": "field",
8736
- "name": "_presentation",
8778
+ "name": "eGui",
8737
8779
  "type": {
8738
- "text": "ComponentPresentation | null | undefined"
8780
+ "text": "HTMLElement"
8739
8781
  },
8740
- "privacy": "private",
8741
- "default": "void 0",
8742
- "inheritedFrom": {
8743
- "name": "FoundationElement",
8744
- "module": "src/foundation-element/foundation-element.ts"
8745
- }
8782
+ "privacy": "private"
8746
8783
  },
8747
8784
  {
8748
8785
  "kind": "field",
8749
- "name": "$presentation",
8786
+ "name": "eRoot",
8750
8787
  "type": {
8751
- "text": "ComponentPresentation | null"
8788
+ "text": "ShadowRoot"
8752
8789
  },
8753
- "privacy": "public",
8754
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
8755
- "inheritedFrom": {
8756
- "name": "FoundationElement",
8757
- "module": "src/foundation-element/foundation-element.ts"
8758
- }
8790
+ "privacy": "private",
8791
+ "description": "The GUI's shadow root — hosts the content and the shared FAST stylesheet."
8759
8792
  },
8760
8793
  {
8761
8794
  "kind": "field",
8762
- "name": "template",
8795
+ "name": "eSummary",
8763
8796
  "type": {
8764
- "text": "ElementViewTemplate | void | null"
8797
+ "text": "HTMLElement"
8765
8798
  },
8766
- "privacy": "public",
8767
- "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.",
8768
- "inheritedFrom": {
8769
- "name": "FoundationElement",
8770
- "module": "src/foundation-element/foundation-element.ts"
8771
- }
8799
+ "privacy": "private"
8772
8800
  },
8773
8801
  {
8774
- "kind": "method",
8775
- "name": "templateChanged",
8776
- "privacy": "protected",
8777
- "return": {
8778
- "type": {
8779
- "text": "void"
8780
- }
8802
+ "kind": "field",
8803
+ "name": "eClear",
8804
+ "type": {
8805
+ "text": "HTMLButtonElement"
8781
8806
  },
8782
- "inheritedFrom": {
8783
- "name": "FoundationElement",
8784
- "module": "src/foundation-element/foundation-element.ts"
8785
- }
8807
+ "privacy": "private"
8786
8808
  },
8787
8809
  {
8788
8810
  "kind": "field",
8789
- "name": "styles",
8811
+ "name": "formatLabel",
8790
8812
  "type": {
8791
- "text": "ElementStyles | void | null"
8813
+ "text": "(value: string | null) => string"
8792
8814
  },
8793
- "privacy": "public",
8794
- "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.",
8795
- "inheritedFrom": {
8796
- "name": "FoundationElement",
8797
- "module": "src/foundation-element/foundation-element.ts"
8798
- }
8815
+ "privacy": "private"
8799
8816
  },
8800
8817
  {
8801
8818
  "kind": "method",
8802
- "name": "stylesChanged",
8803
- "privacy": "protected",
8819
+ "name": "init",
8820
+ "privacy": "public",
8804
8821
  "return": {
8805
8822
  "type": {
8806
8823
  "text": "void"
8807
8824
  }
8808
8825
  },
8809
- "inheritedFrom": {
8810
- "name": "FoundationElement",
8811
- "module": "src/foundation-element/foundation-element.ts"
8826
+ "parameters": [
8827
+ {
8828
+ "name": "params",
8829
+ "type": {
8830
+ "text": "IFloatingFilterParams"
8831
+ }
8832
+ }
8833
+ ]
8834
+ },
8835
+ {
8836
+ "kind": "method",
8837
+ "name": "getGui",
8838
+ "privacy": "public",
8839
+ "return": {
8840
+ "type": {
8841
+ "text": "HTMLElement"
8842
+ }
8812
8843
  }
8813
8844
  },
8814
8845
  {
8815
8846
  "kind": "method",
8816
- "name": "compose",
8847
+ "name": "onParentModelChanged",
8817
8848
  "privacy": "public",
8818
- "static": true,
8819
8849
  "return": {
8820
8850
  "type": {
8821
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
8851
+ "text": "void"
8822
8852
  }
8823
8853
  },
8824
8854
  "parameters": [
8825
8855
  {
8826
- "name": "this",
8856
+ "name": "model",
8827
8857
  "type": {
8828
- "text": "K"
8858
+ "text": "EnumColumnFilterModel | null"
8829
8859
  }
8830
- },
8831
- {
8832
- "name": "elementDefinition",
8833
- "type": {
8834
- "text": "T"
8835
- },
8836
- "description": "The definition of the element to create the registry\nfunction for."
8837
8860
  }
8838
- ],
8839
- "description": "Defines an element registry function with a set of element definition defaults.",
8840
- "inheritedFrom": {
8841
- "name": "FoundationElement",
8842
- "module": "src/foundation-element/foundation-element.ts"
8843
- }
8844
- }
8845
- ],
8846
- "mixins": [
8861
+ ]
8862
+ },
8847
8863
  {
8848
- "name": "LifecycleMixin",
8849
- "package": "@genesislcap/foundation-utils"
8864
+ "kind": "method",
8865
+ "name": "destroy",
8866
+ "privacy": "public",
8867
+ "return": {
8868
+ "type": {
8869
+ "text": "void"
8870
+ }
8871
+ }
8850
8872
  }
8851
- ],
8852
- "superclass": {
8853
- "name": "FoundationElement",
8854
- "package": "@microsoft/fast-foundation"
8855
- },
8856
- "tagName": "grid-pro-column",
8857
- "customElement": true
8873
+ ]
8858
8874
  }
8859
8875
  ],
8860
8876
  "exports": [
8861
8877
  {
8862
8878
  "kind": "js",
8863
- "name": "GridProColumn",
8864
- "declaration": {
8865
- "name": "GridProColumn",
8866
- "module": "src/column/column.ts"
8867
- }
8868
- },
8869
- {
8870
- "kind": "custom-element-definition",
8871
- "name": "grid-pro-column",
8879
+ "name": "EnumColumnFloatingFilter",
8872
8880
  "declaration": {
8873
- "name": "GridProColumn",
8874
- "module": "src/column/column.ts"
8881
+ "name": "EnumColumnFloatingFilter",
8882
+ "module": "src/column-filters/enum-column.floating-filter.ts"
8875
8883
  }
8876
8884
  }
8877
8885
  ]
8878
8886
  },
8879
8887
  {
8880
8888
  "kind": "javascript-module",
8881
- "path": "src/column/index.ts",
8889
+ "path": "src/column-filters/index.ts",
8882
8890
  "declarations": [],
8883
8891
  "exports": [
8884
8892
  {
@@ -8886,15 +8894,7 @@
8886
8894
  "name": "*",
8887
8895
  "declaration": {
8888
8896
  "name": "*",
8889
- "package": "./column.template"
8890
- }
8891
- },
8892
- {
8893
- "kind": "js",
8894
- "name": "*",
8895
- "declaration": {
8896
- "name": "*",
8897
- "package": "./column"
8897
+ "package": "./enum-column.filter"
8898
8898
  }
8899
8899
  },
8900
8900
  {
@@ -8902,7 +8902,7 @@
8902
8902
  "name": "*",
8903
8903
  "declaration": {
8904
8904
  "name": "*",
8905
- "package": "./utils"
8905
+ "package": "./enum-column.floating-filter"
8906
8906
  }
8907
8907
  }
8908
8908
  ]