@rarui/components 1.12.0 → 1.13.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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Changelog
2
2
 
3
- `@rarui/components` components is a component library built with [Stencil](https://stenciljs.com/docs/introduction).
3
+ `@rarui/components` components is a component library built with [Lit](https://lit.dev/).
4
+
5
+ ## 2025-06-23 `1.13.0`
6
+
7
+ #### 🎉 New features
8
+
9
+ - Added new surface `Banner` component. ([#120](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/120) by [@junior](https://git.rarolabs.com.br/junior))
4
10
 
5
11
  ## 2025-06-18 `1.12.0`
6
12
 
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.11.0",
2
+ "version": "1.12.0",
3
3
  "tags": [
4
4
  {
5
5
  "name": "rarui-avatar",
@@ -6747,6 +6747,51 @@
6747
6747
  }
6748
6748
  ]
6749
6749
  },
6750
+ {
6751
+ "name": "rarui-banner",
6752
+ "description": "## Rarui Banner\n---\nBanner messages are displayed to the user at the top of the window/screen.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/surface/banner) for more details.",
6753
+ "attributes": [
6754
+ {
6755
+ "name": "appearance",
6756
+ "default": "brand",
6757
+ "description": "The appearance of the banner. This can be used to set the color of the banner.\nSpecifies the visual appearance of the banner message, influencing its color and style.\n\n- brand\n- error\n- info\n- inverted\n- neutral\n- warning",
6758
+ "type": "string",
6759
+ "values": [
6760
+ {
6761
+ "name": "brand",
6762
+ "description": "(default)"
6763
+ },
6764
+ {
6765
+ "name": "error"
6766
+ },
6767
+ {
6768
+ "name": "info"
6769
+ },
6770
+ {
6771
+ "name": "inverted"
6772
+ },
6773
+ {
6774
+ "name": "neutral"
6775
+ },
6776
+ {
6777
+ "name": "warning"
6778
+ }
6779
+ ]
6780
+ },
6781
+ {
6782
+ "name": "floating",
6783
+ "default": false,
6784
+ "description": "Determines whether the banner message should float above the content. This can be useful for ensuring the message remains visible even as the user scrolls.",
6785
+ "type": "boolean"
6786
+ },
6787
+ {
6788
+ "name": "closable",
6789
+ "default": false,
6790
+ "description": "If `true`, display the closing button in the upper right corner of the banner.\nWhen clicked, it fires the `close` event that can be listened to externally.",
6791
+ "type": "boolean"
6792
+ }
6793
+ ]
6794
+ },
6750
6795
  {
6751
6796
  "name": "rarui-card",
6752
6797
  "description": "## Rarui Card\n---\nThe Card component contains textual content, images, and actions about a topic.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/surface/card) for more details.",