@zohodesk/dot 1.0.0-temp.888 → 1.0.0-temp.91
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 +13 -1
- package/es/ActionButton/ActionButton.js +2 -1
- package/es/alert/AlertLookup/AlertLookup.js +11 -4
- package/es/alert/AlertLookup/docs/AlertLookup__default.docs.js +4 -3
- package/es/dropdown/ToggleDropDown/ToggleDropDown.js +3 -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/status/StatusDropdown/StatusDropdown.js +3 -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/package.json +7 -6
package/README.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
In this Library, we Provide Some Basic Components to Build Your Application
|
|
4
4
|
|
|
5
|
+
# 1.0.0-beta.234
|
|
6
|
+
|
|
7
|
+
- AlertLookup V1 => isHtmlContent prop added
|
|
8
|
+
|
|
9
|
+
# 1.0.0-beta.233
|
|
10
|
+
|
|
11
|
+
- ToggleDropDown , StatusDropdown => preventParentScroll implemented
|
|
12
|
+
|
|
13
|
+
# 1.0.0-beta.232
|
|
14
|
+
|
|
15
|
+
- Svg path updated
|
|
16
|
+
|
|
5
17
|
# 1.0.0-beta.231
|
|
6
18
|
|
|
7
19
|
- :focus in css removed
|
|
@@ -62,7 +74,7 @@ In this Library, we Provide Some Basic Components to Build Your Application
|
|
|
62
74
|
|
|
63
75
|
# 1.0.0-beta.216
|
|
64
76
|
|
|
65
|
-
- CurrencyField => formatCurrency call if check fixed (
|
|
77
|
+
- CurrencyField => formatCurrency call if check fixed (value will formatted when isActive is false)
|
|
66
78
|
|
|
67
79
|
# 1.0.0-beta.215
|
|
68
80
|
|
|
@@ -173,4 +173,5 @@ ActionButton.propTypes = {
|
|
|
173
173
|
ActionButton.docs = {
|
|
174
174
|
componentGroup: 'Atom'
|
|
175
175
|
};
|
|
176
|
-
export default Popup(ActionButton);
|
|
176
|
+
export default Popup(ActionButton);
|
|
177
|
+
export const getActionButtonDynamicParentPopup = parentPopupName => Popup(ActionButton, parentPopupName);
|
|
@@ -90,7 +90,8 @@ export default class AlertLookup extends Component {
|
|
|
90
90
|
iconName,
|
|
91
91
|
iconClass,
|
|
92
92
|
iconSize,
|
|
93
|
-
customProps
|
|
93
|
+
customProps,
|
|
94
|
+
isHtmlContent
|
|
94
95
|
} = this.props;
|
|
95
96
|
const {
|
|
96
97
|
LookupProps = {},
|
|
@@ -120,7 +121,11 @@ export default class AlertLookup extends Component {
|
|
|
120
121
|
className: style.section
|
|
121
122
|
}, /*#__PURE__*/React.createElement("div", {
|
|
122
123
|
className: `${style.innerSection} ${sectionClassName}`
|
|
123
|
-
}, children ? children : /*#__PURE__*/React.createElement(React.Fragment, null,
|
|
124
|
+
}, children ? children : /*#__PURE__*/React.createElement(React.Fragment, null, isHtmlContent && message ? /*#__PURE__*/React.createElement("div", {
|
|
125
|
+
dangerouslySetInnerHTML: {
|
|
126
|
+
__html: message
|
|
127
|
+
}
|
|
128
|
+
}) : /*#__PURE__*/React.createElement("div", null, message), confirmationMessage && /*#__PURE__*/React.createElement("div", {
|
|
124
129
|
className: style.text
|
|
125
130
|
}, confirmationMessage))), submitText || onSubmitClick || cancelText || onCancelClick ? /*#__PURE__*/React.createElement(FormAction, {
|
|
126
131
|
size: "small",
|
|
@@ -172,7 +177,8 @@ AlertLookup.propTypes = {
|
|
|
172
177
|
PrimaryButtonProps: PropTypes.object,
|
|
173
178
|
SecondaryButtonProps: PropTypes.object
|
|
174
179
|
}),
|
|
175
|
-
onEsc: PropTypes.oneOf(['close', 'cancel'])
|
|
180
|
+
onEsc: PropTypes.oneOf(['close', 'cancel']),
|
|
181
|
+
isHtmlContent: PropTypes.bool
|
|
176
182
|
};
|
|
177
183
|
AlertLookup.defaultProps = {
|
|
178
184
|
isActive: false,
|
|
@@ -185,7 +191,8 @@ AlertLookup.defaultProps = {
|
|
|
185
191
|
customClass: '',
|
|
186
192
|
isDefaultFocus: true,
|
|
187
193
|
customProps: {},
|
|
188
|
-
onEsc: 'cancel'
|
|
194
|
+
onEsc: 'cancel',
|
|
195
|
+
isHtmlContent: false
|
|
189
196
|
};
|
|
190
197
|
|
|
191
198
|
if (false) {
|
|
@@ -80,12 +80,13 @@ export default class AlertLookup__default extends Component {
|
|
|
80
80
|
},
|
|
81
81
|
onCancelClick: this.onCancel,
|
|
82
82
|
title: "Delete Ticket",
|
|
83
|
-
message: "Deleting this Ticket will move their Activities, and Time Entry to the Recycle Bin
|
|
83
|
+
message: "<h2>Deleting this Ticket will move their Activities, and Time Entry to the Recycle Bin.</h2>",
|
|
84
84
|
confirmationMessage: "Would you like to delete?",
|
|
85
85
|
submitText: "Delete",
|
|
86
86
|
cancelText: "Cancel",
|
|
87
87
|
onClose: this.onClose,
|
|
88
|
-
onEsc: "close"
|
|
88
|
+
onEsc: "close",
|
|
89
|
+
isHtmlContent: true
|
|
89
90
|
}), /*#__PURE__*/React.createElement(AlertLookup, {
|
|
90
91
|
isActive: lookup === 'remoteAssist' ? true : false,
|
|
91
92
|
type: "remoteAssist",
|
|
@@ -95,7 +96,7 @@ export default class AlertLookup__default extends Component {
|
|
|
95
96
|
},
|
|
96
97
|
onCancelClick: this.onCancel,
|
|
97
98
|
title: "Remote Assist",
|
|
98
|
-
message: /*#__PURE__*/React.createElement("div", null, "You are about to send an invite for remote assistance to",
|
|
99
|
+
message: /*#__PURE__*/React.createElement("div", null, "You are about to send an invite for remote assistance to ", /*#__PURE__*/React.createElement("b", null, "antro.avemaxa@gmail.com")),
|
|
99
100
|
confirmationMessage: "Would you like to continue?",
|
|
100
101
|
submitText: "Continue",
|
|
101
102
|
cancelText: "Cancel"
|
|
@@ -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';
|
|
@@ -675,6 +675,7 @@ export class ToggleDropDown extends Component {
|
|
|
675
675
|
flexible: true,
|
|
676
676
|
shrink: true,
|
|
677
677
|
scroll: "vertical",
|
|
678
|
+
preventParentScroll: "vertical",
|
|
678
679
|
dataId: `${dataId}_list`,
|
|
679
680
|
className: `${tabletMode ? style.responsivemaxHgt : style.maxHgt}`,
|
|
680
681
|
eleRef: this.scrollContentRef,
|
|
@@ -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';
|
|
@@ -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';
|
|
@@ -402,6 +402,7 @@ export class StatusDropdown extends React.Component {
|
|
|
402
402
|
flexible: true,
|
|
403
403
|
shrink: true,
|
|
404
404
|
dataId: `${dataId}_list`,
|
|
405
|
+
preventParentScroll: "vertical",
|
|
405
406
|
className: `${tabletMode ? style.responsivemaxHgt : style.maxHgt}`,
|
|
406
407
|
eleRef: this.scrollContentRef,
|
|
407
408
|
onScroll: this.handleScroll,
|
|
@@ -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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/dot",
|
|
3
|
-
"version": "1.0.0-temp.
|
|
3
|
+
"version": "1.0.0-temp.91",
|
|
4
4
|
"main": "lib/index",
|
|
5
5
|
"module": "es/index.js",
|
|
6
6
|
"jsnext:main": "es/index.js",
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
"lintAllFix": "npm run lintAll --eslint:fix=true",
|
|
26
26
|
"test": "react-cli test",
|
|
27
27
|
"sstest": "react-cli sstest",
|
|
28
|
-
"
|
|
28
|
+
"common_package_build":"cd ../common && npm run build && cd ../components",
|
|
29
|
+
"docs": "npm run common_package_build && npm run dubCheck && react-cli docs",
|
|
29
30
|
"postpublish": "react-cli postpublish",
|
|
30
31
|
"download": "rm package-lock.json && rm -rf node_modules/ && npm install",
|
|
31
32
|
"expublish": "npm publish --tag experimental-version"
|
|
@@ -35,9 +36,9 @@
|
|
|
35
36
|
"velocity-react": "1.4.3",
|
|
36
37
|
"@zohodesk/variables": "1.0.0-beta.29",
|
|
37
38
|
"@zohodesk/i18n": "1.0.0-beta.7",
|
|
38
|
-
"@zohodesk/components": "1.0.0-alpha-
|
|
39
|
+
"@zohodesk/components": "1.0.0-alpha-248",
|
|
39
40
|
"@zohodesk/icons": "1.0.0-beta.109",
|
|
40
|
-
"@zohodesk/svg": "1.0.0-beta.
|
|
41
|
+
"@zohodesk/svg": "1.0.0-beta.49",
|
|
41
42
|
"@zohodesk/virtualizer": "1.0.3",
|
|
42
43
|
"react-sortable-hoc": "^0.8.3"
|
|
43
44
|
},
|
|
@@ -45,9 +46,9 @@
|
|
|
45
46
|
"velocity-react": "1.4.3",
|
|
46
47
|
"@zohodesk/variables": "1.0.0-beta.29",
|
|
47
48
|
"@zohodesk/i18n": "1.0.0-beta.7",
|
|
48
|
-
"@zohodesk/components": "1.0.0-alpha-
|
|
49
|
+
"@zohodesk/components": "1.0.0-alpha-248",
|
|
49
50
|
"@zohodesk/icons": "1.0.0-beta.109",
|
|
50
|
-
"@zohodesk/svg": "1.0.0-beta.
|
|
51
|
+
"@zohodesk/svg": "1.0.0-beta.48"
|
|
51
52
|
},
|
|
52
53
|
"react-cli": {
|
|
53
54
|
"preprocess": {
|