@fctc/sme-widget-ui 3.10.7 → 3.10.8
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/chunk-5Y4EK5OE.mjs +2 -0
- package/dist/chunk-BJCU5X7S.mjs +1 -0
- package/dist/chunk-KVH366MY.mjs +1 -0
- package/dist/chunk-U7MAFS3I.mjs +1 -0
- package/dist/chunk-UMFSRQPI.mjs +44 -0
- package/dist/chunk-YEKQJ4YC.mjs +1 -0
- package/dist/hooks.mjs +1 -249
- package/dist/icons.mjs +1 -1734
- package/dist/index.css +1 -799
- package/dist/index.mjs +1 -34456
- package/dist/types.mjs +1 -13
- package/dist/utils.mjs +1 -7474
- package/dist/widgets.css +1 -799
- package/dist/widgets.mjs +1 -33684
- package/package.json +1 -1
- package/dist/hooks.d.ts +0 -46
- package/dist/hooks.js +0 -277
- package/dist/icons.d.ts +0 -100
- package/dist/icons.js +0 -1802
- package/dist/index.d.ts +0 -20
- package/dist/index.js +0 -34584
- package/dist/types.d.ts +0 -62
- package/dist/types.js +0 -50
- package/dist/utils.d.ts +0 -30
- package/dist/utils.js +0 -7498
- package/dist/widgets.d.ts +0 -490
- package/dist/widgets.js +0 -33748
package/dist/index.d.ts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export { useClickOutside, useFileInfo } from './hooks.js';
|
|
2
|
-
export { AddIcon, ArchiveIcon, ArrowDownIcon, ArrowRightIcon, AttachIcon, BackIcon, CalendarIcon, CheckIcon, ChevronBottomIcon, CloseIcon, CopyIcon, DefaultFileIcon, DeleteIcon, DeleteIconDanger, DownloadIcon, ExcelIcon, ExportIcon, EyeClosedIcon, EyeIcon, FilterColumnIcon, FilterIcon, GoogleIcon, GroupByIcon, ImageIcon, JSONFileIcon, KanbanIcon, ListIcon, LoadingIcon, MoreIcon, PaidIcon, PdfIcon, PlaceHolderIcon, PlayIcon, ResetIcon, SearchIcon, SettingIcon, StarIcon, TriangleIcon, UnArchiveIcon, VectorIcon, VideoIcon, ZipIcon } from './icons.js';
|
|
3
|
-
export { IInputFieldProps, LoginData, LoginProps, Provider, ValuePropsType, loginSchema } from './types.js';
|
|
4
|
-
export { ActiveBadgeField, AvatarField, BinaryField, ButtonBadgeField, ButtonField, ButtonSelectFiles, CharField, CheckboxField, ColorField, ColorWrapper, CopyLinkButtonField, DateField, DateOptionField, DownLoadBinaryField, DownloadFileField, DropdownField, EmptyTable, FeeField, FileUploadField, FloatField, FloatTimeField, HtmlField, IActiveBadgeProps, IAvatarProps, IBinaryFieldProps, IButtonBadgeProps, IButtonProps, ICharFieldProps, IColorFieldProps, IColorWrapperProps, ICopyLinkButtonProps, IDateFieldProps, IDownLoadBinary, IDownloadFileProps, IDurationProps, IFileUploadProps, IMany2ManyTagsProps, IMonetaryProps, IOptionProps, IPaginationProps, IPriorityFieldProps, IRadioGroupProps, IRatingStarProps, ISelectDropdownProps, IStatusDropdownFieldProps, ImageField, InfomationField, IntegerField, LayerLoading, LoadingSmall, Login, Many2ManyField, Many2ManyProps, Many2ManyTagField, Many2OneField, Many2OneProps, ModalConfirm, ModalDetail, ModalLayer, MonetaryField, PaginationView, PaidBadgedField, PriorityField, RadioGroupField, RatingStarField, RemainingDaysField, Row, Search, SecureField, SelectDropdownField, StatusBarOptionField, StatusDropdownField, StatusbarDurationField, TDropdownSelectorProps, TableBody, TableFilter, TableFooter, TableGroup, TableHead, TextAreaField, ToggleButtonField, VideoPlayer, usePagination } from './widgets.js';
|
|
5
|
-
export { COLORS, DOTS, SearchType, checkIsImageLink, convertFloatToTime, convertTimeToFloat, formatFileSize, formatFloatNumber, formatNumberOnly, getPasswordMessage, isBase64Image, isObjectEmpty, parseFormattedNumber, range, useFormatDate, validateAndParseDate, validateInput } from './utils.js';
|
|
6
|
-
import { ReactNode } from 'react';
|
|
7
|
-
import 'zod';
|
|
8
|
-
|
|
9
|
-
type I18nContextType = {
|
|
10
|
-
lang: string;
|
|
11
|
-
t: (key: string, options?: any) => string;
|
|
12
|
-
changeLanguage: any;
|
|
13
|
-
};
|
|
14
|
-
declare const I18nProvider: ({ children, lang, }: {
|
|
15
|
-
children: ReactNode;
|
|
16
|
-
lang: string;
|
|
17
|
-
}) => JSX.Element;
|
|
18
|
-
declare const useI18n: () => I18nContextType;
|
|
19
|
-
|
|
20
|
-
export { I18nProvider, useI18n };
|