@utrecht/design-tokens 6.2.0 → 6.2.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.
Files changed (45) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/build-stylelint.mjs +1 -2
  3. package/dist/_mixin-theme.scss +9 -9
  4. package/dist/_mixin.scss +9 -9
  5. package/dist/_variables.scss +9 -9
  6. package/dist/dark/_mixin-theme.scss +9 -9
  7. package/dist/dark/_mixin.scss +9 -9
  8. package/dist/dark/_variables.scss +9 -9
  9. package/dist/dark/index.cjs +9 -9
  10. package/dist/dark/index.css +9 -9
  11. package/dist/dark/index.d.ts +9 -9
  12. package/dist/dark/index.json +60 -20
  13. package/dist/dark/index.mjs +9 -9
  14. package/dist/dark/index.tokens.json +13 -13
  15. package/dist/dark/list.json +60 -20
  16. package/dist/dark/list.mjs +60 -20
  17. package/dist/dark/property.css +6 -2
  18. package/dist/dark/theme-prince-xml.css +9 -9
  19. package/dist/dark/tokens.cjs +165 -125
  20. package/dist/dark/tokens.d.ts +11 -11
  21. package/dist/dark/tokens.json +193 -153
  22. package/dist/dark/variables.cjs +9 -9
  23. package/dist/dark/variables.d.ts +9 -9
  24. package/dist/dark/variables.less +9 -9
  25. package/dist/dark/variables.mjs +9 -9
  26. package/dist/index.cjs +9 -9
  27. package/dist/index.css +18 -18
  28. package/dist/index.d.ts +9 -9
  29. package/dist/index.json +60 -20
  30. package/dist/index.mjs +9 -9
  31. package/dist/index.tokens.json +13 -13
  32. package/dist/list.json +60 -20
  33. package/dist/list.mjs +60 -20
  34. package/dist/property.css +6 -2
  35. package/dist/theme-prince-xml.css +9 -9
  36. package/dist/tokens.cjs +165 -125
  37. package/dist/tokens.d.ts +11 -11
  38. package/dist/tokens.json +193 -153
  39. package/dist/variables.cjs +9 -9
  40. package/dist/variables.d.ts +9 -9
  41. package/dist/variables.less +9 -9
  42. package/dist/variables.mjs +9 -9
  43. package/package.json +4 -5
  44. package/stylelint.config.mjs +10 -0
  45. package/.stylelintrc.json +0 -10
@@ -457,6 +457,7 @@ export const utrechtSpaceColumn2xl = "28px"; // Extra Large 2
457
457
  export const utrechtSpaceColumn3xl = "32px"; // Extra Large 3
458
458
  export const utrechtSpaceColumn4xl = "48px"; // Extra Large 4
459
459
  export const utrechtSpaceColumn5xl = "64px"; // Extra Large 5
460
+ export const utrechtTextboxBorderBottomWidth = "3px";
460
461
  export const utrechtDataListMarginBlockEnd = "16px";
461
462
  export const utrechtDataListMarginBlockStart = "16px";
462
463
  export const utrechtDataListItemKeyFontWeight = "700";
@@ -835,6 +836,10 @@ export const utrechtOrderedListPaddingInlineStart = "28.8px";
835
836
  export const utrechtOrderedListItemMarginBlockStart = "0.25em";
836
837
  export const utrechtOrderedListItemMarginBlockEnd = "0.25em";
837
838
  export const utrechtOrderedListItemPaddingInlineStart = "0";
839
+ export const utrechtPageBodyPaddingBlockStart = "0";
840
+ export const utrechtPageBodyPaddingBlockEnd = "0";
841
+ export const utrechtPageBodyPaddingInlineStart = "0";
842
+ export const utrechtPageBodyPaddingInlineEnd = "0";
838
843
  export const utrechtPageBodyContentBackgroundColor = "hsl(0 0% 100%)";
839
844
  export const utrechtPageBodyContentColor = "hsl(0 0% 0%)";
840
845
  export const utrechtPageBodyContentPaddingBlockStart = "0";
@@ -842,20 +847,16 @@ export const utrechtPageBodyContentPaddingBlockEnd = "1em";
842
847
  export const utrechtPageBodyContentPaddingInlineStart = "2em";
843
848
  export const utrechtPageBodyContentPaddingInlineEnd = "2.4em";
844
849
  export const utrechtPageBodyContentMaxInlineSize = "1184px";
845
- export const utrechtPageBodyPaddingInlineEnd = "0";
846
- export const utrechtPageBodyPaddingInlineStart = "0";
847
- export const utrechtPageBodyPaddingBlockEnd = "0";
848
- export const utrechtPageBodyPaddingBlockStart = "0";
849
850
  export const utrechtPageContentPaddingBlockStart = "2em";
850
851
  export const utrechtPageContentPaddingBlockEnd = "2em";
851
852
  export const utrechtPageFooterColor = "hsl(0 0% 100%)";
