@acvl/frontend-components 0.0.5 → 0.0.6
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/cjs/index.js +15 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/src/components/v1/lib/hooks/navigation.d.ts +4 -1
- package/dist/esm/index.js +15 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/src/components/v1/lib/hooks/navigation.d.ts +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -617,7 +617,10 @@ declare const APIProvider: ({ children, hooks }: {
|
|
|
617
617
|
|
|
618
618
|
declare const useAPI: () => APIcontextProps;
|
|
619
619
|
|
|
620
|
-
declare const useNavigation: () =>
|
|
620
|
+
declare const useNavigation: () => {
|
|
621
|
+
push: any;
|
|
622
|
+
back: any;
|
|
623
|
+
};
|
|
621
624
|
|
|
622
625
|
interface NavigationContextProps {
|
|
623
626
|
children: ReactNode;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acvl/frontend-components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Component library for ACV frontend projects.",
|
|
5
5
|
"homepage": "https://github.com/ACV-Logistics/acv-frontend-components#readme",
|
|
6
6
|
"access": "public",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@rollup/plugin-terser": "^1.0.0",
|
|
35
35
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
36
36
|
"@types/lodash": "^4.17.24",
|
|
37
|
-
"@types/node": "^25.
|
|
37
|
+
"@types/node": "^25.6.0",
|
|
38
38
|
"@types/react": "^19.2.14",
|
|
39
39
|
"@types/rollup-plugin-peer-deps-external": "^2.2.6",
|
|
40
40
|
"postcss": "^8.5.8",
|