@genesislcap/rapid-grid-pro 15.20.2-grid-pro-datasource-fix.1 → 15.21.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 +14 -29
- package/package.json +10 -10
|
@@ -685,20 +685,6 @@
|
|
|
685
685
|
"module": "src/grid-pro-beta.ts"
|
|
686
686
|
}
|
|
687
687
|
},
|
|
688
|
-
{
|
|
689
|
-
"kind": "field",
|
|
690
|
-
"name": "hasEmittedDatasourceReady",
|
|
691
|
-
"type": {
|
|
692
|
-
"text": "boolean"
|
|
693
|
-
},
|
|
694
|
-
"privacy": "private",
|
|
695
|
-
"default": "false",
|
|
696
|
-
"description": "Whether `onGridReady` has ever fired `datasourceEventNames.ready` at least once. A datasource\nthat connects (or restarts) after that point would otherwise miss the one-shot event entirely\n— see `handleInitialize`, which replays it directly to any datasource that inits late.",
|
|
697
|
-
"inheritedFrom": {
|
|
698
|
-
"name": "GridProBeta",
|
|
699
|
-
"module": "src/grid-pro-beta.ts"
|
|
700
|
-
}
|
|
701
|
-
},
|
|
702
688
|
{
|
|
703
689
|
"kind": "field",
|
|
704
690
|
"name": "rootEventsListeners",
|
|
@@ -719,7 +705,7 @@
|
|
|
719
705
|
"text": "Array<[string, EventListener]>"
|
|
720
706
|
},
|
|
721
707
|
"privacy": "private",
|
|
722
|
-
"default": "[\n [datasourceEventNames.initialize, this.handleInitialize.bind(this) as EventListener],\n [datasourceEventNames.dataLoaded, this.handleDataLoaded.bind(this) as EventListener],\n [datasourceEventNames.dataChanged, this.handleDataChanged.bind(this) as EventListener],\n [datasourceEventNames.schemaUpdated, this.handleSchemaUpdated.bind(this) as EventListener],\n [datasourceEventNames.dataCleared, this.handleDataCleared.bind(this) as EventListener],\n [datasourceEventNames.loadingStarted, this.handleLoadingStarted.bind(this) as EventListener],\n [\n datasourceEventNames.loadingFinished,\n this.handleLoadingFinished.bind(this) as EventListener,\n ],\n [\n datasourceEventNames.noDataAvailable,\n this.handleNoDataAvailable.bind(this) as EventListener,\n ],\n [\n datasourceEventNames.filtersRestored,\n this.handleFiltersRestored.bind(this) as EventListener,\n ],\n [\n datasourceEventNames.moreDataAvailable,\n this.handleMoreDataAvailable.bind(this) as EventListener,\n ],\n [datasourceEventNames.error, this.handleDatasourceError.bind(this) as EventListener],\n [datasourceEventNames.destroy, this.handleDatasourceDestroy.bind(this) as EventListener],\n [datasourceEventNames.cacheFilterConfig, this.cacheFilterConfig.bind(this) as EventListener],\n [\n datasourceEventNames.refreshServerSide,\n this.handleRefreshServerSide.bind(this) as EventListener,\n ],\n [\n datasourceEventNames.setServerSideDatasource,\n this.handleSetServerSideDatasource.bind(this) as EventListener,\n ],\n [\n datasourceEventNames.addGridCssClass,\n this.handleAddGridCssClass.bind(this) as EventListener,\n ],\n [\n datasourceEventNames.removeGridCssClass,\n this.handleRemoveGridCssClass.bind(this) as EventListener,\n ],\n [\n datasourceEventNames.applyServerSideTransaction,\n this.handleApplyServerSideTransaction.bind(this) as EventListener,\n ],\n ]",
|
|
708
|
+
"default": "[\n [datasourceEventNames.initialize, this.handleInitialize.bind(this) as EventListener],\n [datasourceEventNames.dataLoaded, this.handleDataLoaded.bind(this) as EventListener],\n [datasourceEventNames.dataChanged, this.handleDataChanged.bind(this) as EventListener],\n [datasourceEventNames.schemaUpdated, this.handleSchemaUpdated.bind(this) as EventListener],\n [datasourceEventNames.dataCleared, this.handleDataCleared.bind(this) as EventListener],\n [datasourceEventNames.loadingStarted, this.handleLoadingStarted.bind(this) as EventListener],\n [\n datasourceEventNames.loadingFinished,\n this.handleLoadingFinished.bind(this) as EventListener,\n ],\n [\n datasourceEventNames.noDataAvailable,\n this.handleNoDataAvailable.bind(this) as EventListener,\n ],\n [\n datasourceEventNames.filtersRestored,\n this.handleFiltersRestored.bind(this) as EventListener,\n ],\n [\n datasourceEventNames.moreDataAvailable,\n this.handleMoreDataAvailable.bind(this) as EventListener,\n ],\n [datasourceEventNames.error, this.handleDatasourceError.bind(this) as EventListener],\n [datasourceEventNames.destroy, this.handleDatasourceDestroy.bind(this) as EventListener],\n [datasourceEventNames.cacheFilterConfig, this.cacheFilterConfig.bind(this) as EventListener],\n [\n datasourceEventNames.refreshServerSide,\n this.handleRefreshServerSide.bind(this) as EventListener,\n ],\n [\n datasourceEventNames.setServerSideDatasource,\n this.handleSetServerSideDatasource.bind(this) as EventListener,\n ],\n [\n datasourceEventNames.addGridCssClass,\n this.handleAddGridCssClass.bind(this) as EventListener,\n ],\n [\n datasourceEventNames.removeGridCssClass,\n this.handleRemoveGridCssClass.bind(this) as EventListener,\n ],\n [\n datasourceEventNames.applyServerSideTransaction,\n this.handleApplyServerSideTransaction.bind(this) as EventListener,\n ],\n // Infinite Row Model specific events\n [\n datasourceEventNames.setInfiniteDatasource,\n this.handleSetInfiniteDatasource.bind(this) as EventListener,\n ],\n [\n datasourceEventNames.refreshInfiniteCache,\n this.handleRefreshInfiniteCache.bind(this) as EventListener,\n ],\n ]",
|
|
723
709
|
"inheritedFrom": {
|
|
724
710
|
"name": "GridProBeta",
|
|
725
711
|
"module": "src/grid-pro-beta.ts"
|
|
@@ -1211,6 +1197,19 @@
|
|
|
1211
1197
|
"module": "src/grid-pro-beta.ts"
|
|
1212
1198
|
}
|
|
1213
1199
|
},
|
|
1200
|
+
{
|
|
1201
|
+
"kind": "field",
|
|
1202
|
+
"name": "isInfiniteRowModel",
|
|
1203
|
+
"type": {
|
|
1204
|
+
"text": "boolean"
|
|
1205
|
+
},
|
|
1206
|
+
"privacy": "public",
|
|
1207
|
+
"readonly": true,
|
|
1208
|
+
"inheritedFrom": {
|
|
1209
|
+
"name": "GridProBeta",
|
|
1210
|
+
"module": "src/grid-pro-beta.ts"
|
|
1211
|
+
}
|
|
1212
|
+
},
|
|
1214
1213
|
{
|
|
1215
1214
|
"kind": "method",
|
|
1216
1215
|
"name": "setLocalGridOptions",
|
|
@@ -2657,20 +2656,6 @@
|
|
|
2657
2656
|
"module": "src/grid-pro.ts"
|
|
2658
2657
|
}
|
|
2659
2658
|
},
|
|
2660
|
-
{
|
|
2661
|
-
"kind": "field",
|
|
2662
|
-
"name": "hasEmittedDatasourceReady",
|
|
2663
|
-
"type": {
|
|
2664
|
-
"text": "boolean"
|
|
2665
|
-
},
|
|
2666
|
-
"privacy": "private",
|
|
2667
|
-
"default": "false",
|
|
2668
|
-
"description": "Whether `onGridReady` has ever fired `datasourceEventNames.ready` at least once. A datasource\nthat connects (or restarts) after that point would otherwise miss the one-shot event entirely\n— see `handleInitialize`, which replays it directly to any datasource that inits late.",
|
|
2669
|
-
"inheritedFrom": {
|
|
2670
|
-
"name": "GridPro",
|
|
2671
|
-
"module": "src/grid-pro.ts"
|
|
2672
|
-
}
|
|
2673
|
-
},
|
|
2674
2659
|
{
|
|
2675
2660
|
"kind": "field",
|
|
2676
2661
|
"name": "_filterConfig",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/rapid-grid-pro",
|
|
3
3
|
"description": "Genesis Rapid Grid Pro",
|
|
4
|
-
"version": "15.
|
|
4
|
+
"version": "15.21.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -37,17 +37,17 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@genesislcap/genx": "15.
|
|
41
|
-
"@genesislcap/rollup-builder": "15.
|
|
42
|
-
"@genesislcap/ts-builder": "15.
|
|
43
|
-
"@genesislcap/uvu-playwright-builder": "15.
|
|
44
|
-
"@genesislcap/vite-builder": "15.
|
|
45
|
-
"@genesislcap/webpack-builder": "15.
|
|
40
|
+
"@genesislcap/genx": "15.21.0",
|
|
41
|
+
"@genesislcap/rollup-builder": "15.21.0",
|
|
42
|
+
"@genesislcap/ts-builder": "15.21.0",
|
|
43
|
+
"@genesislcap/uvu-playwright-builder": "15.21.0",
|
|
44
|
+
"@genesislcap/vite-builder": "15.21.0",
|
|
45
|
+
"@genesislcap/webpack-builder": "15.21.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@genesislcap/foundation-ui": "15.
|
|
49
|
-
"@genesislcap/grid-pro": "15.
|
|
50
|
-
"@genesislcap/rapid-design-system": "15.
|
|
48
|
+
"@genesislcap/foundation-ui": "15.21.0",
|
|
49
|
+
"@genesislcap/grid-pro": "15.21.0",
|
|
50
|
+
"@genesislcap/rapid-design-system": "15.21.0",
|
|
51
51
|
"@microsoft/fast-colors": "5.3.1",
|
|
52
52
|
"@microsoft/fast-components": "2.30.6",
|
|
53
53
|
"@microsoft/fast-element": "1.14.0",
|