@moda/tokens 6.6.37 → 6.6.38

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.
@@ -60,11 +60,11 @@
60
60
  /// @return {string | null} declares !important or not
61
61
  @function important($important: false, $prop: null) {
62
62
  @if meta.type-of($important) == bool {
63
- @return if($important, !important, null);
63
+ @return if(sass($important): !important; else: null);
64
64
  }
65
65
 
66
66
  @if meta.type-of($important) == list {
67
- @return if(list.index($important, $prop), !important, null);
67
+ @return if(sass(list.index($important, $prop)): !important; else: null);
68
68
  }
69
69
 
70
70
  @return null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moda/tokens",
3
- "version": "6.6.37",
3
+ "version": "6.6.38",
4
4
  "description": "Constant values for modaoperandi.com",
5
5
  "repository": "git@github.com:ModaOperandi/tokens.git",
6
6
  "author": "Moda Operandi",
@@ -35,7 +35,7 @@
35
35
  "@commitlint/config-conventional": "^20.0.0",
36
36
  "@moda/node-sass-export": "^0.1.1",
37
37
  "@types/color-string": "^1.5.5",
38
- "@types/node": "^24.0.0",
38
+ "@types/node": "^25.0.1",
39
39
  "@types/sass": "^1.45.0",
40
40
  "@typescript-eslint/eslint-plugin": "^8.11.0",
41
41
  "@typescript-eslint/parser": "^8.11.0",