@pepperdash/mobile-control-react-app-core 1.20.4 → 1.20.5

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 (51) hide show
  1. package/dist/mobile-control-react-app-core.es.js +1579 -1501
  2. package/dist/mobile-control-react-app-core.umd.js +10 -10
  3. package/dist/shared/hooks/interfaces/useIHasSelectableItems.d.ts +2 -1
  4. package/dist/shared/hooks/interfaces/useIHasSelectableItems.d.ts.map +1 -1
  5. package/dist/store/appConfig/appConfig.hooks.d.ts +110 -0
  6. package/dist/store/appConfig/appConfig.hooks.d.ts.map +1 -0
  7. package/dist/store/appConfig/{appConfigSelectors.d.ts → appConfig.selectors.d.ts} +2 -3
  8. package/dist/store/appConfig/appConfig.selectors.d.ts.map +1 -0
  9. package/dist/store/devices/devices.hooks.d.ts +56 -0
  10. package/dist/store/devices/devices.hooks.d.ts.map +1 -0
  11. package/dist/store/devices/devices.selectors.d.ts +13 -0
  12. package/dist/store/devices/devices.selectors.d.ts.map +1 -0
  13. package/dist/store/devices/devices.slice.d.ts +4 -35
  14. package/dist/store/devices/devices.slice.d.ts.map +1 -1
  15. package/dist/store/index.d.ts +5 -5
  16. package/dist/store/index.d.ts.map +1 -1
  17. package/dist/store/rooms/rooms.hooks.d.ts +542 -0
  18. package/dist/store/rooms/rooms.hooks.d.ts.map +1 -0
  19. package/dist/store/rooms/{roomsSelectors.d.ts → rooms.selectors.d.ts} +10 -7
  20. package/dist/store/rooms/rooms.selectors.d.ts.map +1 -0
  21. package/dist/store/rooms/rooms.slice.d.ts +4 -321
  22. package/dist/store/rooms/rooms.slice.d.ts.map +1 -1
  23. package/dist/store/runtimeConfig/runtime.hooks.d.ts +277 -0
  24. package/dist/store/runtimeConfig/runtime.hooks.d.ts.map +1 -0
  25. package/dist/store/runtimeConfig/{runtimeSelectors.d.ts → runtime.selectors.d.ts} +1 -1
  26. package/dist/store/runtimeConfig/runtime.selectors.d.ts.map +1 -0
  27. package/dist/types/state/state/CommunicationMonitorState.d.ts +2 -1
  28. package/dist/types/state/state/CommunicationMonitorState.d.ts.map +1 -1
  29. package/dist/types/state/state/DeviceInfoState.d.ts +2 -1
  30. package/dist/types/state/state/DeviceInfoState.d.ts.map +1 -1
  31. package/dist/types/state/state/IBasicVolumeWithFeedbackState.d.ts +2 -1
  32. package/dist/types/state/state/IBasicVolumeWithFeedbackState.d.ts.map +1 -1
  33. package/dist/types/state/state/IHasInputsState.d.ts +2 -1
  34. package/dist/types/state/state/IHasInputsState.d.ts.map +1 -1
  35. package/dist/types/state/state/IHasSurroundSoundModesState.d.ts +2 -1
  36. package/dist/types/state/state/IHasSurroundSoundModesState.d.ts.map +1 -1
  37. package/dist/types/state/state/MatrixRoutingState.d.ts +1 -1
  38. package/dist/types/state/state/MatrixRoutingState.d.ts.map +1 -1
  39. package/dist/types/state/state/PowerState.d.ts +2 -1
  40. package/dist/types/state/state/PowerState.d.ts.map +1 -1
  41. package/dist/types/state/state/RoutingState.d.ts +2 -1
  42. package/dist/types/state/state/RoutingState.d.ts.map +1 -1
  43. package/dist/types/state/state/SwitchedOutputState.d.ts +2 -1
  44. package/dist/types/state/state/SwitchedOutputState.d.ts.map +1 -1
  45. package/package.json +2 -2
  46. package/dist/store/appConfig/appConfigSelectors.d.ts.map +0 -1
  47. package/dist/store/devices/devicesSelectors.d.ts +0 -12
  48. package/dist/store/devices/devicesSelectors.d.ts.map +0 -1
  49. package/dist/store/rooms/roomsSelectors.d.ts.map +0 -1
  50. package/dist/store/runtimeConfig/runtimeSelectors.d.ts.map +0 -1
  51. /package/dist/{style.css → mobile-control-react-app-core.css} +0 -0
