@pepperdash/mobile-control-react-app-core 1.2.0 → 1.3.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.
Files changed (29) hide show
  1. package/dist/mobile-control-react-app-core.es.js +630 -556
  2. package/dist/mobile-control-react-app-core.umd.js +10 -10
  3. package/dist/shared/hooks/index.d.ts +1 -0
  4. package/dist/shared/hooks/index.d.ts.map +1 -1
  5. package/dist/shared/hooks/interfaces/index.d.ts +5 -0
  6. package/dist/shared/hooks/interfaces/index.d.ts.map +1 -0
  7. package/dist/shared/hooks/interfaces/interfaceNames.d.ts +2 -0
  8. package/dist/shared/hooks/interfaces/interfaceNames.d.ts.map +1 -0
  9. package/dist/shared/hooks/interfaces/useIHasPowerControl.d.ts +7 -0
  10. package/dist/shared/hooks/interfaces/useIHasPowerControl.d.ts.map +1 -0
  11. package/dist/shared/hooks/interfaces/useIRunDirectRouteAction.d.ts +10 -0
  12. package/dist/shared/hooks/interfaces/useIRunDirectRouteAction.d.ts.map +1 -0
  13. package/dist/shared/hooks/interfaces/useTwoWayDisplayBase.d.ts +9 -0
  14. package/dist/shared/hooks/interfaces/useTwoWayDisplayBase.d.ts.map +1 -0
  15. package/dist/shared/hooks/useGetDeviceStateFromRoomConfiguration.d.ts.map +1 -1
  16. package/dist/store/devices/devices.slice.d.ts +3 -3
  17. package/dist/store/devices/devicesSelectors.d.ts +2 -2
  18. package/dist/store/devices/devicesSelectors.d.ts.map +1 -1
  19. package/dist/store/hooks.d.ts +2 -2
  20. package/dist/store/index.d.ts +4 -4
  21. package/dist/store/rooms/rooms.slice.d.ts +6 -6
  22. package/dist/store/rooms/roomsSelectors.d.ts +5 -3
  23. package/dist/store/rooms/roomsSelectors.d.ts.map +1 -1
  24. package/dist/store/rootReducer.d.ts +8 -8
  25. package/dist/types/state/index.d.ts +1 -0
  26. package/dist/types/state/index.d.ts.map +1 -1
  27. package/dist/types/state/state/DisplayState.d.ts +1 -1
  28. package/dist/types/state/state/DisplayState.d.ts.map +1 -1
  29. package/package.json +1 -1
