@genesislcap/grid-pro 15.22.0 → 15.22.2
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 +486 -486
- package/package.json +13 -13
|
@@ -21941,7 +21941,7 @@
|
|
|
21941
21941
|
},
|
|
21942
21942
|
{
|
|
21943
21943
|
"kind": "javascript-module",
|
|
21944
|
-
"path": "src/
|
|
21944
|
+
"path": "src/state-persistence/index.ts",
|
|
21945
21945
|
"declarations": [],
|
|
21946
21946
|
"exports": [
|
|
21947
21947
|
{
|
|
@@ -21949,15 +21949,7 @@
|
|
|
21949
21949
|
"name": "*",
|
|
21950
21950
|
"declaration": {
|
|
21951
21951
|
"name": "*",
|
|
21952
|
-
"package": "./
|
|
21953
|
-
}
|
|
21954
|
-
},
|
|
21955
|
-
{
|
|
21956
|
-
"kind": "js",
|
|
21957
|
-
"name": "*",
|
|
21958
|
-
"declaration": {
|
|
21959
|
-
"name": "*",
|
|
21960
|
-
"package": "./label-value.status-bar"
|
|
21952
|
+
"package": "./kv-state"
|
|
21961
21953
|
}
|
|
21962
21954
|
},
|
|
21963
21955
|
{
|
|
@@ -21965,7 +21957,7 @@
|
|
|
21965
21957
|
"name": "*",
|
|
21966
21958
|
"declaration": {
|
|
21967
21959
|
"name": "*",
|
|
21968
|
-
"package": "./
|
|
21960
|
+
"package": "./local-state"
|
|
21969
21961
|
}
|
|
21970
21962
|
},
|
|
21971
21963
|
{
|
|
@@ -21973,103 +21965,188 @@
|
|
|
21973
21965
|
"name": "*",
|
|
21974
21966
|
"declaration": {
|
|
21975
21967
|
"name": "*",
|
|
21976
|
-
"package": "./
|
|
21968
|
+
"package": "./state-persistence"
|
|
21977
21969
|
}
|
|
21978
21970
|
}
|
|
21979
21971
|
]
|
|
21980
21972
|
},
|
|
21981
21973
|
{
|
|
21982
21974
|
"kind": "javascript-module",
|
|
21983
|
-
"path": "src/
|
|
21975
|
+
"path": "src/state-persistence/kv-state.ts",
|
|
21984
21976
|
"declarations": [
|
|
21985
21977
|
{
|
|
21986
21978
|
"kind": "class",
|
|
21987
|
-
"description": "
|
|
21988
|
-
"name": "
|
|
21979
|
+
"description": "Implementation for the KV Storage State Persistence interface.",
|
|
21980
|
+
"name": "KVStorageStatePersistence",
|
|
21989
21981
|
"members": [
|
|
21990
21982
|
{
|
|
21991
21983
|
"kind": "field",
|
|
21992
|
-
"name": "
|
|
21984
|
+
"name": "kvStorage",
|
|
21993
21985
|
"type": {
|
|
21994
|
-
"text": "
|
|
21995
|
-
}
|
|
21996
|
-
"privacy": "private"
|
|
21986
|
+
"text": "KVStorage"
|
|
21987
|
+
}
|
|
21997
21988
|
},
|
|
21998
21989
|
{
|
|
21999
21990
|
"kind": "field",
|
|
22000
|
-
"name": "
|
|
21991
|
+
"name": "session",
|
|
22001
21992
|
"type": {
|
|
22002
|
-
"text": "
|
|
21993
|
+
"text": "Session"
|
|
21994
|
+
}
|
|
21995
|
+
},
|
|
21996
|
+
{
|
|
21997
|
+
"kind": "method",
|
|
21998
|
+
"name": "getColumnState",
|
|
21999
|
+
"return": {
|
|
22000
|
+
"type": {
|
|
22001
|
+
"text": "Promise<ColumnState[]>"
|
|
22002
|
+
}
|
|
22003
22003
|
},
|
|
22004
|
-
"
|
|
22004
|
+
"parameters": [
|
|
22005
|
+
{
|
|
22006
|
+
"name": "persistColumnStateKey",
|
|
22007
|
+
"type": {
|
|
22008
|
+
"text": "string"
|
|
22009
|
+
}
|
|
22010
|
+
}
|
|
22011
|
+
]
|
|
22005
22012
|
},
|
|
22006
22013
|
{
|
|
22007
|
-
"kind": "
|
|
22008
|
-
"name": "
|
|
22009
|
-
"
|
|
22010
|
-
"
|
|
22014
|
+
"kind": "method",
|
|
22015
|
+
"name": "saveColumnState",
|
|
22016
|
+
"return": {
|
|
22017
|
+
"type": {
|
|
22018
|
+
"text": "Promise<void>"
|
|
22019
|
+
}
|
|
22011
22020
|
},
|
|
22012
|
-
"
|
|
22021
|
+
"parameters": [
|
|
22022
|
+
{
|
|
22023
|
+
"name": "persistColumnStateKey",
|
|
22024
|
+
"type": {
|
|
22025
|
+
"text": "string"
|
|
22026
|
+
}
|
|
22027
|
+
},
|
|
22028
|
+
{
|
|
22029
|
+
"name": "columnState",
|
|
22030
|
+
"type": {
|
|
22031
|
+
"text": "ColumnState[]"
|
|
22032
|
+
}
|
|
22033
|
+
}
|
|
22034
|
+
]
|
|
22013
22035
|
},
|
|
22014
22036
|
{
|
|
22015
|
-
"kind": "
|
|
22016
|
-
"name": "
|
|
22017
|
-
"
|
|
22018
|
-
"
|
|
22037
|
+
"kind": "method",
|
|
22038
|
+
"name": "deleteColumnState",
|
|
22039
|
+
"return": {
|
|
22040
|
+
"type": {
|
|
22041
|
+
"text": "Promise<void>"
|
|
22042
|
+
}
|
|
22019
22043
|
},
|
|
22020
|
-
"
|
|
22044
|
+
"parameters": [
|
|
22045
|
+
{
|
|
22046
|
+
"name": "persistColumnStateKey",
|
|
22047
|
+
"type": {
|
|
22048
|
+
"text": "string"
|
|
22049
|
+
}
|
|
22050
|
+
}
|
|
22051
|
+
]
|
|
22021
22052
|
},
|
|
22022
22053
|
{
|
|
22023
22054
|
"kind": "method",
|
|
22024
|
-
"name": "
|
|
22055
|
+
"name": "migrateLocalStorageToKVStorage",
|
|
22056
|
+
"privacy": "private",
|
|
22057
|
+
"return": {
|
|
22058
|
+
"type": {
|
|
22059
|
+
"text": "Promise<void>"
|
|
22060
|
+
}
|
|
22061
|
+
},
|
|
22025
22062
|
"parameters": [
|
|
22026
22063
|
{
|
|
22027
|
-
"name": "
|
|
22064
|
+
"name": "persistColumnStateKey",
|
|
22028
22065
|
"type": {
|
|
22029
|
-
"text": "
|
|
22066
|
+
"text": "string"
|
|
22030
22067
|
}
|
|
22031
22068
|
}
|
|
22032
22069
|
]
|
|
22033
22070
|
},
|
|
22034
22071
|
{
|
|
22035
22072
|
"kind": "method",
|
|
22036
|
-
"name": "
|
|
22073
|
+
"name": "getFilterModel",
|
|
22037
22074
|
"return": {
|
|
22038
22075
|
"type": {
|
|
22039
|
-
"text": "
|
|
22076
|
+
"text": "Promise<{ [key: string]: any }>"
|
|
22040
22077
|
}
|
|
22041
22078
|
},
|
|
22042
22079
|
"parameters": [
|
|
22043
22080
|
{
|
|
22044
|
-
"name": "
|
|
22081
|
+
"name": "persistFilterModelKey",
|
|
22045
22082
|
"type": {
|
|
22046
|
-
"text": "
|
|
22083
|
+
"text": "string"
|
|
22047
22084
|
}
|
|
22048
22085
|
}
|
|
22049
22086
|
]
|
|
22050
22087
|
},
|
|
22051
22088
|
{
|
|
22052
22089
|
"kind": "method",
|
|
22053
|
-
"name": "
|
|
22054
|
-
"privacy": "private",
|
|
22090
|
+
"name": "saveFilterModel",
|
|
22055
22091
|
"return": {
|
|
22056
22092
|
"type": {
|
|
22057
|
-
"text": "void"
|
|
22093
|
+
"text": "Promise<void>"
|
|
22058
22094
|
}
|
|
22059
|
-
}
|
|
22095
|
+
},
|
|
22096
|
+
"parameters": [
|
|
22097
|
+
{
|
|
22098
|
+
"name": "persistFilterModelKey",
|
|
22099
|
+
"type": {
|
|
22100
|
+
"text": "string"
|
|
22101
|
+
}
|
|
22102
|
+
},
|
|
22103
|
+
{
|
|
22104
|
+
"name": "filterModel",
|
|
22105
|
+
"type": {
|
|
22106
|
+
"text": "{ [key: string]: any }"
|
|
22107
|
+
}
|
|
22108
|
+
}
|
|
22109
|
+
]
|
|
22060
22110
|
},
|
|
22061
22111
|
{
|
|
22062
22112
|
"kind": "method",
|
|
22063
|
-
"name": "
|
|
22113
|
+
"name": "getRowAlertPreferences",
|
|
22064
22114
|
"return": {
|
|
22065
22115
|
"type": {
|
|
22066
|
-
"text": "
|
|
22116
|
+
"text": "Promise<Partial<RowAlertPreferences>>"
|
|
22067
22117
|
}
|
|
22068
|
-
}
|
|
22118
|
+
},
|
|
22119
|
+
"parameters": [
|
|
22120
|
+
{
|
|
22121
|
+
"name": "persistRowAlertKey",
|
|
22122
|
+
"type": {
|
|
22123
|
+
"text": "string"
|
|
22124
|
+
}
|
|
22125
|
+
}
|
|
22126
|
+
]
|
|
22069
22127
|
},
|
|
22070
22128
|
{
|
|
22071
22129
|
"kind": "method",
|
|
22072
|
-
"name": "
|
|
22130
|
+
"name": "saveRowAlertPreferences",
|
|
22131
|
+
"return": {
|
|
22132
|
+
"type": {
|
|
22133
|
+
"text": "Promise<void>"
|
|
22134
|
+
}
|
|
22135
|
+
},
|
|
22136
|
+
"parameters": [
|
|
22137
|
+
{
|
|
22138
|
+
"name": "persistRowAlertKey",
|
|
22139
|
+
"type": {
|
|
22140
|
+
"text": "string"
|
|
22141
|
+
}
|
|
22142
|
+
},
|
|
22143
|
+
{
|
|
22144
|
+
"name": "preferences",
|
|
22145
|
+
"type": {
|
|
22146
|
+
"text": "RowAlertPreferences"
|
|
22147
|
+
}
|
|
22148
|
+
}
|
|
22149
|
+
]
|
|
22073
22150
|
}
|
|
22074
22151
|
]
|
|
22075
22152
|
}
|
|
@@ -22077,86 +22154,264 @@
|
|
|
22077
22154
|
"exports": [
|
|
22078
22155
|
{
|
|
22079
22156
|
"kind": "js",
|
|
22080
|
-
"name": "
|
|
22157
|
+
"name": "KVStorageStatePersistence",
|
|
22081
22158
|
"declaration": {
|
|
22082
|
-
"name": "
|
|
22083
|
-
"module": "src/
|
|
22159
|
+
"name": "KVStorageStatePersistence",
|
|
22160
|
+
"module": "src/state-persistence/kv-state.ts"
|
|
22084
22161
|
}
|
|
22085
22162
|
}
|
|
22086
22163
|
]
|
|
22087
22164
|
},
|
|
22088
22165
|
{
|
|
22089
22166
|
"kind": "javascript-module",
|
|
22090
|
-
"path": "src/
|
|
22167
|
+
"path": "src/state-persistence/local-state.ts",
|
|
22091
22168
|
"declarations": [
|
|
22092
22169
|
{
|
|
22093
22170
|
"kind": "class",
|
|
22094
|
-
"description": "
|
|
22095
|
-
"name": "
|
|
22171
|
+
"description": "Implementation for the Local Storage State Persistence interface.",
|
|
22172
|
+
"name": "LocalStorageStatePersistence",
|
|
22096
22173
|
"members": [
|
|
22097
22174
|
{
|
|
22098
22175
|
"kind": "field",
|
|
22099
|
-
"name": "
|
|
22176
|
+
"name": "session",
|
|
22100
22177
|
"type": {
|
|
22101
|
-
"text": "
|
|
22102
|
-
}
|
|
22103
|
-
"privacy": "private"
|
|
22178
|
+
"text": "Session"
|
|
22179
|
+
}
|
|
22104
22180
|
},
|
|
22105
22181
|
{
|
|
22106
|
-
"kind": "
|
|
22107
|
-
"name": "
|
|
22108
|
-
"
|
|
22109
|
-
"
|
|
22182
|
+
"kind": "method",
|
|
22183
|
+
"name": "getColumnState",
|
|
22184
|
+
"return": {
|
|
22185
|
+
"type": {
|
|
22186
|
+
"text": "Promise<ColumnState[]>"
|
|
22187
|
+
}
|
|
22110
22188
|
},
|
|
22111
|
-
"
|
|
22189
|
+
"parameters": [
|
|
22190
|
+
{
|
|
22191
|
+
"name": "persistColumnStateKey",
|
|
22192
|
+
"type": {
|
|
22193
|
+
"text": "string"
|
|
22194
|
+
}
|
|
22195
|
+
}
|
|
22196
|
+
]
|
|
22112
22197
|
},
|
|
22113
22198
|
{
|
|
22114
|
-
"kind": "
|
|
22115
|
-
"name": "
|
|
22116
|
-
"
|
|
22117
|
-
"
|
|
22199
|
+
"kind": "method",
|
|
22200
|
+
"name": "saveColumnState",
|
|
22201
|
+
"return": {
|
|
22202
|
+
"type": {
|
|
22203
|
+
"text": "Promise<void>"
|
|
22204
|
+
}
|
|
22118
22205
|
},
|
|
22119
|
-
"
|
|
22206
|
+
"parameters": [
|
|
22207
|
+
{
|
|
22208
|
+
"name": "persistColumnStateKey",
|
|
22209
|
+
"type": {
|
|
22210
|
+
"text": "string"
|
|
22211
|
+
}
|
|
22212
|
+
},
|
|
22213
|
+
{
|
|
22214
|
+
"name": "columnState",
|
|
22215
|
+
"type": {
|
|
22216
|
+
"text": "ColumnState[]"
|
|
22217
|
+
}
|
|
22218
|
+
}
|
|
22219
|
+
]
|
|
22120
22220
|
},
|
|
22121
22221
|
{
|
|
22122
|
-
"kind": "
|
|
22123
|
-
"name": "
|
|
22124
|
-
"
|
|
22125
|
-
"
|
|
22222
|
+
"kind": "method",
|
|
22223
|
+
"name": "deleteColumnState",
|
|
22224
|
+
"return": {
|
|
22225
|
+
"type": {
|
|
22226
|
+
"text": "Promise<void>"
|
|
22227
|
+
}
|
|
22126
22228
|
},
|
|
22127
|
-
"
|
|
22128
|
-
|
|
22229
|
+
"parameters": [
|
|
22230
|
+
{
|
|
22231
|
+
"name": "persistColumnStateKey",
|
|
22232
|
+
"type": {
|
|
22233
|
+
"text": "string"
|
|
22234
|
+
}
|
|
22235
|
+
}
|
|
22236
|
+
]
|
|
22129
22237
|
},
|
|
22130
22238
|
{
|
|
22131
|
-
"kind": "
|
|
22132
|
-
"name": "
|
|
22239
|
+
"kind": "method",
|
|
22240
|
+
"name": "getFilterModel",
|
|
22241
|
+
"return": {
|
|
22242
|
+
"type": {
|
|
22243
|
+
"text": "Promise<{ [key: string]: any }>"
|
|
22244
|
+
}
|
|
22245
|
+
},
|
|
22246
|
+
"parameters": [
|
|
22247
|
+
{
|
|
22248
|
+
"name": "persistFilterModelKey",
|
|
22249
|
+
"type": {
|
|
22250
|
+
"text": "string"
|
|
22251
|
+
}
|
|
22252
|
+
}
|
|
22253
|
+
]
|
|
22254
|
+
},
|
|
22255
|
+
{
|
|
22256
|
+
"kind": "method",
|
|
22257
|
+
"name": "saveFilterModel",
|
|
22258
|
+
"return": {
|
|
22259
|
+
"type": {
|
|
22260
|
+
"text": "Promise<void>"
|
|
22261
|
+
}
|
|
22262
|
+
},
|
|
22263
|
+
"parameters": [
|
|
22264
|
+
{
|
|
22265
|
+
"name": "persistFilterModelKey",
|
|
22266
|
+
"type": {
|
|
22267
|
+
"text": "string"
|
|
22268
|
+
}
|
|
22269
|
+
},
|
|
22270
|
+
{
|
|
22271
|
+
"name": "filterModel",
|
|
22272
|
+
"type": {
|
|
22273
|
+
"text": "{ [key: string]: any }"
|
|
22274
|
+
}
|
|
22275
|
+
}
|
|
22276
|
+
]
|
|
22277
|
+
},
|
|
22278
|
+
{
|
|
22279
|
+
"kind": "method",
|
|
22280
|
+
"name": "getRowAlertPreferences",
|
|
22281
|
+
"return": {
|
|
22282
|
+
"type": {
|
|
22283
|
+
"text": "Promise<Partial<RowAlertPreferences>>"
|
|
22284
|
+
}
|
|
22285
|
+
},
|
|
22286
|
+
"parameters": [
|
|
22287
|
+
{
|
|
22288
|
+
"name": "persistRowAlertKey",
|
|
22289
|
+
"type": {
|
|
22290
|
+
"text": "string"
|
|
22291
|
+
}
|
|
22292
|
+
}
|
|
22293
|
+
]
|
|
22294
|
+
},
|
|
22295
|
+
{
|
|
22296
|
+
"kind": "method",
|
|
22297
|
+
"name": "saveRowAlertPreferences",
|
|
22298
|
+
"return": {
|
|
22299
|
+
"type": {
|
|
22300
|
+
"text": "Promise<void>"
|
|
22301
|
+
}
|
|
22302
|
+
},
|
|
22303
|
+
"parameters": [
|
|
22304
|
+
{
|
|
22305
|
+
"name": "persistRowAlertKey",
|
|
22306
|
+
"type": {
|
|
22307
|
+
"text": "string"
|
|
22308
|
+
}
|
|
22309
|
+
},
|
|
22310
|
+
{
|
|
22311
|
+
"name": "preferences",
|
|
22312
|
+
"type": {
|
|
22313
|
+
"text": "RowAlertPreferences"
|
|
22314
|
+
}
|
|
22315
|
+
}
|
|
22316
|
+
]
|
|
22317
|
+
}
|
|
22318
|
+
]
|
|
22319
|
+
}
|
|
22320
|
+
],
|
|
22321
|
+
"exports": [
|
|
22322
|
+
{
|
|
22323
|
+
"kind": "js",
|
|
22324
|
+
"name": "LocalStorageStatePersistence",
|
|
22325
|
+
"declaration": {
|
|
22326
|
+
"name": "LocalStorageStatePersistence",
|
|
22327
|
+
"module": "src/state-persistence/local-state.ts"
|
|
22328
|
+
}
|
|
22329
|
+
}
|
|
22330
|
+
]
|
|
22331
|
+
},
|
|
22332
|
+
{
|
|
22333
|
+
"kind": "javascript-module",
|
|
22334
|
+
"path": "src/state-persistence/state-persistence.ts",
|
|
22335
|
+
"declarations": [],
|
|
22336
|
+
"exports": []
|
|
22337
|
+
},
|
|
22338
|
+
{
|
|
22339
|
+
"kind": "javascript-module",
|
|
22340
|
+
"path": "src/status-bar-components/index.ts",
|
|
22341
|
+
"declarations": [],
|
|
22342
|
+
"exports": [
|
|
22343
|
+
{
|
|
22344
|
+
"kind": "js",
|
|
22345
|
+
"name": "*",
|
|
22346
|
+
"declaration": {
|
|
22347
|
+
"name": "*",
|
|
22348
|
+
"package": "./load-more.status-bar"
|
|
22349
|
+
}
|
|
22350
|
+
},
|
|
22351
|
+
{
|
|
22352
|
+
"kind": "js",
|
|
22353
|
+
"name": "*",
|
|
22354
|
+
"declaration": {
|
|
22355
|
+
"name": "*",
|
|
22356
|
+
"package": "./label-value.status-bar"
|
|
22357
|
+
}
|
|
22358
|
+
},
|
|
22359
|
+
{
|
|
22360
|
+
"kind": "js",
|
|
22361
|
+
"name": "*",
|
|
22362
|
+
"declaration": {
|
|
22363
|
+
"name": "*",
|
|
22364
|
+
"package": "./reload.status-bar"
|
|
22365
|
+
}
|
|
22366
|
+
},
|
|
22367
|
+
{
|
|
22368
|
+
"kind": "js",
|
|
22369
|
+
"name": "*",
|
|
22370
|
+
"declaration": {
|
|
22371
|
+
"name": "*",
|
|
22372
|
+
"package": "./row-count.status-bar"
|
|
22373
|
+
}
|
|
22374
|
+
}
|
|
22375
|
+
]
|
|
22376
|
+
},
|
|
22377
|
+
{
|
|
22378
|
+
"kind": "javascript-module",
|
|
22379
|
+
"path": "src/status-bar-components/label-value.status-bar.ts",
|
|
22380
|
+
"declarations": [
|
|
22381
|
+
{
|
|
22382
|
+
"kind": "class",
|
|
22383
|
+
"description": "Label Value Status Bar Component",
|
|
22384
|
+
"name": "LabelValueStatusBarComponent",
|
|
22385
|
+
"members": [
|
|
22386
|
+
{
|
|
22387
|
+
"kind": "field",
|
|
22388
|
+
"name": "element",
|
|
22133
22389
|
"type": {
|
|
22134
|
-
"text": "
|
|
22390
|
+
"text": "HTMLElement"
|
|
22135
22391
|
},
|
|
22136
22392
|
"privacy": "private"
|
|
22137
22393
|
},
|
|
22138
22394
|
{
|
|
22139
22395
|
"kind": "field",
|
|
22140
|
-
"name": "
|
|
22396
|
+
"name": "labelElement",
|
|
22141
22397
|
"type": {
|
|
22142
|
-
"text": "
|
|
22398
|
+
"text": "HTMLElement"
|
|
22143
22399
|
},
|
|
22144
22400
|
"privacy": "private"
|
|
22145
22401
|
},
|
|
22146
22402
|
{
|
|
22147
22403
|
"kind": "field",
|
|
22148
|
-
"name": "
|
|
22404
|
+
"name": "valueElement",
|
|
22149
22405
|
"type": {
|
|
22150
|
-
"text": "
|
|
22406
|
+
"text": "HTMLElement"
|
|
22151
22407
|
},
|
|
22152
|
-
"privacy": "private"
|
|
22153
|
-
"default": "false"
|
|
22408
|
+
"privacy": "private"
|
|
22154
22409
|
},
|
|
22155
22410
|
{
|
|
22156
22411
|
"kind": "field",
|
|
22157
|
-
"name": "
|
|
22412
|
+
"name": "currentParams",
|
|
22158
22413
|
"type": {
|
|
22159
|
-
"text": "
|
|
22414
|
+
"text": "LabelValueStatusBarParams"
|
|
22160
22415
|
},
|
|
22161
22416
|
"privacy": "private"
|
|
22162
22417
|
},
|
|
@@ -22174,29 +22429,7 @@
|
|
|
22174
22429
|
},
|
|
22175
22430
|
{
|
|
22176
22431
|
"kind": "method",
|
|
22177
|
-
"name": "
|
|
22178
|
-
"privacy": "private"
|
|
22179
|
-
},
|
|
22180
|
-
{
|
|
22181
|
-
"kind": "method",
|
|
22182
|
-
"name": "createLoadMoreButton",
|
|
22183
|
-
"privacy": "private"
|
|
22184
|
-
},
|
|
22185
|
-
{
|
|
22186
|
-
"kind": "method",
|
|
22187
|
-
"name": "updateAriaLabel",
|
|
22188
|
-
"privacy": "private",
|
|
22189
|
-
"return": {
|
|
22190
|
-
"type": {
|
|
22191
|
-
"text": "void"
|
|
22192
|
-
}
|
|
22193
|
-
},
|
|
22194
|
-
"description": "Update the aria-label based on current state and tooltip"
|
|
22195
|
-
},
|
|
22196
|
-
{
|
|
22197
|
-
"kind": "method",
|
|
22198
|
-
"name": "showLoading",
|
|
22199
|
-
"privacy": "private",
|
|
22432
|
+
"name": "updateParams",
|
|
22200
22433
|
"return": {
|
|
22201
22434
|
"type": {
|
|
22202
22435
|
"text": "void"
|
|
@@ -22204,31 +22437,22 @@
|
|
|
22204
22437
|
},
|
|
22205
22438
|
"parameters": [
|
|
22206
22439
|
{
|
|
22207
|
-
"name": "
|
|
22440
|
+
"name": "params",
|
|
22208
22441
|
"type": {
|
|
22209
|
-
"text": "
|
|
22442
|
+
"text": "Partial<LabelValueStatusBarParams>"
|
|
22210
22443
|
}
|
|
22211
22444
|
}
|
|
22212
|
-
]
|
|
22213
|
-
"description": "Show or hide the loading state"
|
|
22214
|
-
},
|
|
22215
|
-
{
|
|
22216
|
-
"kind": "method",
|
|
22217
|
-
"name": "updateButtonVisibility",
|
|
22218
|
-
"privacy": "public"
|
|
22445
|
+
]
|
|
22219
22446
|
},
|
|
22220
22447
|
{
|
|
22221
22448
|
"kind": "method",
|
|
22222
|
-
"name": "
|
|
22223
|
-
"privacy": "
|
|
22224
|
-
"
|
|
22225
|
-
{
|
|
22226
|
-
"
|
|
22227
|
-
"type": {
|
|
22228
|
-
"text": "LoadMoreStatusBarParams"
|
|
22229
|
-
}
|
|
22449
|
+
"name": "updateDisplay",
|
|
22450
|
+
"privacy": "private",
|
|
22451
|
+
"return": {
|
|
22452
|
+
"type": {
|
|
22453
|
+
"text": "void"
|
|
22230
22454
|
}
|
|
22231
|
-
|
|
22455
|
+
}
|
|
22232
22456
|
},
|
|
22233
22457
|
{
|
|
22234
22458
|
"kind": "method",
|
|
@@ -22249,22 +22473,22 @@
|
|
|
22249
22473
|
"exports": [
|
|
22250
22474
|
{
|
|
22251
22475
|
"kind": "js",
|
|
22252
|
-
"name": "
|
|
22476
|
+
"name": "LabelValueStatusBarComponent",
|
|
22253
22477
|
"declaration": {
|
|
22254
|
-
"name": "
|
|
22255
|
-
"module": "src/status-bar-components/
|
|
22478
|
+
"name": "LabelValueStatusBarComponent",
|
|
22479
|
+
"module": "src/status-bar-components/label-value.status-bar.ts"
|
|
22256
22480
|
}
|
|
22257
22481
|
}
|
|
22258
22482
|
]
|
|
22259
22483
|
},
|
|
22260
22484
|
{
|
|
22261
22485
|
"kind": "javascript-module",
|
|
22262
|
-
"path": "src/status-bar-components/
|
|
22486
|
+
"path": "src/status-bar-components/load-more.status-bar.ts",
|
|
22263
22487
|
"declarations": [
|
|
22264
22488
|
{
|
|
22265
22489
|
"kind": "class",
|
|
22266
|
-
"description": "A status bar component that shows a
|
|
22267
|
-
"name": "
|
|
22490
|
+
"description": "A status bar component that shows a \"Load More\" button when more rows are available",
|
|
22491
|
+
"name": "LoadMoreStatusBarComponent",
|
|
22268
22492
|
"members": [
|
|
22269
22493
|
{
|
|
22270
22494
|
"kind": "field",
|
|
@@ -22276,7 +22500,7 @@
|
|
|
22276
22500
|
},
|
|
22277
22501
|
{
|
|
22278
22502
|
"kind": "field",
|
|
22279
|
-
"name": "
|
|
22503
|
+
"name": "loadMoreButton",
|
|
22280
22504
|
"type": {
|
|
22281
22505
|
"text": "HTMLElement"
|
|
22282
22506
|
},
|
|
@@ -22290,11 +22514,20 @@
|
|
|
22290
22514
|
},
|
|
22291
22515
|
"privacy": "private"
|
|
22292
22516
|
},
|
|
22517
|
+
{
|
|
22518
|
+
"kind": "field",
|
|
22519
|
+
"name": "buttonLabel",
|
|
22520
|
+
"type": {
|
|
22521
|
+
"text": "string"
|
|
22522
|
+
},
|
|
22523
|
+
"privacy": "private",
|
|
22524
|
+
"default": "'Load More'"
|
|
22525
|
+
},
|
|
22293
22526
|
{
|
|
22294
22527
|
"kind": "field",
|
|
22295
22528
|
"name": "params",
|
|
22296
22529
|
"type": {
|
|
22297
|
-
"text": "
|
|
22530
|
+
"text": "LoadMoreStatusBarParams"
|
|
22298
22531
|
},
|
|
22299
22532
|
"privacy": "private"
|
|
22300
22533
|
},
|
|
@@ -22308,7 +22541,7 @@
|
|
|
22308
22541
|
},
|
|
22309
22542
|
{
|
|
22310
22543
|
"kind": "field",
|
|
22311
|
-
"name": "
|
|
22544
|
+
"name": "isLoading",
|
|
22312
22545
|
"type": {
|
|
22313
22546
|
"text": "boolean"
|
|
22314
22547
|
},
|
|
@@ -22317,23 +22550,7 @@
|
|
|
22317
22550
|
},
|
|
22318
22551
|
{
|
|
22319
22552
|
"kind": "field",
|
|
22320
|
-
"name": "
|
|
22321
|
-
"type": {
|
|
22322
|
-
"text": "(event: MouseEvent) => void"
|
|
22323
|
-
},
|
|
22324
|
-
"privacy": "private"
|
|
22325
|
-
},
|
|
22326
|
-
{
|
|
22327
|
-
"kind": "field",
|
|
22328
|
-
"name": "mouseoutHandler",
|
|
22329
|
-
"type": {
|
|
22330
|
-
"text": "(event: MouseEvent) => void"
|
|
22331
|
-
},
|
|
22332
|
-
"privacy": "private"
|
|
22333
|
-
},
|
|
22334
|
-
{
|
|
22335
|
-
"kind": "field",
|
|
22336
|
-
"name": "clickHandler",
|
|
22553
|
+
"name": "clickHandler",
|
|
22337
22554
|
"type": {
|
|
22338
22555
|
"text": "(event: MouseEvent) => void"
|
|
22339
22556
|
},
|
|
@@ -22358,12 +22575,23 @@
|
|
|
22358
22575
|
},
|
|
22359
22576
|
{
|
|
22360
22577
|
"kind": "method",
|
|
22361
|
-
"name": "
|
|
22578
|
+
"name": "createLoadMoreButton",
|
|
22362
22579
|
"privacy": "private"
|
|
22363
22580
|
},
|
|
22364
22581
|
{
|
|
22365
22582
|
"kind": "method",
|
|
22366
|
-
"name": "
|
|
22583
|
+
"name": "updateAriaLabel",
|
|
22584
|
+
"privacy": "private",
|
|
22585
|
+
"return": {
|
|
22586
|
+
"type": {
|
|
22587
|
+
"text": "void"
|
|
22588
|
+
}
|
|
22589
|
+
},
|
|
22590
|
+
"description": "Update the aria-label based on current state and tooltip"
|
|
22591
|
+
},
|
|
22592
|
+
{
|
|
22593
|
+
"kind": "method",
|
|
22594
|
+
"name": "showLoading",
|
|
22367
22595
|
"privacy": "private",
|
|
22368
22596
|
"return": {
|
|
22369
22597
|
"type": {
|
|
@@ -22372,13 +22600,18 @@
|
|
|
22372
22600
|
},
|
|
22373
22601
|
"parameters": [
|
|
22374
22602
|
{
|
|
22375
|
-
"name": "
|
|
22603
|
+
"name": "loading",
|
|
22376
22604
|
"type": {
|
|
22377
22605
|
"text": "boolean"
|
|
22378
22606
|
}
|
|
22379
22607
|
}
|
|
22380
22608
|
],
|
|
22381
|
-
"description": "Show or hide the
|
|
22609
|
+
"description": "Show or hide the loading state"
|
|
22610
|
+
},
|
|
22611
|
+
{
|
|
22612
|
+
"kind": "method",
|
|
22613
|
+
"name": "updateButtonVisibility",
|
|
22614
|
+
"privacy": "public"
|
|
22382
22615
|
},
|
|
22383
22616
|
{
|
|
22384
22617
|
"kind": "method",
|
|
@@ -22388,7 +22621,7 @@
|
|
|
22388
22621
|
{
|
|
22389
22622
|
"name": "params",
|
|
22390
22623
|
"type": {
|
|
22391
|
-
"text": "
|
|
22624
|
+
"text": "LoadMoreStatusBarParams"
|
|
22392
22625
|
}
|
|
22393
22626
|
}
|
|
22394
22627
|
]
|
|
@@ -22412,22 +22645,22 @@
|
|
|
22412
22645
|
"exports": [
|
|
22413
22646
|
{
|
|
22414
22647
|
"kind": "js",
|
|
22415
|
-
"name": "
|
|
22648
|
+
"name": "LoadMoreStatusBarComponent",
|
|
22416
22649
|
"declaration": {
|
|
22417
|
-
"name": "
|
|
22418
|
-
"module": "src/status-bar-components/
|
|
22650
|
+
"name": "LoadMoreStatusBarComponent",
|
|
22651
|
+
"module": "src/status-bar-components/load-more.status-bar.ts"
|
|
22419
22652
|
}
|
|
22420
22653
|
}
|
|
22421
22654
|
]
|
|
22422
22655
|
},
|
|
22423
22656
|
{
|
|
22424
22657
|
"kind": "javascript-module",
|
|
22425
|
-
"path": "src/status-bar-components/
|
|
22658
|
+
"path": "src/status-bar-components/reload.status-bar.ts",
|
|
22426
22659
|
"declarations": [
|
|
22427
22660
|
{
|
|
22428
22661
|
"kind": "class",
|
|
22429
|
-
"description": "
|
|
22430
|
-
"name": "
|
|
22662
|
+
"description": "A status bar component that shows a refresh icon to reload the grid data",
|
|
22663
|
+
"name": "ReloadStatusBarComponent",
|
|
22431
22664
|
"members": [
|
|
22432
22665
|
{
|
|
22433
22666
|
"kind": "field",
|
|
@@ -22439,15 +22672,15 @@
|
|
|
22439
22672
|
},
|
|
22440
22673
|
{
|
|
22441
22674
|
"kind": "field",
|
|
22442
|
-
"name": "
|
|
22675
|
+
"name": "refreshIcon",
|
|
22443
22676
|
"type": {
|
|
22444
|
-
"text": "
|
|
22677
|
+
"text": "HTMLElement"
|
|
22445
22678
|
},
|
|
22446
22679
|
"privacy": "private"
|
|
22447
22680
|
},
|
|
22448
22681
|
{
|
|
22449
22682
|
"kind": "field",
|
|
22450
|
-
"name": "
|
|
22683
|
+
"name": "progressRing",
|
|
22451
22684
|
"type": {
|
|
22452
22685
|
"text": "HTMLElement"
|
|
22453
22686
|
},
|
|
@@ -22455,269 +22688,119 @@
|
|
|
22455
22688
|
},
|
|
22456
22689
|
{
|
|
22457
22690
|
"kind": "field",
|
|
22458
|
-
"name": "
|
|
22691
|
+
"name": "params",
|
|
22459
22692
|
"type": {
|
|
22460
|
-
"text": "
|
|
22693
|
+
"text": "ReloadStatusBarParams"
|
|
22461
22694
|
},
|
|
22462
22695
|
"privacy": "private"
|
|
22463
22696
|
},
|
|
22464
22697
|
{
|
|
22465
|
-
"kind": "
|
|
22466
|
-
"name": "
|
|
22467
|
-
"
|
|
22468
|
-
|
|
22469
|
-
|
|
22470
|
-
|
|
22471
|
-
"text": "IStatusPanelParams"
|
|
22472
|
-
}
|
|
22473
|
-
}
|
|
22474
|
-
]
|
|
22698
|
+
"kind": "field",
|
|
22699
|
+
"name": "designSystemPrefix",
|
|
22700
|
+
"type": {
|
|
22701
|
+
"text": "string"
|
|
22702
|
+
},
|
|
22703
|
+
"privacy": "private"
|
|
22475
22704
|
},
|
|
22476
22705
|
{
|
|
22477
|
-
"kind": "
|
|
22478
|
-
"name": "
|
|
22706
|
+
"kind": "field",
|
|
22707
|
+
"name": "isReloading",
|
|
22708
|
+
"type": {
|
|
22709
|
+
"text": "boolean"
|
|
22710
|
+
},
|
|
22479
22711
|
"privacy": "private",
|
|
22480
|
-
"
|
|
22481
|
-
"type": {
|
|
22482
|
-
"text": "void"
|
|
22483
|
-
}
|
|
22484
|
-
}
|
|
22485
|
-
},
|
|
22486
|
-
{
|
|
22487
|
-
"kind": "method",
|
|
22488
|
-
"name": "getGui",
|
|
22489
|
-
"return": {
|
|
22490
|
-
"type": {
|
|
22491
|
-
"text": "HTMLElement"
|
|
22492
|
-
}
|
|
22493
|
-
}
|
|
22712
|
+
"default": "false"
|
|
22494
22713
|
},
|
|
22495
|
-
{
|
|
22496
|
-
"kind": "method",
|
|
22497
|
-
"name": "destroy"
|
|
22498
|
-
}
|
|
22499
|
-
]
|
|
22500
|
-
}
|
|
22501
|
-
],
|
|
22502
|
-
"exports": [
|
|
22503
|
-
{
|
|
22504
|
-
"kind": "js",
|
|
22505
|
-
"name": "RowCountStatusBarComponent",
|
|
22506
|
-
"declaration": {
|
|
22507
|
-
"name": "RowCountStatusBarComponent",
|
|
22508
|
-
"module": "src/status-bar-components/row-count.status-bar.ts"
|
|
22509
|
-
}
|
|
22510
|
-
}
|
|
22511
|
-
]
|
|
22512
|
-
},
|
|
22513
|
-
{
|
|
22514
|
-
"kind": "javascript-module",
|
|
22515
|
-
"path": "src/state-persistence/index.ts",
|
|
22516
|
-
"declarations": [],
|
|
22517
|
-
"exports": [
|
|
22518
|
-
{
|
|
22519
|
-
"kind": "js",
|
|
22520
|
-
"name": "*",
|
|
22521
|
-
"declaration": {
|
|
22522
|
-
"name": "*",
|
|
22523
|
-
"package": "./kv-state"
|
|
22524
|
-
}
|
|
22525
|
-
},
|
|
22526
|
-
{
|
|
22527
|
-
"kind": "js",
|
|
22528
|
-
"name": "*",
|
|
22529
|
-
"declaration": {
|
|
22530
|
-
"name": "*",
|
|
22531
|
-
"package": "./local-state"
|
|
22532
|
-
}
|
|
22533
|
-
},
|
|
22534
|
-
{
|
|
22535
|
-
"kind": "js",
|
|
22536
|
-
"name": "*",
|
|
22537
|
-
"declaration": {
|
|
22538
|
-
"name": "*",
|
|
22539
|
-
"package": "./state-persistence"
|
|
22540
|
-
}
|
|
22541
|
-
}
|
|
22542
|
-
]
|
|
22543
|
-
},
|
|
22544
|
-
{
|
|
22545
|
-
"kind": "javascript-module",
|
|
22546
|
-
"path": "src/state-persistence/kv-state.ts",
|
|
22547
|
-
"declarations": [
|
|
22548
|
-
{
|
|
22549
|
-
"kind": "class",
|
|
22550
|
-
"description": "Implementation for the KV Storage State Persistence interface.",
|
|
22551
|
-
"name": "KVStorageStatePersistence",
|
|
22552
|
-
"members": [
|
|
22553
22714
|
{
|
|
22554
22715
|
"kind": "field",
|
|
22555
|
-
"name": "
|
|
22716
|
+
"name": "mouseoverHandler",
|
|
22556
22717
|
"type": {
|
|
22557
|
-
"text": "
|
|
22558
|
-
}
|
|
22718
|
+
"text": "(event: MouseEvent) => void"
|
|
22719
|
+
},
|
|
22720
|
+
"privacy": "private"
|
|
22559
22721
|
},
|
|
22560
22722
|
{
|
|
22561
22723
|
"kind": "field",
|
|
22562
|
-
"name": "
|
|
22724
|
+
"name": "mouseoutHandler",
|
|
22563
22725
|
"type": {
|
|
22564
|
-
"text": "
|
|
22565
|
-
}
|
|
22726
|
+
"text": "(event: MouseEvent) => void"
|
|
22727
|
+
},
|
|
22728
|
+
"privacy": "private"
|
|
22566
22729
|
},
|
|
22567
22730
|
{
|
|
22568
|
-
"kind": "
|
|
22569
|
-
"name": "
|
|
22570
|
-
"
|
|
22571
|
-
"
|
|
22572
|
-
"text": "Promise<ColumnState[]>"
|
|
22573
|
-
}
|
|
22731
|
+
"kind": "field",
|
|
22732
|
+
"name": "clickHandler",
|
|
22733
|
+
"type": {
|
|
22734
|
+
"text": "(event: MouseEvent) => void"
|
|
22574
22735
|
},
|
|
22575
|
-
"
|
|
22576
|
-
{
|
|
22577
|
-
"name": "persistColumnStateKey",
|
|
22578
|
-
"type": {
|
|
22579
|
-
"text": "string"
|
|
22580
|
-
}
|
|
22581
|
-
}
|
|
22582
|
-
]
|
|
22736
|
+
"privacy": "private"
|
|
22583
22737
|
},
|
|
22584
22738
|
{
|
|
22585
22739
|
"kind": "method",
|
|
22586
|
-
"name": "
|
|
22587
|
-
"return": {
|
|
22588
|
-
"type": {
|
|
22589
|
-
"text": "Promise<void>"
|
|
22590
|
-
}
|
|
22591
|
-
},
|
|
22740
|
+
"name": "init",
|
|
22592
22741
|
"parameters": [
|
|
22593
22742
|
{
|
|
22594
|
-
"name": "
|
|
22595
|
-
"type": {
|
|
22596
|
-
"text": "string"
|
|
22597
|
-
}
|
|
22598
|
-
},
|
|
22599
|
-
{
|
|
22600
|
-
"name": "columnState",
|
|
22743
|
+
"name": "params",
|
|
22601
22744
|
"type": {
|
|
22602
|
-
"text": "
|
|
22745
|
+
"text": "IStatusPanelParams"
|
|
22603
22746
|
}
|
|
22604
22747
|
}
|
|
22605
22748
|
]
|
|
22606
22749
|
},
|
|
22607
22750
|
{
|
|
22608
22751
|
"kind": "method",
|
|
22609
|
-
"name": "
|
|
22610
|
-
"
|
|
22611
|
-
"type": {
|
|
22612
|
-
"text": "Promise<void>"
|
|
22613
|
-
}
|
|
22614
|
-
},
|
|
22615
|
-
"parameters": [
|
|
22616
|
-
{
|
|
22617
|
-
"name": "persistColumnStateKey",
|
|
22618
|
-
"type": {
|
|
22619
|
-
"text": "string"
|
|
22620
|
-
}
|
|
22621
|
-
}
|
|
22622
|
-
]
|
|
22752
|
+
"name": "createProgressRing",
|
|
22753
|
+
"privacy": "private"
|
|
22623
22754
|
},
|
|
22624
22755
|
{
|
|
22625
22756
|
"kind": "method",
|
|
22626
|
-
"name": "
|
|
22627
|
-
"privacy": "private"
|
|
22628
|
-
"return": {
|
|
22629
|
-
"type": {
|
|
22630
|
-
"text": "Promise<void>"
|
|
22631
|
-
}
|
|
22632
|
-
},
|
|
22633
|
-
"parameters": [
|
|
22634
|
-
{
|
|
22635
|
-
"name": "persistColumnStateKey",
|
|
22636
|
-
"type": {
|
|
22637
|
-
"text": "string"
|
|
22638
|
-
}
|
|
22639
|
-
}
|
|
22640
|
-
]
|
|
22757
|
+
"name": "createRefreshIcon",
|
|
22758
|
+
"privacy": "private"
|
|
22641
22759
|
},
|
|
22642
22760
|
{
|
|
22643
22761
|
"kind": "method",
|
|
22644
|
-
"name": "
|
|
22762
|
+
"name": "showReloading",
|
|
22763
|
+
"privacy": "private",
|
|
22645
22764
|
"return": {
|
|
22646
22765
|
"type": {
|
|
22647
|
-
"text": "
|
|
22766
|
+
"text": "void"
|
|
22648
22767
|
}
|
|
22649
22768
|
},
|
|
22650
22769
|
"parameters": [
|
|
22651
22770
|
{
|
|
22652
|
-
"name": "
|
|
22771
|
+
"name": "reloading",
|
|
22653
22772
|
"type": {
|
|
22654
|
-
"text": "
|
|
22773
|
+
"text": "boolean"
|
|
22655
22774
|
}
|
|
22656
22775
|
}
|
|
22657
|
-
]
|
|
22776
|
+
],
|
|
22777
|
+
"description": "Show or hide the reloading state"
|
|
22658
22778
|
},
|
|
22659
22779
|
{
|
|
22660
22780
|
"kind": "method",
|
|
22661
|
-
"name": "
|
|
22662
|
-
"
|
|
22663
|
-
"type": {
|
|
22664
|
-
"text": "Promise<void>"
|
|
22665
|
-
}
|
|
22666
|
-
},
|
|
22781
|
+
"name": "updateParams",
|
|
22782
|
+
"privacy": "public",
|
|
22667
22783
|
"parameters": [
|
|
22668
22784
|
{
|
|
22669
|
-
"name": "
|
|
22670
|
-
"type": {
|
|
22671
|
-
"text": "string"
|
|
22672
|
-
}
|
|
22673
|
-
},
|
|
22674
|
-
{
|
|
22675
|
-
"name": "filterModel",
|
|
22785
|
+
"name": "params",
|
|
22676
22786
|
"type": {
|
|
22677
|
-
"text": "
|
|
22787
|
+
"text": "ReloadStatusBarParams"
|
|
22678
22788
|
}
|
|
22679
22789
|
}
|
|
22680
22790
|
]
|
|
22681
22791
|
},
|
|
22682
22792
|
{
|
|
22683
22793
|
"kind": "method",
|
|
22684
|
-
"name": "
|
|
22794
|
+
"name": "getGui",
|
|
22685
22795
|
"return": {
|
|
22686
22796
|
"type": {
|
|
22687
|
-
"text": "
|
|
22688
|
-
}
|
|
22689
|
-
},
|
|
22690
|
-
"parameters": [
|
|
22691
|
-
{
|
|
22692
|
-
"name": "persistRowAlertKey",
|
|
22693
|
-
"type": {
|
|
22694
|
-
"text": "string"
|
|
22695
|
-
}
|
|
22797
|
+
"text": "HTMLElement"
|
|
22696
22798
|
}
|
|
22697
|
-
|
|
22799
|
+
}
|
|
22698
22800
|
},
|
|
22699
22801
|
{
|
|
22700
22802
|
"kind": "method",
|
|
22701
|
-
"name": "
|
|
22702
|
-
"return": {
|
|
22703
|
-
"type": {
|
|
22704
|
-
"text": "Promise<void>"
|
|
22705
|
-
}
|
|
22706
|
-
},
|
|
22707
|
-
"parameters": [
|
|
22708
|
-
{
|
|
22709
|
-
"name": "persistRowAlertKey",
|
|
22710
|
-
"type": {
|
|
22711
|
-
"text": "string"
|
|
22712
|
-
}
|
|
22713
|
-
},
|
|
22714
|
-
{
|
|
22715
|
-
"name": "preferences",
|
|
22716
|
-
"type": {
|
|
22717
|
-
"text": "RowAlertPreferences"
|
|
22718
|
-
}
|
|
22719
|
-
}
|
|
22720
|
-
]
|
|
22803
|
+
"name": "destroy"
|
|
22721
22804
|
}
|
|
22722
22805
|
]
|
|
22723
22806
|
}
|
|
@@ -22725,166 +22808,89 @@
|
|
|
22725
22808
|
"exports": [
|
|
22726
22809
|
{
|
|
22727
22810
|
"kind": "js",
|
|
22728
|
-
"name": "
|
|
22811
|
+
"name": "ReloadStatusBarComponent",
|
|
22729
22812
|
"declaration": {
|
|
22730
|
-
"name": "
|
|
22731
|
-
"module": "src/
|
|
22813
|
+
"name": "ReloadStatusBarComponent",
|
|
22814
|
+
"module": "src/status-bar-components/reload.status-bar.ts"
|
|
22732
22815
|
}
|
|
22733
22816
|
}
|
|
22734
22817
|
]
|
|
22735
22818
|
},
|
|
22736
22819
|
{
|
|
22737
22820
|
"kind": "javascript-module",
|
|
22738
|
-
"path": "src/
|
|
22821
|
+
"path": "src/status-bar-components/row-count.status-bar.ts",
|
|
22739
22822
|
"declarations": [
|
|
22740
22823
|
{
|
|
22741
22824
|
"kind": "class",
|
|
22742
|
-
"description": "
|
|
22743
|
-
"name": "
|
|
22825
|
+
"description": "Row Count Status Bar Component for Server-Side Infinite Scroll\nDisplays current row count information for server-side grids.",
|
|
22826
|
+
"name": "RowCountStatusBarComponent",
|
|
22744
22827
|
"members": [
|
|
22745
22828
|
{
|
|
22746
22829
|
"kind": "field",
|
|
22747
|
-
"name": "
|
|
22830
|
+
"name": "element",
|
|
22748
22831
|
"type": {
|
|
22749
|
-
"text": "
|
|
22750
|
-
}
|
|
22832
|
+
"text": "HTMLElement"
|
|
22833
|
+
},
|
|
22834
|
+
"privacy": "private"
|
|
22751
22835
|
},
|
|
22752
22836
|
{
|
|
22753
|
-
"kind": "
|
|
22754
|
-
"name": "
|
|
22755
|
-
"
|
|
22756
|
-
"
|
|
22757
|
-
"text": "Promise<ColumnState[]>"
|
|
22758
|
-
}
|
|
22837
|
+
"kind": "field",
|
|
22838
|
+
"name": "api",
|
|
22839
|
+
"type": {
|
|
22840
|
+
"text": "GridApi"
|
|
22759
22841
|
},
|
|
22760
|
-
"
|
|
22761
|
-
{
|
|
22762
|
-
"name": "persistColumnStateKey",
|
|
22763
|
-
"type": {
|
|
22764
|
-
"text": "string"
|
|
22765
|
-
}
|
|
22766
|
-
}
|
|
22767
|
-
]
|
|
22842
|
+
"privacy": "private"
|
|
22768
22843
|
},
|
|
22769
22844
|
{
|
|
22770
|
-
"kind": "
|
|
22771
|
-
"name": "
|
|
22772
|
-
"
|
|
22773
|
-
"
|
|
22774
|
-
"text": "Promise<void>"
|
|
22775
|
-
}
|
|
22845
|
+
"kind": "field",
|
|
22846
|
+
"name": "rowCountDisplay",
|
|
22847
|
+
"type": {
|
|
22848
|
+
"text": "HTMLElement"
|
|
22776
22849
|
},
|
|
22777
|
-
"
|
|
22778
|
-
{
|
|
22779
|
-
"name": "persistColumnStateKey",
|
|
22780
|
-
"type": {
|
|
22781
|
-
"text": "string"
|
|
22782
|
-
}
|
|
22783
|
-
},
|
|
22784
|
-
{
|
|
22785
|
-
"name": "columnState",
|
|
22786
|
-
"type": {
|
|
22787
|
-
"text": "ColumnState[]"
|
|
22788
|
-
}
|
|
22789
|
-
}
|
|
22790
|
-
]
|
|
22850
|
+
"privacy": "private"
|
|
22791
22851
|
},
|
|
22792
22852
|
{
|
|
22793
|
-
"kind": "
|
|
22794
|
-
"name": "
|
|
22795
|
-
"
|
|
22796
|
-
"
|
|
22797
|
-
"text": "Promise<void>"
|
|
22798
|
-
}
|
|
22853
|
+
"kind": "field",
|
|
22854
|
+
"name": "modelUpdatedHandler",
|
|
22855
|
+
"type": {
|
|
22856
|
+
"text": "() => void"
|
|
22799
22857
|
},
|
|
22800
|
-
"
|
|
22801
|
-
{
|
|
22802
|
-
"name": "persistColumnStateKey",
|
|
22803
|
-
"type": {
|
|
22804
|
-
"text": "string"
|
|
22805
|
-
}
|
|
22806
|
-
}
|
|
22807
|
-
]
|
|
22858
|
+
"privacy": "private"
|
|
22808
22859
|
},
|
|
22809
22860
|
{
|
|
22810
22861
|
"kind": "method",
|
|
22811
|
-
"name": "
|
|
22812
|
-
"return": {
|
|
22813
|
-
"type": {
|
|
22814
|
-
"text": "Promise<{ [key: string]: any }>"
|
|
22815
|
-
}
|
|
22816
|
-
},
|
|
22862
|
+
"name": "init",
|
|
22817
22863
|
"parameters": [
|
|
22818
22864
|
{
|
|
22819
|
-
"name": "
|
|
22865
|
+
"name": "params",
|
|
22820
22866
|
"type": {
|
|
22821
|
-
"text": "
|
|
22867
|
+
"text": "IStatusPanelParams"
|
|
22822
22868
|
}
|
|
22823
22869
|
}
|
|
22824
22870
|
]
|
|
22825
22871
|
},
|
|
22826
22872
|
{
|
|
22827
22873
|
"kind": "method",
|
|
22828
|
-
"name": "
|
|
22874
|
+
"name": "updateDisplay",
|
|
22875
|
+
"privacy": "private",
|
|
22829
22876
|
"return": {
|
|
22830
22877
|
"type": {
|
|
22831
|
-
"text": "
|
|
22832
|
-
}
|
|
22833
|
-
},
|
|
22834
|
-
"parameters": [
|
|
22835
|
-
{
|
|
22836
|
-
"name": "persistFilterModelKey",
|
|
22837
|
-
"type": {
|
|
22838
|
-
"text": "string"
|
|
22839
|
-
}
|
|
22840
|
-
},
|
|
22841
|
-
{
|
|
22842
|
-
"name": "filterModel",
|
|
22843
|
-
"type": {
|
|
22844
|
-
"text": "{ [key: string]: any }"
|
|
22845
|
-
}
|
|
22878
|
+
"text": "void"
|
|
22846
22879
|
}
|
|
22847
|
-
|
|
22880
|
+
}
|
|
22848
22881
|
},
|
|
22849
22882
|
{
|
|
22850
22883
|
"kind": "method",
|
|
22851
|
-
"name": "
|
|
22884
|
+
"name": "getGui",
|
|
22852
22885
|
"return": {
|
|
22853
22886
|
"type": {
|
|
22854
|
-
"text": "
|
|
22855
|
-
}
|
|
22856
|
-
},
|
|
22857
|
-
"parameters": [
|
|
22858
|
-
{
|
|
22859
|
-
"name": "persistRowAlertKey",
|
|
22860
|
-
"type": {
|
|
22861
|
-
"text": "string"
|
|
22862
|
-
}
|
|
22887
|
+
"text": "HTMLElement"
|
|
22863
22888
|
}
|
|
22864
|
-
|
|
22889
|
+
}
|
|
22865
22890
|
},
|
|
22866
22891
|
{
|
|
22867
22892
|
"kind": "method",
|
|
22868
|
-
"name": "
|
|
22869
|
-
"return": {
|
|
22870
|
-
"type": {
|
|
22871
|
-
"text": "Promise<void>"
|
|
22872
|
-
}
|
|
22873
|
-
},
|
|
22874
|
-
"parameters": [
|
|
22875
|
-
{
|
|
22876
|
-
"name": "persistRowAlertKey",
|
|
22877
|
-
"type": {
|
|
22878
|
-
"text": "string"
|
|
22879
|
-
}
|
|
22880
|
-
},
|
|
22881
|
-
{
|
|
22882
|
-
"name": "preferences",
|
|
22883
|
-
"type": {
|
|
22884
|
-
"text": "RowAlertPreferences"
|
|
22885
|
-
}
|
|
22886
|
-
}
|
|
22887
|
-
]
|
|
22893
|
+
"name": "destroy"
|
|
22888
22894
|
}
|
|
22889
22895
|
]
|
|
22890
22896
|
}
|
|
@@ -22892,20 +22898,14 @@
|
|
|
22892
22898
|
"exports": [
|
|
22893
22899
|
{
|
|
22894
22900
|
"kind": "js",
|
|
22895
|
-
"name": "
|
|
22901
|
+
"name": "RowCountStatusBarComponent",
|
|
22896
22902
|
"declaration": {
|
|
22897
|
-
"name": "
|
|
22898
|
-
"module": "src/
|
|
22903
|
+
"name": "RowCountStatusBarComponent",
|
|
22904
|
+
"module": "src/status-bar-components/row-count.status-bar.ts"
|
|
22899
22905
|
}
|
|
22900
22906
|
}
|
|
22901
22907
|
]
|
|
22902
22908
|
},
|
|
22903
|
-
{
|
|
22904
|
-
"kind": "javascript-module",
|
|
22905
|
-
"path": "src/state-persistence/state-persistence.ts",
|
|
22906
|
-
"declarations": [],
|
|
22907
|
-
"exports": []
|
|
22908
|
-
},
|
|
22909
22909
|
{
|
|
22910
22910
|
"kind": "javascript-module",
|
|
22911
22911
|
"path": "src/style/colors.ts",
|