Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Commit 4904d7a

Browse files
authored
Merge pull request #952 from ghiscoding/bugfix/composite-editor-row-selection-count
fix(composite): selected row count always 0 on mass-selected, fix #951
2 parents 88fd6ee + 61fb22e commit 4904d7a

File tree

4 files changed

+112
-108
lines changed

4 files changed

+112
-108
lines changed

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@
6464
"url": "https://ko-fi.com/ghiscoding"
6565
},
6666
"dependencies": {
67-
"@slickgrid-universal/common": "1.3.0",
68-
"@slickgrid-universal/custom-footer-component": "1.3.0",
69-
"@slickgrid-universal/empty-warning-component": "1.3.0",
70-
"@slickgrid-universal/event-pub-sub": "1.3.0",
71-
"@slickgrid-universal/pagination-component": "1.3.0",
72-
"@slickgrid-universal/row-detail-view-plugin": "1.3.0",
73-
"@slickgrid-universal/rxjs-observable": "1.3.0",
67+
"@slickgrid-universal/common": "1.3.2",
68+
"@slickgrid-universal/custom-footer-component": "1.3.2",
69+
"@slickgrid-universal/empty-warning-component": "1.3.2",
70+
"@slickgrid-universal/event-pub-sub": "1.3.2",
71+
"@slickgrid-universal/pagination-component": "1.3.2",
72+
"@slickgrid-universal/row-detail-view-plugin": "1.3.2",
73+
"@slickgrid-universal/rxjs-observable": "1.3.2",
7474
"@types/dompurify": "^2.3.3",
7575
"@types/jquery": "^3.5.14",
7676
"dequal": "^2.0.2",
@@ -106,12 +106,12 @@
106106
"@ng-select/ng-select": "^9.0.2",
107107
"@ngx-translate/core": "^14.0.0",
108108
"@ngx-translate/http-loader": "^7.0.0",
109-
"@slickgrid-universal/composite-editor-component": "1.3.0",
110-
"@slickgrid-universal/custom-tooltip-plugin": "1.3.0",
111-
"@slickgrid-universal/excel-export": "1.3.0",
112-
"@slickgrid-universal/graphql": "1.3.0",
113-
"@slickgrid-universal/odata": "1.3.0",
114-
"@slickgrid-universal/text-export": "1.3.0",
109+
"@slickgrid-universal/composite-editor-component": "1.3.2",
110+
"@slickgrid-universal/custom-tooltip-plugin": "1.3.2",
111+
"@slickgrid-universal/excel-export": "1.3.2",
112+
"@slickgrid-universal/graphql": "1.3.2",
113+
"@slickgrid-universal/odata": "1.3.2",
114+
"@slickgrid-universal/text-export": "1.3.2",
115115
"@types/flatpickr": "^3.1.2",
116116
"@types/fnando__sparkline": "^0.3.4",
117117
"@types/jest": "^28.1.4",

src/app/modules/angular-slickgrid/components/angular-slickgrid.component.ts

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,7 @@ export class AngularSlickgridComponent implements AfterViewInit, OnDestroy {
306306
this.groupingService = externalServices?.groupingAndColspanService ?? new GroupingAndColspanService(this.extensionUtility, this._eventPubSubService);
307307

308308
this.serviceList = [
309+
this.containerService,
309310
this.extensionService,
310311
this.filterService,
311312
this.gridEventService,
@@ -423,6 +424,7 @@ export class AngularSlickgridComponent implements AfterViewInit, OnDestroy {
423424
this.datasetHierarchical = undefined;
424425
this._columnDefinitions = [];
425426
this._angularGridInstances = undefined;
427+
this.slickGrid = undefined as any;
426428
}
427429

428430
emptyGridContainerElm() {
@@ -556,8 +558,7 @@ export class AngularSlickgridComponent implements AfterViewInit, OnDestroy {
556558

557559
// if you don't want the items that are not visible (due to being filtered out or being on a different page)
558560
// to stay selected, pass 'false' to the second arg
559-
const selectionModel = this.slickGrid?.getSelectionModel();
560-
if (selectionModel && this.gridOptions && this.gridOptions.dataView && this.gridOptions.dataView.hasOwnProperty('syncGridSelection')) {
561+
if (this.slickGrid?.getSelectionModel() && this.gridOptions && this.gridOptions.dataView && this.gridOptions.dataView.hasOwnProperty('syncGridSelection')) {
561562
// if we are using a Backend Service, we will do an extra flag check, the reason is because it might have some unintended behaviors
562563
// with the BackendServiceApi because technically the data in the page changes the DataView on every page change.
563564
let preservedRowSelectionWithBackend = false;
@@ -884,29 +885,28 @@ export class AngularSlickgridComponent implements AfterViewInit, OnDestroy {
884885
// When data changes in the DataView, we need to refresh the metrics and/or display a warning if the dataset is empty
885886
this._eventHandler.subscribe(dataView.onRowCountChanged, () => {
886887
grid.invalidate();
887-
this.handleOnItemCountChanged(this.dataView.getFilteredItemCount() || 0, dataView.getItemCount());
888+
this.handleOnItemCountChanged(dataView.getFilteredItemCount() || 0, dataView.getItemCount() || 0);
888889
});
889890
this._eventHandler.subscribe(dataView.onSetItemsCalled, (_e, args) => {
890-
grid.invalidate();
891-
this.handleOnItemCountChanged(this.dataView.getFilteredItemCount(), args.itemCount);
891+
this.handleOnItemCountChanged(dataView.getFilteredItemCount() || 0, args.itemCount);
892892

893893
// when user has resize by content enabled, we'll force a full width calculation since we change our entire dataset
894894
if (args.itemCount > 0 && (this.gridOptions.autosizeColumnsByCellContentOnFirstLoad || this.gridOptions.enableAutoResizeColumnsByCellContent)) {
895895
this.resizerService.resizeColumnsByCellContent(!this.gridOptions?.resizeByContentOnlyOnFirstLoad);
896896
}
897897
});
898898

899-
this._eventHandler.subscribe(dataView.onRowsChanged, (_e, args) => {
900-
// filtering data with local dataset will not always show correctly unless we call this updateRow/render
901-
// also don't use "invalidateRows" since it destroys the entire row and as bad user experience when updating a row
902-
// see commit: https://github.com/ghiscoding/aurelia-slickgrid/commit/8c503a4d45fba11cbd8d8cc467fae8d177cc4f60
903-
if (gridOptions?.enableFiltering && !gridOptions.enableRowDetailView) {
899+
if (gridOptions?.enableFiltering && !gridOptions.enableRowDetailView) {
900+
this._eventHandler.subscribe(dataView.onRowsChanged, (_e, args) => {
901+
// filtering data with local dataset will not always show correctly unless we call this updateRow/render
902+
// also don't use "invalidateRows" since it destroys the entire row and as bad user experience when updating a row
903+
// see commit: https://github.com/ghiscoding/aurelia-slickgrid/commit/8c503a4d45fba11cbd8d8cc467fae8d177cc4f60
904904
if (args?.rows && Array.isArray(args.rows)) {
905905
args.rows.forEach((row: number) => grid.updateRow(row));
906906
grid.render();
907907
}
908-
}
909-
});
908+
});
909+
}
910910
}
911911
}
912912

@@ -1150,9 +1150,8 @@ export class AngularSlickgridComponent implements AfterViewInit, OnDestroy {
11501150
private loadRowSelectionPresetWhenExists() {
11511151
// if user entered some Row Selections "presets"
11521152
const presets = this.gridOptions?.presets;
1153-
const selectionModel = this.slickGrid?.getSelectionModel();
11541153
const enableRowSelection = this.gridOptions && (this.gridOptions.enableCheckboxSelector || this.gridOptions.enableRowSelection);
1155-
if (enableRowSelection && selectionModel && presets && presets.rowSelection && (Array.isArray(presets.rowSelection.gridRowIndexes) || Array.isArray(presets.rowSelection.dataContextIds))) {
1154+
if (enableRowSelection && this.slickGrid?.getSelectionModel() && presets?.rowSelection && (Array.isArray(presets.rowSelection.gridRowIndexes) || Array.isArray(presets.rowSelection.dataContextIds))) {
11561155
let dataContextIds = presets.rowSelection.dataContextIds;
11571156
let gridRowIndexes = presets.rowSelection.gridRowIndexes;
11581157

@@ -1262,7 +1261,7 @@ export class AngularSlickgridComponent implements AfterViewInit, OnDestroy {
12621261
// register all services by executing their init method and providing them with the Grid object
12631262
if (Array.isArray(this._registeredResources)) {
12641263
for (const resource of this._registeredResources) {
1265-
if (typeof resource.init === 'function') {
1264+
if (this.slickGrid && typeof resource.init === 'function') {
12661265
resource.init(this.slickGrid, this.containerService);
12671266
}
12681267
}

src/app/modules/angular-slickgrid/services/container.service.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ export class ContainerService implements UniversalContainerService {
1515
return null;
1616
}
1717

18+
dispose() {
19+
this.dependencies = [];
20+
}
21+
1822
registerInstance(key: string, instance: any) {
1923
const dependency = this.dependencies.some(dep => dep.key === key);
2024
if (!dependency) {

yarn.lock

Lines changed: 81 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -2677,20 +2677,20 @@
26772677
dependencies:
26782678
"@sinonjs/commons" "^1.7.0"
26792679

2680-
"@slickgrid-universal/[email protected].0":
2681-
version "1.3.0"
2682-
resolved "https://registry.yarnpkg.com/@slickgrid-universal/binding/-/binding-1.3.0.tgz#ec8260f7908aac082bae94917d8f5386c9a9df77"
2683-
integrity sha512-mk60dw9vhK//5AtiGgdR6nOdtFk/oqDCU9um/D77rJsax2e6JIi6l2kzMRWuzelK0iMK4+5Gv+8DSFE16twsIg==
2680+
"@slickgrid-universal/[email protected].2":
2681+
version "1.3.2"
2682+
resolved "https://registry.yarnpkg.com/@slickgrid-universal/binding/-/binding-1.3.2.tgz#8d39cafdaf671fc365202e7b4fcb3e0068412a66"
2683+
integrity sha512-vXnkBlBdBKnG6MhLdXOh7U4VV6SpHgY8RaR7urI23TwGL+HhVZ72W5A+gsojMM6WXIQAzA+0c3OgBHXZeCZNIw==
26842684
dependencies:
26852685
dompurify "^2.3.8"
26862686

2687-
"@slickgrid-universal/[email protected].0":
2688-
version "1.3.0"
2689-
resolved "https://registry.yarnpkg.com/@slickgrid-universal/common/-/common-1.3.0.tgz#7a053707e7f057bba847571715d36589ef1aabbd"
2690-
integrity sha512-pO23dm7gL0YaqrQvAaMlntbJD0xhOJpYEiNAhtSMH90beuPAFZwVJo09t4VwszUj6eGFgtiM8KZkdY0zuWXaSw==
2687+
"@slickgrid-universal/[email protected].2":
2688+
version "1.3.2"
2689+
resolved "https://registry.yarnpkg.com/@slickgrid-universal/common/-/common-1.3.2.tgz#2d04de105333b6e761b44fdfe267ab188075046d"
2690+
integrity sha512-Km85VkyImqZrPynNsbcxAGfcJlea/xjsvkiPdGw8UKtS/f7d+b50MsPJfZ9v8CFcyg0qy2y6SB8aurnFmjdiTQ==
26912691
dependencies:
2692-
"@slickgrid-universal/event-pub-sub" "1.3.0"
2693-
"@slickgrid-universal/utils" "1.3.0"
2692+
"@slickgrid-universal/event-pub-sub" "1.3.2"
2693+
"@slickgrid-universal/utils" "1.3.2"
26942694
dequal "^2.0.2"
26952695
dompurify "^2.3.8"
26962696
flatpickr "^4.6.13"
@@ -2702,105 +2702,106 @@
27022702
slickgrid "^2.4.44"
27032703
un-flatten-tree "^2.0.12"
27042704

2705-
"@slickgrid-universal/[email protected].0":
2706-
version "1.3.0"
2707-
resolved "https://registry.yarnpkg.com/@slickgrid-universal/composite-editor-component/-/composite-editor-component-1.3.0.tgz#ced9cd3aace2c266c53afc6577f5309ee726f83d"
2708-
integrity sha512-0pqzG8aQZF1x8Il26vXiE3Sswlotk1lO17aUF6LkXF66a2sd2rtv8NQRfLFhnWzfURTY/ZfKyCdbiatD/V6Kvg==
2705+
"@slickgrid-universal/[email protected].2":
2706+
version "1.3.2"
2707+
resolved "https://registry.yarnpkg.com/@slickgrid-universal/composite-editor-component/-/composite-editor-component-1.3.2.tgz#6969c39ea34d2e1659619f0358a880ccf446f41c"
2708+
integrity sha512-tj6MpVsxeAmeOLqxW9xFqXRlorIV6hGO7qQ42fTDQVAHBjY3oYOrhNOfNgcTI8FHchx26o2mc6SZFQIuTOh/qw==
27092709
dependencies:
2710-
"@slickgrid-universal/common" "1.3.0"
2711-
"@slickgrid-universal/utils" "1.3.0"
2710+
"@slickgrid-universal/common" "1.3.2"
2711+
"@slickgrid-universal/utils" "1.3.2"
27122712

2713-
"@slickgrid-universal/[email protected].0":
2714-
version "1.3.0"
2715-
resolved "https://registry.yarnpkg.com/@slickgrid-universal/custom-footer-component/-/custom-footer-component-1.3.0.tgz#591ffcbbfd1075f8f8de441c55d6d9c6fa9511f3"
2716-
integrity sha512-E270Qaw4evqe59aJJcuux1R1TlfqReVeLGW+w+fGGc7jutYzTHhqXxvXt+6z6ypp8IP9K5jnYGoY9+X/NBf9CA==
2713+
"@slickgrid-universal/[email protected].2":
2714+
version "1.3.2"
2715+
resolved "https://registry.yarnpkg.com/@slickgrid-universal/custom-footer-component/-/custom-footer-component-1.3.2.tgz#177b41a8811b08b64b0b3eccfdf625d2d51787f4"
2716+
integrity sha512-WsOn0+o63qf5Wimrx5cyqkZwYilVlFv+OCvw3JIOPADzrow3bRBVaVQb3KGhHa4bTfwbs26A7RVuFJA8y4TvDg==
27172717
dependencies:
2718-
"@slickgrid-universal/binding" "1.3.0"
2719-
"@slickgrid-universal/common" "1.3.0"
2718+
"@slickgrid-universal/binding" "1.3.2"
2719+
"@slickgrid-universal/common" "1.3.2"
2720+
moment-mini "^2.24.0"
27202721

2721-
"@slickgrid-universal/[email protected].0":
2722-
version "1.3.0"
2723-
resolved "https://registry.yarnpkg.com/@slickgrid-universal/custom-tooltip-plugin/-/custom-tooltip-plugin-1.3.0.tgz#0869269a92f5b12263a07574df3c2f25b776c696"
2724-
integrity sha512-3n5kYGILDLaOFxVCG1iQUze4IU0gT4r15iIqLGgGRlBaMwBf159mSuIqiTqeqZ5K7cU4YtPZDHxfNUQLAnR/xQ==
2722+
"@slickgrid-universal/[email protected].2":
2723+
version "1.3.2"
2724+
resolved "https://registry.yarnpkg.com/@slickgrid-universal/custom-tooltip-plugin/-/custom-tooltip-plugin-1.3.2.tgz#a78a189758146a68bfd15f6d1e6698d4e2e538d9"
2725+
integrity sha512-gocZW6I+z0XufgPk6Z2v3s3NsXfnDbOT2EXC/IaJjdOK+67zo6xHCsTWvJvcCfEX3m1B30VCl6vmECuimGbYnw==
27252726
dependencies:
2726-
"@slickgrid-universal/common" "1.3.0"
2727+
"@slickgrid-universal/common" "1.3.2"
27272728
dompurify "^2.3.8"
27282729

2729-
"@slickgrid-universal/[email protected].0":
2730-
version "1.3.0"
2731-
resolved "https://registry.yarnpkg.com/@slickgrid-universal/empty-warning-component/-/empty-warning-component-1.3.0.tgz#ed24035d12b6a45d4acaf39644c9f0d29ba70265"
2732-
integrity sha512-WZP4U650k5VuKi4RLWCIh0eUVPq7eKCmlq6ggRwElw2JpOojM5odR/iFJ7nssxvK3C3d8IKsBye3G+r82Pb+Sw==
2730+
"@slickgrid-universal/[email protected].2":
2731+
version "1.3.2"
2732+
resolved "https://registry.yarnpkg.com/@slickgrid-universal/empty-warning-component/-/empty-warning-component-1.3.2.tgz#87fce5c4b31194fe0c2fa73b9d465ea15d305a57"
2733+
integrity sha512-yy0LNjsqPNu0h+Exb2F/J9/NzYoCAtlND2geZwSwqHxFUVRIK4xUgktUC6Bi/1K6gK69/wKEM+rG2vL/5thwYQ==
27332734
dependencies:
2734-
"@slickgrid-universal/common" "1.3.0"
2735+
"@slickgrid-universal/common" "1.3.2"
27352736

2736-
"@slickgrid-universal/[email protected].0":
2737-
version "1.3.0"
2738-
resolved "https://registry.yarnpkg.com/@slickgrid-universal/event-pub-sub/-/event-pub-sub-1.3.0.tgz#c15289a19fb1992a301505bdc4b450a5d6a04eda"
2739-
integrity sha512-qFFXLcgUNUmdVwJkvFwGHu01Ow14g+AwvUzp8Gy9ZDK/QvjKsQecpRcWIQVPbzypMPigwRtclh6q538r5tbn8A==
2737+
"@slickgrid-universal/[email protected].2":
2738+
version "1.3.2"
2739+
resolved "https://registry.yarnpkg.com/@slickgrid-universal/event-pub-sub/-/event-pub-sub-1.3.2.tgz#f60af791acaa537390027183988a3a13a0dd3f89"
2740+
integrity sha512-6RNBTMIQ7UUHQTMXd64ZkybrE7ectq9WDfb01EqeidfmyKuKqnY4Er8e259PoI1gxYdSL6uFPYPjbzGEQarVMw==
27402741
dependencies:
2741-
"@slickgrid-universal/utils" "1.3.0"
2742+
"@slickgrid-universal/utils" "1.3.2"
27422743

2743-
"@slickgrid-universal/[email protected].0":
2744-
version "1.3.0"
2745-
resolved "https://registry.yarnpkg.com/@slickgrid-universal/excel-export/-/excel-export-1.3.0.tgz#7aedcd7260a0e34732ab39984314b0ed3c4eb72d"
2746-
integrity sha512-LK1d98b7K8MVlcIRq9g4u0rCrUstfJXrCcc/b1eqyjnAIVtDPJNBE5KODsvwcbmDSzWwWmqv0UOGOCWh2T0T6w==
2744+
"@slickgrid-universal/[email protected].2":
2745+
version "1.3.2"
2746+
resolved "https://registry.yarnpkg.com/@slickgrid-universal/excel-export/-/excel-export-1.3.2.tgz#002bc9db8968aca8632ded3245241aa153b0dd9b"
2747+
integrity sha512-0fAxjKJ4YlMVLxu2yRaUfBAwkCi7CV7rxM2YbEZ3m3UogYJ/jmI4rSZXA5kdAmTm0BwGuZvX7hb42ui5KH/nGQ==
27472748
dependencies:
2748-
"@slickgrid-universal/common" "1.3.0"
2749-
"@slickgrid-universal/utils" "1.3.0"
2749+
"@slickgrid-universal/common" "1.3.2"
2750+
"@slickgrid-universal/utils" "1.3.2"
27502751
excel-builder-webpacker "^2.1.7"
27512752
moment-mini "^2.24.0"
27522753

2753-
"@slickgrid-universal/[email protected].0":
2754-
version "1.3.0"
2755-
resolved "https://registry.yarnpkg.com/@slickgrid-universal/graphql/-/graphql-1.3.0.tgz#8970a993d27b1388b7791794692185991f62702a"
2756-
integrity sha512-YAEUZWmb1f+iiPIWPh9Kqis9rxve/pqsYtzEkdJTZEtm1W1q5aOjPAuay3ipwn5QReksSjePxpp1icuFJ269OQ==
2754+
"@slickgrid-universal/[email protected].2":
2755+
version "1.3.2"
2756+
resolved "https://registry.yarnpkg.com/@slickgrid-universal/graphql/-/graphql-1.3.2.tgz#543af092e88adc530e16dc1a5c9dad9239b510eb"
2757+
integrity sha512-1ttbWCLyvUcSSof8xD2wH3nGRQX4hZOX/NTJiI+zhjRMlDcfazTWrKQgKSXnQNvr38A/NlA3BLRUo5lE871d3A==
27572758
dependencies:
2758-
"@slickgrid-universal/common" "1.3.0"
2759+
"@slickgrid-universal/common" "1.3.2"
27592760

2760-
"@slickgrid-universal/[email protected].0":
2761-
version "1.3.0"
2762-
resolved "https://registry.yarnpkg.com/@slickgrid-universal/odata/-/odata-1.3.0.tgz#e2b73ffd62a2765012a2f3e7d191106490ed9d3f"
2763-
integrity sha512-MyoEgN7lVOja9CUDT+4JQAa7AJWI2Di8wruok0P/pVs1g8zeDELYifNGNPmZhd8LnZsFo/QfBoOOzfcMOa23/Q==
2761+
"@slickgrid-universal/[email protected].2":
2762+
version "1.3.2"
2763+
resolved "https://registry.yarnpkg.com/@slickgrid-universal/odata/-/odata-1.3.2.tgz#46e4be7128c0c1d4d1d51a370a11585b9b507457"
2764+
integrity sha512-k753t6sP+8h0Mel7MARTWhjBmaECJVJB9CfOhzAH7QIAM5Hns878zvQWTtmk/7Of1yEFT1mNs2jsDpNjgTnEQQ==
27642765
dependencies:
2765-
"@slickgrid-universal/common" "1.3.0"
2766-
"@slickgrid-universal/utils" "1.3.0"
2766+
"@slickgrid-universal/common" "1.3.2"
2767+
"@slickgrid-universal/utils" "1.3.2"
27672768

2768-
"@slickgrid-universal/[email protected].0":
2769-
version "1.3.0"
2770-
resolved "https://registry.yarnpkg.com/@slickgrid-universal/pagination-component/-/pagination-component-1.3.0.tgz#2f75318ad3181db0b6270b667367fe07f2779a2c"
2771-
integrity sha512-tWWQOqt+1lBtzR+mSyelzK5THpS7DRkyDabVahRqe4kFBh6nOpkl4rbbCzwXB7X1DTbZBYwfwh0dvHlq1h9m6g==
2769+
"@slickgrid-universal/[email protected].2":
2770+
version "1.3.2"
2771+
resolved "https://registry.yarnpkg.com/@slickgrid-universal/pagination-component/-/pagination-component-1.3.2.tgz#592dc2ebb9bd4d0cc0cf055e03c4971cdacb3529"
2772+
integrity sha512-GKEBzykeL9eHBHAMcgU002poPVDxLcfOc8BUbhq3KiORpP0xb/nat0LC0PF+ohbQX/uVfp1t1NZsJYKHm4amCA==
27722773
dependencies:
2773-
"@slickgrid-universal/binding" "1.3.0"
2774-
"@slickgrid-universal/common" "1.3.0"
2774+
"@slickgrid-universal/binding" "1.3.2"
2775+
"@slickgrid-universal/common" "1.3.2"
27752776

2776-
"@slickgrid-universal/[email protected].0":
2777-
version "1.3.0"
2778-
resolved "https://registry.yarnpkg.com/@slickgrid-universal/row-detail-view-plugin/-/row-detail-view-plugin-1.3.0.tgz#28936696a6e7b2ecf2c61b2baf63c24049930e74"
2779-
integrity sha512-lVwITI1wmBo2VwDMwnKon5gHZakGsBK+Dx908x6sINxrEwnGZ3owCzSCfXpdOs6wiAxEZFBFnKozGRARfQM49g==
2777+
"@slickgrid-universal/[email protected].2":
2778+
version "1.3.2"
2779+
resolved "https://registry.yarnpkg.com/@slickgrid-universal/row-detail-view-plugin/-/row-detail-view-plugin-1.3.2.tgz#d6734ad9c5c484a652fda96226b440fb5c747aae"
2780+
integrity sha512-KyMdQuHz9DB+Atd/WP8R/EyN0IYjbH4LpDCi63ZXM27CGp8ZsHmPrHZrf6EQsYW1j2TZUszFGy3Id3B1RIG1NQ==
27802781
dependencies:
2781-
"@slickgrid-universal/common" "1.3.0"
2782+
"@slickgrid-universal/common" "1.3.2"
27822783

2783-
"@slickgrid-universal/[email protected].0":
2784-
version "1.3.0"
2785-
resolved "https://registry.yarnpkg.com/@slickgrid-universal/rxjs-observable/-/rxjs-observable-1.3.0.tgz#d3791750da0bb8a685662f54a064c66675b997d4"
2786-
integrity sha512-YK3XLquK8HWSGPb2tKAw1BLFPyRnb438f22UL6joTtWFp2+7yn4JZg679O3h6WqLJRDI83V6j0h/69JdsU7O3g==
2784+
"@slickgrid-universal/[email protected].2":
2785+
version "1.3.2"
2786+
resolved "https://registry.yarnpkg.com/@slickgrid-universal/rxjs-observable/-/rxjs-observable-1.3.2.tgz#422b212e8d2509edc072e51f6ce0128b0cd24c57"
2787+
integrity sha512-OxQgLVWnplhNn24I/ifxjM2neRjWn33bIRi2XAwnQ4zumRsdUV4ehLHBzM8WkDC+oFs0G6GZu3B76IAS6u2iLw==
27872788
dependencies:
2788-
"@slickgrid-universal/common" "1.3.0"
2789+
"@slickgrid-universal/common" "1.3.2"
27892790
rxjs "^7.5.5"
27902791

2791-
"@slickgrid-universal/[email protected].0":
2792-
version "1.3.0"
2793-
resolved "https://registry.yarnpkg.com/@slickgrid-universal/text-export/-/text-export-1.3.0.tgz#66090797ee7cfd7139e42942653f33bccaf3bb1d"
2794-
integrity sha512-4+xE1kMwUjI1j6CNk0myjvUmUVEbmz6cV737t9gRJWOauovP3CHqHRmRXqHXi/HDqMoeJVeNXe9V/ZfuGeYcEw==
2792+
"@slickgrid-universal/[email protected].2":
2793+
version "1.3.2"
2794+
resolved "https://registry.yarnpkg.com/@slickgrid-universal/text-export/-/text-export-1.3.2.tgz#dcbb4a220a4660573ceec5004d7c6f83ecc96fd0"
2795+
integrity sha512-9EoYezt9C4JS7T5B8IH0AxPVYP8f38Ka7LC80lmPWajM4ClPxXqFTTHQUceX6cBwjs1BajAcWbJ2zSDmArS29Q==
27952796
dependencies:
2796-
"@slickgrid-universal/common" "1.3.0"
2797-
"@slickgrid-universal/utils" "1.3.0"
2797+
"@slickgrid-universal/common" "1.3.2"
2798+
"@slickgrid-universal/utils" "1.3.2"
27982799
text-encoding-utf-8 "^1.0.2"
27992800

2800-
"@slickgrid-universal/[email protected].0":
2801-
version "1.3.0"
2802-
resolved "https://registry.yarnpkg.com/@slickgrid-universal/utils/-/utils-1.3.0.tgz#b58697a9b2e1f32c1d6c98d58f94931e21f0c16d"
2803-
integrity sha512-M1YATK3UyulaIeXJOZPQLN9Hj2JiaWo8/pflCWTZQxEcnr85K8b/EGuB4+eHRRDEe8iaBrj2F7lc/CenEy8ZSA==
2801+
"@slickgrid-universal/[email protected].2":
2802+
version "1.3.2"
2803+
resolved "https://registry.yarnpkg.com/@slickgrid-universal/utils/-/utils-1.3.2.tgz#09c41f807f748cca4f1ecaeb1d472f8c4a288196"
2804+
integrity sha512-r/pfWXmNj3SPpr7HccIcnLH0DD9EMcxa9Usvm5OXclH6vo6OjYoCoLK+Vs3oMIUiLsriD4KoI0LAW6gG4IK+/Q==
28042805

28052806
"@tootallnate/once@1":
28062807
version "1.1.2"

0 commit comments

Comments
 (0)