@@ -0,0 +1,5 @@
1
+ export * from './interfaceNames';
2
+ export * from './useIHasPowerControl';
3
+ export * from './useIRunDirectRouteAction';
4
+ export * from './useTwoWayDisplayBase';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +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,uBAAuB,CAAC;AACtC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export type InterfaceNames = "IHasPowerControl" | "IRoutingFeedback" | "IRunDirectRouteAction" | "IRunRouteAction" | "IRouting";
2
+ //# sourceMappingURL=interfaceNames.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"interfaceNames.d.ts","sourceRoot":"","sources":["../../../../src/lib/shared/hooks/interfaces/interfaceNames.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,cAAc,GAAG,kBAAkB,GAAG,kBAAkB,GAAG,uBAAuB,GAAG,iBAAiB,GAAG,UAAU,CAAC"}
@@ -0,0 +1,7 @@
1
+ export declare function useIHasPowerControl(key: string): IHasPowerWithFeedbackProps;
2
+ export interface IHasPowerWithFeedbackProps {
3
+ powerOn: () => void;
4
+ powerOff: () => void;
5
+ powerToggle: () => void;
6
+ }
7
+ //# sourceMappingURL=useIHasPowerControl.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useIHasPowerControl.d.ts","sourceRoot":"","sources":["../../../../src/lib/shared/hooks/interfaces/useIHasPowerControl.ts"],"names":[],"mappings":"AAEA,wBAAgB,mBAAmB,CAAC,GAAG,EAAE,MAAM,GAAG,0BAA0B,CAgB3E;AAED,MAAM,WAAW,0BAA0B;IACzC,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,WAAW,EAAE,MAAM,IAAI,CAAC;CACzB"}
@@ -0,0 +1,10 @@
1
+ export declare function useIRunDirectRouteAction(roomKey: string): IRunDirectRouteActionProps;
2
+ interface IRunDirectRouteActionProps {
3
+ runDirectRoute: (route: DirectRoute) => void;
4
+ }
5
+ interface DirectRoute {
6
+ sourceKey: string;
7
+ destinationKey: string;
8
+ }
9
+ export {};
10
+ //# sourceMappingURL=useIRunDirectRouteAction.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useIRunDirectRouteAction.d.ts","sourceRoot":"","sources":["../../../../src/lib/shared/hooks/interfaces/useIRunDirectRouteAction.ts"],"names":[],"mappings":"AAEA,wBAAgB,wBAAwB,CAAC,OAAO,EAAE,MAAM,GAAG,0BAA0B,CAQpF;AAED,UAAU,0BAA0B;IAChC,cAAc,EAAE,CAAC,KAAK,EAAE,WAAW,KAAK,IAAI,CAAC;CAChD;AAED,UAAU,WAAW;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,cAAc,EAAE,MAAM,CAAC;CAC1B"}
@@ -0,0 +1,9 @@
1
+ import { DisplayState } from 'src/lib/types';
2
+ import { IHasPowerWithFeedbackProps } from './useIHasPowerControl';
3
+ export declare function useTwoWayDisplayBase(key: string): TwoWayDisplayBaseReturn;
4
+ interface TwoWayDisplayBaseReturn {
5
+ state: DisplayState;
6
+ powerControl: IHasPowerWithFeedbackProps;
7
+ }
8
+ export {};
9
+ //# sourceMappingURL=useTwoWayDisplayBase.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useTwoWayDisplayBase.d.ts","sourceRoot":"","sources":["../../../../src/lib/shared/hooks/interfaces/useTwoWayDisplayBase.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAC7C,OAAO,EAAE,0BAA0B,EAAuB,MAAM,uBAAuB,CAAC;AAExF,wBAAgB,oBAAoB,CAAC,GAAG,EAAE,MAAM,GAAG,uBAAuB,CAMzE;AAED,UAAU,uBAAuB;IAC/B,KAAK,EAAE,YAAY,CAAC;IACpB,YAAY,EAAE,0BAA0B,CAAC;CAC1C"}
@@ -1 +1 @@
1
- {"version":3,"file":"useGetDeviceStateFromRoomConfiguration.d.ts","sourceRoot":"","sources":["../../../src/lib/shared/hooks/useGetDeviceStateFromRoomConfiguration.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAI9D;;GAEG;AACH,eAAO,MAAM,yCAAyC;YAAuB,iBAAiB,GAAG,SAAS;UAmCzG,CAAC"}
1
+ {"version":3,"file":"useGetDeviceStateFromRoomConfiguration.d.ts","sourceRoot":"","sources":["../../../src/lib/shared/hooks/useGetDeviceStateFromRoomConfiguration.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAI9D;;GAEG;AACH,eAAO,MAAM,yCAAyC;YAAuB,iBAAiB,GAAG,SAAS;UAkCzG,CAAC"}
@@ -12,7 +12,7 @@ export declare const devicesActions: import("@reduxjs/toolkit").CaseReducerActio
12
12
  interfaces: string[];
13
13
  commMonitor?: {
14
14
  isOnline: boolean;
15
- status: import("../../types/state/state").MonitorStatus;
15
+ status: import("../../types").MonitorStatus;
16
16
  } | undefined;
17
17
  };
18
18
  }, action: PayloadAction<Message>): {
@@ -25,7 +25,7 @@ export declare const devicesActions: import("@reduxjs/toolkit").CaseReducerActio
25
25
  interfaces: string[];
26
26
  commMonitor?: {
27
27
  isOnline: boolean;
28
- status: import("../../types/state/state").MonitorStatus;
28
+ status: import("../../types").MonitorStatus;
29
29
  } | undefined;
30
30
  } | ({
31
31
  key: string;
@@ -36,7 +36,7 @@ export declare const devicesActions: import("@reduxjs/toolkit").CaseReducerActio
36
36
  interfaces: string[];
37
37
  commMonitor?: {
38
38
  isOnline: boolean;
39
- status: import("../../types/state/state").MonitorStatus;
39
+ status: import("../../types").MonitorStatus;
40
40
  } | undefined;
41
41
  } & DeviceState);
