@gooddata/sdk-ui 11.56.0-alpha.3 → 11.56.0-alpha.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-ui",
3
- "version": "11.56.0-alpha.3",
3
+ "version": "11.56.0-alpha.5",
4
4
  "description": "GoodData.UI SDK - Core",
5
5
  "license": "MIT",
6
6
  "author": "GoodData Corporation",
@@ -42,9 +42,9 @@
42
42
  "ts-invariant": "0.10.3",
43
43
  "tslib": "2.8.1",
44
44
  "uuid": "11.1.1",
45
- "@gooddata/sdk-model": "11.56.0-alpha.3",
46
- "@gooddata/util": "11.56.0-alpha.3",
47
- "@gooddata/sdk-backend-spi": "11.56.0-alpha.3"
45
+ "@gooddata/sdk-backend-spi": "11.56.0-alpha.5",
46
+ "@gooddata/sdk-model": "11.56.0-alpha.5",
47
+ "@gooddata/util": "11.56.0-alpha.5"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@microsoft/api-documenter": "7.30.10",
@@ -59,7 +59,7 @@
59
59
  "@types/react-dom": "19.1.7",
60
60
  "@typescript-eslint/eslint-plugin": "8.58.0",
61
61
  "@typescript-eslint/parser": "8.58.0",
62
- "@typescript/native-preview": "7.0.0-dev.20260701.1",
62
+ "@typescript/native-preview": "7.0.0-dev.20260707.2",
63
63
  "dependency-cruiser": "17.3.10",
64
64
  "eslint": "^9.39.2",
65
65
  "eslint-plugin-headers": "1.3.3",
@@ -84,13 +84,13 @@
84
84
  "typescript": "6.0.3",
85
85
  "vitest": "4.1.8",
86
86
  "vitest-dom": "0.1.1",
87
- "@gooddata/eslint-config": "11.56.0-alpha.3",
88
- "@gooddata/i18n-toolkit": "11.56.0-alpha.3",
89
- "@gooddata/oxlint-config": "11.56.0-alpha.3",
90
- "@gooddata/reference-workspace": "11.56.0-alpha.3",
91
- "@gooddata/sdk-backend-mockingbird": "11.56.0-alpha.3",
92
- "@gooddata/sdk-backend-base": "11.56.0-alpha.3",
93
- "@gooddata/stylelint-config": "11.56.0-alpha.3"
87
+ "@gooddata/eslint-config": "11.56.0-alpha.5",
88
+ "@gooddata/i18n-toolkit": "11.56.0-alpha.5",
89
+ "@gooddata/oxlint-config": "11.56.0-alpha.5",
90
+ "@gooddata/sdk-backend-base": "11.56.0-alpha.5",
91
+ "@gooddata/reference-workspace": "11.56.0-alpha.5",
92
+ "@gooddata/stylelint-config": "11.56.0-alpha.5",
93
+ "@gooddata/sdk-backend-mockingbird": "11.56.0-alpha.5"
94
94
  },
95
95
  "peerDependencies": {
96
96
  "react": "^18.0.0 || ^19.0.0",
@@ -1,4 +1,5 @@
1
1
  // (C) 2007-2018 GoodData Corporation
2
+ @use "sass:list";
2
3
  // Here we define the breakpoints which will become the upper border for each media size.
3
4
  // The function em-calc() calculates the em-value from a px-value.
4
5
 
@@ -19,17 +20,17 @@ $xxlarge-range: ($xlarge-breakpoint + em-calc(1), em-calc(99999999)) !default; /
19
20
 
20
21
  // Media Queries
21
22
  @function lower-bound($range) {
22
- @if length($range) <= 0 {
23
+ @if list.length($range) <= 0 {
23
24
  @return 0;
24
25
  }
25
- @return nth($range, 1);
26
+ @return list.nth($range, 1);
26
27
  }
27
28
 
28
29
  @function upper-bound($range) {
29
- @if length($range) < 2 {
30
+ @if list.length($range) < 2 {
30
31
  @return 999999999999;
31
32
  }
32
- @return nth($range, 2);
33
+ @return list.nth($range, 2);
33
34
  }
34
35
 
35
36
  $screen: "only screen" !default;