@tqc-solution/design-system 0.1.78 → 0.1.80
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/README.md +25 -23
- package/dist/css/{pubfuture.css → pubstar.css} +37 -38
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +1 -1
- package/dist/tailwind/index.js +2 -2
- package/dist/tailwind/{pubfuture.preset.js → pubstar.preset.js} +4 -5
- package/package.json +4 -2
- /package/dist/tailwind/{pubfuture.preset.d.ts → pubstar.preset.d.ts} +0 -0
package/dist/tailwind/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
// Auto-generated: Re-export
|
|
2
|
-
export { default } from './
|
|
1
|
+
// Auto-generated: Re-export pubstar theme preset
|
|
2
|
+
export { default } from './pubstar.preset.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* TQC Design System - Tailwind CSS Preset
|
|
3
|
-
* Theme:
|
|
3
|
+
* Theme: pubstar
|
|
4
4
|
*
|
|
5
5
|
* This preset maps design system CSS variables to Tailwind utilities.
|
|
6
6
|
* Make sure to import the corresponding CSS file in your app:
|
|
@@ -19,7 +19,7 @@ export default {
|
|
|
19
19
|
"background-bg-secondary": "var(--background-bg-secondary)",
|
|
20
20
|
"background-bg-tertiary": "var(--background-bg-tertiary)",
|
|
21
21
|
"background-fill-alert": "var(--background-fill-alert)",
|
|
22
|
-
"background-fill-black-opacity-
|
|
22
|
+
"background-fill-black-opacity-50": "var(--background-fill-black-opacity-50)",
|
|
23
23
|
"background-fill-brand": "var(--background-fill-brand)",
|
|
24
24
|
"background-fill-brand-accent": "var(--background-fill-brand-accent)",
|
|
25
25
|
"background-fill-brand-accent-moderate": "var(--background-fill-brand-accent-moderate)",
|
|
@@ -63,7 +63,6 @@ export default {
|
|
|
63
63
|
"effect-3-pct": "var(--effect-3-pct)",
|
|
64
64
|
"effect-5-pct": "var(--effect-5-pct)",
|
|
65
65
|
"effect-8-pct": "var(--effect-8-pct)",
|
|
66
|
-
"border-brand": "var(--border-brand)",
|
|
67
66
|
"icon-brand": "var(--icon-brand)",
|
|
68
67
|
"icon-brand-strong": "var(--icon-brand-strong)",
|
|
69
68
|
"icon-disabled": "var(--icon-disabled)",
|
|
@@ -208,8 +207,8 @@ export default {
|
|
|
208
207
|
"shadow-sm": "0px 1px 2px 0px rgba(10, 13, 18, 0.06), 0px 1px 3px 0px rgba(10, 13, 18, 0.1)",
|
|
209
208
|
"shadow-sm-destructive": "0px 0px 0px 4px #fcece8, 0px 1px 2px 0px rgba(9, 105, 27, 0.05)",
|
|
210
209
|
"shadow-sm-neutral": "0px 0px 0px 4px #eeeeee, 0px 1px 2px 0px rgba(9, 105, 27, 0.05)",
|
|
211
|
-
"shadow-sm-primary": "0px 0px 0px 4px #e3f7e3
|
|
212
|
-
"shadow-sm-secondary": "0px 0px 0px 4px #e6f6fe
|
|
210
|
+
"shadow-sm-primary": "0px 0px 0px 4px #e3f7e3",
|
|
211
|
+
"shadow-sm-secondary": "0px 0px 0px 4px #e6f6fe",
|
|
213
212
|
"shadow-xl": "0px 8px 8px -4px rgba(10, 13, 18, 0.03), 5px 13px 17px 7px rgba(10, 13, 18, 0.08)"
|
|
214
213
|
}
|
|
215
214
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tqc-solution/design-system",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.80",
|
|
4
4
|
"description": "TQC Design System - Reusable React components with multi-theme support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs.js",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"default": "./dist/tailwind/index.js"
|
|
31
31
|
},
|
|
32
32
|
"./css/pubfuture.css": "./dist/css/pubfuture.css",
|
|
33
|
+
"./css/pubstar.css": "./dist/css/pubstar.css",
|
|
33
34
|
"./css/oio.css": "./dist/css/oio.css"
|
|
34
35
|
},
|
|
35
36
|
"sideEffects": [
|
|
@@ -44,11 +45,12 @@
|
|
|
44
45
|
"scripts": {
|
|
45
46
|
"dev": "vite",
|
|
46
47
|
"build:pubfuture": "node scripts/build-theme.js pubfuture",
|
|
48
|
+
"build:pubstar": "node scripts/build-theme.js pubstar",
|
|
47
49
|
"build:oio": "node scripts/build-theme.js oio",
|
|
48
50
|
"build:types": "tsc -p tsconfig.build.json",
|
|
49
51
|
"lint": "eslint .",
|
|
50
52
|
"preview": "vite preview",
|
|
51
|
-
"prepublishOnly": "echo 'Use npm run build:pubfuture or build:oio before publishing with --tag'"
|
|
53
|
+
"prepublishOnly": "echo 'Use npm run build:pubfuture or build:pubstar or build:oio before publishing with --tag'"
|
|
52
54
|
},
|
|
53
55
|
"peerDependencies": {
|
|
54
56
|
"dayjs": "^1.11.0",
|
|
File without changes
|