@starasia/tabs 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/tabs.es.js CHANGED
@@ -23,14 +23,8 @@ const T = `@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@30
23
23
  --starasia-ui-brand-primary-default,
24
24
  #1976d2
25
25
  );
26
- --starasia-ui-tabs-color-primary-black: var(
27
- --starasia-ui-color-blue-700,
28
- #202221
29
- );
30
- --starasia-ui-tabs-color-secondary-blue: var(
31
- --starasia-ui-color-blue-50,
32
- #e3f2fd
33
- );
26
+ --starasia-ui-tabs-color-primary-black: var(--starasia-ui-color-gray-900, #202221);
27
+ --starasia-ui-tabs-color-secondary-blue: var(--starasia-ui-brand-primary-tertiary);
34
28
 
35
29
  /* height */
36
30
  --starasia-ui-tabs-height-line: 2px;
package/dist/tabs.umd.js CHANGED
@@ -21,14 +21,8 @@
21
21
  --starasia-ui-brand-primary-default,
22
22
  #1976d2
23
23
  );
24
- --starasia-ui-tabs-color-primary-black: var(
25
- --starasia-ui-color-blue-700,
26
- #202221
27
- );
28
- --starasia-ui-tabs-color-secondary-blue: var(
29
- --starasia-ui-color-blue-50,
30
- #e3f2fd
31
- );
24
+ --starasia-ui-tabs-color-primary-black: var(--starasia-ui-color-gray-900, #202221);
25
+ --starasia-ui-tabs-color-secondary-blue: var(--starasia-ui-brand-primary-tertiary);
32
26
 
33
27
  /* height */
34
28
  --starasia-ui-tabs-height-line: 2px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@starasia/tabs",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Tabs component for starasia UI",
5
5
  "author": "Prawito Hudoro",
6
6
  "main": "dist/tabs.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
  },
37
41
  "publishConfig": {
38
42
  "access": "public"
39
- },
40
- "scripts": {
41
- "dev": "vite --config vite.config.ts --port 3000",
42
- "build": "vite build --config vite.config.ts"
43
43
  }
44
- }
44
+ }