@o2project/design-system 1.3.0 → 1.4.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +22 -16
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [1.4.0](https://github.com/o2project/design-system/compare/v1.3.1...v1.4.0) (2026-01-09)
2
+
3
+ ### ✨ Features
4
+
5
+ * add OKLCH to Hex conversion and color sync system ([cb240a2](https://github.com/o2project/design-system/commit/cb240a28e5c2b12277fa179172ce7b2340b1dd15))
6
+
7
+ ## [1.3.1](https://github.com/o2project/design-system/compare/v1.3.0...v1.3.1) (2026-01-08)
8
+
9
+ ### 📚 Some changes
10
+
11
+ * **deps:** update actions/checkout action to v5.0.1 ([#9](https://github.com/o2project/design-system/issues/9)) ([7c75cee](https://github.com/o2project/design-system/commit/7c75ceedfe52a127818d09bb97cec21c6bfb9947))
12
+
1
13
  ## [1.3.0](https://github.com/o2project/design-system/compare/v1.2.2...v1.3.0) (2026-01-06)
2
14
 
3
15
  ### ✨ Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@o2project/design-system",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "type": "module",
5
5
  "description": "Design system for O2 Project",
6
6
  "publishConfig": {
@@ -16,44 +16,50 @@
16
16
  "lint": "eslint '**/*.{js,jsx,ts,tsx}'",
17
17
  "format": "prettier --write .",
18
18
  "storybook": "storybook dev -p 15021",
19
- "build-storybook": "storybook build"
19
+ "build-storybook": "storybook build",
20
+ "test:oklch": "tsx src/colors/scripts/oklch-to-hex.ts",
21
+ "sync:colors": "tsx src/colors/scripts/sync-colors.ts"
20
22
  },
21
23
  "keywords": [],
22
24
  "author": "O2 Project",
23
25
  "license": "MIT",
24
26
  "dependencies": {
25
- "tailwindcss": "4.1.16"
27
+ "tailwindcss": "4.1.18"
26
28
  },
27
29
  "devDependencies": {
28
- "@eslint/js": "9.39.1",
29
- "@kubosho/configs": "6.5.9",
30
+ "@eslint/js": "9.39.2",
31
+ "@kubosho/configs": "6.5.15",
30
32
  "@semantic-release/changelog": "6.0.3",
31
33
  "@semantic-release/commit-analyzer": "13.0.1",
32
34
  "@semantic-release/git": "10.0.1",
33
35
  "@semantic-release/github": "12.0.2",
34
- "@semantic-release/npm": "13.1.1",
36
+ "@semantic-release/npm": "13.1.3",
35
37
  "@semantic-release/release-notes-generator": "14.1.0",
36
- "@storybook/addon-docs": "10.0.6",
37
- "@storybook/addon-onboarding": "10.0.6",
38
- "@storybook/react-vite": "10.0.6",
39
- "@tailwindcss/postcss": "4.1.16",
40
- "@types/react": "19.2.2",
41
- "@types/react-dom": "19.2.2",
38
+ "@storybook/addon-docs": "10.0.8",
39
+ "@storybook/addon-onboarding": "10.0.8",
40
+ "@storybook/react-vite": "10.0.8",
41
+ "@tailwindcss/postcss": "4.1.18",
42
+ "@types/culori": "4.0.1",
43
+ "@types/node": "25.0.3",
44
+ "@types/react": "19.2.7",
45
+ "@types/react-dom": "19.2.3",
42
46
  "conventional-changelog-conventionalcommits": "9.1.0",
43
- "eslint": "9.39.1",
47
+ "culori": "4.0.2",
48
+ "eslint": "9.39.2",
44
49
  "eslint-config-prettier": "10.1.8",
45
50
  "eslint-import-resolver-typescript": "4.4.4",
46
51
  "eslint-plugin-import": "2.32.0",
47
52
  "eslint-plugin-jsx-a11y": "6.10.2",
48
53
  "eslint-plugin-react": "7.37.5",
49
54
  "eslint-plugin-simple-import-sort": "12.1.1",
50
- "eslint-plugin-storybook": "10.0.6",
55
+ "eslint-plugin-storybook": "10.0.8",
51
56
  "postcss": "8.5.6",
52
57
  "prettier": "3.6.2",
53
58
  "prop-types": "15.8.1",
54
59
  "semantic-release": "25.0.2",
55
- "storybook": "10.0.6",
60
+ "storybook": "10.0.8",
61
+ "tsx": "4.21.0",
56
62
  "typescript": "5.9.3",
57
- "typescript-eslint": "8.46.3"
63
+ "typescript-eslint": "8.46.4"
58
64
  }
59
65
  }