@genesislcap/grid-pro 14.352.0 → 14.353.0

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 +530 -530
  2. package/package.json +13 -13
@@ -16245,7 +16245,7 @@
16245
16245
  },
16246
16246
  {
16247
16247
  "kind": "javascript-module",
16248
- "path": "src/status-bar-components/index.ts",
16248
+ "path": "src/state-persistence/index.ts",
16249
16249
  "declarations": [],
16250
16250
  "exports": [
16251
16251
  {
@@ -16253,15 +16253,7 @@
16253
16253
  "name": "*",
16254
16254
  "declaration": {
16255
16255
  "name": "*",
16256
- "package": "./load-more.status-bar"
16257
- }
16258
- },
16259
- {
16260
- "kind": "js",
16261
- "name": "*",
16262
- "declaration": {
16263
- "name": "*",
16264
- "package": "./pagination.status-bar"
16256
+ "package": "./kv-state"
16265
16257
  }
16266
16258
  },
16267
16259
  {
@@ -16269,7 +16261,7 @@
16269
16261
  "name": "*",
16270
16262
  "declaration": {
16271
16263
  "name": "*",
16272
- "package": "./label-value.status-bar"
16264
+ "package": "./local-state"
16273
16265
  }
16274
16266
  },
16275
16267
  {
@@ -16277,103 +16269,148 @@
16277
16269
  "name": "*",
16278
16270
  "declaration": {
16279
16271
  "name": "*",
16280
- "package": "./reload.status-bar"
16272
+ "package": "./state-persistence"
16281
16273
  }
16282
16274
  }
16283
16275
  ]
16284
16276
  },
16285
16277
  {
16286
16278
  "kind": "javascript-module",
16287
- "path": "src/status-bar-components/label-value.status-bar.ts",
16279
+ "path": "src/state-persistence/kv-state.ts",
16288
16280
  "declarations": [
16289
16281
  {
16290
16282
  "kind": "class",
16291
- "description": "Label Value Status Bar Component",
16292
- "name": "LabelValueStatusBarComponent",
16283
+ "description": "Implementation for the KV Storage State Persistence interface.",
16284
+ "name": "KVStorageStatePersistence",
16293
16285
  "members": [
16294
16286
  {
16295
16287
  "kind": "field",
16296
- "name": "element",
16297
- "type": {
16298
- "text": "HTMLElement"
16299
- },
16300
- "privacy": "private"
16301
- },
16302
- {
16303
- "kind": "field",
16304
- "name": "labelElement",
16288
+ "name": "kvStorage",
16305
16289
  "type": {
16306
- "text": "HTMLElement"
16307
- },
16308
- "privacy": "private"
16290
+ "text": "KVStorage"
16291
+ }
16309
16292
  },
16310
16293
  {
16311
16294
  "kind": "field",
16312
- "name": "valueElement",
16295
+ "name": "session",
16313
16296
  "type": {
16314
- "text": "HTMLElement"
16315
- },
16316
- "privacy": "private"
16297
+ "text": "Session"
16298
+ }
16317
16299
  },
16318
16300
  {
16319
- "kind": "field",
16320
- "name": "currentParams",
16321
- "type": {
16322
- "text": "LabelValueStatusBarParams"
16301
+ "kind": "method",
16302
+ "name": "getColumnState",
16303
+ "return": {
16304
+ "type": {
16305
+ "text": "Promise<ColumnState[]>"
16306
+ }
16323
16307
  },
16324
- "privacy": "private"
16308
+ "parameters": [
16309
+ {
16310
+ "name": "persistColumnStateKey",
16311
+ "type": {
16312
+ "text": "string"
16313
+ }
16314
+ }
16315
+ ]
16325
16316
  },
16326
16317
  {
16327
16318
  "kind": "method",
16328
- "name": "init",
16319
+ "name": "saveColumnState",
16320
+ "return": {
16321
+ "type": {
16322
+ "text": "Promise<void>"
16323
+ }
16324
+ },
16329
16325
  "parameters": [
16330
16326
  {
16331
- "name": "params",
16327
+ "name": "persistColumnStateKey",
16332
16328
  "type": {
16333
- "text": "IStatusPanelParams"
16329
+ "text": "string"
16330
+ }
16331
+ },
16332
+ {
16333
+ "name": "columnState",
16334
+ "type": {
16335
+ "text": "ColumnState[]"
16334
16336
  }
16335
16337
  }
16336
16338
  ]
16337
16339
  },
16338
16340
  {
16339
16341
  "kind": "method",
16340
- "name": "updateParams",
16342
+ "name": "deleteColumnState",
16341
16343
  "return": {
16342
16344
  "type": {
16343
- "text": "void"
16345
+ "text": "Promise<void>"
16344
16346
  }
16345
16347
  },
16346
16348
  "parameters": [
16347
16349
  {
16348
- "name": "params",
16350
+ "name": "persistColumnStateKey",
16349
16351
  "type": {
16350
- "text": "Partial<LabelValueStatusBarParams>"
16352
+ "text": "string"
16351
16353
  }
16352
16354
  }
16353
16355
  ]
16354
16356
  },
16355
16357
  {
16356
16358
  "kind": "method",
16357
- "name": "updateDisplay",
16359
+ "name": "migrateLocalStorageToKVStorage",
16358
16360
  "privacy": "private",
16359
16361
  "return": {
16360
16362
  "type": {
16361
- "text": "void"
16363
+ "text": "Promise<void>"
16362
16364
  }
16363
- }
16365
+ },
16366
+ "parameters": [
16367
+ {
16368
+ "name": "persistColumnStateKey",
16369
+ "type": {
16370
+ "text": "string"
16371
+ }
16372
+ }
16373
+ ]
16364
16374
  },
16365
16375
  {
16366
16376
  "kind": "method",
16367
- "name": "getGui",
16377
+ "name": "getFilterModel",
16368
16378
  "return": {
16369
16379
  "type": {
16370
- "text": "HTMLElement"
16380
+ "text": "Promise<{ [key: string]: any }>"
16371
16381
  }
16372
- }
16382
+ },
16383
+ "parameters": [
16384
+ {
16385
+ "name": "persistFilterModelKey",
16386
+ "type": {
16387
+ "text": "string"
16388
+ }
16389
+ }
16390
+ ]
16373
16391
  },
16374
16392
  {
16375
16393
  "kind": "method",
16376
- "name": "destroy"
16394
+ "name": "saveFilterModel",
16395
+ "return": {
16396
+ "type": {
16397
+ "text": "Promise<void>"
16398
+ }
16399
+ },
16400
+ "parameters": [
16401
+ {
16402
+ "name": "persistFilterModelKey",
16403
+ "type": {
16404
+ "text": "string"
16405
+ }
16406
+ },
16407
+ {
16408
+ "name": "filterModel",
16409
+ "type": {
16410
+ "text": "{ [key: string]: any }"
16411
+ }
16412
+ }
16413
+ ]
16377
16414
  }
16378
16415
  ]
