@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.
- package/dist/commonjs/index.d.ts +1 -0
- package/dist/esm/index.d.ts +1 -0
- package/package.json +11 -11
package/dist/commonjs/index.d.ts
CHANGED
|
@@ -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/dist/esm/index.d.ts
CHANGED
|
@@ -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.
|
|
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.
|
|
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.
|
|
47
|
-
"@slickgrid-universal/common": "~2.
|
|
48
|
-
"@slickgrid-universal/custom-footer-component": "~2.
|
|
49
|
-
"@slickgrid-universal/empty-warning-component": "~2.
|
|
50
|
-
"@slickgrid-universal/event-pub-sub": "~2.
|
|
51
|
-
"@slickgrid-universal/pagination-component": "~2.
|
|
52
|
-
"@slickgrid-universal/utils": "~2.
|
|
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.
|
|
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": "
|
|
64
|
+
"gitHead": "5e25aa044aab301d7246c24003386ab59e75b486"
|
|
65
65
|
}
|