@moderneinc/design-system-tokens 7.1.0 → 7.2.0-next.8d096f
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/assets/height.css +1 -3
- package/assets/height.d.ts +1 -3
- package/assets/height.js +2 -2
- package/assets/moderne.css +3 -5
- package/assets/semantic-typography.css +2 -2
- package/assets/semantic-typography.d.ts +2 -2
- package/assets/semantic-typography.js +1 -1
- package/assets/tokens.json +4 -6
- package/dist/index.d.ts +3 -5
- package/package.json +1 -1
package/assets/height.css
CHANGED
|
@@ -3,9 +3,7 @@
|
|
|
3
3
|
--mod-height-button-large: 48px;
|
|
4
4
|
--mod-height-input-default: 40px;
|
|
5
5
|
--mod-height-input-dense: 32px;
|
|
6
|
-
--mod-height-table-header
|
|
7
|
-
--mod-height-table-header-standard: 38px;
|
|
8
|
-
--mod-height-table-header-comfortable: 52px;
|
|
6
|
+
--mod-height-table-header: 38px;
|
|
9
7
|
--mod-height-table-row-compact: 48px;
|
|
10
8
|
--mod-height-table-row-standard: 42px;
|
|
11
9
|
--mod-height-table-row-comfortable: 56px;
|
package/assets/height.d.ts
CHANGED
package/assets/height.js
CHANGED
|
@@ -23,13 +23,13 @@ export const button = {"default":40,"small":32,"large":48};
|
|
|
23
23
|
export const input = {"default":40,"dense":32};
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
|
-
* @typedef {{
|
|
26
|
+
* @typedef {{ header: number, rowCompact: number, rowStandard: number, rowComfortable: number }} Table
|
|
27
27
|
*/
|
|
28
28
|
|
|
29
29
|
/**
|
|
30
30
|
* @type {Table}
|
|
31
31
|
*/
|
|
32
|
-
export const table = {"
|
|
32
|
+
export const table = {"header":38,"rowCompact":48,"rowStandard":42,"rowComfortable":56};
|
|
33
33
|
|
|
34
34
|
/**
|
|
35
35
|
* @type {number}
|
package/assets/moderne.css
CHANGED
|
@@ -137,9 +137,7 @@
|
|
|
137
137
|
--mod-height-button-large: 48px;
|
|
138
138
|
--mod-height-input-default: 40px;
|
|
139
139
|
--mod-height-input-dense: 32px;
|
|
140
|
-
--mod-height-table-header
|
|
141
|
-
--mod-height-table-header-standard: 38px;
|
|
142
|
-
--mod-height-table-header-comfortable: 52px;
|
|
140
|
+
--mod-height-table-header: 38px;
|
|
143
141
|
--mod-height-table-row-compact: 48px;
|
|
144
142
|
--mod-height-table-row-standard: 42px;
|
|
145
143
|
--mod-height-table-row-comfortable: 56px;
|
|
@@ -924,9 +922,9 @@
|
|
|
924
922
|
--mod-chip-font-weight: 500;
|
|
925
923
|
--mod-chip-line-height: 1rem;
|
|
926
924
|
--mod-table-header-font-family: Geist;
|
|
927
|
-
--mod-table-header-font-size:
|
|
925
|
+
--mod-table-header-font-size: 12px;
|
|
928
926
|
--mod-table-header-font-weight: 600;
|
|
929
|
-
--mod-table-header-line-height: 1.
|
|
927
|
+
--mod-table-header-line-height: 1.125rem;
|
|
930
928
|
--mod-table-row-font-family: Geist;
|
|
931
929
|
--mod-table-row-font-size: 14px;
|
|
932
930
|
--mod-table-row-font-weight: 400;
|
|
@@ -131,9 +131,9 @@
|
|
|
131
131
|
--mod-chip-font-weight: 500;
|
|
132
132
|
--mod-chip-line-height: 1rem;
|
|
133
133
|
--mod-table-header-font-family: Geist;
|
|
134
|
-
--mod-table-header-font-size:
|
|
134
|
+
--mod-table-header-font-size: 12px;
|
|
135
135
|
--mod-table-header-font-weight: 600;
|
|
136
|
-
--mod-table-header-line-height: 1.
|
|
136
|
+
--mod-table-header-line-height: 1.125rem;
|
|
137
137
|
--mod-table-row-font-family: Geist;
|
|
138
138
|
--mod-table-row-font-size: 14px;
|
|
139
139
|
--mod-table-row-font-weight: 400;
|
|
@@ -249,9 +249,9 @@ export declare const chip: Chip;
|
|
|
249
249
|
export type Table = {
|
|
250
250
|
header: {
|
|
251
251
|
fontFamily: 'Geist';
|
|
252
|
-
fontSize:
|
|
252
|
+
fontSize: 12;
|
|
253
253
|
fontWeight: 600;
|
|
254
|
-
lineHeight: '1.
|
|
254
|
+
lineHeight: '1.125rem';
|
|
255
255
|
};
|
|
256
256
|
row: {
|
|
257
257
|
fontFamily: 'Geist';
|
|
@@ -83,7 +83,7 @@ export const chip = {"fontFamily":"Geist","fontSize":12,"fontWeight":500,"lineHe
|
|
|
83
83
|
/**
|
|
84
84
|
* @type {Table}
|
|
85
85
|
*/
|
|
86
|
-
export const table = {"header":{"fontFamily":"Geist","fontSize":
|
|
86
|
+
export const table = {"header":{"fontFamily":"Geist","fontSize":12,"fontWeight":600,"lineHeight":"1.125rem"},"row":{"fontFamily":"Geist","fontSize":14,"fontWeight":400,"lineHeight":"1.5rem"}};
|
|
87
87
|
|
|
88
88
|
/**
|
|
89
89
|
* @typedef {{ default: object, helper: object, helperSearch: object }} Input
|
package/assets/tokens.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "7.
|
|
2
|
+
"version": "7.2.0-next.8d096f",
|
|
3
3
|
"tokens": {
|
|
4
4
|
"border-radius": {
|
|
5
5
|
"card": 12,
|
|
@@ -179,9 +179,7 @@
|
|
|
179
179
|
"dense": 32
|
|
180
180
|
},
|
|
181
181
|
"table": {
|
|
182
|
-
"
|
|
183
|
-
"headerStandard": 38,
|
|
184
|
-
"headerComfortable": 52,
|
|
182
|
+
"header": 38,
|
|
185
183
|
"rowCompact": 48,
|
|
186
184
|
"rowStandard": 42,
|
|
187
185
|
"rowComfortable": 56
|
|
@@ -1573,9 +1571,9 @@
|
|
|
1573
1571
|
"table": {
|
|
1574
1572
|
"header": {
|
|
1575
1573
|
"fontFamily": "Geist",
|
|
1576
|
-
"fontSize":
|
|
1574
|
+
"fontSize": 12,
|
|
1577
1575
|
"fontWeight": 600,
|
|
1578
|
-
"lineHeight": "1.
|
|
1576
|
+
"lineHeight": "1.125rem"
|
|
1579
1577
|
},
|
|
1580
1578
|
"row": {
|
|
1581
1579
|
"fontFamily": "Geist",
|
package/dist/index.d.ts
CHANGED
|
@@ -378,9 +378,7 @@ dense: 32;
|
|
|
378
378
|
declare const input$4: Input$4;
|
|
379
379
|
|
|
380
380
|
type Table$1 = {
|
|
381
|
-
|
|
382
|
-
headerStandard: 38;
|
|
383
|
-
headerComfortable: 52;
|
|
381
|
+
header: 38;
|
|
384
382
|
rowCompact: 48;
|
|
385
383
|
rowStandard: 42;
|
|
386
384
|
rowComfortable: 56;
|
|
@@ -2097,9 +2095,9 @@ declare const chip: Chip;
|
|
|
2097
2095
|
type Table = {
|
|
2098
2096
|
header: {
|
|
2099
2097
|
fontFamily: 'Geist';
|
|
2100
|
-
fontSize:
|
|
2098
|
+
fontSize: 12;
|
|
2101
2099
|
fontWeight: 600;
|
|
2102
|
-
lineHeight: '1.
|
|
2100
|
+
lineHeight: '1.125rem';
|
|
2103
2101
|
};
|
|
2104
2102
|
row: {
|
|
2105
2103
|
fontFamily: 'Geist';
|