brilliantsole 0.0.12 → 0.0.13
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/build/brilliantsole.cjs +33 -0
- package/build/brilliantsole.cjs.map +1 -1
- package/build/brilliantsole.js +33 -0
- package/build/brilliantsole.js.map +1 -1
- package/build/brilliantsole.ls.js +33 -0
- package/build/brilliantsole.ls.js.map +1 -1
- package/build/brilliantsole.min.js +1 -1
- package/build/brilliantsole.min.js.map +1 -1
- package/build/brilliantsole.module.d.ts +6 -0
- package/build/brilliantsole.module.js +33 -0
- package/build/brilliantsole.module.js.map +1 -1
- package/build/brilliantsole.module.min.d.ts +6 -0
- package/build/brilliantsole.module.min.js +1 -1
- package/build/brilliantsole.module.min.js.map +1 -1
- package/build/brilliantsole.node.module.d.ts +6 -0
- package/build/brilliantsole.node.module.js +33 -0
- package/build/brilliantsole.node.module.js.map +1 -1
- package/build/dts/Device.d.ts +2 -0
- package/build/dts/DeviceManager.d.ts +2 -0
- package/build/dts/devicePair/DevicePair.d.ts +2 -0
- package/build/dts/utils/EventDispatcher.d.ts +2 -0
- package/build/index.d.ts +8 -0
- package/build/index.node.d.ts +8 -0
- package/package.json +1 -1
- package/src/Device.ts +6 -0
- package/src/DeviceManager.ts +6 -0
- package/src/devicePair/DevicePair.ts +6 -0
- package/src/utils/EventDispatcher.ts +18 -0
|
@@ -173,6 +173,8 @@
|
|
|
173
173
|
this.listeners = {};
|
|
174
174
|
this.addEventListener = this.addEventListener.bind(this);
|
|
175
175
|
this.removeEventListener = this.removeEventListener.bind(this);
|
|
176
|
+
this.removeEventListeners = this.removeEventListeners.bind(this);
|
|
177
|
+
this.removeAllEventListeners = this.removeAllEventListeners.bind(this);
|
|
176
178
|
this.dispatchEvent = this.dispatchEvent.bind(this);
|
|
177
179
|
this.waitForEvent = this.waitForEvent.bind(this);
|
|
178
180
|
}
|
|
@@ -224,6 +226,19 @@
|
|
|
224
226
|
});
|
|
225
227
|
this.updateEventListeners(type);
|
|
226
228
|
}
|
|
229
|
+
removeEventListeners(type) {
|
|
230
|
+
if (!this.isValidEventType(type)) {
|
|
231
|
+
throw new Error(`Invalid event type: ${type}`);
|
|
232
|
+
}
|
|
233
|
+
if (!this.listeners[type])
|
|
234
|
+
return;
|
|
235
|
+
_console$q.log(`removing "${type}" listeners...`);
|
|
236
|
+
this.listeners[type] = [];
|
|
237
|
+
}
|
|
238
|
+
removeAllEventListeners() {
|
|
239
|
+
_console$q.log(`removing listeners...`);
|
|
240
|
+
this.listeners = {};
|
|
241
|
+
}
|
|
227
242
|
dispatchEvent(type, message) {
|
|
228
243
|
if (!this.isValidEventType(type)) {
|
|
229
244
|
throw new Error(`Invalid event type: ${type}`);
|
|
@@ -3965,6 +3980,12 @@
|
|
|
3965
3980
|
get RemoveEventListener() {
|
|
3966
3981
|
return __classPrivateFieldGet(this, _DeviceManager_EventDispatcher, "f").removeEventListener;
|
|
3967
3982
|
}
|
|
3983
|
+
get RemoveEventListeners() {
|
|
3984
|
+
return __classPrivateFieldGet(this, _DeviceManager_EventDispatcher, "f").removeEventListeners;
|
|
3985
|
+
}
|
|
3986
|
+
get RemoveAllEventListeners() {
|
|
3987
|
+
return __classPrivateFieldGet(this, _DeviceManager_EventDispatcher, "f").removeAllEventListeners;
|
|
3988
|
+
}
|
|
3968
3989
|
}
|
|
3969
3990
|
_DeviceManager_boundDeviceEventListeners = new WeakMap(), _DeviceManager_ConnectedDevices = new WeakMap(), _DeviceManager_UseLocalStorage = new WeakMap(), _DeviceManager_DefaultLocalStorageConfiguration = new WeakMap(), _DeviceManager_LocalStorageConfiguration = new WeakMap(), _DeviceManager_LocalStorageKey = new WeakMap(), _DeviceManager_AvailableDevices = new WeakMap(), _DeviceManager_EventDispatcher = new WeakMap(), _DeviceManager_instances = new WeakSet(), _DeviceManager_onDeviceType = function _DeviceManager_onDeviceType(event) {
|
|
3970
3991
|
if (__classPrivateFieldGet(this, _DeviceManager_UseLocalStorage, "f")) {
|
|
@@ -4184,6 +4205,12 @@
|
|
|
4184
4205
|
get waitForEvent() {
|
|
4185
4206
|
return __classPrivateFieldGet(this, _Device_eventDispatcher, "f").waitForEvent;
|
|
4186
4207
|
}
|
|
4208
|
+
get removeEventListeners() {
|
|
4209
|
+
return __classPrivateFieldGet(this, _Device_eventDispatcher, "f").removeEventListeners;
|
|
4210
|
+
}
|
|
4211
|
+
get removeAllEventListeners() {
|
|
4212
|
+
return __classPrivateFieldGet(this, _Device_eventDispatcher, "f").removeAllEventListeners;
|
|
4213
|
+
}
|
|
4187
4214
|
get connectionManager() {
|
|
4188
4215
|
return __classPrivateFieldGet(this, _Device_connectionManager, "f");
|
|
4189
4216
|
}
|
|
@@ -4727,6 +4754,12 @@
|
|
|
4727
4754
|
get waitForEvent() {
|
|
4728
4755
|
return __classPrivateFieldGet(this, _DevicePair_eventDispatcher, "f").waitForEvent;
|
|
4729
4756
|
}
|
|
4757
|
+
get removeEventListeners() {
|
|
4758
|
+
return __classPrivateFieldGet(this, _DevicePair_eventDispatcher, "f").removeEventListeners;
|
|
4759
|
+
}
|
|
4760
|
+
get removeAllEventListeners() {
|
|
4761
|
+
return __classPrivateFieldGet(this, _DevicePair_eventDispatcher, "f").removeAllEventListeners;
|
|
4762
|
+
}
|
|
4730
4763
|
get left() {
|
|
4731
4764
|
return __classPrivateFieldGet(this, _DevicePair_left, "f");
|
|
4732
4765
|
}
|