hasting-swatchcart-module 1.0.16 → 1.0.18
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/LibraryProvider.d.ts +2 -4
- package/dist/cdn/lib/store/store.d.ts +12 -17
- package/dist/cdn/main.css +1 -1
- package/dist/cdn/main.js +23848 -9817
- package/dist/cdn/src/app/providers/StoreProvider.d.ts +3 -3
- package/dist/cdn/src/app/store/store.d.ts +10 -16
- package/dist/cdn/src/shared/ui/Markdown/MDWithAccordion.d.ts +10 -0
- package/dist/cdn/src/shared/ui/PopoverTooltip/PopoverTooltip.d.ts +11 -0
- package/dist/main.cjs +68 -47
- package/dist/main.cjs.map +1 -1
- package/dist/main.js +18193 -3874
- package/dist/main.js.map +1 -1
- package/dist/store/LibraryProvider.d.ts +2 -4
- package/dist/store/store.d.ts +12 -17
- package/package.json +102 -99
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
|
|
2
|
+
export declare function LibraryProvider({ children }: {
|
|
3
3
|
children: React.ReactNode;
|
|
4
|
-
}
|
|
5
|
-
export declare function LibraryProvider({ children }: ILibraryProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
export {};
|
|
4
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const createAppStore: () => import('@reduxjs/toolkit').EnhancedStore<{
|
|
1
|
+
export declare const getStore: () => import('@reduxjs/toolkit').EnhancedStore<{
|
|
3
2
|
swatches: import('../../src/features/swatches/model/types').ISwatchesSlice;
|
|
4
3
|
cart: import('../../src/features/Cart/model/types').CartState;
|
|
5
4
|
multiProductCart: import('../../src/features/MultiProduct/model/types').MultiProductState;
|
|
@@ -10,21 +9,17 @@ export declare const createAppStore: () => import('@reduxjs/toolkit').EnhancedSt
|
|
|
10
9
|
multiProductCart: import('../../src/features/MultiProduct/model/types').MultiProductState;
|
|
11
10
|
}, undefined, import('redux').UnknownAction>;
|
|
12
11
|
}>, import('redux').StoreEnhancer]>>;
|
|
13
|
-
|
|
14
|
-
export
|
|
15
|
-
export
|
|
12
|
+
type AppStore = ReturnType<typeof getStore>;
|
|
13
|
+
export type AppDispatch = AppStore['dispatch'];
|
|
14
|
+
export type RootState = ReturnType<AppStore['getState']>;
|
|
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
18
|
multiProductCart: import('../../src/features/MultiProduct/model/types').MultiProductState;
|
|
19
|
-
}, import('redux').UnknownAction
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}
|
|
26
|
-
export type RootState = ReturnType<AppStore['getState']>;
|
|
27
|
-
export type AppDispatch = AppStore['dispatch'];
|
|
28
|
-
export declare const useAppDispatch: () => AppDispatch;
|
|
29
|
-
export declare const useAppSelector: TypedUseSelectorHook<RootState>;
|
|
30
|
-
export default store;
|
|
19
|
+
}, undefined, import('redux').UnknownAction> & import('redux').Dispatch<import('redux').UnknownAction>>;
|
|
20
|
+
export declare const useAppSelector: import('react-redux').UseSelector<{
|
|
21
|
+
swatches: import('../../src/features/swatches/model/types').ISwatchesSlice;
|
|
22
|
+
cart: import('../../src/features/Cart/model/types').CartState;
|
|
23
|
+
multiProductCart: import('../../src/features/MultiProduct/model/types').MultiProductState;
|
|
24
|
+
}>;
|
|
25
|
+
export {};
|