@openmrs/esm-primary-navigation-app 8.0.0 → 8.0.1-pre.3305

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openmrs/esm-primary-navigation-app",
3
- "version": "8.0.0",
3
+ "version": "8.0.1-pre.3305",
4
4
  "license": "MPL-2.0",
5
5
  "description": "Main navbar microfrontend for the OpenMRS SPA",
6
6
  "browser": "dist/openmrs-esm-primary-navigation-app.js",
@@ -52,8 +52,8 @@
52
52
  "single-spa": "6.x"
53
53
  },
54
54
  "devDependencies": {
55
- "@openmrs/esm-framework": "8.0.0",
56
- "@openmrs/webpack-config": "8.0.0",
55
+ "@openmrs/esm-framework": "8.0.1-pre.3305",
56
+ "@openmrs/webpack-config": "8.0.1-pre.3305",
57
57
  "jest": "^29.7.0",
58
58
  "react": "^18.1.0",
59
59
  "react-dom": "^18.1.0",
@@ -61,5 +61,6 @@
61
61
  "react-router-dom": "^6.3.0",
62
62
  "rxjs": "^6.5.3",
63
63
  "webpack": "^5.99.9"
64
- }
64
+ },
65
+ "stableVersion": "8.0.0"
65
66
  }
@@ -62,7 +62,7 @@ const HeaderItems: React.FC = () => {
62
62
  </div>
63
63
  </ConfigurableLink>
64
64
  <div className={styles.divider} />
65
- <ExtensionSlot name="top-nav-info-slot" />
65
+ <ExtensionSlot name="top-nav-info-slot" className={styles.topNavInfoSlot} />
66
66
  <HeaderGlobalBar className={styles.headerGlobalBar}>
67
67
  <ExtensionSlot
68
68
  name="top-nav-actions-slot"
@@ -41,3 +41,8 @@
41
41
  background-color: rgba(244, 244, 244, 0.4);
42
42
  margin-inline-start: layout.$spacing-04;
43
43
  }
44
+
45
+ .topNavInfoSlot {
46
+ display: flex;
47
+ gap: layout.$spacing-03;
48
+ }