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.
@@ -99,6 +99,8 @@ declare class EventDispatcher<Target extends any, EventType extends string, Even
99
99
  target: Target;
100
100
  message: EventMessages[T];
101
101
  }) => void): void;
102
+ removeEventListeners<T extends EventType>(type: T): void;
103
+ removeAllEventListeners(): void;
102
104
  dispatchEvent<T extends EventType>(type: T, message: EventMessages[T]): void;
103
105
  waitForEvent<T extends EventType>(type: T): Promise<{
104
106
  type: T;
@@ -569,6 +571,8 @@ declare class Device {
569
571
  target: Device;
570
572
  message: DeviceEventMessages[T];
571
573
  }>;
574
+ get removeEventListeners(): <T extends "maxFileLength" | "getFileType" | "setFileType" | "getFileLength" | "setFileLength" | "getFileChecksum" | "setFileChecksum" | "setFileTransferCommand" | "fileTransferStatus" | "getFileBlock" | "setFileBlock" | "fileBytesTransferred" | "fileTransferProgress" | "fileTransferComplete" | "fileReceived" | "pressure" | "acceleration" | "gravity" | "linearAcceleration" | "gyroscope" | "magnetometer" | "gameRotation" | "rotation" | "orientation" | "activity" | "stepCounter" | "stepDetector" | "deviceOrientation" | "barometer" | "getPressurePositions" | "getSensorScalars" | "sensorData" | "getSensorConfiguration" | "setSensorConfiguration" | "getTfliteName" | "setTfliteName" | "getTfliteTask" | "setTfliteTask" | "getTfliteSampleRate" | "setTfliteSampleRate" | "getTfliteSensorTypes" | "setTfliteSensorTypes" | "tfliteIsReady" | "getTfliteCaptureDelay" | "setTfliteCaptureDelay" | "getTfliteThreshold" | "setTfliteThreshold" | "getTfliteInferencingEnabled" | "setTfliteInferencingEnabled" | "tfliteInference" | "manufacturerName" | "modelNumber" | "softwareRevision" | "hardwareRevision" | "firmwareRevision" | "pnpId" | "serialNumber" | "deviceInformation" | "isCharging" | "getBatteryCurrent" | "getMtu" | "getId" | "getName" | "setName" | "getType" | "setType" | "getCurrentTime" | "setCurrentTime" | "notConnected" | "connecting" | "connected" | "disconnecting" | "connectionStatus" | "isConnected" | "smp" | "batteryLevel" | "rx" | "tx" | "firmwareImages" | "firmwareUploadProgress" | "firmwareStatus" | "firmwareUploadComplete" | "connectionMessage">(type: T) => void;
575
+ get removeAllEventListeners(): () => void;
572
576
  get connectionManager(): BaseConnectionManager | undefined;
573
577
  set connectionManager(newConnectionManager: BaseConnectionManager | undefined);
574
578
  private sendTxMessages;
@@ -769,6 +773,8 @@ declare class DevicePair {
769
773
  target: DevicePair;
770
774
  message: DevicePairEventMessages[T];
771
775
  }>;
776
+ get removeEventListeners(): <T extends "pressure" | "deviceOrientation" | "sensorData" | "isConnected" | "deviceConnected" | "deviceIsConnected" | "deviceMaxFileLength" | "deviceGetFileType" | "deviceGetFileLength" | "deviceGetFileChecksum" | "deviceFileTransferStatus" | "deviceGetFileBlock" | "deviceFileTransferProgress" | "deviceFileTransferComplete" | "deviceFileReceived" | "devicePressure" | "deviceAcceleration" | "deviceGravity" | "deviceLinearAcceleration" | "deviceGyroscope" | "deviceMagnetometer" | "deviceGameRotation" | "deviceRotation" | "deviceActivity" | "deviceStepCounter" | "deviceStepDetector" | "deviceDeviceOrientation" | "deviceBarometer" | "deviceSensorData" | "deviceGetSensorConfiguration" | "deviceGetTfliteName" | "deviceGetTfliteTask" | "deviceGetTfliteSampleRate" | "deviceGetTfliteSensorTypes" | "deviceTfliteIsReady" | "deviceGetTfliteCaptureDelay" | "deviceGetTfliteThreshold" | "deviceGetTfliteInferencingEnabled" | "deviceTfliteInference" | "deviceManufacturerName" | "deviceModelNumber" | "deviceSoftwareRevision" | "deviceHardwareRevision" | "deviceFirmwareRevision" | "devicePnpId" | "deviceSerialNumber" | "deviceDeviceInformation" | "deviceIsCharging" | "deviceGetBatteryCurrent" | "deviceGetMtu" | "deviceGetId" | "deviceGetName" | "deviceGetType" | "deviceGetCurrentTime" | "deviceNotConnected" | "deviceConnecting" | "deviceDisconnecting" | "deviceConnectionStatus" | "deviceSmp" | "deviceBatteryLevel" | "deviceFirmwareImages" | "deviceFirmwareUploadProgress" | "deviceFirmwareStatus" | "deviceConnectionMessage">(type: T) => void;
777
+ get removeAllEventListeners(): () => void;
772
778
  get left(): Device | undefined;
773
779
  get right(): Device | undefined;
774
780
  get isConnected(): boolean;
@@ -167,6 +167,8 @@ class EventDispatcher {
167
167
  this.listeners = {};
168
168
  this.addEventListener = this.addEventListener.bind(this);
169
169
  this.removeEventListener = this.removeEventListener.bind(this);
170
+ this.removeEventListeners = this.removeEventListeners.bind(this);
171
+ this.removeAllEventListeners = this.removeAllEventListeners.bind(this);
170
172
  this.dispatchEvent = this.dispatchEvent.bind(this);
171
173
  this.waitForEvent = this.waitForEvent.bind(this);
172
174
  }
@@ -218,6 +220,19 @@ class EventDispatcher {
218
220
  });
219
221
  this.updateEventListeners(type);
220
222
  }
223
+ removeEventListeners(type) {
224
+ if (!this.isValidEventType(type)) {
225
+ throw new Error(`Invalid event type: ${type}`);
226
+ }
227
+ if (!this.listeners[type])
228
+ return;
229
+ _console$v.log(`removing "${type}" listeners...`);
230
+ this.listeners[type] = [];
231
+ }
232
+ removeAllEventListeners() {
233
+ _console$v.log(`removing listeners...`);
234
+ this.listeners = {};
235
+ }
221
236
  dispatchEvent(type, message) {
222
237
  if (!this.isValidEventType(type)) {
223
238
  throw new Error(`Invalid event type: ${type}`);
@@ -3965,6 +3980,12 @@ class DeviceManager {
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 @@ class Device {
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 @@ class DevicePair {
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
  }