ode-explorer 1.4.14-develop-wl.202407231629 → 1.4.14
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/index.js +7 -1
- package/dist/version.txt +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -25710,6 +25710,7 @@ to {
|
|
|
25710
25710
|
parameterLimit: 1e3,
|
|
25711
25711
|
parseArrays: true,
|
|
25712
25712
|
plainObjects: false,
|
|
25713
|
+
strictDepth: false,
|
|
25713
25714
|
strictNullHandling: false
|
|
25714
25715
|
};
|
|
25715
25716
|
var interpretNumericEntities = function(str) {
|
|
@@ -25836,6 +25837,9 @@ to {
|
|
|
25836
25837
|
keys.push(segment[1]);
|
|
25837
25838
|
}
|
|
25838
25839
|
if (segment) {
|
|
25840
|
+
if (options.strictDepth === true) {
|
|
25841
|
+
throw new RangeError("Input depth exceeded depth option of " + options.depth + " and strictDepth is true");
|
|
25842
|
+
}
|
|
25839
25843
|
keys.push("[" + key.slice(segment.index) + "]");
|
|
25840
25844
|
}
|
|
25841
25845
|
return parseObject(keys, val, options, valuesParsed);
|
|
@@ -25882,6 +25886,7 @@ to {
|
|
|
25882
25886
|
parameterLimit: typeof opts.parameterLimit === "number" ? opts.parameterLimit : defaults$3.parameterLimit,
|
|
25883
25887
|
parseArrays: opts.parseArrays !== false,
|
|
25884
25888
|
plainObjects: typeof opts.plainObjects === "boolean" ? opts.plainObjects : defaults$3.plainObjects,
|
|
25889
|
+
strictDepth: typeof opts.strictDepth === "boolean" ? !!opts.strictDepth : defaults$3.strictDepth,
|
|
25885
25890
|
strictNullHandling: typeof opts.strictNullHandling === "boolean" ? opts.strictNullHandling : defaults$3.strictNullHandling
|
|
25886
25891
|
};
|
|
25887
25892
|
};
|
|
@@ -67943,7 +67948,8 @@ void main()
|
|
|
67943
67948
|
}, ref2) => {
|
|
67944
67949
|
const classes2 = clsx("navbar-brand d-none d-md-block");
|
|
67945
67950
|
return /* @__PURE__ */ jsxRuntimeExports.jsx("a", { ref: ref2, className: classes2, href: "/timeline/timeline", "aria-label": translate2, children: /* @__PURE__ */ jsxRuntimeExports.jsx("img", { className: "logo", src, alt: `logo ${is1d ? "ONE" : "NEO"}`, width: "300", height: "52" }) });
|
|
67946
|
-
}), Logo$1 = Logo
|
|
67951
|
+
}), Logo$1 = Logo;
|
|
67952
|
+
const PopoverBody = ({
|
|
67947
67953
|
children,
|
|
67948
67954
|
className
|
|
67949
67955
|
}) => {
|
package/dist/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ode-explorer=1.0-b2school-SNAPSHOT
|
|
1
|
+
ode-explorer=1.0-b2school-SNAPSHOT 02/08/2024 14:51:49
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ode-explorer",
|
|
3
|
-
"version": "1.4.14
|
|
3
|
+
"version": "1.4.14",
|
|
4
4
|
"description": "Edifice Explorer",
|
|
5
5
|
"homepage": "https://github.com/edificeio/explorer#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
]
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@edifice-ui/icons": "
|
|
40
|
-
"@edifice-ui/react": "
|
|
39
|
+
"@edifice-ui/icons": "1.5.15",
|
|
40
|
+
"@edifice-ui/react": "1.5.15",
|
|
41
41
|
"@react-spring/web": "9.7.3",
|
|
42
42
|
"@tanstack/react-query": "5.8.4",
|
|
43
43
|
"clsx": "2.1.0",
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
"@vitejs/plugin-react-swc": "3.5.0",
|
|
66
66
|
"concurrently": "8.2.2",
|
|
67
67
|
"csstype": "3.1.3",
|
|
68
|
-
"edifice-bootstrap": "
|
|
69
|
-
"edifice-ts-client": "
|
|
68
|
+
"edifice-bootstrap": "1.4.0",
|
|
69
|
+
"edifice-ts-client": "1.5.15",
|
|
70
70
|
"eslint": "8.56.0",
|
|
71
71
|
"eslint-config-prettier": "9.1.0",
|
|
72
72
|
"eslint-plugin-import": "2.29.1",
|