@stenajs-webui/elements 23.15.1 → 23.15.2
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/dist/components/ui/banners/banner/Banner.d.ts +2 -1
- package/dist/index.es.js +1189 -1177
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -15,7 +15,8 @@ export interface BannerProps extends AriaAttributes {
|
|
|
15
15
|
contentFlex?: BoxProps["flex"];
|
|
16
16
|
/**
|
|
17
17
|
* The role prop of the element, used for accessibility.
|
|
18
|
-
* If not set, it will default to "status" when variant is success
|
|
18
|
+
* If not set, it will default to "status" when variant is success or warning,
|
|
19
|
+
* "alert" when variant is error and otherwise not be set.
|
|
19
20
|
*/
|
|
20
21
|
role?: DivProps["role"];
|
|
21
22
|
}
|