@obosbbl/grunnmuren-react 1.12.4 → 1.13.1

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,2 +1,2 @@
1
- export type BlockBackgroundColor = 'yellow' | 'gray' | 'blue' | 'green';
1
+ export type BlockBackgroundColor = 'yellow' | 'gray' | 'blue' | 'green' | 'mint' | 'sky';
2
2
  export declare function useBlockBackgroundColor(blockBgColor: BlockBackgroundColor | undefined): string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@obosbbl/grunnmuren-react",
3
- "version": "1.12.4",
3
+ "version": "1.13.1",
4
4
  "description": "OBOS Grunnmuren design system React components",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -17,36 +17,36 @@
17
17
  ],
18
18
  "types": "./dist/index.d.ts",
19
19
  "devDependencies": {
20
- "@babel/core": "7.21.0",
21
- "@storybook/addon-controls": "6.5.16",
22
- "@storybook/addon-docs": "6.5.16",
23
- "@storybook/addon-postcss": "2.0.0",
24
- "@storybook/builder-webpack5": "6.5.16",
25
- "@storybook/manager-webpack5": "6.5.16",
26
- "@storybook/react": "6.5.16",
27
- "@types/react": "18.0.28",
28
- "@types/react-dom": "18.0.11",
29
- "@vitejs/plugin-react": "3.1.0",
30
- "postcss": "8.4.21",
20
+ "@storybook/addon-controls": "7.0.7",
21
+ "@storybook/addon-docs": "7.0.7",
22
+ "@storybook/addon-styling": "1.0.5",
23
+ "@storybook/builder-vite": "7.0.7",
24
+ "@storybook/react": "7.0.7",
25
+ "@storybook/react-vite": "7.0.7",
26
+ "@types/react": "18.2.0",
27
+ "@types/react-dom": "18.2.1",
28
+ "@vitejs/plugin-react": "4.0.0",
29
+ "autoprefixer": "10.4.14",
30
+ "postcss": "8.4.23",
31
31
  "react": "18.2.0",
32
32
  "react-dom": "18.2.0",
33
33
  "require-from-string": "2.0.2",
34
- "rimraf": "4.3.0",
35
- "tailwindcss": "3.2.7",
36
- "type-fest": "3.6.1",
37
- "vite": "4.1.4",
38
- "webpack": "5.75.0",
39
- "@obosbbl/grunnmuren-tailwind": "0.8.4"
34
+ "rimraf": "5.0.0",
35
+ "storybook": "7.0.7",
36
+ "tailwindcss": "3.3.2",
37
+ "type-fest": "3.9.0",
38
+ "vite": "4.3.3",
39
+ "@obosbbl/grunnmuren-tailwind": "0.9.0"
40
40
  },
41
41
  "dependencies": {
42
42
  "@react-hook/merged-ref": "1.3.2",
43
43
  "clsx": "1.2.1",
44
- "react-collapsed": "3.5.0",
44
+ "react-collapsed": "4.0.2",
45
45
  "react-use": "17.4.0",
46
46
  "@obosbbl/grunnmuren-icons": "^0.6.0"
47
47
  },
48
48
  "peerDependencies": {
49
- "@obosbbl/grunnmuren-tailwind": "^0.8.4",
49
+ "@obosbbl/grunnmuren-tailwind": "^0.9.0",
50
50
  "react": "^18"
51
51
  },
52
52
  "peerDependenciesMeta": {
@@ -58,7 +58,7 @@
58
58
  "build": "pnpm run build:lib && pnpm run build:types",
59
59
  "build:lib": "vite build",
60
60
  "build:types": "tsc --emitDeclarationOnly --declaration && rimraf 'dist/**/stories/'",
61
- "dev": "start-storybook -p 6006 --ci",
62
- "build:storybook": "build-storybook"
61
+ "dev": "storybook dev -p 6006 --ci",
62
+ "build:storybook": "storybook build"
63
63
  }
64
64
  }