@tokyo3rdhq/magi-design-system 0.4.0 → 0.4.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/package.json +1 -2
- package/src/styles/index.css +0 -32
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tokyo3rdhq/magi-design-system",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Shared visual foundation for the MAGI product family — dark-first, near-monochrome, restrained.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
11
|
-
"src/styles",
|
|
12
11
|
"README.md"
|
|
13
12
|
],
|
|
14
13
|
"exports": {
|
package/src/styles/index.css
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
/* MAGI Design System — Single entry point for consumers
|
|
2
|
-
*
|
|
3
|
-
* import '@tokyo3rdhq/magi-design-system/styles.css';
|
|
4
|
-
*
|
|
5
|
-
* Layer order (declared by the next line) determines cascade priority:
|
|
6
|
-
* consumer unlayered styles always win over our layered rules.
|
|
7
|
-
*
|
|
8
|
-
* browser defaults
|
|
9
|
-
* ↓ @layer magi.reset
|
|
10
|
-
* ↓ @layer magi.tokens
|
|
11
|
-
* ↓ @layer magi.foundation
|
|
12
|
-
* ↓ @layer magi.layout
|
|
13
|
-
* ↓ @layer magi.components
|
|
14
|
-
* ↓ consumer unlayered styles (always win)
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
@layer magi.reset, magi.tokens, magi.foundation, magi.layout, magi.components;
|
|
18
|
-
|
|
19
|
-
@import "../tokens/index.css";
|
|
20
|
-
@import "../foundation/index.css";
|
|
21
|
-
@import "../layout/Container.css";
|
|
22
|
-
@import "../layout/Section.css";
|
|
23
|
-
@import "../layout/Stack.css";
|
|
24
|
-
@import "../components/Button/Button.css";
|
|
25
|
-
@import "../components/Card/Card.css";
|
|
26
|
-
@import "../components/Badge/Badge.css";
|
|
27
|
-
@import "../components/Checkbox/Checkbox.css";
|
|
28
|
-
@import "../components/Input/Input.css";
|
|
29
|
-
@import "../components/FormField/FormField.css";
|
|
30
|
-
@import "../components/Segmented/Segmented.css";
|
|
31
|
-
@import "../components/Banner/Banner.css";
|
|
32
|
-
@import "../components/EmptyState/EmptyState.css";
|