Skip to content

Commit

Permalink
fix(select): firefox recursion issue (#208)
Browse files Browse the repository at this point in the history
Bumping select version seems to fix this weird recursion issue in
Firefox when select is opened within a dialog/drawer

radix-ui/primitives#2390
  • Loading branch information
arturbien authored Sep 13, 2024
1 parent 814d3d6 commit ef0a542
Show file tree
Hide file tree
Showing 3 changed files with 523 additions and 46 deletions.
14 changes: 11 additions & 3 deletions apps/tailwind/app/globals.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer tw_base, frosted_ui, tw_components_utils;
@import 'frosted-ui/styles.css' layer(frosted_ui);

@layer tw_base {
@tailwind base;
}

@layer tw_components_utils {
@tailwind components;
@tailwind utilities;
}

body {
height: 100%;
Expand Down
4 changes: 2 additions & 2 deletions packages/frosted-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@
"@radix-ui/react-context-menu": "^2.1.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-direction": "^1.0.1",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-portal": "^1.0.4",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
Expand Down
Loading

0 comments on commit ef0a542

Please sign in to comment.