@o2project/design-system 1.1.0 → 1.2.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## [1.2.0](https://github.com/o2project/design-system/compare/v1.1.0...v1.2.0) (2026-01-06)
2
+
3
+ ### ✨ Features
4
+
5
+ * introduce color tokens ([9ac632a](https://github.com/o2project/design-system/commit/9ac632a2822009ab8d4f51d415d93839fb75fc6b))
6
+
7
+ ### 📚 Some changes
8
+
9
+ * update README ([f89fde9](https://github.com/o2project/design-system/commit/f89fde9c720b75eba2234a3531e544f1df945763))
10
+
1
11
  ## [1.1.0](https://github.com/o2project/design-system/compare/v1.0.2...v1.1.0) (2025-11-09)
2
12
 
3
13
  ### ✨ Features
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # design-system
2
2
 
3
- Design system for O2 Project
3
+ Design system for O2 Project.
4
4
 
5
5
  ## 🚀 Getting Started
6
6
 
@@ -41,7 +41,7 @@ The static files will be generated in the `storybook-static/` directory.
41
41
 
42
42
  Components are organized in the `src/components/` directory with their stories collocated in the same directory:
43
43
 
44
- ```
44
+ ```text
45
45
  src/
46
46
  └── components/
47
47
  ├── Card/
@@ -106,11 +106,11 @@ Storybook automatically generates documentation for your components. Add JSDoc c
106
106
  /**
107
107
  * Primary UI component for user interaction
108
108
  */
109
- export const Button = ({
109
+ export const Button = ({
110
110
  /** Button text */
111
111
  label,
112
112
  /** Visual style variant */
113
- variant = 'primary'
113
+ variant = 'primary'
114
114
  }) => {
115
115
  // ...
116
116
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@o2project/design-system",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "type": "module",
5
5
  "description": "Design system for O2 Project",
6
6
  "publishConfig": {