@fctc/sme-widget-ui 1.0.0
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/README.md +93 -0
- package/dist/hooks.d.mts +13 -0
- package/dist/hooks.d.ts +13 -0
- package/dist/hooks.js +61 -0
- package/dist/hooks.mjs +34 -0
- package/dist/icons.d.mts +92 -0
- package/dist/icons.d.ts +92 -0
- package/dist/icons.js +2062 -0
- package/dist/icons.mjs +1999 -0
- package/dist/index.css +701 -0
- package/dist/index.d.mts +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +34678 -0
- package/dist/index.mjs +34561 -0
- package/dist/types.d.mts +59 -0
- package/dist/types.d.ts +59 -0
- package/dist/types.js +50 -0
- package/dist/types.mjs +13 -0
- package/dist/utils.d.mts +39 -0
- package/dist/utils.d.ts +39 -0
- package/dist/utils.js +4879 -0
- package/dist/utils.mjs +4855 -0
- package/dist/widgets.css +701 -0
- package/dist/widgets.d.mts +405 -0
- package/dist/widgets.d.ts +405 -0
- package/dist/widgets.js +34268 -0
- package/dist/widgets.mjs +34207 -0
- package/package.json +72 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { useClickOutside } from './hooks.js';
|
|
2
|
+
export { AddIcon, ArchiveIcon, ArrowDownIcon, ArrowRightIcon, AttachIcon, BackIcon, CalandarIcon, CheckIcon, ChevronBottomIcon, CloseIcon, CopyIcon, DeleteIcon, DownloadIcon, EmptyData, ExcelIcon, ExportIcon, EyeClosedIcon, EyeIcon, FilterIcon, GoogleIcon, GroupByIcon, KanbanIcon, ListIcon, LoadingIcon, MoreIcon, PaidIcon, PdfIcon, PlaceHolderIcon, PlayIcon, ResetIcon, SearchIcon, SettingIcon, StarIcon, TriangleIcon, UnArchiveIcon, VectorIcon, ZipIcon } from './icons.js';
|
|
3
|
+
export { IInputFieldProps, LoginData, LoginProps, Provider, ValuePropsType, loginSchema } from './types.js';
|
|
4
|
+
export { ActiveBadge, Avatar, BinaryField, ButtonBadge, ButtonField, ButtonSelectFiles, CharField, CheckboxGroup, ColorWidget, ColorWrapper, CopyLinkButtonField, DateField, DownLoadBinary, DownloadFile, DropdownSelector, Fee, FileUpload, FloatField, FloatTime, HtmlField, IActiveBadgeProps, IAvatarProps, IBinaryFieldProps, IButtonBadgeProps, IButtonProps, ICharFieldProps, IColorFieldProps, IColorWrapperProps, ICopyLinkButtonProps, IDateFieldProps, IDurationProps, IFloatFieldProps, IFloatTimeFieldProps, IMany2ManyTagsProps, IMonetaryProps, IPaginationProps, IPriorityFieldProps, IRadioGroupProps, IRatingStarProps, ISelectDropdownProps, ImageField, InfoWidget, IntegerField, LayerLoading, LoadingSmall, Login, Many2ManyProps, Many2ManyTag, Many2ManyView, Many2OneField, Many2OneProps, ModalConfirm, ModalDetail, ModalLayer, Monetary, PaginationView, PaidBadged, Priority, RadioGroup, RatingStar, RemainingDays, RenderFiles, Row, Search, SelectDropdown, StatusDropdown, StatusbarDuration, TDropdownSelectorProps, TableBody, TableFilter, TableFooter, TableGroup, TableHead, TextAreaField, ToggleButton, VideoPlayer, usePagination } from './widgets.js';
|
|
5
|
+
export { COLORS, DOTS, SearchType, checkIsImageLink, convertFloatToTime, formatFileSize, formatNumberOnly, getPasswordMessage, isBase64Image, isObjectEmpty, parseFormattedNumber, range, typeStyles, useFormatDate, useFormatFloatNumber, validateAndParseDate, validateInput } from './utils.js';
|
|
6
|
+
import 'react';
|
|
7
|
+
import 'zod';
|