@antscorp/antsomi-ui 1.3.6-beta.3 → 1.3.6-beta.30
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/es/components/atoms/Input/Input.d.ts +11 -17
- package/es/components/atoms/Input/Input.js +7 -11
- package/es/components/atoms/Switch/Switch.js +2 -1
- package/es/components/icons/LazyIcon/LazyIcon.d.ts +2 -0
- package/es/components/icons/LazyIcon/LazyIcon.js +2 -0
- package/es/components/icons/TaskAltIcon.d.ts +3 -0
- package/es/components/icons/TaskAltIcon.js +7 -0
- package/es/components/icons/UnsubscribeIcon.d.ts +3 -0
- package/es/components/icons/UnsubscribeIcon.js +7 -0
- package/es/components/icons/index.d.ts +2 -0
- package/es/components/icons/index.js +2 -0
- package/es/components/molecules/AddDynamicContent/components/DisplayFormat/DisplayFormat.d.ts +1 -0
- package/es/components/molecules/CodeStructure/CodeStructure.d.ts +23 -2
- package/es/components/molecules/CodeStructure/CodeStructure.js +136 -26
- package/es/components/molecules/CodeStructure/constants.js +2 -2
- package/es/components/molecules/CodeStructure/styled.d.ts +3 -0
- package/es/components/molecules/CodeStructure/styled.js +6 -0
- package/es/components/molecules/CodeStructure/type.d.ts +2 -2
- package/es/components/molecules/CodeStructure/type.js +2 -2
- package/es/components/molecules/CodeStructure/utils.d.ts +12 -2
- package/es/components/molecules/CodeStructure/utils.js +5 -3
- package/es/components/molecules/DrawerDetail/DrawerDetail.js +10 -5
- package/es/components/molecules/DrawerDetail/types.d.ts +1 -0
- package/es/components/molecules/Dropdown/style.scss +6 -4
- package/es/components/molecules/EditingListV2/EditingList.d.ts +2 -0
- package/es/components/molecules/EditingListV2/EditingList.js +17 -0
- package/es/components/molecules/EditingListV2/components/List/List.d.ts +9 -0
- package/es/components/molecules/EditingListV2/components/List/List.js +42 -0
- package/es/components/molecules/EditingListV2/components/List/index.d.ts +1 -0
- package/es/components/molecules/EditingListV2/components/List/index.js +1 -0
- package/es/components/molecules/EditingListV2/components/Loadable.d.ts +8 -0
- package/es/components/molecules/EditingListV2/components/Loadable.js +2 -0
- package/es/components/molecules/EditingListV2/components/Popover/Popover.d.ts +11 -0
- package/es/components/molecules/EditingListV2/components/Popover/Popover.js +10 -0
- package/es/components/molecules/EditingListV2/components/Popover/index.d.ts +1 -0
- package/es/components/molecules/EditingListV2/components/Popover/index.js +1 -0
- package/es/components/molecules/EditingListV2/components/index.d.ts +3 -0
- package/es/components/molecules/EditingListV2/components/index.js +3 -0
- package/es/components/molecules/EditingListV2/index.d.ts +2 -0
- package/es/components/molecules/EditingListV2/index.js +1 -0
- package/es/components/molecules/EditingListV2/types.d.ts +19 -0
- package/es/components/molecules/EditingListV2/types.js +1 -0
- package/es/components/molecules/EditingListV2/utils.d.ts +27 -0
- package/es/components/molecules/EditingListV2/utils.js +28 -0
- package/es/components/molecules/InputSelectAttribute/index.js +5 -2
- package/es/components/molecules/SearchPopover/components/PopoverAddField/PopoverAddField.js +2 -2
- package/es/components/molecules/SearchPopover/components/PopoverSelect/PopoverSelect.js +4 -4
- package/es/components/molecules/SearchPopover/types.d.ts +1 -0
- package/es/components/molecules/TagifyInput/TagifyInput.js +5 -3
- package/es/components/molecules/index.d.ts +1 -0
- package/es/components/molecules/index.js +1 -0
- package/es/components/organism/TicketEditorV2/Content.d.ts +27 -0
- package/es/components/organism/TicketEditorV2/Content.js +296 -0
- package/es/components/organism/TicketEditorV2/Service.d.ts +49 -0
- package/es/components/organism/TicketEditorV2/Service.js +58 -0
- package/es/components/organism/TicketEditorV2/TicketEditorV2.d.ts +20 -0
- package/es/components/organism/TicketEditorV2/TicketEditorV2.js +124 -0
- package/es/components/organism/TicketEditorV2/components/DropdownComponent.d.ts +9 -0
- package/es/components/organism/TicketEditorV2/components/DropdownComponent.js +45 -0
- package/es/components/organism/TicketEditorV2/components/Message.d.ts +2 -0
- package/es/components/organism/TicketEditorV2/components/Message.js +31 -0
- package/es/components/organism/TicketEditorV2/components/MessageComponent.d.ts +10 -0
- package/es/components/organism/TicketEditorV2/components/MessageComponent.js +64 -0
- package/es/components/organism/TicketEditorV2/components/icons/AddTicketIcon.d.ts +2 -0
- package/es/components/organism/TicketEditorV2/components/icons/AddTicketIcon.js +5 -0
- package/es/components/organism/TicketEditorV2/components/icons/TicketIcon.d.ts +2 -0
- package/es/components/organism/TicketEditorV2/components/icons/TicketIcon.js +5 -0
- package/es/components/organism/TicketEditorV2/constant.d.ts +17 -0
- package/es/components/organism/TicketEditorV2/constant.js +17 -0
- package/es/components/organism/TicketEditorV2/constants/index.d.ts +1 -0
- package/es/components/organism/TicketEditorV2/constants/index.js +1 -0
- package/es/components/organism/TicketEditorV2/constants/queryKeys.d.ts +5 -0
- package/es/components/organism/TicketEditorV2/constants/queryKeys.js +5 -0
- package/es/components/organism/TicketEditorV2/index.d.ts +1 -0
- package/es/components/organism/TicketEditorV2/index.js +1 -0
- package/es/components/organism/TicketEditorV2/queries/index.d.ts +3 -0
- package/es/components/organism/TicketEditorV2/queries/index.js +3 -0
- package/es/components/organism/TicketEditorV2/queries/useGetDetailTicket.d.ts +12 -0
- package/es/components/organism/TicketEditorV2/queries/useGetDetailTicket.js +14 -0
- package/es/components/organism/TicketEditorV2/queries/useGetListComments.d.ts +13 -0
- package/es/components/organism/TicketEditorV2/queries/useGetListComments.js +18 -0
- package/es/components/organism/TicketEditorV2/queries/useGetListUser.d.ts +11 -0
- package/es/components/organism/TicketEditorV2/queries/useGetListUser.js +14 -0
- package/es/components/organism/TicketEditorV2/styled.d.ts +54 -0
- package/es/components/organism/TicketEditorV2/styled.js +871 -0
- package/es/components/organism/TicketEditorV2/util.d.ts +46 -0
- package/es/components/organism/TicketEditorV2/util.js +408 -0
- package/es/components/organism/index.d.ts +1 -0
- package/es/components/organism/index.js +1 -0
- package/es/components/template/TemplateListing/Loadable.d.ts +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useEffect, useMemo, useRef, useState } from 'react';
|
|
3
|
+
import { WrapperAvatar, WrapperContentAvatar, WrapperLinkItemFiles, WrapperModalHeaderImg, WrapperModalImg, } from '../styled';
|
|
4
|
+
import { Icon, Spin, Tooltip } from '@antscorp/antsomi-ui/es/components';
|
|
5
|
+
import { convertDateToTimestamp } from '../util';
|
|
6
|
+
const IMAGE_EXTENDS = ['.png', '.jpg', '.jpeg'];
|
|
7
|
+
const MessageComponent = ({ toUser, fromUser, followers, attachments, message, date, timeZone, }) => {
|
|
8
|
+
const [isExpand, setIsExpand] = useState(false);
|
|
9
|
+
const refMesage = useRef(null);
|
|
10
|
+
const [modalImg, setModalImg] = useState({
|
|
11
|
+
isOpen: false,
|
|
12
|
+
src: '',
|
|
13
|
+
});
|
|
14
|
+
useEffect(() => {
|
|
15
|
+
if (refMesage.current) {
|
|
16
|
+
refMesage.current.querySelectorAll('img')?.forEach(img => {
|
|
17
|
+
img.style.cursor = 'pointer';
|
|
18
|
+
img.addEventListener('click', () => {
|
|
19
|
+
setModalImg({
|
|
20
|
+
...modalImg,
|
|
21
|
+
isOpen: true,
|
|
22
|
+
src: img?.src,
|
|
23
|
+
});
|
|
24
|
+
});
|
|
25
|
+
});
|
|
26
|
+
refMesage.current.querySelectorAll('a')?.forEach(a => {
|
|
27
|
+
const isOpenNewTab = a.attributes?.rel?.value?.includes('noopener noreferrer');
|
|
28
|
+
if (isOpenNewTab) {
|
|
29
|
+
a.setAttribute('target', '_blank');
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
}, [refMesage.current]);
|
|
34
|
+
const isImageUrl = url => IMAGE_EXTENDS.some(tail => url && url.toLowerCase().endsWith(tail));
|
|
35
|
+
const [images, files] = useMemo(() => {
|
|
36
|
+
const arrImgs = [];
|
|
37
|
+
const arrFiles = [];
|
|
38
|
+
attachments.forEach(file => {
|
|
39
|
+
if (isImageUrl(file?.content_url)) {
|
|
40
|
+
arrImgs.push(file);
|
|
41
|
+
}
|
|
42
|
+
else {
|
|
43
|
+
arrFiles.push(file);
|
|
44
|
+
}
|
|
45
|
+
});
|
|
46
|
+
return [arrImgs, arrFiles];
|
|
47
|
+
}, [attachments]);
|
|
48
|
+
const renderImage = file => (_jsx("div", { className: "image-item", children: _jsx("img", { src: file?.content_url, alt: "attachment" }) }, file?.content_url));
|
|
49
|
+
return (_jsxs(WrapperContentAvatar, { children: [_jsxs("div", { className: "comment-header", children: [_jsxs(WrapperAvatar, { children: [_jsx("img", { className: "avatar", alt: "avatar", src: fromUser?.photo }), _jsxs("div", { className: "user-info", children: [_jsx("span", { className: "user-info__name", children: fromUser?.name }), _jsxs("div", { className: "user-info__desc", children: [_jsxs("div", { className: "user-info__to-user", children: [_jsxs("span", { children: ["To: ", toUser?.name] }), !isExpand && (_jsx(Icon, { className: "user-info__expand-icon", type: "icon-ants-caret-down1", onClick: () => setIsExpand(true) }))] }), isExpand ? (_jsxs("div", { className: "user-info__followers", children: [_jsx("div", { className: "user-info__followers__name", children: _jsxs("span", { className: "user-info__to-user", children: ["Follower(s):", ` `, followers?.map(follower => follower?.name).join(', ')] }) }), _jsx(Icon, { className: "user-info__expand-icon open", type: "icon-ants-caret-down1", onClick: () => setIsExpand(false) })] })) : null] })] })] }), _jsx("div", { className: "comment-time", children: convertDateToTimestamp(date, timeZone) })] }), _jsxs("div", { className: "comment-content", children: [_jsx("div", { dangerouslySetInnerHTML: { __html: message }, ref: refMesage }), _jsxs(WrapperLinkItemFiles, { className: "no-border", children: [images.map(renderImage), files?.map(file => (_jsxs("div", { className: "file-item rounded", children: [_jsxs("div", { className: "file-name-group", children: [_jsx(Icon, { className: "file-icon", type: "icon-ants-attachment" }), _jsx(Tooltip, { title: file?.file_name, children: _jsx("span", { className: "file-name", children: file?.file_name }) })] }), _jsx("a", { href: file?.content_url, download: true, children: _jsx(Icon, { className: "download-btn", type: "icon-ants-file-download" }) })] }, file?.content_url)))] })] }), _jsx(WrapperModalImg, { open: modalImg.isOpen, className: "image-modal", onClose: () => setModalImg({ ...modalImg, isOpen: false }), children: _jsxs("div", { className: "modal-img-content", children: [_jsx(Spin, { spinning: !modalImg?.src, children: _jsx(WrapperModalHeaderImg, { style: { cursor: 'pointer' }, onClick: () => setModalImg({ ...modalImg, isOpen: false }), children: _jsx(Icon, { type: "close", style: {
|
|
50
|
+
height: '20px',
|
|
51
|
+
width: '20px',
|
|
52
|
+
color: '#005eb8',
|
|
53
|
+
background: '#fff',
|
|
54
|
+
fontSize: '20px',
|
|
55
|
+
} }) }) }), _jsx("div", { style: {
|
|
56
|
+
display: 'flex',
|
|
57
|
+
alignItems: 'flex-start',
|
|
58
|
+
justifyContent: 'center',
|
|
59
|
+
width: '100%',
|
|
60
|
+
height: 'calc(100% - 20px)',
|
|
61
|
+
overflow: 'auto',
|
|
62
|
+
}, children: _jsx("img", { src: modalImg?.src, style: { width: '100%', objectFit: 'cover' }, alt: "modal" }) })] }) })] }));
|
|
63
|
+
};
|
|
64
|
+
export default MessageComponent;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
function AddTicketIcon(props) {
|
|
3
|
+
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "12", height: "12", viewBox: "0 0 12 12", ...props, children: _jsxs("g", { id: "CTA_Button", "data-name": "CTA Button", transform: "translate(-1 -3.063)", children: [_jsx("rect", { id: "Rounded_Rectangle_7_copy", "data-name": "Rounded Rectangle 7 copy", width: "12", height: "12", rx: "6", transform: "translate(1 3.063)", fill: "#1f5fac" }), _jsx("path", { id: "Union_141", "data-name": "Union 141", d: "M-1352,252.062v-2h-2a1,1,0,0,1-1-1,1,1,0,0,1,1-1h2v-2a1,1,0,0,1,1-1,1,1,0,0,1,1,1v2h2a1,1,0,0,1,1,1,1,1,0,0,1-1,1h-2v2a1,1,0,0,1-1,1A1,1,0,0,1-1352,252.062Z", transform: "translate(1358 -240)", fill: "#fff" })] }) }));
|
|
4
|
+
}
|
|
5
|
+
export default AddTicketIcon;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
function TicketIcon(props) {
|
|
3
|
+
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "19.996", height: "16.001", viewBox: "0 0 19.996 16.001", ...props, children: _jsx("path", { id: "Subtraction_26", "data-name": "Subtraction 26", d: "M20466,11869h-16a2,2,0,0,1-2-2v-3.052a2.566,2.566,0,0,0,.5.047,2.5,2.5,0,1,0,0-5,2.675,2.675,0,0,0-.5.051V11855a2,2,0,0,1,2-2h16a2,2,0,0,1,2,2v12A2,2,0,0,1,20466,11869Zm-12-3h0v2h1v-2Zm7-1.5a1.165,1.165,0,0,0-1.178,1.177,1.094,1.094,0,0,0,.344.807,1.14,1.14,0,0,0,.834.339,1.154,1.154,0,0,0,.836-.339,1.119,1.119,0,0,0,.34-.807,1.159,1.159,0,0,0-1.176-1.177Zm-7-2.5h0v2h1v-2Zm7-4.664a1.663,1.663,0,0,1,.918.221,1.148,1.148,0,0,1,.479.576,1.664,1.664,0,0,1,.107.709,1.343,1.343,0,0,1-.221.657,4.689,4.689,0,0,1-.6.652l-.238.221-.092.084-.1.091c-.08.072-.16.146-.24.221a2.629,2.629,0,0,0-.559.725,2.024,2.024,0,0,0-.277,1v.833h1.7v-.093c0-.234,0-.42.012-.565a1.8,1.8,0,0,1,.055-.38.7.7,0,0,1,.125-.246,2.516,2.516,0,0,1,.461-.617l.006,0c.172-.162.377-.356.6-.57a4.367,4.367,0,0,0,.658-.832,2.114,2.114,0,0,0,.385-1,3,3,0,0,0-.072-1.027,3.647,3.647,0,0,0-.312-.848,2.951,2.951,0,0,0-1.064-.986,3.435,3.435,0,0,0-1.725-.411,3.312,3.312,0,0,0-1.465.318,3.121,3.121,0,0,0-1.078.848,3.244,3.244,0,0,0-.627,1.135l1.5.652a3.392,3.392,0,0,1,.3-.642,1.518,1.518,0,0,1,.533-.519A1.558,1.558,0,0,1,20461,11857.333Zm-7,.663h0v2h1v-2Zm0-4h0v2h1v-2Z", transform: "translate(-20448.002 -11852.998)", fill: "#666" }) }));
|
|
4
|
+
}
|
|
5
|
+
export default TicketIcon;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const TICKET_CUSTOM_MESSAGE_KEY = "TICKET_CUSTOM_MESSAGE_KEY";
|
|
2
|
+
export declare const MESSAGE_TYPE: {
|
|
3
|
+
TICKET_CREATE_STATUS: string;
|
|
4
|
+
};
|
|
5
|
+
export declare const NOTIFICATION_TYPES: {
|
|
6
|
+
email: {
|
|
7
|
+
label: string;
|
|
8
|
+
value: string;
|
|
9
|
+
};
|
|
10
|
+
app_push: {
|
|
11
|
+
label: string;
|
|
12
|
+
value: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
export declare const PORTAL_KEYS: {
|
|
16
|
+
USER_LANGUAGE: string;
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export const TICKET_CUSTOM_MESSAGE_KEY = 'TICKET_CUSTOM_MESSAGE_KEY';
|
|
2
|
+
export const MESSAGE_TYPE = {
|
|
3
|
+
TICKET_CREATE_STATUS: 'TICKET_CREATE_STATUS',
|
|
4
|
+
};
|
|
5
|
+
export const NOTIFICATION_TYPES = {
|
|
6
|
+
email: {
|
|
7
|
+
label: 'Send mail',
|
|
8
|
+
value: 'email',
|
|
9
|
+
},
|
|
10
|
+
app_push: {
|
|
11
|
+
label: 'Push notification',
|
|
12
|
+
value: 'app_push',
|
|
13
|
+
},
|
|
14
|
+
};
|
|
15
|
+
export const PORTAL_KEYS = {
|
|
16
|
+
USER_LANGUAGE: 'user_language',
|
|
17
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './queryKeys';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './queryKeys';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { TicketEditorV2 } from './TicketEditorV2';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { TicketEditorV2 } from './TicketEditorV2';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
domainTicket: string;
|
|
3
|
+
token: string;
|
|
4
|
+
config: any;
|
|
5
|
+
userId: string;
|
|
6
|
+
ticketId: string;
|
|
7
|
+
};
|
|
8
|
+
export declare const useGetDetailTicket: ({ domainTicket, token, config, userId, ticketId }: Props) => {
|
|
9
|
+
ticketDetails: any;
|
|
10
|
+
isFetching: boolean;
|
|
11
|
+
};
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { useQuery } from '@tanstack/react-query';
|
|
2
|
+
import { QUERY_KEYS } from '../constants/queryKeys';
|
|
3
|
+
import Service from '../Service';
|
|
4
|
+
export const useGetDetailTicket = ({ domainTicket, token, config, userId, ticketId }) => {
|
|
5
|
+
const { data, isFetching } = useQuery({
|
|
6
|
+
queryKey: [QUERY_KEYS.GET_TICKET_DETAIL, domainTicket, token, config, userId, ticketId],
|
|
7
|
+
enabled: !!ticketId,
|
|
8
|
+
queryFn: () => Service.tickets.callApi.getDetailsTicket({}, domainTicket, token, config, userId, ticketId),
|
|
9
|
+
});
|
|
10
|
+
return {
|
|
11
|
+
ticketDetails: data?.data?.ticket || [],
|
|
12
|
+
isFetching,
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
domainTicket: string;
|
|
3
|
+
token: string;
|
|
4
|
+
config: any;
|
|
5
|
+
userId: string;
|
|
6
|
+
ticketId: string;
|
|
7
|
+
enabled?: boolean;
|
|
8
|
+
};
|
|
9
|
+
export declare const useGetListComments: ({ domainTicket, token, config, userId, ticketId, enabled, }: Props) => {
|
|
10
|
+
listComments: any;
|
|
11
|
+
isFetchingComments: boolean;
|
|
12
|
+
};
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { useQuery } from '@tanstack/react-query';
|
|
2
|
+
import { QUERY_KEYS } from '../constants/queryKeys';
|
|
3
|
+
import Service from '../Service';
|
|
4
|
+
const getListCommentServices = async (params, domain, token, config, userId, type, ticketId) => {
|
|
5
|
+
const res = await Service.tickets.callApi.getListComment(params, domain, token, config, userId, type, ticketId);
|
|
6
|
+
return res.data;
|
|
7
|
+
};
|
|
8
|
+
export const useGetListComments = ({ domainTicket, token, config, userId, ticketId, enabled, }) => {
|
|
9
|
+
const { data, isFetching } = useQuery({
|
|
10
|
+
queryKey: [QUERY_KEYS.GET_TICKET_COMMENT, domainTicket, token, config, userId, ticketId],
|
|
11
|
+
enabled: !!ticketId || enabled,
|
|
12
|
+
queryFn: () => getListCommentServices({}, domainTicket, token, config, userId, 'get-ticket-comments', ticketId),
|
|
13
|
+
});
|
|
14
|
+
return {
|
|
15
|
+
listComments: data || [],
|
|
16
|
+
isFetchingComments: isFetching,
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { useQuery } from '@tanstack/react-query';
|
|
2
|
+
import { QUERY_KEYS } from '../constants/queryKeys';
|
|
3
|
+
import Service from '../Service';
|
|
4
|
+
const getListUserServices = async (params = {}, domain, token, config, userId) => {
|
|
5
|
+
const res = await Service.lookupInfo.callApi.c_user_id(params, domain, token, config, userId);
|
|
6
|
+
return res.data;
|
|
7
|
+
};
|
|
8
|
+
export const useGetListUser = ({ domainAccount, token, config, userId }) => {
|
|
9
|
+
const { data, isFetching } = useQuery([QUERY_KEYS.GET_LIST_USER, domainAccount, token, config, userId], () => getListUserServices({}, domainAccount, token, config, userId));
|
|
10
|
+
return {
|
|
11
|
+
listUsers: data || [],
|
|
12
|
+
isFetchingUsers: isFetching,
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const WrapperHeader: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
|
+
export declare const WrapperContent: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
|
+
export declare const WrapperLeftContent: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
5
|
+
export declare const WrapperRightContent: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
6
|
+
export declare const WrapperTextEdit: import("styled-components").StyledComponent<"a", any, {}, never>;
|
|
7
|
+
export declare const WrapperTextInput: import("styled-components").StyledComponent<"input", any, {}, never>;
|
|
8
|
+
export declare const WrapperContentInput: import("styled-components").StyledComponent<"div", any, {
|
|
9
|
+
flexStart?: boolean | undefined;
|
|
10
|
+
}, never>;
|
|
11
|
+
export declare const WrapperLable: import("styled-components").StyledComponent<"label", any, {}, never>;
|
|
12
|
+
export declare const WrapperDropdown: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
13
|
+
export declare const WrapperToggleDropdown: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
14
|
+
export declare const WrapperDropdownMenu: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
15
|
+
export declare const WrapperDropdownItem: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
16
|
+
export declare const WrapperLabelDropdown: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
17
|
+
export declare const MaterialChip: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
18
|
+
export declare const Wrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
19
|
+
export declare const DivLoading: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
20
|
+
export declare const WrapperListAccount: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
21
|
+
export declare const Title: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
22
|
+
export declare const TitleName: import("styled-components").StyledComponent<"p", any, {}, never>;
|
|
23
|
+
export declare const WrapperNotication: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
24
|
+
export declare const WrapperFooter: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
25
|
+
export declare const WrapperEditor: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
26
|
+
export declare const WrapperListAccountSearch: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
27
|
+
export declare const WrapperItemAccountSearch: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
28
|
+
export declare const WrapperFooterPopup: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
29
|
+
export declare const WrapperIconEditor: import("styled-components").StyledComponent<"div", any, {
|
|
30
|
+
borderTop?: boolean | undefined;
|
|
31
|
+
}, never>;
|
|
32
|
+
export declare const WrapperInputFile: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
33
|
+
export declare const WrapperLinkItemFiles: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
34
|
+
export declare const WrapperSnackbar: import("styled-components").StyledComponent<"div", any, {
|
|
35
|
+
background?: string | undefined;
|
|
36
|
+
}, never>;
|
|
37
|
+
export declare const WrapperModalHeader: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
38
|
+
export declare const WrapperAvatar: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
39
|
+
export declare const WrapperContentAvatar: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
40
|
+
export declare const WrapperMessageContent: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
41
|
+
export declare const WrapperLoading: import("styled-components").StyledComponent<"div", any, {
|
|
42
|
+
width?: string | undefined;
|
|
43
|
+
height?: string | undefined;
|
|
44
|
+
}, never>;
|
|
45
|
+
export declare const WrapperBtnAddAcc: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("antd").ButtonProps & import("react").RefAttributes<import("react").LegacyRef<HTMLElement>>>, any, {}, never>;
|
|
46
|
+
export declare const WrapperModalImg: import("styled-components").StyledComponent<import("react").ComponentType<any> | keyof import("react").JSX.IntrinsicElements, any, any, any>;
|
|
47
|
+
export declare const WrapperModalHeaderImg: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
48
|
+
export declare const TicketButton: import("styled-components").StyledComponent<"button", any, {}, never>;
|
|
49
|
+
export declare const WrapperCheckBox: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("antd").CheckboxProps & import("react").RefAttributes<import("rc-checkbox").CheckboxRef>> & {
|
|
50
|
+
Group: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<import("antd/es/checkbox").CheckboxGroupProps & import("react").RefAttributes<HTMLDivElement>>>;
|
|
51
|
+
}, any, {}, never>;
|
|
52
|
+
export declare const WrapperMessage: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
53
|
+
export declare const TicketEditorWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
54
|
+
export declare const DrawerHeader: import("styled-components").StyledComponent<"div", any, {}, never>;
|