ados-rcm 1.1.227 → 1.1.228
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AModule/AComponents/AFileBox/AFileBox.d.ts +0 -6
- package/dist/AModule/AComponents/AIcon/AIcon.d.ts +3 -2
- package/dist/AModule/AUtils/strF.d.ts +25 -1
- package/dist/index.cjs.js +28 -28
- package/dist/index.d.ts +0 -1
- package/dist/index.es.js +5320 -5381
- package/package.json +1 -1
- package/dist/AModule/AComponents/AChip/AChip.d.ts +0 -82
@@ -47,12 +47,6 @@ export interface IAFileBoxProps extends IABaseProps {
|
|
47
47
|
* Description : callback function when file format is invalid (not in accept list)
|
48
48
|
*/
|
49
49
|
onInvalidFileFormat?: () => void;
|
50
|
-
/**
|
51
|
-
* fileSelectButtonClassName? : string
|
52
|
-
*
|
53
|
-
* Description : className of file select button
|
54
|
-
*/
|
55
|
-
fileSelectButtonClassName?: string;
|
56
50
|
}
|
57
51
|
/**
|
58
52
|
* AComponent : AFileBox
|
@@ -64,7 +64,7 @@ declare const Icons: Readonly<{
|
|
64
64
|
FileDownload: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
65
65
|
File: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
66
66
|
UnPlug: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
67
|
-
|
67
|
+
CloudSync: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
68
68
|
CalendarDay: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
69
69
|
DateRange: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
70
70
|
PlayArrow: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
@@ -112,7 +112,8 @@ declare const Icons: Readonly<{
|
|
112
112
|
Delete: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
113
113
|
Save: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
114
114
|
Remove: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
115
|
+
Sync: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
115
116
|
}>;
|
116
|
-
export declare const AIcons: ("ArrowDown" | "ArrowUp" | "Chat" | "Check.Checked" | "Check.Indeterminate" | "Check.UnChecked" | "CircledCheck" | "ClipBoard" | "Close" | "Document" | "Menu" | "Person" | "Reset" | "Search" | "Send" | "Spinner" | "Stop" | "TriangleAlert" | "Sun" | "Moon" | "CCTV" | "Convert" | "KeyboardArrowUp" | "KeyboardArrowDown" | "Alert" | "SortUp" | "SortDown" | "SortBoth" | "Favorite" | "FavoriteDisabled" | "Main" | "Frame" | "FileDownload" | "File" | "UnPlug" | "
|
117
|
+
export declare const AIcons: ("ArrowDown" | "ArrowUp" | "Chat" | "Check.Checked" | "Check.Indeterminate" | "Check.UnChecked" | "CircledCheck" | "ClipBoard" | "Close" | "Document" | "Menu" | "Person" | "Reset" | "Search" | "Send" | "Spinner" | "Stop" | "TriangleAlert" | "Sun" | "Moon" | "CCTV" | "Convert" | "KeyboardArrowUp" | "KeyboardArrowDown" | "Alert" | "SortUp" | "SortDown" | "SortBoth" | "Favorite" | "FavoriteDisabled" | "Main" | "Frame" | "FileDownload" | "File" | "UnPlug" | "CloudSync" | "CalendarDay" | "DateRange" | "PlayArrow" | "Mail" | "Download" | "Folder" | "FolderPost" | "FolderOpen" | "FolderCopy" | "FolderAdd" | "FolderMove" | "FirstPage" | "LastPage" | "NavigateBefore" | "NavigateNext" | "ListAdd" | "ListRemove" | "Cancel" | "Clear" | "Article" | "Info" | "Type" | "PersonAdd" | "CheckNormal" | "Create" | "PersonRemove" | "Refresh" | "Undo" | "Gear" | "TriangleUp" | "TriangleDown" | "HelpCircle" | "Cow" | "AlertCircle" | "Email" | "Manager" | "Equalizer" | "ABC" | "Auth" | "AuthAdd" | "Switch" | "Add" | "Edit" | "EditOff" | "Delete" | "Save" | "Remove" | "Sync")[];
|
117
118
|
export type TAIcons = (typeof AIcons)[number];
|
118
119
|
export {};
|
@@ -1,6 +1,30 @@
|
|
1
|
+
export declare const alphanumericRegex: RegExp;
|
2
|
+
export declare const emailRegex: RegExp;
|
3
|
+
export declare const emailIdRegex: RegExp;
|
4
|
+
export declare const hexRegex: RegExp;
|
5
|
+
export declare const hangulRegex: RegExp;
|
6
|
+
export declare const noSpaceRegex: RegExp;
|
7
|
+
export declare const noHanguljamoRegex: RegExp;
|
8
|
+
export declare const specialCharRegex: RegExp;
|
9
|
+
export declare const passwordRegex: RegExp;
|
10
|
+
export declare const uuidRegex: RegExp;
|
1
11
|
/**
|
2
12
|
* strF : string functions
|
3
13
|
*/
|
4
14
|
export declare const strF: {
|
5
|
-
|
15
|
+
secondToTime: (seconds: number) => string;
|
16
|
+
validate: {
|
17
|
+
hasKr: (str: string) => boolean;
|
18
|
+
hasMalKr: (str: string) => boolean;
|
19
|
+
hasBlank: (str: string) => boolean;
|
20
|
+
isBlank: (str: string) => boolean;
|
21
|
+
isUuid: (str: string) => boolean;
|
22
|
+
isEmail: (str: string) => boolean;
|
23
|
+
isAlphabet: (str: string) => boolean;
|
24
|
+
isAlphaNumeric: (str: string) => boolean;
|
25
|
+
isKr: (str: string) => boolean;
|
26
|
+
isKrNumeric: (str: string) => boolean;
|
27
|
+
isNumeric: (str: string) => boolean;
|
28
|
+
isLenMinMax: (min?: number, max?: number) => (str: string) => boolean;
|
29
|
+
};
|
6
30
|
};
|