@conduction/components 2.1.7 → 2.1.9

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/README.md CHANGED
@@ -4,6 +4,7 @@
4
4
 
5
5
  - **Version 2.1 (breaking changes from 2.0.x)**
6
6
 
7
+ - 2.1.8 & 2.1.9: PrimaryTopNav will always show subItems on mobile
7
8
  - 2.1.7: Add disabled placholders to all Select elements.
8
9
  - 2.1.6: Add disabled state to CreateKeyValue component
9
10
  - 2.1.4 & 2.1.5: Remove IInputProps from CreateKeyValue to undo duplicate defaultValue prop
@@ -58,6 +58,8 @@
58
58
  margin: unset;
59
59
  padding-inline-start: unset;
60
60
  align-items: center;
61
+ max-height: 80vh;
62
+ overflow-y: scroll;
61
63
  }
62
64
 
63
65
  .li {
@@ -95,7 +97,7 @@
95
97
  top: 100%;
96
98
  padding: 0;
97
99
  width: 100%;
98
- display: none;
100
+ display: block;
99
101
  list-style-type: none;
100
102
  background-color: var(--conduction-primary-top-nav-background-color);
101
103
  border-bottom-right-radius: var(--conduction-primary-top-nav-dropdown-border-radius);
@@ -133,6 +135,7 @@
133
135
 
134
136
  .dropdown {
135
137
  position: absolute;
138
+ display: none;
136
139
  }
137
140
 
138
141
  .menuToggleContainer {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduction/components",
3
- "version": "2.1.7",
3
+ "version": "2.1.9",
4
4
  "description": "React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -58,6 +58,8 @@
58
58
  margin: unset;
59
59
  padding-inline-start: unset;
60
60
  align-items: center;
61
+ max-height: 80vh;
62
+ overflow-y: scroll;
61
63
  }
62
64
 
63
65
  .li {
@@ -95,7 +97,7 @@
95
97
  top: 100%;
96
98
  padding: 0;
97
99
  width: 100%;
98
- display: none;
100
+ display: block;
99
101
  list-style-type: none;
100
102
  background-color: var(--conduction-primary-top-nav-background-color);
101
103
  border-bottom-right-radius: var(--conduction-primary-top-nav-dropdown-border-radius);
@@ -133,6 +135,7 @@
133
135
 
134
136
  .dropdown {
135
137
  position: absolute;
138
+ display: none;
136
139
  }
137
140
 
138
141
  .menuToggleContainer {