@starasia/radio 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.
package/dist/radio.es.js CHANGED
@@ -30,7 +30,7 @@ const d = `@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@30
30
30
  /* color */
31
31
  --starasia-ui-radio-color-primary-blue: var(
32
32
  --starasia-ui-brand-primary-default,
33
- #1976d2
33
+ rgba(74, 106, 148, 1)
34
34
  );
35
35
  }
36
36
 
package/dist/radio.umd.js CHANGED
@@ -29,7 +29,7 @@
29
29
  /* color */
30
30
  --starasia-ui-radio-color-primary-blue: var(
31
31
  --starasia-ui-brand-primary-default,
32
- #1976d2
32
+ rgba(74, 106, 148, 1)
33
33
  );
34
34
  }
35
35
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@starasia/radio",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "radio component for starasia UI",
5
5
  "author": "Prawito Hudoro",
6
6
  "main": "dist/radio.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",
@@ -33,9 +37,5 @@
33
37
  "react-dom": "^18.2.0",
34
38
  "@types/react": "^18.2.55",
35
39
  "@types/react-dom": "^18.2.19"
36
- },
37
- "scripts": {
38
- "dev": "vite --config vite.config.ts --port 3000",
39
- "build": "vite build --config vite.config.ts"
40
40
  }
41
- }
41
+ }