forstok-ui-lib 7.1.0 → 7.2.1
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/index.d.ts +107 -6
- package/dist/index.js +651 -444
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +632 -425
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -2
- package/rollup.config.js +21 -1
- package/src/components/date/range.tsx +138 -0
- package/src/components/date/ref.tsx +109 -0
- package/src/components/date/{styles.tsx → styles.ts} +65 -1
- package/src/components/date/typed.ts +3 -0
- package/src/components/index.ts +6 -0
- package/src/components/select/all.tsx +2 -2
- package/src/components/select/asyncPaginate.tsx +273 -0
- package/src/components/select/function.ts +8 -0
- package/src/components/table/index.tsx +120 -0
- package/src/components/table/style.ts +178 -0
- package/src/components/table/type.ts +15 -0
- package/src/maps/common.ts +8 -2
package/dist/index.d.ts
CHANGED
|
@@ -2,9 +2,10 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
2
2
|
import * as react from 'react';
|
|
3
3
|
import { HTMLAttributes, ReactNode, AnchorHTMLAttributes, MouseEvent, Dispatch, SetStateAction, KeyboardEvent, FocusEvent, ChangeEvent, DragEvent, ClipboardEvent, FormEvent, InputHTMLAttributes, JSX, PropsWithChildren, ButtonHTMLAttributes, RefObject, ImgHTMLAttributes, TextareaHTMLAttributes } from 'react';
|
|
4
4
|
import { Moment } from 'moment';
|
|
5
|
-
import { OnChangeValue, ActionMeta, OptionProps, StylesConfig, CSSObjectWithLabel, ControlProps, GroupBase, SingleValueProps, MenuListProps, MultiValueRemoveProps } from 'react-select';
|
|
5
|
+
import { OnChangeValue, ActionMeta, OptionProps, StylesConfig, CSSObjectWithLabel, ControlProps, GroupBase, SingleValueProps, MenuListProps, MultiValueRemoveProps, MultiValue } from 'react-select';
|
|
6
6
|
export { components } from 'react-select';
|
|
7
7
|
import { CSSObject } from '@emotion/serialize';
|
|
8
|
+
import { LoadOptions } from 'react-select-async-paginate';
|
|
8
9
|
import * as styled_components from 'styled-components';
|
|
9
10
|
import * as styled_components_dist_types from 'styled-components/dist/types';
|
|
10
11
|
|
|
@@ -561,7 +562,7 @@ declare const ImageChannelComponent: ({ data, label, size, isImageOnly, $mode, $
|
|
|
561
562
|
labelPhone?: string;
|
|
562
563
|
}) => react_jsx_runtime.JSX.Element;
|
|
563
564
|
|
|
564
|
-
type TSelect = {
|
|
565
|
+
type TSelect$2 = {
|
|
565
566
|
type?: string;
|
|
566
567
|
mode?: string;
|
|
567
568
|
isError?: boolean;
|
|
@@ -596,7 +597,49 @@ type TSelect = {
|
|
|
596
597
|
isLoading?: boolean;
|
|
597
598
|
height?: string;
|
|
598
599
|
};
|
|
599
|
-
declare const SelectComponent: ({ type, isError, mode, customOption, customLabel, MenuList, isCreateable, isClearable, selectKey, disabled, defaultValue, width, reset, setReset, isForceUpdate, setForceUpdate, isCheckAutoCopy, evChangeCustom, isField, evCreate, evChange, isMinOption, isMulti, options, name, placeholder, removeMessage, evCreateMessageQuestion, isLoading, height, customMenuList, customMultiValueRemove, ...props }: TSelect) => react_jsx_runtime.JSX.Element;
|
|
600
|
+
declare const SelectComponent: ({ type, isError, mode, customOption, customLabel, MenuList, isCreateable, isClearable, selectKey, disabled, defaultValue, width, reset, setReset, isForceUpdate, setForceUpdate, isCheckAutoCopy, evChangeCustom, isField, evCreate, evChange, isMinOption, isMulti, options, name, placeholder, removeMessage, evCreateMessageQuestion, isLoading, height, customMenuList, customMultiValueRemove, ...props }: TSelect$2) => react_jsx_runtime.JSX.Element;
|
|
601
|
+
|
|
602
|
+
type TSelect$1 = {
|
|
603
|
+
mode?: string;
|
|
604
|
+
isError?: boolean;
|
|
605
|
+
'data-qa-id'?: string;
|
|
606
|
+
value: MultiValue<any>;
|
|
607
|
+
options: TOption[] | null;
|
|
608
|
+
evChange: (newValue: any[], actionMeta: ActionMeta<any>) => void;
|
|
609
|
+
};
|
|
610
|
+
declare const SelectAllComponent: (props: TSelect$1) => react_jsx_runtime.JSX.Element;
|
|
611
|
+
|
|
612
|
+
type TSelect = {
|
|
613
|
+
type?: string;
|
|
614
|
+
mode?: string;
|
|
615
|
+
isError?: boolean;
|
|
616
|
+
customOption?: (arg0: OptionProps) => void;
|
|
617
|
+
MenuList?: any;
|
|
618
|
+
reset?: boolean;
|
|
619
|
+
setReset?: TState<boolean>;
|
|
620
|
+
evChange?: (newValue: OnChangeValue<TOption, boolean>, actionMeta?: ActionMeta<TOption>) => void;
|
|
621
|
+
defaultValue?: OnChangeValue<TOption, boolean>;
|
|
622
|
+
loadOptions: LoadOptions<unknown, GroupBase<unknown>, unknown> | TLoadOption;
|
|
623
|
+
loadOptionsOnMenuOpen?: boolean;
|
|
624
|
+
noOptionsMessage?: ((obj: {
|
|
625
|
+
inputValue: string;
|
|
626
|
+
}) => React.ReactNode);
|
|
627
|
+
isSearchable?: boolean;
|
|
628
|
+
isClearable?: boolean;
|
|
629
|
+
placeholder?: string;
|
|
630
|
+
isMenuOpen?: boolean;
|
|
631
|
+
setMenuIsOpen?: TState<boolean | undefined>;
|
|
632
|
+
isForceUpdate?: boolean;
|
|
633
|
+
setForceUpdate?: TState<boolean>;
|
|
634
|
+
isMulti?: boolean;
|
|
635
|
+
iconLeft?: boolean | string;
|
|
636
|
+
loadedOptions?: TOption[];
|
|
637
|
+
'data-qa-id'?: string;
|
|
638
|
+
evChangeOnMenuClose?: (value: OnChangeValue<TOption, boolean> | undefined) => void;
|
|
639
|
+
id?: string;
|
|
640
|
+
isDisabled?: boolean;
|
|
641
|
+
};
|
|
642
|
+
declare const SelectAsyncPaginateComponent: ({ loadOptions, ...props }: TSelect) => react_jsx_runtime.JSX.Element;
|
|
600
643
|
|
|
601
644
|
declare const MenuList: (props: JSX.IntrinsicAttributes & MenuListProps<unknown, boolean, GroupBase<unknown>>) => react_jsx_runtime.JSX.Element;
|
|
602
645
|
|
|
@@ -640,7 +683,7 @@ declare const TextAreaRefComponent: react.ForwardRefExoticComponent<TextareaHTML
|
|
|
640
683
|
$isEmoji?: boolean;
|
|
641
684
|
} & react.RefAttributes<HTMLTextAreaElement>>;
|
|
642
685
|
|
|
643
|
-
type TDate = {
|
|
686
|
+
type TDate$1 = {
|
|
644
687
|
dateFormat?: string;
|
|
645
688
|
name: string;
|
|
646
689
|
evChange?: (name: string, value: Date | null) => void;
|
|
@@ -659,7 +702,48 @@ type TDate = {
|
|
|
659
702
|
'data-place'?: string;
|
|
660
703
|
'data-type'?: string;
|
|
661
704
|
};
|
|
662
|
-
declare const DateComponent: react.ForwardRefExoticComponent<TDate & react.RefAttributes<unknown>>;
|
|
705
|
+
declare const DateComponent: react.ForwardRefExoticComponent<TDate$1 & react.RefAttributes<unknown>>;
|
|
706
|
+
|
|
707
|
+
type TModerateDateAntFunction = (startDateObj: TMoment, endDateObj: TMoment, callback?: () => void) => void;
|
|
708
|
+
|
|
709
|
+
type TDateRange = {
|
|
710
|
+
$mode?: 'white';
|
|
711
|
+
startDate?: TMoment;
|
|
712
|
+
endDate?: TMoment;
|
|
713
|
+
minDate?: TMoment;
|
|
714
|
+
maxDate?: TMoment;
|
|
715
|
+
evModDate: TModerateDateAntFunction;
|
|
716
|
+
isForceUpdate?: boolean;
|
|
717
|
+
setForceUpdate?: TState<boolean | undefined>;
|
|
718
|
+
};
|
|
719
|
+
declare const DateRangeComponent: (props: TDateRange) => react_jsx_runtime.JSX.Element;
|
|
720
|
+
|
|
721
|
+
type TDate = {
|
|
722
|
+
dateFormat?: string;
|
|
723
|
+
name: string;
|
|
724
|
+
evChange?: (name: string, value: any) => void;
|
|
725
|
+
isField?: boolean;
|
|
726
|
+
evChangeCustom?: (key: string, value: any) => void;
|
|
727
|
+
saveFormat?: string;
|
|
728
|
+
showFormat?: string;
|
|
729
|
+
isForceUpdate?: boolean;
|
|
730
|
+
reset?: boolean;
|
|
731
|
+
setReset?: TState<boolean>;
|
|
732
|
+
value?: Date | null;
|
|
733
|
+
isError?: boolean;
|
|
734
|
+
allowEmpty?: boolean;
|
|
735
|
+
setForceUpdate?: TState<boolean>;
|
|
736
|
+
showTimeInput?: boolean;
|
|
737
|
+
placeholderText?: string;
|
|
738
|
+
portalId?: string;
|
|
739
|
+
isIcon?: boolean;
|
|
740
|
+
'data-qa-id'?: string;
|
|
741
|
+
'data-tip'?: string;
|
|
742
|
+
'data-place'?: string;
|
|
743
|
+
'data-type'?: string;
|
|
744
|
+
disabled?: boolean;
|
|
745
|
+
};
|
|
746
|
+
declare const DateRefComponent: react.ForwardRefExoticComponent<TDate & react.RefAttributes<unknown>>;
|
|
663
747
|
|
|
664
748
|
declare const DateTimeComponent: ({ dateTimeData }: {
|
|
665
749
|
dateTimeData: string;
|
|
@@ -721,6 +805,18 @@ declare const EmojiComponent: ({ $mode, evChange }: {
|
|
|
721
805
|
evChange: (emoji: string) => void;
|
|
722
806
|
}) => react_jsx_runtime.JSX.Element;
|
|
723
807
|
|
|
808
|
+
type TableMode = 'widersmall' | 'custom';
|
|
809
|
+
type TTable = HTMLAttributes<HTMLElement> & {
|
|
810
|
+
children: ReactNode[];
|
|
811
|
+
$mode: TableMode;
|
|
812
|
+
$name?: string;
|
|
813
|
+
$template?: string;
|
|
814
|
+
isForceUpdate?: boolean;
|
|
815
|
+
setForceUpdate?: TState<boolean>;
|
|
816
|
+
};
|
|
817
|
+
|
|
818
|
+
declare const TableComponent: (props: TTable) => react_jsx_runtime.JSX.Element;
|
|
819
|
+
|
|
724
820
|
declare const FormContainer: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<styled_components.FastOmit<styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, react.DetailedHTMLProps<react.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>>, never>, {
|
|
725
821
|
name?: string;
|
|
726
822
|
}>> & string;
|
|
@@ -1116,5 +1212,10 @@ declare const configDateRange: {
|
|
|
1116
1212
|
placeholder: string;
|
|
1117
1213
|
minDate: string;
|
|
1118
1214
|
};
|
|
1215
|
+
declare const configDateRangeAnt: {
|
|
1216
|
+
startDate: Moment;
|
|
1217
|
+
endDate: Moment;
|
|
1218
|
+
minDate: Moment;
|
|
1219
|
+
};
|
|
1119
1220
|
|
|
1120
|
-
export { APILabel, type BodyContentMode, type BodyContentStyle, BoxContainer, BreadcrumbContainer, BulkActionWrapper, BulkSelectContainer, ButtonComponent, ButtonGroup, ButtonLabel, CardContainer, CardWrapper, CheckboxComponent, CollapseContainer, ContentLoaderAccountsList, ContentLoaderActivityList, ContentLoaderAddition, ContentLoaderAnalyticsMenu, ContentLoaderCategoryList, ContentLoaderChatAccounts, ContentLoaderChatMessages, ContentLoaderChatProducts, ContentLoaderChatStores, ContentLoaderDashboardCard, ContentLoaderEditBundle, ContentLoaderFilterCategories, ContentLoaderFilters, ContentLoaderInvoiceListPaymentreceiveDetail, ContentLoaderMasterBundleDetail, ContentLoaderMasterDetail, ContentLoaderMasterList, ContentLoaderMasterListingDetail, ContentLoaderNonOrderList, ContentLoaderNotifUpdate, ContentLoaderOneLine, ContentLoaderOneLinePromotion, ContentLoaderOnlyBodyDashboardCard, ContentLoaderOnlyBodyTableList, ContentLoaderOnlyHeaderTableList, ContentLoaderOrderDetail, ContentLoaderOrderList, ContentLoaderPOSCategory, ContentLoaderPOSItem, ContentLoaderPOSStore, ContentLoaderPagination, ContentLoaderPopupBundle, ContentLoaderPopupChooseStore, ContentLoaderPopupLinkedListing, ContentLoaderPopupListOrder, ContentLoaderPopupPaymentReceive, ContentLoaderPopupPaymentReceived, ContentLoaderPopupPicklist, ContentLoaderPopupReadyToShip, ContentLoaderPopupStoreSelect, ContentLoaderPosProductDetail, ContentLoaderPromotionHover, ContentLoaderReportingDashboard, ContentLoaderSetting, ContentLoaderTableList, CreateContainer, CreateHeaderWrapper, CreateToolWrapper, DateComponent, DateTimeComponent, DateWrapper, DetailItem, DetailItemAction, DetailItemInfo, DetailItemTitle, DetailItemWrapper, DetailList, DetailPanelWrapper, DetailWrapper, DotIcon, DropDownAction, DropDownBody, DropDownComponent, DropDownContainer, DropDownControl, DropDownOverlayWrapper, DropDownSubTitle, DropDownTitle, DropDownWrapper, DropdownAction, DropdownControlWrapper, DropdownItem, DropdownList, DropdownPortalContainer, DropdownTitle, EmojiComponent, ErrorComponent, FigureWraper, FilterButton, FilterColumnContainer, FilterContainer, FilterItem, FilterList, FilterListTitle, FilterStoreContainer, FilterStoreList, FilterWrapper, FoContainer, FormContainer, HeaderContainer, IconComponent, IconDot, ImageChannelComponent, ImageComponent, InfoGroup, InitialContainer, InputComponent, InputGroup, InputOTPComponent, InputWithRefComponent as InputRefComponent, IsNumeric, ItemPriceLabel, ItemQtyLabel, ItemTable, type KeysToSnakeCase, LabelComponent, LeftPanelContainer, LinkComponent, LinkContainer, type LinkMode, ListAddItemContainer, ListComponent, ListContainer, ListTable, ListTableContainer, LoadingComponent, MasterTableActionWrapper, MenuList, MessageComponent, MessageQuestionComponent, type ModeListTableColumn, MultiPanelContainer, MuteLabel, NameLabel, NavChildItem, NavChildLine, NavContainer, NavContainerStyles, NavList, NavMainItem, NavMainItemWrapper, NavMobileHeaderWrapper, NavMobileOverlay, PageButton, PageDot, PageLabel, PageWrapper, PaginationContainer, PanelBody, PanelContainer, PanelWrapper, type PartialBy, PopupAddProductContainer, PopupBoxWrapper, PopupCard, PopupColumnGroup, PopupComponent, PopupDownloadWrapper, PopupExportCardWrapper, PopupItem, PopupItemLabel, PopupItemName, PopupList, PopupRowGroup, PopupTable, PopupTableBody, PopupTableHead, PopupTableItem, RadioComponent, ReactPortalComponent, RightPanelContainer, ScrollArrowContainer, SearchDropdownContainer, SearchFilterContainer, SearchFormWrapper, SearchResultItem, SearchResultList, SearchResultWrapper, SearchWrapper, SearchWrapperPopup, SelectComponent, SingleFormContainer, SortByWrapper, SwitchComponent, type TActionMeta, type TBlurEvent, type TCSSObject, type TCSSObjectWithLabel, type TChangeEvent, type TChannel, type TCloseDropdownFunction, type TControlPropsWithVariable, type TCustomStylesWithVariable, type TDetailNew, type TDragEvent, type TDropdown, type TEnterEvent, type TFile, type TFileImage, type TGroupBaseWithVariable, type THeadProps, type THierarchy, type TIdNum, type TIdStr, type TInData, type TInDetail, type TInDetailProps, type TInList, type TInListProps, type TInPart, type TInlistPart, type TInputEvent, type TKeyboadEvent, type TLoadOption, type TMessage, type TMessageFunction, type TMessageQuestion, type TMessageQuestionFunction, type TMoment, type TMouseEvent, type TNewFilterPartial, type TNewFunction, type TObjPage, type TObject, type TOnChangeValue, type TOnChangeValueFalse, type TOnChangeValueTrue, type TOption, type TOptionProps, type TOptionPropsWithVariable, type TPage, type TPageObj, type TPagination, type TPasteEvent, type TPopup, type TPopupContainer, type TPopupFunction, type TPopupFunctionGroup, type TPopupFunctionParam, type TPopupOpenFunction, type TSelectAsyncPaginate, type TSingleValueProps, type TState, type TStateCallback, type TUPage, type TUser, TableBundleColumn, TableColumnGroup, TableContentWrapper, TableHeadLabel, TableHeadWrapper, TableItemColumn, TableItemWrapper, TableLabel, TableRightGroup, TableRowGroup, TabsContainer, TabsContent, TabsHeader, TabsItem, TabsList, TabsWrapper, TextAreaComponent, TextAreaRefComponent, TextComponent, Title, TotalLabel, UpdateContainer, UploadComponent, UploadDragDropComponent, type WithRequired, abbreviateNumber, buttonActiveShadowStyle, buttonActiveStyle, buttonHoverStyle, buttonStyle, capitalize, channelMap, clearList, colorCommonQuantity, colorStatus, colorStockAdjust, colorStockInboundQuantity, colorStockInboundStatus, colorStockQuantity, colorStockStatus, commonCSSLists, configDateRange, currencyNumber, dateRangeStatus, debounce, dropBase, elipsis, errorMessage, errorTitle, evCheckAllValidation, evCheckAllValidationByHeader, evCheckAllValidationByHeaderWithVariant, evCloseDropdown, evExecuteError, evForceCloseDropdown, evGenerateValueMatch, evHighlight, evKeyMapperScanner, evRemoveActiveButton, evScrollTo, evSetTotal, evUpdateInputRc, formLabel, formatNumber, generateAddress, generateMessage, generateMessageQuestion, generateSUM, generateValue, generateValueTable, getSizeContainer, getStorage, headTable, historyType, humanise, isCustomVariantChannel, isDesktop, isMobile, isTablet, type modeTable, multiElipsis, pageMasterTable, pasteIntoInput, removeStorage, responseWidth, setStorage, statusColor, thirdElipsis, typePage, unCamelCaseKeys, unescapeHTML, validateByApproveJs };
|
|
1221
|
+
export { APILabel, type BodyContentMode, type BodyContentStyle, BoxContainer, BreadcrumbContainer, BulkActionWrapper, BulkSelectContainer, ButtonComponent, ButtonGroup, ButtonLabel, CardContainer, CardWrapper, CheckboxComponent, CollapseContainer, ContentLoaderAccountsList, ContentLoaderActivityList, ContentLoaderAddition, ContentLoaderAnalyticsMenu, ContentLoaderCategoryList, ContentLoaderChatAccounts, ContentLoaderChatMessages, ContentLoaderChatProducts, ContentLoaderChatStores, ContentLoaderDashboardCard, ContentLoaderEditBundle, ContentLoaderFilterCategories, ContentLoaderFilters, ContentLoaderInvoiceListPaymentreceiveDetail, ContentLoaderMasterBundleDetail, ContentLoaderMasterDetail, ContentLoaderMasterList, ContentLoaderMasterListingDetail, ContentLoaderNonOrderList, ContentLoaderNotifUpdate, ContentLoaderOneLine, ContentLoaderOneLinePromotion, ContentLoaderOnlyBodyDashboardCard, ContentLoaderOnlyBodyTableList, ContentLoaderOnlyHeaderTableList, ContentLoaderOrderDetail, ContentLoaderOrderList, ContentLoaderPOSCategory, ContentLoaderPOSItem, ContentLoaderPOSStore, ContentLoaderPagination, ContentLoaderPopupBundle, ContentLoaderPopupChooseStore, ContentLoaderPopupLinkedListing, ContentLoaderPopupListOrder, ContentLoaderPopupPaymentReceive, ContentLoaderPopupPaymentReceived, ContentLoaderPopupPicklist, ContentLoaderPopupReadyToShip, ContentLoaderPopupStoreSelect, ContentLoaderPosProductDetail, ContentLoaderPromotionHover, ContentLoaderReportingDashboard, ContentLoaderSetting, ContentLoaderTableList, CreateContainer, CreateHeaderWrapper, CreateToolWrapper, DateComponent, DateRangeComponent, DateRefComponent, DateTimeComponent, DateWrapper, DetailItem, DetailItemAction, DetailItemInfo, DetailItemTitle, DetailItemWrapper, DetailList, DetailPanelWrapper, DetailWrapper, DotIcon, DropDownAction, DropDownBody, DropDownComponent, DropDownContainer, DropDownControl, DropDownOverlayWrapper, DropDownSubTitle, DropDownTitle, DropDownWrapper, DropdownAction, DropdownControlWrapper, DropdownItem, DropdownList, DropdownPortalContainer, DropdownTitle, EmojiComponent, ErrorComponent, FigureWraper, FilterButton, FilterColumnContainer, FilterContainer, FilterItem, FilterList, FilterListTitle, FilterStoreContainer, FilterStoreList, FilterWrapper, FoContainer, FormContainer, HeaderContainer, IconComponent, IconDot, ImageChannelComponent, ImageComponent, InfoGroup, InitialContainer, InputComponent, InputGroup, InputOTPComponent, InputWithRefComponent as InputRefComponent, IsNumeric, ItemPriceLabel, ItemQtyLabel, ItemTable, type KeysToSnakeCase, LabelComponent, LeftPanelContainer, LinkComponent, LinkContainer, type LinkMode, ListAddItemContainer, ListComponent, ListContainer, ListTable, ListTableContainer, LoadingComponent, MasterTableActionWrapper, MenuList, MessageComponent, MessageQuestionComponent, type ModeListTableColumn, MultiPanelContainer, MuteLabel, NameLabel, NavChildItem, NavChildLine, NavContainer, NavContainerStyles, NavList, NavMainItem, NavMainItemWrapper, NavMobileHeaderWrapper, NavMobileOverlay, PageButton, PageDot, PageLabel, PageWrapper, PaginationContainer, PanelBody, PanelContainer, PanelWrapper, type PartialBy, PopupAddProductContainer, PopupBoxWrapper, PopupCard, PopupColumnGroup, PopupComponent, PopupDownloadWrapper, PopupExportCardWrapper, PopupItem, PopupItemLabel, PopupItemName, PopupList, PopupRowGroup, PopupTable, PopupTableBody, PopupTableHead, PopupTableItem, RadioComponent, ReactPortalComponent, RightPanelContainer, ScrollArrowContainer, SearchDropdownContainer, SearchFilterContainer, SearchFormWrapper, SearchResultItem, SearchResultList, SearchResultWrapper, SearchWrapper, SearchWrapperPopup, SelectAllComponent, SelectAsyncPaginateComponent, SelectComponent, SingleFormContainer, SortByWrapper, SwitchComponent, type TActionMeta, type TBlurEvent, type TCSSObject, type TCSSObjectWithLabel, type TChangeEvent, type TChannel, type TCloseDropdownFunction, type TControlPropsWithVariable, type TCustomStylesWithVariable, type TDetailNew, type TDragEvent, type TDropdown, type TEnterEvent, type TFile, type TFileImage, type TGroupBaseWithVariable, type THeadProps, type THierarchy, type TIdNum, type TIdStr, type TInData, type TInDetail, type TInDetailProps, type TInList, type TInListProps, type TInPart, type TInlistPart, type TInputEvent, type TKeyboadEvent, type TLoadOption, type TMessage, type TMessageFunction, type TMessageQuestion, type TMessageQuestionFunction, type TModerateDateAntFunction, type TMoment, type TMouseEvent, type TNewFilterPartial, type TNewFunction, type TObjPage, type TObject, type TOnChangeValue, type TOnChangeValueFalse, type TOnChangeValueTrue, type TOption, type TOptionProps, type TOptionPropsWithVariable, type TPage, type TPageObj, type TPagination, type TPasteEvent, type TPopup, type TPopupContainer, type TPopupFunction, type TPopupFunctionGroup, type TPopupFunctionParam, type TPopupOpenFunction, type TSelectAsyncPaginate, type TSingleValueProps, type TState, type TStateCallback, type TUPage, type TUser, TableBundleColumn, TableColumnGroup, TableComponent, TableContentWrapper, TableHeadLabel, TableHeadWrapper, TableItemColumn, TableItemWrapper, TableLabel, TableRightGroup, TableRowGroup, TabsContainer, TabsContent, TabsHeader, TabsItem, TabsList, TabsWrapper, TextAreaComponent, TextAreaRefComponent, TextComponent, Title, TotalLabel, UpdateContainer, UploadComponent, UploadDragDropComponent, type WithRequired, abbreviateNumber, buttonActiveShadowStyle, buttonActiveStyle, buttonHoverStyle, buttonStyle, capitalize, channelMap, clearList, colorCommonQuantity, colorStatus, colorStockAdjust, colorStockInboundQuantity, colorStockInboundStatus, colorStockQuantity, colorStockStatus, commonCSSLists, configDateRange, configDateRangeAnt, currencyNumber, dateRangeStatus, debounce, dropBase, elipsis, errorMessage, errorTitle, evCheckAllValidation, evCheckAllValidationByHeader, evCheckAllValidationByHeaderWithVariant, evCloseDropdown, evExecuteError, evForceCloseDropdown, evGenerateValueMatch, evHighlight, evKeyMapperScanner, evRemoveActiveButton, evScrollTo, evSetTotal, evUpdateInputRc, formLabel, formatNumber, generateAddress, generateMessage, generateMessageQuestion, generateSUM, generateValue, generateValueTable, getSizeContainer, getStorage, headTable, historyType, humanise, isCustomVariantChannel, isDesktop, isMobile, isTablet, type modeTable, multiElipsis, pageMasterTable, pasteIntoInput, removeStorage, responseWidth, setStorage, statusColor, thirdElipsis, typePage, unCamelCaseKeys, unescapeHTML, validateByApproveJs };
|