@qijenchen/design-system 0.1.0-beta.24 → 0.1.0-beta.25
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/package.json +1 -1
- package/src/styles/tokens.css +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qijenchen/design-system",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.25",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "World-class design system — components, patterns, tokens, hooks (single source of truth for team distribution).",
|
|
6
6
|
"type": "module",
|
package/src/styles/tokens.css
CHANGED
|
@@ -33,3 +33,10 @@
|
|
|
33
33
|
@import './../tokens/radius/radius.css';
|
|
34
34
|
@import './../tokens/opacity/opacity.css';
|
|
35
35
|
@import './../tokens/motion/motion.css';
|
|
36
|
+
|
|
37
|
+
/* Non-token CSS (patterns/ + components/) containing :root token declarations
|
|
38
|
+
or component-internal styles — auto-detected by generator scan. Per 2026-05-27
|
|
39
|
+
root-cause fix: src/globals.css 已 import for DS internal, 但 consumer-facing
|
|
40
|
+
tokens.css aggregator 必須也包含, 不然 consumer 拿不到 → 跑版。 */
|
|
41
|
+
@import './../components/DataTable/data-table.css';
|
|
42
|
+
@import './../patterns/header-canonical/header-canonical.css';
|