@starasia/card 2.0.0 → 2.0.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.
package/dist/card.es.js CHANGED
@@ -3,7 +3,7 @@ const e = `:root {
3
3
  --sa-card-radius: var(--sa-radii-md, 0.5rem);
4
4
  --sa-card-bg: var(--sa-background-primary, #ffffff);
5
5
  --sa-card-border: var(--sa-border-subtle, #0b120e24);
6
- --sa-card-shadow: var(--sa-shadow-card, 0px 4px 35px 0px rgba(112,144,176,0.25));
6
+ --sa-card-shadow: var(--sa-shadow-card, 0px 4px 35px 0px #7090b040);
7
7
  }
8
8
 
9
9
  .starasia-card {
package/dist/card.umd.js CHANGED
@@ -2,7 +2,7 @@
2
2
  --sa-card-radius: var(--sa-radii-md, 0.5rem);
3
3
  --sa-card-bg: var(--sa-background-primary, #ffffff);
4
4
  --sa-card-border: var(--sa-border-subtle, #0b120e24);
5
- --sa-card-shadow: var(--sa-shadow-card, 0px 4px 35px 0px rgba(112,144,176,0.25));
5
+ --sa-card-shadow: var(--sa-shadow-card, 0px 4px 35px 0px #7090b040);
6
6
  }
7
7
 
8
8
  .starasia-card {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@starasia/card",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Card component for starasia UI",
5
5
  "author": "Prawito Hudoro",
6
6
  "main": "dist/card.umd.js",
@@ -12,10 +12,6 @@
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
- },
19
15
  "keywords": [],
20
16
  "license": "ISC",
21
17
  "type": "module",
@@ -37,5 +33,9 @@
37
33
  "react-dom": "^18.2.0",
38
34
  "@types/react": "^18.2.55",
39
35
  "@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
+ }