@splunk/react-page 6.3.2 → 6.3.3
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/CHANGELOG.md +5 -0
- package/lib/index.js +3 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Change Log
|
|
2
2
|
============
|
|
3
3
|
|
|
4
|
+
6.3.3 - November 7, 2023
|
|
5
|
+
----------
|
|
6
|
+
Bug Fixes:
|
|
7
|
+
* Fixed issue with the Splunk Enterprise global banner not fitting correctly when `options.lazyLoadLayout=true` (SPL-245739).
|
|
8
|
+
|
|
4
9
|
6.3.2 - October 11, 2023
|
|
5
10
|
----------
|
|
6
11
|
Bug Fixes:
|
package/lib/index.js
CHANGED
|
@@ -377,7 +377,9 @@
|
|
|
377
377
|
F.unmount(q);
|
|
378
378
|
var a = document.querySelector(U);
|
|
379
379
|
var o = (!v && !m ? j : 0) + (!v && !f ? S : 0);
|
|
380
|
-
|
|
380
|
+
// set a min-height for basic nav bar components and auto height for any additional components like global banner
|
|
381
|
+
q.style.minHeight = "".concat(o, "px");
|
|
382
|
+
q.style.height = "auto";
|
|
381
383
|
q.appendChild(a);
|
|
382
384
|
}
|
|
383
385
|
t.appendChild(x);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splunk/react-page",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.3",
|
|
4
4
|
"description": "Load React components into the latest layout from Splunk Enterprise",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"test:cypress:ci": "node src/tests/run-cypress-tests.js"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@splunk/react-ui": "^4.
|
|
25
|
+
"@splunk/react-ui": "^4.22.0",
|
|
26
26
|
"@splunk/splunk-utils": "^2.3.4",
|
|
27
27
|
"@splunk/themes": "^0.16.3",
|
|
28
28
|
"@splunk/ui-utils": "^1.6.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@splunk/babel-preset": "^4.0.0",
|
|
35
35
|
"@splunk/eslint-config": "^4.0.0",
|
|
36
36
|
"@splunk/stylelint-config": "^4.0.0",
|
|
37
|
-
"@splunk/webpack-configs": "^7.0.
|
|
37
|
+
"@splunk/webpack-configs": "^7.0.2",
|
|
38
38
|
"babel-eslint": "^10.1.0",
|
|
39
39
|
"babel-loader": "^8.3.0",
|
|
40
40
|
"babel-plugin-transform-imports": "^2.0.0",
|
|
@@ -64,6 +64,6 @@
|
|
|
64
64
|
"styled-components": "^5.3.10"
|
|
65
65
|
},
|
|
66
66
|
"engines": {
|
|
67
|
-
"node": ">=
|
|
67
|
+
"node": ">=14"
|
|
68
68
|
}
|
|
69
69
|
}
|