@db-ux/core-foundations 2.4.0 → 2.4.2
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.
|
@@ -89,11 +89,11 @@ $db-breakpoint-xl: helpers.px-to-em($db-screen-size-xl);
|
|
|
89
89
|
$min: "";
|
|
90
90
|
$max: "";
|
|
91
91
|
|
|
92
|
-
@if (map.get($data, "min")
|
|
92
|
+
@if (map.get($data, "min")) {
|
|
93
93
|
$min: "#{helpers.px-to-em(get-screen-size(map.get($data, "min")))} < ";
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
-
@if (map.get($data, "max")
|
|
96
|
+
@if (map.get($data, "max")) {
|
|
97
97
|
$max: " <= #{helpers.px-to-em(get-screen-size(map.get($data, "max")))}";
|
|
98
98
|
}
|
|
99
99
|
|
|
@@ -123,7 +123,7 @@ iframe {
|
|
|
123
123
|
:where(ul) {
|
|
124
124
|
padding-inline-start: variables.$db-spacing-fixed-md;
|
|
125
125
|
/* stylelint-disable-next-line declaration-property-value-no-unknown, no-irregular-whitespace */
|
|
126
|
-
list-style-type: "\2022"+ " ";
|
|
126
|
+
list-style-type: "\2022" + " ";
|
|
127
127
|
|
|
128
128
|
li::marker {
|
|
129
129
|
color: #{colors.$db-brand-origin-default};
|
|
@@ -27,15 +27,15 @@ $default-icon-font-size: var(--db-icon-font-size, #{$default-icon-size-rem});
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
@function get-icon-size($icon-font-size) {
|
|
30
|
-
@if ($icon-font-size<20) {
|
|
30
|
+
@if ($icon-font-size < 20) {
|
|
31
31
|
@return 16;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
@if ($icon-font-size<24) {
|
|
34
|
+
@if ($icon-font-size < 24) {
|
|
35
35
|
@return 20;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
@if ($icon-font-size<32) {
|
|
38
|
+
@if ($icon-font-size < 32) {
|
|
39
39
|
@return 24;
|
|
40
40
|
}
|
|
41
41
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/core-foundations",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Provides basic tokens and assets based on DB UX Design System (Version 3).",
|
|
6
6
|
"repository": {
|
|
@@ -47,16 +47,16 @@
|
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@csstools/normalize.css": "12.1.1",
|
|
49
49
|
"@db-ux/icon-font-tools": "0.3.4",
|
|
50
|
-
"@playwright/test": "1.
|
|
50
|
+
"@playwright/test": "1.54.1",
|
|
51
51
|
"cpr": "3.0.1",
|
|
52
52
|
"cssnano": "^7.0.7",
|
|
53
|
-
"dotenv": "^17.0
|
|
53
|
+
"dotenv": "^17.2.0",
|
|
54
54
|
"glob": "11.0.3",
|
|
55
55
|
"nodemon": "3.1.10",
|
|
56
56
|
"prettier": "^3.6.2",
|
|
57
57
|
"sass": "1.85.0",
|
|
58
58
|
"tsx": "^4.20.3",
|
|
59
|
-
"typescript": "^5.
|
|
59
|
+
"typescript": "^5.8.3",
|
|
60
60
|
"vite": "^6.3.5"
|
|
61
61
|
},
|
|
62
62
|
"publishConfig": {
|