forstok-ui-lib 5.11.12 → 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 +155 -148
- package/dist/index.js +302 -287
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +305 -290
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/index.ts +1 -0
- package/src/components/input/otp.tsx +62 -0
- package/src/components/input/styles.ts +16 -0
- package/src/typeds/base.typed.ts +2 -1
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, InputHTMLAttributes, PropsWithChildren, ButtonHTMLAttributes, RefObject, ImgHTMLAttributes,
|
|
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';
|
|
@@ -54,6 +54,7 @@ type TChangeEvent = (e: ChangeEvent) => void;
|
|
|
54
54
|
type TDragEvent = (e: DragEvent) => void;
|
|
55
55
|
type TEnterEvent = (e: KeyboardEvent<HTMLInputElement | HTMLElement> | FocusEvent<HTMLInputElement | HTMLElement | Element> | MouseEvent<HTMLElement>) => void;
|
|
56
56
|
type TKeyboadEvent = (e: KeyboardEvent<HTMLInputElement>) => void;
|
|
57
|
+
type TPasteEvent<T> = (e: ClipboardEvent<T>) => void;
|
|
57
58
|
type TPage = {
|
|
58
59
|
totalCount: number;
|
|
59
60
|
totalPageCount: number;
|
|
@@ -105,60 +106,6 @@ declare const InputWithRefComponent: react.ForwardRefExoticComponent<InputHTMLAt
|
|
|
105
106
|
$isError?: boolean;
|
|
106
107
|
} & react.RefAttributes<HTMLInputElement>>;
|
|
107
108
|
|
|
108
|
-
type TInput$1 = InputHTMLAttributes<HTMLInputElement> & {
|
|
109
|
-
evChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
110
|
-
$flow?: string;
|
|
111
|
-
extendKey?: string | null;
|
|
112
|
-
extendClass?: string;
|
|
113
|
-
reset?: boolean;
|
|
114
|
-
setReset?: TState<boolean>;
|
|
115
|
-
isForceUpdate?: boolean;
|
|
116
|
-
setForceUpdate?: (value: boolean) => void | TState<boolean>;
|
|
117
|
-
$isError?: boolean;
|
|
118
|
-
$iconRight?: boolean;
|
|
119
|
-
'data-qa-id'?: string;
|
|
120
|
-
};
|
|
121
|
-
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;
|
|
122
|
-
|
|
123
|
-
type TButton = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
124
|
-
children?: ReactNode;
|
|
125
|
-
$mode?: string;
|
|
126
|
-
$isIndicatorArrow?: boolean;
|
|
127
|
-
isIndicatorArrowColor?: string;
|
|
128
|
-
$isShown?: boolean;
|
|
129
|
-
$isLoading?: boolean;
|
|
130
|
-
refContainer?: RefObject<HTMLButtonElement>;
|
|
131
|
-
$activated?: boolean;
|
|
132
|
-
$size?: string;
|
|
133
|
-
$iconLeft?: string;
|
|
134
|
-
$shadow?: boolean;
|
|
135
|
-
};
|
|
136
|
-
declare const ButtonComponent: ({ children, $mode, $isIndicatorArrow, isIndicatorArrowColor, $isShown, $shadow, $isLoading, refContainer, $activated, $size, $iconLeft, ...props }: TButton) => react_jsx_runtime.JSX.Element;
|
|
137
|
-
|
|
138
|
-
type TLabel = HTMLAttributes<HTMLSpanElement> & {
|
|
139
|
-
children: ReactNode;
|
|
140
|
-
$mode?: string;
|
|
141
|
-
$position?: string;
|
|
142
|
-
};
|
|
143
|
-
declare const LabelComponent: ({ children, $mode, $position, ...props }: TLabel) => react_jsx_runtime.JSX.Element;
|
|
144
|
-
|
|
145
|
-
type TIcon = HTMLAttributes<HTMLElement> & {
|
|
146
|
-
$mode?: string;
|
|
147
|
-
$isLoading?: boolean;
|
|
148
|
-
$name: string;
|
|
149
|
-
$width?: string | number;
|
|
150
|
-
};
|
|
151
|
-
declare const IconComponent: ({ $width, $name, $mode, onClick, $isLoading, ...props }: TIcon) => react_jsx_runtime.JSX.Element;
|
|
152
|
-
|
|
153
|
-
type TLoading = HTMLAttributes<HTMLDivElement> & {
|
|
154
|
-
$mode?: string;
|
|
155
|
-
$shape?: string;
|
|
156
|
-
$color?: string;
|
|
157
|
-
$position?: string;
|
|
158
|
-
$extendClass?: string;
|
|
159
|
-
};
|
|
160
|
-
declare const LoadingComponent: ({ $mode, $position, $shape, $color, $extendClass, ...props }: TLoading) => react_jsx_runtime.JSX.Element;
|
|
161
|
-
|
|
162
109
|
type TDropdown = {
|
|
163
110
|
children: ReactNode[];
|
|
164
111
|
title?: string;
|
|
@@ -179,8 +126,6 @@ type TDropdown = {
|
|
|
179
126
|
};
|
|
180
127
|
type TCloseDropdownFunction = (currentTarget: EventTarget & HTMLElement) => void;
|
|
181
128
|
|
|
182
|
-
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;
|
|
183
|
-
|
|
184
129
|
type TMessage = {
|
|
185
130
|
timer?: number;
|
|
186
131
|
$type: string;
|
|
@@ -198,10 +143,6 @@ type TMessageQuestion = {
|
|
|
198
143
|
type TMessageFunction = ({ timer, $type, message, callback }: TMessage) => void;
|
|
199
144
|
type TMessageQuestionFunction = ({ $type, title, subtitle, callback, buttonSubmit }: TMessageQuestion) => void;
|
|
200
145
|
|
|
201
|
-
declare const MessageComponent: ({ timer, $type, message, callback }: TMessage) => react_jsx_runtime.JSX.Element;
|
|
202
|
-
|
|
203
|
-
declare const MessageQuestionComponent: ({ $type, title, subtitle, callback, buttonSubmit, cancelCallback }: TMessageQuestion) => react_jsx_runtime.JSX.Element;
|
|
204
|
-
|
|
205
146
|
type TPopupOpenFunction = (e: MouseEvent, el?: string) => void;
|
|
206
147
|
type TPopupFunctionParam = {
|
|
207
148
|
mode?: string | null;
|
|
@@ -226,17 +167,6 @@ type TPopup = {
|
|
|
226
167
|
type?: string;
|
|
227
168
|
} & TPopupFunctionParam & TPopupFunctionGroup;
|
|
228
169
|
|
|
229
|
-
type TPopupOtherProp = {
|
|
230
|
-
children: ReactNode[];
|
|
231
|
-
'data-qa-id'?: string;
|
|
232
|
-
};
|
|
233
|
-
declare const PopupComponent: ({ children, body, mode, height, width, isOpen, evTooglePopup, ...props }: TPopup & TPopupOtherProp) => react_jsx_runtime.JSX.Element;
|
|
234
|
-
|
|
235
|
-
type TImage = ImgHTMLAttributes<HTMLImageElement> & {
|
|
236
|
-
$mode?: string;
|
|
237
|
-
};
|
|
238
|
-
declare const ImageComponent: ({ $mode, ...props }: TImage) => react_jsx_runtime.JSX.Element;
|
|
239
|
-
|
|
240
170
|
type TAutoCopyObj = {
|
|
241
171
|
category: string;
|
|
242
172
|
copy: {
|
|
@@ -257,6 +187,84 @@ type TCustomField = {
|
|
|
257
187
|
id: number;
|
|
258
188
|
};
|
|
259
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
|
+
|
|
260
268
|
type TUser = {
|
|
261
269
|
profile_id: number;
|
|
262
270
|
profile_name: string;
|
|
@@ -492,83 +500,82 @@ type Callback<S> = (state: S) => void | (() => void | undefined);
|
|
|
492
500
|
type DispatchWithCallback<A, S> = (value: A, callback: Callback<S>) => void;
|
|
493
501
|
type TStateCallback<TData> = DispatchWithCallback<React.SetStateAction<TData>, TData>;
|
|
494
502
|
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
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;
|
|
501
521
|
};
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
option?: {
|
|
517
|
-
readonly value: any;
|
|
518
|
-
readonly label: string;
|
|
519
|
-
localId?: string;
|
|
520
|
-
}[];
|
|
521
|
-
store?: {
|
|
522
|
-
id: number;
|
|
523
|
-
name: string;
|
|
524
|
-
warehouseId?: Array<string | null> | null;
|
|
525
|
-
warehouseCount?: number | null;
|
|
526
|
-
imageUrl?: string | null;
|
|
527
|
-
warehouse?: TWarehouseAddons[] | null;
|
|
528
|
-
};
|
|
529
|
-
} & TskuAddons;
|
|
530
|
-
type TLoadOption = (search: string, callback: () => void, { endCursor }: {
|
|
531
|
-
endCursor: string;
|
|
532
|
-
}) => Promise<{
|
|
533
|
-
options: any;
|
|
534
|
-
hasMore: any;
|
|
535
|
-
additional?: {
|
|
536
|
-
endCursor: any;
|
|
537
|
-
};
|
|
538
|
-
} | {
|
|
539
|
-
options: never[];
|
|
540
|
-
hasMore: boolean;
|
|
541
|
-
additional?: undefined;
|
|
542
|
-
} | undefined>;
|
|
543
|
-
type TOnChangeValue = OnChangeValue<TOption, boolean>;
|
|
544
|
-
type TOnChangeValueFalse = OnChangeValue<TOption, false>;
|
|
545
|
-
type TOnChangeValueTrue = OnChangeValue<TOption, true>;
|
|
546
|
-
type TActionMeta = ActionMeta<TOption>;
|
|
547
|
-
type TSelectAsyncPaginate = {
|
|
548
|
-
customOption?: (arg0: OptionProps) => void;
|
|
549
|
-
MenuList?: any;
|
|
550
|
-
evChange?: (newValue: TOnChangeValue, actionMeta?: ActionMeta<TOption>) => void;
|
|
551
|
-
defaultValue?: TOnChangeValue;
|
|
552
|
-
loadOptionsOnMenuOpen?: boolean;
|
|
553
|
-
noOptionsMessage?: ((obj: {
|
|
554
|
-
inputValue: string;
|
|
555
|
-
}) => React.ReactNode);
|
|
556
|
-
isSearchable?: boolean;
|
|
557
|
-
isClearable?: boolean;
|
|
558
|
-
placeholder?: string;
|
|
559
|
-
isMenuOpen?: boolean;
|
|
560
|
-
setMenuIsOpen: TState<boolean | undefined>;
|
|
561
|
-
isForceUpdate: boolean;
|
|
562
|
-
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;
|
|
563
536
|
};
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
type
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
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;
|
|
572
579
|
|
|
573
580
|
type TSelect = {
|
|
574
581
|
type?: string;
|
|
@@ -995,4 +1002,4 @@ declare const configDateRange: {
|
|
|
995
1002
|
minDate: string;
|
|
996
1003
|
};
|
|
997
1004
|
|
|
998
|
-
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 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 };
|