Skip to content

Commit 0315a97

Browse files
authored
Merge branch 'main' into r38y/hide-calendar-icon-in-firefox
2 parents 9c25e77 + 8381b23 commit 0315a97

File tree

10 files changed

+2296
-2228
lines changed

10 files changed

+2296
-2228
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
# Changelog
2+
### 2.8.4 - 2025-02-22 22:04:15
3+
4+
- User Dropdown Menu - `avatar_src` and `current_user_name` are optional by @mitkins in https://github.com/petalframework/petal_components/pull/406
5+
6+
### 2.8.3 - 2025-02-21 22:12:41
7+
8+
- Allow for multiple instances of the `slide_over` component by @mitkins in https://github.com/petalframework/petal_components/pull/404
9+
- Bump ex_doc from 0.37.0 to 0.37.1 by @dependabot in https://github.com/petalframework/petal_components/pull/403
10+
11+
### 2.8.2 - 2025-02-17 05:41:23
12+
13+
- Workaround for Slide Over and Modal with LiveView 1.0.4
14+
- Bump to Phoenix LiveView 1.0.4
15+
216
### 2.8.1 - 2024-12-17 01:12:12
317

418
- Bumped LiveView to 1.0.1

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ A: Yes! You can customize the components by overriding the CSS classes. For exam
165165
166166
```css
167167
.pc-button {
168-
@apply inline-flex items-center justify-center font-semibold tracking-wider uppercase transition duration-150 ease-in-out border-2 rounded-none focus:outline-none;
168+
@apply inline-flex items-center justify-center font-semibold tracking-wider uppercase transition duration-150 ease-in-out border-2 rounded-none focus:outline-hidden;
169169
}
170170
.pc-button--primary {
171171
@apply text-black border-black bg-primary-400 hover:bg-primary-700 focus:bg-primary-700 active:bg-primary-800 focus:shadow-primary-500/50;

assets/default.css

+2,177-2,168
Large diffs are not rendered by default.

lib/petal_components/modal.ex

+6-5
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ defmodule PetalComponents.Modal do
5555
{@rest}
5656
class="hidden pc-modal"
5757
>
58-
<div class="pc-modal__overlay" aria-hidden="true"></div>
58+
<div class="hidden pc-modal__overlay" aria-hidden="true"></div>
5959
<div
6060
class="pc-modal__wrapper"
6161
aria-labelledby={"pc-modal__header__text-#{@id}"}
@@ -116,13 +116,12 @@ defmodule PetalComponents.Modal do
116116
)
117117
|> JS.hide(
118118
to: "##{id} .pc-modal__box",
119-
time: 200,
120119
transition:
121120
{"transition-all transform ease-in duration-200",
122121
"opacity-100 translate-y-0 sm:scale-100",
123122
"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"}
124123
)
125-
|> JS.hide(to: "##{id}", transition: {"block", "block", "hidden"})
124+
|> JS.hide(to: "##{id}", transition: {"block duration-200", "block", "hidden"})
126125
|> JS.remove_class("overflow-hidden", to: "body")
127126
end
128127

@@ -133,10 +132,12 @@ defmodule PetalComponents.Modal do
133132
|> JS.show(to: "##{id}")
134133
|> JS.show(
135134
to: "##{id} .pc-modal__overlay",
135+
time: 300,
136136
transition: {"transition-all transform ease-out duration-300", "opacity-0", "opacity-100"}
137137
)
138138
|> JS.show(
139139
to: "##{id} .pc-modal__box",
140+
time: 300,
140141
transition:
141142
{"transition-all transform ease-out duration-300",
142143
"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",
@@ -152,10 +153,10 @@ defmodule PetalComponents.Modal do
152153
class: assigns[:class] || ""
153154
}
154155

155-
base_classes = "pc-modal__box"
156+
base_classes = "hidden pc-modal__box"
156157
max_width_class = "pc-modal__box--#{opts.max_width}"
157158
custom_classes = opts.class
158159

159-
[max_width_class, base_classes, custom_classes]
160+
[base_classes, max_width_class, custom_classes]
160161
end
161162
end

lib/petal_components/slide_over.ex

+30-34
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ defmodule PetalComponents.SlideOver do
22
use Phoenix.Component
33
alias Phoenix.LiveView.JS
44

5+
attr :id, :string, default: "slide-over"
6+
57
attr(:origin, :string,
68
default: "right",
79
values: ["left", "right", "top", "bottom"],
@@ -41,12 +43,12 @@ defmodule PetalComponents.SlideOver do
4143
~H"""
4244
<div
4345
{@rest}
44-
phx-mounted={!@hide && show_slide_over(@origin)}
45-
phx-remove={hide_slide_over(@origin, @close_slide_over_target)}
46+
phx-mounted={!@hide && show_slide_over(@origin, @id)}
47+
phx-remove={hide_slide_over(@origin, @id, @close_slide_over_target)}
4648
class="hidden pc-slide-over"
47-
id="slide-over"
49+
id={@id}
4850
>
49-
<div id="slide-over-overlay" class="pc-slideover__overlay" aria-hidden="true"></div>
51+
<div id={"#{@id}-overlay"} class="hidden pc-slideover__overlay" aria-hidden="true"></div>
5052
5153
<div
5254
class={["pc-slideover__wrapper", get_margin_classes(@origin), @class]}
@@ -55,22 +57,26 @@ defmodule PetalComponents.SlideOver do
5557
aria-modal="true"
5658
>
5759
<div
58-
id="slide-over-content"
60+
id={"#{@id}-content"}
5961
class={get_classes(@max_width, @origin, @class)}
60-
phx-click-away={@close_on_click_away && hide_slide_over(@origin, @close_slide_over_target)}
61-
phx-window-keydown={@close_on_escape && hide_slide_over(@origin, @close_slide_over_target)}
62+
phx-click-away={
63+
@close_on_click_away && hide_slide_over(@origin, @id, @close_slide_over_target)
64+
}
65+
phx-window-keydown={
66+
@close_on_escape && hide_slide_over(@origin, @id, @close_slide_over_target)
67+
}
6268
phx-key="escape"
6369
>
6470
<!-- Header -->
6571
<div class="pc-slideover__header">
6672
<div class="pc-slideover__header__container">
67-
<div class="pc-slideover__header__text">
73+
<div :if={@title} class="pc-slideover__header__text">
6874
{@title}
6975
</div>
7076
7177
<button
7278
type="button"
73-
phx-click={hide_slide_over(@origin, @close_slide_over_target)}
79+
phx-click={hide_slide_over(@origin, @id, @close_slide_over_target)}
7480
class="pc-slideover__header__button"
7581
>
7682
<div class="sr-only">Close</div>
@@ -90,53 +96,43 @@ defmodule PetalComponents.SlideOver do
9096
"""
9197
end
9298

93-
def show_slide_over(origin) do
99+
def show_slide_over(origin, id \\ "slide-over") do
94100
{start_class, end_class} = get_transition_classes(origin)
95101

96102
%JS{}
97-
|> JS.show(to: "#slide-over")
103+
|> JS.show(to: "##{id}")
98104
|> JS.show(
99-
to: "#slide-over-overlay",
105+
to: "##{id}-overlay",
106+
time: 300,
100107
transition: {"transition-all transform ease-out duration-300", "opacity-0", "opacity-100"}
101108
)
102109
|> JS.show(
103-
to: "#slide-over-content",
104-
transition: {
105-
"transition-all transform ease-out duration-300",
106-
start_class,
107-
end_class
108-
}
110+
to: "##{id}-content",
111+
time: 300,
112+
transition: {"transition-all transform ease-out duration-300", start_class, end_class}
109113
)
110114
|> JS.add_class("overflow-hidden", to: "body")
111-
|> JS.focus_first(to: "#slide-over-content")
115+
|> JS.focus_first(to: "##{id}-content")
112116
end
113117

114118
# The live view that calls <.slide_over> will need to handle the "close_slide_over" event. eg:
115119
# def handle_event("close_slide_over", _, socket) do
116120
# {:noreply, push_patch(socket, to: Routes.moderate_users_path(socket, :index))}
117121
# end
118-
def hide_slide_over(origin, close_slide_over_target \\ nil) do
122+
def hide_slide_over(origin, id \\ "slide-over", close_slide_over_target \\ nil) do
119123
{end_class, start_class} = get_transition_classes(origin)
120124

121125
js =
122126
JS.remove_class("overflow-hidden", to: "body")
123127
|> JS.hide(
124-
transition: {
125-
"ease-in duration-200",
126-
"opacity-100",
127-
"opacity-0"
128-
},
129-
to: "#slide-over-overlay"
128+
transition: {"ease-in duration-200", "opacity-100", "opacity-0"},
129+
to: "##{id}-overlay"
130130
)
131131
|> JS.hide(
132-
transition: {
133-
"ease-in duration-200",
134-
start_class,
135-
end_class
136-
},
137-
to: "#slide-over-content"
132+
transition: {"ease-in duration-200", start_class, end_class},
133+
to: "##{id}-content"
138134
)
139-
|> JS.hide(to: "#slide-over")
135+
|> JS.hide(to: "##{id}", transition: {"duration-200", "", ""})
140136

141137
if close_slide_over_target do
142138
JS.push(js, "close_slide_over", target: close_slide_over_target)
@@ -155,7 +151,7 @@ defmodule PetalComponents.SlideOver do
155151
end
156152

157153
defp get_classes(max_width, origin, class) do
158-
base_classes = "pc-slideover__box"
154+
base_classes = "hidden pc-slideover__box"
159155

160156
slide_over_classes =
161157
case origin do

lib/petal_components/user_dropdown_menu.ex

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ defmodule PetalComponents.UserDropdownMenu do
1414
~H"""
1515
<.dropdown :if={@user_menu_items != []}>
1616
<:trigger_element>
17-
<div class="inline-flex items-center justify-center w-full align-middle focus:outline-none">
18-
<%= if @current_user_name || @avatar_src do %>
17+
<div class="inline-flex items-center justify-center w-full align-middle focus:outline-hidden">
18+
<%= if assigns[:current_user_name] || assigns[:avatar_src] do %>
1919
<.avatar name={@current_user_name} src={@avatar_src} size="sm" random_color />
2020
<% else %>
2121
<.avatar size="sm" />

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule PetalComponents.MixProject do
22
use Mix.Project
33

44
@source_url "https://github.com/petalframework/petal_components"
5-
@version "2.8.1"
5+
@version "2.8.4"
66

77
def project do
88
[

0 commit comments

Comments
 (0)