42
42
  } | undefined;
@@ -1,3 +1,3 @@
1
- export declare const useGetAllDevices: () => import("../../types/state/state").DeviceState[];
2
- export declare const useGetDevice: (deviceKey: string) => import("../../types/state/state").DeviceState;
1
+ export declare const useGetAllDevices: () => import("../..").DeviceState[];
2
+ export declare const useGetDevice: (deviceKey: string) => import("../..").DeviceState;
3
3
  //# sourceMappingURL=devicesSelectors.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"devicesSelectors.d.ts","sourceRoot":"","sources":["../../../src/lib/store/devices/devicesSelectors.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,gBAAgB,uDAE5B,CAAA;AAED,eAAO,MAAM,YAAY,cAAe,MAAM,kDAE7C,CAAA"}
1
+ {"version":3,"file":"devicesSelectors.d.ts","sourceRoot":"","sources":["../../../src/lib/store/devices/devicesSelectors.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,gBAAgB,qCAE5B,CAAA;AAED,eAAO,MAAM,YAAY,cAAe,MAAM,gCAE7C,CAAA"}
@@ -3,8 +3,8 @@ import { RootState } from './rootReducer';
3
3
  export declare const useAppDispatch: () => import("redux-thunk").ThunkDispatch<{
4
4
  appConfig: import("./appConfig/appConfig.slice").AppConfigState;
5
5
  runtimeConfig: import("./runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
6
- rooms: Record<string, import("../types/state/state").RoomState>;
7
- devices: Record<string, import("../types/state/state").DeviceState>;
6
+ rooms: Record<string, import("..").RoomState>;
7
+ devices: Record<string, import("..").DeviceState>;
8
8
  ui: import(".").UiConfigState;
9
9
  }, undefined, import("redux").UnknownAction> & import("redux").Dispatch<import("redux").UnknownAction>;
10
10
  export declare const useAppSelector: TypedUseSelectorHook<RootState>;
@@ -1,15 +1,15 @@
1
1
  export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
2
2
  appConfig: import("./appConfig/appConfig.slice").AppConfigState;
3
3
  runtimeConfig: import("./runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
4
- rooms: Record<string, import("../types/state/state").RoomState>;
5
- devices: Record<string, import("../types/state/state").DeviceState>;
4
+ rooms: Record<string, import("..").RoomState>;
5
+ devices: Record<string, import("..").DeviceState>;
6
6
  ui: import("./ui/ui.slice").UiConfigState;
7
7
  }, import("redux").UnknownAction, import("@reduxjs/toolkit").Tuple<[import("redux").StoreEnhancer<{
8
8
  dispatch: import("redux-thunk").ThunkDispatch<{
9
9
  appConfig: import("./appConfig/appConfig.slice").AppConfigState;
10
10
  runtimeConfig: import("./runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
11
- rooms: Record<string, import("../types/state/state").RoomState>;
12
- devices: Record<string, import("../types/state/state").DeviceState>;
11
+ rooms: Record<string, import("..").RoomState>;
12
+ devices: Record<string, import("..").DeviceState>;
13
13
  ui: import("./ui/ui.slice").UiConfigState;
14
14
  }, undefined, import("redux").UnknownAction>;
15
15
  }>, import("redux").StoreEnhancer]>>;
@@ -13,7 +13,7 @@ export declare const roomsActions: import("@reduxjs/toolkit").CaseReducerActions
13
13
  displayKeys: string[];
14
14
  environmentalDevices: {
15
15
  deviceKey?: string | undefined;
16
- deviceType?: import("../../types/state/state/RoomState").EnvironmentalDeviceTypes | undefined;
16
+ deviceType?: import("../../types/state/index").EnvironmentalDeviceTypes | undefined;
17
17
  }[];
18
18
  hasAudioConferencing?: boolean | undefined;
19
19
  hasEnvironmentalControls?: boolean | undefined;
@@ -92,7 +92,7 @@ export declare const roomsActions: import("@reduxjs/toolkit").CaseReducerActions
92
92
  interfaces: string[];
93
93
  commMonitor?: {
94
94
  isOnline: boolean;
95
- status: import("../../types/state/state/CommMonitorState").MonitorStatus;
95
+ status: import("../../types/state/index").MonitorStatus;
96
96
  } | undefined;
97
97
  };
98
98
  }, action: PayloadAction<Message>): {
@@ -106,7 +106,7 @@ export declare const roomsActions: import("@reduxjs/toolkit").CaseReducerActions
106
106
  displayKeys: string[];
107
107
  environmentalDevices: {
108
108
  deviceKey?: string | undefined;
109
- deviceType?: import("../../types/state/state/RoomState").EnvironmentalDeviceTypes | undefined;
109
+ deviceType?: import("../../types/state/index").EnvironmentalDeviceTypes | undefined;
110
110
  }[];
111
111
  hasAudioConferencing?: boolean | undefined;
112
112
  hasEnvironmentalControls?: boolean | undefined;
@@ -185,7 +185,7 @@ export declare const roomsActions: import("@reduxjs/toolkit").CaseReducerActions
185
185
  interfaces: string[];
186
186
  commMonitor?: {
187
187
  isOnline: boolean;
188
- status: import("../../types/state/state/CommMonitorState").MonitorStatus;
188
+ status: import("../../types/state/index").MonitorStatus;
189
189
  } | undefined;
190
190
  } | ({
191
191
  activityMode?: number | undefined;
@@ -197,7 +197,7 @@ export declare const roomsActions: import("@reduxjs/toolkit").CaseReducerActions
197
197
  displayKeys: string[];
198
198
  environmentalDevices: {
199
199
  deviceKey?: string | undefined;
200
- deviceType?: import("../../types/state/state/RoomState").EnvironmentalDeviceTypes | undefined;
200
+ deviceType?: import("../../types/state/index").EnvironmentalDeviceTypes | undefined;
201
201
  }[];
202
202
  hasAudioConferencing?: boolean | undefined;
203
203
  hasEnvironmentalControls?: boolean | undefined;
@@ -276,7 +276,7 @@ export declare const roomsActions: import("@reduxjs/toolkit").CaseReducerActions
276
276
  interfaces: string[];
277
277
  commMonitor?: {
278
278
  isOnline: boolean;
279
- status: import("../../types/state/state/CommMonitorState").MonitorStatus;
279
+ status: import("../../types/state/index").MonitorStatus;
280
280
  } | undefined;
281
281
  } & RoomState);
