fui-material 1.0.52-beta → 1.0.53-beta
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/material/CarouselComponent/FCarousel/FCarousel.d.ts +17 -0
- package/dist/cjs/types/material/CarouselComponent/FCarousel/index.d.ts +1 -0
- package/dist/cjs/types/material/CarouselComponent/FCarouselItem/FCarouselItem.d.ts +15 -0
- package/dist/cjs/types/material/CarouselComponent/FCarouselItem/index.d.ts +1 -0
- package/dist/cjs/types/material/FFullDateField/FFullDateField.d.ts +2 -0
- package/dist/cjs/types/material/FTextArea/FTextArea.d.ts +2 -0
- package/dist/cjs/types/material/FTextField/FTextField.d.ts +2 -0
- package/dist/cjs/types/material/SelectComponents/FSelect/FSelect.d.ts +2 -0
- package/dist/cjs/types/material/index.d.ts +2 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/material/CarouselComponent/FCarousel/FCarousel.d.ts +17 -0
- package/dist/esm/types/material/CarouselComponent/FCarousel/index.d.ts +1 -0
- package/dist/esm/types/material/CarouselComponent/FCarouselItem/FCarouselItem.d.ts +15 -0
- package/dist/esm/types/material/CarouselComponent/FCarouselItem/index.d.ts +1 -0
- package/dist/esm/types/material/FFullDateField/FFullDateField.d.ts +2 -0
- package/dist/esm/types/material/FTextArea/FTextArea.d.ts +2 -0
- package/dist/esm/types/material/FTextField/FTextField.d.ts +2 -0
- package/dist/esm/types/material/SelectComponents/FSelect/FSelect.d.ts +2 -0
- package/dist/esm/types/material/index.d.ts +2 -0
- package/dist/index.d.ts +37 -1
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React, { FC } from 'react';
|
|
2
|
+
import '../statick/carousel.css';
|
|
3
|
+
export interface IFCarousel {
|
|
4
|
+
autoSwitching?: {
|
|
5
|
+
flag: boolean;
|
|
6
|
+
timeSecond: number;
|
|
7
|
+
};
|
|
8
|
+
className?: string;
|
|
9
|
+
id?: string;
|
|
10
|
+
childrenElements: (current: number) => React.ReactChild | React.ReactNode;
|
|
11
|
+
quantityItems: number;
|
|
12
|
+
st?: React.CSSProperties;
|
|
13
|
+
width?: string | number;
|
|
14
|
+
height?: string | number;
|
|
15
|
+
}
|
|
16
|
+
declare const FCarousel: FC<IFCarousel>;
|
|
17
|
+
export default FCarousel;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./FCarousel";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { FC } from 'react';
|
|
2
|
+
import '../statick/carousel.css';
|
|
3
|
+
export interface FCarouselItem {
|
|
4
|
+
children?: React.ReactChild | React.ReactNode;
|
|
5
|
+
className?: string;
|
|
6
|
+
id?: string;
|
|
7
|
+
current: number;
|
|
8
|
+
index: number;
|
|
9
|
+
quantityItems: number;
|
|
10
|
+
st?: React.CSSProperties;
|
|
11
|
+
widthCard?: number | string;
|
|
12
|
+
heightCard?: number | string;
|
|
13
|
+
}
|
|
14
|
+
declare const FCarouselItem: FC<FCarouselItem>;
|
|
15
|
+
export default FCarouselItem;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./FCarouselItem";
|
|
@@ -20,6 +20,8 @@ export interface IFFullDateField {
|
|
|
20
20
|
helpText?: string;
|
|
21
21
|
onBlur?: React.FocusEventHandler<HTMLInputElement> | undefined;
|
|
22
22
|
onFocus?: React.FocusEventHandler<HTMLInputElement> | undefined;
|
|
23
|
+
width?: string | number;
|
|
24
|
+
height?: string | number;
|
|
23
25
|
}
|
|
24
26
|
declare const FFullDateField: FC<IFFullDateField>;
|
|
25
27
|
export default FFullDateField;
|
|
@@ -39,3 +39,5 @@ export { default as FTab } from "./Tabs/FTab";
|
|
|
39
39
|
export { default as FDropdown } from "./Dropdown/FDropdown";
|
|
40
40
|
export { default as FDropdownItem } from "./Dropdown/FDropdownItem";
|
|
41
41
|
export { default as FSearchBox } from "./FSearchBox";
|
|
42
|
+
export { default as FCarousel } from "./CarouselComponent/FCarousel";
|
|
43
|
+
export { default as FCarouselItem } from "./CarouselComponent/FCarouselItem";
|
package/dist/index.d.ts
CHANGED
|
@@ -58,6 +58,8 @@ interface IFTextField {
|
|
|
58
58
|
min?: number;
|
|
59
59
|
max?: number;
|
|
60
60
|
placeholder?: string | undefined;
|
|
61
|
+
width?: string | number;
|
|
62
|
+
height?: string | number;
|
|
61
63
|
}
|
|
62
64
|
declare const FTextField: FC<IFTextField>;
|
|
63
65
|
|
|
@@ -351,6 +353,8 @@ interface IFSelect {
|
|
|
351
353
|
required?: boolean;
|
|
352
354
|
errText?: string[];
|
|
353
355
|
helpText?: string;
|
|
356
|
+
width?: string | number;
|
|
357
|
+
height?: string | number;
|
|
354
358
|
}
|
|
355
359
|
declare const FSelect: FC<IFSelect>;
|
|
356
360
|
|
|
@@ -386,6 +390,8 @@ interface IFFullDateField {
|
|
|
386
390
|
helpText?: string;
|
|
387
391
|
onBlur?: React.FocusEventHandler<HTMLInputElement> | undefined;
|
|
388
392
|
onFocus?: React.FocusEventHandler<HTMLInputElement> | undefined;
|
|
393
|
+
width?: string | number;
|
|
394
|
+
height?: string | number;
|
|
389
395
|
}
|
|
390
396
|
declare const FFullDateField: FC<IFFullDateField>;
|
|
391
397
|
|
|
@@ -430,6 +436,8 @@ interface IFTextArea {
|
|
|
430
436
|
helpText?: string;
|
|
431
437
|
load?: boolean;
|
|
432
438
|
required?: boolean;
|
|
439
|
+
width?: string | number;
|
|
440
|
+
height?: string | number;
|
|
433
441
|
}
|
|
434
442
|
declare const FTextArea: FC<IFTextArea>;
|
|
435
443
|
|
|
@@ -536,6 +544,34 @@ interface IFSearchBox {
|
|
|
536
544
|
}
|
|
537
545
|
declare const FSearchBox: FC<IFSearchBox>;
|
|
538
546
|
|
|
547
|
+
interface IFCarousel {
|
|
548
|
+
autoSwitching?: {
|
|
549
|
+
flag: boolean;
|
|
550
|
+
timeSecond: number;
|
|
551
|
+
};
|
|
552
|
+
className?: string;
|
|
553
|
+
id?: string;
|
|
554
|
+
childrenElements: (current: number) => React.ReactChild | React.ReactNode;
|
|
555
|
+
quantityItems: number;
|
|
556
|
+
st?: React.CSSProperties;
|
|
557
|
+
width?: string | number;
|
|
558
|
+
height?: string | number;
|
|
559
|
+
}
|
|
560
|
+
declare const FCarousel: FC<IFCarousel>;
|
|
561
|
+
|
|
562
|
+
interface FCarouselItem {
|
|
563
|
+
children?: React.ReactChild | React.ReactNode;
|
|
564
|
+
className?: string;
|
|
565
|
+
id?: string;
|
|
566
|
+
current: number;
|
|
567
|
+
index: number;
|
|
568
|
+
quantityItems: number;
|
|
569
|
+
st?: React.CSSProperties;
|
|
570
|
+
widthCard?: number | string;
|
|
571
|
+
heightCard?: number | string;
|
|
572
|
+
}
|
|
573
|
+
declare const FCarouselItem: FC<FCarouselItem>;
|
|
574
|
+
|
|
539
575
|
interface IFCloseIcon {
|
|
540
576
|
color?: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark' | 'link';
|
|
541
577
|
size?: number;
|
|
@@ -716,4 +752,4 @@ declare const fNotification: ({ title, body, variant, timeSecClose, buttonClose,
|
|
|
716
752
|
|
|
717
753
|
declare const fNotificationDelete: (id: string) => void;
|
|
718
754
|
|
|
719
|
-
export { FAccordion, FAlert, FArrowIcon, FButton, FButtonFile, FCheckIcon, FCheckbox, FCloseIcon, FContainer, FCopyAddIcon, FDialog, FDialogBody, FDialogFooter, FDialogHeader, FDocumentIcon, FDownloadIcon, FDropdown, FDropdownItem, FFile, FFilterIcon, FFullDateField, FGrid, FInputFileForm, FListIcon, FLoadIcon, FNative, FOpenImgFull, FPagination, FPaper, FPenIcon, FPlusIcon, FPreloader, FProgress, FRadioButton, FSearchBox, FSelect, FSelectItem, FSelectSearchDb, FStack, FTab, FTable, FTableBody, FTableDataCell, FTableFooter, FTableHead, FTableHeaderCell, FTableRow, FTabs, FTextArea, FTextField, FTimeline, FTimelineCard, FTrashIcon, FUnlinkIcon, fAlert, fConfirm, fExportHtmlOrJsxToWord, fExportTableToExcel, fNotification, fNotificationDelete, fPrompt };
|
|
755
|
+
export { FAccordion, FAlert, FArrowIcon, FButton, FButtonFile, FCarousel, FCarouselItem, FCheckIcon, FCheckbox, FCloseIcon, FContainer, FCopyAddIcon, FDialog, FDialogBody, FDialogFooter, FDialogHeader, FDocumentIcon, FDownloadIcon, FDropdown, FDropdownItem, FFile, FFilterIcon, FFullDateField, FGrid, FInputFileForm, FListIcon, FLoadIcon, FNative, FOpenImgFull, FPagination, FPaper, FPenIcon, FPlusIcon, FPreloader, FProgress, FRadioButton, FSearchBox, FSelect, FSelectItem, FSelectSearchDb, FStack, FTab, FTable, FTableBody, FTableDataCell, FTableFooter, FTableHead, FTableHeaderCell, FTableRow, FTabs, FTextArea, FTextField, FTimeline, FTimelineCard, FTrashIcon, FUnlinkIcon, fAlert, fConfirm, fExportHtmlOrJsxToWord, fExportTableToExcel, fNotification, fNotificationDelete, fPrompt };
|