@zohodesk/dot 1.0.0-beta.231 → 1.0.0-beta.232
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/README.md +4 -0
- package/es/docs/generalDocs.js +5 -2
- package/es/dropdown/ToggleDropDown/ToggleDropDown.js +2 -2
- package/es/emptystate/CommonEmptyState/docs/CommonEmptyState__default.docs.js +3 -3
- package/es/emptystate/EditionPage/EditionPage.js +1 -1
- package/es/errorstate/Inconvenience/Inconvenience.js +1 -1
- package/es/errorstate/NoRequestFound/NoRequestFound.js +1 -1
- package/es/errorstate/PermissionPlay/PermissionPlay.js +1 -1
- package/es/errorstate/RequestUrlNotFound/RequestUrlNotFound.js +1 -1
- package/es/errorstate/UnableToProcess/UnableToProcess.js +1 -1
- package/es/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +1 -1
- package/es/errorstate/WillBack/WillBack.js +1 -1
- package/es/form/fields/TagsMultiSelect/TagsMultiSelect.js +2 -2
- package/es/list/SecondaryText/docs/SecondaryText__default.docs.js +114 -0
- package/es/list/status/StatusDropdown/StatusDropdown.js +2 -2
- package/es/lookup/EmptyPage/EmptyPage.js +4 -4
- package/es/lookup/header/ViewDropDown/ViewDropDown.js +1 -1
- package/es/svg/PlusIcon.js +1 -1
- package/es/svg/SnippetIcon.js +1 -1
- package/es/svg/TemplateIcon.js +1 -1
- package/es/version2/errorstate/Inconvenience/Inconvenience.js +1 -1
- package/es/version2/errorstate/OopsSomethingMiss/OopsSomethingMiss.js +1 -1
- package/es/version2/errorstate/UnableToProcessRequest/UnableToProcessRequest.js +1 -1
- package/es/version2/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +1 -1
- package/es/version2/errorstate/UrlNotFound/UrlNotFound.js +1 -1
- package/es/version2/errorstate/WillBeRightBack/WillBeRightBack.js +1 -1
- package/lib/docs/generalDocs.js +8 -0
- package/lib/dropdown/ToggleDropDown/ToggleDropDown.js +2 -2
- package/lib/emptystate/CommonEmptyState/docs/CommonEmptyState__default.docs.js +3 -3
- package/lib/emptystate/EditionPage/EditionPage.js +1 -1
- package/lib/errorstate/Inconvenience/Inconvenience.js +1 -1
- package/lib/errorstate/NoRequestFound/NoRequestFound.js +1 -1
- package/lib/errorstate/PermissionPlay/PermissionPlay.js +1 -1
- package/lib/errorstate/RequestUrlNotFound/RequestUrlNotFound.js +1 -1
- package/lib/errorstate/UnableToProcess/UnableToProcess.js +1 -1
- package/lib/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +1 -1
- package/lib/errorstate/WillBack/WillBack.js +1 -1
- package/lib/form/fields/TagsMultiSelect/TagsMultiSelect.js +2 -2
- package/lib/list/SecondaryText/docs/SecondaryText__default.docs.js +162 -0
- package/lib/list/status/StatusDropdown/StatusDropdown.js +2 -2
- package/lib/lookup/EmptyPage/EmptyPage.js +4 -4
- package/lib/lookup/header/ViewDropDown/ViewDropDown.js +1 -1
- package/lib/svg/PlusIcon.js +1 -1
- package/lib/svg/SnippetIcon.js +1 -1
- package/lib/svg/TemplateIcon.js +1 -1
- package/lib/version2/errorstate/Inconvenience/Inconvenience.js +1 -1
- package/lib/version2/errorstate/OopsSomethingMiss/OopsSomethingMiss.js +1 -1
- package/lib/version2/errorstate/UnableToProcessRequest/UnableToProcessRequest.js +1 -1
- package/lib/version2/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +1 -1
- package/lib/version2/errorstate/UrlNotFound/UrlNotFound.js +1 -1
- package/lib/version2/errorstate/WillBeRightBack/WillBeRightBack.js +1 -1
- package/package.json +5 -5
- package/es/list/SecondaryText/docs/ContactName__default.docs.js +0 -23
- package/lib/list/SecondaryText/docs/ContactName__default.docs.js +0 -73
package/README.md
CHANGED
package/es/docs/generalDocs.js
CHANGED
|
@@ -131,5 +131,8 @@ export { default as V2_ErrState_OopsSomethingMiss } from '../version2/errorstate
|
|
|
131
131
|
export { default as V2_ErrState_OopsSomethingMiss__default } from '../version2/errorstate/OopsSomethingMiss/docs/OopsSomethingMiss__default.docs';
|
|
132
132
|
/* Attachment Viewer */
|
|
133
133
|
|
|
134
|
-
export { default as AttachmentViewer } from
|
|
135
|
-
export { default as AttachmentViewer__default } from
|
|
134
|
+
export { default as AttachmentViewer } from '../AttachmentViewer/AttachmentViewer';
|
|
135
|
+
export { default as AttachmentViewer__default } from '../AttachmentViewer/docs/AttachmentViewer__default.docs';
|
|
136
|
+
/* Secondary Text */
|
|
137
|
+
|
|
138
|
+
export { default as SecondaryText__default } from '../list/SecondaryText/docs/SecondaryText__default.docs';
|
|
@@ -11,9 +11,9 @@ import ListItem from '@zohodesk/components/lib/ListItem/ListItem';
|
|
|
11
11
|
import ListItemWithIcon from '@zohodesk/components/lib/ListItem/ListItemWithIcon';
|
|
12
12
|
import DropDownHeading from '@zohodesk/components/lib/DropDown/DropDownHeading';
|
|
13
13
|
import TextBoxIcon from '@zohodesk/components/lib/TextBoxIcon/TextBoxIcon';
|
|
14
|
-
import Loader from '@zohodesk/svg/lib/
|
|
14
|
+
import Loader from '@zohodesk/svg/lib/Loader/Loader';
|
|
15
15
|
import CommonEmptyState from '../../emptystate/CommonEmptyState/CommonEmptyState';
|
|
16
|
-
import EmptySearch from '@zohodesk/svg/lib/
|
|
16
|
+
import EmptySearch from '@zohodesk/svg/lib/emptystate/version3/EmptySearch';
|
|
17
17
|
import CssProvider from '@zohodesk/components/lib/Provider/CssProvider';
|
|
18
18
|
import { scrollTo } from '@zohodesk/components/lib/utils/Common';
|
|
19
19
|
import { getUniqueId } from '@zohodesk/components/lib/Provider/IdProvider';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React, { Component } from 'react';
|
|
2
2
|
import CommonEmptyState from '../CommonEmptyState';
|
|
3
|
-
import EmptySearch from '@zohodesk/svg/lib/
|
|
4
|
-
import EmptyAccounts from '@zohodesk/svg/lib/
|
|
5
|
-
import EmptyTicket from '@zohodesk/svg/lib/
|
|
3
|
+
import EmptySearch from '@zohodesk/svg/lib/emptystate/version3/EmptySearch';
|
|
4
|
+
import EmptyAccounts from '@zohodesk/svg/lib/emptystate/version3/EmptyAccounts';
|
|
5
|
+
import EmptyTicket from '@zohodesk/svg/lib/emptystate/version3/EmptyTicket';
|
|
6
6
|
import Button from '@zohodesk/components/lib/Button/Button';
|
|
7
7
|
import { Container } from '@zohodesk/components/lib/Layout';
|
|
8
8
|
export default class CommonEmptyState__default extends Component {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { Component } from 'react';
|
|
2
2
|
import { PropTypes } from 'prop-types';
|
|
3
|
-
import EmptyCrmPotential from '@zohodesk/svg/lib/
|
|
3
|
+
import EmptyCrmPotential from '@zohodesk/svg/lib/emptystate/version3/EmptyCrmPotential';
|
|
4
4
|
import style from './EditionPage.css';
|
|
5
5
|
export default class EditionPage extends Component {
|
|
6
6
|
constructor(props) {
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { Container, Box } from '@zohodesk/components/lib/Layout';
|
|
4
4
|
import LinkText from '../LinkText/LinkText';
|
|
5
|
-
import InconvenienceSVG from '@zohodesk/svg/lib/
|
|
5
|
+
import InconvenienceSVG from '@zohodesk/svg/lib/errorstate/version1/EmptyInconvenience';
|
|
6
6
|
import { ResponsiveReceiver } from '@zohodesk/components/lib/Responsive/CustomResponsive';
|
|
7
7
|
import commonStyle from '../EmptyStates.module.css';
|
|
8
8
|
import style from './Inconvenience.module.css';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import commonStyle from '../EmptyStates.module.css';
|
|
4
|
-
import NoRequestFoundSVG from '@zohodesk/svg/lib/
|
|
4
|
+
import NoRequestFoundSVG from '@zohodesk/svg/lib/errorstate/version1/NoRequestFound';
|
|
5
5
|
import { Container, Box } from '@zohodesk/components/lib/Layout';
|
|
6
6
|
import LinkText from '../LinkText/LinkText';
|
|
7
7
|
import { ResponsiveReceiver } from '@zohodesk/components/lib/Responsive/CustomResponsive';
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { Container, Box } from '@zohodesk/components/lib/Layout';
|
|
4
4
|
import LinkText from '../LinkText/LinkText';
|
|
5
|
-
import UnauthorizedLoginSVG from '@zohodesk/svg/lib/
|
|
5
|
+
import UnauthorizedLoginSVG from '@zohodesk/svg/lib/errorstate/version1/UnauthorizedLogin';
|
|
6
6
|
import commonStyle from '../EmptyStates.module.css';
|
|
7
7
|
import style from './PermissionPlay.module.css';
|
|
8
8
|
import { ResponsiveReceiver } from '@zohodesk/components/lib/Responsive/CustomResponsive';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { Container, Box } from '@zohodesk/components/lib/Layout';
|
|
4
|
-
import UrlNotFound from '@zohodesk/svg/lib/
|
|
4
|
+
import UrlNotFound from '@zohodesk/svg/lib/errorstate/version1/UrlNotFound';
|
|
5
5
|
import LinkText from '../LinkText/LinkText';
|
|
6
6
|
import { ResponsiveReceiver } from '@zohodesk/components/lib/Responsive/CustomResponsive';
|
|
7
7
|
import commonStyle from '../EmptyStates.module.css';
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { Container, Box } from '@zohodesk/components/lib/Layout';
|
|
4
4
|
import LinkText from '../LinkText/LinkText';
|
|
5
|
-
import UnableToProcessRequest from '@zohodesk/svg/lib/
|
|
5
|
+
import UnableToProcessRequest from '@zohodesk/svg/lib/errorstate/version1/UnableToProcessRequest';
|
|
6
6
|
import { ResponsiveReceiver } from '@zohodesk/components/lib/Responsive/CustomResponsive';
|
|
7
7
|
import commonStyle from '../EmptyStates.module.css';
|
|
8
8
|
import style from './UnableToProcess.module.css';
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { Container, Box } from '@zohodesk/components/lib/Layout';
|
|
4
4
|
import LinkText from '../LinkText/LinkText';
|
|
5
|
-
import UnauthorizedLoginSVG from '@zohodesk/svg/lib/
|
|
5
|
+
import UnauthorizedLoginSVG from '@zohodesk/svg/lib/errorstate/version1/UnauthorizedLogin';
|
|
6
6
|
import { ResponsiveReceiver } from '@zohodesk/components/lib/Responsive/CustomResponsive';
|
|
7
7
|
import commonStyle from '../EmptyStates.module.css';
|
|
8
8
|
import style from './UnauthorizedLogin.module.css';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { Container, Box } from '@zohodesk/components/lib/Layout';
|
|
4
|
-
import WillBeRightBack from '@zohodesk/svg/lib/
|
|
4
|
+
import WillBeRightBack from '@zohodesk/svg/lib/errorstate/version1/WillBeRightBack';
|
|
5
5
|
import { ResponsiveReceiver } from '@zohodesk/components/lib/Responsive/CustomResponsive';
|
|
6
6
|
import commonStyle from '../EmptyStates.module.css';
|
|
7
7
|
import style from './WillBack.module.css';
|
|
@@ -3,9 +3,9 @@ import PropTypes from 'prop-types';
|
|
|
3
3
|
import { Container, Box } from '@zohodesk/components/lib/Layout';
|
|
4
4
|
import Tag from '@zohodesk/components/lib/Tag/Tag';
|
|
5
5
|
import TextBoxIcon from '@zohodesk/components/lib/TextBoxIcon/TextBoxIcon';
|
|
6
|
-
import EmptySearch from '@zohodesk/svg/lib/
|
|
6
|
+
import EmptySearch from '@zohodesk/svg/lib/emptystate/version3/EmptySearch';
|
|
7
7
|
import ListItem from '@zohodesk/components/lib/ListItem/ListItem';
|
|
8
|
-
import Loader from '@zohodesk/svg/lib/
|
|
8
|
+
import Loader from '@zohodesk/svg/lib/Loader/Loader';
|
|
9
9
|
import DropDownSeparator from '@zohodesk/components/lib/DropDown/DropDownSeparator';
|
|
10
10
|
import CommonEmptyState from '../../../emptystate/CommonEmptyState/CommonEmptyState';
|
|
11
11
|
import ResponsiveDropBox from '@zohodesk/components/lib/ResponsiveDropBox/ResponsiveDropBox';
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import React, { Component } from 'react';
|
|
2
|
+
import { Container, Box } from '@zohodesk/components/lib/Layout';
|
|
3
|
+
import { ContactName, AccountName, DepartmentText, Email, HappinessRating, PhoneNumber, PriorityText, SecondaryText, StatusText, TicketId, Website } from '../index';
|
|
4
|
+
export default class SecondaryText__default extends Component {
|
|
5
|
+
constructor(props) {
|
|
6
|
+
super(props);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
render() {
|
|
10
|
+
const boxStyle = {
|
|
11
|
+
padding: '10px',
|
|
12
|
+
border: '2px solid #000',
|
|
13
|
+
width: '30%',
|
|
14
|
+
margin: '5px'
|
|
15
|
+
};
|
|
16
|
+
return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Container, {
|
|
17
|
+
alignBox: "column",
|
|
18
|
+
wrap: "wrap",
|
|
19
|
+
align: "both"
|
|
20
|
+
}, /*#__PURE__*/React.createElement(Box, {
|
|
21
|
+
style: boxStyle
|
|
22
|
+
}, /*#__PURE__*/React.createElement("div", null, "ContactName"), /*#__PURE__*/React.createElement(ContactName, {
|
|
23
|
+
text: "Antro Contact",
|
|
24
|
+
isPaidUser: true,
|
|
25
|
+
sentimentType: "positive"
|
|
26
|
+
}), /*#__PURE__*/React.createElement(ContactName, {
|
|
27
|
+
text: "Antro Contact",
|
|
28
|
+
isPaidUser: true,
|
|
29
|
+
sentimentType: "negative"
|
|
30
|
+
}), /*#__PURE__*/React.createElement(ContactName, {
|
|
31
|
+
text: "Antro Contact",
|
|
32
|
+
isPaidUser: true,
|
|
33
|
+
sentimentType: "neutral"
|
|
34
|
+
})), /*#__PURE__*/React.createElement(Box, {
|
|
35
|
+
style: boxStyle
|
|
36
|
+
}, /*#__PURE__*/React.createElement("div", null, "AccountName"), /*#__PURE__*/React.createElement(AccountName, {
|
|
37
|
+
text: "Antro Contact ",
|
|
38
|
+
secondaryAccountText: " secondaryAccountText",
|
|
39
|
+
fontWeight: "semibold"
|
|
40
|
+
}), /*#__PURE__*/React.createElement(AccountName, {
|
|
41
|
+
text: "Antro Contact ",
|
|
42
|
+
secondaryAccountText: " secondaryAccountText",
|
|
43
|
+
fontWeight: "bold"
|
|
44
|
+
})), /*#__PURE__*/React.createElement(Box, {
|
|
45
|
+
style: boxStyle
|
|
46
|
+
}, /*#__PURE__*/React.createElement("div", null, "DepartmentText"), /*#__PURE__*/React.createElement(DepartmentText, {
|
|
47
|
+
text: "Antro Contact"
|
|
48
|
+
})), /*#__PURE__*/React.createElement(Box, {
|
|
49
|
+
style: boxStyle
|
|
50
|
+
}, /*#__PURE__*/React.createElement("div", null, "Email"), /*#__PURE__*/React.createElement(Email, {
|
|
51
|
+
text: "Antro Contact"
|
|
52
|
+
})), /*#__PURE__*/React.createElement(Box, {
|
|
53
|
+
style: boxStyle
|
|
54
|
+
}, /*#__PURE__*/React.createElement("div", null, "HappinessRating"), /*#__PURE__*/React.createElement(HappinessRating, {
|
|
55
|
+
text: "100",
|
|
56
|
+
src: "https://hjemly.dk/wp-content/uploads/2016/05/facebook-default-no-profile-pic.jpg"
|
|
57
|
+
})), /*#__PURE__*/React.createElement(Box, {
|
|
58
|
+
style: boxStyle
|
|
59
|
+
}, /*#__PURE__*/React.createElement("div", null, "PhoneNumber"), /*#__PURE__*/React.createElement(PhoneNumber, {
|
|
60
|
+
text: "1243123434543"
|
|
61
|
+
})), /*#__PURE__*/React.createElement(Box, {
|
|
62
|
+
style: boxStyle
|
|
63
|
+
}, /*#__PURE__*/React.createElement("div", null, "PriorityText"), /*#__PURE__*/React.createElement(PriorityText, {
|
|
64
|
+
text: "Antro Contact",
|
|
65
|
+
color: "red"
|
|
66
|
+
}), /*#__PURE__*/React.createElement(PriorityText, {
|
|
67
|
+
text: "Antro Contact",
|
|
68
|
+
color: "green"
|
|
69
|
+
}), /*#__PURE__*/React.createElement(PriorityText, {
|
|
70
|
+
text: "Antro Contact",
|
|
71
|
+
color: "gray"
|
|
72
|
+
}), /*#__PURE__*/React.createElement(PriorityText, {
|
|
73
|
+
text: "Antro Contact",
|
|
74
|
+
color: "orange"
|
|
75
|
+
})), /*#__PURE__*/React.createElement(Box, {
|
|
76
|
+
style: boxStyle
|
|
77
|
+
}, /*#__PURE__*/React.createElement("div", null, "SecondaryText"), /*#__PURE__*/React.createElement(SecondaryText, {
|
|
78
|
+
text: "Antro Contact"
|
|
79
|
+
})), /*#__PURE__*/React.createElement(Box, {
|
|
80
|
+
style: boxStyle
|
|
81
|
+
}, /*#__PURE__*/React.createElement("div", null, "StatusText"), /*#__PURE__*/React.createElement(StatusText, {
|
|
82
|
+
text: "Antro Contact",
|
|
83
|
+
color: "red"
|
|
84
|
+
}), /*#__PURE__*/React.createElement(StatusText, {
|
|
85
|
+
text: "Antro Contact",
|
|
86
|
+
color: "green"
|
|
87
|
+
}), /*#__PURE__*/React.createElement(StatusText, {
|
|
88
|
+
text: "Antro Contact",
|
|
89
|
+
color: "gray"
|
|
90
|
+
}), /*#__PURE__*/React.createElement(StatusText, {
|
|
91
|
+
text: "Antro Contact",
|
|
92
|
+
color: "orange"
|
|
93
|
+
}), /*#__PURE__*/React.createElement(StatusText, {
|
|
94
|
+
text: "Antro Contact",
|
|
95
|
+
color: "black"
|
|
96
|
+
})), /*#__PURE__*/React.createElement(Box, {
|
|
97
|
+
style: boxStyle
|
|
98
|
+
}, /*#__PURE__*/React.createElement("div", null, "TicketId"), /*#__PURE__*/React.createElement(TicketId, {
|
|
99
|
+
text: "124213234"
|
|
100
|
+
})), /*#__PURE__*/React.createElement(Box, {
|
|
101
|
+
style: boxStyle
|
|
102
|
+
}, /*#__PURE__*/React.createElement("div", null, "Website"), /*#__PURE__*/React.createElement(Website, {
|
|
103
|
+
text: "https://www.zoho.com/"
|
|
104
|
+
}))));
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
if (false) {
|
|
110
|
+
SecondaryText__default.docs = {
|
|
111
|
+
folderName: 'List',
|
|
112
|
+
componentGroup: 'SecondaryText'
|
|
113
|
+
};
|
|
114
|
+
}
|
|
@@ -5,8 +5,8 @@ import Popup from '@zohodesk/components/lib/Popup/Popup';
|
|
|
5
5
|
import { Box, Container } from '@zohodesk/components/lib/Layout';
|
|
6
6
|
import DropDownHeading from '@zohodesk/components/lib/DropDown/DropDownHeading';
|
|
7
7
|
import TextBoxIcon from '@zohodesk/components/lib/TextBoxIcon/TextBoxIcon';
|
|
8
|
-
import Loader from '@zohodesk/svg/lib/
|
|
9
|
-
import EmptySearch from '@zohodesk/svg/lib/
|
|
8
|
+
import Loader from '@zohodesk/svg/lib/Loader/Loader';
|
|
9
|
+
import EmptySearch from '@zohodesk/svg/lib/emptystate/version3/EmptySearch';
|
|
10
10
|
import { scrollTo } from '@zohodesk/components/lib/utils/Common.js';
|
|
11
11
|
import TextBox from '@zohodesk/components/lib/TextBox/TextBox';
|
|
12
12
|
import CommonEmptyState from '../../../emptystate/CommonEmptyState/CommonEmptyState';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/*** Libraries ***/
|
|
2
2
|
import React, { Component } from 'react';
|
|
3
3
|
import PropTypes from 'prop-types';
|
|
4
|
-
import EmptySearch from '@zohodesk/svg/lib/
|
|
5
|
-
import EmptyAccounts from '@zohodesk/svg/lib/
|
|
6
|
-
import EmptyContact from '@zohodesk/svg/lib/
|
|
7
|
-
import EmptyProducts from '@zohodesk/svg/lib/
|
|
4
|
+
import EmptySearch from '@zohodesk/svg/lib/emptystate/version3/EmptySearch';
|
|
5
|
+
import EmptyAccounts from '@zohodesk/svg/lib/emptystate/version3/EmptyAccounts';
|
|
6
|
+
import EmptyContact from '@zohodesk/svg/lib/emptystate/version3/EmptyContact';
|
|
7
|
+
import EmptyProducts from '@zohodesk/svg/lib/emptystate/version3/EmptyProducts';
|
|
8
8
|
/*** CSS ***/
|
|
9
9
|
|
|
10
10
|
import style from './LookupEmptyPage.module.css';
|
|
@@ -14,7 +14,7 @@ import { ResponsiveReceiver } from '@zohodesk/components/lib/Responsive/CustomRe
|
|
|
14
14
|
|
|
15
15
|
import Icon from '@zohodesk/icons/lib/Icon';
|
|
16
16
|
import { Container, Box } from '@zohodesk/components/lib/Layout';
|
|
17
|
-
import Loader from '@zohodesk/svg/lib/
|
|
17
|
+
import Loader from '@zohodesk/svg/lib/Loader/Loader';
|
|
18
18
|
import style from './ViewDropDown.module.css';
|
|
19
19
|
/* eslint-disable react/forbid-component-props */
|
|
20
20
|
|
package/es/svg/PlusIcon.js
CHANGED
package/es/svg/SnippetIcon.js
CHANGED
package/es/svg/TemplateIcon.js
CHANGED
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { Container } from '@zohodesk/components/lib/Layout';
|
|
4
4
|
import CommonEmptyState from './../../../emptystate/CommonEmptyState/CommonEmptyState';
|
|
5
|
-
import ErrorInconvenience from '@zohodesk/svg/lib/
|
|
5
|
+
import ErrorInconvenience from '@zohodesk/svg/lib/errorstate/version3/ErrorInconvenience';
|
|
6
6
|
import Button from '@zohodesk/components/lib/Button/Button';
|
|
7
7
|
import style from './../V2_ErrorStates.module.css';
|
|
8
8
|
export default class Inconvenience extends React.Component {
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { Container } from '@zohodesk/components/lib/Layout';
|
|
4
4
|
import CommonEmptyState from '../../../emptystate/CommonEmptyState/CommonEmptyState';
|
|
5
|
-
import ErrorOopsSomethingMiss from '@zohodesk/svg/lib/
|
|
5
|
+
import ErrorOopsSomethingMiss from '@zohodesk/svg/lib/errorstate/version3/ErrorOopsSomethingMiss';
|
|
6
6
|
import Button from '@zohodesk/components/lib/Button/Button';
|
|
7
7
|
import style from './../V2_ErrorStates.module.css';
|
|
8
8
|
export default class OopsSomethingMiss extends React.Component {
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { Container } from '@zohodesk/components/lib/Layout';
|
|
4
4
|
import CommonEmptyState from '../../../emptystate/CommonEmptyState/CommonEmptyState';
|
|
5
|
-
import ErrorUnableToProcessRequest from '@zohodesk/svg/lib/
|
|
5
|
+
import ErrorUnableToProcessRequest from '@zohodesk/svg/lib/errorstate/version3/ErrorUnableToProcessRequest';
|
|
6
6
|
import Button from '@zohodesk/components/lib/Button/Button';
|
|
7
7
|
import style from './../V2_ErrorStates.module.css';
|
|
8
8
|
export default class UnableToProcessRequest extends React.Component {
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { Container } from '@zohodesk/components/lib/Layout';
|
|
4
4
|
import CommonEmptyState from '../../../emptystate/CommonEmptyState/CommonEmptyState';
|
|
5
|
-
import ErrorUnauthorizedLogin from '@zohodesk/svg/lib/
|
|
5
|
+
import ErrorUnauthorizedLogin from '@zohodesk/svg/lib/errorstate/version3/ErrorUnauthorizedLogin';
|
|
6
6
|
import Button from '@zohodesk/components/lib/Button/Button';
|
|
7
7
|
import style from './../V2_ErrorStates.module.css';
|
|
8
8
|
export default class UnauthorizedLogin extends React.Component {
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { Container } from '@zohodesk/components/lib/Layout';
|
|
4
4
|
import CommonEmptyState from '../../../emptystate/CommonEmptyState/CommonEmptyState';
|
|
5
|
-
import ErrorUrlNotFound from '@zohodesk/svg/lib/
|
|
5
|
+
import ErrorUrlNotFound from '@zohodesk/svg/lib/errorstate/version3/ErrorUrlNotFound';
|
|
6
6
|
import Button from '@zohodesk/components/lib/Button/Button';
|
|
7
7
|
import style from './../V2_ErrorStates.module.css';
|
|
8
8
|
export default class UrlNotFound extends React.Component {
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { Container } from '@zohodesk/components/lib/Layout';
|
|
4
4
|
import CommonEmptyState from '../../../emptystate/CommonEmptyState/CommonEmptyState';
|
|
5
|
-
import ErrorWillBeRightBack from '@zohodesk/svg/lib/
|
|
5
|
+
import ErrorWillBeRightBack from '@zohodesk/svg/lib/errorstate/version3/ErrorWillBeRightBack';
|
|
6
6
|
import Button from '@zohodesk/components/lib/Button/Button';
|
|
7
7
|
import style from './../V2_ErrorStates.module.css';
|
|
8
8
|
export default class WillBeRightBack extends React.Component {
|
package/lib/docs/generalDocs.js
CHANGED
|
@@ -621,6 +621,12 @@ Object.defineProperty(exports, "SVG__default", {
|
|
|
621
621
|
return _SVG__default["default"];
|
|
622
622
|
}
|
|
623
623
|
});
|
|
624
|
+
Object.defineProperty(exports, "SecondaryText__default", {
|
|
625
|
+
enumerable: true,
|
|
626
|
+
get: function get() {
|
|
627
|
+
return _SecondaryText__default["default"];
|
|
628
|
+
}
|
|
629
|
+
});
|
|
624
630
|
Object.defineProperty(exports, "SecondryPanel", {
|
|
625
631
|
enumerable: true,
|
|
626
632
|
get: function get() {
|
|
@@ -1052,4 +1058,6 @@ var _AttachmentViewer = _interopRequireDefault(require("../AttachmentViewer/Atta
|
|
|
1052
1058
|
|
|
1053
1059
|
var _AttachmentViewer__default = _interopRequireDefault(require("../AttachmentViewer/docs/AttachmentViewer__default.docs"));
|
|
1054
1060
|
|
|
1061
|
+
var _SecondaryText__default = _interopRequireDefault(require("../list/SecondaryText/docs/SecondaryText__default.docs"));
|
|
1062
|
+
|
|
1055
1063
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -25,11 +25,11 @@ var _DropDownHeading = _interopRequireDefault(require("@zohodesk/components/lib/
|
|
|
25
25
|
|
|
26
26
|
var _TextBoxIcon = _interopRequireDefault(require("@zohodesk/components/lib/TextBoxIcon/TextBoxIcon"));
|
|
27
27
|
|
|
28
|
-
var _Loader = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
28
|
+
var _Loader = _interopRequireDefault(require("@zohodesk/svg/lib/Loader/Loader"));
|
|
29
29
|
|
|
30
30
|
var _CommonEmptyState = _interopRequireDefault(require("../../emptystate/CommonEmptyState/CommonEmptyState"));
|
|
31
31
|
|
|
32
|
-
var _EmptySearch = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
32
|
+
var _EmptySearch = _interopRequireDefault(require("@zohodesk/svg/lib/emptystate/version3/EmptySearch"));
|
|
33
33
|
|
|
34
34
|
var _CssProvider = _interopRequireDefault(require("@zohodesk/components/lib/Provider/CssProvider"));
|
|
35
35
|
|
|
@@ -11,11 +11,11 @@ var _react = _interopRequireWildcard(require("react"));
|
|
|
11
11
|
|
|
12
12
|
var _CommonEmptyState = _interopRequireDefault(require("../CommonEmptyState"));
|
|
13
13
|
|
|
14
|
-
var _EmptySearch = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
14
|
+
var _EmptySearch = _interopRequireDefault(require("@zohodesk/svg/lib/emptystate/version3/EmptySearch"));
|
|
15
15
|
|
|
16
|
-
var _EmptyAccounts = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
16
|
+
var _EmptyAccounts = _interopRequireDefault(require("@zohodesk/svg/lib/emptystate/version3/EmptyAccounts"));
|
|
17
17
|
|
|
18
|
-
var _EmptyTicket = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
18
|
+
var _EmptyTicket = _interopRequireDefault(require("@zohodesk/svg/lib/emptystate/version3/EmptyTicket"));
|
|
19
19
|
|
|
20
20
|
var _Button = _interopRequireDefault(require("@zohodesk/components/lib/Button/Button"));
|
|
21
21
|
|
|
@@ -11,7 +11,7 @@ var _react = _interopRequireWildcard(require("react"));
|
|
|
11
11
|
|
|
12
12
|
var _propTypes = require("prop-types");
|
|
13
13
|
|
|
14
|
-
var _EmptyCrmPotential = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
14
|
+
var _EmptyCrmPotential = _interopRequireDefault(require("@zohodesk/svg/lib/emptystate/version3/EmptyCrmPotential"));
|
|
15
15
|
|
|
16
16
|
var _EditionPage = _interopRequireDefault(require("./EditionPage.css"));
|
|
17
17
|
|
|
@@ -15,7 +15,7 @@ var _Layout = require("@zohodesk/components/lib/Layout");
|
|
|
15
15
|
|
|
16
16
|
var _LinkText = _interopRequireDefault(require("../LinkText/LinkText"));
|
|
17
17
|
|
|
18
|
-
var _EmptyInconvenience = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
18
|
+
var _EmptyInconvenience = _interopRequireDefault(require("@zohodesk/svg/lib/errorstate/version1/EmptyInconvenience"));
|
|
19
19
|
|
|
20
20
|
var _CustomResponsive = require("@zohodesk/components/lib/Responsive/CustomResponsive");
|
|
21
21
|
|
|
@@ -13,7 +13,7 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
|
13
13
|
|
|
14
14
|
var _EmptyStatesModule = _interopRequireDefault(require("../EmptyStates.module.css"));
|
|
15
15
|
|
|
16
|
-
var _NoRequestFound = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
16
|
+
var _NoRequestFound = _interopRequireDefault(require("@zohodesk/svg/lib/errorstate/version1/NoRequestFound"));
|
|
17
17
|
|
|
18
18
|
var _Layout = require("@zohodesk/components/lib/Layout");
|
|
19
19
|
|
|
@@ -15,7 +15,7 @@ var _Layout = require("@zohodesk/components/lib/Layout");
|
|
|
15
15
|
|
|
16
16
|
var _LinkText = _interopRequireDefault(require("../LinkText/LinkText"));
|
|
17
17
|
|
|
18
|
-
var _UnauthorizedLogin = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
18
|
+
var _UnauthorizedLogin = _interopRequireDefault(require("@zohodesk/svg/lib/errorstate/version1/UnauthorizedLogin"));
|
|
19
19
|
|
|
20
20
|
var _EmptyStatesModule = _interopRequireDefault(require("../EmptyStates.module.css"));
|
|
21
21
|
|
|
@@ -13,7 +13,7 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
|
13
13
|
|
|
14
14
|
var _Layout = require("@zohodesk/components/lib/Layout");
|
|
15
15
|
|
|
16
|
-
var _UrlNotFound = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
16
|
+
var _UrlNotFound = _interopRequireDefault(require("@zohodesk/svg/lib/errorstate/version1/UrlNotFound"));
|
|
17
17
|
|
|
18
18
|
var _LinkText = _interopRequireDefault(require("../LinkText/LinkText"));
|
|
19
19
|
|
|
@@ -15,7 +15,7 @@ var _Layout = require("@zohodesk/components/lib/Layout");
|
|
|
15
15
|
|
|
16
16
|
var _LinkText = _interopRequireDefault(require("../LinkText/LinkText"));
|
|
17
17
|
|
|
18
|
-
var _UnableToProcessRequest = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
18
|
+
var _UnableToProcessRequest = _interopRequireDefault(require("@zohodesk/svg/lib/errorstate/version1/UnableToProcessRequest"));
|
|
19
19
|
|
|
20
20
|
var _CustomResponsive = require("@zohodesk/components/lib/Responsive/CustomResponsive");
|
|
21
21
|
|
|
@@ -15,7 +15,7 @@ var _Layout = require("@zohodesk/components/lib/Layout");
|
|
|
15
15
|
|
|
16
16
|
var _LinkText = _interopRequireDefault(require("../LinkText/LinkText"));
|
|
17
17
|
|
|
18
|
-
var _UnauthorizedLogin = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
18
|
+
var _UnauthorizedLogin = _interopRequireDefault(require("@zohodesk/svg/lib/errorstate/version1/UnauthorizedLogin"));
|
|
19
19
|
|
|
20
20
|
var _CustomResponsive = require("@zohodesk/components/lib/Responsive/CustomResponsive");
|
|
21
21
|
|
|
@@ -13,7 +13,7 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
|
13
13
|
|
|
14
14
|
var _Layout = require("@zohodesk/components/lib/Layout");
|
|
15
15
|
|
|
16
|
-
var _WillBeRightBack = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
16
|
+
var _WillBeRightBack = _interopRequireDefault(require("@zohodesk/svg/lib/errorstate/version1/WillBeRightBack"));
|
|
17
17
|
|
|
18
18
|
var _CustomResponsive = require("@zohodesk/components/lib/Responsive/CustomResponsive");
|
|
19
19
|
|
|
@@ -17,11 +17,11 @@ var _Tag = _interopRequireDefault(require("@zohodesk/components/lib/Tag/Tag"));
|
|
|
17
17
|
|
|
18
18
|
var _TextBoxIcon = _interopRequireDefault(require("@zohodesk/components/lib/TextBoxIcon/TextBoxIcon"));
|
|
19
19
|
|
|
20
|
-
var _EmptySearch = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
20
|
+
var _EmptySearch = _interopRequireDefault(require("@zohodesk/svg/lib/emptystate/version3/EmptySearch"));
|
|
21
21
|
|
|
22
22
|
var _ListItem = _interopRequireDefault(require("@zohodesk/components/lib/ListItem/ListItem"));
|
|
23
23
|
|
|
24
|
-
var _Loader = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
24
|
+
var _Loader = _interopRequireDefault(require("@zohodesk/svg/lib/Loader/Loader"));
|
|
25
25
|
|
|
26
26
|
var _DropDownSeparator = _interopRequireDefault(require("@zohodesk/components/lib/DropDown/DropDownSeparator"));
|
|
27
27
|
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
var _Layout = require("@zohodesk/components/lib/Layout");
|
|
13
|
+
|
|
14
|
+
var _index = require("../index");
|
|
15
|
+
|
|
16
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
17
|
+
|
|
18
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
19
|
+
|
|
20
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
21
|
+
|
|
22
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
23
|
+
|
|
24
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
25
|
+
|
|
26
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
27
|
+
|
|
28
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
29
|
+
|
|
30
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
31
|
+
|
|
32
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
33
|
+
|
|
34
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
35
|
+
|
|
36
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
37
|
+
|
|
38
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
39
|
+
|
|
40
|
+
var SecondaryText__default = /*#__PURE__*/function (_Component) {
|
|
41
|
+
_inherits(SecondaryText__default, _Component);
|
|
42
|
+
|
|
43
|
+
var _super = _createSuper(SecondaryText__default);
|
|
44
|
+
|
|
45
|
+
function SecondaryText__default(props) {
|
|
46
|
+
_classCallCheck(this, SecondaryText__default);
|
|
47
|
+
|
|
48
|
+
return _super.call(this, props);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
_createClass(SecondaryText__default, [{
|
|
52
|
+
key: "render",
|
|
53
|
+
value: function render() {
|
|
54
|
+
var boxStyle = {
|
|
55
|
+
padding: '10px',
|
|
56
|
+
border: '2px solid #000',
|
|
57
|
+
width: '30%',
|
|
58
|
+
margin: '5px'
|
|
59
|
+
};
|
|
60
|
+
return /*#__PURE__*/_react["default"].createElement("div", null, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
61
|
+
alignBox: "column",
|
|
62
|
+
wrap: "wrap",
|
|
63
|
+
align: "both"
|
|
64
|
+
}, /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
65
|
+
style: boxStyle
|
|
66
|
+
}, /*#__PURE__*/_react["default"].createElement("div", null, "ContactName"), /*#__PURE__*/_react["default"].createElement(_index.ContactName, {
|
|
67
|
+
text: "Antro Contact",
|
|
68
|
+
isPaidUser: true,
|
|
69
|
+
sentimentType: "positive"
|
|
70
|
+
}), /*#__PURE__*/_react["default"].createElement(_index.ContactName, {
|
|
71
|
+
text: "Antro Contact",
|
|
72
|
+
isPaidUser: true,
|
|
73
|
+
sentimentType: "negative"
|
|
74
|
+
}), /*#__PURE__*/_react["default"].createElement(_index.ContactName, {
|
|
75
|
+
text: "Antro Contact",
|
|
76
|
+
isPaidUser: true,
|
|
77
|
+
sentimentType: "neutral"
|
|
78
|
+
})), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
79
|
+
style: boxStyle
|
|
80
|
+
}, /*#__PURE__*/_react["default"].createElement("div", null, "AccountName"), /*#__PURE__*/_react["default"].createElement(_index.AccountName, {
|
|
81
|
+
text: "Antro Contact ",
|
|
82
|
+
secondaryAccountText: " secondaryAccountText",
|
|
83
|
+
fontWeight: "semibold"
|
|
84
|
+
}), /*#__PURE__*/_react["default"].createElement(_index.AccountName, {
|
|
85
|
+
text: "Antro Contact ",
|
|
86
|
+
secondaryAccountText: " secondaryAccountText",
|
|
87
|
+
fontWeight: "bold"
|
|
88
|
+
})), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
89
|
+
style: boxStyle
|
|
90
|
+
}, /*#__PURE__*/_react["default"].createElement("div", null, "DepartmentText"), /*#__PURE__*/_react["default"].createElement(_index.DepartmentText, {
|
|
91
|
+
text: "Antro Contact"
|
|
92
|
+
})), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
93
|
+
style: boxStyle
|
|
94
|
+
}, /*#__PURE__*/_react["default"].createElement("div", null, "Email"), /*#__PURE__*/_react["default"].createElement(_index.Email, {
|
|
95
|
+
text: "Antro Contact"
|
|
96
|
+
})), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
97
|
+
style: boxStyle
|
|
98
|
+
}, /*#__PURE__*/_react["default"].createElement("div", null, "HappinessRating"), /*#__PURE__*/_react["default"].createElement(_index.HappinessRating, {
|
|
99
|
+
text: "100",
|
|
100
|
+
src: "https://hjemly.dk/wp-content/uploads/2016/05/facebook-default-no-profile-pic.jpg"
|
|
101
|
+
})), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
102
|
+
style: boxStyle
|
|
103
|
+
}, /*#__PURE__*/_react["default"].createElement("div", null, "PhoneNumber"), /*#__PURE__*/_react["default"].createElement(_index.PhoneNumber, {
|
|
104
|
+
text: "1243123434543"
|
|
105
|
+
})), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
106
|
+
style: boxStyle
|
|
107
|
+
}, /*#__PURE__*/_react["default"].createElement("div", null, "PriorityText"), /*#__PURE__*/_react["default"].createElement(_index.PriorityText, {
|
|
108
|
+
text: "Antro Contact",
|
|
109
|
+
color: "red"
|
|
110
|
+
}), /*#__PURE__*/_react["default"].createElement(_index.PriorityText, {
|
|
111
|
+
text: "Antro Contact",
|
|
112
|
+
color: "green"
|
|
113
|
+
}), /*#__PURE__*/_react["default"].createElement(_index.PriorityText, {
|
|
114
|
+
text: "Antro Contact",
|
|
115
|
+
color: "gray"
|
|
116
|
+
}), /*#__PURE__*/_react["default"].createElement(_index.PriorityText, {
|
|
117
|
+
text: "Antro Contact",
|
|
118
|
+
color: "orange"
|
|
119
|
+
})), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
120
|
+
style: boxStyle
|
|
121
|
+
}, /*#__PURE__*/_react["default"].createElement("div", null, "SecondaryText"), /*#__PURE__*/_react["default"].createElement(_index.SecondaryText, {
|
|
122
|
+
text: "Antro Contact"
|
|
123
|
+
})), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
124
|
+
style: boxStyle
|
|
125
|
+
}, /*#__PURE__*/_react["default"].createElement("div", null, "StatusText"), /*#__PURE__*/_react["default"].createElement(_index.StatusText, {
|
|
126
|
+
text: "Antro Contact",
|
|
127
|
+
color: "red"
|
|
128
|
+
}), /*#__PURE__*/_react["default"].createElement(_index.StatusText, {
|
|
129
|
+
text: "Antro Contact",
|
|
130
|
+
color: "green"
|
|
131
|
+
}), /*#__PURE__*/_react["default"].createElement(_index.StatusText, {
|
|
132
|
+
text: "Antro Contact",
|
|
133
|
+
color: "gray"
|
|
134
|
+
}), /*#__PURE__*/_react["default"].createElement(_index.StatusText, {
|
|
135
|
+
text: "Antro Contact",
|
|
136
|
+
color: "orange"
|
|
137
|
+
}), /*#__PURE__*/_react["default"].createElement(_index.StatusText, {
|
|
138
|
+
text: "Antro Contact",
|
|
139
|
+
color: "black"
|
|
140
|
+
})), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
141
|
+
style: boxStyle
|
|
142
|
+
}, /*#__PURE__*/_react["default"].createElement("div", null, "TicketId"), /*#__PURE__*/_react["default"].createElement(_index.TicketId, {
|
|
143
|
+
text: "124213234"
|
|
144
|
+
})), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
145
|
+
style: boxStyle
|
|
146
|
+
}, /*#__PURE__*/_react["default"].createElement("div", null, "Website"), /*#__PURE__*/_react["default"].createElement(_index.Website, {
|
|
147
|
+
text: "https://www.zoho.com/"
|
|
148
|
+
}))));
|
|
149
|
+
}
|
|
150
|
+
}]);
|
|
151
|
+
|
|
152
|
+
return SecondaryText__default;
|
|
153
|
+
}(_react.Component);
|
|
154
|
+
|
|
155
|
+
exports["default"] = SecondaryText__default;
|
|
156
|
+
|
|
157
|
+
if (false) {
|
|
158
|
+
SecondaryText__default.docs = {
|
|
159
|
+
folderName: 'List',
|
|
160
|
+
componentGroup: 'SecondaryText'
|
|
161
|
+
};
|
|
162
|
+
}
|
|
@@ -21,9 +21,9 @@ var _DropDownHeading = _interopRequireDefault(require("@zohodesk/components/lib/
|
|
|
21
21
|
|
|
22
22
|
var _TextBoxIcon = _interopRequireDefault(require("@zohodesk/components/lib/TextBoxIcon/TextBoxIcon"));
|
|
23
23
|
|
|
24
|
-
var _Loader = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
24
|
+
var _Loader = _interopRequireDefault(require("@zohodesk/svg/lib/Loader/Loader"));
|
|
25
25
|
|
|
26
|
-
var _EmptySearch = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
26
|
+
var _EmptySearch = _interopRequireDefault(require("@zohodesk/svg/lib/emptystate/version3/EmptySearch"));
|
|
27
27
|
|
|
28
28
|
var _Common = require("@zohodesk/components/lib/utils/Common.js");
|
|
29
29
|
|
|
@@ -11,13 +11,13 @@ var _react = _interopRequireWildcard(require("react"));
|
|
|
11
11
|
|
|
12
12
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
13
|
|
|
14
|
-
var _EmptySearch = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
14
|
+
var _EmptySearch = _interopRequireDefault(require("@zohodesk/svg/lib/emptystate/version3/EmptySearch"));
|
|
15
15
|
|
|
16
|
-
var _EmptyAccounts = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
16
|
+
var _EmptyAccounts = _interopRequireDefault(require("@zohodesk/svg/lib/emptystate/version3/EmptyAccounts"));
|
|
17
17
|
|
|
18
|
-
var _EmptyContact = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
18
|
+
var _EmptyContact = _interopRequireDefault(require("@zohodesk/svg/lib/emptystate/version3/EmptyContact"));
|
|
19
19
|
|
|
20
|
-
var _EmptyProducts = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
20
|
+
var _EmptyProducts = _interopRequireDefault(require("@zohodesk/svg/lib/emptystate/version3/EmptyProducts"));
|
|
21
21
|
|
|
22
22
|
var _LookupEmptyPageModule = _interopRequireDefault(require("./LookupEmptyPage.module.css"));
|
|
23
23
|
|
|
@@ -29,7 +29,7 @@ var _Icon = _interopRequireDefault(require("@zohodesk/icons/lib/Icon"));
|
|
|
29
29
|
|
|
30
30
|
var _Layout = require("@zohodesk/components/lib/Layout");
|
|
31
31
|
|
|
32
|
-
var _Loader = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
32
|
+
var _Loader = _interopRequireDefault(require("@zohodesk/svg/lib/Loader/Loader"));
|
|
33
33
|
|
|
34
34
|
var _ViewDropDownModule = _interopRequireDefault(require("./ViewDropDown.module.css"));
|
|
35
35
|
|
package/lib/svg/PlusIcon.js
CHANGED
|
@@ -11,7 +11,7 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
11
11
|
|
|
12
12
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
13
|
|
|
14
|
-
var _SVG = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
14
|
+
var _SVG = _interopRequireDefault(require("@zohodesk/svg/lib/SVG/SVG"));
|
|
15
15
|
|
|
16
16
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
17
17
|
|
package/lib/svg/SnippetIcon.js
CHANGED
|
@@ -11,7 +11,7 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
11
11
|
|
|
12
12
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
13
|
|
|
14
|
-
var _SVG = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
14
|
+
var _SVG = _interopRequireDefault(require("@zohodesk/svg/lib/SVG/SVG"));
|
|
15
15
|
|
|
16
16
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
17
17
|
|
package/lib/svg/TemplateIcon.js
CHANGED
|
@@ -11,7 +11,7 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
11
11
|
|
|
12
12
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
13
|
|
|
14
|
-
var _SVG = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
14
|
+
var _SVG = _interopRequireDefault(require("@zohodesk/svg/lib/SVG/SVG"));
|
|
15
15
|
|
|
16
16
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
17
17
|
|
|
@@ -15,7 +15,7 @@ var _Layout = require("@zohodesk/components/lib/Layout");
|
|
|
15
15
|
|
|
16
16
|
var _CommonEmptyState = _interopRequireDefault(require("./../../../emptystate/CommonEmptyState/CommonEmptyState"));
|
|
17
17
|
|
|
18
|
-
var _ErrorInconvenience = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
18
|
+
var _ErrorInconvenience = _interopRequireDefault(require("@zohodesk/svg/lib/errorstate/version3/ErrorInconvenience"));
|
|
19
19
|
|
|
20
20
|
var _Button = _interopRequireDefault(require("@zohodesk/components/lib/Button/Button"));
|
|
21
21
|
|
|
@@ -15,7 +15,7 @@ var _Layout = require("@zohodesk/components/lib/Layout");
|
|
|
15
15
|
|
|
16
16
|
var _CommonEmptyState = _interopRequireDefault(require("../../../emptystate/CommonEmptyState/CommonEmptyState"));
|
|
17
17
|
|
|
18
|
-
var _ErrorOopsSomethingMiss = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
18
|
+
var _ErrorOopsSomethingMiss = _interopRequireDefault(require("@zohodesk/svg/lib/errorstate/version3/ErrorOopsSomethingMiss"));
|
|
19
19
|
|
|
20
20
|
var _Button = _interopRequireDefault(require("@zohodesk/components/lib/Button/Button"));
|
|
21
21
|
|
|
@@ -15,7 +15,7 @@ var _Layout = require("@zohodesk/components/lib/Layout");
|
|
|
15
15
|
|
|
16
16
|
var _CommonEmptyState = _interopRequireDefault(require("../../../emptystate/CommonEmptyState/CommonEmptyState"));
|
|
17
17
|
|
|
18
|
-
var _ErrorUnableToProcessRequest = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
18
|
+
var _ErrorUnableToProcessRequest = _interopRequireDefault(require("@zohodesk/svg/lib/errorstate/version3/ErrorUnableToProcessRequest"));
|
|
19
19
|
|
|
20
20
|
var _Button = _interopRequireDefault(require("@zohodesk/components/lib/Button/Button"));
|
|
21
21
|
|
|
@@ -15,7 +15,7 @@ var _Layout = require("@zohodesk/components/lib/Layout");
|
|
|
15
15
|
|
|
16
16
|
var _CommonEmptyState = _interopRequireDefault(require("../../../emptystate/CommonEmptyState/CommonEmptyState"));
|
|
17
17
|
|
|
18
|
-
var _ErrorUnauthorizedLogin = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
18
|
+
var _ErrorUnauthorizedLogin = _interopRequireDefault(require("@zohodesk/svg/lib/errorstate/version3/ErrorUnauthorizedLogin"));
|
|
19
19
|
|
|
20
20
|
var _Button = _interopRequireDefault(require("@zohodesk/components/lib/Button/Button"));
|
|
21
21
|
|
|
@@ -15,7 +15,7 @@ var _Layout = require("@zohodesk/components/lib/Layout");
|
|
|
15
15
|
|
|
16
16
|
var _CommonEmptyState = _interopRequireDefault(require("../../../emptystate/CommonEmptyState/CommonEmptyState"));
|
|
17
17
|
|
|
18
|
-
var _ErrorUrlNotFound = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
18
|
+
var _ErrorUrlNotFound = _interopRequireDefault(require("@zohodesk/svg/lib/errorstate/version3/ErrorUrlNotFound"));
|
|
19
19
|
|
|
20
20
|
var _Button = _interopRequireDefault(require("@zohodesk/components/lib/Button/Button"));
|
|
21
21
|
|
|
@@ -15,7 +15,7 @@ var _Layout = require("@zohodesk/components/lib/Layout");
|
|
|
15
15
|
|
|
16
16
|
var _CommonEmptyState = _interopRequireDefault(require("../../../emptystate/CommonEmptyState/CommonEmptyState"));
|
|
17
17
|
|
|
18
|
-
var _ErrorWillBeRightBack = _interopRequireDefault(require("@zohodesk/svg/lib/
|
|
18
|
+
var _ErrorWillBeRightBack = _interopRequireDefault(require("@zohodesk/svg/lib/errorstate/version3/ErrorWillBeRightBack"));
|
|
19
19
|
|
|
20
20
|
var _Button = _interopRequireDefault(require("@zohodesk/components/lib/Button/Button"));
|
|
21
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/dot",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.232",
|
|
4
4
|
"main": "lib/index",
|
|
5
5
|
"module": "es/index.js",
|
|
6
6
|
"jsnext:main": "es/index.js",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"velocity-react": "1.4.3",
|
|
36
36
|
"@zohodesk/variables": "1.0.0-beta.29",
|
|
37
37
|
"@zohodesk/i18n": "1.0.0-beta.7",
|
|
38
|
-
"@zohodesk/components": "1.0.0-alpha-
|
|
38
|
+
"@zohodesk/components": "1.0.0-alpha-247",
|
|
39
39
|
"@zohodesk/icons": "1.0.0-beta.109",
|
|
40
|
-
"@zohodesk/svg": "1.0.0-beta.
|
|
40
|
+
"@zohodesk/svg": "1.0.0-beta.49",
|
|
41
41
|
"@zohodesk/virtualizer": "1.0.3",
|
|
42
42
|
"react-sortable-hoc": "^0.8.3"
|
|
43
43
|
},
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"velocity-react": "1.4.3",
|
|
46
46
|
"@zohodesk/variables": "1.0.0-beta.29",
|
|
47
47
|
"@zohodesk/i18n": "1.0.0-beta.7",
|
|
48
|
-
"@zohodesk/components": "1.0.0-alpha-
|
|
48
|
+
"@zohodesk/components": "1.0.0-alpha-247",
|
|
49
49
|
"@zohodesk/icons": "1.0.0-beta.109",
|
|
50
|
-
"@zohodesk/svg": "1.0.0-beta.
|
|
50
|
+
"@zohodesk/svg": "1.0.0-beta.48"
|
|
51
51
|
},
|
|
52
52
|
"react-cli": {
|
|
53
53
|
"preprocess": {
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import React, { Component } from 'react';
|
|
2
|
-
import PropTypes from 'prop-types';
|
|
3
|
-
import ContactName from '../ContactName';
|
|
4
|
-
export default class ContactName__default extends Component {
|
|
5
|
-
constructor(props) {
|
|
6
|
-
super(props);
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
render() {
|
|
10
|
-
return /*#__PURE__*/React.createElement(ContactName, {
|
|
11
|
-
text: "Antro Contact",
|
|
12
|
-
isPaidUser: true
|
|
13
|
-
});
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
if (false) {
|
|
19
|
-
ContactName__default.docs = {
|
|
20
|
-
folderName: 'List',
|
|
21
|
-
componentGroup: 'ContactName'
|
|
22
|
-
};
|
|
23
|
-
}
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports["default"] = void 0;
|
|
9
|
-
|
|
10
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
11
|
-
|
|
12
|
-
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
|
-
|
|
14
|
-
var _ContactName = _interopRequireDefault(require("../ContactName"));
|
|
15
|
-
|
|
16
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
17
|
-
|
|
18
|
-
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
19
|
-
|
|
20
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
21
|
-
|
|
22
|
-
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
23
|
-
|
|
24
|
-
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
25
|
-
|
|
26
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
27
|
-
|
|
28
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
29
|
-
|
|
30
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
31
|
-
|
|
32
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
33
|
-
|
|
34
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
35
|
-
|
|
36
|
-
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
37
|
-
|
|
38
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
39
|
-
|
|
40
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
41
|
-
|
|
42
|
-
var ContactName__default = /*#__PURE__*/function (_Component) {
|
|
43
|
-
_inherits(ContactName__default, _Component);
|
|
44
|
-
|
|
45
|
-
var _super = _createSuper(ContactName__default);
|
|
46
|
-
|
|
47
|
-
function ContactName__default(props) {
|
|
48
|
-
_classCallCheck(this, ContactName__default);
|
|
49
|
-
|
|
50
|
-
return _super.call(this, props);
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
_createClass(ContactName__default, [{
|
|
54
|
-
key: "render",
|
|
55
|
-
value: function render() {
|
|
56
|
-
return /*#__PURE__*/_react["default"].createElement(_ContactName["default"], {
|
|
57
|
-
text: "Antro Contact",
|
|
58
|
-
isPaidUser: true
|
|
59
|
-
});
|
|
60
|
-
}
|
|
61
|
-
}]);
|
|
62
|
-
|
|
63
|
-
return ContactName__default;
|
|
64
|
-
}(_react.Component);
|
|
65
|
-
|
|
66
|
-
exports["default"] = ContactName__default;
|
|
67
|
-
|
|
68
|
-
if (false) {
|
|
69
|
-
ContactName__default.docs = {
|
|
70
|
-
folderName: 'List',
|
|
71
|
-
componentGroup: 'ContactName'
|
|
72
|
-
};
|
|
73
|
-
}
|