@biblioteksentralen/react 1.0.0-beta.2 → 1.0.0-beta.4
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/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-test.log +1 -1
- package/.turbo/turbo-type-check.log +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +3 -3
- package/src/index.ts +2 -0
package/.turbo/turbo-build.log
CHANGED
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @biblioteksentralen/react@1.0.0-beta.
|
|
2
|
+
> @biblioteksentralen/react@1.0.0-beta.4 test /Users/jorgenfulsebakke/repos/js-utils/packages/react
|
|
3
3
|
> vitest --watch=false
|
|
4
4
|
|
|
5
5
|
[33mThe CJS build of Vite's Node API is deprecated. See https://vitejs.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated for more details.[39m
|
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,9 @@ export { HideWithCSS } from "./components/HideWithCSS";
|
|
|
6
6
|
export { Input } from "./components/Input";
|
|
7
7
|
export { Link } from "./components/Link";
|
|
8
8
|
export { VisuallyHidden } from "./components/VisuallyHidden";
|
|
9
|
+
export { BiblioteksentralenProvider } from "./BiblioteksentralenProvider";
|
|
9
10
|
export { ErrorBoundary } from "./components/ErrorBoundary";
|
|
10
11
|
export { HashLinkTarget } from "./components/HashLinkTarget";
|
|
11
12
|
export { withErrorBoundary } from "./components/withErrorBoundary";
|
|
13
|
+
export { colors } from "@biblioteksentralen/utils";
|
|
12
14
|
export { biblioteksentralenChakraTheme } from "./styles/chakraTheme/biblioteksentralenChakraTheme";
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,9 @@ export { HideWithCSS } from "./components/HideWithCSS"; // Overrides Chakras Hid
|
|
|
6
6
|
export { Input } from "./components/Input"; // Overrides Chakras Input
|
|
7
7
|
export { Link } from "./components/Link"; // Overrides Chakras Link
|
|
8
8
|
export { VisuallyHidden } from "./components/VisuallyHidden"; // Overrides Chakras VisuallyHidden
|
|
9
|
+
export { BiblioteksentralenProvider } from "./BiblioteksentralenProvider";
|
|
9
10
|
export { ErrorBoundary } from "./components/ErrorBoundary";
|
|
10
11
|
export { HashLinkTarget } from "./components/HashLinkTarget";
|
|
11
12
|
export { withErrorBoundary } from "./components/withErrorBoundary";
|
|
13
|
+
export { colors } from "@biblioteksentralen/utils"; // Re-export colors for convenience
|
|
12
14
|
export { biblioteksentralenChakraTheme } from "./styles/chakraTheme/biblioteksentralenChakraTheme";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@biblioteksentralen/react",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.4",
|
|
4
4
|
"description": "React library for reusable code in Biblioteksentralens js-apps",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"react": "^18.2.0",
|
|
27
27
|
"react-dom": "^18.2.0",
|
|
28
28
|
"@biblioteksentralen/icons": "1.0.0-beta.5",
|
|
29
|
-
"@biblioteksentralen/
|
|
30
|
-
"@biblioteksentralen/
|
|
29
|
+
"@biblioteksentralen/types": "1.0.0-beta.2",
|
|
30
|
+
"@biblioteksentralen/utils": "1.0.0-beta.6"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"react": "^18.2.0",
|
package/src/index.ts
CHANGED
|
@@ -7,8 +7,10 @@ export { Input } from "./components/Input"; // Overrides Chakras Input
|
|
|
7
7
|
export { Link } from "./components/Link"; // Overrides Chakras Link
|
|
8
8
|
export { VisuallyHidden } from "./components/VisuallyHidden"; // Overrides Chakras VisuallyHidden
|
|
9
9
|
|
|
10
|
+
export { BiblioteksentralenProvider } from "./BiblioteksentralenProvider";
|
|
10
11
|
export { ErrorBoundary } from "./components/ErrorBoundary";
|
|
11
12
|
export { HashLinkTarget } from "./components/HashLinkTarget";
|
|
12
13
|
export { withErrorBoundary } from "./components/withErrorBoundary";
|
|
13
14
|
|
|
15
|
+
export { colors } from "@biblioteksentralen/utils"; // Re-export colors for convenience
|
|
14
16
|
export { biblioteksentralenChakraTheme } from "./styles/chakraTheme/biblioteksentralenChakraTheme";
|