@mui/x-charts-vendor 7.14.0 → 7.15.0
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.
|
@@ -1179,10 +1179,10 @@
|
|
|
1179
1179
|
if (done) return;
|
|
1180
1180
|
++index;
|
|
1181
1181
|
}
|
|
1182
|
-
while (
|
|
1182
|
+
while ({
|
|
1183
1183
|
done,
|
|
1184
1184
|
value: next
|
|
1185
|
-
} = iterator.next()
|
|
1185
|
+
} = iterator.next(), !done) {
|
|
1186
1186
|
value = reducer(value, next, ++index, values);
|
|
1187
1187
|
}
|
|
1188
1188
|
return value;
|
|
@@ -1206,10 +1206,10 @@
|
|
|
1206
1206
|
for (const v of values) {
|
|
1207
1207
|
if (set.has(v)) return false;
|
|
1208
1208
|
let value, done;
|
|
1209
|
-
while (
|
|
1209
|
+
while ({
|
|
1210
1210
|
value,
|
|
1211
1211
|
done
|
|
1212
|
-
} = iterator.next())
|
|
1212
|
+
} = iterator.next()) {
|
|
1213
1213
|
if (done) break;
|
|
1214
1214
|
if (Object.is(v, value)) return false;
|
|
1215
1215
|
set.add(value);
|
|
@@ -1240,10 +1240,10 @@
|
|
|
1240
1240
|
const io = intern(o);
|
|
1241
1241
|
if (set.has(io)) continue;
|
|
1242
1242
|
let value, done;
|
|
1243
|
-
while (
|
|
1243
|
+
while ({
|
|
1244
1244
|
value,
|
|
1245
1245
|
done
|
|
1246
|
-
} = iterator.next())
|
|
1246
|
+
} = iterator.next()) {
|
|
1247
1247
|
if (done) return false;
|
|
1248
1248
|
const ivalue = intern(value);
|
|
1249
1249
|
set.add(ivalue);
|
|
@@ -536,10 +536,10 @@
|
|
|
536
536
|
const n = yt(t);
|
|
537
537
|
if (e.has(n)) continue;
|
|
538
538
|
let o, f;
|
|
539
|
-
for (;
|
|
539
|
+
for (; {
|
|
540
540
|
value: o,
|
|
541
541
|
done: f
|
|
542
|
-
} = r.next()
|
|
542
|
+
} = r.next();) {
|
|
543
543
|
if (f) return !1;
|
|
544
544
|
const t = yt(o);
|
|
545
545
|
if (e.add(t), Object.is(n, t)) break;
|
|
@@ -723,16 +723,16 @@
|
|
|
723
723
|
f,
|
|
724
724
|
i = -1;
|
|
725
725
|
if (arguments.length < 3) {
|
|
726
|
-
if (
|
|
726
|
+
if ({
|
|
727
727
|
done: o,
|
|
728
728
|
value: r
|
|
729
|
-
} = e.next()
|
|
729
|
+
} = e.next(), o) return;
|
|
730
730
|
++i;
|
|
731
731
|
}
|
|
732
|
-
for (;
|
|
732
|
+
for (; {
|
|
733
733
|
done: o,
|
|
734
734
|
value: f
|
|
735
|
-
} = e.next()
|
|
735
|
+
} = e.next(), !o;) r = n(r, f, ++i, t);
|
|
736
736
|
return r;
|
|
737
737
|
}, t.reverse = function (t) {
|
|
738
738
|
if ("function" != typeof t[Symbol.iterator]) throw new TypeError("values is not iterable");
|
|
@@ -11,10 +11,10 @@ function disjoint(values, other) {
|
|
|
11
11
|
for (const v of values) {
|
|
12
12
|
if (set.has(v)) return false;
|
|
13
13
|
let value, done;
|
|
14
|
-
while (
|
|
14
|
+
while ({
|
|
15
15
|
value,
|
|
16
16
|
done
|
|
17
|
-
} = iterator.next())
|
|
17
|
+
} = iterator.next()) {
|
|
18
18
|
if (done) break;
|
|
19
19
|
if (Object.is(v, value)) return false;
|
|
20
20
|
set.add(value);
|
|
@@ -18,10 +18,10 @@ function reduce(values, reducer, value) {
|
|
|
18
18
|
if (done) return;
|
|
19
19
|
++index;
|
|
20
20
|
}
|
|
21
|
-
while (
|
|
21
|
+
while ({
|
|
22
22
|
done,
|
|
23
23
|
value: next
|
|
24
|
-
} = iterator.next()
|
|
24
|
+
} = iterator.next(), !done) {
|
|
25
25
|
value = reducer(value, next, ++index, values);
|
|
26
26
|
}
|
|
27
27
|
return value;
|
|
@@ -11,10 +11,10 @@ function superset(values, other) {
|
|
|
11
11
|
const io = intern(o);
|
|
12
12
|
if (set.has(io)) continue;
|
|
13
13
|
let value, done;
|
|
14
|
-
while (
|
|
14
|
+
while ({
|
|
15
15
|
value,
|
|
16
16
|
done
|
|
17
|
-
} = iterator.next())
|
|
17
|
+
} = iterator.next()) {
|
|
18
18
|
if (done) return false;
|
|
19
19
|
const ivalue = intern(value);
|
|
20
20
|
set.add(ivalue);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-charts-vendor",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.15.0",
|
|
4
4
|
"description": "Vendored dependencies for MUI X Charts",
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@babel/runtime": "^7.25.
|
|
27
|
+
"@babel/runtime": "^7.25.4",
|
|
28
28
|
"@types/d3-color": "^3.1.3",
|
|
29
29
|
"@types/d3-delaunay": "^6.0.4",
|
|
30
30
|
"@types/d3-interpolate": "^3.0.4",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"robust-predicates": "^3.0.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@babel/plugin-transform-runtime": "^7.
|
|
44
|
+
"@babel/plugin-transform-runtime": "^7.25.4",
|
|
45
45
|
"@types/d3-array": "^3.2.1",
|
|
46
46
|
"@types/d3-format": "^3.0.4",
|
|
47
47
|
"@types/d3-path": "^3.1.0",
|