css-zero 3.0.1 → 4.0.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +807 -0
- data/LICENSE.txt +21 -0
- data/app/assets/stylesheets/css-zero/animations.css +50 -50
- data/app/assets/stylesheets/css-zero/effects.css +14 -7
- data/app/assets/stylesheets/css-zero/filters.css +33 -41
- data/app/assets/stylesheets/css-zero/reset.css +19 -17
- data/app/assets/stylesheets/css-zero/transitions.css +12 -0
- data/app/assets/stylesheets/css-zero/typography.css +5 -2
- data/app/assets/stylesheets/css-zero/utilities.css +20 -23
- data/lib/css_zero/version.rb +1 -1
- data/lib/generators/css_zero/add/USAGE +1 -1
- data/lib/generators/css_zero/add/resources.yml +17 -13
- data/lib/generators/css_zero/add/templates/app/assets/images/{menu.svg → panel-left.svg} +1 -1
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/accordion.css +16 -6
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/alert.css +1 -1
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/autoanimate.css +2 -1
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/avatar.css +11 -11
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/badge.css +2 -3
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/button.css +19 -9
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/card.css +1 -1
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/carousel.css +2 -2
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/combobox.css +21 -17
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/command.css +8 -15
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/datepicker.css +27 -19
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/dialog.css +14 -9
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/dropzone.css +1 -1
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/flash.css +49 -30
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/group.css +4 -0
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/icons.css +2 -2
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/input.css +1 -1
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/input_clearable.css +1 -1
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/keyboard.css +21 -0
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/layouts.css +7 -1
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/lexxy.css +46 -0
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/lightbox.css +2 -2
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/list.css +1 -1
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/menu.css +5 -3
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/pagination.css +17 -0
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/popover.css +51 -5
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/progress.css +8 -8
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/separator.css +4 -4
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/sheet.css +18 -12
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/sidebar_menu.css +3 -1
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/switch.css +17 -7
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/tabs.css +24 -8
- data/lib/generators/css_zero/add/templates/app/javascript/controllers/autosave_controller.js +1 -1
- data/lib/generators/css_zero/add/templates/app/javascript/controllers/chart_controller.js +22 -5
- data/lib/generators/css_zero/add/templates/app/javascript/controllers/combobox_controller.js +4 -4
- data/lib/generators/css_zero/add/templates/app/javascript/controllers/command_controller.js +5 -0
- data/lib/generators/css_zero/add/templates/app/javascript/controllers/dialog_controller.js +3 -5
- data/lib/generators/css_zero/add/templates/app/javascript/controllers/dropzone_controller.js +2 -2
- data/lib/generators/css_zero/add/templates/app/javascript/controllers/flash_controller.js +1 -1
- data/lib/generators/css_zero/add/templates/app/javascript/controllers/form_controller.js +4 -0
- data/lib/generators/css_zero/add/templates/app/javascript/controllers/interest_controller.js +27 -0
- data/lib/generators/css_zero/add/templates/app/javascript/controllers/sortable_controller.js +2 -2
- data/lib/generators/css_zero/add/templates/app/javascript/controllers/sound_controller.js +70 -0
- data/lib/generators/css_zero/add/templates/app/javascript/controllers/toggle_class_controller.js +17 -0
- data/lib/generators/css_zero/authentication/templates/app/views/passwords/edit.html.erb.tt +1 -1
- data/lib/generators/css_zero/authentication/templates/app/views/passwords/new.html.erb.tt +1 -1
- data/lib/generators/css_zero/authentication/templates/app/views/sessions/new.html.erb.tt +2 -2
- data/lib/generators/css_zero/install/templates/app/assets/stylesheets/base.css +2 -3
- data/lib/generators/css_zero/install/templates/app/views/layouts/application.html.erb +2 -2
- data/lib/generators/css_zero/scaffold/templates/index.html.erb.tt +1 -1
- data/lib/generators/css_zero/scaffold/templates/partial.html.erb.tt +2 -2
- metadata +26 -7
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/prose.css +0 -140
- data/lib/generators/css_zero/add/templates/app/assets/stylesheets/trix.css +0 -210
- data/lib/generators/css_zero/add/templates/app/javascript/controllers/popover_controller.js +0 -55
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,807 @@
|
|
|
1
|
+
## 4.0.0 - 2026-07-27
|
|
2
|
+
- Use CSS variable for OTP input font family
|
|
3
|
+
- Use CSS only popover (Anchor positioning)
|
|
4
|
+
- Use --sheet-margin-inline for sheet
|
|
5
|
+
- Bring back debounce to command_controller
|
|
6
|
+
- Add mouse pointer utilities
|
|
7
|
+
- Rename break-words to wrap-break-word
|
|
8
|
+
- Rename break-all to wrap-anywhere
|
|
9
|
+
- Fix flash_controller remove -> hide
|
|
10
|
+
- Remove some alpha variables from filters.css
|
|
11
|
+
- Change combobox pointer to default
|
|
12
|
+
- Extract pagination component
|
|
13
|
+
- Remove .hide@pwa, .hide@browser, .hide@print, and .hide@touch
|
|
14
|
+
- Remove text-fluid-* utility classes
|
|
15
|
+
- Improve autoanimate and fix blinking.
|
|
16
|
+
- Add .font-black, .text-current, .text-balance, .text-pretty
|
|
17
|
+
- Enable exit transitions for popover and dialog.
|
|
18
|
+
- Charts prettier by default
|
|
19
|
+
- Replace Trix editor with Lexxy
|
|
20
|
+
- Reduce gap-half inline size
|
|
21
|
+
- Modernize components
|
|
22
|
+
- Remove prose.css in favor of lexxy-content
|
|
23
|
+
- Added btn--feedback
|
|
24
|
+
- Add sound controller for audio feedback (cuelume)
|
|
25
|
+
- Reimplement flash component
|
|
26
|
+
- Add keyboard component
|
|
27
|
+
- Replace popover_controller with interest_controller
|
|
28
|
+
- Reimplement dialog_controller on top of invoker commands
|
|
29
|
+
|
|
30
|
+
## 3.1.0 - 2025-11-17
|
|
31
|
+
- Fix default icon size from 1em to 1rem
|
|
32
|
+
- Add CSS variables for separator color and size
|
|
33
|
+
- Replace menu icon with panel-left icon
|
|
34
|
+
- Add toggle class controller in layouts
|
|
35
|
+
|
|
36
|
+
## 3.0.1 - 2025-11-15
|
|
37
|
+
- Remove debounce from filter method in command controller
|
|
38
|
+
- Form, make debounce timeout configurable with a default value
|
|
39
|
+
- No need to hide flash messages during Turbo preview
|
|
40
|
+
- Fixed list component install
|
|
41
|
+
|
|
42
|
+
## 3.0.0 - 2025-11-10
|
|
43
|
+
- Remove disabled and check styles from card.css
|
|
44
|
+
- Add list component with styles and usage documentation
|
|
45
|
+
- Add support for short date, and time ago formats to local_time
|
|
46
|
+
- Add disableSubmitWhenInvalid method to form controller
|
|
47
|
+
- Rename submitterTarget to submitTarget in autosave controller
|
|
48
|
+
- Add input_otp component and remove web_otp component
|
|
49
|
+
- Add .i-fit utility for inline-size: fit-content
|
|
50
|
+
- Remove grow, .grow-0, and .shrink-0 from utilities (!!)
|
|
51
|
+
- Add .flex-item-grow, .flex-item-no-shrink, .flex-1 to utilities
|
|
52
|
+
- Replace .invalid-feedback by [feedback] attribute (!!)
|
|
53
|
+
- Remove .normal-case utility from utilities (!!)
|
|
54
|
+
- Add .hide@touch utility for touch devices
|
|
55
|
+
- Update .sticky utility to set top and z-index
|
|
56
|
+
- Add separator component with CSS styles and generator support
|
|
57
|
+
- Simplify command filtering logic and update styles
|
|
58
|
+
- Refactor sidebar menu content scrolling and flex sizing
|
|
59
|
+
- Rename .group-inline and .group-block to .group and .group-vertical
|
|
60
|
+
- Rename .btn--loading to .btn--busy
|
|
61
|
+
|
|
62
|
+
## 2.1.1 - 2025-10-18
|
|
63
|
+
- Fix flash messages in authentication templates
|
|
64
|
+
|
|
65
|
+
## 2.1.0 - 2025-10-16
|
|
66
|
+
- Update trix toolbar styles for improved color handling
|
|
67
|
+
- Change flash and alert positive/negative style
|
|
68
|
+
- Set foreground color for selection in base.css
|
|
69
|
+
- Set checkbox and radio size with block-size and inline-size
|
|
70
|
+
- Remove prefers-reduced-motion styles from reset.css
|
|
71
|
+
- Extract dual range to dual_range component
|
|
72
|
+
- Add card-check to card.css
|
|
73
|
+
- Flash add animation-play-state stop on hover
|
|
74
|
+
- Use".input" for "checkbox, radio and range"
|
|
75
|
+
- Reimplement flash component (Fix z-order)
|
|
76
|
+
|
|
77
|
+
## 2.0.3 - 2025-08-08
|
|
78
|
+
- Fix command component accessibility issues
|
|
79
|
+
- Handle Space and Enter keys in menu navigation
|
|
80
|
+
|
|
81
|
+
## 2.0.2 - 2025-08-06
|
|
82
|
+
- Introduce surface color for component backgrounds
|
|
83
|
+
|
|
84
|
+
## 2.0.1 - 2025-08-05
|
|
85
|
+
- Refactor notice flash to use tag.div in application.html.erb
|
|
86
|
+
- Fix select options background in dark mode
|
|
87
|
+
|
|
88
|
+
## 2.0.0 - 2025-08-04
|
|
89
|
+
- Add debouncedSubmit to form_controller
|
|
90
|
+
- Add minimal Trix editor variant without file and history tools
|
|
91
|
+
- Add --carousel-items-gap variable
|
|
92
|
+
- Add dual range slider component
|
|
93
|
+
- Improve dropzone error message display style
|
|
94
|
+
- Simplify dialogs for mobile screens
|
|
95
|
+
- Rename popover showLater/hideLater to debouncedShow/debouncedHide
|
|
96
|
+
- Remove ::-webkit-details-marker in accordion.css
|
|
97
|
+
- Add items-baseline utility class
|
|
98
|
+
- Remove font smoothing from prose.css
|
|
99
|
+
- Reimplement input reveal and copy. (input_concerns.css)
|
|
100
|
+
- Adjust border color variables for improved contrast in dark mode
|
|
101
|
+
- Reduce backdrop opacity for dialog and sheet components
|
|
102
|
+
- Add icons component and remove colorize classes.
|
|
103
|
+
- Change default --btn-hover-color to --color-border-light.
|
|
104
|
+
- Add color_scheme component and change base.css
|
|
105
|
+
- Update alert with background colors
|
|
106
|
+
- Replace navigation controller with back navigation controller
|
|
107
|
+
- Add timezone_cookie component
|
|
108
|
+
- Add text-link utility class
|
|
109
|
+
- Remove underline and no-underline utility classes
|
|
110
|
+
- Add .group-vertical class to group component
|
|
111
|
+
- Implement menu-controller #navigate
|
|
112
|
+
- Better target names in dialog, popover, context_menu controllers
|
|
113
|
+
- Reimplement resizable component
|
|
114
|
+
- Add Home and End key support to menu controller
|
|
115
|
+
- Fix field_with_errors making fields hidden in input.css
|
|
116
|
+
- Move error field and feedback styles to reset.css
|
|
117
|
+
- Remove custom padding from option elements (reset.css)
|
|
118
|
+
- Extract input concerns to individual components
|
|
119
|
+
- Rename .group to .group-inline and .group-vertical to .group-block
|
|
120
|
+
|
|
121
|
+
## 1.1.15 - 2025-03-20
|
|
122
|
+
- Reimplement form_controller.
|
|
123
|
+
- Style [aria-disabled=true] [aria-busy-true].
|
|
124
|
+
- Update autosave_controller to use explicit aria values.
|
|
125
|
+
|
|
126
|
+
## 1.1.14 - 2025-03-20
|
|
127
|
+
- Use css :placeholder-shown for input clearable
|
|
128
|
+
- Add submitter parameter to form_controller
|
|
129
|
+
|
|
130
|
+
## 1.1.13 - 2025-03-16
|
|
131
|
+
- Small refactor on transitions
|
|
132
|
+
- Small refactor accordion
|
|
133
|
+
- Improve view transitions for layouts
|
|
134
|
+
- Make datepicker compatible with multiple months
|
|
135
|
+
- Improve auto-animate
|
|
136
|
+
- Add transtion-time-functions to transitions.css
|
|
137
|
+
|
|
138
|
+
## 1.1.12 - 2025-03-12
|
|
139
|
+
- Better carousel in firefox
|
|
140
|
+
- Better group.css
|
|
141
|
+
- Improve hovercard and tooltip
|
|
142
|
+
|
|
143
|
+
## 1.1.11 - 2025-03-11
|
|
144
|
+
- Reimplement input concerns
|
|
145
|
+
- Update trix
|
|
146
|
+
- Update tomselect
|
|
147
|
+
- Update charts.js
|
|
148
|
+
|
|
149
|
+
## 1.1.10 - 2025-03-10
|
|
150
|
+
- Improve context-menu component
|
|
151
|
+
- Submit form after receiving otp input code
|
|
152
|
+
- Don't rely on private dropzone methods
|
|
153
|
+
- Fix group with two items
|
|
154
|
+
- Change card-selectable to "card card--selectable"
|
|
155
|
+
- Add card with aria-disabled
|
|
156
|
+
- Darker skeleton
|
|
157
|
+
- Add resizable component
|
|
158
|
+
|
|
159
|
+
## 1.1.9 - 2025-02-28
|
|
160
|
+
- Tab buttons should support aria-current=page
|
|
161
|
+
- Use just-debounce instead of lodash.debounce
|
|
162
|
+
|
|
163
|
+
## 1.1.8 - 2025-02-27
|
|
164
|
+
- Make trix width 100%
|
|
165
|
+
- Added dropzone component
|
|
166
|
+
|
|
167
|
+
## 1.1.7 - 2025-02-24
|
|
168
|
+
- Revert (Reduce gap-half row-gap)
|
|
169
|
+
|
|
170
|
+
## 1.1.6 - 2025-02-24
|
|
171
|
+
- Style for datepicker static month selector
|
|
172
|
+
- Add aria-current=page to sidebar_menu
|
|
173
|
+
- Reduce gap-half row-gap
|
|
174
|
+
|
|
175
|
+
## 1.1.5 - 2025-02-18
|
|
176
|
+
- Remove input outline on user-invalid focus-visible
|
|
177
|
+
- Remove field_with_errors from reset.css
|
|
178
|
+
|
|
179
|
+
## 1.1.4 - 2025-02-18
|
|
180
|
+
- Small adjusts for menu components
|
|
181
|
+
- Better input focus color for invalid inputs
|
|
182
|
+
- Rename .btn--tab to .tabs__button
|
|
183
|
+
|
|
184
|
+
## 1.1.3 - 2025-02-17
|
|
185
|
+
- Remove --btn-text-align from .btn
|
|
186
|
+
|
|
187
|
+
## 1.1.2 - 2025-02-17
|
|
188
|
+
- Input transparent instead of color-bg
|
|
189
|
+
- Don't use rounded button for .btn--icon
|
|
190
|
+
- Add --btn-text-align to .btn
|
|
191
|
+
- Set button position relative
|
|
192
|
+
|
|
193
|
+
## 1.1.1 - 2025-02-16
|
|
194
|
+
- Make .field_with_errors become pseudo-box by default.
|
|
195
|
+
- Add search method to form controller
|
|
196
|
+
- Add card-selectable to card
|
|
197
|
+
|
|
198
|
+
## 1.1.0 - 2025-02-15
|
|
199
|
+
- Improve command with first option select
|
|
200
|
+
- Rename transform.css to transforms.css
|
|
201
|
+
- Rename transition.css to transitions.css
|
|
202
|
+
- Remove transition-timing-function variables
|
|
203
|
+
- Update maska 3.0.4 -> 3.1.0
|
|
204
|
+
- Update tom-select 2.4.1 -> 2.4.2
|
|
205
|
+
- Remove --breakpoint-2xl variable
|
|
206
|
+
- Remove animations when prefers-reduced-motion
|
|
207
|
+
- Remove tablet breakpoint for sidebar-layout
|
|
208
|
+
- Add --sheet-size to sheet.css
|
|
209
|
+
- Small improvements to accordion
|
|
210
|
+
- Little gap for command and menu items
|
|
211
|
+
- Move flash to application layout in scaffolds
|
|
212
|
+
- Set default --flash-position to size-4
|
|
213
|
+
- Reduce badge line-height
|
|
214
|
+
- Reduce .table specificity with :where
|
|
215
|
+
- Add max-i-none utillity class
|
|
216
|
+
- Set default --btn-block-size --input-block-size to auto
|
|
217
|
+
- Set .gap-half column-gap: 0.25rem
|
|
218
|
+
- Set default cursor for accordion/button/datepicker/switch
|
|
219
|
+
- Small fix check_all_controller
|
|
220
|
+
- **Add sidebar_menu.css to layouts component**
|
|
221
|
+
- **Add flash--positive and flash--negative**
|
|
222
|
+
- **Add turbo_confirm component**
|
|
223
|
+
- **Add avatar-group**
|
|
224
|
+
|
|
225
|
+
## [1.0.6] - 2025-02-06
|
|
226
|
+
- Fix btn--loading
|
|
227
|
+
|
|
228
|
+
## [1.0.5] - 2025-02-01
|
|
229
|
+
- Increase gap for header items
|
|
230
|
+
- Small adjust on combobox alignment
|
|
231
|
+
- Add popover to usage
|
|
232
|
+
|
|
233
|
+
## [1.0.4] - 2025-01-25
|
|
234
|
+
- Change base.css to use zinc-950 for dark color-bg
|
|
235
|
+
- Fix border sheet.css
|
|
236
|
+
|
|
237
|
+
## [1.0.3] - 2025-01-24
|
|
238
|
+
- Fix css:install not adding javascript_importmap_tags
|
|
239
|
+
|
|
240
|
+
## [1.0.2] - 2025-01-24
|
|
241
|
+
- Import external css dependencies from esm.sh
|
|
242
|
+
|
|
243
|
+
## [1.0.1] - 2025-01-24
|
|
244
|
+
- Fix btn avatar size on safari
|
|
245
|
+
|
|
246
|
+
## [1.0.0] - 2025-01-24
|
|
247
|
+
- Set default text area --input-rows to 2lh
|
|
248
|
+
- Do not use auto resizable textarea in scaffold
|
|
249
|
+
|
|
250
|
+
- Rename var(--shadow-sm) to var(--shadow-xs)
|
|
251
|
+
- Rename var(--shadow) to var(--shadow-sm)
|
|
252
|
+
- Rename var(--blur-sm) to var(--blur-xs)
|
|
253
|
+
- Rename var(--blur) to var(--blur-sm)
|
|
254
|
+
- Rename var(--rounded-sm) to var(--rounded-xs)
|
|
255
|
+
- Rename var(--rounded) to var(--rounded-sm)
|
|
256
|
+
|
|
257
|
+
- Merge tom-select.css and zcombobox.css into combobox.css
|
|
258
|
+
- Merge flatpickr.css and zdatepicker.css into datepicker.css
|
|
259
|
+
- Merge trix.css and ztrix.css into trix.css
|
|
260
|
+
|
|
261
|
+
- Files were moved from the root to `/css-zero`
|
|
262
|
+
- The file `_reset.css` was renamed to `reset.css`
|
|
263
|
+
- The file `zutilities.css` was renamed to `utilities.css`
|
|
264
|
+
|
|
265
|
+
- Previously, styles inside gems could mix with the styles from inside your application,
|
|
266
|
+
the new architecture requires you to set the files manually.
|
|
267
|
+
|
|
268
|
+
Before:
|
|
269
|
+
|
|
270
|
+
```
|
|
271
|
+
<%= stylesheet_link_tag :all, "data-turbo-track": "reload" %>
|
|
272
|
+
```
|
|
273
|
+
|
|
274
|
+
Later:
|
|
275
|
+
|
|
276
|
+
```
|
|
277
|
+
<%= stylesheet_link_tag "css-zero/reset", "data-turbo-track": "reload" %>
|
|
278
|
+
<%= stylesheet_link_tag "css-zero/variables", "data-turbo-track": "reload" %>
|
|
279
|
+
<%= stylesheet_link_tag :app, "data-turbo-track": "reload" %>
|
|
280
|
+
<%= stylesheet_link_tag "css-zero/utilities", "data-turbo-track": "reload" %>
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
## [0.0.98] - 2025-01-23
|
|
284
|
+
- Add tabs class
|
|
285
|
+
- Adjust autosize textarea
|
|
286
|
+
- Remove :where from components
|
|
287
|
+
|
|
288
|
+
## [0.0.97] - 2025-01-22
|
|
289
|
+
- Simplify elements focus
|
|
290
|
+
- Small adjust space select option
|
|
291
|
+
- Small refactor input.css
|
|
292
|
+
- Move padding options to reset
|
|
293
|
+
|
|
294
|
+
## [0.0.96] - 2025-01-22
|
|
295
|
+
- autoanimate small adjust
|
|
296
|
+
- Add box-shadow to btn--tab selected
|
|
297
|
+
- Add scrollbar-color to base
|
|
298
|
+
- Add overscroll-behavior to base
|
|
299
|
+
- Increase checkbox/radios a bit
|
|
300
|
+
- Adjust textarea auto size
|
|
301
|
+
|
|
302
|
+
## [0.0.95] - 2025-01-20
|
|
303
|
+
- Add show to dialog_controller
|
|
304
|
+
- Add toggle and hideClear to popover_controller
|
|
305
|
+
|
|
306
|
+
## [0.0.94] - 2025-01-20
|
|
307
|
+
- Improve carousel
|
|
308
|
+
- Small refactor button
|
|
309
|
+
- Small refactor toggle
|
|
310
|
+
- Fix selector zcombobox
|
|
311
|
+
- Align avatar fallback text
|
|
312
|
+
- Use default checkbox for scaffold
|
|
313
|
+
- Reduce switch size
|
|
314
|
+
|
|
315
|
+
## [0.0.93] - 2025-01-17
|
|
316
|
+
- Small adjust close button for dialog and sheet
|
|
317
|
+
- Add table caption style
|
|
318
|
+
- Remove .popover--tooltip
|
|
319
|
+
- Improve tooltip timer
|
|
320
|
+
|
|
321
|
+
## [0.0.92] - 2025-01-16
|
|
322
|
+
- Set block size for button
|
|
323
|
+
- Early hide combobox
|
|
324
|
+
- Remove btn-tab min-block-size
|
|
325
|
+
|
|
326
|
+
## [0.0.91] - 2025-01-16
|
|
327
|
+
- Reduce height combobox
|
|
328
|
+
|
|
329
|
+
## [0.0.90] - 2025-01-16
|
|
330
|
+
- Increase loading btn--loading
|
|
331
|
+
- Accordion cosmetics
|
|
332
|
+
- Alert cosmetics
|
|
333
|
+
- Add box-shadow to buttons
|
|
334
|
+
- Increase dialog animation duration
|
|
335
|
+
- Add shadow to badge
|
|
336
|
+
- Change gap-half utility
|
|
337
|
+
- Add box-shadow to input
|
|
338
|
+
- Correct the arrow style of datalist in Chrome
|
|
339
|
+
- Card cosmetics
|
|
340
|
+
- Reduce input height
|
|
341
|
+
- Reduce command padding
|
|
342
|
+
- Reduce table padding
|
|
343
|
+
- Reduce size tab__list
|
|
344
|
+
- Reduce button height
|
|
345
|
+
- Animate combobox
|
|
346
|
+
|
|
347
|
+
## [0.0.89] - 2025-01-15
|
|
348
|
+
- Reimplement inputmask using maska
|
|
349
|
+
- Use tom-select.base instead of tom-select.complete
|
|
350
|
+
|
|
351
|
+
## [0.0.88] - 2025-01-13
|
|
352
|
+
- Move from jsdelivr to esm.sh
|
|
353
|
+
- Inputmask wasn't working with jsdelivr
|
|
354
|
+
|
|
355
|
+
## [0.0.87] - 2025-01-13
|
|
356
|
+
- Import only debounce from lodash
|
|
357
|
+
- Use jsdelivr and update dependencies
|
|
358
|
+
|
|
359
|
+
## [0.0.86] - 2025-01-11
|
|
360
|
+
- Dont early hide combobox
|
|
361
|
+
- Reduce h6 on prose
|
|
362
|
+
- Small refactor popover_controller
|
|
363
|
+
- Add context menu component
|
|
364
|
+
- Make menu auto resetable when visible
|
|
365
|
+
|
|
366
|
+
## [0.0.85] - 2025-01-09
|
|
367
|
+
- Merge listbox_controller and filter_controller into command_controller.
|
|
368
|
+
|
|
369
|
+
## [0.0.84] - 2025-01-09
|
|
370
|
+
- Don't hide [hidden='until-found']
|
|
371
|
+
- Don't need "after" filter event anymore
|
|
372
|
+
- Add --dialog-size variable
|
|
373
|
+
|
|
374
|
+
## [0.0.83] - 2025-01-08
|
|
375
|
+
- Reimplement command component
|
|
376
|
+
|
|
377
|
+
## [0.0.82] - 2025-01-08
|
|
378
|
+
- Improve prose
|
|
379
|
+
|
|
380
|
+
## [0.0.81] - 2025-01-07
|
|
381
|
+
- Fix layouts.css
|
|
382
|
+
- Improve carousel
|
|
383
|
+
|
|
384
|
+
## [0.0.80] - 2025-01-06
|
|
385
|
+
- popover--tooltip class
|
|
386
|
+
- New responsive font names, --text-base-responsive to text-fluid-base
|
|
387
|
+
- Remove .text-6xl, .text-7xl, .text-8xl, and .text-9xl
|
|
388
|
+
|
|
389
|
+
## [0.0.79] - 2025-01-05
|
|
390
|
+
- New popovers with floating-ui and popover tag. (popover/dropdown)
|
|
391
|
+
- Remove tooltip component
|
|
392
|
+
|
|
393
|
+
## [0.0.78] - 2025-01-04
|
|
394
|
+
- Lighter table foot color
|
|
395
|
+
- Keep the same spacing for layouts
|
|
396
|
+
|
|
397
|
+
## [0.0.77] - 2024-12-21
|
|
398
|
+
- set color-schema on reset.css
|
|
399
|
+
|
|
400
|
+
## [0.0.76] - 2024-12-21
|
|
401
|
+
- Update colors to oklch
|
|
402
|
+
- Update _reset.css
|
|
403
|
+
- Small refactor button.css
|
|
404
|
+
- Remove semicolon from javascript
|
|
405
|
+
- Perfect responsive font sizes
|
|
406
|
+
- Use responsive font size for flash
|
|
407
|
+
|
|
408
|
+
## [0.0.75] - 2024-12-18
|
|
409
|
+
- Small adjusts on dark colors
|
|
410
|
+
- Reduce auto-animate duration
|
|
411
|
+
|
|
412
|
+
## [0.0.74] - 2024-12-14
|
|
413
|
+
- Set card background color
|
|
414
|
+
- Set sidebar and header color.
|
|
415
|
+
|
|
416
|
+
## [0.0.73] - 2024-11-30
|
|
417
|
+
- Add z-index to popover
|
|
418
|
+
|
|
419
|
+
## [0.0.72] - 2024-11-29
|
|
420
|
+
- Improve combobox blinking
|
|
421
|
+
- Simplify layout css
|
|
422
|
+
|
|
423
|
+
## [0.0.71] - 2024-11-28
|
|
424
|
+
- Use lodash instead es-toolkit
|
|
425
|
+
- Use CDN minifed versions
|
|
426
|
+
|
|
427
|
+
## [0.0.70] - 2024-11-27
|
|
428
|
+
- Small refactor on autosave.
|
|
429
|
+
- Small refactor on chart.
|
|
430
|
+
- Use debounce from a library.
|
|
431
|
+
|
|
432
|
+
## [0.0.69] - 2024-11-27
|
|
433
|
+
- Increase animation duration for autoanimate
|
|
434
|
+
- Fix rounded-none
|
|
435
|
+
- Add group component
|
|
436
|
+
|
|
437
|
+
## [0.0.68] - 2024-11-25
|
|
438
|
+
- Fix dark text colors. (badge/button)
|
|
439
|
+
|
|
440
|
+
## [0.0.67] - 2024-11-25
|
|
441
|
+
- Autoanimate css only
|
|
442
|
+
|
|
443
|
+
## [0.0.66] - 2024-11-23
|
|
444
|
+
- Add autoanimate component
|
|
445
|
+
|
|
446
|
+
## [0.0.65] - 2024-11-22
|
|
447
|
+
- Small refactor on sortable_controller
|
|
448
|
+
- Small refactor on flash/prose/table
|
|
449
|
+
- Refactor button.css hover color
|
|
450
|
+
- New positive and negative colors
|
|
451
|
+
|
|
452
|
+
## [0.0.64] - 2024-11-17
|
|
453
|
+
- Small adjust prose.css
|
|
454
|
+
- Add --color-highlight
|
|
455
|
+
- Fix controller and mailer scaffold commands
|
|
456
|
+
|
|
457
|
+
## [0.0.63] - 2024-11-15
|
|
458
|
+
- Add otp input to input concerns
|
|
459
|
+
- Fix application.css (sprockets install)
|
|
460
|
+
|
|
461
|
+
## [0.0.62] - 2024-11-13
|
|
462
|
+
- Add tooltip component
|
|
463
|
+
|
|
464
|
+
## [0.0.61] - 2024-11-11
|
|
465
|
+
- Add navigation controller
|
|
466
|
+
- Add sortable controller
|
|
467
|
+
|
|
468
|
+
## [0.0.60] - 2024-11-08
|
|
469
|
+
- Improve flash messages
|
|
470
|
+
|
|
471
|
+
## [0.0.59] - 2024-11-08
|
|
472
|
+
- Set default input block size
|
|
473
|
+
|
|
474
|
+
## [0.0.58] - 2024-11-07
|
|
475
|
+
- Use text-decoration instead of text-decoration-line
|
|
476
|
+
- Use primary-color for turbo progress bar
|
|
477
|
+
- Fix scaffold system tests
|
|
478
|
+
|
|
479
|
+
## [0.0.57] - 2024-11-06
|
|
480
|
+
- Implement scaffolds
|
|
481
|
+
|
|
482
|
+
## [0.0.56] - 2024-11-03
|
|
483
|
+
- Reduce padding input block
|
|
484
|
+
- Small refactor zcombobox
|
|
485
|
+
- Small refactor zdatepicker
|
|
486
|
+
- Add chart component
|
|
487
|
+
|
|
488
|
+
## [0.0.55] - 2024-10-31
|
|
489
|
+
- Small refactor datepicker controller
|
|
490
|
+
- Remove inputmask on disconnect
|
|
491
|
+
- Fix today color datepicker
|
|
492
|
+
- Adjust day spacing in datepicker
|
|
493
|
+
- Small refactor in combobox controller
|
|
494
|
+
- Small refactor in accordion
|
|
495
|
+
- Import dependencies from a CDN
|
|
496
|
+
|
|
497
|
+
## [0.0.54] - 2024-10-28
|
|
498
|
+
- Remove --color-filter-text-subtle
|
|
499
|
+
- Add datepicker component
|
|
500
|
+
|
|
501
|
+
## [0.0.53] - 2024-10-27
|
|
502
|
+
- Simplify foreground/background color
|
|
503
|
+
- Fix grouped combobox dark color
|
|
504
|
+
|
|
505
|
+
## [0.0.52] - 2024-10-27
|
|
506
|
+
- Change combobox create to option_create
|
|
507
|
+
- Add inputmask
|
|
508
|
+
- Small update _reset
|
|
509
|
+
- Add autosave component
|
|
510
|
+
- Fix dark filter negative/positive colors
|
|
511
|
+
- Fix badge negative colors
|
|
512
|
+
|
|
513
|
+
## [0.0.51] - 2024-10-18
|
|
514
|
+
- Fix hover on safari mobile. (button/command/menu/tabs)
|
|
515
|
+
- Update checkbox and radio size
|
|
516
|
+
- Add trix component
|
|
517
|
+
- Adjust --leading-normal value
|
|
518
|
+
- Add dropdown
|
|
519
|
+
- Cosmetic on command
|
|
520
|
+
- Remove javascript helpers/initializers
|
|
521
|
+
|
|
522
|
+
## [0.0.50] - 2024-10-18
|
|
523
|
+
- Small refactor menu and command
|
|
524
|
+
- Prevent javascript error on filter
|
|
525
|
+
- Simplify menu
|
|
526
|
+
- Simplify tabs
|
|
527
|
+
- Trigger after event on filter controller
|
|
528
|
+
- Add list controller to command
|
|
529
|
+
|
|
530
|
+
## [0.0.49] - 2024-10-17
|
|
531
|
+
- Move form controller to its own component
|
|
532
|
+
- Add initializers structure on install
|
|
533
|
+
- Auto focus first menu item
|
|
534
|
+
|
|
535
|
+
## [0.0.48] - 2024-10-15
|
|
536
|
+
- Fix focus for tabs and menu
|
|
537
|
+
- Remove hover functionality from popover
|
|
538
|
+
|
|
539
|
+
## [0.0.47] - 2024-10-15
|
|
540
|
+
- Adjust checkbox and radio size
|
|
541
|
+
- Fix tab hover on dark mode
|
|
542
|
+
- Fix menu and command hover on dark mode
|
|
543
|
+
- Fix focus for tabs and menu
|
|
544
|
+
- Set input--actor icon color
|
|
545
|
+
|
|
546
|
+
## [0.0.46] - 2024-10-14
|
|
547
|
+
- Dont select first dropdown item on open
|
|
548
|
+
|
|
549
|
+
## [0.0.45] - 2024-10-13
|
|
550
|
+
- Remove dialog show method
|
|
551
|
+
- Remove --dialog-width css var
|
|
552
|
+
- Improve tabs focus handling
|
|
553
|
+
- Add popover
|
|
554
|
+
- Add dropdown
|
|
555
|
+
|
|
556
|
+
## [0.0.44] - 2024-10-09
|
|
557
|
+
- User popover instead of dialog for flash
|
|
558
|
+
- Introduce flash--extended
|
|
559
|
+
- Change checkbox size
|
|
560
|
+
- Change tabs
|
|
561
|
+
- Filter refactor
|
|
562
|
+
|
|
563
|
+
## [0.0.43] - 2024-10-04
|
|
564
|
+
- Fix resource
|
|
565
|
+
|
|
566
|
+
## [0.0.42] - 2024-10-04
|
|
567
|
+
- Rename command_controller to filter_controller
|
|
568
|
+
- Set flash max inline size
|
|
569
|
+
- Fix flash position
|
|
570
|
+
- Add --btn-inline-size
|
|
571
|
+
- Add check all
|
|
572
|
+
|
|
573
|
+
## [0.0.41] - 2024-10-03
|
|
574
|
+
- Add command empty
|
|
575
|
+
- Modernize carousel
|
|
576
|
+
- Responsive flash
|
|
577
|
+
- Mobile first css
|
|
578
|
+
|
|
579
|
+
## [0.0.40] - 2024-10-01
|
|
580
|
+
- Update avatar button
|
|
581
|
+
- Hide based on pwa, browser and print
|
|
582
|
+
- New layouts
|
|
583
|
+
- Remove check all
|
|
584
|
+
- Avatar button hover filter
|
|
585
|
+
|
|
586
|
+
## [0.0.39] - 2024-09-30
|
|
587
|
+
- Reduce delay copyable
|
|
588
|
+
- Add javascript helpers on install
|
|
589
|
+
- Use debounce for copyable
|
|
590
|
+
- Update accordion css
|
|
591
|
+
- Update button hover
|
|
592
|
+
- Decorate btn aria-disabled
|
|
593
|
+
- Update carousel
|
|
594
|
+
- Update tabs
|
|
595
|
+
- Change layout utility names
|
|
596
|
+
- Update size utility classes
|
|
597
|
+
- Update lightbox
|
|
598
|
+
- Update input
|
|
599
|
+
- Replace button--rounded with button--icon
|
|
600
|
+
- More button and input variables
|
|
601
|
+
- Update toggle
|
|
602
|
+
- Add show/hide utilities
|
|
603
|
+
- Add command
|
|
604
|
+
|
|
605
|
+
## [0.0.38] - 2024-09-24
|
|
606
|
+
- Add local_time_controller
|
|
607
|
+
- Small adjust plain button
|
|
608
|
+
- Fix resources mapping
|
|
609
|
+
- Change revealable input
|
|
610
|
+
- Change copyable input
|
|
611
|
+
|
|
612
|
+
## [0.0.37] - 2024-09-23
|
|
613
|
+
- Key navigation to tabs
|
|
614
|
+
- Rename concern controllers
|
|
615
|
+
|
|
616
|
+
## [0.0.36] - 2024-09-23
|
|
617
|
+
- Change dialog target box -> menu
|
|
618
|
+
- Change tabs to use index instead of ids
|
|
619
|
+
- Remove border style utilities
|
|
620
|
+
- Add clear button to inputs
|
|
621
|
+
- Fix btn--positive and btn--negative icon colors
|
|
622
|
+
- Add reveal button to password inputs
|
|
623
|
+
- Add copy button to inputs
|
|
624
|
+
- Add dependent checkbox
|
|
625
|
+
- Add form controller to switch
|
|
626
|
+
- Add autoselect controller
|
|
627
|
+
- Add fullscreen controller
|
|
628
|
+
- btn--outline is the default
|
|
629
|
+
- Refactor pagination and tabs
|
|
630
|
+
- Add hotkey controller
|
|
631
|
+
- Add web share controller
|
|
632
|
+
- Update button colors
|
|
633
|
+
- Simplify tabs css
|
|
634
|
+
- Simplify button toggle
|
|
635
|
+
- Add input_concerns
|
|
636
|
+
- Add upload preview
|
|
637
|
+
- Reduce space for breadcrumb
|
|
638
|
+
- Add avatar--btn
|
|
639
|
+
- Add button hover filter
|
|
640
|
+
- Add btn--pressed
|
|
641
|
+
- Add btn--borderless
|
|
642
|
+
- Remove margin from btn--plain
|
|
643
|
+
- Border color instead of border width for buttons
|
|
644
|
+
- Remove pagination.css
|
|
645
|
+
- Remove some rounded and shadow utilities
|
|
646
|
+
- Add btn--rounded
|
|
647
|
+
- Rename layout utilities
|
|
648
|
+
- Add lightbox component
|
|
649
|
+
|
|
650
|
+
## [0.0.35] - 2024-09-10
|
|
651
|
+
- New gap utilities values.
|
|
652
|
+
- Rename gap-sm to gap-half.
|
|
653
|
+
|
|
654
|
+
## [0.0.34] - 2024-09-10
|
|
655
|
+
- Remove tab helpers.
|
|
656
|
+
- Use rows=auto to text-area auto grow.
|
|
657
|
+
- text black to zinc-950.
|
|
658
|
+
- new filtered colors.
|
|
659
|
+
- fix invalid feedback.
|
|
660
|
+
- Remove button_to_close_dialog.
|
|
661
|
+
- Fix dialog and sheet.
|
|
662
|
+
|
|
663
|
+
## [0.0.33] - 2024-08-30
|
|
664
|
+
- Change tabs to use aria attributes.
|
|
665
|
+
|
|
666
|
+
## [0.0.32] - 2024-08-30
|
|
667
|
+
- Add class to tab_button helper.
|
|
668
|
+
|
|
669
|
+
## [0.0.31] - 2024-08-29
|
|
670
|
+
- Add layouts.
|
|
671
|
+
- Add border-b, border-i.
|
|
672
|
+
- Add sheet--right, sheet--left.
|
|
673
|
+
- Add input--actor.
|
|
674
|
+
- Add w-min to utilities.
|
|
675
|
+
- Change table hover color.
|
|
676
|
+
- Add tabs.
|
|
677
|
+
|
|
678
|
+
## [0.0.29] - 2024-08-07
|
|
679
|
+
- Simplify sr-only.
|
|
680
|
+
- Add border dotted.
|
|
681
|
+
- Remove text-center sheet.
|
|
682
|
+
- Update transition property.
|
|
683
|
+
- Remove grid utilities.
|
|
684
|
+
- Simplify button.
|
|
685
|
+
- Remove relative from toggle.
|
|
686
|
+
- Adjusts input class.
|
|
687
|
+
- Move option back to input.
|
|
688
|
+
- Remove transition-timing-function from switch
|
|
689
|
+
- Accordion height animation.
|
|
690
|
+
- Remove z-index variables.
|
|
691
|
+
|
|
692
|
+
## [0.0.28] - 2024-07-26
|
|
693
|
+
- Revert button size loading.
|
|
694
|
+
- Hide scrollbar for carousel on safari.
|
|
695
|
+
- Remove align-items from badge.
|
|
696
|
+
- Remove full width from accordion.
|
|
697
|
+
- Revert card component.
|
|
698
|
+
- Remove !important from dialog.css.
|
|
699
|
+
|
|
700
|
+
## [0.0.27] - 2024-07-25
|
|
701
|
+
- Simplify flash.
|
|
702
|
+
- Simplify dialog__close.
|
|
703
|
+
- Add turbo-frame to _reset.css.
|
|
704
|
+
- Adjust loading button.
|
|
705
|
+
- Remove btn border color.
|
|
706
|
+
- Add toggle buttons.
|
|
707
|
+
- Remover border width input.
|
|
708
|
+
- Adjust focus on toggle.
|
|
709
|
+
|
|
710
|
+
## [0.0.26] - 2024-07-23
|
|
711
|
+
- Remove comments.
|
|
712
|
+
- Move options to _reset.css.
|
|
713
|
+
- Add z-index variables.
|
|
714
|
+
|
|
715
|
+
## [0.0.25] - 2024-07-23
|
|
716
|
+
- Reduce rounded and shadow utilities
|
|
717
|
+
- Add skeleton.
|
|
718
|
+
- Add color-link.
|
|
719
|
+
- Add add color-selected-dark.
|
|
720
|
+
- Add invalid feedback to inputs.
|
|
721
|
+
- Better reset for dialog page scroll.
|
|
722
|
+
- Add Flash message.
|
|
723
|
+
- Set bg and color to card.
|
|
724
|
+
- Small adjust in carousel.
|
|
725
|
+
- Remove !important from hidden, contents and inputs.
|
|
726
|
+
|
|
727
|
+
## [0.0.24] - 2024-07-21
|
|
728
|
+
- Hide spinner for step any inputs.
|
|
729
|
+
- Fix empty date field height on safari IOS.
|
|
730
|
+
- Move "Prevent page scroll when dialog is open" to reset.
|
|
731
|
+
- Add sheet component.
|
|
732
|
+
|
|
733
|
+
## [0.0.23] - 2024-07-20
|
|
734
|
+
- Don't disable text area resize.
|
|
735
|
+
- Add hover to accordion and table.
|
|
736
|
+
- Add new object-fit utilities.
|
|
737
|
+
- Add aspect ratio variables.
|
|
738
|
+
- Add carousel.
|
|
739
|
+
|
|
740
|
+
## [0.0.22] - 2024-07-18
|
|
741
|
+
- Adjust prose headers.
|
|
742
|
+
- Adjust responsive fonts again.
|
|
743
|
+
- Use antialiased fonts and bold links on prose.
|
|
744
|
+
|
|
745
|
+
## [0.0.21] - 2024-07-17
|
|
746
|
+
- Remove antialiased utility.
|
|
747
|
+
- Fix --text-xl-responsive.
|
|
748
|
+
- Remove --width-prose.
|
|
749
|
+
- Rename reponsive font utilities
|
|
750
|
+
- Apply font responsive and max-inline-size to prose
|
|
751
|
+
|
|
752
|
+
## [0.0.20] - 2024-07-17
|
|
753
|
+
- Add shadow-inner utility.
|
|
754
|
+
- Add responsive fonts.
|
|
755
|
+
- Remove font-size and antialiased from prose.
|
|
756
|
+
- Remove link color from prose.
|
|
757
|
+
|
|
758
|
+
## [0.0.19] - 2024-07-16
|
|
759
|
+
- Add more animations.
|
|
760
|
+
- Remove shadow-xs.
|
|
761
|
+
- Remove shadow from button.
|
|
762
|
+
- Use color-primary for focus.
|
|
763
|
+
- Fix dark --color-border-dark.
|
|
764
|
+
- Add prose component.
|
|
765
|
+
- Fix card-shadow.
|
|
766
|
+
|
|
767
|
+
## [0.0.18] - 2024-07-14
|
|
768
|
+
- Transform dialog in a drawer on mobile
|
|
769
|
+
- Correct the arrow style of datalist in Chrome.
|
|
770
|
+
- Fix badge outline border.
|
|
771
|
+
- Add pagination component.
|
|
772
|
+
- Change collapsible component.
|
|
773
|
+
- Fix default icon color alert.
|
|
774
|
+
- Fix badge size.
|
|
775
|
+
- Add button_to_close_dialog helper.
|
|
776
|
+
- Add autogrow textarea.
|
|
777
|
+
- Input server side validation.
|
|
778
|
+
- Add padding to select option.
|
|
779
|
+
- Avatar use local variable for avatar-size
|
|
780
|
+
- Remove size-3 from the utilities
|
|
781
|
+
- Add modern font stack
|
|
782
|
+
- Rename --color-border-darker to --color-border-dark.
|
|
783
|
+
- Introduce --color-border-light.
|
|
784
|
+
- More border utilities.
|
|
785
|
+
|
|
786
|
+
## [0.0.17] - 2024-07-06
|
|
787
|
+
- Add `color-filter-text-subtle` color and add `colorize-shade` utility class.
|
|
788
|
+
- Change `.break-words` utility class.
|
|
789
|
+
- Add breadcrumb component.
|
|
790
|
+
- Remove not([class]) from button and alert
|
|
791
|
+
- Add collapsible component.
|
|
792
|
+
- Add size-3 to utility classes.
|
|
793
|
+
- Add avatar component.
|
|
794
|
+
|
|
795
|
+
## [0.0.16] - 2024-07-04
|
|
796
|
+
- Remove return string on `dialog` close.
|
|
797
|
+
- Don't use `light-dark` function in base.css.
|
|
798
|
+
- Use logical properties instead of physical properties.
|
|
799
|
+
- Add grow-0, shrink, and bg-shade to utility classes.
|
|
800
|
+
- Use `min-inline-size: fit-content;` instead of `white-space: nowrap;` for buttons.
|
|
801
|
+
- Fix `transition-property` for dialog.
|
|
802
|
+
|
|
803
|
+
## [0.0.15] - 2024-07-03
|
|
804
|
+
- `Dialog` was reimplemented to not support popover.
|
|
805
|
+
|
|
806
|
+
## [0.0.14] - 2024-07-02
|
|
807
|
+
- `Alert dialog` was removed and `dialog` was changed to support `<dialog>` and `<dialog popover>`.
|