@starasia/progress 1.0.2 → 1.0.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.
@@ -102,7 +102,7 @@ const l = `@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@30
102
102
  }
103
103
 
104
104
  .starasia-progress-border {
105
- background-color: var(--starasia-ui-color-blue-100);
105
+ background-color: var(--starasia-ui-brand-primary-tertiary);
106
106
  width: 100%;
107
107
  border-radius: var(--starasia-ui-radii-lg);
108
108
  overflow: hidden;
@@ -115,7 +115,7 @@ const l = `@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@30
115
115
  }
116
116
  .starasia-progress-value {
117
117
  height: 100%;
118
- background-color: var(--starasia-ui-color-blue-800);
118
+ background-color: var(--starasia-ui-brand-primary-default);
119
119
  }
120
120
 
121
121
  .starasia-progress-label {
@@ -101,7 +101,7 @@
101
101
  }
102
102
 
103
103
  .starasia-progress-border {
104
- background-color: var(--starasia-ui-color-blue-100);
104
+ background-color: var(--starasia-ui-brand-primary-tertiary);
105
105
  width: 100%;
106
106
  border-radius: var(--starasia-ui-radii-lg);
107
107
  overflow: hidden;
@@ -114,7 +114,7 @@
114
114
  }
115
115
  .starasia-progress-value {
116
116
  height: 100%;
117
- background-color: var(--starasia-ui-color-blue-800);
117
+ background-color: var(--starasia-ui-brand-primary-default);
118
118
  }
119
119
 
120
120
  .starasia-progress-label {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@starasia/progress",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Progress component for starasia UI",
5
5
  "author": "Prawito Hudoro",
6
6
  "main": "dist/progress.umd.js",
@@ -12,6 +12,10 @@
12
12
  "dist/*.map",
13
13
  "dist/*.css"
14
14
  ],
15
+ "scripts": {
16
+ "dev": "vite --config vite.config.ts --port 3000",
17
+ "build": "vite build --config vite.config.ts"
18
+ },
15
19
  "keywords": [],
16
20
  "license": "ISC",
17
21
  "type": "module",
@@ -36,9 +40,5 @@
36
40
  "peerDependencies": {
37
41
  "react": ">=18.0.0 <20.0.0",
38
42
  "react-dom": ">=18.0.0 <20.0.0"
39
- },
40
- "scripts": {
41
- "dev": "vite --config vite.config.ts --port 3000",
42
- "build": "vite build --config vite.config.ts"
43
43
  }
44
- }
44
+ }