@slickgrid-universal/vanilla-force-bundle 5.0.1 → 5.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slickgrid-universal/vanilla-force-bundle",
3
- "version": "5.0.1",
3
+ "version": "5.1.0",
4
4
  "description": "Vanilla Slick Grid Bundle (mostly exist for our Salesforce implementation) - Similar to Vanilla Bundle, the only difference is that it adds extra packages within its bundle (CustomTooltip, CompositeEditor & TextExport)",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",
@@ -39,18 +39,18 @@
39
39
  ],
40
40
  "dependencies": {
41
41
  "@slickgrid-universal/binding": "~5.0.0",
42
- "@slickgrid-universal/common": "~5.0.1",
43
- "@slickgrid-universal/composite-editor-component": "~5.0.1",
44
- "@slickgrid-universal/custom-footer-component": "~5.0.1",
45
- "@slickgrid-universal/custom-tooltip-plugin": "~5.0.1",
46
- "@slickgrid-universal/empty-warning-component": "~5.0.1",
42
+ "@slickgrid-universal/common": "~5.1.0",
43
+ "@slickgrid-universal/composite-editor-component": "~5.1.0",
44
+ "@slickgrid-universal/custom-footer-component": "~5.1.0",
45
+ "@slickgrid-universal/custom-tooltip-plugin": "~5.1.0",
46
+ "@slickgrid-universal/empty-warning-component": "~5.1.0",
47
47
  "@slickgrid-universal/event-pub-sub": "~5.0.0",
48
- "@slickgrid-universal/excel-export": "~5.0.1",
49
- "@slickgrid-universal/pagination-component": "~5.0.1",
50
- "@slickgrid-universal/text-export": "~5.0.1",
48
+ "@slickgrid-universal/excel-export": "~5.1.0",
49
+ "@slickgrid-universal/pagination-component": "~5.1.0",
50
+ "@slickgrid-universal/text-export": "~5.1.0",
51
51
  "@slickgrid-universal/utils": "~5.0.0",
52
- "@slickgrid-universal/vanilla-bundle": "~5.0.1",
52
+ "@slickgrid-universal/vanilla-bundle": "~5.1.0",
53
53
  "whatwg-fetch": "^3.6.20"
54
54
  },
55
- "gitHead": "4affd2ca9e921166883822938f0cfae05ab2b447"
55
+ "gitHead": "dec8be36272c9111cd708a1836e1697ac81be323"
56
56
  }
@@ -126,7 +126,7 @@ export class VanillaForceGridBundle extends SlickVanillaGridBundle {
126
126
  this._registeredResources.push(this.gridService, this.gridStateService);
127
127
 
128
128
  // when using Grouping/DraggableGrouping/Colspan register its Service
129
- if (this.gridOptions.createPreHeaderPanel && !this.gridOptions.enableDraggableGrouping) {
129
+ if ((this.gridOptions.createPreHeaderPanel && this.gridOptions.createTopHeaderPanel) || (this.gridOptions.createPreHeaderPanel && !this.gridOptions.enableDraggableGrouping)) {
130
130
  this._registeredResources.push(this.groupingService);
131
131
  }
132
132