hasting-swatchcart-module 1.0.31 → 1.0.32
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.
- package/dist/assets/index.css +1 -1
- package/dist/cdn/lib/store/rootReducer.d.ts +2 -2
- package/dist/cdn/lib/store/store.d.ts +4 -4
- package/dist/cdn/main.css +1 -1
- package/dist/cdn/main.js +2601 -2577
- package/dist/cdn/src/app/store/rootReducer.d.ts +2 -2
- package/dist/cdn/src/app/store/store.d.ts +4 -4
- package/dist/cdn/src/features/Cart/model/selectors.d.ts +9 -9
- package/dist/cdn/src/features/MultiProduct/model/multiProductCartSlice.d.ts +2 -2
- package/dist/cdn/src/features/MultiProduct/model/selectors.d.ts +1 -1
- package/dist/cdn/src/features/MultiProduct/model/types.d.ts +1 -1
- package/dist/main.cjs +28 -28
- package/dist/main.cjs.map +1 -1
- package/dist/main.js +1919 -1895
- package/dist/main.js.map +1 -1
- package/dist/store/rootReducer.d.ts +2 -2
- package/dist/store/store.d.ts +4 -4
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
declare const rootReducer: import('redux').Reducer<{
|
|
2
2
|
swatches: import('../../src/features/swatches/model/types').ISwatchesSlice;
|
|
3
3
|
cart: import('../../src/features/Cart/model/types').CartState;
|
|
4
|
-
multiProductCart: import('../../src/features/MultiProduct/model/types').
|
|
4
|
+
multiProductCart: import('../../src/features/MultiProduct/model/types').IMultiProductState;
|
|
5
5
|
}, import('redux').UnknownAction, Partial<{
|
|
6
6
|
swatches: import('../../src/features/swatches/model/types').ISwatchesSlice | undefined;
|
|
7
7
|
cart: import('../../src/features/Cart/model/types').CartState | undefined;
|
|
8
|
-
multiProductCart: import('../../src/features/MultiProduct/model/types').
|
|
8
|
+
multiProductCart: import('../../src/features/MultiProduct/model/types').IMultiProductState | undefined;
|
|
9
9
|
}>>;
|
|
10
10
|
export type RootState = ReturnType<typeof rootReducer>;
|
|
11
11
|
export default rootReducer;
|
package/dist/store/store.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export declare const getStore: () => import('@reduxjs/toolkit').EnhancedStore<{
|
|
2
2
|
swatches: import('../../src/features/swatches/model/types').ISwatchesSlice;
|
|
3
3
|
cart: import('../../src/features/Cart/model/types').CartState;
|
|
4
|
-
multiProductCart: import('../../src/features/MultiProduct/model/types').
|
|
4
|
+
multiProductCart: import('../../src/features/MultiProduct/model/types').IMultiProductState;
|
|
5
5
|
}, import('redux').UnknownAction, import('@reduxjs/toolkit').Tuple<[import('redux').StoreEnhancer<{
|
|
6
6
|
dispatch: import('redux-thunk').ThunkDispatch<{
|
|
7
7
|
swatches: import('../../src/features/swatches/model/types').ISwatchesSlice;
|
|
8
8
|
cart: import('../../src/features/Cart/model/types').CartState;
|
|
9
|
-
multiProductCart: import('../../src/features/MultiProduct/model/types').
|
|
9
|
+
multiProductCart: import('../../src/features/MultiProduct/model/types').IMultiProductState;
|
|
10
10
|
}, undefined, import('redux').UnknownAction>;
|
|
11
11
|
}>, import('redux').StoreEnhancer]>>;
|
|
12
12
|
type AppStore = ReturnType<typeof getStore>;
|
|
@@ -15,11 +15,11 @@ export type RootState = ReturnType<AppStore['getState']>;
|
|
|
15
15
|
export declare const useAppDispatch: import('react-redux').UseDispatch<import('redux-thunk').ThunkDispatch<{
|
|
16
16
|
swatches: import('../../src/features/swatches/model/types').ISwatchesSlice;
|
|
17
17
|
cart: import('../../src/features/Cart/model/types').CartState;
|
|
18
|
-
multiProductCart: import('../../src/features/MultiProduct/model/types').
|
|
18
|
+
multiProductCart: import('../../src/features/MultiProduct/model/types').IMultiProductState;
|
|
19
19
|
}, undefined, import('redux').UnknownAction> & import('redux').Dispatch<import('redux').UnknownAction>>;
|
|
20
20
|
export declare const useAppSelector: import('react-redux').UseSelector<{
|
|
21
21
|
swatches: import('../../src/features/swatches/model/types').ISwatchesSlice;
|
|
22
22
|
cart: import('../../src/features/Cart/model/types').CartState;
|
|
23
|
-
multiProductCart: import('../../src/features/MultiProduct/model/types').
|
|
23
|
+
multiProductCart: import('../../src/features/MultiProduct/model/types').IMultiProductState;
|
|
24
24
|
}>;
|
|
25
25
|
export {};
|