forstok-ui-lib 5.11.13 → 5.11.14

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as react from 'react';
3
- import { HTMLAttributes, ReactNode, AnchorHTMLAttributes, MouseEvent, Dispatch, SetStateAction, KeyboardEvent, FocusEvent, ChangeEvent, DragEvent, ClipboardEvent, InputHTMLAttributes, PropsWithChildren, ButtonHTMLAttributes, RefObject, ImgHTMLAttributes, JSX, TextareaHTMLAttributes } from 'react';
3
+ import { HTMLAttributes, ReactNode, AnchorHTMLAttributes, MouseEvent, Dispatch, SetStateAction, KeyboardEvent, FocusEvent, ChangeEvent, DragEvent, ClipboardEvent, InputHTMLAttributes, JSX, PropsWithChildren, ButtonHTMLAttributes, RefObject, ImgHTMLAttributes, TextareaHTMLAttributes } from 'react';
4
4
  import { OnChangeValue, ActionMeta, OptionProps, StylesConfig, CSSObjectWithLabel, ControlProps, GroupBase, SingleValueProps, MenuListProps } from 'react-select';
5
5
  export { components } from 'react-select';
6
6
  import { CSSObject } from '@emotion/serialize';
@@ -106,60 +106,6 @@ declare const InputWithRefComponent: react.ForwardRefExoticComponent<InputHTMLAt
106
106
  $isError?: boolean;
107
107
  } & react.RefAttributes<HTMLInputElement>>;
108
108
 
