@revolist/revogrid 3.7.7 → 3.7.9
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/custom-element/revo-grid.js +1 -1
- package/dist/cjs/revo-grid_11.cjs.entry.js +1 -1
- package/dist/collection/components/revo-grid/revo-grid.js +1 -1
- package/dist/esm/revo-grid_11.entry.js +1 -1
- package/dist/esm-es5/revo-grid_11.entry.js +1 -1
- package/dist/revo-grid/revo-grid_11.entry.js +1 -1
- package/dist/revo-grid/revo-grid_11.system.entry.js +1 -1
- package/dist/types/services/column.data.provider.d.ts +1 -1
- package/dist/types/services/data.provider.d.ts +1 -1
- package/dist/types/services/dimension.provider.d.ts +1 -1
- package/dist/types/services/selection.store.connector.d.ts +13 -4
- package/package.json +1 -1
|
@@ -3469,6 +3469,7 @@ const RevoGridComponent = /*@__PURE__*/ proxyCustomElement(class extends HTMLEle
|
|
|
3469
3469
|
this.columnProvider = new ColumnDataProvider();
|
|
3470
3470
|
this.dataProvider = new DataProvider(this.dimensionProvider);
|
|
3471
3471
|
this.uuid = `${new Date().getTime()}-rvgrid`;
|
|
3472
|
+
this.selectionStoreConnector = new SelectionStoreConnector();
|
|
3472
3473
|
const pluginData = {
|
|
3473
3474
|
data: this.dataProvider,
|
|
3474
3475
|
column: this.columnProvider,
|
|
@@ -3511,7 +3512,6 @@ const RevoGridComponent = /*@__PURE__*/ proxyCustomElement(class extends HTMLEle
|
|
|
3511
3512
|
this.trimmedRowsChanged(this.trimmedRows);
|
|
3512
3513
|
this.rowDefChanged(this.rowDefinitions);
|
|
3513
3514
|
this.groupingChanged(this.grouping);
|
|
3514
|
-
this.selectionStoreConnector = new SelectionStoreConnector();
|
|
3515
3515
|
this.scrollingService = new GridScrollingService((e) => {
|
|
3516
3516
|
this.dimensionProvider.setViewPortCoordinate({
|
|
3517
3517
|
coordinate: e.coordinate,
|
|
@@ -25437,6 +25437,7 @@ const RevoGridComponent = class {
|
|
|
25437
25437
|
this.columnProvider = new ColumnDataProvider();
|
|
25438
25438
|
this.dataProvider = new DataProvider(this.dimensionProvider);
|
|
25439
25439
|
this.uuid = `${new Date().getTime()}-rvgrid`;
|
|
25440
|
+
this.selectionStoreConnector = new SelectionStoreConnector();
|
|
25440
25441
|
const pluginData = {
|
|
25441
25442
|
data: this.dataProvider,
|
|
25442
25443
|
column: this.columnProvider,
|
|
@@ -25479,7 +25480,6 @@ const RevoGridComponent = class {
|
|
|
25479
25480
|
this.trimmedRowsChanged(this.trimmedRows);
|
|
25480
25481
|
this.rowDefChanged(this.rowDefinitions);
|
|
25481
25482
|
this.groupingChanged(this.grouping);
|
|
25482
|
-
this.selectionStoreConnector = new SelectionStoreConnector();
|
|
25483
25483
|
this.scrollingService = new GridScrollingService((e) => {
|
|
25484
25484
|
this.dimensionProvider.setViewPortCoordinate({
|
|
25485
25485
|
coordinate: e.coordinate,
|
|
@@ -494,6 +494,7 @@ export class RevoGridComponent {
|
|
|
494
494
|
this.columnProvider = new ColumnDataProvider();
|
|
495
495
|
this.dataProvider = new DataProvider(this.dimensionProvider);
|
|
496
496
|
this.uuid = `${new Date().getTime()}-rvgrid`;
|
|
497
|
+
this.selectionStoreConnector = new SelectionStoreConnector();
|
|
497
498
|
const pluginData = {
|
|
498
499
|
data: this.dataProvider,
|
|
499
500
|
column: this.columnProvider,
|
|
@@ -536,7 +537,6 @@ export class RevoGridComponent {
|
|
|
536
537
|
this.trimmedRowsChanged(this.trimmedRows);
|
|
537
538
|
this.rowDefChanged(this.rowDefinitions);
|
|
538
539
|
this.groupingChanged(this.grouping);
|
|
539
|
-
this.selectionStoreConnector = new SelectionStoreConnector();
|
|
540
540
|
this.scrollingService = new GridScrollingService((e) => {
|
|
541
541
|
this.dimensionProvider.setViewPortCoordinate({
|
|
542
542
|
coordinate: e.coordinate,
|
|
@@ -25433,6 +25433,7 @@ const RevoGridComponent = class {
|
|
|
25433
25433
|
this.columnProvider = new ColumnDataProvider();
|
|
25434
25434
|
this.dataProvider = new DataProvider(this.dimensionProvider);
|
|
25435
25435
|
this.uuid = `${new Date().getTime()}-rvgrid`;
|
|
25436
|
+
this.selectionStoreConnector = new SelectionStoreConnector();
|
|
25436
25437
|
const pluginData = {
|
|
25437
25438
|
data: this.dataProvider,
|
|
25438
25439
|
column: this.columnProvider,
|
|
@@ -25475,7 +25476,6 @@ const RevoGridComponent = class {
|
|
|
25475
25476
|
this.trimmedRowsChanged(this.trimmedRows);
|
|
25476
25477
|
this.rowDefChanged(this.rowDefinitions);
|
|
25477
25478
|
this.groupingChanged(this.grouping);
|
|
25478
|
-
this.selectionStoreConnector = new SelectionStoreConnector();
|
|
25479
25479
|
this.scrollingService = new GridScrollingService((e) => {
|
|
25480
25480
|
this.dimensionProvider.setViewPortCoordinate({
|
|
25481
25481
|
coordinate: e.coordinate,
|