@genesislcap/grid-pro 15.21.1 → 15.22.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.
@@ -3385,6 +3385,14 @@
3385
3385
  "package": "./column"
3386
3386
  }
3387
3387
  },
3388
+ {
3389
+ "kind": "js",
3390
+ "name": "*",
3391
+ "declaration": {
3392
+ "name": "*",
3393
+ "package": "./column-filters"
3394
+ }
3395
+ },
3388
3396
  {
3389
3397
  "kind": "js",
3390
3398
  "name": "*",
@@ -8113,6 +8121,792 @@
8113
8121
  }
8114
8122
  ]
8115
8123
  },
8124
+ {
8125
+ "kind": "javascript-module",
8126
+ "path": "src/column-filters/enum-column.filter.ts",
8127
+ "declarations": [
8128
+ {
8129
+ "kind": "function",
8130
+ "name": "createEnumValueLabelFormatter",
8131
+ "return": {
8132
+ "type": {
8133
+ "text": "(value: string | null) => string"
8134
+ }
8135
+ },
8136
+ "parameters": [
8137
+ {
8138
+ "name": "params",
8139
+ "type": {
8140
+ "text": "| (Pick<EnumColumnFilterParams, 'valueFormatter'> &\n Partial<\n Pick<EnumColumnFilterValueFormatterParams, 'api' | 'colDef' | 'column' | 'context'>\n >)\n | undefined"
8141
+ }
8142
+ }
8143
+ ],
8144
+ "description": "Builds the value-to-label formatter for an enum filter, honouring `valueFormatter` from the\nfilter params and labelling `null` (blanks) consistently.",
8145
+ "privacy": "public"
8146
+ },
8147
+ {
8148
+ "kind": "function",
8149
+ "name": "formatEnumFilterModelAsString",
8150
+ "return": {
8151
+ "type": {
8152
+ "text": "string"
8153
+ }
8154
+ },
8155
+ "parameters": [
8156
+ {
8157
+ "name": "model",
8158
+ "type": {
8159
+ "text": "EnumColumnFilterModel | null"
8160
+ }
8161
+ },
8162
+ {
8163
+ "name": "formatLabel",
8164
+ "type": {
8165
+ "text": "(value: string | null) => string"
8166
+ }
8167
+ }
8168
+ ],
8169
+ "description": "Renders an enum filter model as a short summary, e.g. `(2) Active, Pending`.",
8170
+ "privacy": "public"
8171
+ },
8172
+ {
8173
+ "kind": "class",
8174
+ "description": "An Excel AutoFilter-inspired set filter for enum columns, built on AG Grid Community only.",
8175
+ "name": "EnumColumnFilter",
8176
+ "members": [
8177
+ {
8178
+ "kind": "field",
8179
+ "name": "params",
8180
+ "type": {
8181
+ "text": "IFilterParams & EnumColumnFilterParams"
8182
+ },
8183
+ "privacy": "protected"
8184
+ },
8185
+ {
8186
+ "kind": "field",
8187
+ "name": "eGui",
8188
+ "type": {
8189
+ "text": "HTMLElement"
8190
+ },
8191
+ "privacy": "private"
8192
+ },
8193
+ {
8194
+ "kind": "field",
8195
+ "name": "eRoot",
8196
+ "type": {
8197
+ "text": "ShadowRoot"
8198
+ },
8199
+ "privacy": "private",
8200
+ "description": "The GUI's shadow root — hosts the content and the shared FAST stylesheet."
8201
+ },
8202
+ {
8203
+ "kind": "field",
8204
+ "name": "eSearch",
8205
+ "type": {
8206
+ "text": "HTMLInputElement"
8207
+ },
8208
+ "privacy": "private"
8209
+ },
8210
+ {
8211
+ "kind": "field",
8212
+ "name": "eSelectAll",
8213
+ "type": {
8214
+ "text": "HTMLInputElement"
8215
+ },
8216
+ "privacy": "private"
8217
+ },
8218
+ {
8219
+ "kind": "field",
8220
+ "name": "eList",
8221
+ "type": {
8222
+ "text": "HTMLElement"
8223
+ },
8224
+ "privacy": "private"
8225
+ },
8226
+ {
8227
+ "kind": "field",
8228
+ "name": "itemInputs",
8229
+ "privacy": "private",
8230
+ "default": "new Map<string | null, HTMLInputElement>()",
8231
+ "description": "Rendered value checkboxes keyed by value; `null` keys the blanks entry."
8232
+ },
8233
+ {
8234
+ "kind": "field",
8235
+ "name": "allValues",
8236
+ "type": {
8237
+ "text": "string[]"
8238
+ },
8239
+ "privacy": "private",
8240
+ "default": "[]",
8241
+ "description": "All selectable values, in the order the metadata/getter provided them."
8242
+ },
8243
+ {
8244
+ "kind": "field",
8245
+ "name": "includeBlanks",
8246
+ "type": {
8247
+ "text": "boolean"
8248
+ },
8249
+ "privacy": "private",
8250
+ "default": "true",
8251
+ "description": "Whether the `(Blanks)` entry is offered — on unless `filterParams.blanks` is `false`."
8252
+ },
8253
+ {
8254
+ "kind": "field",
8255
+ "name": "valuesRequestId",
8256
+ "type": {
8257
+ "text": "number"
8258
+ },
8259
+ "privacy": "private",
8260
+ "default": "0",
8261
+ "description": "Guards async values resolution against out-of-date responses and use after destroy."
8262
+ },
8263
+ {
8264
+ "kind": "field",
8265
+ "name": "loading",
8266
+ "type": {
8267
+ "text": "boolean"
8268
+ },
8269
+ "privacy": "private",
8270
+ "default": "false"
8271
+ },
8272
+ {
8273
+ "kind": "field",
8274
+ "name": "ownsHeaderTooltip",
8275
+ "type": {
8276
+ "text": "boolean"
8277
+ },
8278
+ "privacy": "private",
8279
+ "default": "false",
8280
+ "description": "Whether this instance installed the header tooltip getter (so destroy removes only its own)."
8281
+ },
8282
+ {
8283
+ "kind": "field",
8284
+ "name": "formatLabel",
8285
+ "type": {
8286
+ "text": "(value: string | null) => string"
8287
+ },
8288
+ "privacy": "private"
8289
+ },
8290
+ {
8291
+ "kind": "field",
8292
+ "name": "model",
8293
+ "type": {
8294
+ "text": "(string | null)[] | null"
8295
+ },
8296
+ "privacy": "private",
8297
+ "default": "null",
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."
8299
+ },
8300
+ {
8301
+ "kind": "field",
8302
+ "name": "searchTerm",
8303
+ "type": {
8304
+ "text": "string"
8305
+ },
8306
+ "privacy": "private",
8307
+ "default": "''"
8308
+ },
8309
+ {
8310
+ "kind": "method",
8311
+ "name": "init",
8312
+ "privacy": "public",
8313
+ "return": {
8314
+ "type": {
8315
+ "text": "void"
8316
+ }
8317
+ },
8318
+ "parameters": [
8319
+ {
8320
+ "name": "params",
8321
+ "type": {
8322
+ "text": "IFilterParams & EnumColumnFilterParams"
8323
+ }
8324
+ }
8325
+ ]
8326
+ },
8327
+ {
8328
+ "kind": "method",
8329
+ "name": "getGui",
8330
+ "privacy": "public",
8331
+ "return": {
8332
+ "type": {
8333
+ "text": "HTMLElement"
8334
+ }
8335
+ }
8336
+ },
8337
+ {
8338
+ "kind": "method",
8339
+ "name": "isFilterActive",
8340
+ "privacy": "public",
8341
+ "return": {
8342
+ "type": {
8343
+ "text": "boolean"
8344
+ }
8345
+ }
8346
+ },
8347
+ {
8348
+ "kind": "method",
8349
+ "name": "doesFilterPass",
8350
+ "privacy": "public",
8351
+ "return": {
8352
+ "type": {
8353
+ "text": "boolean"
8354
+ }
8355
+ },
8356
+ "parameters": [
8357
+ {
8358
+ "name": "params",
8359
+ "type": {
8360
+ "text": "IDoesFilterPassParams"
8361
+ }
8362
+ }
8363
+ ]
8364
+ },
8365
+ {
8366
+ "kind": "method",
8367
+ "name": "getModel",
8368
+ "privacy": "public",
8369
+ "return": {
8370
+ "type": {
8371
+ "text": "EnumColumnFilterModel | null"
8372
+ }
8373
+ }
8374
+ },
8375
+ {
8376
+ "kind": "method",
8377
+ "name": "setModel",
8378
+ "privacy": "public",
8379
+ "return": {
8380
+ "type": {
8381
+ "text": "void"
8382
+ }
8383
+ },
8384
+ "parameters": [
8385
+ {
8386
+ "name": "model",
8387
+ "type": {
8388
+ "text": "EnumColumnFilterModel | null"
8389
+ }
8390
+ }
8391
+ ]
8392
+ },
8393
+ {
8394
+ "kind": "method",
8395
+ "name": "getModelAsString",
8396
+ "privacy": "public",
8397
+ "return": {
8398
+ "type": {
8399
+ "text": "string"
8400
+ }
8401
+ },
8402
+ "parameters": [
8403
+ {
8404
+ "name": "model",
8405
+ "type": {
8406
+ "text": "EnumColumnFilterModel | null"
8407
+ }
8408
+ }
8409
+ ]
8410
+ },
8411
+ {
8412
+ "kind": "method",
8413
+ "name": "clear",
8414
+ "privacy": "public",
8415
+ "return": {
8416
+ "type": {
8417
+ "text": "void"
8418
+ }
8419
+ },
8420
+ "description": "Clears the filter back to inactive and notifies the grid; used by the floating filter."
8421
+ },
8422
+ {
8423
+ "kind": "method",
8424
+ "name": "installHeaderTooltip",
8425
+ "privacy": "private",
8426
+ "return": {
8427
+ "type": {
8428
+ "text": "void"
8429
+ }
8430
+ },
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."
8432
+ },
8433
+ {
8434
+ "kind": "method",
8435
+ "name": "afterGuiAttached",
8436
+ "privacy": "public",
8437
+ "return": {
8438
+ "type": {
8439
+ "text": "void"
8440
+ }
8441
+ },
8442
+ "parameters": [
8443
+ {
8444
+ "name": "params",
8445
+ "optional": true,
8446
+ "type": {
8447
+ "text": "{ suppressFocus?: boolean }"
8448
+ }
8449
+ }
8450
+ ]
8451
+ },
8452
+ {
8453
+ "kind": "method",
8454
+ "name": "refresh",
8455
+ "privacy": "public",
8456
+ "return": {
8457
+ "type": {
8458
+ "text": "boolean"
8459
+ }
8460
+ },
8461
+ "parameters": [
8462
+ {
8463
+ "name": "params",
8464
+ "type": {
8465
+ "text": "IFilterParams & EnumColumnFilterParams"
8466
+ }
8467
+ }
8468
+ ]
8469
+ },
8470
+ {
8471
+ "kind": "method",
8472
+ "name": "destroy",
8473
+ "privacy": "public",
8474
+ "return": {
8475
+ "type": {
8476
+ "text": "void"
8477
+ }
8478
+ }
8479
+ },
8480
+ {
8481
+ "kind": "method",
8482
+ "name": "resolveState",
8483
+ "privacy": "private",
8484
+ "return": {
8485
+ "type": {
8486
+ "text": "void"
8487
+ }
8488
+ },
8489
+ "description": "Resolves the option list (values array or getter) and re-renders."
8490
+ },
8491
+ {
8492
+ "kind": "method",
8493
+ "name": "loadAsyncValues",
8494
+ "privacy": "private",
8495
+ "return": {
8496
+ "type": {
8497
+ "text": "void"
8498
+ }
8499
+ },
8500
+ "parameters": [
8501
+ {
8502
+ "name": "getValues",
8503
+ "type": {
8504
+ "text": "EnumColumnFilterValuesGetter"
8505
+ }
8506
+ }
8507
+ ]
8508
+ },
8509
+ {
8510
+ "kind": "method",
8511
+ "name": "getCellValue",
8512
+ "privacy": "private",
8513
+ "return": {
8514
+ "type": {
8515
+ "text": "unknown"
8516
+ }
8517
+ },
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)."
8527
+ },
8528
+ {
8529
+ "kind": "method",
8530
+ "name": "extraModelValues",
8531
+ "privacy": "private",
8532
+ "return": {
8533
+ "type": {
8534
+ "text": "string[]"
8535
+ }
8536
+ },
8537
+ "description": "Model values that are not in the option list, e.g. from a restored persisted model."
8538
+ },
8539
+ {
8540
+ "kind": "method",
8541
+ "name": "allKeys",
8542
+ "privacy": "private",
8543
+ "return": {
8544
+ "type": {
8545
+ "text": "(string | null)[]"
8546
+ }
8547
+ },
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."
8549
+ },
8550
+ {
8551
+ "kind": "method",
8552
+ "name": "isSelected",
8553
+ "privacy": "private",
8554
+ "return": {
8555
+ "type": {
8556
+ "text": "boolean"
8557
+ }
8558
+ },
8559
+ "parameters": [
8560
+ {
8561
+ "name": "key",
8562
+ "type": {
8563
+ "text": "string | null"
8564
+ }
8565
+ }
8566
+ ]
8567
+ },
8568
+ {
8569
+ "kind": "method",
8570
+ "name": "visibleKeys",
8571
+ "privacy": "private",
8572
+ "return": {
8573
+ "type": {
8574
+ "text": "(string | null)[]"
8575
+ }
8576
+ }
8577
+ },
8578
+ {
8579
+ "kind": "method",
8580
+ "name": "updateSelection",
8581
+ "privacy": "private",
8582
+ "return": {
8583
+ "type": {
8584
+ "text": "void"
8585
+ }
8586
+ },
8587
+ "parameters": [
8588
+ {
8589
+ "name": "selected",
8590
+ "type": {
8591
+ "text": "Set<string | null>"
8592
+ }
8593
+ }
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."
8596
+ },
8597
+ {
8598
+ "kind": "method",
8599
+ "name": "currentSelection",
8600
+ "privacy": "private",
8601
+ "return": {
8602
+ "type": {
8603
+ "text": "Set<string | null>"
8604
+ }
8605
+ }
8606
+ },
8607
+ {
8608
+ "kind": "method",
8609
+ "name": "toggleValue",
8610
+ "privacy": "private",
8611
+ "return": {
8612
+ "type": {
8613
+ "text": "void"
8614
+ }
8615
+ },
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
+ ]
8630
+ },
8631
+ {
8632
+ "kind": "method",
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
+ },
8650
+ {
8651
+ "kind": "method",
8652
+ "name": "createGui",
8653
+ "privacy": "private",
8654
+ "return": {
8655
+ "type": {
8656
+ "text": "void"
8657
+ }
8658
+ }
8659
+ },
8660
+ {
8661
+ "kind": "method",
8662
+ "name": "createItem",
8663
+ "privacy": "private",
8664
+ "return": {
8665
+ "type": {
8666
+ "text": "{ label: HTMLLabelElement; input: HTMLInputElement }"
8667
+ }
8668
+ },
8669
+ "parameters": [
8670
+ {
8671
+ "name": "text",
8672
+ "type": {
8673
+ "text": "string"
8674
+ }
8675
+ }
8676
+ ]
8677
+ },
8678
+ {
8679
+ "kind": "method",
8680
+ "name": "renderList",
8681
+ "privacy": "private",
8682
+ "return": {
8683
+ "type": {
8684
+ "text": "void"
8685
+ }
8686
+ },
8687
+ "description": "Rebuilds the value list; used when the values or the search term change."
8688
+ },
8689
+ {
8690
+ "kind": "method",
8691
+ "name": "syncCheckedStates",
8692
+ "privacy": "private",
8693
+ "return": {
8694
+ "type": {
8695
+ "text": "void"
8696
+ }
8697
+ },
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
+ }
8708
+ }
8709
+ },
8710
+ {
8711
+ "kind": "method",
8712
+ "name": "handleKeyDown",
8713
+ "privacy": "private",
8714
+ "return": {
8715
+ "type": {
8716
+ "text": "void"
8717
+ }
8718
+ },
8719
+ "parameters": [
8720
+ {
8721
+ "name": "event",
8722
+ "type": {
8723
+ "text": "KeyboardEvent"
8724
+ }
8725
+ }
8726
+ ],
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"
8775
+ },
8776
+ {
8777
+ "kind": "field",
8778
+ "name": "eGui",
8779
+ "type": {
8780
+ "text": "HTMLElement"
8781
+ },
8782
+ "privacy": "private"
8783
+ },
8784
+ {
8785
+ "kind": "field",
8786
+ "name": "eRoot",
8787
+ "type": {
8788
+ "text": "ShadowRoot"
8789
+ },
8790
+ "privacy": "private",
8791
+ "description": "The GUI's shadow root — hosts the content and the shared FAST stylesheet."
8792
+ },
8793
+ {
8794
+ "kind": "field",
8795
+ "name": "eSummary",
8796
+ "type": {
8797
+ "text": "HTMLElement"
8798
+ },
8799
+ "privacy": "private"
8800
+ },
8801
+ {
8802
+ "kind": "field",
8803
+ "name": "eClear",
8804
+ "type": {
8805
+ "text": "HTMLButtonElement"
8806
+ },
8807
+ "privacy": "private"
8808
+ },
8809
+ {
8810
+ "kind": "field",
8811
+ "name": "formatLabel",
8812
+ "type": {
8813
+ "text": "(value: string | null) => string"
8814
+ },
8815
+ "privacy": "private"
8816
+ },
8817
+ {
8818
+ "kind": "method",
8819
+ "name": "init",
8820
+ "privacy": "public",
8821
+ "return": {
8822
+ "type": {
8823
+ "text": "void"
8824
+ }
8825
+ },
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
+ }
8843
+ }
8844
+ },
8845
+ {
8846
+ "kind": "method",
8847
+ "name": "onParentModelChanged",
8848
+ "privacy": "public",
8849
+ "return": {
8850
+ "type": {
8851
+ "text": "void"
8852
+ }
8853
+ },
8854
+ "parameters": [
8855
+ {
8856
+ "name": "model",
8857
+ "type": {
8858
+ "text": "EnumColumnFilterModel | null"
8859
+ }
8860
+ }
8861
+ ]
8862
+ },
8863
+ {
8864
+ "kind": "method",
8865
+ "name": "destroy",
8866
+ "privacy": "public",
8867
+ "return": {
8868
+ "type": {
8869
+ "text": "void"
8870
+ }
8871
+ }
8872
+ }
8873
+ ]
8874
+ }
8875
+ ],
8876
+ "exports": [
8877
+ {
8878
+ "kind": "js",
8879
+ "name": "EnumColumnFloatingFilter",
8880
+ "declaration": {
8881
+ "name": "EnumColumnFloatingFilter",
8882
+ "module": "src/column-filters/enum-column.floating-filter.ts"
8883
+ }
8884
+ }
8885
+ ]
8886
+ },
8887
+ {
8888
+ "kind": "javascript-module",
8889
+ "path": "src/column-filters/index.ts",
8890
+ "declarations": [],
8891
+ "exports": [
8892
+ {
8893
+ "kind": "js",
8894
+ "name": "*",
8895
+ "declaration": {
8896
+ "name": "*",
8897
+ "package": "./enum-column.filter"
8898
+ }
8899
+ },
8900
+ {
8901
+ "kind": "js",
8902
+ "name": "*",
8903
+ "declaration": {
8904
+ "name": "*",
8905
+ "package": "./enum-column.floating-filter"
8906
+ }
8907
+ }
8908
+ ]
8909
+ },
8116
8910
  {
8117
8911
  "kind": "javascript-module",
8118
8912
  "path": "src/datasource/base.datasource.ts",