@configura/web-ui 2.4.1 → 3.0.0-alpha.0
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/useCatParams.d.ts +5 -5
- package/package.json +3 -3
package/dist/useCatParams.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DtoCatalogueParams, DtoCatalogueParamsWithLang, DtoProductParams, DtoProductParamsWithLang } from "@configura/web-api";
|
|
2
2
|
/**
|
|
3
3
|
* Returns a memozied version of the catParams
|
|
4
4
|
*/
|
|
5
|
-
export declare function useMemoCatalogueParams(catParams:
|
|
5
|
+
export declare function useMemoCatalogueParams(catParams: DtoCatalogueParams): DtoCatalogueParams;
|
|
6
6
|
/**
|
|
7
7
|
* Returns a memozied version of the catParams
|
|
8
8
|
*/
|
|
9
|
-
export declare function useMemoCatalogueParamsWithLang(catParams:
|
|
9
|
+
export declare function useMemoCatalogueParamsWithLang(catParams: DtoCatalogueParamsWithLang): DtoCatalogueParamsWithLang;
|
|
10
10
|
/**
|
|
11
11
|
* Returns a memozied version of the prodParams
|
|
12
12
|
*/
|
|
13
|
-
export declare function useMemoProductParams(prodParams:
|
|
13
|
+
export declare function useMemoProductParams(prodParams: DtoProductParams): DtoProductParams;
|
|
14
14
|
/**
|
|
15
15
|
* Returns a memozied version of the prodParams
|
|
16
16
|
*/
|
|
17
|
-
export declare function useMemoProductParamsWithLang(prodParams:
|
|
17
|
+
export declare function useMemoProductParamsWithLang(prodParams: DtoProductParamsWithLang): DtoProductParamsWithLang;
|
|
18
18
|
//# sourceMappingURL=useCatParams.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@configura/web-ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-alpha.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
]
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@configura/web-api": "
|
|
35
|
+
"@configura/web-api": "3.0.0-alpha.0",
|
|
36
36
|
"uuid": "^8.3.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"access": "public"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "9fe91599222572a8625a70c03d745f1f2e5eb85b"
|
|
68
68
|
}
|