@rarui/styles 3.2.1 → 3.2.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 +20 -0
- package/dist/decorators/addSprinkleAttributes.d.ts +3 -0
- package/dist/decorators/addSprinkleAttributes.js +1 -0
- package/dist/index.css +7 -1
- package/dist/packages/exhibition/divider/index.d.ts +8 -8
- package/dist/packages/exhibition/icon/index.d.ts +18 -18
- package/dist/packages/exhibition/text/index.d.ts +18 -18
- package/dist/packages/exhibition/title/index.d.ts +18 -18
- package/dist/packages/feedback/status/index.d.ts +4 -4
- package/dist/packages/feedback/status/rarui-status.css +4 -4
- package/dist/packages/feedback/status/rarui-status.css.d.ts +4 -4
- package/dist/packages/input/checkbox/rarui-checkbox.css +4 -0
- package/dist/packages/input/input/rarui-input.css +1 -0
- package/dist/packages/input/radioButton/rarui-radioButton.css +4 -0
- package/dist/packages/input/toggle/rarui-toggle.css +4 -0
- package/dist/packages/layout/box/index.d.ts +319 -319
- package/dist/packages/layout/sidebar/index.d.ts +2 -2
- package/dist/packages/navigation/link/rarui-link.css +5 -0
- package/dist/packages/surface/banner/index.d.ts +4 -0
- package/dist/packages/surface/banner/rarui-banner.css +16 -8
- package/dist/packages/surface/banner/rarui-banner.css.d.ts +4 -0
- package/dist/packages/surface/banner/rarui-banner.css.js +1 -1
- package/dist/packages/surface/card/index.d.ts +33 -33
- package/dist/utils/index.d.ts +3 -0
- package/dist/utils/index.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
RarUI Styles deprive all styles needed to build components.
|
|
4
4
|
|
|
5
|
+
## 2025-11-14 `3.2.3`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- **Enhanced Focus Ring Support**: Added comprehensive focus ring styling to multiple form input components (Checkbox, RadioButton, Toggle) and navigation components (Link) using standardized `focus-ring` elevation token for improved keyboard navigation accessibility and visual feedback. ([#148](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/148) by [@junior](https://git.rarolabs.com.br/junior))
|
|
10
|
+
|
|
11
|
+
#### 🐛 Bug fixes
|
|
12
|
+
|
|
13
|
+
- **Status Component Color Tokens**: Updated Status component color tokens for improved contrast and consistency across different themes and appearance variants. ([#148](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/148) by [@junior](https://git.rarolabs.com.br/junior))
|
|
14
|
+
|
|
15
|
+
## 2025-10-16 `3.2.2`
|
|
16
|
+
|
|
17
|
+
#### 🎉 New features
|
|
18
|
+
|
|
19
|
+
- **Banner Success Appearance**: Added new `success` appearance variant to Banner component with appropriate success colors (surface.success background and content.on-brand text). ([#144](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/144) by [@junior](https://git.rarolabs.com.br/junior))
|
|
20
|
+
|
|
21
|
+
#### 🐛 Bug fixes
|
|
22
|
+
|
|
23
|
+
- **Input Box Sizing Fix**: Added `boxSizing: "border-box"` to input container styles to fix height calculation issues and ensure consistent sizing when borders are applied. ([#144](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/144) by [@junior](https://git.rarolabs.com.br/junior))
|
|
24
|
+
|
|
5
25
|
## 2025-10-07 `3.2.1`
|
|
6
26
|
|
|
7
27
|
#### 🐛 Bug fixes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var r=function(){return function(r){Object.defineProperty(r.prototype,"sprinkleAttrs",{get:function(){return Array.from(this.attributes).reduce((function(r,t){return r[t.name.replace(/-([a-z])/g,(function(r,t){return t.toUpperCase()}))]=function(r){try{return JSON.parse(r)}catch(t){return r}}(t.value),r}),{})}})}};export{r as AddSprinkleAttributes};
|