@db-ux/core-components 4.2.3 → 4.2.4

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
  # @db-ux/core-components
2
2
 
3
+ ## 4.2.4
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: deprecation warning for SASS `if()` function - [see commit 69961ca](https://github.com/db-ux-design-system/core-web/commit/69961ca130a076ddbeb13c77379278571d92fec1)
8
+
3
9
  ## 4.2.3
4
10
 
5
11
  ### Patch Changes
@@ -12,4 +12,4 @@ U+010C, U+010D, U+010E, U+010F, U+011A, U+011B, U+0147, U+0148, U+0158, U+0159,
12
12
  U+00E9, U+00E8, U+00EB, U+00E4, U+00FC, U+00F6, U+00EF, U+00C9, U+00C8, U+00CB, U+00C4, U+00DC, U+00D6, U+00CF # Netherlands characters
13
13
  U+0391-03A9, U+03B1-03C9 # Greek characters
14
14
  U+0410-042F, U+0430-044F # Cyrillic characters
15
- U+0404,U+0406-0407,U+0456-0457,U+0413-0419,U+0433-0439,U+041A-041F,U+043A-043F,U+0420-0429,U+0440-0449,U+0490-0491 # Ukrainian characters
15
+ U+0404,U+0406-0407,U+0454,U+0456-0457,U+0413-0419,U+0433-0439,U+041A-041F,U+043A-043F,U+0420-0429,U+0440-0449,U+0490-0491 # Ukrainian characters
@@ -21,11 +21,12 @@ $stack-gaps: (
21
21
 
22
22
  @for $i from 1 through list.length($list) {
23
23
  $e: list.nth($list, $i);
24
- $result: if(
25
- $i != list.length($list),
26
- $result#{$e}#{$glue},
27
- $result#{$e}
28
- );
24
+
25
+ @if $i != list.length($list) {
26
+ $result: $result#{$e}#{$glue};
27
+ } @else {
28
+ $result: $result#{$e};
29
+ }
29
30
  }
30
31
 
31
32
  @return $result;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/core-components",
3
- "version": "4.2.3",
3
+ "version": "4.2.4",
4
4
  "type": "module",
5
5
  "description": "General technical components (styling, fonts and icons) out of DB UX Design System (Version 3)",
6
6
  "repository": {
@@ -47,7 +47,7 @@
47
47
  "start": "nodemon --watch src --watch scripts --watch scripts --ext js,tsx,ts,scss,json --exec \"npm run build\""
48
48
  },
49
49
  "dependencies": {
50
- "@db-ux/core-foundations": "4.2.3"
50
+ "@db-ux/core-foundations": "4.2.4"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@builder.io/eslint-plugin-mitosis": "0.0.17",