@zohodesk/dot 1.0.0-temp-150 → 1.0.0-temp-152
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 +9 -0
- package/es/FreezeLayer/FreezeLayer.js +5 -13
- package/es/layout/SetupDetailLayout/SetupDetailLayout.js +18 -3
- package/es/layout/SetupDetailLayout/props/defaultProps.js +4 -2
- package/es/layout/SetupDetailLayout/props/propTypes.js +10 -2
- package/lib/AlphabeticList/AlphabeticList.js +1 -1
- package/lib/AttachmentViewer/AttachmentImage.js +1 -1
- package/lib/ExternalLink/ExternalLink.js +1 -1
- package/lib/FreezeLayer/FreezeLayer.js +5 -13
- package/lib/ToastMessage/ToastMessage.js +2 -1
- package/lib/alert/AlertLookup/AlertLookup.js +1 -1
- package/lib/avatar/AvatarUser/AvatarUser.js +1 -1
- package/lib/form/fields/CheckBoxField/CheckBoxField.js +1 -1
- package/lib/form/fields/CurrencyField/CurrencyField.js +1 -1
- package/lib/form/fields/DateField/DateField.js +1 -1
- package/lib/form/fields/FieldContainer/FieldContainer.js +1 -1
- package/lib/form/fields/MultiSelectField/MultiSelectField.js +1 -1
- package/lib/form/fields/PhoneField/PhoneField.js +1 -1
- package/lib/form/fields/RadioField/RadioField.js +1 -1
- package/lib/form/fields/SelectField/SelectField.js +1 -1
- package/lib/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +1 -1
- package/lib/form/fields/TextBoxField/TextBoxField.js +1 -1
- package/lib/form/fields/TextEditor/TextEditor.js +2 -1
- package/lib/form/fields/TextEditorField/TextEditorField.js +1 -1
- package/lib/form/fields/TextEditorWrapper/TextEditorWrapper.js +1 -1
- package/lib/form/fields/TextareaField/TextareaField.js +1 -1
- package/lib/layout/SetupDetailLayout/SetupDetailLayout.js +18 -3
- package/lib/layout/SetupDetailLayout/props/defaultProps.js +4 -2
- package/lib/layout/SetupDetailLayout/props/propTypes.js +10 -2
- package/lib/list/ListStencils/ListStencils.js +1 -1
- package/lib/list/SecondaryText/AccountName.js +1 -1
- package/lib/list/SecondaryText/Email.js +1 -1
- package/lib/list/SecondaryText/HappinessRating.js +1 -1
- package/lib/list/SecondaryText/PhoneNumber.js +1 -1
- package/lib/list/SecondaryText/Website.js +1 -1
- package/lib/list/SecondryPanel/SecondryPanel.js +1 -1
- package/lib/list/status/StatusListItem/StatusListItem.js +1 -1
- package/lib/lookup/EmptyPage/EmptyPage.js +1 -1
- package/lib/lookup/Lookup/Lookup.js +1 -1
- package/lib/lookup/header/Close/Close.js +1 -1
- package/lib/lookup/header/ModuleHeader/ModuleHeader.js +1 -1
- package/lib/lookup/header/Search/Search.js +1 -1
- package/lib/lookup/header/TicketHeader/TicketHeader.js +1 -1
- package/lib/lookup/header/Title/Title.js +1 -1
- package/lib/lookup/header/ViewDropDown/ViewDropDown.js +1 -1
- package/lib/version2/AlertClose/AlertClose.js +1 -1
- package/lib/version2/lookup/AlertLookup/AlertLookup.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
In this Library, we Provide Some Basic Components to Build Your Application
|
|
4
4
|
|
|
5
|
+
# 1.0.0-beta.262
|
|
6
|
+
|
|
7
|
+
- **TextEditor** - pre tag css style added.
|
|
8
|
+
|
|
9
|
+
# 1.0.0-beta.261
|
|
10
|
+
|
|
11
|
+
- **TextEditor** - pre tag css style reverted.
|
|
12
|
+
- **FreezeLayer** - useDragger implementation reverted.
|
|
13
|
+
|
|
5
14
|
# 1.0.0-beta.260
|
|
6
15
|
|
|
7
16
|
- **TextEditor** - pre tag css style added.
|
|
@@ -8,7 +8,7 @@ import { useZIndex } from '@zohodesk/components/lib/Provider/ZindexProvider';
|
|
|
8
8
|
import cssJSLogic from './css/cssJSLogic';
|
|
9
9
|
import useFreezeLayer from './useFreezeLayer';
|
|
10
10
|
import style from './css/FreezeLayer.module.css';
|
|
11
|
-
import useDragger from '../Hooks/Dragger/useDragger';
|
|
11
|
+
// import useDragger from '../Hooks/Dragger/useDragger';
|
|
12
12
|
export default function FreezeLayer(props) {
|
|
13
13
|
let {
|
|
14
14
|
isActive: propsActive,
|
|
@@ -25,7 +25,7 @@ export default function FreezeLayer(props) {
|
|
|
25
25
|
customStyle
|
|
26
26
|
} = props;
|
|
27
27
|
const finalStyle = mergeStyle(style, customStyle);
|
|
28
|
-
const dragRef = useRef(null);
|
|
28
|
+
// const dragRef = useRef(null);
|
|
29
29
|
const {
|
|
30
30
|
freezeClass
|
|
31
31
|
} = cssJSLogic({
|
|
@@ -41,16 +41,8 @@ export default function FreezeLayer(props) {
|
|
|
41
41
|
isActive: propsActive,
|
|
42
42
|
onClick
|
|
43
43
|
});
|
|
44
|
-
let refEle = forwardRef || dragRef;
|
|
45
|
-
useDragger({
|
|
46
|
-
ParentRef: refEle,
|
|
47
|
-
boundaryLimit: {
|
|
48
|
-
top: 0,
|
|
49
|
-
left: 50,
|
|
50
|
-
right: 50,
|
|
51
|
-
bottom: 50
|
|
52
|
-
}
|
|
53
|
-
});
|
|
44
|
+
// let refEle = forwardRef || dragRef;
|
|
45
|
+
// useDragger({ ParentRef: refEle, boundaryLimit: { top: 0, left: 50, right: 50, bottom: 50 } });
|
|
54
46
|
return /*#__PURE__*/React.createElement(VelocityAnimationGroup, {
|
|
55
47
|
name: animationName && animationName,
|
|
56
48
|
isActive: isActive,
|
|
@@ -61,7 +53,7 @@ export default function FreezeLayer(props) {
|
|
|
61
53
|
} : {},
|
|
62
54
|
className: freezeClass,
|
|
63
55
|
onClick: handleClick,
|
|
64
|
-
ref:
|
|
56
|
+
ref: forwardRef
|
|
65
57
|
}, children && /*#__PURE__*/React.createElement(React.Fragment, null, childAnimationName ? /*#__PURE__*/React.createElement(VelocityAnimationGroup, {
|
|
66
58
|
name: childAnimationName,
|
|
67
59
|
isActive: isChildActive,
|
|
@@ -29,8 +29,13 @@ export default class SetupDetailLayout extends React.Component {
|
|
|
29
29
|
needHelpInfo,
|
|
30
30
|
getHelpInfo,
|
|
31
31
|
helpInfoTitle,
|
|
32
|
-
dataId
|
|
32
|
+
dataId,
|
|
33
|
+
i18nKeys
|
|
33
34
|
} = this.props;
|
|
35
|
+
const {
|
|
36
|
+
infoText = 'Help',
|
|
37
|
+
closeText = 'Close'
|
|
38
|
+
} = i18nKeys;
|
|
34
39
|
return /*#__PURE__*/React.createElement(Container, {
|
|
35
40
|
isScrollAttribute: true,
|
|
36
41
|
dataId: dataId
|
|
@@ -50,7 +55,8 @@ export default class SetupDetailLayout extends React.Component {
|
|
|
50
55
|
align: "vertical",
|
|
51
56
|
className: style.infoHeader
|
|
52
57
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
53
|
-
className: style.infoIcon
|
|
58
|
+
className: style.infoIcon,
|
|
59
|
+
"data-title": infoText
|
|
54
60
|
}, /*#__PURE__*/React.createElement(Icon, {
|
|
55
61
|
name: "ZD-info31"
|
|
56
62
|
})), /*#__PURE__*/React.createElement(Box, {
|
|
@@ -59,6 +65,7 @@ export default class SetupDetailLayout extends React.Component {
|
|
|
59
65
|
}, helpInfoTitle), /*#__PURE__*/React.createElement(Box, null, /*#__PURE__*/React.createElement("span", {
|
|
60
66
|
onClick: this.toggleHelpInfo,
|
|
61
67
|
className: style.infoClose,
|
|
68
|
+
"data-title": closeText,
|
|
62
69
|
"data-id": `${dataId}_close`
|
|
63
70
|
}, /*#__PURE__*/React.createElement(Icon, {
|
|
64
71
|
name: "ZD-close"
|
|
@@ -96,8 +103,13 @@ export class SetupHeader extends Component {
|
|
|
96
103
|
rightClassName,
|
|
97
104
|
isCustomizedHeader,
|
|
98
105
|
headerCustomStyle,
|
|
99
|
-
dataId
|
|
106
|
+
dataId,
|
|
107
|
+
i18nKeys
|
|
100
108
|
} = this.props;
|
|
109
|
+
const {
|
|
110
|
+
infoText = 'Help',
|
|
111
|
+
backText = 'Back'
|
|
112
|
+
} = i18nKeys;
|
|
101
113
|
return /*#__PURE__*/React.createElement(Box, {
|
|
102
114
|
className: isCustomizedHeader === true ? headerCustomStyle : style.header,
|
|
103
115
|
dataId: dataId
|
|
@@ -109,6 +121,7 @@ export class SetupHeader extends Component {
|
|
|
109
121
|
}, needBack ? /*#__PURE__*/React.createElement("span", {
|
|
110
122
|
className: style.backIcon,
|
|
111
123
|
onClick: onBackClick,
|
|
124
|
+
"data-title": backText,
|
|
112
125
|
"data-id": `${dataId}_back`
|
|
113
126
|
}, /*#__PURE__*/React.createElement(Icon, {
|
|
114
127
|
name: "ZD-back"
|
|
@@ -138,12 +151,14 @@ export class SetupHeader extends Component {
|
|
|
138
151
|
}, /*#__PURE__*/React.createElement("span", {
|
|
139
152
|
className: style.helpInfo,
|
|
140
153
|
onClick: openHelpInfo,
|
|
154
|
+
"data-title": infoText,
|
|
141
155
|
"data-id": `${dataId}_info`
|
|
142
156
|
}, /*#__PURE__*/React.createElement(Icon, {
|
|
143
157
|
name: "ZD-info31"
|
|
144
158
|
}))) : /*#__PURE__*/React.createElement("span", {
|
|
145
159
|
className: `${style.helpInfo} ${style.mr15}`,
|
|
146
160
|
onClick: openHelpInfo,
|
|
161
|
+
"data-title": infoText,
|
|
147
162
|
"data-id": `${dataId}_info`
|
|
148
163
|
}, /*#__PURE__*/React.createElement(Icon, {
|
|
149
164
|
name: "ZD-info31"
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
export const SetupDetailLayout_defaultProps = {
|
|
2
2
|
helpInfoTitle: 'Page Tips',
|
|
3
3
|
needHelpInfo: false,
|
|
4
|
-
dataId: 'SetupDetailLayout'
|
|
4
|
+
dataId: 'SetupDetailLayout',
|
|
5
|
+
i18nKeys: {}
|
|
5
6
|
};
|
|
6
7
|
export const SetupHeader_defaultProps = {
|
|
7
8
|
needBack: false,
|
|
8
9
|
needHelpInfo: false,
|
|
9
10
|
needHelpInfoWrapper: false,
|
|
10
|
-
dataId: 'SetupHeader'
|
|
11
|
+
dataId: 'SetupHeader',
|
|
12
|
+
i18nKeys: {}
|
|
11
13
|
};
|
|
12
14
|
export const SetupContent_defaultProps = {
|
|
13
15
|
needPadding: true,
|
|
@@ -4,7 +4,11 @@ export const SetupDetailLayout_propTypes = {
|
|
|
4
4
|
dataId: PropTypes.string,
|
|
5
5
|
getHelpInfo: PropTypes.func,
|
|
6
6
|
helpInfoTitle: PropTypes.string,
|
|
7
|
-
needHelpInfo: PropTypes.bool
|
|
7
|
+
needHelpInfo: PropTypes.bool,
|
|
8
|
+
i18nKeys: PropTypes.shape({
|
|
9
|
+
infoText: PropTypes.string,
|
|
10
|
+
closeText: PropTypes.string
|
|
11
|
+
})
|
|
8
12
|
};
|
|
9
13
|
export const SetupHeader_propTypes = {
|
|
10
14
|
dataId: PropTypes.string,
|
|
@@ -19,7 +23,11 @@ export const SetupHeader_propTypes = {
|
|
|
19
23
|
onBackClick: PropTypes.func,
|
|
20
24
|
openHelpInfo: PropTypes.func,
|
|
21
25
|
rightClassName: PropTypes.string,
|
|
22
|
-
title: PropTypes.string
|
|
26
|
+
title: PropTypes.string,
|
|
27
|
+
i18nKeys: PropTypes.shape({
|
|
28
|
+
infoText: PropTypes.string,
|
|
29
|
+
backText: PropTypes.string
|
|
30
|
+
})
|
|
23
31
|
};
|
|
24
32
|
export const SetupContent_propTypes = {
|
|
25
33
|
children: PropTypes.element,
|
|
@@ -22,7 +22,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
22
22
|
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); }
|
|
23
23
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
24
24
|
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; } }
|
|
25
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
25
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /*** Libraries ***/ /*** CSS ***/
|
|
26
26
|
var AlphabeticList = /*#__PURE__*/function (_React$PureComponent) {
|
|
27
27
|
_inherits(AlphabeticList, _React$PureComponent);
|
|
28
28
|
var _super = _createSuper(AlphabeticList);
|
|
@@ -24,7 +24,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
24
24
|
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); }
|
|
25
25
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
26
26
|
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; } }
|
|
27
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
27
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /* eslint-disable css-modules/no-unused-class */ /** * Libraries ** */ /** * CSS ** */
|
|
28
28
|
var AttachmentImage = /*#__PURE__*/function (_Component) {
|
|
29
29
|
_inherits(AttachmentImage, _Component);
|
|
30
30
|
var _super = _createSuper(AttachmentImage);
|
|
@@ -22,7 +22,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
22
22
|
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); }
|
|
23
23
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
24
24
|
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; } }
|
|
25
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
25
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** CSS ****/
|
|
26
26
|
var ExternalLink = /*#__PURE__*/function (_React$Component) {
|
|
27
27
|
_inherits(ExternalLink, _React$Component);
|
|
28
28
|
var _super = _createSuper(ExternalLink);
|
|
@@ -15,10 +15,10 @@ var _ZindexProvider = require("@zohodesk/components/lib/Provider/ZindexProvider"
|
|
|
15
15
|
var _cssJSLogic2 = _interopRequireDefault(require("./css/cssJSLogic"));
|
|
16
16
|
var _useFreezeLayer2 = _interopRequireDefault(require("./useFreezeLayer"));
|
|
17
17
|
var _FreezeLayerModule = _interopRequireDefault(require("./css/FreezeLayer.module.css"));
|
|
18
|
-
var _useDragger = _interopRequireDefault(require("../Hooks/Dragger/useDragger"));
|
|
19
18
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
20
19
|
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); }
|
|
21
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
|
+
// import useDragger from '../Hooks/Dragger/useDragger';
|
|
22
22
|
function FreezeLayer(props) {
|
|
23
23
|
var propsActive = props.isActive,
|
|
24
24
|
children = props.children,
|
|
@@ -33,7 +33,7 @@ function FreezeLayer(props) {
|
|
|
33
33
|
needAutoZindex = props.needAutoZindex,
|
|
34
34
|
customStyle = props.customStyle;
|
|
35
35
|
var finalStyle = (0, _utils.mergeStyle)(_FreezeLayerModule["default"], customStyle);
|
|
36
|
-
|
|
36
|
+
// const dragRef = useRef(null);
|
|
37
37
|
var _cssJSLogic = (0, _cssJSLogic2["default"])({
|
|
38
38
|
props: props,
|
|
39
39
|
style: finalStyle
|
|
@@ -47,16 +47,8 @@ function FreezeLayer(props) {
|
|
|
47
47
|
isActive = _useFreezeLayer.isActive,
|
|
48
48
|
isChildActive = _useFreezeLayer.isChildActive,
|
|
49
49
|
handleClick = _useFreezeLayer.handleClick;
|
|
50
|
-
|
|
51
|
-
(0,
|
|
52
|
-
ParentRef: refEle,
|
|
53
|
-
boundaryLimit: {
|
|
54
|
-
top: 0,
|
|
55
|
-
left: 50,
|
|
56
|
-
right: 50,
|
|
57
|
-
bottom: 50
|
|
58
|
-
}
|
|
59
|
-
});
|
|
50
|
+
// let refEle = forwardRef || dragRef;
|
|
51
|
+
// useDragger({ ParentRef: refEle, boundaryLimit: { top: 0, left: 50, right: 50, bottom: 50 } });
|
|
60
52
|
return /*#__PURE__*/_react["default"].createElement(_VelocityAnimationGroup["default"], {
|
|
61
53
|
name: animationName && animationName,
|
|
62
54
|
isActive: isActive,
|
|
@@ -67,7 +59,7 @@ function FreezeLayer(props) {
|
|
|
67
59
|
} : {},
|
|
68
60
|
className: freezeClass,
|
|
69
61
|
onClick: handleClick,
|
|
70
|
-
ref:
|
|
62
|
+
ref: forwardRef
|
|
71
63
|
}, children && /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, childAnimationName ? /*#__PURE__*/_react["default"].createElement(_VelocityAnimationGroup["default"], {
|
|
72
64
|
name: childAnimationName,
|
|
73
65
|
isActive: isChildActive,
|
|
@@ -25,7 +25,8 @@ function _nonIterableRest() { throw new TypeError("Invalid attempt to destructur
|
|
|
25
25
|
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
26
26
|
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
27
27
|
function _iterableToArrayLimit(arr, i) { var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"]; if (null != _i) { var _s, _e, _x, _r, _arr = [], _n = !0, _d = !1; try { if (_x = (_i = _i.call(arr)).next, 0 === i) { if (Object(_i) !== _i) return; _n = !1; } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0); } catch (err) { _d = !0, _e = err; } finally { try { if (!_n && null != _i["return"] && (_r = _i["return"](), Object(_r) !== _r)) return; } finally { if (_d) throw _e; } } return _arr; } }
|
|
28
|
-
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
28
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } //components
|
|
29
|
+
//style
|
|
29
30
|
function ToastMessageUI(props) {
|
|
30
31
|
var _useState = (0, _react.useState)(props.messageState),
|
|
31
32
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -29,7 +29,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
29
29
|
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); }
|
|
30
30
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
31
31
|
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; } }
|
|
32
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
32
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/ /**** CSS ****/
|
|
33
33
|
var AlertLookup = /*#__PURE__*/function (_Component) {
|
|
34
34
|
_inherits(AlertLookup, _Component);
|
|
35
35
|
var _super = _createSuper(AlertLookup);
|
|
@@ -25,7 +25,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
25
25
|
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); }
|
|
26
26
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
27
27
|
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; } }
|
|
28
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
28
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/
|
|
29
29
|
/**** Methods ****/
|
|
30
30
|
var AvatarUser = /*#__PURE__*/function (_React$Component) {
|
|
31
31
|
_inherits(AvatarUser, _React$Component);
|
|
@@ -29,7 +29,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
29
29
|
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); }
|
|
30
30
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
31
31
|
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; } }
|
|
32
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
32
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/ /**** CSS ****/
|
|
33
33
|
var CheckBoxField = /*#__PURE__*/function (_PureComponent) {
|
|
34
34
|
_inherits(CheckBoxField, _PureComponent);
|
|
35
35
|
var _super = _createSuper(CheckBoxField);
|
|
@@ -29,7 +29,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
29
29
|
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); }
|
|
30
30
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
31
31
|
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; } }
|
|
32
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
32
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/ /**** CSS ****/
|
|
33
33
|
var CurrencyField = /*#__PURE__*/function (_PureComponent) {
|
|
34
34
|
_inherits(CurrencyField, _PureComponent);
|
|
35
35
|
var _super = _createSuper(CurrencyField);
|
|
@@ -29,7 +29,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
29
29
|
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); }
|
|
30
30
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
31
31
|
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; } }
|
|
32
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
32
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/ /**** CSS ****/
|
|
33
33
|
var DateField = /*#__PURE__*/function (_PureComponent) {
|
|
34
34
|
_inherits(DateField, _PureComponent);
|
|
35
35
|
var _super = _createSuper(DateField);
|
|
@@ -25,7 +25,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
25
25
|
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); }
|
|
26
26
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
27
27
|
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; } }
|
|
28
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
28
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/ /**** Icons ****/ /**** CSS ****/
|
|
29
29
|
var FieldContainer = /*#__PURE__*/function (_PureComponent) {
|
|
30
30
|
_inherits(FieldContainer, _PureComponent);
|
|
31
31
|
var _super = _createSuper(FieldContainer);
|
|
@@ -29,7 +29,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
29
29
|
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); }
|
|
30
30
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
31
31
|
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; } }
|
|
32
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
32
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/ /** CSS */
|
|
33
33
|
var MultiSelectField = /*#__PURE__*/function (_PureComponent) {
|
|
34
34
|
_inherits(MultiSelectField, _PureComponent);
|
|
35
35
|
var _super = _createSuper(MultiSelectField);
|
|
@@ -29,7 +29,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
29
29
|
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); }
|
|
30
30
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
31
31
|
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; } }
|
|
32
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
32
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/ /**** CSS ****/
|
|
33
33
|
var PhoneField = /*#__PURE__*/function (_PureComponent) {
|
|
34
34
|
_inherits(PhoneField, _PureComponent);
|
|
35
35
|
var _super = _createSuper(PhoneField);
|
|
@@ -27,7 +27,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
27
27
|
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); }
|
|
28
28
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
29
29
|
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; } }
|
|
30
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
30
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/ /** Css */
|
|
31
31
|
var RadioField = /*#__PURE__*/function (_PureComponent) {
|
|
32
32
|
_inherits(RadioField, _PureComponent);
|
|
33
33
|
var _super = _createSuper(RadioField);
|
|
@@ -29,7 +29,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
29
29
|
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); }
|
|
30
30
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
31
31
|
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; } }
|
|
32
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
32
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/ /**** props ****/ /** CSS */
|
|
33
33
|
var SelectField = /*#__PURE__*/function (_PureComponent) {
|
|
34
34
|
_inherits(SelectField, _PureComponent);
|
|
35
35
|
var _super = _createSuper(SelectField);
|
|
@@ -25,7 +25,7 @@ function _nonIterableRest() { throw new TypeError("Invalid attempt to destructur
|
|
|
25
25
|
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
26
26
|
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
27
27
|
function _iterableToArrayLimit(arr, i) { var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"]; if (null != _i) { var _s, _e, _x, _r, _arr = [], _n = !0, _d = !1; try { if (_x = (_i = _i.call(arr)).next, 0 === i) { if (Object(_i) !== _i) return; _n = !1; } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0); } catch (err) { _d = !0, _e = err; } finally { try { if (!_n && null != _i["return"] && (_r = _i["return"](), Object(_r) !== _r)) return; } finally { if (_d) throw _e; } } return _arr; } }
|
|
28
|
-
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
28
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } /**** css ****/
|
|
29
29
|
var TagsMultiSelectField = function TagsMultiSelectField(props) {
|
|
30
30
|
var _useState = (0, _react.useState)(0),
|
|
31
31
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -29,7 +29,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
29
29
|
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); }
|
|
30
30
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
31
31
|
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; } }
|
|
32
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
32
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/ /**** CSS ****/
|
|
33
33
|
var TextBoxField = /*#__PURE__*/function (_PureComponent) {
|
|
34
34
|
_inherits(TextBoxField, _PureComponent);
|
|
35
35
|
var _super = _createSuper(TextBoxField);
|
|
@@ -27,7 +27,8 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
27
27
|
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); }
|
|
28
28
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
29
29
|
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; } }
|
|
30
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
30
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /***** Libraries *****/ /***** Methods *****/ //import './ZohoDeskEditor_Init';
|
|
31
|
+
/***** components *****/
|
|
31
32
|
/* eslint-disable camelcase */
|
|
32
33
|
/* eslint-disable no-undef */
|
|
33
34
|
/* eslint-disable react/no-deprecated */
|
|
@@ -28,7 +28,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
28
28
|
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); }
|
|
29
29
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
30
30
|
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; } }
|
|
31
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
31
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/ /** Css */
|
|
32
32
|
var TextEditorField = /*#__PURE__*/function (_PureComponent) {
|
|
33
33
|
_inherits(TextEditorField, _PureComponent);
|
|
34
34
|
var _super = _createSuper(TextEditorField);
|
|
@@ -28,7 +28,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
28
28
|
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); }
|
|
29
29
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
30
30
|
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; } }
|
|
31
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
31
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Components ****/
|
|
32
32
|
/* eslint-disable react/no-deprecated */
|
|
33
33
|
var TextEditorWrapper = /*#__PURE__*/function (_Component) {
|
|
34
34
|
_inherits(TextEditorWrapper, _Component);
|
|
@@ -29,7 +29,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
29
29
|
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); }
|
|
30
30
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
31
31
|
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; } }
|
|
32
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
32
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/ /**** CSS ****/
|
|
33
33
|
var TextareaField = /*#__PURE__*/function (_PureComponent) {
|
|
34
34
|
_inherits(TextareaField, _PureComponent);
|
|
35
35
|
var _super = _createSuper(TextareaField);
|
|
@@ -57,7 +57,12 @@ var SetupDetailLayout = /*#__PURE__*/function (_React$Component) {
|
|
|
57
57
|
needHelpInfo = _this$props.needHelpInfo,
|
|
58
58
|
getHelpInfo = _this$props.getHelpInfo,
|
|
59
59
|
helpInfoTitle = _this$props.helpInfoTitle,
|
|
60
|
-
dataId = _this$props.dataId
|
|
60
|
+
dataId = _this$props.dataId,
|
|
61
|
+
i18nKeys = _this$props.i18nKeys;
|
|
62
|
+
var _i18nKeys$infoText = i18nKeys.infoText,
|
|
63
|
+
infoText = _i18nKeys$infoText === void 0 ? 'Help' : _i18nKeys$infoText,
|
|
64
|
+
_i18nKeys$closeText = i18nKeys.closeText,
|
|
65
|
+
closeText = _i18nKeys$closeText === void 0 ? 'Close' : _i18nKeys$closeText;
|
|
61
66
|
return /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
62
67
|
isScrollAttribute: true,
|
|
63
68
|
dataId: dataId
|
|
@@ -77,7 +82,8 @@ var SetupDetailLayout = /*#__PURE__*/function (_React$Component) {
|
|
|
77
82
|
align: "vertical",
|
|
78
83
|
className: _SetupDetailLayoutModule["default"].infoHeader
|
|
79
84
|
}, /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
80
|
-
className: _SetupDetailLayoutModule["default"].infoIcon
|
|
85
|
+
className: _SetupDetailLayoutModule["default"].infoIcon,
|
|
86
|
+
"data-title": infoText
|
|
81
87
|
}, /*#__PURE__*/_react["default"].createElement(_icons.Icon, {
|
|
82
88
|
name: "ZD-info31"
|
|
83
89
|
})), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
@@ -86,6 +92,7 @@ var SetupDetailLayout = /*#__PURE__*/function (_React$Component) {
|
|
|
86
92
|
}, helpInfoTitle), /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, /*#__PURE__*/_react["default"].createElement("span", {
|
|
87
93
|
onClick: this.toggleHelpInfo,
|
|
88
94
|
className: _SetupDetailLayoutModule["default"].infoClose,
|
|
95
|
+
"data-title": closeText,
|
|
89
96
|
"data-id": "".concat(dataId, "_close")
|
|
90
97
|
}, /*#__PURE__*/_react["default"].createElement(_icons.Icon, {
|
|
91
98
|
name: "ZD-close"
|
|
@@ -130,7 +137,12 @@ var SetupHeader = /*#__PURE__*/function (_Component) {
|
|
|
130
137
|
rightClassName = _this$props2.rightClassName,
|
|
131
138
|
isCustomizedHeader = _this$props2.isCustomizedHeader,
|
|
132
139
|
headerCustomStyle = _this$props2.headerCustomStyle,
|
|
133
|
-
dataId = _this$props2.dataId
|
|
140
|
+
dataId = _this$props2.dataId,
|
|
141
|
+
i18nKeys = _this$props2.i18nKeys;
|
|
142
|
+
var _i18nKeys$infoText2 = i18nKeys.infoText,
|
|
143
|
+
infoText = _i18nKeys$infoText2 === void 0 ? 'Help' : _i18nKeys$infoText2,
|
|
144
|
+
_i18nKeys$backText = i18nKeys.backText,
|
|
145
|
+
backText = _i18nKeys$backText === void 0 ? 'Back' : _i18nKeys$backText;
|
|
134
146
|
return /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
135
147
|
className: isCustomizedHeader === true ? headerCustomStyle : _SetupDetailLayoutModule["default"].header,
|
|
136
148
|
dataId: dataId
|
|
@@ -142,6 +154,7 @@ var SetupHeader = /*#__PURE__*/function (_Component) {
|
|
|
142
154
|
}, needBack ? /*#__PURE__*/_react["default"].createElement("span", {
|
|
143
155
|
className: _SetupDetailLayoutModule["default"].backIcon,
|
|
144
156
|
onClick: onBackClick,
|
|
157
|
+
"data-title": backText,
|
|
145
158
|
"data-id": "".concat(dataId, "_back")
|
|
146
159
|
}, /*#__PURE__*/_react["default"].createElement(_icons.Icon, {
|
|
147
160
|
name: "ZD-back"
|
|
@@ -171,12 +184,14 @@ var SetupHeader = /*#__PURE__*/function (_Component) {
|
|
|
171
184
|
}, /*#__PURE__*/_react["default"].createElement("span", {
|
|
172
185
|
className: _SetupDetailLayoutModule["default"].helpInfo,
|
|
173
186
|
onClick: openHelpInfo,
|
|
187
|
+
"data-title": infoText,
|
|
174
188
|
"data-id": "".concat(dataId, "_info")
|
|
175
189
|
}, /*#__PURE__*/_react["default"].createElement(_icons.Icon, {
|
|
176
190
|
name: "ZD-info31"
|
|
177
191
|
}))) : /*#__PURE__*/_react["default"].createElement("span", {
|
|
178
192
|
className: "".concat(_SetupDetailLayoutModule["default"].helpInfo, " ").concat(_SetupDetailLayoutModule["default"].mr15),
|
|
179
193
|
onClick: openHelpInfo,
|
|
194
|
+
"data-title": infoText,
|
|
180
195
|
"data-id": "".concat(dataId, "_info")
|
|
181
196
|
}, /*#__PURE__*/_react["default"].createElement(_icons.Icon, {
|
|
182
197
|
name: "ZD-info31"
|
|
@@ -7,14 +7,16 @@ exports.SetupHeader_defaultProps = exports.SetupFooter_defaultProps = exports.Se
|
|
|
7
7
|
var SetupDetailLayout_defaultProps = {
|
|
8
8
|
helpInfoTitle: 'Page Tips',
|
|
9
9
|
needHelpInfo: false,
|
|
10
|
-
dataId: 'SetupDetailLayout'
|
|
10
|
+
dataId: 'SetupDetailLayout',
|
|
11
|
+
i18nKeys: {}
|
|
11
12
|
};
|
|
12
13
|
exports.SetupDetailLayout_defaultProps = SetupDetailLayout_defaultProps;
|
|
13
14
|
var SetupHeader_defaultProps = {
|
|
14
15
|
needBack: false,
|
|
15
16
|
needHelpInfo: false,
|
|
16
17
|
needHelpInfoWrapper: false,
|
|
17
|
-
dataId: 'SetupHeader'
|
|
18
|
+
dataId: 'SetupHeader',
|
|
19
|
+
i18nKeys: {}
|
|
18
20
|
};
|
|
19
21
|
exports.SetupHeader_defaultProps = SetupHeader_defaultProps;
|
|
20
22
|
var SetupContent_defaultProps = {
|
|
@@ -11,7 +11,11 @@ var SetupDetailLayout_propTypes = {
|
|
|
11
11
|
dataId: _propTypes["default"].string,
|
|
12
12
|
getHelpInfo: _propTypes["default"].func,
|
|
13
13
|
helpInfoTitle: _propTypes["default"].string,
|
|
14
|
-
needHelpInfo: _propTypes["default"].bool
|
|
14
|
+
needHelpInfo: _propTypes["default"].bool,
|
|
15
|
+
i18nKeys: _propTypes["default"].shape({
|
|
16
|
+
infoText: _propTypes["default"].string,
|
|
17
|
+
closeText: _propTypes["default"].string
|
|
18
|
+
})
|
|
15
19
|
};
|
|
16
20
|
exports.SetupDetailLayout_propTypes = SetupDetailLayout_propTypes;
|
|
17
21
|
var SetupHeader_propTypes = {
|
|
@@ -27,7 +31,11 @@ var SetupHeader_propTypes = {
|
|
|
27
31
|
onBackClick: _propTypes["default"].func,
|
|
28
32
|
openHelpInfo: _propTypes["default"].func,
|
|
29
33
|
rightClassName: _propTypes["default"].string,
|
|
30
|
-
title: _propTypes["default"].string
|
|
34
|
+
title: _propTypes["default"].string,
|
|
35
|
+
i18nKeys: _propTypes["default"].shape({
|
|
36
|
+
infoText: _propTypes["default"].string,
|
|
37
|
+
backText: _propTypes["default"].string
|
|
38
|
+
})
|
|
31
39
|
};
|
|
32
40
|
exports.SetupHeader_propTypes = SetupHeader_propTypes;
|
|
33
41
|
var SetupContent_propTypes = {
|
|
@@ -24,7 +24,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
24
24
|
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); }
|
|
25
25
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
26
26
|
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; } }
|
|
27
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
27
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /*** Libraries ***/ /*** Components ***/ /*** CSS ***/
|
|
28
28
|
var ListStencils = /*#__PURE__*/function (_Component) {
|
|
29
29
|
_inherits(ListStencils, _Component);
|
|
30
30
|
var _super = _createSuper(ListStencils);
|
|
@@ -26,7 +26,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
26
26
|
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); }
|
|
27
27
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
28
28
|
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; } }
|
|
29
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
29
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /* eslint-disable react/forbid-component-props */ /**** Libraries ****/ /**** Components ****/ /**** CSS ****/
|
|
30
30
|
var AccountName = /*#__PURE__*/function (_Component) {
|
|
31
31
|
_inherits(AccountName, _Component);
|
|
32
32
|
var _super = _createSuper(AccountName);
|
|
@@ -25,7 +25,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
25
25
|
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); }
|
|
26
26
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
27
27
|
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; } }
|
|
28
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
28
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /* eslint-disable react/forbid-component-props */ /**** Libraries ****/ /**** Components ****/ /**** CSS ****/
|
|
29
29
|
var Email = /*#__PURE__*/function (_Component) {
|
|
30
30
|
_inherits(Email, _Component);
|
|
31
31
|
var _super = _createSuper(Email);
|
|
@@ -22,7 +22,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
22
22
|
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); }
|
|
23
23
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
24
24
|
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; } }
|
|
25
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
25
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** CSS ****/
|
|
26
26
|
var HappinessRating = /*#__PURE__*/function (_Component) {
|
|
27
27
|
_inherits(HappinessRating, _Component);
|
|
28
28
|
var _super = _createSuper(HappinessRating);
|
|
@@ -25,7 +25,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
25
25
|
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); }
|
|
26
26
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
27
27
|
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; } }
|
|
28
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
28
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /* eslint-disable react/forbid-component-props */ /**** Libraries ****/ /**** Components ****/ /**** CSS ****/
|
|
29
29
|
var PhoneNumber = /*#__PURE__*/function (_Component) {
|
|
30
30
|
_inherits(PhoneNumber, _Component);
|
|
31
31
|
var _super = _createSuper(PhoneNumber);
|
|
@@ -24,7 +24,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
24
24
|
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); }
|
|
25
25
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
26
26
|
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; } }
|
|
27
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
27
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /* eslint-disable react/forbid-component-props */ /**** Libraries ****/ /**** Components ****/ /**** CSS ****/
|
|
28
28
|
var Website = /*#__PURE__*/function (_Component) {
|
|
29
29
|
_inherits(Website, _Component);
|
|
30
30
|
var _super = _createSuper(Website);
|
|
@@ -26,7 +26,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
26
26
|
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); }
|
|
27
27
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
28
28
|
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; } }
|
|
29
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
29
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/ /**** CSS ****/
|
|
30
30
|
var SecondryPanel = /*#__PURE__*/function (_Component) {
|
|
31
31
|
_inherits(SecondryPanel, _Component);
|
|
32
32
|
var _super = _createSuper(SecondryPanel);
|
|
@@ -25,7 +25,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
25
25
|
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); }
|
|
26
26
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
27
27
|
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; } }
|
|
28
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
28
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/ /**** CSS ****/
|
|
29
29
|
var StatusListItem = /*#__PURE__*/function (_React$Component) {
|
|
30
30
|
_inherits(StatusListItem, _React$Component);
|
|
31
31
|
var _super = _createSuper(StatusListItem);
|
|
@@ -27,7 +27,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
27
27
|
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); }
|
|
28
28
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
29
29
|
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; } }
|
|
30
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
30
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /*** Libraries ***/ /*** CSS ***/
|
|
31
31
|
var EmptyPage = /*#__PURE__*/function (_Component) {
|
|
32
32
|
_inherits(EmptyPage, _Component);
|
|
33
33
|
var _super = _createSuper(EmptyPage);
|
|
@@ -26,7 +26,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
26
26
|
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); }
|
|
27
27
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
28
28
|
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; } }
|
|
29
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
29
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /*** Libraries ***/ /*** Components ***/ /*** CSS ***/
|
|
30
30
|
/*eslint-disable react/forbid-component-props */
|
|
31
31
|
var Lookup = /*#__PURE__*/function (_Component) {
|
|
32
32
|
_inherits(Lookup, _Component);
|
|
@@ -23,7 +23,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
23
23
|
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); }
|
|
24
24
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
25
25
|
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; } }
|
|
26
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
26
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /*** Libraries ***/ /*** FontIcons ***/
|
|
27
27
|
var Close = /*#__PURE__*/function (_PureComponent) {
|
|
28
28
|
_inherits(Close, _PureComponent);
|
|
29
29
|
var _super = _createSuper(Close);
|
|
@@ -28,7 +28,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
28
28
|
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); }
|
|
29
29
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
30
30
|
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; } }
|
|
31
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
31
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /*** Libraries ***/ /*** Components ***/ /*** CSS ***/
|
|
32
32
|
/*eslint-disable react/forbid-component-props */
|
|
33
33
|
var ModuleHeader = /*#__PURE__*/function (_PureComponent) {
|
|
34
34
|
_inherits(ModuleHeader, _PureComponent);
|
|
@@ -30,7 +30,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
30
30
|
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); }
|
|
31
31
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
32
32
|
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; } }
|
|
33
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
33
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /* eslint-disable react/forbid-component-props */ /*** Libraries ***/ /** * Components ** */ /** * Methods ** */ /** * CSS ** */
|
|
34
34
|
var Search = /*#__PURE__*/function (_Component) {
|
|
35
35
|
_inherits(Search, _Component);
|
|
36
36
|
var _super = _createSuper(Search);
|
|
@@ -30,7 +30,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
30
30
|
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); }
|
|
31
31
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
32
32
|
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; } }
|
|
33
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
33
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /*** Libraries ***/ /*** Components ***/ /*** CSS ***/
|
|
34
34
|
/* eslint-disable react/forbid-component-props */
|
|
35
35
|
var TicketHeader = /*#__PURE__*/function (_Component) {
|
|
36
36
|
_inherits(TicketHeader, _Component);
|
|
@@ -23,7 +23,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
23
23
|
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); }
|
|
24
24
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
25
25
|
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; } }
|
|
26
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
26
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /*** Libraries ***/ /*** CSS ***/
|
|
27
27
|
var Title = /*#__PURE__*/function (_PureComponent) {
|
|
28
28
|
_inherits(Title, _PureComponent);
|
|
29
29
|
var _super = _createSuper(Title);
|
|
@@ -31,7 +31,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
31
31
|
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); }
|
|
32
32
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
33
33
|
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; } }
|
|
34
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
34
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/ /**** Icons ****/
|
|
35
35
|
/* eslint-disable react/forbid-component-props */
|
|
36
36
|
/*eslint-disable react/sort-prop-types*/
|
|
37
37
|
var DropDown = /*#__PURE__*/function (_SelectComponent) {
|
|
@@ -24,7 +24,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
24
24
|
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); }
|
|
25
25
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
26
26
|
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; } }
|
|
27
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
27
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /*** Libraries ***/
|
|
28
28
|
var AlertClose = /*#__PURE__*/function (_PureComponent) {
|
|
29
29
|
_inherits(AlertClose, _PureComponent);
|
|
30
30
|
var _super = _createSuper(AlertClose);
|
|
@@ -31,7 +31,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
31
31
|
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); }
|
|
32
32
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
33
33
|
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; } }
|
|
34
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
34
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /**** Libraries ****/ /**** Components ****/ /**** CSS ****/
|
|
35
35
|
var buttonPaletteObject = {
|
|
36
36
|
success: {
|
|
37
37
|
buttonPalette: 'successFilled'
|