fui-material 0.2.56 → 0.2.58
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/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/icons/FCloseIcon/FCloseIcon.d.ts +1 -0
- package/dist/cjs/types/material/FAlert/FAlert.d.ts +2 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/icons/FCloseIcon/FCloseIcon.d.ts +1 -0
- package/dist/esm/types/material/FAlert/FAlert.d.ts +2 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
|
@@ -11,7 +11,8 @@ export interface IFAlert {
|
|
|
11
11
|
horizontal?: 'left' | 'center' | 'right';
|
|
12
12
|
buttonClose?: boolean;
|
|
13
13
|
className?: string;
|
|
14
|
-
|
|
14
|
+
displayTime?: number;
|
|
15
|
+
size?: string;
|
|
15
16
|
}
|
|
16
17
|
declare const FAlert: FC<IFAlert>;
|
|
17
18
|
export default FAlert;
|
package/dist/index.d.ts
CHANGED
|
@@ -433,7 +433,8 @@ interface IFAlert {
|
|
|
433
433
|
horizontal?: 'left' | 'center' | 'right';
|
|
434
434
|
buttonClose?: boolean;
|
|
435
435
|
className?: string;
|
|
436
|
-
|
|
436
|
+
displayTime?: number;
|
|
437
|
+
size?: string;
|
|
437
438
|
}
|
|
438
439
|
declare const FAlert: FC<IFAlert>;
|
|
439
440
|
|
|
@@ -529,6 +530,7 @@ interface IFCloseIcon {
|
|
|
529
530
|
st?: React.CSSProperties;
|
|
530
531
|
className?: string;
|
|
531
532
|
id?: string;
|
|
533
|
+
size?: number;
|
|
532
534
|
}
|
|
533
535
|
declare const FCloseIcon: FC<IFCloseIcon>;
|
|
534
536
|
|