@utrecht/document-css 2.0.1 → 3.0.0
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/CHANGELOG.md +6 -0
- package/dist/tokens.mjs +21 -39
- package/package.json +1 -1
- package/src/tokens.json +18 -36
package/CHANGELOG.md
CHANGED
package/dist/tokens.mjs
CHANGED
|
@@ -3,66 +3,48 @@ export default {
|
|
|
3
3
|
"document": {
|
|
4
4
|
"background-color": {
|
|
5
5
|
"$extensions": {
|
|
6
|
-
"nl.nldesignsystem.css
|
|
7
|
-
|
|
8
|
-
"inherits": true
|
|
9
|
-
},
|
|
10
|
-
"nl.nldesignsystem.figma.supports-token": true
|
|
6
|
+
"nl.nldesignsystem.css-property-syntax": "<color>",
|
|
7
|
+
"nl.nldesignsystem.figma-implementation": true
|
|
11
8
|
},
|
|
12
|
-
"type": "color"
|
|
9
|
+
"$type": "color"
|
|
13
10
|
},
|
|
14
11
|
"color": {
|
|
15
12
|
"$extensions": {
|
|
16
|
-
"nl.nldesignsystem.css
|
|
17
|
-
|
|
18
|
-
"inherits": true
|
|
19
|
-
},
|
|
20
|
-
"nl.nldesignsystem.figma.supports-token": true
|
|
13
|
+
"nl.nldesignsystem.css-property-syntax": "<color>",
|
|
14
|
+
"nl.nldesignsystem.figma-implementation": true
|
|
21
15
|
},
|
|
22
|
-
"type": "color"
|
|
16
|
+
"$type": "color"
|
|
23
17
|
},
|
|
24
18
|
"font-family": {
|
|
25
19
|
"$extensions": {
|
|
26
|
-
"nl.nldesignsystem.css
|
|
27
|
-
|
|
28
|
-
"inherits": true
|
|
29
|
-
},
|
|
30
|
-
"nl.nldesignsystem.figma.supports-token": true
|
|
20
|
+
"nl.nldesignsystem.css-property-syntax": "*",
|
|
21
|
+
"nl.nldesignsystem.figma-implementation": true
|
|
31
22
|
},
|
|
32
|
-
"type": "
|
|
23
|
+
"$type": "fontFamily"
|
|
33
24
|
},
|
|
34
25
|
"font-size": {
|
|
35
26
|
"$extensions": {
|
|
36
|
-
"nl.nldesignsystem.css
|
|
37
|
-
|
|
38
|
-
"inherits": true
|
|
39
|
-
},
|
|
40
|
-
"nl.nldesignsystem.figma.supports-token": true
|
|
27
|
+
"nl.nldesignsystem.css-property-syntax": "<length>",
|
|
28
|
+
"nl.nldesignsystem.figma-implementation": true
|
|
41
29
|
},
|
|
42
|
-
"type": "
|
|
30
|
+
"$type": "dimension"
|
|
43
31
|
},
|
|
44
32
|
"font-weight": {
|
|
45
33
|
"$extensions": {
|
|
46
|
-
"nl.nldesignsystem.css
|
|
47
|
-
|
|
48
|
-
"inherits": true
|
|
49
|
-
},
|
|
50
|
-
"nl.nldesignsystem.figma.supports-token": true
|
|
34
|
+
"nl.nldesignsystem.css-property-syntax": "<number>",
|
|
35
|
+
"nl.nldesignsystem.figma-implementation": true
|
|
51
36
|
},
|
|
52
|
-
"type": "
|
|
37
|
+
"$type": "fontWeight"
|
|
53
38
|
},
|
|
54
39
|
"line-height": {
|
|
55
40
|
"$extensions": {
|
|
56
|
-
"nl.nldesignsystem.css
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"inherits": true
|
|
62
|
-
},
|
|
63
|
-
"nl.nldesignsystem.figma.supports-token": true
|
|
41
|
+
"nl.nldesignsystem.css-property-syntax": [
|
|
42
|
+
"<length>",
|
|
43
|
+
"<number>"
|
|
44
|
+
],
|
|
45
|
+
"nl.nldesignsystem.figma-implementation": true
|
|
64
46
|
},
|
|
65
|
-
"type": "
|
|
47
|
+
"$type": "dimension"
|
|
66
48
|
}
|
|
67
49
|
}
|
|
68
50
|
}
|
package/package.json
CHANGED
package/src/tokens.json
CHANGED
|
@@ -3,63 +3,45 @@
|
|
|
3
3
|
"document": {
|
|
4
4
|
"background-color": {
|
|
5
5
|
"$extensions": {
|
|
6
|
-
"nl.nldesignsystem.css
|
|
7
|
-
|
|
8
|
-
"inherits": true
|
|
9
|
-
},
|
|
10
|
-
"nl.nldesignsystem.figma.supports-token": true
|
|
6
|
+
"nl.nldesignsystem.css-property-syntax": "<color>",
|
|
7
|
+
"nl.nldesignsystem.figma-implementation": true
|
|
11
8
|
},
|
|
12
|
-
"type": "color"
|
|
9
|
+
"$type": "color"
|
|
13
10
|
},
|
|
14
11
|
"color": {
|
|
15
12
|
"$extensions": {
|
|
16
|
-
"nl.nldesignsystem.css
|
|
17
|
-
|
|
18
|
-
"inherits": true
|
|
19
|
-
},
|
|
20
|
-
"nl.nldesignsystem.figma.supports-token": true
|
|
13
|
+
"nl.nldesignsystem.css-property-syntax": "<color>",
|
|
14
|
+
"nl.nldesignsystem.figma-implementation": true
|
|
21
15
|
},
|
|
22
|
-
"type": "color"
|
|
16
|
+
"$type": "color"
|
|
23
17
|
},
|
|
24
18
|
"font-family": {
|
|
25
19
|
"$extensions": {
|
|
26
|
-
"nl.nldesignsystem.css
|
|
27
|
-
|
|
28
|
-
"inherits": true
|
|
29
|
-
},
|
|
30
|
-
"nl.nldesignsystem.figma.supports-token": true
|
|
20
|
+
"nl.nldesignsystem.css-property-syntax": "*",
|
|
21
|
+
"nl.nldesignsystem.figma-implementation": true
|
|
31
22
|
},
|
|
32
|
-
"type": "
|
|
23
|
+
"$type": "fontFamily"
|
|
33
24
|
},
|
|
34
25
|
"font-size": {
|
|
35
26
|
"$extensions": {
|
|
36
|
-
"nl.nldesignsystem.css
|
|
37
|
-
|
|
38
|
-
"inherits": true
|
|
39
|
-
},
|
|
40
|
-
"nl.nldesignsystem.figma.supports-token": true
|
|
27
|
+
"nl.nldesignsystem.css-property-syntax": "<length>",
|
|
28
|
+
"nl.nldesignsystem.figma-implementation": true
|
|
41
29
|
},
|
|
42
|
-
"type": "
|
|
30
|
+
"$type": "dimension"
|
|
43
31
|
},
|
|
44
32
|
"font-weight": {
|
|
45
33
|
"$extensions": {
|
|
46
|
-
"nl.nldesignsystem.css
|
|
47
|
-
|
|
48
|
-
"inherits": true
|
|
49
|
-
},
|
|
50
|
-
"nl.nldesignsystem.figma.supports-token": true
|
|
34
|
+
"nl.nldesignsystem.css-property-syntax": "<number>",
|
|
35
|
+
"nl.nldesignsystem.figma-implementation": true
|
|
51
36
|
},
|
|
52
|
-
"type": "
|
|
37
|
+
"$type": "fontWeight"
|
|
53
38
|
},
|
|
54
39
|
"line-height": {
|
|
55
40
|
"$extensions": {
|
|
56
|
-
"nl.nldesignsystem.css
|
|
57
|
-
|
|
58
|
-
"inherits": true
|
|
59
|
-
},
|
|
60
|
-
"nl.nldesignsystem.figma.supports-token": true
|
|
41
|
+
"nl.nldesignsystem.css-property-syntax": ["<length>", "<number>"],
|
|
42
|
+
"nl.nldesignsystem.figma-implementation": true
|
|
61
43
|
},
|
|
62
|
-
"type": "
|
|
44
|
+
"$type": "dimension"
|
|
63
45
|
}
|
|
64
46
|
}
|
|
65
47
|
}
|