@rarui/components 1.30.2 → 1.30.3

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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  `@rarui/components` components is a component library built with [Lit](https://lit.dev/).
4
4
 
5
+ ## 2025-11-14 `1.30.3`
6
+
7
+ #### 🐛 Bug fixes
8
+
9
+ - **Dropdown Accessibility Improvement**: Removed unnecessary `role="button"` and `tabindex="0"` attributes from dropdown reference container to prevent duplicate focus targets and improve screen reader navigation. The dropdown now relies on proper slot content for interactive elements while maintaining ARIA attributes for popup functionality. ([#148](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/148) by [@junior](https://git.rarolabs.com.br/junior))
10
+ - **Accordion Header Focus Management**: Enhanced AccordionHeader component focus handling by removing redundant focus-related attributes that conflicted with the component's internal button element, ensuring proper keyboard navigation and accessibility compliance. ([#148](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/148) by [@junior](https://git.rarolabs.com.br/junior))
11
+
5
12
  ## 2025-11-06 `1.30.2`
6
13
 
7
14
  #### 🎉 New features
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.30.1",
2
+ "version": "1.30.3",
3
3
  "tags": [
4
4
  {
5
5
  "name": "rarui-avatar",
package/dist/index.d.ts CHANGED
@@ -17247,12 +17247,12 @@ declare const statusStyles: {
17247
17247
  dot: RuntimeFn<{
17248
17248
  size: {
17249
17249
  normal: {
17250
- height: ".5rem";
17251
- width: ".5rem";
17250
+ minHeight: ".5rem";
17251
+ minWidth: ".5rem";
17252
17252
  };
17253
17253
  small: {
17254
- height: ".25rem";
17255
- width: ".25rem";
17254
+ minHeight: ".25rem";
17255
+ minWidth: ".25rem";
17256
17256
  };
17257
17257
  };
17258
17258
  }>;