@slickgrid-universal/event-pub-sub 9.10.0 → 9.11.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.
@@ -38,7 +38,7 @@ export declare class EventPubSubService implements BasePubSubService {
38
38
  * Return is a Boolean (from the event dispatch) unless a delay is provided if so we'll return the dispatched event in a Promise with a delayed cycle
39
39
  * The delay is rarely use and is only used when we want to make sure that certain events have the time to execute
40
40
  * and we do this because most framework require a cycle before the binding is processed and binding a spinner end up showing too late
41
- * for example this is used for the following events: onBeforeFilterClear, onBeforeFilterChange, onBeforeToggleTreeCollapse, onBeforeSortChange
41
+ * for example this is used for the following events: onBeforeFilterClear, onBeforeFilterChange, onBeforeSortChange
42
42
  * @param {String} event - The event or channel to publish to.
43
43
  * @param {*} data - The data to publish on the channel.
44
44
  * @param {Number} delay - optional argument to delay the publish event
@@ -83,7 +83,7 @@ export class EventPubSubService {
83
83
  * Return is a Boolean (from the event dispatch) unless a delay is provided if so we'll return the dispatched event in a Promise with a delayed cycle
84
84
  * The delay is rarely use and is only used when we want to make sure that certain events have the time to execute
85
85
  * and we do this because most framework require a cycle before the binding is processed and binding a spinner end up showing too late
86
- * for example this is used for the following events: onBeforeFilterClear, onBeforeFilterChange, onBeforeToggleTreeCollapse, onBeforeSortChange
86
+ * for example this is used for the following events: onBeforeFilterClear, onBeforeFilterChange, onBeforeSortChange
87
87
  * @param {String} event - The event or channel to publish to.
88
88
  * @param {*} data - The data to publish on the channel.
89
89
  * @param {Number} delay - optional argument to delay the publish event
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slickgrid-universal/event-pub-sub",
3
- "version": "9.10.0",
3
+ "version": "9.11.0",
4
4
  "description": "Simple Vanilla Implementation of an Event PubSub Service to do simply publish/subscribe inter-communication while optionally providing data in the event",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -30,13 +30,8 @@
30
30
  "bugs": {
31
31
  "url": "https://github.com/ghiscoding/slickgrid-universal/issues"
32
32
  },
33
- "browserslist": [
34
- "last 2 versions",
35
- "> 1%",
36
- "not dead"
37
- ],
38
33
  "dependencies": {
39
- "@slickgrid-universal/utils": "9.10.0"
34
+ "@slickgrid-universal/utils": "9.11.0"
40
35
  },
41
- "gitHead": "350beeb8f9551a17d88533a28d3330efb8bf00a5"
36
+ "gitHead": "da43b7628f1c55f9178ec389e5c4b2b89f586599"
42
37
  }
@@ -107,7 +107,7 @@ export class EventPubSubService implements BasePubSubService {
107
107
  * Return is a Boolean (from the event dispatch) unless a delay is provided if so we'll return the dispatched event in a Promise with a delayed cycle
108
108
  * The delay is rarely use and is only used when we want to make sure that certain events have the time to execute
109
109
  * and we do this because most framework require a cycle before the binding is processed and binding a spinner end up showing too late
110
- * for example this is used for the following events: onBeforeFilterClear, onBeforeFilterChange, onBeforeToggleTreeCollapse, onBeforeSortChange
110
+ * for example this is used for the following events: onBeforeFilterClear, onBeforeFilterChange, onBeforeSortChange
111
111
  * @param {String} event - The event or channel to publish to.
112
112
  * @param {*} data - The data to publish on the channel.
113
113
  * @param {Number} delay - optional argument to delay the publish event