fui-material 0.1.84 → 0.1.86
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/FButton/FButton.d.ts +1 -0
- package/dist/cjs/types/material/FIcons/FArrowIcon/FArrowIcon.d.ts +1 -1
- package/dist/cjs/types/material/FIcons/FCheckIcon/FCheckIcon.d.ts +1 -1
- package/dist/cjs/types/material/FIcons/FListIcon/FListIcon.d.ts +1 -1
- package/dist/cjs/types/material/FIcons/FPenIcon/FPenIcon.d.ts +1 -1
- package/dist/cjs/types/material/FIcons/FPlusIcon/FPlusIcon.d.ts +1 -1
- package/dist/cjs/types/material/FIcons/FTrashIcon/FTrashIcon.d.ts +1 -1
- 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/FButton/FButton.d.ts +1 -0
- package/dist/esm/types/material/FIcons/FArrowIcon/FArrowIcon.d.ts +1 -1
- package/dist/esm/types/material/FIcons/FCheckIcon/FCheckIcon.d.ts +1 -1
- package/dist/esm/types/material/FIcons/FListIcon/FListIcon.d.ts +1 -1
- package/dist/esm/types/material/FIcons/FPenIcon/FPenIcon.d.ts +1 -1
- package/dist/esm/types/material/FIcons/FPlusIcon/FPlusIcon.d.ts +1 -1
- package/dist/esm/types/material/FIcons/FTrashIcon/FTrashIcon.d.ts +1 -1
- package/dist/esm/types/material/index.d.ts +1 -0
- package/dist/index.d.ts +17 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -448,4 +448,20 @@ interface IFPenIcon {
|
|
|
448
448
|
}
|
|
449
449
|
declare const FPenIcon: ({ color, size, st, id, className, handleClick }: IFPenIcon) => JSX.Element;
|
|
450
450
|
|
|
451
|
-
|
|
451
|
+
interface IFTextArea {
|
|
452
|
+
label?: string;
|
|
453
|
+
st?: React.CSSProperties;
|
|
454
|
+
value?: string | undefined;
|
|
455
|
+
cols?: number;
|
|
456
|
+
rows?: number;
|
|
457
|
+
placeholder?: string;
|
|
458
|
+
readOnly?: boolean;
|
|
459
|
+
disabled?: boolean;
|
|
460
|
+
autoComplete?: boolean;
|
|
461
|
+
className?: string;
|
|
462
|
+
id?: string;
|
|
463
|
+
fullWidth?: boolean;
|
|
464
|
+
}
|
|
465
|
+
declare const FTextArea: FC<IFTextArea>;
|
|
466
|
+
|
|
467
|
+
export { FAccordion, FArrowIcon, FButton$1 as FButton, FButton as FButtonFile, FCheckIcon, FCheckbox, FCloseIcon, FContainer, FDialog, FDialogBody, FDialogFooter, FDialogHeader, FFile, FFullDateField, FGrid, FInputFileForm, FListIcon, FOpenImgFull, FPagination, FPaper, FPenIcon, FPlusIcon, FPreloader, FProgress, FRadioButton, FSelect, FSelectItem, FSelectSearchDb, FStack, FTable, FTableBody, FTableDataCell, FTableFooter, FTableHead, FTableHeaderCell, FTableRow, FTextArea, FTextField, FTimeline, FTimelineCard, FTrashIcon };
|