@splunk/react-page 6.3.2 → 7.0.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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Change Log
2
2
  ============
3
3
 
4
+ 7.0.0 - February 6, 2024
5
+ ----------
6
+ API Changes:
7
+ * `@splunk/splunk-utils` dependency has been updated to `3.0.0`.
8
+ * `3.0.0` no longer supports Search V1 for some endpoints and has had the fallback behavior for older versions of Splunk removed (SUI-5957).
9
+ * `react-page` does not use these endpoints directly but apps leveraging `react-page` and search endpoints should use search V2. See the `@splunk/splunk-utils` CHANGELOG and [Semantic API Versioning](https://docs.splunk.com/Documentation/Splunk/9.1.2/RESTREF/RESTsearch#Semantic_API_versioning) for more details.
10
+
11
+ 6.3.3 - November 7, 2023
12
+ ----------
13
+ Bug Fixes:
14
+ * Fixed issue with the Splunk Enterprise global banner not fitting correctly when `options.lazyLoadLayout=true` (SPL-245739).
15
+
4
16
  6.3.2 - October 11, 2023
5
17
  ----------
6
18
  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
- q.style.height = "".concat(o, "px");
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.2",
3
+ "version": "7.0.0",
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,9 +22,9 @@
22
22
  "test:cypress:ci": "node src/tests/run-cypress-tests.js"
23
23
  },
24
24
  "dependencies": {
25
- "@splunk/react-ui": "^4.21.1",
26
- "@splunk/splunk-utils": "^2.3.4",
27
- "@splunk/themes": "^0.16.3",
25
+ "@splunk/react-ui": "^4.25.0",
26
+ "@splunk/splunk-utils": "^3.0.0",
27
+ "@splunk/themes": "^0.16.4",
28
28
  "@splunk/ui-utils": "^1.6.0",
29
29
  "prop-types": "^15.6.2",
30
30
  "scriptjs": "^2.5.8"
@@ -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.1",
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": ">=6"
67
+ "node": ">=14"
68
68
  }
69
69
  }