@slickgrid-universal/vanilla-bundle 2.4.0 → 2.5.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.
@@ -173,6 +173,7 @@ declare const Slicker: {
173
173
  arrayRemoveItemByIndex<T_1>(array: T_1[], index: number): T_1[];
174
174
  deepCopy(objectOrArray: any): any;
175
175
  deepMerge(target: any, ...sources: any[]): any;
176
+ objectAssignAndExtend(target: any, ...sources: any): any;
176
177
  emptyObject(obj: any): any;
177
178
  isEmptyObject(obj: any): boolean;
178
179
  isObject(item: any): boolean;
@@ -173,6 +173,7 @@ declare const Slicker: {
173
173
  arrayRemoveItemByIndex<T_1>(array: T_1[], index: number): T_1[];
174
174
  deepCopy(objectOrArray: any): any;
175
175
  deepMerge(target: any, ...sources: any[]): any;
176
+ objectAssignAndExtend(target: any, ...sources: any): any;
176
177
  emptyObject(obj: any): any;
177
178
  isEmptyObject(obj: any): boolean;
178
179
  isObject(item: any): boolean;
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@slickgrid-universal/vanilla-bundle",
3
- "version": "2.4.0",
3
+ "version": "2.5.0",
4
4
  "description": "Vanilla Slick Grid Bundle - Framework agnostic the output is to be used in vanilla JS/TS - Written in TypeScript and we also use WebPack to bundle everything into 1 JS file.",
5
5
  "main": "dist/commonjs/index.js",
6
6
  "module": "dist/esm/index.js",
7
7
  "exports": {
8
8
  ".": {
9
9
  "browser": "./dist/esm/index.js",
10
- "import": "./dist/esm/index.d.ts",
10
+ "import": "./dist/esm/index.js",
11
11
  "require": "./dist/commonjs/index.js"
12
12
  },
13
13
  "./*": "./*"
@@ -43,17 +43,17 @@
43
43
  "not dead"
44
44
  ],
45
45
  "dependencies": {
46
- "@slickgrid-universal/binding": "~2.4.0",
47
- "@slickgrid-universal/common": "~2.4.0",
48
- "@slickgrid-universal/custom-footer-component": "~2.4.0",
49
- "@slickgrid-universal/empty-warning-component": "~2.4.0",
50
- "@slickgrid-universal/event-pub-sub": "~2.4.0",
51
- "@slickgrid-universal/pagination-component": "~2.4.0",
52
- "@slickgrid-universal/utils": "~2.4.0",
46
+ "@slickgrid-universal/binding": "~2.5.0",
47
+ "@slickgrid-universal/common": "~2.5.0",
48
+ "@slickgrid-universal/custom-footer-component": "~2.5.0",
49
+ "@slickgrid-universal/empty-warning-component": "~2.5.0",
50
+ "@slickgrid-universal/event-pub-sub": "~2.5.0",
51
+ "@slickgrid-universal/pagination-component": "~2.5.0",
52
+ "@slickgrid-universal/utils": "~2.5.0",
53
53
  "dequal": "^2.0.3",
54
54
  "flatpickr": "^4.6.13",
55
55
  "jquery": "^3.6.3",
56
- "slickgrid": "^3.0.3",
56
+ "slickgrid": "^3.0.4",
57
57
  "sortablejs": "^1.15.0",
58
58
  "whatwg-fetch": "^3.6.2"
59
59
  },
@@ -61,5 +61,5 @@
61
61
  "type": "ko_fi",
62
62
  "url": "https://ko-fi.com/ghiscoding"
63
63
  },
64
- "gitHead": "6f3daed53deccc243f8e964be818849804224939"
64
+ "gitHead": "5e25aa044aab301d7246c24003386ab59e75b486"
65
65
  }