@rarui/components 1.24.1 → 1.24.2-rc.1
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/custom-elements.json +194 -59
- package/dist/index.d.ts +40 -35
- package/dist/index.js +41 -37
- package/package.json +5 -5
- package/src/exhibition/Avatar/CHANGELOG.md +32 -0
- package/src/exhibition/Avatar/README.md +15 -0
- package/src/exhibition/Badge/CHANGELOG.md +32 -0
- package/src/exhibition/Badge/README.md +15 -0
- package/src/exhibition/Divider/CHANGELOG.md +26 -0
- package/src/exhibition/Divider/README.md +15 -0
- package/src/exhibition/Icon/CHANGELOG.md +32 -0
- package/src/exhibition/Icon/README.md +15 -0
- package/src/exhibition/Label/CHANGELOG.md +38 -0
- package/src/exhibition/Label/README.md +15 -0
- package/src/exhibition/Stepper/CHANGELOG.md +31 -0
- package/src/exhibition/Stepper/README.md +15 -0
- package/src/exhibition/Text/CHANGELOG.md +39 -0
- package/src/exhibition/Text/README.md +15 -0
- package/src/exhibition/Title/CHANGELOG.md +39 -0
- package/src/exhibition/Title/README.md +15 -0
- package/src/exhibition/Tooltip/CHANGELOG.md +26 -0
- package/src/exhibition/Tooltip/README.md +15 -0
- package/src/feedback/Progress/CHANGELOG.md +28 -0
- package/src/feedback/Progress/README.md +15 -0
- package/src/feedback/Skeleton/CHANGELOG.md +26 -0
- package/src/feedback/Skeleton/README.md +15 -0
- package/src/feedback/Status/CHANGELOG.md +26 -0
- package/src/feedback/Status/README.md +15 -0
- package/src/input/Button/CHANGELOG.md +59 -0
- package/src/input/Button/README.md +15 -0
- package/src/input/Checkbox/CHANGELOG.md +45 -0
- package/src/input/Checkbox/README.md +15 -0
- package/src/input/Chip/CHANGELOG.md +43 -0
- package/src/input/Chip/README.md +15 -0
- package/src/input/Dropdown/CHANGELOG.md +41 -0
- package/src/input/Dropdown/README.md +15 -0
- package/src/input/IconButton/CHANGELOG.md +28 -0
- package/src/input/IconButton/README.md +15 -0
- package/src/input/Input/CHANGELOG.md +46 -0
- package/src/input/Input/README.md +44 -0
- package/src/input/RadioButton/CHANGELOG.md +28 -0
- package/src/input/RadioButton/README.md +15 -0
- package/src/input/Select/CHANGELOG.md +43 -0
- package/src/input/Select/README.md +13 -0
- package/src/input/Textarea/CHANGELOG.md +38 -0
- package/src/input/Textarea/README.md +15 -0
- package/src/input/Toggle/CHANGELOG.md +28 -0
- package/src/input/Toggle/README.md +15 -0
- package/src/layout/Box/CHANGELOG.md +50 -0
- package/src/layout/Box/README.md +15 -0
- package/src/layout/Sidebar/CHANGELOG.md +28 -0
- package/src/layout/Sidebar/README.md +109 -0
- package/src/navigation/Breadcrumb/CHANGELOG.md +26 -0
- package/src/navigation/Breadcrumb/README.md +56 -0
- package/src/navigation/Link/CHANGELOG.md +28 -0
- package/src/navigation/Link/README.md +15 -0
- package/src/navigation/Pagination/CHANGELOG.md +28 -0
- package/src/navigation/Pagination/README.md +15 -0
- package/src/navigation/SideNavigation/CHANGELOG.md +33 -0
- package/src/navigation/SideNavigation/README.md +87 -0
- package/src/navigation/Tabs/CHANGELOG.md +40 -0
- package/src/navigation/Tabs/README.md +9 -0
- package/src/stylization/ThemeProvider/CHANGELOG.md +32 -0
- package/src/stylization/ThemeProvider/README.md +56 -0
- package/src/surface/Accordion/CHANGELOG.md +28 -0
- package/src/surface/Accordion/README.md +93 -0
- package/src/surface/Banner/CHANGELOG.md +26 -0
- package/src/surface/Banner/README.md +15 -0
- package/src/surface/Card/CHANGELOG.md +29 -0
- package/src/surface/Card/README.md +15 -0
- package/src/surface/Modal/CHANGELOG.md +30 -0
- package/src/surface/Modal/README.md +15 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
The Button component allows us to initiate actions, make state or page changes.
|
|
4
|
+
|
|
5
|
+
## 2025-09-18 `1.5.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Enhanced form interaction with intelligent submit/reset behavior based on button type (submit/reset/button). ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
10
|
+
- Added standardized custom event `rarui-button-click` with detailed event information for consistent interaction handling. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
11
|
+
- Implemented automatic form submission/reset when button is inside form element with appropriate type. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
12
|
+
|
|
13
|
+
## 2025-09-04 `1.4.0`
|
|
14
|
+
|
|
15
|
+
#### 🎉 New features
|
|
16
|
+
|
|
17
|
+
- Enhanced accessibility support with additional ARIA attributes (aria-pressed, aria-expanded) for advanced button states. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
18
|
+
- Added comprehensive HTML form integration with name, value, and form attributes for proper form submission support. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
19
|
+
|
|
20
|
+
## 2025-08-28 `1.3.1`
|
|
21
|
+
|
|
22
|
+
#### 🐛 Bug fixes
|
|
23
|
+
|
|
24
|
+
- Fixed component width issue by adjusting host display styles. ([#128](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/128) by [@junior](https://git.rarolabs.com.br/junior))
|
|
25
|
+
|
|
26
|
+
## 2025-04-06 `1.3.0`
|
|
27
|
+
|
|
28
|
+
#### 🎉 New features
|
|
29
|
+
|
|
30
|
+
- Added `type` property to the Component. ([#115](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/115) by [@junior](https://git.rarolabs.com.br/junior))
|
|
31
|
+
|
|
32
|
+
## 2025-05-27 `1.2.0`
|
|
33
|
+
|
|
34
|
+
#### 🎉 New features
|
|
35
|
+
|
|
36
|
+
- Added the `custom-elements.json` file to the package for automatic documentation tools and web component support editors. ([#110](https://git.rarolabs.com.br/frontend/rarui/pull/110) by [@junior](https://git.rarolabs.com.br/junior))
|
|
37
|
+
|
|
38
|
+
## 2025-05-23 `1.1.0`
|
|
39
|
+
|
|
40
|
+
#### 🎉 New features
|
|
41
|
+
|
|
42
|
+
- Adjusted the creation of components for `lit` use to `stencil` Inves. ([#109](https://git.rarolabs.com.br/frontend/rarui/pull/109) by [@junior](https://git.rarolabs.com.br/junior))
|
|
43
|
+
|
|
44
|
+
## 2024-08-06 `1.0.0`
|
|
45
|
+
|
|
46
|
+
#### 🎉 New features
|
|
47
|
+
|
|
48
|
+
- Added `appearance`, `as`, `full`, `size` and `variant` properties to the Component. ([#87](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/87) by [@junior](https://git.rarolabs.com.br/junior))
|
|
49
|
+
- Added stories on Component. ([#87](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/87) by [@junior](https://git.rarolabs.com.br/junior))
|
|
50
|
+
|
|
51
|
+
<!-- #### 🛠 Breaking changes -->
|
|
52
|
+
|
|
53
|
+
<!-- #### 📚 3rd party library updates -->
|
|
54
|
+
|
|
55
|
+
<!-- #### 🎉 New features -->
|
|
56
|
+
|
|
57
|
+
<!-- #### 🐛 Bug fixes -->
|
|
58
|
+
|
|
59
|
+
<!-- #### 💡 Others -->
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
Checkboxes allow the user to select multiple options from a set, or to turn an option on and off.
|
|
4
|
+
|
|
5
|
+
## 2025-09-18 `1.3.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Enhanced form integration with native HTML form association using ElementInternals API for seamless form submission and validation. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
10
|
+
- Added standardized custom event `rarui-checkbox-change` (replacing generic `change`) with detailed event information for consistent interaction handling. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
11
|
+
- Implemented automatic form reset support with `formResetCallback()` for native form reset behavior. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
12
|
+
- Enhanced label integration with automatic focus management through `rarui-label-click` event listener and `focus()`/`blur()` methods. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
13
|
+
|
|
14
|
+
## 2025-09-04 `1.2.0`
|
|
15
|
+
|
|
16
|
+
#### 🎉 New features
|
|
17
|
+
|
|
18
|
+
- Enhanced accessibility support with comprehensive ARIA attributes (aria-checked, aria-invalid, aria-required) including mixed state support for indeterminate checkboxes. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
19
|
+
- Added comprehensive HTML form integration with name, value, form, and required attributes for proper form submission and validation. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
20
|
+
|
|
21
|
+
## 2025-01-09 `1.1.0`
|
|
22
|
+
|
|
23
|
+
#### 🎉 New features
|
|
24
|
+
|
|
25
|
+
- Added hybrid behavior support with `checked` and `readonly` properties. ([#133](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/133) by [@junior](https://git.rarolabs.com.br/junior))
|
|
26
|
+
- Implemented controlled mode when `checked` prop is provided (works like React controlled component). ([#133](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/133) by [@junior](https://git.rarolabs.com.br/junior))
|
|
27
|
+
- Implemented native mode when `checked` prop is not provided (works like native HTML checkbox). ([#133](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/133) by [@junior](https://git.rarolabs.com.br/junior))
|
|
28
|
+
- Added `readonly` property to prevent user interaction while displaying current state. ([#133](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/133) by [@junior](https://git.rarolabs.com.br/junior))
|
|
29
|
+
|
|
30
|
+
## 2025-05-28 `1.0.0`
|
|
31
|
+
|
|
32
|
+
#### 🎉 New features
|
|
33
|
+
|
|
34
|
+
- Added `id`, `label`, `size`, `disabled`, `danger` and `indeterminate` properties to the Component. ([#112](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/112) by [@junior](https://git.rarolabs.com.br/junior))
|
|
35
|
+
- Added stories on Component. ([#112](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/112) by [@junior](https://git.rarolabs.com.br/junior))
|
|
36
|
+
|
|
37
|
+
<!-- #### 🛠 Breaking changes -->
|
|
38
|
+
|
|
39
|
+
<!-- #### 📚 3rd party library updates -->
|
|
40
|
+
|
|
41
|
+
<!-- #### 🎉 New features -->
|
|
42
|
+
|
|
43
|
+
<!-- #### 🐛 Bug fixes -->
|
|
44
|
+
|
|
45
|
+
<!-- #### 💡 Others -->
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# `@rarui/checkbox`
|
|
2
|
+
|
|
3
|
+
The Checkbox allows users to select one or more items from a set and can be used to enable or disable an option.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
$ yarn add @rarui/checkbox
|
|
9
|
+
# or
|
|
10
|
+
$ npm install @rarui/checkbox
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
View docs [here]().
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
Chip is a small component used to make selections, filter content, or trigger actions.
|
|
4
|
+
|
|
5
|
+
## 2025-09-18 `2.1.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Standardized custom events to `rarui-chip-click` and `rarui-chip-close` (from `chip-click` and `chip-close`) for consistent event naming across all components. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
10
|
+
|
|
11
|
+
#### 🛠 Breaking changes
|
|
12
|
+
|
|
13
|
+
- Updated custom event names: `chip-click` → `rarui-chip-click`, `chip-close` → `rarui-chip-close` for consistent namespace organization. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
14
|
+
|
|
15
|
+
#### 💡 Others
|
|
16
|
+
|
|
17
|
+
- Enhanced type definitions with comprehensive event documentation including detailed type signatures for both mouse and keyboard events. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
18
|
+
|
|
19
|
+
## 2025-09-05 `2.0.0`
|
|
20
|
+
|
|
21
|
+
#### 🎉 New features
|
|
22
|
+
|
|
23
|
+
- Added accessibility improvements with `disabled`, `type`, `name`, `value` and `form` properties for better form integration. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
24
|
+
- Added standardized custom events `chip-click` and `chip-close` for consistent interaction handling. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
25
|
+
- Enhanced keyboard navigation support for closeable chips with Enter and Space key handling. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
26
|
+
- Improved ARIA support with `aria-pressed`, `aria-label`, `aria-labelledby` and `aria-describedby` attributes. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
27
|
+
|
|
28
|
+
## 2025-06-16 `1.0.0`
|
|
29
|
+
|
|
30
|
+
#### 🎉 New features
|
|
31
|
+
|
|
32
|
+
- Added `text-transform`, `text-overflow`, `closeable`, `pill`, `size`, `padding` and `selected` properties to the Component. ([#117](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/117) by [@junior](https://git.rarolabs.com.br/junior))
|
|
33
|
+
- Added stories on Component. ([#117](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/117) by [@junior](https://git.rarolabs.com.br/junior))
|
|
34
|
+
|
|
35
|
+
<!-- #### 🛠 Breaking changes -->
|
|
36
|
+
|
|
37
|
+
<!-- #### 📚 3rd party library updates -->
|
|
38
|
+
|
|
39
|
+
<!-- #### 🎉 New features -->
|
|
40
|
+
|
|
41
|
+
<!-- #### 🐛 Bug fixes -->
|
|
42
|
+
|
|
43
|
+
<!-- #### 💡 Others -->
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
Dropdown are informative, specific, and action -oriented text labels that provide contextual support.
|
|
4
|
+
|
|
5
|
+
## 2025-09-05 `1.2.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Enhanced Dropdown component with comprehensive accessibility support including proper ARIA attributes (aria-haspopup, aria-expanded, aria-controls) for screen reader compatibility. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
10
|
+
- Enhanced DropdownItem component with accessibility improvements (disabled, value, type, role properties), proper ARIA attributes (aria-selected, aria-disabled), and standardized custom events (dropdown-item-click). ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
11
|
+
- Standardized custom event `dropdown-visibility-change` with detailed event payload for consistent interaction handling. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
12
|
+
- Added keyboard support for Enter and Space keys to activate dropdown trigger and items for better accessibility. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
13
|
+
|
|
14
|
+
## 2025-01-09 `1.1.0`
|
|
15
|
+
|
|
16
|
+
#### 🎉 New features
|
|
17
|
+
|
|
18
|
+
- Added hybrid behavior support for `visible` property - controlled and native modes. ([#133](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/133) by [@junior](https://git.rarolabs.com.br/junior))
|
|
19
|
+
- Implemented intelligent state management that works as controlled component when `visible` prop is provided. ([#133](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/133) by [@junior](https://git.rarolabs.com.br/junior))
|
|
20
|
+
- Added native behavior when `visible` prop is not provided, maintaining internal state automatically. ([#133](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/133) by [@junior](https://git.rarolabs.com.br/junior))
|
|
21
|
+
- Enhanced accessibility with ESC key support to close dropdown when `enabled-dismiss` is true. ([#133](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/133) by [@junior](https://git.rarolabs.com.br/junior))
|
|
22
|
+
- Improved keyboard navigation and event handling for better user experience. ([#133](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/133) by [@junior](https://git.rarolabs.com.br/junior))
|
|
23
|
+
|
|
24
|
+
## 2025-06-30 `1.0.0`
|
|
25
|
+
|
|
26
|
+
#### 🎉 New features
|
|
27
|
+
|
|
28
|
+
- Added `padding`, `width`, `max-width`, `match-reference-width`, `enabled-dismiss`, `enabled-click`, `enabled-flip`, `offset`, `visible`, `z-index`, `position` and `strategy` properties to the component. ([#124](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/124) by [@junior](https://git.rarolabs.com.br/junior))
|
|
29
|
+
- Added stories on Component. ([#124](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/124) by [@junior](https://git.rarolabs.com.br/junior))
|
|
30
|
+
- Added `name` and `selected` properties to the Component `rarui-dropdown-item`. ([#124 ](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/124) by [@junior](https://git.rarolabs.com.br/junior))
|
|
31
|
+
- Added stories to the Component `rarui-dropdown-item`. ([#124](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/124) by [@junior](https://git.rarolabs.com.br/junior))
|
|
32
|
+
|
|
33
|
+
<!-- #### 🛠 Breaking changes -->
|
|
34
|
+
|
|
35
|
+
<!-- #### 📚 3rd party library updates -->
|
|
36
|
+
|
|
37
|
+
<!-- #### 🎉 New features -->
|
|
38
|
+
|
|
39
|
+
<!-- #### 🐛 Bug fixes -->
|
|
40
|
+
|
|
41
|
+
<!-- #### 💡 Others -->
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# `@rarui/dropdown`
|
|
2
|
+
|
|
3
|
+
Dropdown are informative, specific, and action -oriented text labels that provide contextual support.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
$ yarn add @rarui/dropdown
|
|
9
|
+
# or
|
|
10
|
+
$ npm install @rarui/dropdown
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
View docs [here]().
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
The IconButton component allows us to initiate actions, make state or page changes.
|
|
4
|
+
|
|
5
|
+
## 2025-09-05 `1.2.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Enhanced IconButton component with comprehensive accessibility and form integration (type, name, value, form properties) for proper HTML form submission and semantic button behavior. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
10
|
+
- Added standardized custom event `icon-button-click` for consistent interaction handling across the component library. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
11
|
+
- Improved ARIA support with native `aria-label`, `aria-labelledby`, and `aria-describedby` attributes for screen reader accessibility. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
12
|
+
|
|
13
|
+
## 2025-06-13 `1.0.0`
|
|
14
|
+
|
|
15
|
+
#### 🎉 New features
|
|
16
|
+
|
|
17
|
+
- Added `appearance`, `variant`, `rounded`, `size` and `disabled` properties to the Component. ([#116](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/116) by [@junior](https://git.rarolabs.com.br/junior))
|
|
18
|
+
- Added stories on Component. ([#116](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/116) by [@junior](https://git.rarolabs.com.br/junior))
|
|
19
|
+
|
|
20
|
+
<!-- #### 🛠 Breaking changes -->
|
|
21
|
+
|
|
22
|
+
<!-- #### 📚 3rd party library updates -->
|
|
23
|
+
|
|
24
|
+
<!-- #### 🎉 New features -->
|
|
25
|
+
|
|
26
|
+
<!-- #### 🐛 Bug fixes -->
|
|
27
|
+
|
|
28
|
+
<!-- #### 💡 Others -->
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# `@rarui/icon-button`
|
|
2
|
+
|
|
3
|
+
The IconButton component allows us to initiate actions, make state or page changes.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
$ yarn add @rarui/icon-button
|
|
9
|
+
# or
|
|
10
|
+
$ npm install @rarui/icon-button
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
View docs [here]().
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
The Input component allows users to enter and edit text.
|
|
4
|
+
|
|
5
|
+
## 2025-09-18 `1.2.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Enhanced form integration with native HTML form association using ElementInternals API for seamless form submission and validation. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
10
|
+
- Upgraded custom event to `rarui-input-change` (from `input-change`) for consistent event naming across all components. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
11
|
+
- Implemented automatic form reset support with `formResetCallback()` for native form reset behavior. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
12
|
+
- Enhanced label integration with automatic focus management through `rarui-label-click` event listener and `focus()`/`blur()` methods. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
13
|
+
- Added native `id` attribute support for proper label association and form control identification. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
14
|
+
|
|
15
|
+
## 2025-09-05 `1.1.0`
|
|
16
|
+
|
|
17
|
+
#### 🎉 New features
|
|
18
|
+
|
|
19
|
+
- Enhanced Input component with comprehensive accessibility and form integration (type, name, form, required, readonly, autocomplete, minlength, maxlength, pattern properties) and complete ARIA attributes support for screen reader compatibility. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
20
|
+
- Enhanced InputPassword component with accessibility improvements (form integration properties, ARIA attributes) and standardized custom event `input-password-change` for consistent interaction handling. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
21
|
+
- Enhanced InputSearch component with accessibility support (form validation attributes, ARIA support) and standardized custom events (`input-search-change`, `input-search-submit`) for better user interaction. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
22
|
+
- Added standardized custom event `input-change` for the main Input component while maintaining backward compatibility with native input and change events. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
23
|
+
|
|
24
|
+
## 2025-08-28 `1.0.0`
|
|
25
|
+
|
|
26
|
+
#### 🎉 New features
|
|
27
|
+
|
|
28
|
+
- Added initial implementation of `rarui-input` web component. ([#128](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/128) by [@junior](https://git.rarolabs.com.br/junior))
|
|
29
|
+
- Added support for leading elements via slots (`leading-start` and `leading-end`). ([#128](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/128) by [@junior](https://git.rarolabs.com.br/junior))
|
|
30
|
+
- Added `rarui-input-password` component with show/hide password toggle. ([#128](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/128) by [@junior](https://git.rarolabs.com.br/junior))
|
|
31
|
+
- Added `rarui-input-search` component with built-in search icon. ([#128](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/128) by [@junior](https://git.rarolabs.com.br/junior))
|
|
32
|
+
- Added multiple size variants: small, medium, large. ([#128](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/128) by [@junior](https://git.rarolabs.com.br/junior))
|
|
33
|
+
- Added appearance variants: success, error. ([#128](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/128) by [@junior](https://git.rarolabs.com.br/junior))
|
|
34
|
+
- Added border and divider customization options. ([#128](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/128) by [@junior](https://git.rarolabs.com.br/junior))
|
|
35
|
+
- Added disabled state support. ([#128](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/128) by [@junior](https://git.rarolabs.com.br/junior))
|
|
36
|
+
- Added stories on Component. ([#128](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/128) by [@junior](https://git.rarolabs.com.br/junior))
|
|
37
|
+
|
|
38
|
+
<!-- #### 🛠 Breaking changes -->
|
|
39
|
+
|
|
40
|
+
<!-- #### 📚 3rd party library updates -->
|
|
41
|
+
|
|
42
|
+
<!-- #### 🎉 New features -->
|
|
43
|
+
|
|
44
|
+
<!-- #### 🐛 Bug fixes -->
|
|
45
|
+
|
|
46
|
+
<!-- #### 💡 Others -->
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# `@rarui/input`
|
|
2
|
+
|
|
3
|
+
The Input component provides text input functionality with support for leading elements, different sizes, appearances, and specialized variants like password and search inputs.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
$ yarn add @rarui/input
|
|
9
|
+
# or
|
|
10
|
+
$ npm install @rarui/input
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
### Basic Input
|
|
16
|
+
```html
|
|
17
|
+
<rarui-input placeholder="Digite seu nome"></rarui-input>
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
### Input with Leading Elements
|
|
21
|
+
```html
|
|
22
|
+
<rarui-input placeholder="Digite seu nome">
|
|
23
|
+
<rarui-icon slot="leading-start" name="user_filled"></rarui-icon>
|
|
24
|
+
<rarui-icon slot="leading-end" name="check"></rarui-icon>
|
|
25
|
+
</rarui-input>
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### Password Input
|
|
29
|
+
```html
|
|
30
|
+
<rarui-input-password placeholder="Digite sua senha"></rarui-input-password>
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Search Input
|
|
34
|
+
```html
|
|
35
|
+
<rarui-input-search placeholder="Buscar..."></rarui-input-search>
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Components
|
|
39
|
+
|
|
40
|
+
- `rarui-input` - Base input component with slot support
|
|
41
|
+
- `rarui-input-password` - Password input with show/hide toggle
|
|
42
|
+
- `rarui-input-search` - Search input with built-in search icon
|
|
43
|
+
|
|
44
|
+
View docs [here]().
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
The Radio Button allows users to select an option from a set. They are a selection control that usually appears when users are asked to make decisions or select an option from options.
|
|
4
|
+
|
|
5
|
+
## 2025-09-05 `1.2.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Enhanced RadioButton component with comprehensive accessibility and form integration (value, form, required, readonly properties) for proper HTML form submission and semantic radio button behavior. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
10
|
+
- Added standardized custom event `radio-button-change` with detailed event payload including value, checked state, and name for consistent interaction handling. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
11
|
+
- Improved ARIA support with complete attributes implementation (aria-label, aria-labelledby, aria-describedby, aria-invalid, aria-required) for screen reader accessibility. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
12
|
+
|
|
13
|
+
## 2025-05-29 `1.0.0`
|
|
14
|
+
|
|
15
|
+
#### 🎉 New features
|
|
16
|
+
|
|
17
|
+
- Added `id`, `selected`, `size`, `disabled`, `error` and `label` properties to the Component. ([#113](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/113) by [@junior](https://git.rarolabs.com.br/junior))
|
|
18
|
+
- Added stories on Component. ([#113](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/113) by [@junior](https://git.rarolabs.com.br/junior))
|
|
19
|
+
|
|
20
|
+
<!-- #### 🛠 Breaking changes -->
|
|
21
|
+
|
|
22
|
+
<!-- #### 📚 3rd party library updates -->
|
|
23
|
+
|
|
24
|
+
<!-- #### 🎉 New features -->
|
|
25
|
+
|
|
26
|
+
<!-- #### 🐛 Bug fixes -->
|
|
27
|
+
|
|
28
|
+
<!-- #### 💡 Others -->
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# `@rarui/radio-button`
|
|
2
|
+
|
|
3
|
+
The Radio Button allows users to select an option from a set. They are a selection control that usually appears when users are asked to make decisions or select an option from options.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
$ yarn add @rarui/radio-button
|
|
9
|
+
# or
|
|
10
|
+
$ npm install @rarui/radio-button
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
View docs [here]().
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
Select component for choosing options from a dropdown menu with support for single and multiple selection.
|
|
4
|
+
|
|
5
|
+
## 2025-09-18 `1.2.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Enhanced form integration with native HTML form association using ElementInternals API for seamless form submission and validation in both single and multiple selection modes. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
10
|
+
- Upgraded custom event to `rarui-select-change` (from `select-change`) for consistent event naming across all components. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
11
|
+
- Implemented automatic form reset support with `formResetCallback()` for native form reset behavior. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
12
|
+
- Enhanced label integration with automatic focus management through `rarui-label-click` event listener and `focus()`/`blur()` methods. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
13
|
+
- Improved multiple selection checkbox integration with proper naming and readonly state management. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
14
|
+
|
|
15
|
+
## 2025-09-05 `1.1.0`
|
|
16
|
+
|
|
17
|
+
#### 🎉 New features
|
|
18
|
+
|
|
19
|
+
- Enhanced Select component with comprehensive accessibility and form integration (name, form, required properties) for proper HTML form submission and semantic select behavior. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
20
|
+
- Added complete ARIA support with proper attributes (aria-haspopup, aria-expanded, aria-label, aria-labelledby, aria-describedby, aria-invalid, aria-required) and semantic roles for screen reader accessibility. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
21
|
+
- Implemented hidden form inputs for seamless integration with HTML forms in both single and multiple selection modes. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
22
|
+
|
|
23
|
+
## 2025-01-09 `1.0.0`
|
|
24
|
+
|
|
25
|
+
#### 🎉 New features
|
|
26
|
+
|
|
27
|
+
- Added new `Select` component with single and multiple selection modes. ([#133](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/133) by [@junior](https://git.rarolabs.com.br/junior))
|
|
28
|
+
- Implemented complete parity with React Select component using internal web components. ([#133](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/133) by [@junior](https://git.rarolabs.com.br/junior))
|
|
29
|
+
- Added support for custom content and filtering through slot-based architecture. ([#133](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/133) by [@junior](https://git.rarolabs.com.br/junior))
|
|
30
|
+
- Enhanced with full keyboard navigation and ESC key accessibility support. ([#133](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/133) by [@junior](https://git.rarolabs.com.br/junior))
|
|
31
|
+
- Integrated with hybrid Checkbox and Dropdown components for intelligent state management. ([#133](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/133) by [@junior](https://git.rarolabs.com.br/junior))
|
|
32
|
+
- Added `size`, `appearance`, `placeholder`, `disabled`, `multiple`, `open`, `enabled-flip`, `position`, `max-height`, `z-index`, `strategy`, `options`, `value`, and `default-value` properties. ([#133](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/133) by [@junior](https://git.rarolabs.com.br/junior))
|
|
33
|
+
- Added comprehensive Storybook stories including filtering example. ([#133](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/133) by [@junior](https://git.rarolabs.com.br/junior))
|
|
34
|
+
|
|
35
|
+
<!-- #### 🛠 Breaking changes -->
|
|
36
|
+
|
|
37
|
+
<!-- #### 📚 3rd party library updates -->
|
|
38
|
+
|
|
39
|
+
<!-- #### 🎉 New features -->
|
|
40
|
+
|
|
41
|
+
<!-- #### 🐛 Bug fixes -->
|
|
42
|
+
|
|
43
|
+
<!-- #### 💡 Others -->
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Select
|
|
2
|
+
|
|
3
|
+
Select component for choosing options from a dropdown menu with support for single and multiple selection.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- **Single Selection**: Choose one option from the list
|
|
8
|
+
- **Multiple Selection**: Choose multiple options with checkboxes
|
|
9
|
+
- **Custom Content**: Support for slot-based custom content and filtering
|
|
10
|
+
- **Accessibility**: Full keyboard navigation with ESC key support
|
|
11
|
+
- **Controlled Behavior**: Uses internal web components (Dropdown, Checkbox, Text, Box, Chip, Icon)
|
|
12
|
+
|
|
13
|
+
See [complete documentation](https://rarui.rarolabs.com.br/docs/components-web-components/input/select) for more details.
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
Textarea is a basic component that allows us to write blocks of text and give it formatting to use within other components, sections and pages of our application or website.
|
|
4
|
+
|
|
5
|
+
## 2025-09-18 `1.2.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Enhanced form integration with native HTML form association using ElementInternals API for seamless form submission and validation. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
10
|
+
- Upgraded custom event to `rarui-textarea-change` (from `textarea-change`) for consistent event naming across all components. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
11
|
+
- Implemented automatic form reset support with `formResetCallback()` for native form reset behavior. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
12
|
+
- Enhanced label integration with automatic focus management through `rarui-label-click` event listener and `focus()`/`blur()` methods. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
13
|
+
- Improved value initialization with proper default empty string for consistent form behavior. ([#135](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/135) by [@junior](https://git.rarolabs.com.br/junior))
|
|
14
|
+
|
|
15
|
+
## 2025-09-05 `1.1.0`
|
|
16
|
+
|
|
17
|
+
#### 🎉 New features
|
|
18
|
+
|
|
19
|
+
- Enhanced Textarea component with comprehensive accessibility and form integration (name, form, required, readonly, placeholder, minlength, maxlength properties) for proper HTML form submission and semantic textarea behavior. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
20
|
+
- Added standardized custom event `textarea-change` with detailed event payload including value and original event for consistent interaction handling. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
21
|
+
- Improved ARIA support with complete attributes implementation (aria-label, aria-labelledby, aria-describedby, aria-invalid, aria-required) for screen reader accessibility. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
22
|
+
|
|
23
|
+
## 2025-05-29 `1.0.0`
|
|
24
|
+
|
|
25
|
+
#### 🎉 New features
|
|
26
|
+
|
|
27
|
+
- Added `lines` and `appearance` properties to the Component. ([#113](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/113) by [@junior](https://git.rarolabs.com.br/junior))
|
|
28
|
+
- Added stories on Component. ([#113](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/113) by [@junior](https://git.rarolabs.com.br/junior))
|
|
29
|
+
|
|
30
|
+
<!-- #### 🛠 Breaking changes -->
|
|
31
|
+
|
|
32
|
+
<!-- #### 📚 3rd party library updates -->
|
|
33
|
+
|
|
34
|
+
<!-- #### 🎉 New features -->
|
|
35
|
+
|
|
36
|
+
<!-- #### 🐛 Bug fixes -->
|
|
37
|
+
|
|
38
|
+
<!-- #### 💡 Others -->
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# `@rarui/textarea`
|
|
2
|
+
|
|
3
|
+
Textarea is a basic component that allows us to write blocks of text and give it formatting to use within other components, sections and pages of our application or website.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
$ yarn add @rarui/textarea
|
|
9
|
+
# or
|
|
10
|
+
$ npm install @rarui/textarea
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
View docs [here]().
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
Toggle switches enable or disable the state of a single item.
|
|
4
|
+
|
|
5
|
+
## 2025-09-05 `1.1.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Enhanced Toggle component with comprehensive accessibility and form integration (value, form, required properties) for proper HTML form submission and semantic switch behavior with role="switch". ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
10
|
+
- Added standardized custom event `toggle-change` with detailed event payload including checked state, value, name, and original event for consistent interaction handling. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
11
|
+
- Improved ARIA support with complete attributes implementation (aria-checked, aria-label, aria-labelledby, aria-describedby, aria-invalid, aria-required) for screen reader accessibility. ([#134](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/134) by [@junior](https://git.rarolabs.com.br/junior))
|
|
12
|
+
|
|
13
|
+
## 2025-06-26 `1.0.0`
|
|
14
|
+
|
|
15
|
+
#### 🎉 New features
|
|
16
|
+
|
|
17
|
+
- Added `name`, `selected`, `label`, `size`, `error`, `disabled` and `id` properties to the Component. ([#122](https://git.rarolabs.com.br/frontend/rarui/pull/122) by [@junior](https://git.rarolabs.com.br/junior))
|
|
18
|
+
- Added stories on Component. ([#122](https://git.rarolabs.com.br/frontend/rarui/pull/122) by [@junior](https://git.rarolabs.com.br/junior))
|
|
19
|
+
|
|
20
|
+
<!-- #### 🛠 Breaking changes -->
|
|
21
|
+
|
|
22
|
+
<!-- #### 📚 3rd party library updates -->
|
|
23
|
+
|
|
24
|
+
<!-- #### 🎉 New features -->
|
|
25
|
+
|
|
26
|
+
<!-- #### 🐛 Bug fixes -->
|
|
27
|
+
|
|
28
|
+
<!-- #### 💡 Others -->
|