ids-enterprise 4.86.4 → 4.86.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/dist/css/theme-classic-contrast.css +3 -3
- package/dist/css/theme-classic-contrast.css.map +155 -1
- package/dist/css/theme-classic-contrast.min.css +3 -3
- package/dist/css/theme-classic-dark.css +3 -3
- package/dist/css/theme-classic-dark.css.map +155 -1
- package/dist/css/theme-classic-dark.min.css +3 -3
- package/dist/css/theme-classic-light.css +3 -3
- package/dist/css/theme-classic-light.css.map +155 -1
- package/dist/css/theme-classic-light.min.css +3 -3
- package/dist/css/theme-new-contrast.css +3 -3
- package/dist/css/theme-new-contrast.css.map +220 -1
- package/dist/css/theme-new-contrast.min.css +3 -3
- package/dist/css/theme-new-dark.css +3 -3
- package/dist/css/theme-new-dark.css.map +220 -1
- package/dist/css/theme-new-dark.min.css +3 -3
- package/dist/css/theme-new-light.css +3 -3
- package/dist/css/theme-new-light.css.map +220 -1
- package/dist/css/theme-new-light.min.css +3 -3
- package/dist/css/theme-soho-contrast.css +3 -3
- package/dist/css/theme-soho-contrast.css.map +155 -1
- package/dist/css/theme-soho-contrast.min.css +3 -3
- package/dist/css/theme-soho-dark.css +3 -3
- package/dist/css/theme-soho-dark.css.map +155 -1
- package/dist/css/theme-soho-dark.min.css +3 -3
- package/dist/css/theme-soho-light.css +3 -3
- package/dist/css/theme-soho-light.css.map +155 -1
- package/dist/css/theme-soho-light.min.css +3 -3
- package/dist/css/theme-uplift-contrast.css +3 -3
- package/dist/css/theme-uplift-contrast.css.map +220 -1
- package/dist/css/theme-uplift-contrast.min.css +3 -3
- package/dist/css/theme-uplift-dark.css +3 -3
- package/dist/css/theme-uplift-dark.css.map +220 -1
- package/dist/css/theme-uplift-dark.min.css +3 -3
- package/dist/css/theme-uplift-light.css +3 -3
- package/dist/css/theme-uplift-light.css.map +220 -1
- package/dist/css/theme-uplift-light.min.css +3 -3
- package/dist/js/d3.v7.js +13 -12
- package/dist/js/d3.v7.min.js +2 -2
- package/dist/js/jquery-3.6.1.js +30 -18
- package/dist/js/jquery-3.6.1.min.js +2 -2
- package/dist/js/jquery-3.6.1.min.map +1 -1
- package/dist/js/sohoxi.esm.js +6 -6
- package/dist/js/sohoxi.js +6 -6
- package/dist/js/sohoxi.min.js +4 -4
- package/dist/svg/theme-classic-svg-empty.html +6 -6
- package/dist/svg/theme-classic-svg.html +196 -196
- package/dist/svg/theme-new-default-svg.html +392 -392
- package/dist/svg/theme-new-svg-empty.html +19 -19
- package/dist/svg/theme-new-svg.html +365 -365
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@charset "UTF-8";/*!
|
|
2
|
-
* IDS Enterprise Components - v4.86.
|
|
3
|
-
* Date: 2025-
|
|
4
|
-
* Revision:
|
|
2
|
+
* IDS Enterprise Components - v4.86.5
|
|
3
|
+
* Date: 2025-08-08T19:50:11.472Z
|
|
4
|
+
* Revision: 9eb3517877ec24de961b9648d3998891ce4af524
|
|
5
5
|
*
|
|
6
6
|
*
|
|
7
7
|
* Apache License
|
package/dist/js/d3.v7.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
// https://d3js.org v7.
|
|
1
|
+
// https://d3js.org v7.9.0 Copyright 2010-2023 Mike Bostock
|
|
2
2
|
(function (global, factory) {
|
|
3
3
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
4
4
|
typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
|
5
5
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.d3 = global.d3 || {}));
|
|
6
6
|
})(this, (function (exports) { 'use strict';
|
|
7
7
|
|
|
8
|
-
var version = "7.
|
|
8
|
+
var version = "7.9.0";
|
|
9
9
|
|
|
10
10
|
function ascending$3(a, b) {
|
|
11
11
|
return a == null || b == null ? NaN : a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;
|
|
@@ -7040,7 +7040,7 @@ class Delaunator {
|
|
|
7040
7040
|
this._hullPrev = new Uint32Array(n); // edge to prev edge
|
|
7041
7041
|
this._hullNext = new Uint32Array(n); // edge to next edge
|
|
7042
7042
|
this._hullTri = new Uint32Array(n); // edge to adjacent triangle
|
|
7043
|
-
this._hullHash = new Int32Array(this._hashSize)
|
|
7043
|
+
this._hullHash = new Int32Array(this._hashSize); // angular edge hash
|
|
7044
7044
|
|
|
7045
7045
|
// temporary arrays for sorting points
|
|
7046
7046
|
this._ids = new Uint32Array(n);
|
|
@@ -7071,11 +7071,10 @@ class Delaunator {
|
|
|
7071
7071
|
const cx = (minX + maxX) / 2;
|
|
7072
7072
|
const cy = (minY + maxY) / 2;
|
|
7073
7073
|
|
|
7074
|
-
let minDist = Infinity;
|
|
7075
7074
|
let i0, i1, i2;
|
|
7076
7075
|
|
|
7077
7076
|
// pick a seed point close to the center
|
|
7078
|
-
for (let i = 0; i < n; i++) {
|
|
7077
|
+
for (let i = 0, minDist = Infinity; i < n; i++) {
|
|
7079
7078
|
const d = dist(cx, cy, coords[2 * i], coords[2 * i + 1]);
|
|
7080
7079
|
if (d < minDist) {
|
|
7081
7080
|
i0 = i;
|
|
@@ -7085,10 +7084,8 @@ class Delaunator {
|
|
|
7085
7084
|
const i0x = coords[2 * i0];
|
|
7086
7085
|
const i0y = coords[2 * i0 + 1];
|
|
7087
7086
|
|
|
7088
|
-
minDist = Infinity;
|
|
7089
|
-
|
|
7090
7087
|
// find the point closest to the seed
|
|
7091
|
-
for (let i = 0; i < n; i++) {
|
|
7088
|
+
for (let i = 0, minDist = Infinity; i < n; i++) {
|
|
7092
7089
|
if (i === i0) continue;
|
|
7093
7090
|
const d = dist(i0x, i0y, coords[2 * i], coords[2 * i + 1]);
|
|
7094
7091
|
if (d < minDist && d > 0) {
|
|
@@ -7124,9 +7121,10 @@ class Delaunator {
|
|
|
7124
7121
|
let j = 0;
|
|
7125
7122
|
for (let i = 0, d0 = -Infinity; i < n; i++) {
|
|
7126
7123
|
const id = this._ids[i];
|
|
7127
|
-
|
|
7124
|
+
const d = this._dists[id];
|
|
7125
|
+
if (d > d0) {
|
|
7128
7126
|
hull[j++] = id;
|
|
7129
|
-
d0 =
|
|
7127
|
+
d0 = d;
|
|
7130
7128
|
}
|
|
7131
7129
|
}
|
|
7132
7130
|
this.hull = hull.subarray(0, j);
|
|
@@ -10460,7 +10458,7 @@ function circleRadius(cosRadius, point) {
|
|
|
10460
10458
|
function circle$1() {
|
|
10461
10459
|
var center = constant$3([0, 0]),
|
|
10462
10460
|
radius = constant$3(90),
|
|
10463
|
-
precision = constant$3(
|
|
10461
|
+
precision = constant$3(2),
|
|
10464
10462
|
ring,
|
|
10465
10463
|
rotate,
|
|
10466
10464
|
stream = {point: point};
|
|
@@ -10914,7 +10912,7 @@ function clipAntimeridianInterpolate(from, to, direction, stream) {
|
|
|
10914
10912
|
|
|
10915
10913
|
function clipCircle(radius) {
|
|
10916
10914
|
var cr = cos$1(radius),
|
|
10917
|
-
delta =
|
|
10915
|
+
delta = 2 * radians,
|
|
10918
10916
|
smallRadius = cr > 0,
|
|
10919
10917
|
notHemisphere = abs$1(cr) > epsilon$1; // TODO optimise for this common case
|
|
10920
10918
|
|
|
@@ -17043,6 +17041,8 @@ var Accent = colors("7fc97fbeaed4fdc086ffff99386cb0f0027fbf5b17666666");
|
|
|
17043
17041
|
|
|
17044
17042
|
var Dark2 = colors("1b9e77d95f027570b3e7298a66a61ee6ab02a6761d666666");
|
|
17045
17043
|
|
|
17044
|
+
var observable10 = colors("4269d0efb118ff725c6cc5b03ca951ff8ab7a463f297bbf59c6b4e9498a0");
|
|
17045
|
+
|
|
17046
17046
|
var Paired = colors("a6cee31f78b4b2df8a33a02cfb9a99e31a1cfdbf6fff7f00cab2d66a3d9affff99b15928");
|
|
17047
17047
|
|
|
17048
17048
|
var Pastel1 = colors("fbb4aeb3cde3ccebc5decbe4fed9a6ffffcce5d8bdfddaecf2f2f2");
|
|
@@ -20441,6 +20441,7 @@ exports.schemeDark2 = Dark2;
|
|
|
20441
20441
|
exports.schemeGnBu = scheme$f;
|
|
20442
20442
|
exports.schemeGreens = scheme$4;
|
|
20443
20443
|
exports.schemeGreys = scheme$3;
|
|
20444
|
+
exports.schemeObservable10 = observable10;
|
|
20444
20445
|
exports.schemeOrRd = scheme$e;
|
|
20445
20446
|
exports.schemeOranges = scheme;
|
|
20446
20447
|
exports.schemePRGn = scheme$p;
|