@soma-vertical-web/multi-lib 0.0.10 → 0.0.11
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/contexts/store/pdp.d.ts +24 -6
- package/index.js +11 -11
- package/index.mjs +1024 -999
- package/package.json +1 -1
- package/types/contexts/store/pdp.d.ts +16 -10
- package/types/data/events/index.d.ts +2 -11
package/contexts/store/pdp.d.ts
CHANGED
|
@@ -1,10 +1,28 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import { SelectedSkuInfoType } from '../../types/contexts/store/pdp';
|
|
2
|
+
|
|
3
|
+
export declare const resetAllPDPStores: () => void;
|
|
4
|
+
export declare const useGetPDPSelectedSkuInfo: () => SelectedSkuInfoType;
|
|
5
|
+
export declare const useActionsPDPSelectedSkuInfo: () => {
|
|
6
|
+
reset: () => void;
|
|
7
|
+
setValue: (value: SelectedSkuInfoType) => void;
|
|
8
|
+
};
|
|
3
9
|
export declare const useGetPDPOpenLetMeKnow: () => boolean;
|
|
4
|
-
export declare const
|
|
10
|
+
export declare const useActionsPDPOpenLetMeKnow: () => {
|
|
11
|
+
reset: () => void;
|
|
12
|
+
setValue: (value: boolean) => void;
|
|
13
|
+
};
|
|
5
14
|
export declare const useGetPDPShowNotify: () => boolean;
|
|
6
|
-
export declare const
|
|
15
|
+
export declare const useActionsPDPShowNotify: () => {
|
|
16
|
+
reset: () => void;
|
|
17
|
+
setValue: (value: boolean) => void;
|
|
18
|
+
};
|
|
7
19
|
export declare const useGetPDPShowBottomNavigation: () => boolean;
|
|
8
|
-
export declare const
|
|
20
|
+
export declare const useActionsPDPShowBottomNavigation: () => {
|
|
21
|
+
reset: () => void;
|
|
22
|
+
setValue: (value: boolean) => void;
|
|
23
|
+
};
|
|
9
24
|
export declare const useGetPDPOpenMeasurements: () => boolean;
|
|
10
|
-
export declare const
|
|
25
|
+
export declare const useActionsPDPOpenMeasurements: () => {
|
|
26
|
+
reset: () => void;
|
|
27
|
+
setValue: (value: boolean) => void;
|
|
28
|
+
};
|