282
282
  } | undefined;
@@ -1,5 +1,6 @@
1
- export declare const useRoomConfiguration: (roomKey: string) => import("../../types/state/state").RoomConfiguration | undefined;
2
- export declare const useRoomState: (roomKey: string) => import("../../types/state/state").RoomState | undefined;
1
+ import { DisplayState } from 'src/lib/types/state/state';
2
+ export declare const useRoomConfiguration: (roomKey: string) => import("src/lib/types/state/state").RoomConfiguration | undefined;
3
+ export declare const useRoomState: (roomKey: string) => import("src/lib/types/state/state").RoomState | undefined;
3
4
  export declare const useRoomName: (roomKey: string) => string | undefined;
4
5
  export declare const useRoomMasterVolume: (roomKey: string) => import("../..").Volume | undefined;
5
6
  export declare const useRoomSourceList: (roomKey: string) => Record<string, import("../..").SourceListItem> | undefined;
@@ -9,5 +10,6 @@ export declare const useRoomIsWarmingUp: (roomKey: string) => boolean | undefine
9
10
  export declare const useRoomIsCoolingDown: (roomKey: string) => boolean | undefined;
10
11
  export declare const useRoomIsOn: (roomKey: string) => boolean | undefined;
11
12
  export declare const useRoomAdvancedSharingActive: (roomKey: string) => boolean | undefined;