16379
16416
  }
@@ -16381,103 +16418,259 @@
16381
16418
  "exports": [
16382
16419
  {
16383
16420
  "kind": "js",
16384
- "name": "LabelValueStatusBarComponent",
16421
+ "name": "KVStorageStatePersistence",
16385
16422
  "declaration": {
16386
- "name": "LabelValueStatusBarComponent",
16387
- "module": "src/status-bar-components/label-value.status-bar.ts"
16423
+ "name": "KVStorageStatePersistence",
16424
+ "module": "src/state-persistence/kv-state.ts"
16388
16425
  }
16389
16426
  }
16390
16427
  ]
16391
16428
  },
16392
16429
  {
16393
16430
  "kind": "javascript-module",
16394
- "path": "src/status-bar-components/load-more.status-bar.ts",
16431
+ "path": "src/state-persistence/local-state.ts",
16395
16432
  "declarations": [
16396
16433
  {
16397
16434
  "kind": "class",
16398
- "description": "A status bar component that shows a \"Load More\" button when more rows are available",
16399
- "name": "LoadMoreStatusBarComponent",
16435
+ "description": "Implementation for the Local Storage State Persistence interface.",
16436
+ "name": "LocalStorageStatePersistence",
16400
16437
  "members": [
16401
16438
  {
16402
16439
  "kind": "field",
16403
- "name": "element",
16440
+ "name": "session",
16404
16441
  "type": {
16405
- "text": "HTMLElement"
16406
- },
16407
- "privacy": "private"
16442
+ "text": "Session"
16443
+ }
16408
16444
  },
16409
16445
  {
16410
- "kind": "field",
16411
- "name": "loadMoreButton",
16412
- "type": {
16413
- "text": "HTMLElement"
16446
+ "kind": "method",
16447
+ "name": "getColumnState",
16448
+ "return": {
16449
+ "type": {
16450
+ "text": "Promise<ColumnState[]>"
16451
+ }
16414
16452
  },
16415
- "privacy": "private"
16453
+ "parameters": [
16454
+ {
16455
+ "name": "persistColumnStateKey",
16456
+ "type": {
16457
+ "text": "string"
16458
+ }
16459
+ }
16460
+ ]
16416
16461
  },
16417
16462
  {
16418
- "kind": "field",
16419
- "name": "progressRing",
16420
- "type": {
16421
- "text": "HTMLElement"
16463
+ "kind": "method",
16464
+ "name": "saveColumnState",
16465
+ "return": {
16466
+ "type": {
16467
+ "text": "Promise<void>"
16468
+ }
16422
16469
  },
16423
- "privacy": "private"
16470
+ "parameters": [
16471
+ {
16472
+ "name": "persistColumnStateKey",
16473
+ "type": {
16474
+ "text": "string"
16475
+ }
16476
+ },
16477
+ {
16478
+ "name": "columnState",
16479
+ "type": {
16480
+ "text": "ColumnState[]"
16481
+ }
16482
+ }
16483
+ ]
16424
16484
  },
16425
16485
  {
16426
- "kind": "field",
16427
- "name": "buttonLabel",
16428
- "type": {
16429
- "text": "string"
16486
+ "kind": "method",
16487
+ "name": "deleteColumnState",
16488
+ "return": {
16489
+ "type": {
16490
+ "text": "Promise<void>"
16491
+ }
16430
16492
  },
16431
- "privacy": "private",
16432
- "default": "'Load More'"
16493
+ "parameters": [
16494
+ {
16495
+ "name": "persistColumnStateKey",
16496
+ "type": {
16497
+ "text": "string"
16498
+ }
16499
+ }
16500
+ ]
16433
16501
  },
16434
16502
  {
16435
- "kind": "field",
16436
- "name": "params",
16437
- "type": {
16438
- "text": "LoadMoreStatusBarParams"
16503
+ "kind": "method",
16504
+ "name": "getFilterModel",
16505
+ "return": {
16506
+ "type": {
16507
+ "text": "Promise<{ [key: string]: any }>"
16508
+ }
16439
16509
  },
16440
- "privacy": "private"
16510
+ "parameters": [
16511
+ {
16512
+ "name": "persistFilterModelKey",
16513
+ "type": {
16514
+ "text": "string"
16515
+ }
16516
+ }
16517
+ ]
16441
16518
  },
16442
16519
  {
16443
- "kind": "field",
16444
- "name": "designSystemPrefix",
16445
- "type": {
16446
- "text": "string"
16520
+ "kind": "method",
16521
+ "name": "saveFilterModel",
16522
+ "return": {
16523
+ "type": {
16524
+ "text": "Promise<void>"
16525
+ }
16447
16526
  },
16448
- "privacy": "private"
16449
- },
16450
- {
16451
- "kind": "field",
16452
- "name": "isLoading",
16453
- "type": {
16454
- "text": "boolean"
16527
+ "parameters": [
16528
+ {
16529
+ "name": "persistFilterModelKey",
16530
+ "type": {
16531
+ "text": "string"
16532
+ }
16533
+ },
16534
+ {
16535
+ "name": "filterModel",
16536
+ "type": {
16537
+ "text": "{ [key: string]: any }"
16538
+ }
16539
+ }
16540
+ ]
16541
+ }
16542
+ ]
16543
+ }
16544
+ ],
16545
+ "exports": [
16546
+ {
16547
+ "kind": "js",
16548
+ "name": "LocalStorageStatePersistence",
16549
+ "declaration": {
16550
+ "name": "LocalStorageStatePersistence",
16551
+ "module": "src/state-persistence/local-state.ts"
16552
+ }
16553
+ }
16554
+ ]
16555
+ },
16556
+ {
16557
+ "kind": "javascript-module",
16558
+ "path": "src/state-persistence/state-persistence.ts",
16559
+ "declarations": [],
16560
+ "exports": []
16561
+ },
16562
+ {
16563
+ "kind": "javascript-module",
16564
+ "path": "src/style/colors.ts",
16565
+ "declarations": [],
16566
+ "exports": []
16567
+ },
16568
+ {
16569
+ "kind": "javascript-module",
16570
+ "path": "src/style/index.ts",
16571
+ "declarations": [],
16572
+ "exports": [
16573
+ {
16574
+ "kind": "js",
16575
+ "name": "*",
16576
+ "declaration": {
16577
+ "name": "*",
16578
+ "package": "./colors"
16579
+ }
16580
+ },
16581
+ {
16582
+ "kind": "js",
16583
+ "name": "*",
16584
+ "declaration": {
16585
+ "name": "*",
16586
+ "package": "./tokens"
16587
+ }
16588
+ }
16589
+ ]
16590
+ },
16591
+ {
16592
+ "kind": "javascript-module",
16593
+ "path": "src/style/tokens.ts",
16594
+ "declarations": [],
16595
+ "exports": []
16596
+ },
16597
+ {
16598
+ "kind": "javascript-module",
16599
+ "path": "src/status-bar-components/index.ts",
16600
+ "declarations": [],
16601
+ "exports": [
16602
+ {
16603
+ "kind": "js",
16604
+ "name": "*",
16605
+ "declaration": {
16606
+ "name": "*",
16607
+ "package": "./load-more.status-bar"
16608
+ }
16609
+ },
16610
+ {
16611
+ "kind": "js",
16612
+ "name": "*",
16613
+ "declaration": {
16614
+ "name": "*",
16615
+ "package": "./pagination.status-bar"
16616
+ }
16617
+ },
16618
+ {
16619
+ "kind": "js",
16620
+ "name": "*",
16621
+ "declaration": {
16622
+ "name": "*",
16623
+ "package": "./label-value.status-bar"
16624
+ }
16625
+ },
16626
+ {
16627
+ "kind": "js",
16628
+ "name": "*",
16629
+ "declaration": {
16630
+ "name": "*",
16631
+ "package": "./reload.status-bar"
16632
+ }
16633
+ }
16634
+ ]
16635
+ },
16636
+ {
16637
+ "kind": "javascript-module",
16638
+ "path": "src/status-bar-components/label-value.status-bar.ts",
16639
+ "declarations": [
16640
+ {
16641
+ "kind": "class",
16642
+ "description": "Label Value Status Bar Component",
16643
+ "name": "LabelValueStatusBarComponent",
16644
+ "members": [
16645
+ {
16646
+ "kind": "field",
16647
+ "name": "element",
16648
+ "type": {
16649
+ "text": "HTMLElement"
16455
16650
  },
16456
- "privacy": "private",
16457
- "default": "false"
16651
+ "privacy": "private"
16458
16652
  },
16459
16653
  {
16460
16654
  "kind": "field",
16461
- "name": "isLeftAligned",
16655
+ "name": "labelElement",
16462
16656
  "type": {
16463
- "text": "boolean"
16657
+ "text": "HTMLElement"
16464
16658
  },
16465
- "privacy": "private",
16466
- "default": "false"
16659
+ "privacy": "private"
16467
16660
  },
16468
16661
  {
16469
16662
  "kind": "field",
16470
- "name": "gridApi",
16663
+ "name": "valueElement",
16471
16664
  "type": {
16472
- "text": "any"
16665
+ "text": "HTMLElement"
16473
16666
  },
16474
16667
  "privacy": "private"
16475
16668
  },
16476
16669
  {
16477
16670
  "kind": "field",
16478
- "name": "clickHandler",
16671
+ "name": "currentParams",
16479
16672
  "type": {
16480
- "text": "(event: MouseEvent) => void"
16673
+ "text": "LabelValueStatusBarParams"
16481
16674
  },
16482
16675
  "privacy": "private"
16483
16676
  },
@@ -16495,29 +16688,7 @@
16495
16688
  },
16496
16689
  {
16497
16690
  "kind": "method",
16498
- "name": "createProgressRing",
16499
- "privacy": "private"
16500
- },
16501
- {
16502
- "kind": "method",
16503
- "name": "createLoadMoreButton",
16504
- "privacy": "private"
16505
- },
16506
- {
16507
- "kind": "method",
16508
- "name": "updateAriaLabel",
16509
- "privacy": "private",
16510
- "return": {
16511
- "type": {
16512
- "text": "void"
16513
- }
16514
- },
16515
- "description": "Update the aria-label based on current state and tooltip"
16516
- },
16517
- {
16518
- "kind": "method",
16519
- "name": "showLoading",
16520
- "privacy": "private",
16691
+ "name": "updateParams",
16521
16692
  "return": {
16522
16693
  "type": {
16523
16694
  "text": "void"
@@ -16525,31 +16696,22 @@
16525
16696
  },
16526
16697
  "parameters": [
16527
16698
  {
16528
- "name": "loading",
16699
+ "name": "params",
16529
16700
  "type": {
16530
- "text": "boolean"
16701
+ "text": "Partial<LabelValueStatusBarParams>"
16531
16702
  }
16532
16703
  }
16533
- ],
16534
- "description": "Show or hide the loading state"
16535
- },
16536
- {
16537
- "kind": "method",
16538
- "name": "updateButtonVisibility",
16539
- "privacy": "public"
16704
+ ]
16540
16705
  },
16541
16706
  {
16542
16707
  "kind": "method",
16543
- "name": "updateParams",
16544
- "privacy": "public",
16545
- "parameters": [
16546
- {
16547
- "name": "params",
16548
- "type": {
16549
- "text": "LoadMoreStatusBarParams"
16550
- }
16708
+ "name": "updateDisplay",
16709
+ "privacy": "private",
16710
+ "return": {
16711
+ "type": {
16712
+ "text": "void"
16551
16713
  }
16552
- ]
16714
+ }
16553
16715
  },
16554
16716
  {
16555
16717
  "kind": "method",
@@ -16570,22 +16732,22 @@
16570
16732
  "exports": [
16571
16733
  {
16572
16734
  "kind": "js",
16573
- "name": "LoadMoreStatusBarComponent",
16735
+ "name": "LabelValueStatusBarComponent",
16574
16736
  "declaration": {
16575
- "name": "LoadMoreStatusBarComponent",
16576
- "module": "src/status-bar-components/load-more.status-bar.ts"
16737
+ "name": "LabelValueStatusBarComponent",
16738
+ "module": "src/status-bar-components/label-value.status-bar.ts"
16577
16739
  }
16578
16740
  }
16579
16741
  ]
16580
16742
  },
16581
16743
  {
16582
16744
  "kind": "javascript-module",
16583
- "path": "src/status-bar-components/pagination.status-bar.ts",
16745
+ "path": "src/status-bar-components/load-more.status-bar.ts",
16584
16746
  "declarations": [
16585
16747
  {
16586
16748
  "kind": "class",
16587
- "description": "Pagination Status Bar Component for AG Grid\nDisplays pagination controls and information about current page and total rows",
16588
- "name": "PaginationStatusBarComponent",
16749
+ "description": "A status bar component that shows a \"Load More\" button when more rows are available",
16750
+ "name": "LoadMoreStatusBarComponent",
16589
16751
  "members": [
16590
16752
  {
16591
16753
  "kind": "field",
@@ -16597,15 +16759,7 @@
16597
16759
  },
16598
16760
  {
16599
16761
  "kind": "field",
16600
- "name": "api",
16601
- "type": {
16602
- "text": "GridApi"
16603
- },
16604
- "privacy": "private"
16605
- },
16606
- {
16607
- "kind": "field",
16608
- "name": "paginationPanel",
16762
+ "name": "loadMoreButton",
16609
16763
  "type": {
16610
16764
  "text": "HTMLElement"
16611
16765
  },
@@ -16613,7 +16767,7 @@
16613
16767
  },
16614
16768
  {
16615
16769
  "kind": "field",
16616
- "name": "paginationSummaryPanel",
16770
+ "name": "progressRing",
16617
16771
  "type": {
16618
16772
  "text": "HTMLElement"
16619
16773
  },
@@ -16621,64 +16775,261 @@
16621
16775
  },
16622
16776
  {
16623
16777
  "kind": "field",
16624
- "name": "firstPageButton",
16778
+ "name": "buttonLabel",
16625
16779
  "type": {
16626
- "text": "HTMLElement"
16780
+ "text": "string"
16627
16781
  },
16628
- "privacy": "private"
16782
+ "privacy": "private",
16783
+ "default": "'Load More'"
16629
16784
  },
16630
16785
  {
16631
16786
  "kind": "field",
16632
- "name": "prevPageButton",
16787
+ "name": "params",
16633
16788
  "type": {
16634
- "text": "HTMLElement"
16789
+ "text": "LoadMoreStatusBarParams"
16635
16790
  },
16636
16791
  "privacy": "private"
16637
16792
  },
16638
16793
  {
16639
16794
  "kind": "field",
16640
- "name": "descriptionPanel",
16795
+ "name": "designSystemPrefix",
16641
16796
  "type": {
16642
- "text": "HTMLElement"
16797
+ "text": "string"
16643
16798
  },
16644
16799
  "privacy": "private"
16645
16800
  },
16646
16801
  {
16647
16802
  "kind": "field",
16648
- "name": "pageStartDisplay",
16803
+ "name": "isLoading",
16649
16804
  "type": {
16650
- "text": "HTMLElement"
16805
+ "text": "boolean"
16651
16806
  },
16652
- "privacy": "private"
16807
+ "privacy": "private",
16808
+ "default": "false"
16653
16809
  },
16654
16810
  {
16655
16811
  "kind": "field",
16656
- "name": "pageNumberDisplay",
16812
+ "name": "isLeftAligned",
16657
16813
  "type": {
16658
- "text": "HTMLElement"
16814
+ "text": "boolean"
16659
16815
  },
16660
- "privacy": "private"
16816
+ "privacy": "private",
16817
+ "default": "false"
16661
16818
  },
16662
16819
  {
16663
16820
  "kind": "field",
16664
- "name": "pageOfDisplay",
16821
+ "name": "gridApi",
16665
16822
  "type": {
16666
- "text": "HTMLElement"
16823
+ "text": "any"
16667
16824
  },
16668
16825
  "privacy": "private"
16669
16826
  },
16670
16827
  {
16671
16828
  "kind": "field",
16672
- "name": "pageNumberTotalDisplay",
16829
+ "name": "clickHandler",
16673
16830
  "type": {
16674
- "text": "HTMLElement"
16831
+ "text": "(event: MouseEvent) => void"
16675
16832
  },
16676
16833
  "privacy": "private"
16677
16834
  },
16678
16835
  {
16679
- "kind": "field",
16680
- "name": "nextPageButton",
16681
- "type": {
16836
+ "kind": "method",
16837
+ "name": "init",
16838
+ "parameters": [
16839
+ {
16840
+ "name": "params",
16841
+ "type": {
16842
+ "text": "IStatusPanelParams"
16843
+ }
16844
+ }
16845
+ ]
16846
+ },
16847
+ {
16848
+ "kind": "method",
16849
+ "name": "createProgressRing",
16850
+ "privacy": "private"
16851
+ },
16852
+ {
16853
+ "kind": "method",
16854
+ "name": "createLoadMoreButton",
16855
+ "privacy": "private"
16856
+ },
16857
+ {
16858
+ "kind": "method",
16859
+ "name": "updateAriaLabel",
16860
+ "privacy": "private",
16861
+ "return": {
16862
+ "type": {
16863
+ "text": "void"
16864
+ }
16865
+ },
16866
+ "description": "Update the aria-label based on current state and tooltip"
16867
+ },
16868
+ {
16869
+ "kind": "method",
16870
+ "name": "showLoading",
16871
+ "privacy": "private",
16872
+ "return": {
16873
+ "type": {
16874
+ "text": "void"
16875
+ }
16876
+ },
16877
+ "parameters": [
16878
+ {
16879
+ "name": "loading",
16880
+ "type": {
16881
+ "text": "boolean"
16882
+ }
16883
+ }
16884
+ ],
16885
+ "description": "Show or hide the loading state"
16886
+ },
16887
+ {
16888
+ "kind": "method",
16889
+ "name": "updateButtonVisibility",
16890
+ "privacy": "public"
16891
+ },
16892
+ {
16893
+ "kind": "method",
16894
+ "name": "updateParams",
16895
+ "privacy": "public",
16896
+ "parameters": [
16897
+ {
16898
+ "name": "params",
16899
+ "type": {
16900
+ "text": "LoadMoreStatusBarParams"
16901
+ }
16902
+ }
16903
+ ]
16904
+ },
16905
+ {
16906
+ "kind": "method",
16907
+ "name": "getGui",
16908
+ "return": {
16909
+ "type": {
16910
+ "text": "HTMLElement"
16911
+ }
16912
+ }
16913
+ },
16914
+ {
16915
+ "kind": "method",
16916
+ "name": "destroy"
16917
+ }
16918
+ ]
16919
+ }
16920
+ ],
16921
+ "exports": [
16922
+ {
16923
+ "kind": "js",
16924
+ "name": "LoadMoreStatusBarComponent",
16925
+ "declaration": {
16926
+ "name": "LoadMoreStatusBarComponent",
16927
+ "module": "src/status-bar-components/load-more.status-bar.ts"
16928
+ }
16929
+ }
16930
+ ]
16931
+ },
16932
+ {
16933
+ "kind": "javascript-module",
16934
+ "path": "src/status-bar-components/pagination.status-bar.ts",
16935
+ "declarations": [
16936
+ {
16937
+ "kind": "class",
16938
+ "description": "Pagination Status Bar Component for AG Grid\nDisplays pagination controls and information about current page and total rows",
16939
+ "name": "PaginationStatusBarComponent",
16940
+ "members": [
16941
+ {
16942
+ "kind": "field",
16943
+ "name": "element",
16944
+ "type": {
16945
+ "text": "HTMLElement"
16946
+ },
16947
+ "privacy": "private"
16948
+ },
16949
+ {
16950
+ "kind": "field",
16951
+ "name": "api",
16952
+ "type": {
16953
+ "text": "GridApi"
16954
+ },
16955
+ "privacy": "private"
16956
+ },
16957
+ {
16958
+ "kind": "field",
16959
+ "name": "paginationPanel",
16960
+ "type": {
16961
+ "text": "HTMLElement"
16962
+ },
16963
+ "privacy": "private"
16964
+ },
16965
+ {
16966
+ "kind": "field",
16967
+ "name": "paginationSummaryPanel",
16968
+ "type": {
16969
+ "text": "HTMLElement"
16970
+ },
16971
+ "privacy": "private"
16972
+ },
16973
+ {
16974
+ "kind": "field",
16975
+ "name": "firstPageButton",
16976
+ "type": {
16977
+ "text": "HTMLElement"
16978
+ },
16979
+ "privacy": "private"
16980
+ },
16981
+ {
16982
+ "kind": "field",
16983
+ "name": "prevPageButton",
16984
+ "type": {
16985
+ "text": "HTMLElement"
16986
+ },
16987
+ "privacy": "private"
16988
+ },
16989
+ {
16990
+ "kind": "field",
16991
+ "name": "descriptionPanel",
16992
+ "type": {
16993
+ "text": "HTMLElement"
16994
+ },
16995
+ "privacy": "private"
16996
+ },
16997
+ {
16998
+ "kind": "field",
16999
+ "name": "pageStartDisplay",
17000
+ "type": {
17001
+ "text": "HTMLElement"
17002
+ },
17003
+ "privacy": "private"
17004
+ },
17005
+ {
17006
+ "kind": "field",
17007
+ "name": "pageNumberDisplay",
17008
+ "type": {
17009
+ "text": "HTMLElement"
17010
+ },
17011
+ "privacy": "private"
17012
+ },
17013
+ {
17014
+ "kind": "field",
17015
+ "name": "pageOfDisplay",
17016
+ "type": {
17017
+ "text": "HTMLElement"
17018
+ },
17019
+ "privacy": "private"
17020
+ },
17021
+ {
17022
+ "kind": "field",
17023
+ "name": "pageNumberTotalDisplay",
17024
+ "type": {
17025
+ "text": "HTMLElement"
17026
+ },
17027
+ "privacy": "private"
17028
+ },
17029
+ {
17030
+ "kind": "field",
17031
+ "name": "nextPageButton",
17032
+ "type": {
16682
17033
  "text": "HTMLElement"
16683
17034
  },
16684
17035
  "privacy": "private"
@@ -16984,41 +17335,6 @@
16984
17335
  }
16985
17336
  ]
16986
17337
  },
16987
- {
16988
- "kind": "javascript-module",
16989
- "path": "src/style/colors.ts",
16990
- "declarations": [],
16991
- "exports": []
16992
- },
16993
- {
16994
- "kind": "javascript-module",
16995
- "path": "src/style/index.ts",
16996
- "declarations": [],
16997
- "exports": [
16998
- {
16999
- "kind": "js",
17000
- "name": "*",
17001
- "declaration": {
17002
- "name": "*",
17003
- "package": "./colors"
17004
- }
17005
- },
17006
- {
17007
- "kind": "js",
17008
- "name": "*",
17009
- "declaration": {
17010
- "name": "*",
17011
- "package": "./tokens"
17012
- }
17013
- }
17014
- ]
17015
- },
17016
- {
17017
- "kind": "javascript-module",
17018
- "path": "src/style/tokens.ts",
17019
- "declarations": [],
17020
- "exports": []
17021
- },
17022
17338
  {
17023
17339
  "kind": "javascript-module",
17024
17340
  "path": "src/tooltips/error-tooltip.ts",
@@ -17488,322 +17804,6 @@
17488
17804
  }
17489
17805
  }
17490
17806
  ]
17491
- },
17492
- {
17493
- "kind": "javascript-module",
17494
- "path": "src/state-persistence/index.ts",
17495
- "declarations": [],
17496
- "exports": [
17497
- {
17498
- "kind": "js",
17499
- "name": "*",
17500
- "declaration": {
17501
- "name": "*",
17502
- "package": "./kv-state"
17503
- }
17504
- },
17505
- {
17506
- "kind": "js",
17507
- "name": "*",
17508
- "declaration": {
17509
- "name": "*",
17510
- "package": "./local-state"
17511
- }
17512
- },
17513
- {
17514
- "kind": "js",
17515
- "name": "*",
17516
- "declaration": {
17517
- "name": "*",
17518
- "package": "./state-persistence"
17519
- }
17520
- }
17521
- ]
17522
- },
17523
- {
17524
- "kind": "javascript-module",
17525
- "path": "src/state-persistence/kv-state.ts",
17526
- "declarations": [
17527
- {
17528
- "kind": "class",
17529
- "description": "Implementation for the KV Storage State Persistence interface.",
17530
- "name": "KVStorageStatePersistence",
17531
- "members": [
17532
- {
17533
- "kind": "field",
17534
- "name": "kvStorage",
17535
- "type": {
17536
- "text": "KVStorage"
17537
- }
17538
- },
17539
- {
17540
- "kind": "field",
17541
- "name": "session",
17542
- "type": {
17543
- "text": "Session"
17544
- }
17545
- },
17546
- {
17547
- "kind": "method",
17548
- "name": "getColumnState",
17549
- "return": {
17550
- "type": {
17551
- "text": "Promise<ColumnState[]>"
17552
- }
17553
- },
17554
- "parameters": [
17555
- {
17556
- "name": "persistColumnStateKey",
17557
- "type": {
17558
- "text": "string"
17559
- }
17560
- }
17561
- ]
17562
- },
17563
- {
17564
- "kind": "method",
17565
- "name": "saveColumnState",
17566
- "return": {
17567
- "type": {
17568
- "text": "Promise<void>"
17569
- }
17570
- },
17571
- "parameters": [
17572
- {
17573
- "name": "persistColumnStateKey",
17574
- "type": {
17575
- "text": "string"
17576
- }
17577
- },
17578
- {
17579
- "name": "columnState",
17580
- "type": {
17581
- "text": "ColumnState[]"
17582
- }
17583
- }
17584
- ]
17585
- },
17586
- {
17587
- "kind": "method",
17588
- "name": "deleteColumnState",
17589
- "return": {
17590
- "type": {
17591
- "text": "Promise<void>"
17592
- }
17593
- },
17594
- "parameters": [
17595
- {
17596
- "name": "persistColumnStateKey",
17597
- "type": {
17598
- "text": "string"
17599
- }
17600
- }
17601
- ]
17602
- },
17603
- {
17604
- "kind": "method",
17605
- "name": "migrateLocalStorageToKVStorage",
17606
- "privacy": "private",
17607
- "return": {
17608
- "type": {
17609
- "text": "Promise<void>"
17610
- }
17611
- },
17612
- "parameters": [
17613
- {
17614
- "name": "persistColumnStateKey",
17615
- "type": {
17616
- "text": "string"
17617
- }
17618
- }
17619
- ]
17620
- },
17621
- {
17622
- "kind": "method",
17623
- "name": "getFilterModel",
17624
- "return": {
17625
- "type": {
17626
- "text": "Promise<{ [key: string]: any }>"
17627
- }
17628
- },
17629
- "parameters": [
17630
- {
17631
- "name": "persistFilterModelKey",
17632
- "type": {
17633
- "text": "string"
17634
- }
17635
- }
17636
- ]
17637
- },
17638
- {
17639
- "kind": "method",
17640
- "name": "saveFilterModel",
17641
- "return": {
17642
- "type": {
17643
- "text": "Promise<void>"
17644
- }
17645
- },
17646
- "parameters": [
17647
- {
17648
- "name": "persistFilterModelKey",
17649
- "type": {
17650
- "text": "string"
17651
- }
17652
- },
17653
- {
17654
- "name": "filterModel",
17655
- "type": {
17656
- "text": "{ [key: string]: any }"
17657
- }
17658
- }
17659
- ]
17660
- }
17661
- ]
17662
- }
17663
- ],
17664
- "exports": [
17665
- {
17666
- "kind": "js",
17667
- "name": "KVStorageStatePersistence",
17668
- "declaration": {
17669
- "name": "KVStorageStatePersistence",
17670
- "module": "src/state-persistence/kv-state.ts"
17671
- }
17672
- }
17673
- ]
17674
- },
17675
- {
17676
- "kind": "javascript-module",
17677
- "path": "src/state-persistence/local-state.ts",
17678
- "declarations": [
17679
- {
17680
- "kind": "class",
17681
- "description": "Implementation for the Local Storage State Persistence interface.",
17682
- "name": "LocalStorageStatePersistence",
17683
- "members": [
17684
- {
17685
- "kind": "field",
17686
- "name": "session",
17687
- "type": {
17688
- "text": "Session"
17689
- }
17690
- },
17691
- {
17692
- "kind": "method",
17693
- "name": "getColumnState",
17694
- "return": {
17695
- "type": {
17696
- "text": "Promise<ColumnState[]>"
17697
- }
17698
- },
17699
- "parameters": [
17700
- {
17701
- "name": "persistColumnStateKey",
17702
- "type": {
17703
- "text": "string"
17704
- }
17705
- }
17706
- ]
17707
- },
17708
- {
17709
- "kind": "method",
17710
- "name": "saveColumnState",
17711
- "return": {
17712
- "type": {
17713
- "text": "Promise<void>"
17714
- }
17715
- },
17716
- "parameters": [
17717
- {
17718
- "name": "persistColumnStateKey",
17719
- "type": {
17720
- "text": "string"
17721
- }
17722
- },
17723
- {
17724
- "name": "columnState",
17725
- "type": {
17726
- "text": "ColumnState[]"
17727
- }
17728
- }
17729
- ]
17730
- },
17731
- {
17732
- "kind": "method",
17733
- "name": "deleteColumnState",
17734
- "return": {
17735
- "type": {
17736
- "text": "Promise<void>"
17737
- }
17738
- },
17739
- "parameters": [
17740
- {
17741
- "name": "persistColumnStateKey",
17742
- "type": {
17743
- "text": "string"
17744
- }
17745
- }
17746
- ]
17747
- },
17748
- {
17749
- "kind": "method",
17750
- "name": "getFilterModel",
17751
- "return": {
17752
- "type": {
17753
- "text": "Promise<{ [key: string]: any }>"
17754
- }
17755
- },
17756
- "parameters": [
17757
- {
17758
- "name": "persistFilterModelKey",
17759
- "type": {
17760
- "text": "string"
17761
- }
17762
- }
17763
- ]
17764
- },
17765
- {
17766
- "kind": "method",
17767
- "name": "saveFilterModel",
17768
- "return": {
17769
- "type": {
17770
- "text": "Promise<void>"
17771
- }
17772
- },
17773
- "parameters": [
17774
- {
17775
- "name": "persistFilterModelKey",
17776
- "type": {
17777
- "text": "string"
17778
- }
17779
- },
17780
- {
17781
- "name": "filterModel",
17782
- "type": {
17783
- "text": "{ [key: string]: any }"
17784
- }
17785
- }
17786
- ]
17787
- }
17788
- ]
17789
- }
17790
- ],
17791
- "exports": [
17792
- {
17793
- "kind": "js",
17794
- "name": "LocalStorageStatePersistence",
17795
- "declaration": {
17796
- "name": "LocalStorageStatePersistence",
17797
- "module": "src/state-persistence/local-state.ts"
17798
- }
17799
- }
17800
- ]
17801
- },
17802
- {
17803
- "kind": "javascript-module",
17804
- "path": "src/state-persistence/state-persistence.ts",
17805
- "declarations": [],
17806
- "exports": []
17807
17807
  }
17808
17808
  ]
17809
17809
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/grid-pro",
3
3
  "description": "Genesis Foundation AG Grid",
4
- "version": "14.352.0",
4
+ "version": "14.353.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -38,19 +38,19 @@
38
38
  }
39
39
  },
40
40
  "devDependencies": {
41
- "@genesislcap/foundation-testing": "14.352.0",
42
- "@genesislcap/genx": "14.352.0",
43
- "@genesislcap/rollup-builder": "14.352.0",
44
- "@genesislcap/ts-builder": "14.352.0",
45
- "@genesislcap/uvu-playwright-builder": "14.352.0",
46
- "@genesislcap/vite-builder": "14.352.0",
47
- "@genesislcap/webpack-builder": "14.352.0"
41
+ "@genesislcap/foundation-testing": "14.353.0",
42
+ "@genesislcap/genx": "14.353.0",
43
+ "@genesislcap/rollup-builder": "14.353.0",
44
+ "@genesislcap/ts-builder": "14.353.0",
45
+ "@genesislcap/uvu-playwright-builder": "14.353.0",
46
+ "@genesislcap/vite-builder": "14.353.0",
47
+ "@genesislcap/webpack-builder": "14.353.0"
48
48
  },
49
49
  "dependencies": {
50
- "@genesislcap/foundation-comms": "14.352.0",
51
- "@genesislcap/foundation-logger": "14.352.0",
52
- "@genesislcap/foundation-ui": "14.352.0",
53
- "@genesislcap/foundation-utils": "14.352.0",
50
+ "@genesislcap/foundation-comms": "14.353.0",
51
+ "@genesislcap/foundation-logger": "14.353.0",
52
+ "@genesislcap/foundation-ui": "14.353.0",
53
+ "@genesislcap/foundation-utils": "14.353.0",
54
54
  "@microsoft/fast-colors": "5.3.1",
55
55
  "@microsoft/fast-components": "2.30.6",
56
56
  "@microsoft/fast-element": "1.14.0",
@@ -77,5 +77,5 @@
77
77
  "access": "public"
78
78
  },
79
79
  "customElements": "dist/custom-elements.json",
80
- "gitHead": "3d8a323fd4989f7862d640f7a66b5c206bb7ebea"
80
+ "gitHead": "056526f2c5983b54024fe6fcdeb7c6e83e0e5cb3"
81
81
  }