@starasia/text 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/text.es.js +3 -3
- package/dist/text.umd.js +3 -3
- package/package.json +6 -6
package/dist/text.es.js
CHANGED
|
@@ -132,9 +132,9 @@ const w = `@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital
|
|
|
132
132
|
/* COLOR BRAND */
|
|
133
133
|
|
|
134
134
|
/* primary */
|
|
135
|
-
--starasia-ui-brand-primary-default:
|
|
136
|
-
--starasia-ui-brand-primary-secondary:
|
|
137
|
-
--starasia-ui-brand-primary-tertiary:
|
|
135
|
+
--starasia-ui-brand-primary-default: rgba(74, 106, 148, 1);
|
|
136
|
+
--starasia-ui-brand-primary-secondary: rgba(144, 176, 218, 1);
|
|
137
|
+
--starasia-ui-brand-primary-tertiary: rgba(227, 237, 248, 1);
|
|
138
138
|
|
|
139
139
|
/* secondary */
|
|
140
140
|
--starasia-ui-brand-secondary-default: var(--starasia-ui-color-pink-700);
|
package/dist/text.umd.js
CHANGED
|
@@ -131,9 +131,9 @@
|
|
|
131
131
|
/* COLOR BRAND */
|
|
132
132
|
|
|
133
133
|
/* primary */
|
|
134
|
-
--starasia-ui-brand-primary-default:
|
|
135
|
-
--starasia-ui-brand-primary-secondary:
|
|
136
|
-
--starasia-ui-brand-primary-tertiary:
|
|
134
|
+
--starasia-ui-brand-primary-default: rgba(74, 106, 148, 1);
|
|
135
|
+
--starasia-ui-brand-primary-secondary: rgba(144, 176, 218, 1);
|
|
136
|
+
--starasia-ui-brand-primary-tertiary: rgba(227, 237, 248, 1);
|
|
137
137
|
|
|
138
138
|
/* secondary */
|
|
139
139
|
--starasia-ui-brand-secondary-default: var(--starasia-ui-color-pink-700);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@starasia/text",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "text component for starasia UI",
|
|
5
5
|
"author": "Prawito Hudoro",
|
|
6
6
|
"main": "dist/text.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": "cross-env NODE_ENV=production vite build --config vite.config.ts"
|
|
18
|
+
},
|
|
15
19
|
"keywords": [],
|
|
16
20
|
"license": "ISC",
|
|
17
21
|
"type": "module",
|
|
@@ -34,9 +38,5 @@
|
|
|
34
38
|
"typescript": "^5.8.3",
|
|
35
39
|
"vite": "^5.4.19",
|
|
36
40
|
"vite-plugin-dts": "^3.9.1"
|
|
37
|
-
},
|
|
38
|
-
"scripts": {
|
|
39
|
-
"dev": "vite --config vite.config.ts --port 3000",
|
|
40
|
-
"build": "cross-env NODE_ENV=production vite build --config vite.config.ts"
|
|
41
41
|
}
|
|
42
|
-
}
|
|
42
|
+
}
|