@utrecht/form-field-css 1.4.0 → 1.5.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @utrecht/form-field-css
2
2
 
3
+ ## 1.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 725617a: Add `tokens.mjs` and `tokens.d.mts` files to CSS packages.
8
+
3
9
  ## 1.4.0
4
10
 
5
11
  ### Minor Changes
@@ -0,0 +1,4 @@
1
+
2
+ declare const tokens: any;
3
+
4
+ export default tokens;
@@ -0,0 +1,70 @@
1
+ export default {
2
+ "utrecht": {
3
+ "form-field": {
4
+ "margin-block-start": {
5
+ "$extensions": {
6
+ "nl.nldesignsystem.css.property": {
7
+ "syntax": "<length>",
8
+ "inherits": true
9
+ },
10
+ "nl.nldesignsystem.figma.supports-token": false
11
+ },
12
+ "type": "spacing"
13
+ },
14
+ "margin-block-end": {
15
+ "$extensions": {
16
+ "nl.nldesignsystem.css.property": {
17
+ "syntax": "<length>",
18
+ "inherits": true
19
+ },
20
+ "nl.nldesignsystem.figma.supports-token": false
21
+ },
22
+ "type": "spacing"
23
+ },
24
+ "invalid": {
25
+ "border-inline-start-color": {
26
+ "$extensions": {
27
+ "nl.nldesignsystem.css.property": {
28
+ "syntax": "<color>",
29
+ "inherits": true
30
+ },
31
+ "nl.nldesignsystem.figma.supports-token": true
32
+ },
33
+ "type": "color"
34
+ },
35
+ "border-inline-start-width": {
36
+ "$extensions": {
37
+ "nl.nldesignsystem.css.property": {
38
+ "syntax": "<length>",
39
+ "inherits": true
40
+ },
41
+ "nl.nldesignsystem.figma.supports-token": true
42
+ },
43
+ "type": "borderWidth"
44
+ },
45
+ "padding-inline-start": {
46
+ "$extensions": {
47
+ "nl.nldesignsystem.css.property": {
48
+ "syntax": "<length>",
49
+ "inherits": true
50
+ },
51
+ "nl.nldesignsystem.figma.supports-token": true
52
+ },
53
+ "type": "spacing"
54
+ }
55
+ },
56
+ "label": {
57
+ "margin-block-end": {
58
+ "$extensions": {
59
+ "nl.nldesignsystem.css.property": {
60
+ "syntax": "<length>",
61
+ "inherits": true
62
+ },
63
+ "nl.nldesignsystem.figma.supports-token": false
64
+ },
65
+ "type": "spacing"
66
+ }
67
+ }
68
+ }
69
+ }
70
+ };
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.4.0",
2
+ "version": "1.5.0",
3
3
  "author": "Community for NL Design System",
4
4
  "description": "Form field component for the Municipality of Utrecht based on the NL Design System architecture",
5
5
  "license": "EUPL-1.2",