redux-connected-devtools 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. package/dist/dts/components/DevInspector/DevInspector.d.ts +1 -2
  2. package/dist/dts/components/DevList/DevList.d.ts +1 -1
  3. package/dist/dts/components/DevMenu/DevMenu.d.ts +1 -2
  4. package/dist/dts/components/DevPanel/DevPanel.d.ts +1 -2
  5. package/dist/dts/components/DevtoolsApp/DevtoolsApp.d.ts +1 -2
  6. package/dist/dts/components/Icon/AllIcons.d.ts +3 -3
  7. package/dist/dts/components/Icon/Icon.d.ts +1 -2
  8. package/dist/dts/components/JourneyRow/JourneyRow.d.ts +1 -2
  9. package/dist/dts/components/JsonViewer/JsonViewer.d.ts +1 -2
  10. package/dist/dts/components/Lifecycle/Lifecycle.d.ts +1 -2
  11. package/dist/dts/components/RequestDetails/RequestDetails.d.ts +1 -2
  12. package/dist/dts/components/RequestJourney/RequestJourney.d.ts +1 -2
  13. package/dist/dts/components/RequestRow/RequestRow.d.ts +1 -2
  14. package/dist/dts/components/Size/Size.d.ts +1 -2
  15. package/dist/dts/components/Time/Time.d.ts +1 -2
  16. package/dist/dts/containers/DevMenuContainer.d.ts +1 -2
  17. package/dist/dts/containers/DevPanelContainer.d.ts +1 -2
  18. package/dist/dts/containers/DevtoolsAppContainer.d.ts +1 -2
  19. package/dist/dts/containers/EndpointConfigsContainer.d.ts +0 -1
  20. package/dist/dts/containers/EndpointStatusContainer.d.ts +0 -1
  21. package/dist/dts/containers/GlobalSettingsContainer.d.ts +0 -1
  22. package/dist/dts/containers/GlobalStatsContainer.d.ts +0 -1
  23. package/dist/dts/containers/LifecycleApiErrorContainer.d.ts +0 -1
  24. package/dist/dts/containers/LifecycleFailedContainer.d.ts +0 -1
  25. package/dist/dts/containers/LifecycleGeneralErrorContainer.d.ts +0 -1
  26. package/dist/dts/containers/LifecycleInQueueContainer.d.ts +0 -1
  27. package/dist/dts/containers/LifecyclePendingApiContainer.d.ts +0 -1
  28. package/dist/dts/containers/LifecyclePostActionContainer.d.ts +0 -1
  29. package/dist/dts/containers/LifecycleReceivedContainer.d.ts +0 -1
  30. package/dist/dts/data/devComponents.d.ts +1 -1
  31. package/dist/dts/data/devRoutes.d.ts +1 -1
  32. package/dist/dts/hooks/useStoreSize.d.ts +1 -1
  33. package/dist/dts/store/selectors.d.ts +55 -55
  34. package/package.json +3 -3
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  import { ApiRequest } from 'redux-connected';
3
- export declare type DevInspectorProps = {
2
+ export type DevInspectorProps = {
4
3
  item?: ApiRequest;
5
4
  };
6
5
  export declare function DevInspector(props: DevInspectorProps): JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- export declare type DevListProps = {
2
+ export type DevListProps = {
3
3
  items: Json[];
4
4
  row: React.FC<any>;
5
5
  selectedRow: any;
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  import { IDevRoute } from '../../data/devRoutes';
3
- export declare type DevMenuProps = {
2
+ export type DevMenuProps = {
4
3
  groups: string[];
5
4
  items: IDevRoute[];
6
5
  onClick: (route: IDevRoute) => void;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
- export declare type DevPanelProps = {
1
+ export type DevPanelProps = {
3
2
  children: JSX.Element | JSX.Element[];
4
3
  };
5
4
  export declare function DevPanel(props: DevPanelProps): JSX.Element;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
- export declare type DevtoolsAppProps = {
1
+ export type DevtoolsAppProps = {
3
2
  connectedStore: any;
4
3
  clearRequests: () => void;
5
4
  downloadState: () => void;
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
- export declare type IconName = 'download' | 'close' | 'clearAll';
3
- declare type IconProps = {
2
+ export type IconName = 'download' | 'close' | 'clearAll';
3
+ type IconProps = {
4
4
  size?: number;
5
5
  };
6
- declare type Icons = Record<IconName, React.FC<IconProps>>;
6
+ type Icons = Record<IconName, React.FC<IconProps>>;
7
7
  export declare const allIcons: Icons;
8
8
  export {};
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  import { IconName } from './AllIcons';
3
- export declare type IconProps = {
2
+ export type IconProps = {
4
3
  name: IconName;
5
4
  color?: string;
6
5
  size?: number;
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  import { JourneyPoint } from 'redux-connected';
3
- export declare type JourneyRowProps = {
2
+ export type JourneyRowProps = {
4
3
  point: JourneyPoint;
5
4
  };
6
5
  export declare function JourneyRow(props: JourneyRowProps): JSX.Element;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
- export declare type JsonViewerProps = {
1
+ export type JsonViewerProps = {
3
2
  json: Json | undefined;
4
3
  width?: number;
5
4
  };
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  import { ApiRequest } from 'redux-connected';
3
- export declare type LifecycleProps = {
2
+ export type LifecycleProps = {
4
3
  requests: ApiRequest[];
5
4
  };
6
5
  export declare function Lifecycle(props: LifecycleProps): JSX.Element;
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  import { ApiRequest } from 'redux-connected';
3
- export declare type RequestDetailsProps = {
2
+ export type RequestDetailsProps = {
4
3
  item: ApiRequest;
5
4
  };
6
5
  export declare function RequestDetails(props: RequestDetailsProps): JSX.Element;
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  import { ApiRequest } from 'redux-connected';
3
- export declare type RequestJourneyProps = {
2
+ export type RequestJourneyProps = {
4
3
  item: ApiRequest;
5
4
  };
6
5
  export declare function RequestJourney(props: RequestJourneyProps): JSX.Element;
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  import { ApiRequest } from 'redux-connected';
3
- export declare type RequestRowProps = {
2
+ export type RequestRowProps = {
4
3
  style: Json;
5
4
  item: ApiRequest;
6
5
  index: number;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
- export declare type SizeProps = {
1
+ export type SizeProps = {
3
2
  size?: number;
4
3
  };
5
4
  export declare function Size(props: SizeProps): JSX.Element;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
- export declare type TimeProps = {
1
+ export type TimeProps = {
3
2
  value: number;
4
3
  };
5
4
  export declare function Time(props: TimeProps): JSX.Element;
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  import { IDevRoute } from '../data/devRoutes';
3
- declare type DevPanelProps = {
2
+ type DevPanelProps = {
4
3
  selectedId: string;
5
4
  onClick: (route: IDevRoute) => void;
6
5
  };
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
- declare type DevPanelProps = {
1
+ type DevPanelProps = {
3
2
  children: JSX.Element | JSX.Element[];
4
3
  };
5
4
  export declare function DevPanelContainer(props: DevPanelProps): JSX.Element;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
- export declare type DevtoolsAppProps = {
1
+ export type DevtoolsAppProps = {
3
2
  connectedStore: any;
4
3
  isDarkMode?: boolean;
5
4
  };
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  export declare function EndpointConfigsContainer(): JSX.Element;
3
2
  export default EndpointConfigsContainer;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  export declare function EndpointStatusContainer(): JSX.Element;
3
2
  export default EndpointStatusContainer;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  export declare function GlobalSettingsContainer(): JSX.Element;
3
2
  export default GlobalSettingsContainer;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  export declare function GlobalStatsContainer(): JSX.Element;
3
2
  export default GlobalStatsContainer;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  export declare function LifecycleApiErrorContainer(): JSX.Element;
3
2
  export default LifecycleApiErrorContainer;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  export declare function LifecycleFailedContainer(): JSX.Element;
3
2
  export default LifecycleFailedContainer;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  export declare function LifecycleGeneralErrorContainer(): JSX.Element;
3
2
  export default LifecycleGeneralErrorContainer;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  export declare function LifecycleInQueueContainer(): JSX.Element;
3
2
  export default LifecycleInQueueContainer;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  export declare function LifecyclePendingApiContainer(): JSX.Element;
3
2
  export default LifecyclePendingApiContainer;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  export declare function LifecyclePostActionContainer(): JSX.Element;
3
2
  export default LifecyclePostActionContainer;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  export declare function LifecycleReceivedContainer(): JSX.Element;
3
2
  export default LifecycleReceivedContainer;
@@ -1,4 +1,4 @@
1
1
  /// <reference types="react" />
2
- declare type DevComponents = Record<string, React.FC<any>>;
2
+ type DevComponents = Record<string, React.FC<any>>;
3
3
  export declare const devComponents: DevComponents;
4
4
  export {};
@@ -1,4 +1,4 @@
1
- export declare type IDevRoute = {
1
+ export type IDevRoute = {
2
2
  id: string;
3
3
  title: string;
4
4
  group: string;
@@ -1,4 +1,4 @@
1
- declare type Callback = () => void;
1
+ type Callback = () => void;
2
2
  interface ReduxStore {
3
3
  getState: () => Json;
4
4
  subscribe: (callback: Callback) => void;
@@ -7,7 +7,7 @@ export declare const $requests: ((state: {
7
7
  id: string;
8
8
  timestamp: number;
9
9
  status: LifecycleStatus;
10
- data?: Json | undefined;
10
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
11
11
  }[];
12
12
  lastPointTimestamp: number;
13
13
  lastPointStatus: LifecycleStatus;
@@ -45,7 +45,7 @@ export declare const $requests: ((state: {
45
45
  id: string;
46
46
  timestamp: number;
47
47
  status: LifecycleStatus;
48
- data?: Json | undefined;
48
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
49
49
  }[];
50
50
  lastPointTimestamp: number;
51
51
  lastPointStatus: LifecycleStatus;
@@ -90,7 +90,7 @@ export declare const $requestsReceived: ((state: {
90
90
  id: string;
91
91
  timestamp: number;
92
92
  status: LifecycleStatus;
93
- data?: Json | undefined;
93
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
94
94
  }[];
95
95
  lastPointTimestamp: number;
96
96
  lastPointStatus: LifecycleStatus;
@@ -128,7 +128,7 @@ export declare const $requestsReceived: ((state: {
128
128
  id: string;
129
129
  timestamp: number;
130
130
  status: LifecycleStatus;
131
- data?: Json | undefined;
131
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
132
132
  }[];
133
133
  lastPointTimestamp: number;
134
134
  lastPointStatus: LifecycleStatus;
@@ -166,7 +166,7 @@ export declare const $requestsReceived: ((state: {
166
166
  id: string;
167
167
  timestamp: number;
168
168
  status: LifecycleStatus;
169
- data?: Json | undefined;
169
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
170
170
  }[];
171
171
  lastPointTimestamp: number;
172
172
  lastPointStatus: LifecycleStatus;
@@ -211,7 +211,7 @@ export declare const $requestsReceivedPast: ((state: {
211
211
  id: string;
212
212
  timestamp: number;
213
213
  status: LifecycleStatus;
214
- data?: Json | undefined;
214
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
215
215
  }[];
216
216
  lastPointTimestamp: number;
217
217
  lastPointStatus: LifecycleStatus;
@@ -249,7 +249,7 @@ export declare const $requestsReceivedPast: ((state: {
249
249
  id: string;
250
250
  timestamp: number;
251
251
  status: LifecycleStatus;
252
- data?: Json | undefined;
252
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
253
253
  }[];
254
254
  lastPointTimestamp: number;
255
255
  lastPointStatus: LifecycleStatus;
@@ -287,7 +287,7 @@ export declare const $requestsReceivedPast: ((state: {
287
287
  id: string;
288
288
  timestamp: number;
289
289
  status: LifecycleStatus;
290
- data?: Json | undefined;
290
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
291
291
  }[];
292
292
  lastPointTimestamp: number;
293
293
  lastPointStatus: LifecycleStatus;
@@ -332,7 +332,7 @@ export declare const $requestsInQueue: ((state: {
332
332
  id: string;
333
333
  timestamp: number;
334
334
  status: LifecycleStatus;
335
- data?: Json | undefined;
335
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
336
336
  }[];
337
337
  lastPointTimestamp: number;
338
338
  lastPointStatus: LifecycleStatus;
@@ -370,7 +370,7 @@ export declare const $requestsInQueue: ((state: {
370
370
  id: string;
371
371
  timestamp: number;
372
372
  status: LifecycleStatus;
373
- data?: Json | undefined;
373
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
374
374
  }[];
375
375
  lastPointTimestamp: number;
376
376
  lastPointStatus: LifecycleStatus;
@@ -408,7 +408,7 @@ export declare const $requestsInQueue: ((state: {
408
408
  id: string;
409
409
  timestamp: number;
410
410
  status: LifecycleStatus;
411
- data?: Json | undefined;
411
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
412
412
  }[];
413
413
  lastPointTimestamp: number;
414
414
  lastPointStatus: LifecycleStatus;
@@ -453,7 +453,7 @@ export declare const $requestsInQueuePast: ((state: {
453
453
  id: string;
454
454
  timestamp: number;
455
455
  status: LifecycleStatus;
456
- data?: Json | undefined;
456
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
457
457
  }[];
458
458
  lastPointTimestamp: number;
459
459
  lastPointStatus: LifecycleStatus;
@@ -491,7 +491,7 @@ export declare const $requestsInQueuePast: ((state: {
491
491
  id: string;
492
492
  timestamp: number;
493
493
  status: LifecycleStatus;
494
- data?: Json | undefined;
494
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
495
495
  }[];
496
496
  lastPointTimestamp: number;
497
497
  lastPointStatus: LifecycleStatus;
@@ -529,7 +529,7 @@ export declare const $requestsInQueuePast: ((state: {
529
529
  id: string;
530
530
  timestamp: number;
531
531
  status: LifecycleStatus;
532
- data?: Json | undefined;
532
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
533
533
  }[];
534
534
  lastPointTimestamp: number;
535
535
  lastPointStatus: LifecycleStatus;
@@ -574,7 +574,7 @@ export declare const $requestsPendingApi: ((state: {
574
574
  id: string;
575
575
  timestamp: number;
576
576
  status: LifecycleStatus;
577
- data?: Json | undefined;
577
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
578
578
  }[];
579
579
  lastPointTimestamp: number;
580
580
  lastPointStatus: LifecycleStatus;
@@ -612,7 +612,7 @@ export declare const $requestsPendingApi: ((state: {
612
612
  id: string;
613
613
  timestamp: number;
614
614
  status: LifecycleStatus;
615
- data?: Json | undefined;
615
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
616
616
  }[];
617
617
  lastPointTimestamp: number;
618
618
  lastPointStatus: LifecycleStatus;
@@ -650,7 +650,7 @@ export declare const $requestsPendingApi: ((state: {
650
650
  id: string;
651
651
  timestamp: number;
652
652
  status: LifecycleStatus;
653
- data?: Json | undefined;
653
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
654
654
  }[];
655
655
  lastPointTimestamp: number;
656
656
  lastPointStatus: LifecycleStatus;
@@ -695,7 +695,7 @@ export declare const $requestsPendingApiPast: ((state: {
695
695
  id: string;
696
696
  timestamp: number;
697
697
  status: LifecycleStatus;
698
- data?: Json | undefined;
698
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
699
699
  }[];
700
700
  lastPointTimestamp: number;
701
701
  lastPointStatus: LifecycleStatus;
@@ -733,7 +733,7 @@ export declare const $requestsPendingApiPast: ((state: {
733
733
  id: string;
734
734
  timestamp: number;
735
735
  status: LifecycleStatus;
736
- data?: Json | undefined;
736
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
737
737
  }[];
738
738
  lastPointTimestamp: number;
739
739
  lastPointStatus: LifecycleStatus;
@@ -771,7 +771,7 @@ export declare const $requestsPendingApiPast: ((state: {
771
771
  id: string;
772
772
  timestamp: number;
773
773
  status: LifecycleStatus;
774
- data?: Json | undefined;
774
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
775
775
  }[];
776
776
  lastPointTimestamp: number;
777
777
  lastPointStatus: LifecycleStatus;
@@ -816,7 +816,7 @@ export declare const $requestsPostAction: ((state: {
816
816
  id: string;
817
817
  timestamp: number;
818
818
  status: LifecycleStatus;
819
- data?: Json | undefined;
819
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
820
820
  }[];
821
821
  lastPointTimestamp: number;
822
822
  lastPointStatus: LifecycleStatus;
@@ -854,7 +854,7 @@ export declare const $requestsPostAction: ((state: {
854
854
  id: string;
855
855
  timestamp: number;
856
856
  status: LifecycleStatus;
857
- data?: Json | undefined;
857
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
858
858
  }[];
859
859
  lastPointTimestamp: number;
860
860
  lastPointStatus: LifecycleStatus;
@@ -892,7 +892,7 @@ export declare const $requestsPostAction: ((state: {
892
892
  id: string;
893
893
  timestamp: number;
894
894
  status: LifecycleStatus;
895
- data?: Json | undefined;
895
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
896
896
  }[];
897
897
  lastPointTimestamp: number;
898
898
  lastPointStatus: LifecycleStatus;
@@ -937,7 +937,7 @@ export declare const $requestsPostActionPast: ((state: {
937
937
  id: string;
938
938
  timestamp: number;
939
939
  status: LifecycleStatus;
940
- data?: Json | undefined;
940
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
941
941
  }[];
942
942
  lastPointTimestamp: number;
943
943
  lastPointStatus: LifecycleStatus;
@@ -975,7 +975,7 @@ export declare const $requestsPostActionPast: ((state: {
975
975
  id: string;
976
976
  timestamp: number;
977
977
  status: LifecycleStatus;
978
- data?: Json | undefined;
978
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
979
979
  }[];
980
980
  lastPointTimestamp: number;
981
981
  lastPointStatus: LifecycleStatus;
@@ -1013,7 +1013,7 @@ export declare const $requestsPostActionPast: ((state: {
1013
1013
  id: string;
1014
1014
  timestamp: number;
1015
1015
  status: LifecycleStatus;
1016
- data?: Json | undefined;
1016
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1017
1017
  }[];
1018
1018
  lastPointTimestamp: number;
1019
1019
  lastPointStatus: LifecycleStatus;
@@ -1058,7 +1058,7 @@ export declare const $requestsGeneralError: ((state: {
1058
1058
  id: string;
1059
1059
  timestamp: number;
1060
1060
  status: LifecycleStatus;
1061
- data?: Json | undefined;
1061
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1062
1062
  }[];
1063
1063
  lastPointTimestamp: number;
1064
1064
  lastPointStatus: LifecycleStatus;
@@ -1096,7 +1096,7 @@ export declare const $requestsGeneralError: ((state: {
1096
1096
  id: string;
1097
1097
  timestamp: number;
1098
1098
  status: LifecycleStatus;
1099
- data?: Json | undefined;
1099
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1100
1100
  }[];
1101
1101
  lastPointTimestamp: number;
1102
1102
  lastPointStatus: LifecycleStatus;
@@ -1134,7 +1134,7 @@ export declare const $requestsGeneralError: ((state: {
1134
1134
  id: string;
1135
1135
  timestamp: number;
1136
1136
  status: LifecycleStatus;
1137
- data?: Json | undefined;
1137
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1138
1138
  }[];
1139
1139
  lastPointTimestamp: number;
1140
1140
  lastPointStatus: LifecycleStatus;
@@ -1179,7 +1179,7 @@ export declare const $requestsGeneralErrorPast: ((state: {
1179
1179
  id: string;
1180
1180
  timestamp: number;
1181
1181
  status: LifecycleStatus;
1182
- data?: Json | undefined;
1182
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1183
1183
  }[];
1184
1184
  lastPointTimestamp: number;
1185
1185
  lastPointStatus: LifecycleStatus;
@@ -1217,7 +1217,7 @@ export declare const $requestsGeneralErrorPast: ((state: {
1217
1217
  id: string;
1218
1218
  timestamp: number;
1219
1219
  status: LifecycleStatus;
1220
- data?: Json | undefined;
1220
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1221
1221
  }[];
1222
1222
  lastPointTimestamp: number;
1223
1223
  lastPointStatus: LifecycleStatus;
@@ -1255,7 +1255,7 @@ export declare const $requestsGeneralErrorPast: ((state: {
1255
1255
  id: string;
1256
1256
  timestamp: number;
1257
1257
  status: LifecycleStatus;
1258
- data?: Json | undefined;
1258
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1259
1259
  }[];
1260
1260
  lastPointTimestamp: number;
1261
1261
  lastPointStatus: LifecycleStatus;
@@ -1300,7 +1300,7 @@ export declare const $requestsApiError: ((state: {
1300
1300
  id: string;
1301
1301
  timestamp: number;
1302
1302
  status: LifecycleStatus;
1303
- data?: Json | undefined;
1303
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1304
1304
  }[];
1305
1305
  lastPointTimestamp: number;
1306
1306
  lastPointStatus: LifecycleStatus;
@@ -1338,7 +1338,7 @@ export declare const $requestsApiError: ((state: {
1338
1338
  id: string;
1339
1339
  timestamp: number;
1340
1340
  status: LifecycleStatus;
1341
- data?: Json | undefined;
1341
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1342
1342
  }[];
1343
1343
  lastPointTimestamp: number;
1344
1344
  lastPointStatus: LifecycleStatus;
@@ -1376,7 +1376,7 @@ export declare const $requestsApiError: ((state: {
1376
1376
  id: string;
1377
1377
  timestamp: number;
1378
1378
  status: LifecycleStatus;
1379
- data?: Json | undefined;
1379
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1380
1380
  }[];
1381
1381
  lastPointTimestamp: number;
1382
1382
  lastPointStatus: LifecycleStatus;
@@ -1421,7 +1421,7 @@ export declare const $requestsFailed: ((state: {
1421
1421
  id: string;
1422
1422
  timestamp: number;
1423
1423
  status: LifecycleStatus;
1424
- data?: Json | undefined;
1424
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1425
1425
  }[];
1426
1426
  lastPointTimestamp: number;
1427
1427
  lastPointStatus: LifecycleStatus;
@@ -1459,7 +1459,7 @@ export declare const $requestsFailed: ((state: {
1459
1459
  id: string;
1460
1460
  timestamp: number;
1461
1461
  status: LifecycleStatus;
1462
- data?: Json | undefined;
1462
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1463
1463
  }[];
1464
1464
  lastPointTimestamp: number;
1465
1465
  lastPointStatus: LifecycleStatus;
@@ -1497,7 +1497,7 @@ export declare const $requestsFailed: ((state: {
1497
1497
  id: string;
1498
1498
  timestamp: number;
1499
1499
  status: LifecycleStatus;
1500
- data?: Json | undefined;
1500
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1501
1501
  }[];
1502
1502
  lastPointTimestamp: number;
1503
1503
  lastPointStatus: LifecycleStatus;
@@ -1542,7 +1542,7 @@ export declare const $requestsApiErrorPast: ((state: {
1542
1542
  id: string;
1543
1543
  timestamp: number;
1544
1544
  status: LifecycleStatus;
1545
- data?: Json | undefined;
1545
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1546
1546
  }[];
1547
1547
  lastPointTimestamp: number;
1548
1548
  lastPointStatus: LifecycleStatus;
@@ -1580,7 +1580,7 @@ export declare const $requestsApiErrorPast: ((state: {
1580
1580
  id: string;
1581
1581
  timestamp: number;
1582
1582
  status: LifecycleStatus;
1583
- data?: Json | undefined;
1583
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1584
1584
  }[];
1585
1585
  lastPointTimestamp: number;
1586
1586
  lastPointStatus: LifecycleStatus;
@@ -1618,7 +1618,7 @@ export declare const $requestsApiErrorPast: ((state: {
1618
1618
  id: string;
1619
1619
  timestamp: number;
1620
1620
  status: LifecycleStatus;
1621
- data?: Json | undefined;
1621
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1622
1622
  }[];
1623
1623
  lastPointTimestamp: number;
1624
1624
  lastPointStatus: LifecycleStatus;
@@ -1671,7 +1671,7 @@ export declare const $menuBadges: ((state: {
1671
1671
  id: string;
1672
1672
  timestamp: number;
1673
1673
  status: LifecycleStatus;
1674
- data?: Json | undefined;
1674
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1675
1675
  }[];
1676
1676
  lastPointTimestamp: number;
1677
1677
  lastPointStatus: LifecycleStatus;
@@ -1709,7 +1709,7 @@ export declare const $menuBadges: ((state: {
1709
1709
  id: string;
1710
1710
  timestamp: number;
1711
1711
  status: LifecycleStatus;
1712
- data?: Json | undefined;
1712
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1713
1713
  }[];
1714
1714
  lastPointTimestamp: number;
1715
1715
  lastPointStatus: LifecycleStatus;
@@ -1747,7 +1747,7 @@ export declare const $menuBadges: ((state: {
1747
1747
  id: string;
1748
1748
  timestamp: number;
1749
1749
  status: LifecycleStatus;
1750
- data?: Json | undefined;
1750
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1751
1751
  }[];
1752
1752
  lastPointTimestamp: number;
1753
1753
  lastPointStatus: LifecycleStatus;
@@ -1785,7 +1785,7 @@ export declare const $menuBadges: ((state: {
1785
1785
  id: string;
1786
1786
  timestamp: number;
1787
1787
  status: LifecycleStatus;
1788
- data?: Json | undefined;
1788
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1789
1789
  }[];
1790
1790
  lastPointTimestamp: number;
1791
1791
  lastPointStatus: LifecycleStatus;
@@ -1823,7 +1823,7 @@ export declare const $menuBadges: ((state: {
1823
1823
  id: string;
1824
1824
  timestamp: number;
1825
1825
  status: LifecycleStatus;
1826
- data?: Json | undefined;
1826
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1827
1827
  }[];
1828
1828
  lastPointTimestamp: number;
1829
1829
  lastPointStatus: LifecycleStatus;
@@ -1861,7 +1861,7 @@ export declare const $menuBadges: ((state: {
1861
1861
  id: string;
1862
1862
  timestamp: number;
1863
1863
  status: LifecycleStatus;
1864
- data?: Json | undefined;
1864
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1865
1865
  }[];
1866
1866
  lastPointTimestamp: number;
1867
1867
  lastPointStatus: LifecycleStatus;
@@ -1899,7 +1899,7 @@ export declare const $menuBadges: ((state: {
1899
1899
  id: string;
1900
1900
  timestamp: number;
1901
1901
  status: LifecycleStatus;
1902
- data?: Json | undefined;
1902
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1903
1903
  }[];
1904
1904
  lastPointTimestamp: number;
1905
1905
  lastPointStatus: LifecycleStatus;
@@ -1960,7 +1960,7 @@ export declare const $menuBadgesTotal: ((state: {
1960
1960
  id: string;
1961
1961
  timestamp: number;
1962
1962
  status: LifecycleStatus;
1963
- data?: Json | undefined;
1963
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
1964
1964
  }[];
1965
1965
  lastPointTimestamp: number;
1966
1966
  lastPointStatus: LifecycleStatus;
@@ -1998,7 +1998,7 @@ export declare const $menuBadgesTotal: ((state: {
1998
1998
  id: string;
1999
1999
  timestamp: number;
2000
2000
  status: LifecycleStatus;
2001
- data?: Json | undefined;
2001
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
2002
2002
  }[];
2003
2003
  lastPointTimestamp: number;
2004
2004
  lastPointStatus: LifecycleStatus;
@@ -2036,7 +2036,7 @@ export declare const $menuBadgesTotal: ((state: {
2036
2036
  id: string;
2037
2037
  timestamp: number;
2038
2038
  status: LifecycleStatus;
2039
- data?: Json | undefined;
2039
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
2040
2040
  }[];
2041
2041
  lastPointTimestamp: number;
2042
2042
  lastPointStatus: LifecycleStatus;
@@ -2074,7 +2074,7 @@ export declare const $menuBadgesTotal: ((state: {
2074
2074
  id: string;
2075
2075
  timestamp: number;
2076
2076
  status: LifecycleStatus;
2077
- data?: Json | undefined;
2077
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
2078
2078
  }[];
2079
2079
  lastPointTimestamp: number;
2080
2080
  lastPointStatus: LifecycleStatus;
@@ -2112,7 +2112,7 @@ export declare const $menuBadgesTotal: ((state: {
2112
2112
  id: string;
2113
2113
  timestamp: number;
2114
2114
  status: LifecycleStatus;
2115
- data?: Json | undefined;
2115
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
2116
2116
  }[];
2117
2117
  lastPointTimestamp: number;
2118
2118
  lastPointStatus: LifecycleStatus;
@@ -2150,7 +2150,7 @@ export declare const $menuBadgesTotal: ((state: {
2150
2150
  id: string;
2151
2151
  timestamp: number;
2152
2152
  status: LifecycleStatus;
2153
- data?: Json | undefined;
2153
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
2154
2154
  }[];
2155
2155
  lastPointTimestamp: number;
2156
2156
  lastPointStatus: LifecycleStatus;
@@ -2188,7 +2188,7 @@ export declare const $menuBadgesTotal: ((state: {
2188
2188
  id: string;
2189
2189
  timestamp: number;
2190
2190
  status: LifecycleStatus;
2191
- data?: Json | undefined;
2191
+ data?: import("redux-connected/dist/dts/types").Json | undefined;
2192
2192
  }[];
2193
2193
  lastPointTimestamp: number;
2194
2194
  lastPointStatus: LifecycleStatus;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redux-connected-devtools",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "redux-connected-devtools",
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -25,11 +25,11 @@
25
25
  "dotenv-flow": "^3.2.0",
26
26
  "react-redux": "^7.2.6",
27
27
  "react-window": "^1.8.8",
28
- "redux-connected": "^0.0.103",
28
+ "redux-connected": "^0.0.105",
29
29
  "redux-store-generator": "^0.9.89",
30
30
  "reselect": "^4.1.5",
31
31
  "rollup-plugin-analyzer": "^4.0.0",
32
- "shared-base": "^0.0.27",
32
+ "shared-base": "^0.0.32",
33
33
  "styled-components": "^5.3.3",
34
34
  "tslib": "^2.3.1"
35
35
  },