angular-slickgrid 5.6.0 → 5.6.3
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/app/modules/angular-slickgrid/components/angular-slickgrid.component.d.ts +1 -0
- package/esm2020/app/modules/angular-slickgrid/components/angular-slickgrid.component.mjs +33 -14
- package/esm2020/app/modules/angular-slickgrid/modules/angular-slickgrid.module.mjs +5 -5
- package/esm2020/app/modules/angular-slickgrid/services/angularUtil.service.mjs +4 -4
- package/esm2020/app/modules/angular-slickgrid/services/container.service.mjs +4 -4
- package/esm2020/app/modules/angular-slickgrid/services/translater.service.mjs +4 -4
- package/fesm2015/angular-slickgrid.mjs +46 -26
- package/fesm2015/angular-slickgrid.mjs.map +1 -1
- package/fesm2020/angular-slickgrid.mjs +45 -26
- package/fesm2020/angular-slickgrid.mjs.map +1 -1
- package/package.json +11 -11
- package/test/cypress/node_modules/debug/README.md +27 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "angular-slickgrid",
|
|
3
|
-
"version": "5.6.
|
|
3
|
+
"version": "5.6.3",
|
|
4
4
|
"description": "Slickgrid components made available in Angular",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -30,17 +30,17 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@ngx-translate/core": ">=14.0.0",
|
|
33
|
-
"@slickgrid-universal/common": "~2.6.
|
|
34
|
-
"@slickgrid-universal/custom-footer-component": "~2.6.
|
|
35
|
-
"@slickgrid-universal/empty-warning-component": "~2.6.
|
|
36
|
-
"@slickgrid-universal/event-pub-sub": "~2.6.
|
|
37
|
-
"@slickgrid-universal/pagination-component": "~2.6.
|
|
38
|
-
"@slickgrid-universal/row-detail-view-plugin": "~2.6.
|
|
39
|
-
"@slickgrid-universal/rxjs-observable": "~2.6.
|
|
33
|
+
"@slickgrid-universal/common": "~2.6.3",
|
|
34
|
+
"@slickgrid-universal/custom-footer-component": "~2.6.3",
|
|
35
|
+
"@slickgrid-universal/empty-warning-component": "~2.6.3",
|
|
36
|
+
"@slickgrid-universal/event-pub-sub": "~2.6.2",
|
|
37
|
+
"@slickgrid-universal/pagination-component": "~2.6.3",
|
|
38
|
+
"@slickgrid-universal/row-detail-view-plugin": "~2.6.3",
|
|
39
|
+
"@slickgrid-universal/rxjs-observable": "~2.6.3",
|
|
40
40
|
"@types/jquery": "^3.5.16",
|
|
41
41
|
"dequal": "^2.0.3",
|
|
42
|
-
"dompurify": "^3.0.
|
|
43
|
-
"jquery": "^3.6.
|
|
42
|
+
"dompurify": "^3.0.1",
|
|
43
|
+
"jquery": "^3.6.4",
|
|
44
44
|
"rxjs": ">=7.5.0",
|
|
45
45
|
"sortablejs": "^1.15.0",
|
|
46
46
|
"tslib": "^2.3.0"
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"npm": ">=6.14.13"
|
|
51
51
|
},
|
|
52
52
|
"resolutions": {
|
|
53
|
-
"caniuse-lite": "1.0.
|
|
53
|
+
"caniuse-lite": "1.0.30001469"
|
|
54
54
|
},
|
|
55
55
|
"module": "fesm2015/angular-slickgrid.mjs",
|
|
56
56
|
"es2020": "fesm2020/angular-slickgrid.mjs",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# debug
|
|
2
|
-
[](https://travis-ci.org/debug-js/debug) [](https://coveralls.io/github/debug-js/debug?branch=master) [](https://visionmedia-community-slackin.now.sh/) [](#backers)
|
|
3
3
|
[](#sponsors)
|
|
4
4
|
|
|
5
5
|
<img width="647" src="https://user-images.githubusercontent.com/71256/29091486-fa38524c-7c37-11e7-895f-e7ec8e1039b6.png">
|
|
@@ -241,6 +241,9 @@ setInterval(function(){
|
|
|
241
241
|
}, 1200);
|
|
242
242
|
```
|
|
243
243
|
|
|
244
|
+
In Chromium-based web browsers (e.g. Brave, Chrome, and Electron), the JavaScript console will—by default—only show messages logged by `debug` if the "Verbose" log level is _enabled_.
|
|
245
|
+
|
|
246
|
+
<img width="647" src="https://user-images.githubusercontent.com/7143133/152083257-29034707-c42c-4959-8add-3cee850e6fcf.png">
|
|
244
247
|
|
|
245
248
|
## Output streams
|
|
246
249
|
|
|
@@ -351,12 +354,34 @@ if (debug.enabled) {
|
|
|
351
354
|
You can also manually toggle this property to force the debug instance to be
|
|
352
355
|
enabled or disabled.
|
|
353
356
|
|
|
357
|
+
## Usage in child processes
|
|
358
|
+
|
|
359
|
+
Due to the way `debug` detects if the output is a TTY or not, colors are not shown in child processes when `stderr` is piped. A solution is to pass the `DEBUG_COLORS=1` environment variable to the child process.
|
|
360
|
+
For example:
|
|
361
|
+
|
|
362
|
+
```javascript
|
|
363
|
+
worker = fork(WORKER_WRAP_PATH, [workerPath], {
|
|
364
|
+
stdio: [
|
|
365
|
+
/* stdin: */ 0,
|
|
366
|
+
/* stdout: */ 'pipe',
|
|
367
|
+
/* stderr: */ 'pipe',
|
|
368
|
+
'ipc',
|
|
369
|
+
],
|
|
370
|
+
env: Object.assign({}, process.env, {
|
|
371
|
+
DEBUG_COLORS: 1 // without this settings, colors won't be shown
|
|
372
|
+
}),
|
|
373
|
+
});
|
|
374
|
+
|
|
375
|
+
worker.stderr.pipe(process.stderr, { end: false });
|
|
376
|
+
```
|
|
377
|
+
|
|
354
378
|
|
|
355
379
|
## Authors
|
|
356
380
|
|
|
357
381
|
- TJ Holowaychuk
|
|
358
382
|
- Nathan Rajlich
|
|
359
383
|
- Andrew Rhyne
|
|
384
|
+
- Josh Junon
|
|
360
385
|
|
|
361
386
|
## Backers
|
|
362
387
|
|
|
@@ -434,6 +459,7 @@ Become a sponsor and get your logo on our README on Github with a link to your s
|
|
|
434
459
|
(The MIT License)
|
|
435
460
|
|
|
436
461
|
Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
462
|
+
Copyright (c) 2018-2021 Josh Junon
|
|
437
463
|
|
|
438
464
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
439
465
|
a copy of this software and associated documentation files (the
|