@biblioteksentralen/react 1.0.0-beta.1 → 1.0.0-beta.3

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @biblioteksentralen/react@1.0.0-beta.1 build /Users/jorgenfulsebakke/repos/js-utils/packages/react
2
+ > @biblioteksentralen/react@1.0.0-beta.3 build /Users/jorgenfulsebakke/repos/js-utils/packages/react
3
3
  > rm -rf dist && tsc
4
4
 
@@ -1,5 +1,5 @@
1
1
 
2
- > @biblioteksentralen/react@1.0.0-beta.1 test /Users/jorgenfulsebakke/repos/js-utils/packages/react
2
+ > @biblioteksentralen/react@1.0.0-beta.3 test /Users/jorgenfulsebakke/repos/js-utils/packages/react
3
3
  > vitest --watch=false
4
4
 
5
5
  The CJS build of Vite's Node API is deprecated. See https://vitejs.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated for more details.
@@ -1,4 +1,4 @@
1
1
 
2
- > @biblioteksentralen/react@1.0.0-beta.1 type-check /Users/jorgenfulsebakke/repos/js-utils/packages/react
2
+ > @biblioteksentralen/react@1.0.0-beta.2 type-check /Users/jorgenfulsebakke/repos/js-utils/packages/react
3
3
  > tsc --noEmit
4
4
 
package/dist/index.d.ts CHANGED
@@ -10,3 +10,4 @@ export { ErrorBoundary } from "./components/ErrorBoundary";
10
10
  export { HashLinkTarget } from "./components/HashLinkTarget";
11
11
  export { withErrorBoundary } from "./components/withErrorBoundary";
12
12
  export { biblioteksentralenChakraTheme } from "./styles/chakraTheme/biblioteksentralenChakraTheme";
13
+ export { colors } from "@biblioteksentralen/utils";
package/dist/index.js CHANGED
@@ -10,3 +10,4 @@ export { ErrorBoundary } from "./components/ErrorBoundary";
10
10
  export { HashLinkTarget } from "./components/HashLinkTarget";
11
11
  export { withErrorBoundary } from "./components/withErrorBoundary";
12
12
  export { biblioteksentralenChakraTheme } from "./styles/chakraTheme/biblioteksentralenChakraTheme";
13
+ export { colors } from "@biblioteksentralen/utils"; // Re-export colors for convenience
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biblioteksentralen/react",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.3",
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",
@@ -25,9 +25,9 @@
25
25
  "@types/react": "^18.2.45",
26
26
  "react": "^18.2.0",
27
27
  "react-dom": "^18.2.0",
28
- "@biblioteksentralen/icons": "1.0.0-beta.4",
29
- "@biblioteksentralen/utils": "1.0.0-beta.5",
30
- "@biblioteksentralen/types": "1.0.0-beta.1"
28
+ "@biblioteksentralen/icons": "1.0.0-beta.5",
29
+ "@biblioteksentralen/utils": "1.0.0-beta.6",
30
+ "@biblioteksentralen/types": "1.0.0-beta.2"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "react": "^18.2.0",
package/src/index.ts CHANGED
@@ -12,3 +12,4 @@ export { HashLinkTarget } from "./components/HashLinkTarget";
12
12
  export { withErrorBoundary } from "./components/withErrorBoundary";
13
13
 
14
14
  export { biblioteksentralenChakraTheme } from "./styles/chakraTheme/biblioteksentralenChakraTheme";
15
+ export { colors } from "@biblioteksentralen/utils"; // Re-export colors for convenience
package/tsconfig.json CHANGED
@@ -2,7 +2,6 @@
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "extends": "../../tsconfig.json",
4
4
  "compilerOptions": {
5
- "noEmit": false,
6
5
  "outDir": "./dist"
7
6
  },
8
7
  "include": ["./src/**/*.ts", "./src/**/*.tsx"]