@loja-integrada/admin-components 0.19.7 → 0.19.9

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.
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const ProgressiveDiscount: () => JSX.Element;
@@ -95,4 +95,5 @@ export declare const icons: {
95
95
  minusCircleSolid: () => JSX.Element;
96
96
  dotsThree: () => JSX.Element;
97
97
  instagram: () => JSX.Element;
98
+ progressiveDiscount: () => JSX.Element;
98
99
  };
@@ -1,12 +1,12 @@
1
1
  import React from 'react';
2
2
  import { IconProps } from '../../Icons';
3
- declare type alertTypesOptions = 'success' | 'warning' | 'danger' | 'info' | 'primary';
3
+ declare type alertTypesOptions = 'success' | 'warning' | 'danger' | 'info' | 'infoOutline' | 'infoDark' | 'primary';
4
4
  declare const alertTypes: Record<alertTypesOptions, {
5
5
  class: string;
6
6
  icon: IconProps['icon'];
7
7
  iconClass: string;
8
8
  }>;
9
- export declare const Alert: React.MemoExoticComponent<({ type, isOpen, title, subtitle, actions, showClose, onClose, hideIcon, customIcon, }: AlertProps) => JSX.Element | null>;
9
+ export declare const Alert: React.MemoExoticComponent<({ type, isOpen, title, subtitle, actions, showClose, onClose, hideIcon, hideBorder, customIcon, }: AlertProps) => JSX.Element | null>;
10
10
  export interface AlertProps {
11
11
  /** Alert color
12
12
  * @default info
@@ -36,6 +36,10 @@ export interface AlertProps {
36
36
  * @default false
37
37
  */
38
38
  hideIcon?: boolean;
39
+ /** Hide alert border
40
+ * @default false
41
+ */
42
+ hideBorder?: boolean;
39
43
  /**
40
44
  * Custom icon
41
45
  */