12
- export declare const useRoomShareState: (roomKey: string) => import("../../types/state/state").ShareState | undefined;
13
+ export declare const useRoomShareState: (roomKey: string) => import("src/lib/types/state/state").ShareState | undefined;
14
+ export declare const useGetRoomDisplays: (roomKey: string) => DisplayState[] | undefined;
13
15
  //# sourceMappingURL=roomsSelectors.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"roomsSelectors.d.ts","sourceRoot":"","sources":["../../../src/lib/store/rooms/roomsSelectors.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB,YAAa,MAAM,oEAGjD,CAAC;AAEJ,eAAO,MAAM,YAAY,YAAa,MAAM,4DAGzC,CAAC;AAEJ,eAAO,MAAM,WAAW,YAAa,MAAM,uBAGxC,CAAC;AAEJ,eAAO,MAAM,mBAAmB,YAAa,MAAM,uCAGhD,CAAC;AAEJ,eAAO,MAAM,iBAAiB,YAAa,MAAM,+DAK9C,CAAC;AAEJ,eAAO,MAAM,sBAAsB,YAAa,MAAM,yBAKnD,CAAC;AAEJ,eAAO,MAAM,aAAa,YAAa,MAAM,wBAG1C,CAAC;AAEJ,eAAO,MAAM,kBAAkB,YAAa,MAAM,wBAG/C,CAAC;AAEJ,eAAO,MAAM,oBAAoB,YAAa,MAAM,wBAGjD,CAAC;AAEJ,eAAO,MAAM,WAAW,YAAa,MAAM,wBAGxC,CAAC;AAEJ,eAAO,MAAM,4BAA4B,YAAa,MAAM,wBAKzD,CAAC;AAEJ,eAAO,MAAM,iBAAiB,YAAa,MAAM,6DAG9C,CAAC"}
