@diabolic/hangover 0.1.3 → 0.1.4

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
@@ -970,6 +970,7 @@ All visual properties are configurable via CSS custom properties:
970
970
  /* Layout */
971
971
  --hangover-nav-width: 172px;
972
972
  --hangover-content-max-width: 240px;
973
+ --hangover-panel-nonav-width: 240px;
973
974
  --hangover-list-max-height: 280px;
974
975
 
975
976
  --hangover-transition: 330ms ease;
package/dist/hangover.css CHANGED
@@ -27,6 +27,7 @@
27
27
  0 2px 4px 0 rgba(37, 45, 91, 0.04);
28
28
  --hangover-nav-width: 172px;
29
29
  --hangover-content-max-width: 240px;
30
+ --hangover-panel-nonav-width: 240px;
30
31
  --hangover-list-max-height: 280px;
31
32
  --hangover-transition: 330ms ease;
32
33
  }
@@ -96,7 +97,10 @@
96
97
  }
97
98
  .hangoverDropdown-panel.hasNoNav {
98
99
  min-width: unset;
99
- width: 240px;
100
+ width: var(--hangover-panel-nonav-width);
101
+ }
102
+ .hangoverDropdown-panel.hasNoNav .hangoverDropdown-column.forItems {
103
+ max-width: none;
100
104
  }
101
105
  .hangoverDropdown-panel-inner {
102
106
  display: flex;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diabolic/hangover",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "A headless-style, compound React dropdown/field-picker component library",
5
5
  "license": "MIT",
6
6
  "author": "bugrakaan",