@uniformdev/design-system 19.37.1-alpha.4 → 19.38.2

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/dist/esm/index.js CHANGED
@@ -11437,9 +11437,19 @@ var menu = css25`
11437
11437
  flex-direction: column;
11438
11438
  padding: var(--spacing-sm);
11439
11439
  outline: none;
11440
- overflow: hidden;
11440
+ overflow-x: hidden;
11441
+ overflow-y: auto;
11441
11442
  position: relative;
11442
11443
  z-index: var(--z-50);
11444
+
11445
+ // work around for smaller screens not being able to access large menus
11446
+ // see uni-2997
11447
+ max-height: 55vh; // firefox support
11448
+
11449
+ ${supports("max-height: 60dvh")} {
11450
+ max-height: 55dvh; // modern browser support
11451
+ }
11452
+ ${scrollbarStyles}
11443
11453
  `;
11444
11454
 
11445
11455
  // src/components/Menu/Menu.tsx
package/dist/index.js CHANGED
@@ -11666,9 +11666,19 @@ var menu = import_react34.css`
11666
11666
  flex-direction: column;
11667
11667
  padding: var(--spacing-sm);
11668
11668
  outline: none;
11669
- overflow: hidden;
11669
+ overflow-x: hidden;
11670
+ overflow-y: auto;
11670
11671
  position: relative;
11671
11672
  z-index: var(--z-50);
11673
+
11674
+ // work around for smaller screens not being able to access large menus
11675
+ // see uni-2997
11676
+ max-height: 55vh; // firefox support
11677
+
11678
+ ${supports("max-height: 60dvh")} {
11679
+ max-height: 55dvh; // modern browser support
11680
+ }
11681
+ ${scrollbarStyles}
11672
11682
  `;
11673
11683
 
11674
11684
  // src/components/Menu/Menu.tsx
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/design-system",
3
- "version": "19.37.1-alpha.4+d2fd8a8f3",
3
+ "version": "19.38.2",
4
4
  "description": "Uniform design system components",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -24,8 +24,8 @@
24
24
  "@storybook/react": "6.5.16",
25
25
  "@types/react": "18.2.7",
26
26
  "@types/react-dom": "18.2.4",
27
- "@uniformdev/canvas": "^19.37.1-alpha.4+d2fd8a8f3",
28
- "@uniformdev/richtext": "^19.37.1-alpha.4+d2fd8a8f3",
27
+ "@uniformdev/canvas": "^19.38.2",
28
+ "@uniformdev/richtext": "^19.38.2",
29
29
  "autoprefixer": "10.4.14",
30
30
  "hygen": "6.2.11",
31
31
  "postcss": "8.4.27",
@@ -50,13 +50,13 @@
50
50
  "lottie-react": "^2.3.1",
51
51
  "monaco-editor": "0.40.0",
52
52
  "param-case": "3.0.4",
53
- "react-hotkeys-hook": "4.4.0",
53
+ "react-hotkeys-hook": "4.4.1",
54
54
  "react-icons": "4.10.1",
55
55
  "react-paginate": "8.1.5",
56
- "react-select": "5.7.3",
56
+ "react-select": "5.7.4",
57
57
  "react-use": "17.4.0",
58
58
  "reakit": "1.3.11",
59
- "zod-to-json-schema": "3.21.3"
59
+ "zod-to-json-schema": "3.21.4"
60
60
  },
61
61
  "peerDependencies": {
62
62
  "react": ">=17 || 17 || 18",
@@ -68,5 +68,5 @@
68
68
  "publishConfig": {
69
69
  "access": "public"
70
70
  },
71
- "gitHead": "d2fd8a8f3cd9348ecdd87bdd821e1ab89a7b8054"
71
+ "gitHead": "b97fd17fd44e0f5bd3806e942b516cb2bd218096"
72
72
  }