109
- type TInput$1 = InputHTMLAttributes<HTMLInputElement> & {
110
- evChange?: (e: ChangeEvent<HTMLInputElement>) => void;
111
- $flow?: string;
112
- extendKey?: string | null;
113
- extendClass?: string;
114
- reset?: boolean;
115
- setReset?: TState<boolean>;
116
- isForceUpdate?: boolean;
117
- setForceUpdate?: (value: boolean) => void | TState<boolean>;
118
- $isError?: boolean;
119
- $iconRight?: boolean;
120
- 'data-qa-id'?: string;
121
- };
122
- declare const CheckboxComponent: ({ id, name, children, $flow, extendKey, extendClass, reset, setReset, isForceUpdate, setForceUpdate, evChange, $isError, $iconRight, ...props }: PropsWithChildren<TInput$1>) => react_jsx_runtime.JSX.Element;
123
-
124
- type TButton = ButtonHTMLAttributes<HTMLButtonElement> & {
125
- children?: ReactNode;
126
- $mode?: string;
127
- $isIndicatorArrow?: boolean;
128
- isIndicatorArrowColor?: string;
129
- $isShown?: boolean;
130
- $isLoading?: boolean;
131
- refContainer?: RefObject<HTMLButtonElement>;
132
- $activated?: boolean;
133
- $size?: string;
134
- $iconLeft?: string;
135
- $shadow?: boolean;
136
- };
137
- declare const ButtonComponent: ({ children, $mode, $isIndicatorArrow, isIndicatorArrowColor, $isShown, $shadow, $isLoading, refContainer, $activated, $size, $iconLeft, ...props }: TButton) => react_jsx_runtime.JSX.Element;
138
-
139
- type TLabel = HTMLAttributes<HTMLSpanElement> & {
140
- children: ReactNode;
141
- $mode?: string;
142
- $position?: string;
143
- };
144
- declare const LabelComponent: ({ children, $mode, $position, ...props }: TLabel) => react_jsx_runtime.JSX.Element;
145
-
146
- type TIcon = HTMLAttributes<HTMLElement> & {
147
- $mode?: string;
148
- $isLoading?: boolean;
149
- $name: string;
150
- $width?: string | number;
151
- };
152
- declare const IconComponent: ({ $width, $name, $mode, onClick, $isLoading, ...props }: TIcon) => react_jsx_runtime.JSX.Element;
153
-
154
- type TLoading = HTMLAttributes<HTMLDivElement> & {
155
- $mode?: string;
156
- $shape?: string;
157
- $color?: string;
158
- $position?: string;
159
- $extendClass?: string;
160
- };
161
- declare const LoadingComponent: ({ $mode, $position, $shape, $color, $extendClass, ...props }: TLoading) => react_jsx_runtime.JSX.Element;
162
-
163
109
  type TDropdown = {
164
110
  children: ReactNode[];
165
111
  title?: string;
@@ -180,8 +126,6 @@ type TDropdown = {
180
126
  };
181
127
  type TCloseDropdownFunction = (currentTarget: EventTarget & HTMLElement) => void;
182
128
 
183
- declare const DropDownComponent: ({ children, title, subTitle, $externalWidth, $externalMinWidth, $internalWidth, $area, $openPosition, $placement, $top, onClick, $alias, type, portalId, $bottom, ...props }: TDropdown) => react_jsx_runtime.JSX.Element;
184
-
185
129
  type TMessage = {
186
130
  timer?: number;
187
131
  $type: string;
@@ -199,10 +143,6 @@ type TMessageQuestion = {
199
143
  type TMessageFunction = ({ timer, $type, message, callback }: TMessage) => void;
200
144
  type TMessageQuestionFunction = ({ $type, title, subtitle, callback, buttonSubmit }: TMessageQuestion) => void;
201
145
 
202
- declare const MessageComponent: ({ timer, $type, message, callback }: TMessage) => react_jsx_runtime.JSX.Element;
203
-
204
- declare const MessageQuestionComponent: ({ $type, title, subtitle, callback, buttonSubmit, cancelCallback }: TMessageQuestion) => react_jsx_runtime.JSX.Element;
205
-
206
146
  type TPopupOpenFunction = (e: MouseEvent, el?: string) => void;
207
147
  type TPopupFunctionParam = {
208
148
  mode?: string | null;
@@ -227,17 +167,6 @@ type TPopup = {
227
167
  type?: string;
228
168
  } & TPopupFunctionParam & TPopupFunctionGroup;
229
169
 
230
- type TPopupOtherProp = {
231
- children: ReactNode[];
232
- 'data-qa-id'?: string;
233
- };
234
- declare const PopupComponent: ({ children, body, mode, height, width, isOpen, evTooglePopup, ...props }: TPopup & TPopupOtherProp) => react_jsx_runtime.JSX.Element;
235
-
236
- type TImage = ImgHTMLAttributes<HTMLImageElement> & {
237
- $mode?: string;
238
- };
239
- declare const ImageComponent: ({ $mode, ...props }: TImage) => react_jsx_runtime.JSX.Element;
240
-
241
170
  type TAutoCopyObj = {
242
171
  category: string;
243
172
  copy: {
@@ -258,6 +187,84 @@ type TCustomField = {
258
187
  id: number;
259
188
  };
260
189
 
190
+ type TskuAddons = {
191
+ id?: number;
192
+ productId?: number;
193
+ masterProductId?: string;
194
+ imageUrl?: string;
195
+ sku?: string;
196
+ };
197
+ type TWarehouseAddons = {
198
+ id?: number;
199
+ newId?: string | null;
200
+ name?: string;
201
+ } | null;
202
+ type TOption = {
203
+ readonly value: any;
204
+ readonly label: string;
205
+ readonly name?: string;
206
+ readonly isFixed?: boolean;
207
+ readonly channel?: Omit<TChannel, 'stores'>;
208
+ postalCode?: string;
209
+ localId?: string;
210
+ isDisabled?: boolean | null;
211
+ option?: {
212
+ readonly value: any;
213
+ readonly label: string;
214
+ localId?: string;
215
+ }[];
216
+ store?: {
217
+ id: number;
218
+ name: string;
219
+ warehouseId?: Array<string | null> | null;
220
+ warehouseCount?: number | null;
221
+ imageUrl?: string | null;
222
+ warehouse?: TWarehouseAddons[] | null;
223
+ };
224
+ } & TskuAddons;
225
+ type TLoadOption = (search: string, callback: () => void, { endCursor }: {
226
+ endCursor: string;
227
+ }) => Promise<{
228
+ options: any;
229
+ hasMore: any;
230
+ additional?: {
231
+ endCursor: any;
232
+ };
233
+ } | {
234
+ options: never[];
235
+ hasMore: boolean;
236
+ additional?: undefined;
237
+ } | undefined>;
238
+ type TOnChangeValue = OnChangeValue<TOption, boolean>;
239
+ type TOnChangeValueFalse = OnChangeValue<TOption, false>;
240
+ type TOnChangeValueTrue = OnChangeValue<TOption, true>;
241
+ type TActionMeta = ActionMeta<TOption>;
242
+ type TSelectAsyncPaginate = {
243
+ customOption?: (arg0: OptionProps) => void;
244
+ MenuList?: any;
245
+ evChange?: (newValue: TOnChangeValue, actionMeta?: ActionMeta<TOption>) => void;
246
+ defaultValue?: TOnChangeValue;
247
+ loadOptionsOnMenuOpen?: boolean;
248
+ noOptionsMessage?: ((obj: {
249
+ inputValue: string;
250
+ }) => React.ReactNode);
251
+ isSearchable?: boolean;
252
+ isClearable?: boolean;
253
+ placeholder?: string;
254
+ isMenuOpen?: boolean;
255
+ setMenuIsOpen: TState<boolean | undefined>;
256
+ isForceUpdate: boolean;
257
+ setForceUpdate: TState<boolean>;
258
+ };
259
+ type TCustomStylesWithVariable = StylesConfig<TOption, boolean>;
260
+ type TCSSObject = CSSObject;
261
+ type TCSSObjectWithLabel = CSSObjectWithLabel;
262
+ type TControlPropsWithVariable = ControlProps<TOption, boolean>;
263
+ type TOptionPropsWithVariable = OptionProps<TOption, boolean>;
264
+ type TGroupBaseWithVariable = GroupBase<TOption>;
265
+ type TSingleValueProps = SingleValueProps;
266
+ type TOptionProps = OptionProps;
267
+
261
268
  type TUser = {
262
269
  profile_id: number;
263
270
  profile_name: string;
@@ -493,83 +500,82 @@ type Callback<S> = (state: S) => void | (() => void | undefined);
493
500
  type DispatchWithCallback<A, S> = (value: A, callback: Callback<S>) => void;
494
501
  type TStateCallback<TData> = DispatchWithCallback<React.SetStateAction<TData>, TData>;
495
502
 
496
- type TskuAddons = {
497
- id?: number;
498
- productId?: number;
499
- masterProductId?: string;
500
- imageUrl?: string;
501
- sku?: string;
503
+ declare const InputOTPComponent: ({ otpLength, value, onChange, ...props }: {
504
+ otpLength: number;
505
+ value: string;
506
+ onChange: TState<string>;
507
+ }) => react_jsx_runtime.JSX.Element;
508
+
509
+ type TInput$1 = InputHTMLAttributes<HTMLInputElement> & {
510
+ evChange?: (e: ChangeEvent<HTMLInputElement>) => void;
511
+ $flow?: string;
512
+ extendKey?: string | null;
513
+ extendClass?: string;
514
+ reset?: boolean;
515
+ setReset?: TState<boolean>;
516
+ isForceUpdate?: boolean;
517
+ setForceUpdate?: (value: boolean) => void | TState<boolean>;
518
+ $isError?: boolean;
519
+ $iconRight?: boolean;
520
+ 'data-qa-id'?: string;
502
521
  };
503
- type TWarehouseAddons = {
504
- id?: number;
505
- newId?: string | null;
506
- name?: string;
507
- } | null;
508
- type TOption = {
509
- readonly value: any;
510
- readonly label: string;
511
- readonly name?: string;
512
- readonly isFixed?: boolean;
513
- readonly channel?: Omit<TChannel, 'stores'>;
514
- postalCode?: string;
515
- localId?: string;
516
- isDisabled?: boolean | null;
517
- option?: {
518
- readonly value: any;
519
- readonly label: string;
520
- localId?: string;
521
- }[];
522
- store?: {
523
- id: number;
524
- name: string;
525
- warehouseId?: Array<string | null> | null;
526
- warehouseCount?: number | null;
527
- imageUrl?: string | null;
528
- warehouse?: TWarehouseAddons[] | null;
529
- };
530
- } & TskuAddons;
531
- type TLoadOption = (search: string, callback: () => void, { endCursor }: {
532
- endCursor: string;
533
- }) => Promise<{
534
- options: any;
535
- hasMore: any;
536
- additional?: {
537
- endCursor: any;
538
- };
539
- } | {
540
- options: never[];
541
- hasMore: boolean;
542
- additional?: undefined;
543
- } | undefined>;
544
- type TOnChangeValue = OnChangeValue<TOption, boolean>;
545
- type TOnChangeValueFalse = OnChangeValue<TOption, false>;
546
- type TOnChangeValueTrue = OnChangeValue<TOption, true>;
547
- type TActionMeta = ActionMeta<TOption>;
548
- type TSelectAsyncPaginate = {
549
- customOption?: (arg0: OptionProps) => void;
550
- MenuList?: any;
551
- evChange?: (newValue: TOnChangeValue, actionMeta?: ActionMeta<TOption>) => void;
552
- defaultValue?: TOnChangeValue;
553
- loadOptionsOnMenuOpen?: boolean;
554
- noOptionsMessage?: ((obj: {
555
- inputValue: string;
556
- }) => React.ReactNode);
557
- isSearchable?: boolean;
558
- isClearable?: boolean;
559
- placeholder?: string;
560
- isMenuOpen?: boolean;
561
- setMenuIsOpen: TState<boolean | undefined>;
562
- isForceUpdate: boolean;
563
- setForceUpdate: TState<boolean>;
522
+ declare const CheckboxComponent: ({ id, name, children, $flow, extendKey, extendClass, reset, setReset, isForceUpdate, setForceUpdate, evChange, $isError, $iconRight, ...props }: PropsWithChildren<TInput$1>) => react_jsx_runtime.JSX.Element;
523
+
524
+ type TButton = ButtonHTMLAttributes<HTMLButtonElement> & {
525
+ children?: ReactNode;
526
+ $mode?: string;
527
+ $isIndicatorArrow?: boolean;
528
+ isIndicatorArrowColor?: string;
529
+ $isShown?: boolean;
530
+ $isLoading?: boolean;
531
+ refContainer?: RefObject<HTMLButtonElement>;
532
+ $activated?: boolean;
533
+ $size?: string;
534
+ $iconLeft?: string;
535
+ $shadow?: boolean;
564
536
  };
565
- type TCustomStylesWithVariable = StylesConfig<TOption, boolean>;
566
- type TCSSObject = CSSObject;
567
- type TCSSObjectWithLabel = CSSObjectWithLabel;
568
- type TControlPropsWithVariable = ControlProps<TOption, boolean>;
569
- type TOptionPropsWithVariable = OptionProps<TOption, boolean>;
570
- type TGroupBaseWithVariable = GroupBase<TOption>;
571
- type TSingleValueProps = SingleValueProps;
572
- type TOptionProps = OptionProps;
537
+ declare const ButtonComponent: ({ children, $mode, $isIndicatorArrow, isIndicatorArrowColor, $isShown, $shadow, $isLoading, refContainer, $activated, $size, $iconLeft, ...props }: TButton) => react_jsx_runtime.JSX.Element;
538
+
539
+ type TLabel = HTMLAttributes<HTMLSpanElement> & {
540
+ children: ReactNode;
541
+ $mode?: string;
542
+ $position?: string;
543
+ };
544
+ declare const LabelComponent: ({ children, $mode, $position, ...props }: TLabel) => react_jsx_runtime.JSX.Element;
545
+
546
+ type TIcon = HTMLAttributes<HTMLElement> & {
547
+ $mode?: string;
548
+ $isLoading?: boolean;
549
+ $name: string;
550
+ $width?: string | number;
551
+ };
552
+ declare const IconComponent: ({ $width, $name, $mode, onClick, $isLoading, ...props }: TIcon) => react_jsx_runtime.JSX.Element;
553
+
554
+ type TLoading = HTMLAttributes<HTMLDivElement> & {
555
+ $mode?: string;
556
+ $shape?: string;
557
+ $color?: string;
558
+ $position?: string;
559
+ $extendClass?: string;
560
+ };
561
+ declare const LoadingComponent: ({ $mode, $position, $shape, $color, $extendClass, ...props }: TLoading) => react_jsx_runtime.JSX.Element;
562
+
563
+ declare const DropDownComponent: ({ children, title, subTitle, $externalWidth, $externalMinWidth, $internalWidth, $area, $openPosition, $placement, $top, onClick, $alias, type, portalId, $bottom, ...props }: TDropdown) => react_jsx_runtime.JSX.Element;
564
+
565
+ declare const MessageComponent: ({ timer, $type, message, callback }: TMessage) => react_jsx_runtime.JSX.Element;
566
+
567
+ declare const MessageQuestionComponent: ({ $type, title, subtitle, callback, buttonSubmit, cancelCallback }: TMessageQuestion) => react_jsx_runtime.JSX.Element;
568
+
569
+ type TPopupOtherProp = {
570
+ children: ReactNode[];
571
+ 'data-qa-id'?: string;
572
+ };
573
+ declare const PopupComponent: ({ children, body, mode, height, width, isOpen, evTooglePopup, ...props }: TPopup & TPopupOtherProp) => react_jsx_runtime.JSX.Element;
574
+
575
+ type TImage = ImgHTMLAttributes<HTMLImageElement> & {
576
+ $mode?: string;
577
+ };
578
+ declare const ImageComponent: ({ $mode, ...props }: TImage) => react_jsx_runtime.JSX.Element;
573
579
 
574
580
  type TSelect = {
575
581
  type?: string;
@@ -996,4 +1002,4 @@ declare const configDateRange: {
996
1002
  minDate: string;
997
1003
  };
998
1004
 
999
- export { BoxContainer, BreadcrumbContainer, BulkActionWrapper, 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, 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, DropDownComponent, DropdownAction, DropdownItem, DropdownList, DropdownTitle, ErrorComponent, FigureWraper, FilterButton, FilterContainer, FilterItem, FilterList, FilterListTitle, FilterWrapper, FoContainer, FormContainer, HeaderContainer, IconComponent, IconDot, ImageComponent, InfoGroup, InitialContainer, InputComponent, InputGroup, InputWithRefComponent as InputRefComponent, IsNumeric, ItemPriceLabel, ItemTable, type KeysToSnakeCase, LabelComponent, LeftPanelContainer, LinkComponent, LinkContainer, ListAddItemContainer, ListComponent, ListContainer, ListTable, ListTableContainer, LoadingComponent, MasterTableActionWrapper, MasterTableComponent, MenuList, MessageComponent, MessageQuestionComponent, MultiPanelContainer, MuteLabel, NameLabel, NavChildItem, NavList, NavMainItem, NavMainItemWrapper, NavMobileOverlay, PageButton, PageDot, PageLabel, PageWrapper, PaginationContainer, PanelBody, PanelContainer, PanelWrapper, type PartialBy, PopupAddProductContainer, PopupBoxWrapper, PopupCard, PopupComponent, PopupDownloadWrapper, PopupExportCardWrapper, RadioComponent, RightPanelContainer, SearchDropdownContainer, SearchFilterContainer, SearchFormWrapper, SearchResultItem, SearchResultList, SearchResultWrapper, SearchWrapper, SearchWrapperPopup, SelectComponent, SingleFormContainer, SortByWrapper, SwitchComponent, type TActionMeta, 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 TInList, type TInListProps, type TInPart, type TInlistPart, type TKeyboadEvent, type TLoadOption, type TMasterProps, type TMessage, type TMessageFunction, type TMessageQuestion, type TMessageQuestionFunction, 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 TTimeFilter, type TUser, TableColumnGroup, TableHeadLabel, TableHeadWrapper, TableItemColumn, TableItemWrapper, TableLabel, TableRightGroup, TableRowGroup, TabsContainer, TabsContent, TabsHeader, TabsItem, TabsList, TabsWrapper, TextAreaComponent, TextAreaWithRefComponent as TextAreaRefComponent, TextComponent, Title, TotalLabel, UploadComponent, UploadDragDropComponent, type WithRequired, abbreviateNumber, boxBase, capitalize, clearList, colorCommonQuantity, colorStockAdjust, colorStockInboundQuantity, colorStockInboundStatus, colorStockQuantity, colorStockStatus, configDateRange, currencyNumber, dateRangeDays, dateRangeStatus, debounce, dropBase, elipsis, errorMessage, errorTitle, evCheckAllValidation, evExecuteError, evGenerateValueMatch, evHighlight, evKeyMapperScanner, evScrollTo, evUpdateInputRc, formLabel, formatNumber, generateMessage, generateMessageQuestion, generateValue, generateValueTable, getSizeContainer, getStorage, headTable, historyType, multiElipsis, pageMasterTable, removeStorage, responseWidth, setStorage, statusColor, thirdElipsis, typePage, unCamelCaseKeys, unescapeHTML, validateByApproveJs };
1005
+ export { BoxContainer, BreadcrumbContainer, BulkActionWrapper, 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, 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, DropDownComponent, DropdownAction, DropdownItem, DropdownList, DropdownTitle, ErrorComponent, FigureWraper, FilterButton, FilterContainer, FilterItem, FilterList, FilterListTitle, FilterWrapper, FoContainer, FormContainer, HeaderContainer, IconComponent, IconDot, ImageComponent, InfoGroup, InitialContainer, InputComponent, InputGroup, InputOTPComponent, InputWithRefComponent as InputRefComponent, IsNumeric, ItemPriceLabel, ItemTable, type KeysToSnakeCase, LabelComponent, LeftPanelContainer, LinkComponent, LinkContainer, ListAddItemContainer, ListComponent, ListContainer, ListTable, ListTableContainer, LoadingComponent, MasterTableActionWrapper, MasterTableComponent, MenuList, MessageComponent, MessageQuestionComponent, MultiPanelContainer, MuteLabel, NameLabel, NavChildItem, NavList, NavMainItem, NavMainItemWrapper, NavMobileOverlay, PageButton, PageDot, PageLabel, PageWrapper, PaginationContainer, PanelBody, PanelContainer, PanelWrapper, type PartialBy, PopupAddProductContainer, PopupBoxWrapper, PopupCard, PopupComponent, PopupDownloadWrapper, PopupExportCardWrapper, RadioComponent, RightPanelContainer, SearchDropdownContainer, SearchFilterContainer, SearchFormWrapper, SearchResultItem, SearchResultList, SearchResultWrapper, SearchWrapper, SearchWrapperPopup, SelectComponent, SingleFormContainer, SortByWrapper, SwitchComponent, type TActionMeta, 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 TInList, type TInListProps, type TInPart, type TInlistPart, type TKeyboadEvent, type TLoadOption, type TMasterProps, type TMessage, type TMessageFunction, type TMessageQuestion, type TMessageQuestionFunction, 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 TTimeFilter, type TUser, TableColumnGroup, TableHeadLabel, TableHeadWrapper, TableItemColumn, TableItemWrapper, TableLabel, TableRightGroup, TableRowGroup, TabsContainer, TabsContent, TabsHeader, TabsItem, TabsList, TabsWrapper, TextAreaComponent, TextAreaWithRefComponent as TextAreaRefComponent, TextComponent, Title, TotalLabel, UploadComponent, UploadDragDropComponent, type WithRequired, abbreviateNumber, boxBase, capitalize, clearList, colorCommonQuantity, colorStockAdjust, colorStockInboundQuantity, colorStockInboundStatus, colorStockQuantity, colorStockStatus, configDateRange, currencyNumber, dateRangeDays, dateRangeStatus, debounce, dropBase, elipsis, errorMessage, errorTitle, evCheckAllValidation, evExecuteError, evGenerateValueMatch, evHighlight, evKeyMapperScanner, evScrollTo, evUpdateInputRc, formLabel, formatNumber, generateMessage, generateMessageQuestion, generateValue, generateValueTable, getSizeContainer, getStorage, headTable, historyType, multiElipsis, pageMasterTable, removeStorage, responseWidth, setStorage, statusColor, thirdElipsis, typePage, unCamelCaseKeys, unescapeHTML, validateByApproveJs };