852
853
  export const utrechtPageFooterBackgroundColor = "hsl(0 100% 40%)";
853
854
  export const utrechtPageFooterBackgroundImage =
854
855
  "linear-gradient(45deg, hsl(0 100% 40%), hsl(0 100% 40%) 50%, #d63433 50%);";
856
+ export const utrechtPageFooterContentPaddingInline = "28px";
855
857
  export const utrechtPageFooterContentPaddingBlockEnd = "48px";
856
858
  export const utrechtPageFooterContentPaddingBlockStart = "48px";
857
859
  export const utrechtPageFooterContentMaxInlineSize = "1184px";
858
- export const utrechtPageFooterContentPaddingInline = "28px";
859
860
  export const utrechtPageHeaderPaddingBlockStart = "0";
860
861
  export const utrechtPageHeaderPaddingBlockEnd = "0";
861
862
  export const utrechtPageHeaderPaddingInlineStart = "0";
@@ -864,10 +865,10 @@ export const utrechtPageHeaderContentBackgroundColor = "hsl(0 0% 100%)";
864
865
  export const utrechtPageHeaderContentColor = "hsl(0 0% 0%)";
865
866
  export const utrechtPageHeaderContentPaddingBlockStart = "1.8em";
866
867
  export const utrechtPageHeaderContentPaddingBlockEnd = "1em";
867
- export const utrechtPageHeaderContentPaddingInlineStart = "2em";
868
- export const utrechtPageHeaderContentPaddingInlineEnd = "2.4em";
869
- export const utrechtPageHeaderContentMaxInlineSize = "1184px";
870
868
  export const utrechtPageHeaderContentPaddingInline = "2em";
869
+ export const utrechtPageHeaderContentMaxInlineSize = "1184px";
870
+ export const utrechtPageHeaderContentPaddingInlineEnd = "2.4em";
871
+ export const utrechtPageHeaderContentPaddingInlineStart = "2em";
871
872
  export const utrechtPageBackgroundColor = "hsl(0 0% 100%)";
872
873
  export const utrechtPageColor = "hsl(0 0% 0%)";
873
874
  export const utrechtPageMarginInlineStart = "2em";
@@ -1085,7 +1086,6 @@ export const utrechtTableRowAlternateEvenColor = "hsl(0 0% 0%)";
1085
1086
  export const utrechtTextareaBorderBlockEndWidth = "3px";
1086
1087
  export const utrechtTextareaBorderBottomWidth = "3px";
1087
1088
  export const utrechtTextareaLineHeight = "1.5";
1088
- export const utrechtTextboxBorderBottomWidth = "3px";
1089
1089
  export const utrechtTooltipBackgroundColor = "hsl(0 0% 100%)";
1090
1090
  export const utrechtTooltipBorderColor = "hsl(0 0% 40%)";
1091
1091
  export const utrechtTooltipBorderRadius = "0";
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.2.0",
2
+ "version": "6.2.1",
3
3
  "author": "Community for NL Design System",
4
4
  "description": "Design Tokens for the Municipality of Utrecht based on the NL Design System architecture",
5
5
  "license": "SEE LICENSE IN ./LICENSE.md",
@@ -9,7 +9,8 @@
9
9
  ],
10
10
  "private": false,
11
11
  "publishConfig": {
12
- "access": "public"
12
+ "access": "public",
13
+ "provenance": true
13
14
  },
14
15
  "repository": {
15
16
  "type": "git+ssh",
@@ -19,10 +20,8 @@
19
20
  "devDependencies": {
20
21
  "@tokens-studio/sd-transforms": "2.0.3",
21
22
  "chokidar-cli": "3.0.0",
23
+ "es-toolkit": "1.46.0",
22
24
  "glob": "10.4.5",
23
- "lodash.isplainobject": "4.0.6",
24
- "lodash.merge": "4.6.2",
25
- "lodash.mergewith": "4.6.2",
26
25
  "regex-trie": "1.0.4",
27
26
  "rimraf": "5.0.10",
28
27
  "sass": "1.69.7",
@@ -0,0 +1,10 @@
1
+ export default {
2
+ extends: '../../stylelint.config.mjs',
3
+ rules: {
4
+ 'comment-empty-line-before': null,
5
+ 'order/properties-alphabetical-order': null,
6
+ 'custom-property-pattern': null,
7
+ 'no-duplicate-selectors': null,
8
+ 'color-hex-length': 'long',
9
+ },
10
+ };
package/.stylelintrc.json DELETED
@@ -1,10 +0,0 @@
1
- {
2
- "extends": "../../.stylelintrc.json",
3
- "rules": {
4
- "comment-empty-line-before": null,
5
- "order/properties-alphabetical-order": null,
6
- "custom-property-pattern": null,
7
- "no-duplicate-selectors": null,
8
- "color-hex-length": "long"
9
- }
10
- }