@genesislcap/grid-pro 14.157.1-alpha-e60ad86.0 → 14.158.1-beta.9f2f9a2.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.
- package/dist/custom-elements.json +290 -89
- package/dist/dts/datasource/base.datasource.d.ts +3 -1
- package/dist/dts/datasource/base.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/client-side.grid-definitions.d.ts +9 -0
- package/dist/dts/datasource/client-side.grid-definitions.d.ts.map +1 -0
- package/dist/dts/datasource/server-side.datasource.d.ts +6 -5
- package/dist/dts/datasource/server-side.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.grid-definitions.d.ts +1 -17
- package/dist/dts/datasource/server-side.grid-definitions.d.ts.map +1 -1
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts +16 -5
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
- package/dist/dts/grid-pro.d.ts +27 -18
- package/dist/dts/grid-pro.d.ts.map +1 -1
- package/dist/dts/grid-pro.definitions.d.ts +0 -8
- package/dist/dts/grid-pro.definitions.d.ts.map +1 -1
- package/dist/dts/state-persistence/kv-state.d.ts +6 -0
- package/dist/dts/state-persistence/kv-state.d.ts.map +1 -1
- package/dist/dts/state-persistence/local-state.d.ts +6 -0
- package/dist/dts/state-persistence/local-state.d.ts.map +1 -1
- package/dist/dts/state-persistence/state-persistence.d.ts +14 -0
- package/dist/dts/state-persistence/state-persistence.d.ts.map +1 -1
- package/dist/esm/datasource/base.datasource.js +59 -4
- package/dist/esm/datasource/client-side.grid-definitions.js +37 -0
- package/dist/esm/datasource/server-side.datasource.js +7 -40
- package/dist/esm/datasource/server-side.grid-definitions.js +1 -45
- package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +11 -61
- package/dist/esm/grid-pro.definitions.js +10 -47
- package/dist/esm/grid-pro.js +37 -13
- package/dist/esm/state-persistence/kv-state.js +21 -0
- package/dist/esm/state-persistence/local-state.js +19 -0
- package/dist/grid-pro.api.json +542 -5
- package/dist/grid-pro.d.ts +78 -38
- package/docs/api/grid-pro.gridpro.getfiltermodel.md +17 -0
- package/docs/api/grid-pro.gridpro.md +5 -1
- package/docs/api/grid-pro.gridpro.persistcolumnstatekey.md +1 -1
- package/docs/api/grid-pro.gridpro.persistfiltermodelkey.md +13 -0
- package/docs/api/grid-pro.gridpro.restorecachedfilterconfig.md +15 -0
- package/docs/api/grid-pro.gridpro.setfiltermodel.md +24 -0
- package/docs/api/grid-pro.gridprogenesisdatasource.init.md +8 -1
- package/docs/api/grid-pro.gridprogenesisdatasource.md +1 -1
- package/docs/api/grid-pro.kvstoragestatepersistence.getfiltermodel.md +24 -0
- package/docs/api/grid-pro.kvstoragestatepersistence.md +2 -0
- package/docs/api/grid-pro.kvstoragestatepersistence.savefiltermodel.md +25 -0
- package/docs/api/grid-pro.localstoragestatepersistence.getfiltermodel.md +24 -0
- package/docs/api/grid-pro.localstoragestatepersistence.md +2 -0
- package/docs/api/grid-pro.localstoragestatepersistence.savefiltermodel.md +25 -0
- package/docs/api/grid-pro.statepersistence.getfiltermodel.md +26 -0
- package/docs/api/grid-pro.statepersistence.md +2 -0
- package/docs/api/grid-pro.statepersistence.savefiltermodel.md +27 -0
- package/docs/api-report.md +35 -4
- package/package.json +13 -13
package/dist/grid-pro.api.json
CHANGED
|
@@ -8275,6 +8275,42 @@
|
|
|
8275
8275
|
"isProtected": false,
|
|
8276
8276
|
"isAbstract": false
|
|
8277
8277
|
},
|
|
8278
|
+
{
|
|
8279
|
+
"kind": "Method",
|
|
8280
|
+
"canonicalReference": "@genesislcap/grid-pro!GridPro#getfilterModel:member(1)",
|
|
8281
|
+
"docComment": "",
|
|
8282
|
+
"excerptTokens": [
|
|
8283
|
+
{
|
|
8284
|
+
"kind": "Content",
|
|
8285
|
+
"text": "getfilterModel(): "
|
|
8286
|
+
},
|
|
8287
|
+
{
|
|
8288
|
+
"kind": "Reference",
|
|
8289
|
+
"text": "Promise",
|
|
8290
|
+
"canonicalReference": "!Promise:interface"
|
|
8291
|
+
},
|
|
8292
|
+
{
|
|
8293
|
+
"kind": "Content",
|
|
8294
|
+
"text": "<{\n [key: string]: any;\n }>"
|
|
8295
|
+
},
|
|
8296
|
+
{
|
|
8297
|
+
"kind": "Content",
|
|
8298
|
+
"text": ";"
|
|
8299
|
+
}
|
|
8300
|
+
],
|
|
8301
|
+
"isStatic": false,
|
|
8302
|
+
"returnTypeTokenRange": {
|
|
8303
|
+
"startIndex": 1,
|
|
8304
|
+
"endIndex": 3
|
|
8305
|
+
},
|
|
8306
|
+
"releaseTag": "Public",
|
|
8307
|
+
"isProtected": false,
|
|
8308
|
+
"overloadIndex": 1,
|
|
8309
|
+
"parameters": [],
|
|
8310
|
+
"isOptional": false,
|
|
8311
|
+
"isAbstract": false,
|
|
8312
|
+
"name": "getfilterModel"
|
|
8313
|
+
},
|
|
8278
8314
|
{
|
|
8279
8315
|
"kind": "Method",
|
|
8280
8316
|
"canonicalReference": "@genesislcap/grid-pro!GridPro#getSavedColumnState:member(1)",
|
|
@@ -8875,7 +8911,7 @@
|
|
|
8875
8911
|
{
|
|
8876
8912
|
"kind": "Property",
|
|
8877
8913
|
"canonicalReference": "@genesislcap/grid-pro!GridPro#persistColumnStateKey:member",
|
|
8878
|
-
"docComment": "/**\n * The key to use for persisting the column state in local storage.\n */\n",
|
|
8914
|
+
"docComment": "/**\n * The key to use for persisting the column state in local broswer or KV storage.\n */\n",
|
|
8879
8915
|
"excerptTokens": [
|
|
8880
8916
|
{
|
|
8881
8917
|
"kind": "Content",
|
|
@@ -8902,6 +8938,72 @@
|
|
|
8902
8938
|
"isProtected": false,
|
|
8903
8939
|
"isAbstract": false
|
|
8904
8940
|
},
|
|
8941
|
+
{
|
|
8942
|
+
"kind": "Property",
|
|
8943
|
+
"canonicalReference": "@genesislcap/grid-pro!GridPro#persistFilterModelKey:member",
|
|
8944
|
+
"docComment": "/**\n * The key to use for persisting the filter model in local browser or KV storage.\n */\n",
|
|
8945
|
+
"excerptTokens": [
|
|
8946
|
+
{
|
|
8947
|
+
"kind": "Content",
|
|
8948
|
+
"text": "persistFilterModelKey: "
|
|
8949
|
+
},
|
|
8950
|
+
{
|
|
8951
|
+
"kind": "Content",
|
|
8952
|
+
"text": "string"
|
|
8953
|
+
},
|
|
8954
|
+
{
|
|
8955
|
+
"kind": "Content",
|
|
8956
|
+
"text": ";"
|
|
8957
|
+
}
|
|
8958
|
+
],
|
|
8959
|
+
"isReadonly": false,
|
|
8960
|
+
"isOptional": false,
|
|
8961
|
+
"releaseTag": "Public",
|
|
8962
|
+
"name": "persistFilterModelKey",
|
|
8963
|
+
"propertyTypeTokenRange": {
|
|
8964
|
+
"startIndex": 1,
|
|
8965
|
+
"endIndex": 2
|
|
8966
|
+
},
|
|
8967
|
+
"isStatic": false,
|
|
8968
|
+
"isProtected": false,
|
|
8969
|
+
"isAbstract": false
|
|
8970
|
+
},
|
|
8971
|
+
{
|
|
8972
|
+
"kind": "Method",
|
|
8973
|
+
"canonicalReference": "@genesislcap/grid-pro!GridPro#restoreCachedFilterConfig:member(1)",
|
|
8974
|
+
"docComment": "",
|
|
8975
|
+
"excerptTokens": [
|
|
8976
|
+
{
|
|
8977
|
+
"kind": "Content",
|
|
8978
|
+
"text": "restoreCachedFilterConfig(): "
|
|
8979
|
+
},
|
|
8980
|
+
{
|
|
8981
|
+
"kind": "Reference",
|
|
8982
|
+
"text": "Promise",
|
|
8983
|
+
"canonicalReference": "!Promise:interface"
|
|
8984
|
+
},
|
|
8985
|
+
{
|
|
8986
|
+
"kind": "Content",
|
|
8987
|
+
"text": "<void>"
|
|
8988
|
+
},
|
|
8989
|
+
{
|
|
8990
|
+
"kind": "Content",
|
|
8991
|
+
"text": ";"
|
|
8992
|
+
}
|
|
8993
|
+
],
|
|
8994
|
+
"isStatic": false,
|
|
8995
|
+
"returnTypeTokenRange": {
|
|
8996
|
+
"startIndex": 1,
|
|
8997
|
+
"endIndex": 3
|
|
8998
|
+
},
|
|
8999
|
+
"releaseTag": "Public",
|
|
9000
|
+
"isProtected": false,
|
|
9001
|
+
"overloadIndex": 1,
|
|
9002
|
+
"parameters": [],
|
|
9003
|
+
"isOptional": false,
|
|
9004
|
+
"isAbstract": false,
|
|
9005
|
+
"name": "restoreCachedFilterConfig"
|
|
9006
|
+
},
|
|
8905
9007
|
{
|
|
8906
9008
|
"kind": "Property",
|
|
8907
9009
|
"canonicalReference": "@genesislcap/grid-pro!GridPro#rowHeight:member",
|
|
@@ -8932,6 +9034,59 @@
|
|
|
8932
9034
|
"isProtected": false,
|
|
8933
9035
|
"isAbstract": false
|
|
8934
9036
|
},
|
|
9037
|
+
{
|
|
9038
|
+
"kind": "Method",
|
|
9039
|
+
"canonicalReference": "@genesislcap/grid-pro!GridPro#setFilterModel:member(1)",
|
|
9040
|
+
"docComment": "",
|
|
9041
|
+
"excerptTokens": [
|
|
9042
|
+
{
|
|
9043
|
+
"kind": "Content",
|
|
9044
|
+
"text": "setFilterModel(value: "
|
|
9045
|
+
},
|
|
9046
|
+
{
|
|
9047
|
+
"kind": "Content",
|
|
9048
|
+
"text": "{\n [key: string]: any;\n }"
|
|
9049
|
+
},
|
|
9050
|
+
{
|
|
9051
|
+
"kind": "Content",
|
|
9052
|
+
"text": "): "
|
|
9053
|
+
},
|
|
9054
|
+
{
|
|
9055
|
+
"kind": "Reference",
|
|
9056
|
+
"text": "Promise",
|
|
9057
|
+
"canonicalReference": "!Promise:interface"
|
|
9058
|
+
},
|
|
9059
|
+
{
|
|
9060
|
+
"kind": "Content",
|
|
9061
|
+
"text": "<void>"
|
|
9062
|
+
},
|
|
9063
|
+
{
|
|
9064
|
+
"kind": "Content",
|
|
9065
|
+
"text": ";"
|
|
9066
|
+
}
|
|
9067
|
+
],
|
|
9068
|
+
"isStatic": false,
|
|
9069
|
+
"returnTypeTokenRange": {
|
|
9070
|
+
"startIndex": 3,
|
|
9071
|
+
"endIndex": 5
|
|
9072
|
+
},
|
|
9073
|
+
"releaseTag": "Public",
|
|
9074
|
+
"isProtected": false,
|
|
9075
|
+
"overloadIndex": 1,
|
|
9076
|
+
"parameters": [
|
|
9077
|
+
{
|
|
9078
|
+
"parameterName": "value",
|
|
9079
|
+
"parameterTypeTokenRange": {
|
|
9080
|
+
"startIndex": 1,
|
|
9081
|
+
"endIndex": 2
|
|
9082
|
+
},
|
|
9083
|
+
"isOptional": false
|
|
9084
|
+
}
|
|
9085
|
+
],
|
|
9086
|
+
"isOptional": false,
|
|
9087
|
+
"isAbstract": false,
|
|
9088
|
+
"name": "setFilterModel"
|
|
9089
|
+
},
|
|
8935
9090
|
{
|
|
8936
9091
|
"kind": "Method",
|
|
8937
9092
|
"canonicalReference": "@genesislcap/grid-pro!GridPro#statePersistanceEnabled:member(1)",
|
|
@@ -10507,7 +10662,20 @@
|
|
|
10507
10662
|
"excerptTokens": [
|
|
10508
10663
|
{
|
|
10509
10664
|
"kind": "Content",
|
|
10510
|
-
"text": "init(
|
|
10665
|
+
"text": "init(columnDefinitions?: "
|
|
10666
|
+
},
|
|
10667
|
+
{
|
|
10668
|
+
"kind": "Reference",
|
|
10669
|
+
"text": "ColDef",
|
|
10670
|
+
"canonicalReference": "@ag-grid-community/core!ColDef:interface"
|
|
10671
|
+
},
|
|
10672
|
+
{
|
|
10673
|
+
"kind": "Content",
|
|
10674
|
+
"text": "[]"
|
|
10675
|
+
},
|
|
10676
|
+
{
|
|
10677
|
+
"kind": "Content",
|
|
10678
|
+
"text": "): "
|
|
10511
10679
|
},
|
|
10512
10680
|
{
|
|
10513
10681
|
"kind": "Reference",
|
|
@@ -10525,13 +10693,22 @@
|
|
|
10525
10693
|
],
|
|
10526
10694
|
"isStatic": false,
|
|
10527
10695
|
"returnTypeTokenRange": {
|
|
10528
|
-
"startIndex":
|
|
10529
|
-
"endIndex":
|
|
10696
|
+
"startIndex": 4,
|
|
10697
|
+
"endIndex": 6
|
|
10530
10698
|
},
|
|
10531
10699
|
"releaseTag": "Public",
|
|
10532
10700
|
"isProtected": false,
|
|
10533
10701
|
"overloadIndex": 1,
|
|
10534
|
-
"parameters": [
|
|
10702
|
+
"parameters": [
|
|
10703
|
+
{
|
|
10704
|
+
"parameterName": "columnDefinitions",
|
|
10705
|
+
"parameterTypeTokenRange": {
|
|
10706
|
+
"startIndex": 1,
|
|
10707
|
+
"endIndex": 3
|
|
10708
|
+
},
|
|
10709
|
+
"isOptional": true
|
|
10710
|
+
}
|
|
10711
|
+
],
|
|
10535
10712
|
"isOptional": false,
|
|
10536
10713
|
"isAbstract": false,
|
|
10537
10714
|
"name": "init"
|
|
@@ -11261,6 +11438,59 @@
|
|
|
11261
11438
|
"isAbstract": false,
|
|
11262
11439
|
"name": "getColumnState"
|
|
11263
11440
|
},
|
|
11441
|
+
{
|
|
11442
|
+
"kind": "Method",
|
|
11443
|
+
"canonicalReference": "@genesislcap/grid-pro!KVStorageStatePersistence#getFilterModel:member(1)",
|
|
11444
|
+
"docComment": "",
|
|
11445
|
+
"excerptTokens": [
|
|
11446
|
+
{
|
|
11447
|
+
"kind": "Content",
|
|
11448
|
+
"text": "getFilterModel(persistFilterModelKey: "
|
|
11449
|
+
},
|
|
11450
|
+
{
|
|
11451
|
+
"kind": "Content",
|
|
11452
|
+
"text": "string"
|
|
11453
|
+
},
|
|
11454
|
+
{
|
|
11455
|
+
"kind": "Content",
|
|
11456
|
+
"text": "): "
|
|
11457
|
+
},
|
|
11458
|
+
{
|
|
11459
|
+
"kind": "Reference",
|
|
11460
|
+
"text": "Promise",
|
|
11461
|
+
"canonicalReference": "!Promise:interface"
|
|
11462
|
+
},
|
|
11463
|
+
{
|
|
11464
|
+
"kind": "Content",
|
|
11465
|
+
"text": "<{\n [key: string]: any;\n }>"
|
|
11466
|
+
},
|
|
11467
|
+
{
|
|
11468
|
+
"kind": "Content",
|
|
11469
|
+
"text": ";"
|
|
11470
|
+
}
|
|
11471
|
+
],
|
|
11472
|
+
"isStatic": false,
|
|
11473
|
+
"returnTypeTokenRange": {
|
|
11474
|
+
"startIndex": 3,
|
|
11475
|
+
"endIndex": 5
|
|
11476
|
+
},
|
|
11477
|
+
"releaseTag": "Public",
|
|
11478
|
+
"isProtected": false,
|
|
11479
|
+
"overloadIndex": 1,
|
|
11480
|
+
"parameters": [
|
|
11481
|
+
{
|
|
11482
|
+
"parameterName": "persistFilterModelKey",
|
|
11483
|
+
"parameterTypeTokenRange": {
|
|
11484
|
+
"startIndex": 1,
|
|
11485
|
+
"endIndex": 2
|
|
11486
|
+
},
|
|
11487
|
+
"isOptional": false
|
|
11488
|
+
}
|
|
11489
|
+
],
|
|
11490
|
+
"isOptional": false,
|
|
11491
|
+
"isAbstract": false,
|
|
11492
|
+
"name": "getFilterModel"
|
|
11493
|
+
},
|
|
11264
11494
|
{
|
|
11265
11495
|
"kind": "Property",
|
|
11266
11496
|
"canonicalReference": "@genesislcap/grid-pro!KVStorageStatePersistence#kvStorage:member",
|
|
@@ -11366,6 +11596,75 @@
|
|
|
11366
11596
|
"isAbstract": false,
|
|
11367
11597
|
"name": "saveColumnState"
|
|
11368
11598
|
},
|
|
11599
|
+
{
|
|
11600
|
+
"kind": "Method",
|
|
11601
|
+
"canonicalReference": "@genesislcap/grid-pro!KVStorageStatePersistence#saveFilterModel:member(1)",
|
|
11602
|
+
"docComment": "",
|
|
11603
|
+
"excerptTokens": [
|
|
11604
|
+
{
|
|
11605
|
+
"kind": "Content",
|
|
11606
|
+
"text": "saveFilterModel(persistFilterModelKey: "
|
|
11607
|
+
},
|
|
11608
|
+
{
|
|
11609
|
+
"kind": "Content",
|
|
11610
|
+
"text": "string"
|
|
11611
|
+
},
|
|
11612
|
+
{
|
|
11613
|
+
"kind": "Content",
|
|
11614
|
+
"text": ", filterModel: "
|
|
11615
|
+
},
|
|
11616
|
+
{
|
|
11617
|
+
"kind": "Content",
|
|
11618
|
+
"text": "{\n [key: string]: any;\n }"
|
|
11619
|
+
},
|
|
11620
|
+
{
|
|
11621
|
+
"kind": "Content",
|
|
11622
|
+
"text": "): "
|
|
11623
|
+
},
|
|
11624
|
+
{
|
|
11625
|
+
"kind": "Reference",
|
|
11626
|
+
"text": "Promise",
|
|
11627
|
+
"canonicalReference": "!Promise:interface"
|
|
11628
|
+
},
|
|
11629
|
+
{
|
|
11630
|
+
"kind": "Content",
|
|
11631
|
+
"text": "<void>"
|
|
11632
|
+
},
|
|
11633
|
+
{
|
|
11634
|
+
"kind": "Content",
|
|
11635
|
+
"text": ";"
|
|
11636
|
+
}
|
|
11637
|
+
],
|
|
11638
|
+
"isStatic": false,
|
|
11639
|
+
"returnTypeTokenRange": {
|
|
11640
|
+
"startIndex": 5,
|
|
11641
|
+
"endIndex": 7
|
|
11642
|
+
},
|
|
11643
|
+
"releaseTag": "Public",
|
|
11644
|
+
"isProtected": false,
|
|
11645
|
+
"overloadIndex": 1,
|
|
11646
|
+
"parameters": [
|
|
11647
|
+
{
|
|
11648
|
+
"parameterName": "persistFilterModelKey",
|
|
11649
|
+
"parameterTypeTokenRange": {
|
|
11650
|
+
"startIndex": 1,
|
|
11651
|
+
"endIndex": 2
|
|
11652
|
+
},
|
|
11653
|
+
"isOptional": false
|
|
11654
|
+
},
|
|
11655
|
+
{
|
|
11656
|
+
"parameterName": "filterModel",
|
|
11657
|
+
"parameterTypeTokenRange": {
|
|
11658
|
+
"startIndex": 3,
|
|
11659
|
+
"endIndex": 4
|
|
11660
|
+
},
|
|
11661
|
+
"isOptional": false
|
|
11662
|
+
}
|
|
11663
|
+
],
|
|
11664
|
+
"isOptional": false,
|
|
11665
|
+
"isAbstract": false,
|
|
11666
|
+
"name": "saveFilterModel"
|
|
11667
|
+
},
|
|
11369
11668
|
{
|
|
11370
11669
|
"kind": "Property",
|
|
11371
11670
|
"canonicalReference": "@genesislcap/grid-pro!KVStorageStatePersistence#session:member",
|
|
@@ -11492,6 +11791,59 @@
|
|
|
11492
11791
|
"isAbstract": false,
|
|
11493
11792
|
"name": "getColumnState"
|
|
11494
11793
|
},
|
|
11794
|
+
{
|
|
11795
|
+
"kind": "Method",
|
|
11796
|
+
"canonicalReference": "@genesislcap/grid-pro!LocalStorageStatePersistence#getFilterModel:member(1)",
|
|
11797
|
+
"docComment": "",
|
|
11798
|
+
"excerptTokens": [
|
|
11799
|
+
{
|
|
11800
|
+
"kind": "Content",
|
|
11801
|
+
"text": "getFilterModel(persistFilterModelKey: "
|
|
11802
|
+
},
|
|
11803
|
+
{
|
|
11804
|
+
"kind": "Content",
|
|
11805
|
+
"text": "string"
|
|
11806
|
+
},
|
|
11807
|
+
{
|
|
11808
|
+
"kind": "Content",
|
|
11809
|
+
"text": "): "
|
|
11810
|
+
},
|
|
11811
|
+
{
|
|
11812
|
+
"kind": "Reference",
|
|
11813
|
+
"text": "Promise",
|
|
11814
|
+
"canonicalReference": "!Promise:interface"
|
|
11815
|
+
},
|
|
11816
|
+
{
|
|
11817
|
+
"kind": "Content",
|
|
11818
|
+
"text": "<{\n [key: string]: any;\n }>"
|
|
11819
|
+
},
|
|
11820
|
+
{
|
|
11821
|
+
"kind": "Content",
|
|
11822
|
+
"text": ";"
|
|
11823
|
+
}
|
|
11824
|
+
],
|
|
11825
|
+
"isStatic": false,
|
|
11826
|
+
"returnTypeTokenRange": {
|
|
11827
|
+
"startIndex": 3,
|
|
11828
|
+
"endIndex": 5
|
|
11829
|
+
},
|
|
11830
|
+
"releaseTag": "Public",
|
|
11831
|
+
"isProtected": false,
|
|
11832
|
+
"overloadIndex": 1,
|
|
11833
|
+
"parameters": [
|
|
11834
|
+
{
|
|
11835
|
+
"parameterName": "persistFilterModelKey",
|
|
11836
|
+
"parameterTypeTokenRange": {
|
|
11837
|
+
"startIndex": 1,
|
|
11838
|
+
"endIndex": 2
|
|
11839
|
+
},
|
|
11840
|
+
"isOptional": false
|
|
11841
|
+
}
|
|
11842
|
+
],
|
|
11843
|
+
"isOptional": false,
|
|
11844
|
+
"isAbstract": false,
|
|
11845
|
+
"name": "getFilterModel"
|
|
11846
|
+
},
|
|
11495
11847
|
{
|
|
11496
11848
|
"kind": "Method",
|
|
11497
11849
|
"canonicalReference": "@genesislcap/grid-pro!LocalStorageStatePersistence#saveColumnState:member(1)",
|
|
@@ -11566,6 +11918,75 @@
|
|
|
11566
11918
|
"isAbstract": false,
|
|
11567
11919
|
"name": "saveColumnState"
|
|
11568
11920
|
},
|
|
11921
|
+
{
|
|
11922
|
+
"kind": "Method",
|
|
11923
|
+
"canonicalReference": "@genesislcap/grid-pro!LocalStorageStatePersistence#saveFilterModel:member(1)",
|
|
11924
|
+
"docComment": "",
|
|
11925
|
+
"excerptTokens": [
|
|
11926
|
+
{
|
|
11927
|
+
"kind": "Content",
|
|
11928
|
+
"text": "saveFilterModel(persistFilterModelKey: "
|
|
11929
|
+
},
|
|
11930
|
+
{
|
|
11931
|
+
"kind": "Content",
|
|
11932
|
+
"text": "string"
|
|
11933
|
+
},
|
|
11934
|
+
{
|
|
11935
|
+
"kind": "Content",
|
|
11936
|
+
"text": ", filterModel: "
|
|
11937
|
+
},
|
|
11938
|
+
{
|
|
11939
|
+
"kind": "Content",
|
|
11940
|
+
"text": "{\n [key: string]: any;\n }"
|
|
11941
|
+
},
|
|
11942
|
+
{
|
|
11943
|
+
"kind": "Content",
|
|
11944
|
+
"text": "): "
|
|
11945
|
+
},
|
|
11946
|
+
{
|
|
11947
|
+
"kind": "Reference",
|
|
11948
|
+
"text": "Promise",
|
|
11949
|
+
"canonicalReference": "!Promise:interface"
|
|
11950
|
+
},
|
|
11951
|
+
{
|
|
11952
|
+
"kind": "Content",
|
|
11953
|
+
"text": "<void>"
|
|
11954
|
+
},
|
|
11955
|
+
{
|
|
11956
|
+
"kind": "Content",
|
|
11957
|
+
"text": ";"
|
|
11958
|
+
}
|
|
11959
|
+
],
|
|
11960
|
+
"isStatic": false,
|
|
11961
|
+
"returnTypeTokenRange": {
|
|
11962
|
+
"startIndex": 5,
|
|
11963
|
+
"endIndex": 7
|
|
11964
|
+
},
|
|
11965
|
+
"releaseTag": "Public",
|
|
11966
|
+
"isProtected": false,
|
|
11967
|
+
"overloadIndex": 1,
|
|
11968
|
+
"parameters": [
|
|
11969
|
+
{
|
|
11970
|
+
"parameterName": "persistFilterModelKey",
|
|
11971
|
+
"parameterTypeTokenRange": {
|
|
11972
|
+
"startIndex": 1,
|
|
11973
|
+
"endIndex": 2
|
|
11974
|
+
},
|
|
11975
|
+
"isOptional": false
|
|
11976
|
+
},
|
|
11977
|
+
{
|
|
11978
|
+
"parameterName": "filterModel",
|
|
11979
|
+
"parameterTypeTokenRange": {
|
|
11980
|
+
"startIndex": 3,
|
|
11981
|
+
"endIndex": 4
|
|
11982
|
+
},
|
|
11983
|
+
"isOptional": false
|
|
11984
|
+
}
|
|
11985
|
+
],
|
|
11986
|
+
"isOptional": false,
|
|
11987
|
+
"isAbstract": false,
|
|
11988
|
+
"name": "saveFilterModel"
|
|
11989
|
+
},
|
|
11569
11990
|
{
|
|
11570
11991
|
"kind": "Property",
|
|
11571
11992
|
"canonicalReference": "@genesislcap/grid-pro!LocalStorageStatePersistence#session:member",
|
|
@@ -14002,6 +14423,56 @@
|
|
|
14002
14423
|
],
|
|
14003
14424
|
"name": "getColumnState"
|
|
14004
14425
|
},
|
|
14426
|
+
{
|
|
14427
|
+
"kind": "MethodSignature",
|
|
14428
|
+
"canonicalReference": "@genesislcap/grid-pro!StatePersistence#getFilterModel:member(1)",
|
|
14429
|
+
"docComment": "/**\n * Returns the filter model for the given key.\n *\n * @public\n */\n",
|
|
14430
|
+
"excerptTokens": [
|
|
14431
|
+
{
|
|
14432
|
+
"kind": "Content",
|
|
14433
|
+
"text": "getFilterModel(persistFilterModelKey: "
|
|
14434
|
+
},
|
|
14435
|
+
{
|
|
14436
|
+
"kind": "Content",
|
|
14437
|
+
"text": "string"
|
|
14438
|
+
},
|
|
14439
|
+
{
|
|
14440
|
+
"kind": "Content",
|
|
14441
|
+
"text": "): "
|
|
14442
|
+
},
|
|
14443
|
+
{
|
|
14444
|
+
"kind": "Reference",
|
|
14445
|
+
"text": "Promise",
|
|
14446
|
+
"canonicalReference": "!Promise:interface"
|
|
14447
|
+
},
|
|
14448
|
+
{
|
|
14449
|
+
"kind": "Content",
|
|
14450
|
+
"text": "<{\n [key: string]: any;\n }>"
|
|
14451
|
+
},
|
|
14452
|
+
{
|
|
14453
|
+
"kind": "Content",
|
|
14454
|
+
"text": ";"
|
|
14455
|
+
}
|
|
14456
|
+
],
|
|
14457
|
+
"isOptional": false,
|
|
14458
|
+
"returnTypeTokenRange": {
|
|
14459
|
+
"startIndex": 3,
|
|
14460
|
+
"endIndex": 5
|
|
14461
|
+
},
|
|
14462
|
+
"releaseTag": "Public",
|
|
14463
|
+
"overloadIndex": 1,
|
|
14464
|
+
"parameters": [
|
|
14465
|
+
{
|
|
14466
|
+
"parameterName": "persistFilterModelKey",
|
|
14467
|
+
"parameterTypeTokenRange": {
|
|
14468
|
+
"startIndex": 1,
|
|
14469
|
+
"endIndex": 2
|
|
14470
|
+
},
|
|
14471
|
+
"isOptional": false
|
|
14472
|
+
}
|
|
14473
|
+
],
|
|
14474
|
+
"name": "getFilterModel"
|
|
14475
|
+
},
|
|
14005
14476
|
{
|
|
14006
14477
|
"kind": "MethodSignature",
|
|
14007
14478
|
"canonicalReference": "@genesislcap/grid-pro!StatePersistence#saveColumnState:member(1)",
|
|
@@ -14072,6 +14543,72 @@
|
|
|
14072
14543
|
}
|
|
14073
14544
|
],
|
|
14074
14545
|
"name": "saveColumnState"
|
|
14546
|
+
},
|
|
14547
|
+
{
|
|
14548
|
+
"kind": "MethodSignature",
|
|
14549
|
+
"canonicalReference": "@genesislcap/grid-pro!StatePersistence#saveFilterModel:member(1)",
|
|
14550
|
+
"docComment": "/**\n * Saves the filter model for the given key.\n *\n * @public\n */\n",
|
|
14551
|
+
"excerptTokens": [
|
|
14552
|
+
{
|
|
14553
|
+
"kind": "Content",
|
|
14554
|
+
"text": "saveFilterModel(persistFilterModelKey: "
|
|
14555
|
+
},
|
|
14556
|
+
{
|
|
14557
|
+
"kind": "Content",
|
|
14558
|
+
"text": "string"
|
|
14559
|
+
},
|
|
14560
|
+
{
|
|
14561
|
+
"kind": "Content",
|
|
14562
|
+
"text": ", filterModel: "
|
|
14563
|
+
},
|
|
14564
|
+
{
|
|
14565
|
+
"kind": "Content",
|
|
14566
|
+
"text": "{\n [key: string]: any;\n }"
|
|
14567
|
+
},
|
|
14568
|
+
{
|
|
14569
|
+
"kind": "Content",
|
|
14570
|
+
"text": "): "
|
|
14571
|
+
},
|
|
14572
|
+
{
|
|
14573
|
+
"kind": "Reference",
|
|
14574
|
+
"text": "Promise",
|
|
14575
|
+
"canonicalReference": "!Promise:interface"
|
|
14576
|
+
},
|
|
14577
|
+
{
|
|
14578
|
+
"kind": "Content",
|
|
14579
|
+
"text": "<void>"
|
|
14580
|
+
},
|
|
14581
|
+
{
|
|
14582
|
+
"kind": "Content",
|
|
14583
|
+
"text": ";"
|
|
14584
|
+
}
|
|
14585
|
+
],
|
|
14586
|
+
"isOptional": false,
|
|
14587
|
+
"returnTypeTokenRange": {
|
|
14588
|
+
"startIndex": 5,
|
|
14589
|
+
"endIndex": 7
|
|
14590
|
+
},
|
|
14591
|
+
"releaseTag": "Public",
|
|
14592
|
+
"overloadIndex": 1,
|
|
14593
|
+
"parameters": [
|
|
14594
|
+
{
|
|
14595
|
+
"parameterName": "persistFilterModelKey",
|
|
14596
|
+
"parameterTypeTokenRange": {
|
|
14597
|
+
"startIndex": 1,
|
|
14598
|
+
"endIndex": 2
|
|
14599
|
+
},
|
|
14600
|
+
"isOptional": false
|
|
14601
|
+
},
|
|
14602
|
+
{
|
|
14603
|
+
"parameterName": "filterModel",
|
|
14604
|
+
"parameterTypeTokenRange": {
|
|
14605
|
+
"startIndex": 3,
|
|
14606
|
+
"endIndex": 4
|
|
14607
|
+
},
|
|
14608
|
+
"isOptional": false
|
|
14609
|
+
}
|
|
14610
|
+
],
|
|
14611
|
+
"name": "saveFilterModel"
|
|
14075
14612
|
}
|
|
14076
14613
|
],
|
|
14077
14614
|
"extendsTokenRanges": []
|