fui-material 0.1.89 → 0.1.90
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 +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/material/FIcons/FDownloadIcon/FDownloadIcon.d.ts +11 -0
- package/dist/cjs/types/material/FIcons/FDownloadIcon/FDownloadIcon.stories.d.ts +8 -0
- package/dist/cjs/types/material/FIcons/FDownloadIcon/index.d.ts +1 -0
- package/dist/cjs/types/material/index.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/material/FIcons/FDownloadIcon/FDownloadIcon.d.ts +11 -0
- package/dist/esm/types/material/FIcons/FDownloadIcon/FDownloadIcon.stories.d.ts +8 -0
- package/dist/esm/types/material/FIcons/FDownloadIcon/index.d.ts +1 -0
- package/dist/esm/types/material/index.d.ts +1 -0
- package/dist/index.d.ts +11 -1
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface IFDownloadIcon {
|
|
3
|
+
color?: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark' | 'link';
|
|
4
|
+
size?: number;
|
|
5
|
+
st?: React.CSSProperties;
|
|
6
|
+
id?: string;
|
|
7
|
+
className?: string;
|
|
8
|
+
handleClick?: () => void;
|
|
9
|
+
}
|
|
10
|
+
declare const FDownloadIcon: ({ color, size, st, id, className, handleClick }: IFDownloadIcon) => JSX.Element;
|
|
11
|
+
export default FDownloadIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ComponentMeta, Story } from '@storybook/react';
|
|
3
|
+
import { IFDownloadIcon } from "./FDownloadIcon";
|
|
4
|
+
import "bootstrap/dist/css/bootstrap.css";
|
|
5
|
+
declare const _default: ComponentMeta<({ color, size, st, id, className, handleClick }: IFDownloadIcon) => JSX.Element>;
|
|
6
|
+
export default _default;
|
|
7
|
+
export declare const Default: Story<IFDownloadIcon>;
|
|
8
|
+
export declare const ColorContained: Story<IFDownloadIcon>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./FDownloadIcon";
|
|
@@ -38,6 +38,7 @@ export { default as FTrashIcon } from "./FIcons/FTrashIcon";
|
|
|
38
38
|
export { default as FCheckIcon } from "./FIcons/FCheckIcon";
|
|
39
39
|
export { default as FListIcon } from "./FIcons/FListIcon";
|
|
40
40
|
export { default as FPenIcon } from "./FIcons/FPenIcon";
|
|
41
|
+
export { default as FDownloadIcon } from "./FIcons/FDownloadIcon";
|
|
41
42
|
export { default as FTextArea } from "./FTextArea";
|
|
42
43
|
export { default as FAlert } from "./FAlert";
|
|
43
44
|
export { default as FNative } from "./FNative";
|
package/dist/index.d.ts
CHANGED
|
@@ -448,6 +448,16 @@ interface IFPenIcon {
|
|
|
448
448
|
}
|
|
449
449
|
declare const FPenIcon: ({ color, size, st, id, className, handleClick }: IFPenIcon) => JSX.Element;
|
|
450
450
|
|
|
451
|
+
interface IFDownloadIcon {
|
|
452
|
+
color?: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark' | 'link';
|
|
453
|
+
size?: number;
|
|
454
|
+
st?: React.CSSProperties;
|
|
455
|
+
id?: string;
|
|
456
|
+
className?: string;
|
|
457
|
+
handleClick?: () => void;
|
|
458
|
+
}
|
|
459
|
+
declare const FDownloadIcon: ({ color, size, st, id, className, handleClick }: IFDownloadIcon) => JSX.Element;
|
|
460
|
+
|
|
451
461
|
interface IFTextArea {
|
|
452
462
|
label?: string;
|
|
453
463
|
st?: React.CSSProperties;
|
|
@@ -494,4 +504,4 @@ interface IFNative {
|
|
|
494
504
|
}
|
|
495
505
|
declare const FNative: FC<IFNative>;
|
|
496
506
|
|
|
497
|
-
export { FAccordion, FAlert, FArrowIcon, FButton$1 as FButton, FButton as FButtonFile, FCheckIcon, FCheckbox, FCloseIcon, FContainer, FDialog, FDialogBody, FDialogFooter, FDialogHeader, FFile, FFullDateField, FGrid, FInputFileForm, FListIcon, FNative, FOpenImgFull, FPagination, FPaper, FPenIcon, FPlusIcon, FPreloader, FProgress, FRadioButton, FSelect, FSelectItem, FSelectSearchDb, FStack, FTable, FTableBody, FTableDataCell, FTableFooter, FTableHead, FTableHeaderCell, FTableRow, FTextArea, FTextField, FTimeline, FTimelineCard, FTrashIcon };
|
|
507
|
+
export { FAccordion, FAlert, FArrowIcon, FButton$1 as FButton, FButton as FButtonFile, FCheckIcon, FCheckbox, FCloseIcon, FContainer, FDialog, FDialogBody, FDialogFooter, FDialogHeader, FDownloadIcon, FFile, FFullDateField, FGrid, FInputFileForm, FListIcon, FNative, FOpenImgFull, FPagination, FPaper, FPenIcon, FPlusIcon, FPreloader, FProgress, FRadioButton, FSelect, FSelectItem, FSelectSearchDb, FStack, FTable, FTableBody, FTableDataCell, FTableFooter, FTableHead, FTableHeaderCell, FTableRow, FTextArea, FTextField, FTimeline, FTimelineCard, FTrashIcon };
|