@pepperdash/mobile-control-react-app-core 1.18.0 → 1.19.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.
@@ -6,13 +6,14 @@ export * from "./useIBasicVolumeWithFeedback";
6
6
  export * from "./useIChannel";
7
7
  export * from "./useIColor";
8
8
  export * from "./useICommunicationMonitor";
9
- export * from "./useIDPad";
10
9
  export * from "./useIDeviceInfoMessenger";
10
+ export * from "./useIDPad";
11
11
  export * from './useIDspPresets';
12
12
  export * from "./useIDvr";
13
13
  export * from "./useIEssentialsRoomCombiner";
14
14
  export * from "./useIHasPowerControl";
15
15
  export * from "./useIHasSelectableItems";
16
+ export * from "./useIHumiditySensor";
16
17
  export * from "./useILevelControls";
17
18
  export * from "./useILightingScenes";
18
19
  export * from "./useIMatrixRouting";
@@ -28,6 +29,7 @@ export * from "./useIShadesOpenCloseStop";
28
29
  export * from "./useIShutdownPromptTimer";
29
30
  export * from "./useISwitchedOutput";
30
31
  export * from "./useITechPassword";
32
+ export * from "./useITemperatureSensor";
31
33
  export * from "./useITheme";
32
34
  export * from "./useITransport";
33
35
  export * from "./useMobileControlTouchpanelController";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/lib/shared/hooks/interfaces/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,eAAe,CAAC;AAC9B,cAAc,+BAA+B,CAAC;AAC9C,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,YAAY,CAAC;AAC3B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,8BAA8B,CAAC;AAC7C,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,2CAA2C,CAAC;AAC1D,cAAc,eAAe,CAAC;AAC9B,cAAc,kCAAkC,CAAC;AACjD,cAAc,yBAAyB,CAAC;AACxC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAChC,cAAc,wCAAwC,CAAC;AACvD,cAAc,wBAAwB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/lib/shared/hooks/interfaces/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,eAAe,CAAC;AAC9B,cAAc,+BAA+B,CAAC;AAC9C,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,8BAA8B,CAAC;AAC7C,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,2CAA2C,CAAC;AAC1D,cAAc,eAAe,CAAC;AAC9B,cAAc,kCAAkC,CAAC;AACjD,cAAc,yBAAyB,CAAC;AACxC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,yBAAyB,CAAC;AACxC,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAChC,cAAc,wCAAwC,CAAC;AACvD,cAAc,wBAAwB,CAAC"}
