@narmi/design_system 2.3.3 → 2.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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/style.css +7 -4
- package/dist/style.css.map +1 -1
- package/dist/tokens/css/rgbColors.css +1 -1
- package/dist/tokens/css/tokens.css +5 -2
- package/dist/tokens/js/colors.js +1 -1
- package/dist/tokens/js/manifest.js +59 -2
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 24 Mar 2022 01:50:42 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -108,7 +108,9 @@
|
|
|
108
108
|
--alpha-5: 0.05;
|
|
109
109
|
--border-size-m: 2px;
|
|
110
110
|
--border-size-s: 1px;
|
|
111
|
-
--border-radius-
|
|
111
|
+
--border-radius-l: 20px;
|
|
112
|
+
--border-radius-m: 8px;
|
|
113
|
+
--border-radius-s: 4px;
|
|
112
114
|
--elevation-default: var(--elevation-middle);
|
|
113
115
|
--space-default: var(--space-l);
|
|
114
116
|
--font-weight-default: var(--font-weight-normal);
|
|
@@ -128,6 +130,7 @@
|
|
|
128
130
|
--color-moss: var(--color-moss400);
|
|
129
131
|
--bgColor-white: var(--color-white);
|
|
130
132
|
--border-size-default: var(--border-size-s);
|
|
133
|
+
--border-radius-default: var(--border-radius-s);
|
|
131
134
|
--border-color-light: var(--color-lightGrey);
|
|
132
135
|
--theme-tertiary: var(--color-cactus);
|
|
133
136
|
--theme-secondary: var(--color-moss);
|
package/dist/tokens/js/colors.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 24 Mar 2022 01:50:42 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
module.exports = {
|
|
@@ -65,13 +65,70 @@ module.exports = {
|
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
67
|
"radius": {
|
|
68
|
-
"
|
|
68
|
+
"s": {
|
|
69
69
|
"value": "4px",
|
|
70
70
|
"filePath": "/home/runner/work/design_system/design_system/tokens/src/border/radius.json",
|
|
71
71
|
"isSource": true,
|
|
72
72
|
"original": {
|
|
73
73
|
"value": "4px"
|
|
74
74
|
},
|
|
75
|
+
"name": "border-radius-s",
|
|
76
|
+
"attributes": {
|
|
77
|
+
"category": "border",
|
|
78
|
+
"type": "radius",
|
|
79
|
+
"item": "s"
|
|
80
|
+
},
|
|
81
|
+
"path": [
|
|
82
|
+
"border",
|
|
83
|
+
"radius",
|
|
84
|
+
"s"
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
"m": {
|
|
88
|
+
"value": "8px",
|
|
89
|
+
"filePath": "/home/runner/work/design_system/design_system/tokens/src/border/radius.json",
|
|
90
|
+
"isSource": true,
|
|
91
|
+
"original": {
|
|
92
|
+
"value": "8px"
|
|
93
|
+
},
|
|
94
|
+
"name": "border-radius-m",
|
|
95
|
+
"attributes": {
|
|
96
|
+
"category": "border",
|
|
97
|
+
"type": "radius",
|
|
98
|
+
"item": "m"
|
|
99
|
+
},
|
|
100
|
+
"path": [
|
|
101
|
+
"border",
|
|
102
|
+
"radius",
|
|
103
|
+
"m"
|
|
104
|
+
]
|
|
105
|
+
},
|
|
106
|
+
"l": {
|
|
107
|
+
"value": "20px",
|
|
108
|
+
"filePath": "/home/runner/work/design_system/design_system/tokens/src/border/radius.json",
|
|
109
|
+
"isSource": true,
|
|
110
|
+
"original": {
|
|
111
|
+
"value": "20px"
|
|
112
|
+
},
|
|
113
|
+
"name": "border-radius-l",
|
|
114
|
+
"attributes": {
|
|
115
|
+
"category": "border",
|
|
116
|
+
"type": "radius",
|
|
117
|
+
"item": "l"
|
|
118
|
+
},
|
|
119
|
+
"path": [
|
|
120
|
+
"border",
|
|
121
|
+
"radius",
|
|
122
|
+
"l"
|
|
123
|
+
]
|
|
124
|
+
},
|
|
125
|
+
"default": {
|
|
126
|
+
"value": "4px",
|
|
127
|
+
"filePath": "/home/runner/work/design_system/design_system/tokens/src/border/radius.json",
|
|
128
|
+
"isSource": true,
|
|
129
|
+
"original": {
|
|
130
|
+
"value": "{border.radius.s.value}"
|
|
131
|
+
},
|
|
75
132
|
"name": "border-radius-default",
|
|
76
133
|
"attributes": {
|
|
77
134
|
"category": "border",
|