@@ -1,10 +1,11 @@
1
+ import { DeviceState } from 'src/lib';
1
2
  /**
2
3
  * Hook for devices that have selectable items
3
4
  * TState is the type of the expected state of the device
4
5
  * @param key key of the device
5
6
  * @returns
6
7
  */
7
- export declare function useIHasSelectableItems<TState>(key: string): IHasSelectableItemsReturn<TState> | undefined;
8
+ export declare function useIHasSelectableItems<TState extends DeviceState = DeviceState>(key: string): IHasSelectableItemsReturn<TState> | undefined;
8
9
  export interface IHasSelectableItemsReturn<TState> {
9
10
  itemsState: TState;
10
11
  selectItem: (itemKey: string) => void;
@@ -1 +1 @@
1
- {"version":3,"file":"useIHasSelectableItems.d.ts","sourceRoot":"","sources":["../../../../src/lib/shared/hooks/interfaces/useIHasSelectableItems.ts"],"names":[],"mappings":"AAIA;;;;;GAKG;AACH,wBAAgB,sBAAsB,CAAC,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,yBAAyB,CAAC,MAAM,CAAC,GAAG,SAAS,CAazG;AAED,MAAM,WAAW,yBAAyB,CAAC,MAAM;IAC/C,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;CACvC"}
1
+ {"version":3,"file":"useIHasSelectableItems.d.ts","sourceRoot":"","sources":["../../../../src/lib/shared/hooks/interfaces/useIHasSelectableItems.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAKtC;;;;;GAKG;AACH,wBAAgB,sBAAsB,CAAC,MAAM,SAAS,WAAW,GAAG,WAAW,EAAE,GAAG,EAAE,MAAM,GAAG,yBAAyB,CAAC,MAAM,CAAC,GAAG,SAAS,CAa3I;AAED,MAAM,WAAW,yBAAyB,CAAC,MAAM;IAC/C,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;CACvC"}
@@ -0,0 +1,110 @@
1
+ import { AppConfigExtras, RootState } from 'src/lib';
2
+ export declare const selectAppConfig: ((state: {
3
+ appConfig: import("./appConfig.slice").AppConfigState;
4
+ runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
5
+ rooms: Record<string, import("src/lib").RoomState>;
6
+ devices: Record<string, import("src/lib").DeviceState>;
7
+ ui: import("src/lib").UiConfigState;
8
+ }) => AppConfigExtras) & {
9
+ clearCache: () => void;
10
+ resultsCount: () => number;
11
+ resetResultsCount: () => void;
12
+ } & {
13
+ resultFunc: (resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => AppConfigExtras;
14
+ memoizedResultFunc: ((resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => AppConfigExtras) & {
15
+ clearCache: () => void;
16
+ resultsCount: () => number;
17
+ resetResultsCount: () => void;
18
+ };
19
+ lastResult: () => AppConfigExtras;
20
+ dependencies: [(state: RootState) => import("./appConfig.slice").AppConfigState];
21
+ recomputations: () => number;
22
+ resetRecomputations: () => void;
23
+ dependencyRecomputations: () => number;
24
+ resetDependencyRecomputations: () => void;
25
+ } & {
26
+ argsMemoize: typeof import("reselect").weakMapMemoize;
27
+ memoize: typeof import("reselect").weakMapMemoize;
28
+ };
29
+ export declare const selectApiPath: ((state: {
30
+ appConfig: import("./appConfig.slice").AppConfigState;
31
+ runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
32
+ rooms: Record<string, import("src/lib").RoomState>;
33
+ devices: Record<string, import("src/lib").DeviceState>;
34
+ ui: import("src/lib").UiConfigState;
35
+ }) => string) & {
36
+ clearCache: () => void;
37
+ resultsCount: () => number;
38
+ resetResultsCount: () => void;
39
+ } & {
40
+ resultFunc: (resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => string;
41
+ memoizedResultFunc: ((resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => string) & {
42
+ clearCache: () => void;
43
+ resultsCount: () => number;
44
+ resetResultsCount: () => void;
45
+ };
46
+ lastResult: () => string;
47
+ dependencies: [(state: RootState) => import("./appConfig.slice").AppConfigState];
48
+ recomputations: () => number;
49
+ resetRecomputations: () => void;
50
+ dependencyRecomputations: () => number;
51
+ resetDependencyRecomputations: () => void;
52
+ } & {
53
+ argsMemoize: typeof import("reselect").weakMapMemoize;
54
+ memoize: typeof import("reselect").weakMapMemoize;
55
+ };
56
+ export declare const selectLogoPath: ((state: {
57
+ appConfig: import("./appConfig.slice").AppConfigState;
58
+ runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
59
+ rooms: Record<string, import("src/lib").RoomState>;
60
+ devices: Record<string, import("src/lib").DeviceState>;
61
+ ui: import("src/lib").UiConfigState;
62
+ }) => string) & {
63
+ clearCache: () => void;
64
+ resultsCount: () => number;
65
+ resetResultsCount: () => void;
66
+ } & {
67
+ resultFunc: (resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => string;
68
+ memoizedResultFunc: ((resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => string) & {
69
+ clearCache: () => void;
70
+ resultsCount: () => number;
71
+ resetResultsCount: () => void;
72
+ };
73
+ lastResult: () => string;
74
+ dependencies: [(state: RootState) => import("./appConfig.slice").AppConfigState];
75
+ recomputations: () => number;
76
+ resetRecomputations: () => void;
77
+ dependencyRecomputations: () => number;
78
+ resetDependencyRecomputations: () => void;
79
+ } & {
80
+ argsMemoize: typeof import("reselect").weakMapMemoize;
81
+ memoize: typeof import("reselect").weakMapMemoize;
82
+ };
83
+ export declare const selectPartnerMetadata: ((state: {
84
+ appConfig: import("./appConfig.slice").AppConfigState;
85
+ runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
86
+ rooms: Record<string, import("src/lib").RoomState>;
87
+ devices: Record<string, import("src/lib").DeviceState>;
88
+ ui: import("src/lib").UiConfigState;
89
+ }) => import("./appConfig.slice").PartnerMetadata[] | undefined) & {
90
+ clearCache: () => void;
91
+ resultsCount: () => number;
92
+ resetResultsCount: () => void;
93
+ } & {
94
+ resultFunc: (resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => import("./appConfig.slice").PartnerMetadata[] | undefined;
95
+ memoizedResultFunc: ((resultFuncArgs_0: import("./appConfig.slice").AppConfigState) => import("./appConfig.slice").PartnerMetadata[] | undefined) & {
96
+ clearCache: () => void;
97
+ resultsCount: () => number;
98
+ resetResultsCount: () => void;
99
+ };
100
+ lastResult: () => import("./appConfig.slice").PartnerMetadata[] | undefined;
101
+ dependencies: [(state: RootState) => import("./appConfig.slice").AppConfigState];
102
+ recomputations: () => number;
103
+ resetRecomputations: () => void;
104
+ dependencyRecomputations: () => number;
105
+ resetDependencyRecomputations: () => void;
106
+ } & {
107
+ argsMemoize: typeof import("reselect").weakMapMemoize;
108
+ memoize: typeof import("reselect").weakMapMemoize;
109
+ };
110
+ //# sourceMappingURL=appConfig.hooks.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"appConfig.hooks.d.ts","sourceRoot":"","sources":["../../../src/lib/store/appConfig/appConfig.hooks.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAKrD,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;2BAFG,SAAS;;;;;;;;CAKvC,CAAC;AAEF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;2BAPK,SAAS;;;;;;;;CAUvC,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;2BAZI,SAAS;;;;;;;;CAevC,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;2BAjBH,SAAS;;;;;;;;CAoBvC,CAAC"}
@@ -1,6 +1,5 @@
1
- import { AppConfigExtras } from 'src/lib/types';
2
- export declare const useAppConfig: () => AppConfigExtras;
1
+ export declare const useAppConfig: () => import("../..").AppConfigExtras;
3
2
  export declare const useApiPath: () => string;
4
3
  export declare const useLogoPath: () => string;
5
4
  export declare const usePartnerMetadata: () => import("./appConfig.slice").PartnerMetadata[] | undefined;
6
- //# sourceMappingURL=appConfigSelectors.d.ts.map
5
+ //# sourceMappingURL=appConfig.selectors.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"appConfig.selectors.d.ts","sourceRoot":"","sources":["../../../src/lib/store/appConfig/appConfig.selectors.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,YAAY,uCAAwC,CAAC;AAElE,eAAO,MAAM,UAAU,cAAsC,CAAC;AAE9D,eAAO,MAAM,WAAW,cAAuC,CAAC;AAEhE,eAAO,MAAM,kBAAkB,iEAA8C,CAAA"}
@@ -0,0 +1,56 @@
1
+ import { RootState } from 'src/lib';
2
+ export declare const selectAllDevices: ((state: {
3
+ appConfig: import("../appConfig/appConfig.slice").AppConfigState;
4
+ runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
5
+ rooms: Record<string, import("src/lib").RoomState>;
6
+ devices: Record<string, import("src/lib").DeviceState>;
7
+ ui: import("src/lib").UiConfigState;
8
+ }) => import("src/lib").DeviceState) & {
9
+ clearCache: () => void;
10
+ resultsCount: () => number;
11
+ resetResultsCount: () => void;
12
+ } & {
13
+ resultFunc: (resultFuncArgs_0: Record<string, import("src/lib").DeviceState>) => import("src/lib").DeviceState;
14
+ memoizedResultFunc: ((resultFuncArgs_0: Record<string, import("src/lib").DeviceState>) => import("src/lib").DeviceState) & {
15
+ clearCache: () => void;
16
+ resultsCount: () => number;
17
+ resetResultsCount: () => void;
18
+ };
19
+ lastResult: () => import("src/lib").DeviceState;
20
+ dependencies: [(state: RootState) => Record<string, import("src/lib").DeviceState>];
21
+ recomputations: () => number;
22
+ resetRecomputations: () => void;
23
+ dependencyRecomputations: () => number;
24
+ resetDependencyRecomputations: () => void;
25
+ } & {
26
+ argsMemoize: typeof import("reselect").weakMapMemoize;
27
+ memoize: typeof import("reselect").weakMapMemoize;
28
+ };
29
+ export declare const selectDeviceByKey: (deviceKey: string) => ((state: {
30
+ appConfig: import("../appConfig/appConfig.slice").AppConfigState;
31
+ runtimeConfig: import("../runtimeConfig/runtimeConfig.slice").RuntimeConfigState;
32
+ rooms: Record<string, import("src/lib").RoomState>;
33
+ devices: Record<string, import("src/lib").DeviceState>;
34
+ ui: import("src/lib").UiConfigState;
35
+ }) => import("src/lib").DeviceState | undefined) & {
36
+ clearCache: () => void;
37
+ resultsCount: () => number;
38
+ resetResultsCount: () => void;
39
+ } & {
40
+ resultFunc: (resultFuncArgs_0: Record<string, import("src/lib").DeviceState>) => import("src/lib").DeviceState | undefined;
41
+ memoizedResultFunc: ((resultFuncArgs_0: Record<string, import("src/lib").DeviceState>) => import("src/lib").DeviceState | undefined) & {
42
+ clearCache: () => void;
43
+ resultsCount: () => number;
44
+ resetResultsCount: () => void;
45
+ };
46
+ lastResult: () => import("src/lib").DeviceState | undefined;
47
+ dependencies: [(state: RootState) => Record<string, import("src/lib").DeviceState>];
48
+ recomputations: () => number;
49
+ resetRecomputations: () => void;
50
+ dependencyRecomputations: () => number;
51
+ resetDependencyRecomputations: () => void;
52
+ } & {
53
+ argsMemoize: typeof import("reselect").weakMapMemoize;
54
+ memoize: typeof import("reselect").weakMapMemoize;
55
+ };
56
+ //# sourceMappingURL=devices.hooks.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"devices.hooks.d.ts","sourceRoot":"","sources":["../../../src/lib/store/devices/devices.hooks.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAKpC,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;2BAFM,SAAS;;;;;;;;CAK3C,CAAC;AAEF,eAAO,MAAM,iBAAiB,cAAe,MAAM;;;;;;;;;;;;;;;;;;2BAPhB,SAAS;;;;;;;;CAU3C,CAAC"}
@@ -0,0 +1,13 @@
1
+ import { DeviceState } from 'src/lib';
2
+ /**
3
+ * Selector for all devices
4
+ * @returns Record<string, DeviceState>
5
+ */
6
+ export declare const useGetAllDevices: () => DeviceState;
7
+ /**
8
+ * Selector for a single device
9
+ * @param deviceKey
10
+ * @returns DeviceState or undefined
11
+ */
12
+ export declare function useGetDevice<T extends DeviceState = DeviceState>(deviceKey: string): T | undefined;
13
+ //# sourceMappingURL=devices.selectors.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"devices.selectors.d.ts","sourceRoot":"","sources":["../../../src/lib/store/devices/devices.selectors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAKtC;;;GAGG;AACH,eAAO,MAAM,gBAAgB,mBAE5B,CAAA;AAED;;;;GAIG;AACH,wBAAgB,YAAY,CAAC,CAAC,SAAS,WAAW,GAAG,WAAW,EAAE,SAAS,EAAE,MAAM,GAAG,CAAC,GAAG,SAAS,CAElG"}
@@ -1,39 +1,8 @@
1
- import { PayloadAction } from '@reduxjs/toolkit';
2
1
  import { Message } from '../../types';
3
2
  import { DeviceState } from '../../types/state/state';
4
- export declare const devicesActions: import("@reduxjs/toolkit").CaseReducerActions<{
5
- setDeviceState(state: {
6
- [x: string]: {
7
- key: string;
8
- name: string;
9
- messageType?: string | undefined;
10
- eventType?: string | undefined;
11
- content?: unknown;
12
- interfaces: string[];
13
- commMonitor?: {
14
- isOnline: boolean;
15
- status: import("../../types").MonitorStatus;
16
- } | undefined;
17
- state: unknown;
18
- Name: string;
19
- };
20
- }, action: PayloadAction<Message>): {
21
- [x: string]: {
22
- key: string;
23
- name: string;
24
- messageType?: string | undefined;
25
- eventType?: string | undefined;
26
- content?: unknown;
27
- interfaces: string[];
28
- commMonitor?: {
29
- isOnline: boolean;
30
- status: import("../../types").MonitorStatus;
31
- } | undefined;
32
- state: unknown;
33
- Name: string;
34
- };
35
- } | undefined;
36
- clearDevices(): Record<string, DeviceState>;
37
- }, "devices">;
3
+ export declare const devicesActions: {
4
+ setDeviceState: import("@reduxjs/toolkit").ActionCreatorWithPayload<Message, "devices/setDeviceState">;
5
+ clearDevices: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"devices/clearDevices">;
6
+ };
38
7
  export declare const devicesReducer: import("redux").Reducer<Record<string, DeviceState>>;
39
8
  //# sourceMappingURL=devices.slice.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"devices.slice.d.ts","sourceRoot":"","sources":["../../../src/lib/store/devices/devices.slice.ts"],"names":[],"mappings":"AAAA,OAAO,EAAe,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAE9D,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAuCtD,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;eA9BU,cAAc,OAAO,CAAC;;;;;;;;;;;;;;;;;aA8BT,CAAC;AACnD,eAAO,MAAM,cAAc,sDAAwB,CAAC"}
1
+ {"version":3,"file":"devices.slice.d.ts","sourceRoot":"","sources":["../../../src/lib/store/devices/devices.slice.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAwCtD,eAAO,MAAM,cAAc;;;CAG1B,CAAC;AACF,eAAO,MAAM,cAAc,sDAAuB,CAAC"}
@@ -1,9 +1,9 @@
1
- export * from './appConfig/appConfigSelectors';
2
- export * from './devices/devicesSelectors';
3
- export * from './rooms/roomsSelectors';
4
- export * from './runtimeConfig/runtimeSelectors';
1
+ export * from './appConfig/appConfig.selectors';
2
+ export * from './devices/devices.selectors';
3
+ export * from './rooms/rooms.selectors';
4
+ export * from './runtimeConfig/runtime.selectors';
5
5
  export * from './ui/uiSelectors';
6
- export * from './ui/ui.slice';
7
6
  export * from './hooks';
7
+ export * from './ui/ui.slice';
8
8
  export * from './store';
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/lib/store/index.ts"],"names":[],"mappings":"AAEA,cAAc,gCAAgC,CAAC;AAC/C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,kCAAkC,CAAC;AACjD,cAAc,kBAAkB,CAAC;AAEjC,cAAc,eAAe,CAAC;AAC9B,cAAc,SAAS,CAAC;AAExB,cAAc,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/lib/store/index.ts"],"names":[],"mappings":"AAEA,cAAc,iCAAiC,CAAC;AAChD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,yBAAyB,CAAC;AACxC,cAAc,mCAAmC,CAAC;AAClD,cAAc,kBAAkB,CAAC;AAEjC,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAE9B,cAAc,SAAS,CAAC"}