@@ -0,0 +1,11 @@
1
+ import { ITHumiditySensorState } from 'src/lib/types/state/state/IHumiditySensorState';
2
+ /**
3
+ * A hook that provides access to the humidity sensor state
4
+ * @param key the key of the temperature sensor
5
+ * @returns
6
+ */
7
+ export declare function useIHumiditySensor(key: string): IHumiditySensorReturn | undefined;
8
+ export interface IHumiditySensorReturn {
9
+ state: ITHumiditySensorState;
10
+ }
11
+ //# sourceMappingURL=useIHumiditySensor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useIHumiditySensor.d.ts","sourceRoot":"","sources":["../../../../src/lib/shared/hooks/interfaces/useIHumiditySensor.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,qBAAqB,EAAE,MAAM,gDAAgD,CAAC;AAEvF;;;;GAIG;AACH,wBAAgB,kBAAkB,CAAC,GAAG,EAAE,MAAM,GAAG,qBAAqB,GAAG,SAAS,CAMjF;AAED,MAAM,WAAW,qBAAqB;IACpC,KAAK,EAAE,qBAAqB,CAAC;CAC9B"}
@@ -0,0 +1,13 @@
1
+ import { ITemperatureSensorState } from 'src/lib/types/state/state/ITemperatureSensorState';
2
+ /**
3
+ * A hook that provides access to the temperature sensor state
4
+ * @param key the key of the temperature sensor
5
+ * @returns
6
+ */
7
+ export declare function useITemperatureSensor(key: string): ITemperatureSensorReturn | undefined;
8
+ export interface ITemperatureSensorReturn {
9
+ state: ITemperatureSensorState;
10
+ setTemperatureUnitsToCelcius: () => void;
11
+ setTemperatureUnitsToFahrenheit: () => void;
12
+ }
13
+ //# sourceMappingURL=useITemperatureSensor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useITemperatureSensor.d.ts","sourceRoot":"","sources":["../../../../src/lib/shared/hooks/interfaces/useITemperatureSensor.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,uBAAuB,EAAE,MAAM,mDAAmD,CAAC;AAE5F;;;;GAIG;AACH,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,MAAM,GAAG,wBAAwB,GAAG,SAAS,CAYvF;AAED,MAAM,WAAW,wBAAwB;IACvC,KAAK,EAAE,uBAAuB,CAAC;IAC/B,4BAA4B,EAAE,MAAM,IAAI,CAAC;IACzC,+BAA+B,EAAE,MAAM,IAAI,CAAC;CAC7C"}
@@ -0,0 +1,5 @@
1
+ import { DeviceState } from 'src/lib';
2
+ export interface ITHumiditySensorState extends DeviceState {
3
+ humidity: string;
4
+ }
5
+ //# sourceMappingURL=IHumiditySensorState.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IHumiditySensorState.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/state/state/IHumiditySensorState.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAEtC,MAAM,WAAW,qBAAsB,SAAQ,WAAW;IACxD,QAAQ,EAAE,MAAM,CAAC;CAClB"}
@@ -0,0 +1,6 @@
1
+ import { DeviceState } from 'src/lib';
2
+ export interface ITemperatureSensorState extends DeviceState {
3
+ temperature: string;
4
+ temperatureInCelsius: boolean;
5
+ }
6
+ //# sourceMappingURL=ITemperatureSensorState.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ITemperatureSensorState.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/state/state/ITemperatureSensorState.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAEtC,MAAM,WAAW,uBAAwB,SAAQ,WAAW;IAC1D,WAAW,EAAE,MAAM,CAAC;IAEpB,oBAAoB,EAAE,OAAO,CAAC;CAC/B"}
@@ -1,19 +1,22 @@
1
- export * from './CameraState';
2
1
  export * from './CamerasState';
2
+ export * from './CameraState';
3
3
  export * from './CommunicationMonitorState';
4
4
  export * from './DeviceInfoState';
5
5
  export * from './DevicePresetsState';
6
6
  export * from './DeviceState';
7
7
  export * from './DisplayState';
8
+ export * from './endpointState';
8
9
  export * from './EnvironmentState';
9
10
  export * from "./IEssentialsRoomCombinerState";
10
11
  export * from './IHasInputsState';
11
12
  export * from './IHasSelectableItemsState';
12
13
  export * from './IHasSurroundChannelsState';
13
14
  export * from './IHasSurroundSoundModesState';
15
+ export * from './IHumiditySensorState';
14
16
  export * from './IProjectorScreenLiftControlState';
15
17
  export * from './IShutdownPromptTimerState';
16
18
  export * from './ITechPasswordState';
19
+ export * from './ITemperatureSensorState';
17
20
  export * from './LevelControlsState';
18
21
  export * from './LightingState';
19
22
  export * from './MatrixRoutingState';
@@ -27,5 +30,4 @@ export * from './ShadeState';
27
30
  export * from './ShareState';
28
31
  export * from './SurroundSoundModeState';
29
32
  export * from './SwitchedOutputState';
30
- export * from './endpointState';
31
33
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/state/state/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC;AACnC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,mBAAmB,CAAC;AAClC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,oCAAoC,CAAC;AACnD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,iBAAiB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/state/state/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,mBAAmB,CAAC;AAClC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,wBAAwB,CAAC;AACvC,cAAc,oCAAoC,CAAC;AACnD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pepperdash/mobile-control-react-app-core",
3
3
  "private": false,
4
- "version": "1.18.0",
4
+ "version": "1.19.0",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",