1
+ {"version":3,"file":"roomsSelectors.d.ts","sourceRoot":"","sources":["../../../src/lib/store/rooms/roomsSelectors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAGzD,eAAO,MAAM,oBAAoB,YAAa,MAAM,sEAGjD,CAAC;AAEJ,eAAO,MAAM,YAAY,YAAa,MAAM,8DAGzC,CAAC;AAEJ,eAAO,MAAM,WAAW,YAAa,MAAM,uBAGxC,CAAC;AAEJ,eAAO,MAAM,mBAAmB,YAAa,MAAM,uCAGhD,CAAC;AAEJ,eAAO,MAAM,iBAAiB,YAAa,MAAM,+DAK9C,CAAC;AAEJ,eAAO,MAAM,sBAAsB,YAAa,MAAM,yBAKnD,CAAC;AAEJ,eAAO,MAAM,aAAa,YAAa,MAAM,wBAG1C,CAAC;AAEJ,eAAO,MAAM,kBAAkB,YAAa,MAAM,wBAG/C,CAAC;AAEJ,eAAO,MAAM,oBAAoB,YAAa,MAAM,wBAGjD,CAAC;AAEJ,eAAO,MAAM,WAAW,YAAa,MAAM,wBAGxC,CAAC;AAEJ,eAAO,MAAM,4BAA4B,YAAa,MAAM,wBAKzD,CAAC;AAEJ,eAAO,MAAM,iBAAiB,YAAa,MAAM,+DAG9C,CAAC;AAEJ,eAAO,MAAM,kBAAkB,YAAa,MAAM,+BAW9C,CAAC"}
@@ -1,28 +1,28 @@
1
1
  export declare const rootReducer: import("redux").Reducer<{
2
2
  appConfig: import("./appConfig/appConfig.slice").AppConfigState;
3
3
  runtimeConfig: import("./runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
4
- rooms: Record<string, import("../types/state/state").RoomState>;
5
- devices: Record<string, import("../types/state/state").DeviceState>;
4
+ rooms: Record<string, import("..").RoomState>;
5
+ devices: Record<string, import("..").DeviceState>;
6
6
  ui: import("./ui/ui.slice").UiConfigState;
7
7
  }, import("redux").UnknownAction, Partial<{
8
8
  appConfig: import("./appConfig/appConfig.slice").AppConfigState | undefined;
9
9
  runtimeConfig: import("./runtimeConfig/runtimeConfig.slice").RuntimeConfigState | undefined;
10
- rooms: Record<string, import("../types/state/state").RoomState> | undefined;
11
- devices: Record<string, import("../types/state/state").DeviceState> | undefined;
10
+ rooms: Record<string, import("..").RoomState> | undefined;
11
+ devices: Record<string, import("..").DeviceState> | undefined;
12
12
  ui: import("./ui/ui.slice").UiConfigState | undefined;
13
13
  }>>;
14
14
  declare const store: import("@reduxjs/toolkit").EnhancedStore<{
15
15
  appConfig: import("./appConfig/appConfig.slice").AppConfigState;
16
16
  runtimeConfig: import("./runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
17
- rooms: Record<string, import("../types/state/state").RoomState>;
18
- devices: Record<string, import("../types/state/state").DeviceState>;
17
+ rooms: Record<string, import("..").RoomState>;
18
+ devices: Record<string, import("..").DeviceState>;
19
19
  ui: import("./ui/ui.slice").UiConfigState;
20
20
  }, import("redux").UnknownAction, import("@reduxjs/toolkit").Tuple<[import("redux").StoreEnhancer<{
21
21
  dispatch: import("redux-thunk").ThunkDispatch<{
22
22
  appConfig: import("./appConfig/appConfig.slice").AppConfigState;
23
23
  runtimeConfig: import("./runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
24
- rooms: Record<string, import("../types/state/state").RoomState>;
25
- devices: Record<string, import("../types/state/state").DeviceState>;
24
+ rooms: Record<string, import("..").RoomState>;
25
+ devices: Record<string, import("..").DeviceState>;
26
26
  ui: import("./ui/ui.slice").UiConfigState;
27
27
  }, undefined, import("redux").UnknownAction>;
28
28
  }>, import("redux").StoreEnhancer]>>;
@@ -7,6 +7,7 @@ export * from './environment/lightingScene';
7
7
  export * from './message';
8
8
  export * from './message-handler';
9
9
  export * from './sourceListItem';
10
+ export * from './state';
10
11
  export * from './volume/volume';
11
12
  export * from './volume/volumes';
12
13
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/lib/types/state/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,yBAAyB,CAAC;AACxC,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,6BAA6B,CAAC;AAC5C,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/lib/types/state/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,yBAAyB,CAAC;AACxC,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,6BAA6B,CAAC;AAC5C,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC"}
@@ -10,6 +10,6 @@ export interface DisplayState extends DeviceState {
10
10
  isCooling: boolean;
11
11
  currentInput: string;
12
12
  volume?: Volume;
13
- inputKeys: string[];
13
+ inputKeys?: string[];
14
14
  }
15
15
  //# sourceMappingURL=DisplayState.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"DisplayState.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/state/state/DisplayState.ts"],"names":[],"mappings":"AACA;;GAEG;AACH,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,MAAM,WAAW,YAAa,SAAQ,WAAW;IAC/C,WAAW,EAAE,OAAO,CAAC;IAErB,UAAU,EAAE,OAAO,CAAC;IAEpB,SAAS,EAAE,OAAO,CAAC;IAEnB,SAAS,EAAE,OAAO,CAAC;IAEnB,YAAY,EAAE,MAAM,CAAC;IAErB,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,SAAS,EAAE,MAAM,EAAE,CAAC;CACrB"}
1
+ {"version":3,"file":"DisplayState.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/state/state/DisplayState.ts"],"names":[],"mappings":"AACA;;GAEG;AACH,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,MAAM,WAAW,YAAa,SAAQ,WAAW;IAC/C,WAAW,EAAE,OAAO,CAAC;IAErB,UAAU,EAAE,OAAO,CAAC;IAEpB,SAAS,EAAE,OAAO,CAAC;IAEnB,SAAS,EAAE,OAAO,CAAC;IAEnB,YAAY,EAAE,MAAM,CAAC;IAErB,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;CACtB"}
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.2.0",
4
+ "version": "1.3.0",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",