@sabrenski/spire-ui-vue 0.2.13 → 0.2.14

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.
@@ -1,6 +1,7 @@
1
- export type AlertVariant = 'flat' | 'solid';
2
- export type AlertColor = 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'danger';
1
+ export type AlertVariant = 'flat' | 'minimal' | 'solid';
2
+ export type AlertColor = 'default' | 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'danger';
3
3
  export type AlertRadius = 'none' | 'sm' | 'md' | 'lg' | 'full';
4
+ export type AlertShadow = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
4
5
  export interface AlertProps {
5
6
  /** Visual style variant */
6
7
  variant?: AlertVariant;
@@ -8,6 +9,8 @@ export interface AlertProps {
8
9
  color?: AlertColor;
9
10
  /** Border radius size */
10
11
  radius?: AlertRadius;
12
+ /** Box shadow size */
13
+ shadow?: AlertShadow;
11
14
  /** Optional heading text displayed above the content */
12
15
  title?: string;
13
16
  /** Show close button that emits @close event */