@zohodesk/dot 1.4.10 → 1.4.12
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/.cli/UnValidatedFiles.html +101 -0
- package/.cli/propValidation_report.html +1 -1
- package/README.md +11 -1
- package/assets/Appearance/dark/mode/Dot_DarkMode.module.css +3 -0
- package/assets/Appearance/light/mode/Dot_LightMode.module.css +3 -0
- package/assets/Appearance/pureDark/mode/Dot_PureDarkMode.module.css +3 -0
- package/coverage/ExternalLink/ExternalLink.js.html +1 -1
- package/coverage/ExternalLink/ExternalLink.module.css.html +1 -1
- package/coverage/ExternalLink/index.html +1 -1
- package/coverage/ExternalLink/props/defaultProps.js.html +1 -1
- package/coverage/ExternalLink/props/index.html +1 -1
- package/coverage/ExternalLink/props/propTypes.js.html +1 -1
- package/coverage/IconButton/IconButton.js.html +1 -1
- package/coverage/IconButton/IconButton.module.css.html +1 -1
- package/coverage/IconButton/index.html +1 -1
- package/coverage/IconButton/props/defaultProps.js.html +1 -1
- package/coverage/IconButton/props/index.html +1 -1
- package/coverage/IconButton/props/propTypes.js.html +1 -1
- package/coverage/Image/Image.js.html +1 -1
- package/coverage/Image/Image.module.css.html +1 -1
- package/coverage/Image/index.html +1 -1
- package/coverage/Image/props/defaultProps.js.html +1 -1
- package/coverage/Image/props/index.html +1 -1
- package/coverage/Image/props/propTypes.js.html +1 -1
- package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.js.html +1 -1
- package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.module.css.html +1 -1
- package/coverage/avatar/AvatarWithTeam/index.html +1 -1
- package/coverage/avatar/AvatarWithTeam/props/defaultProps.js.html +1 -1
- package/coverage/avatar/AvatarWithTeam/props/index.html +1 -1
- package/coverage/avatar/AvatarWithTeam/props/propTypes.js.html +1 -1
- package/coverage/index.html +1 -1
- package/es/form/fields/CheckBoxField/CheckBoxField.js +3 -1
- package/es/form/fields/CheckBoxField/props/propTypes.js +1 -0
- package/es/form/fields/Fields.module.css +20 -0
- package/es/form/fields/RadioField/RadioField.js +12 -3
- package/es/form/fields/TagsMultiSelect/TagsMultiSelect.js +4 -4
- package/es/form/fields/TagsMultiSelect/TagsMultiSelect.module.css +9 -0
- package/es/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +9 -2
- package/es/form/fields/TagsMultiSelectField/props/defaultProps.js +3 -1
- package/es/form/fields/TagsMultiSelectField/props/propTypes.js +5 -1
- package/es/v1/form/fields/CheckBoxField/CheckBoxField.js +3 -1
- package/es/v1/form/fields/CheckBoxField/props/propTypes.js +1 -0
- package/es/v1/form/fields/RadioField/RadioField.js +34 -12
- package/es/v1/form/fields/RadioField/props/defaultProps.js +1 -0
- package/es/v1/form/fields/RadioField/props/propTypes.js +2 -0
- package/es/v1/form/fields/RadioField/useRadio.js +44 -0
- package/es/v1/form/fields/SelectField/SelectField.js +1 -9
- package/es/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js +42 -13
- package/es/v1/form/fields/TagsMultiSelect/props/defaultProps.js +4 -1
- package/es/v1/form/fields/TagsMultiSelect/props/propTypes.js +10 -1
- package/es/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +9 -2
- package/es/v1/form/fields/TagsMultiSelectField/props/defaultProps.js +3 -1
- package/es/v1/form/fields/TagsMultiSelectField/props/propTypes.js +5 -1
- package/es/v1/form/fields/TextBoxField/TextBoxField.js +122 -142
- package/es/v1/form/fields/TextEditorField/TextEditorField.js +133 -153
- package/es/v1/form/fields/TextEditorWrapper/TextEditorWrapper.js +137 -178
- package/es/v1/form/fields/TextareaField/TextareaField.js +113 -137
- package/es/v1/form/fields/ValidationMessage/ValidationMessage.js +43 -43
- package/es/v1/form/layout/Field/Field.js +24 -28
- package/es/v1/form/layout/Section/Section.js +26 -33
- package/es/v1/list/Subject/Subject.js +39 -48
- package/es/v1/list/TagNew/TagNew.js +18 -27
- package/es/v1/list/Thread/Thread.js +26 -35
- package/lib/form/fields/CheckBoxField/CheckBoxField.js +3 -1
- package/lib/form/fields/CheckBoxField/props/propTypes.js +1 -0
- package/lib/form/fields/Fields.module.css +20 -0
- package/lib/form/fields/RadioField/RadioField.js +15 -3
- package/lib/form/fields/TagsMultiSelect/TagsMultiSelect.js +5 -5
- package/lib/form/fields/TagsMultiSelect/TagsMultiSelect.module.css +9 -0
- package/lib/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +9 -2
- package/lib/form/fields/TagsMultiSelectField/props/defaultProps.js +3 -1
- package/lib/form/fields/TagsMultiSelectField/props/propTypes.js +5 -1
- package/lib/v1/form/fields/CheckBoxField/CheckBoxField.js +3 -1
- package/lib/v1/form/fields/CheckBoxField/props/propTypes.js +1 -0
- package/lib/v1/form/fields/RadioField/RadioField.js +37 -10
- package/lib/v1/form/fields/RadioField/props/defaultProps.js +1 -0
- package/lib/v1/form/fields/RadioField/props/propTypes.js +2 -0
- package/lib/v1/form/fields/RadioField/useRadio.js +50 -0
- package/lib/v1/form/fields/SelectField/SelectField.js +1 -7
- package/lib/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js +45 -13
- package/lib/v1/form/fields/TagsMultiSelect/props/defaultProps.js +4 -1
- package/lib/v1/form/fields/TagsMultiSelect/props/propTypes.js +10 -1
- package/lib/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +9 -2
- package/lib/v1/form/fields/TagsMultiSelectField/props/defaultProps.js +3 -1
- package/lib/v1/form/fields/TagsMultiSelectField/props/propTypes.js +5 -1
- package/lib/v1/form/fields/TextBoxField/TextBoxField.js +125 -181
- package/lib/v1/form/fields/TextEditorField/TextEditorField.js +138 -193
- package/lib/v1/form/fields/TextEditorWrapper/TextEditorWrapper.js +160 -212
- package/lib/v1/form/fields/TextareaField/TextareaField.js +117 -177
- package/lib/v1/form/fields/ValidationMessage/ValidationMessage.js +41 -80
- package/lib/v1/form/layout/Field/Field.js +22 -69
- package/lib/v1/form/layout/Section/Section.js +26 -72
- package/lib/v1/list/Subject/Subject.js +39 -87
- package/lib/v1/list/TagNew/TagNew.js +18 -66
- package/lib/v1/list/Thread/Thread.js +25 -73
- package/package.json +8 -8
- package/propValidationArg.json +8 -4
- package/result.json +1 -1
|
@@ -5,50 +5,50 @@ import Label from '@zohodesk/components/es/v1/Label/Label';
|
|
|
5
5
|
import colors from '@zohodesk/components/es/Label/LabelColors.module.css';
|
|
6
6
|
import style from '../../../../form/fields/ValidationMessage/ValidationMessage.module.css';
|
|
7
7
|
import { Icon } from '@zohodesk/icons';
|
|
8
|
-
export default class ValidationMessage extends React.Component {
|
|
9
|
-
render() {
|
|
10
|
-
let {
|
|
11
|
-
palette,
|
|
12
|
-
text,
|
|
13
|
-
htmlFor,
|
|
14
|
-
onClick,
|
|
15
|
-
type,
|
|
16
|
-
size,
|
|
17
|
-
dataId,
|
|
18
|
-
clipped,
|
|
19
|
-
a11y,
|
|
20
|
-
tooltip,
|
|
21
|
-
dataSelectorId
|
|
22
|
-
} = this.props;
|
|
23
|
-
let {
|
|
24
|
-
role = 'alert'
|
|
25
|
-
} = a11y;
|
|
26
|
-
return /*#__PURE__*/React.createElement("div", {
|
|
27
|
-
role: role,
|
|
28
|
-
onClick: onClick,
|
|
29
|
-
className: `${type === 'primary' ? style.primary : style.secondary}`,
|
|
30
|
-
"data-id": "errorMsgContainer",
|
|
31
|
-
"data-test-id": "errorMsgContainer",
|
|
32
|
-
"data-selector-id": dataSelectorId
|
|
33
|
-
}, /*#__PURE__*/React.createElement(Label, {
|
|
34
|
-
text: text,
|
|
35
|
-
htmlFor: htmlFor,
|
|
36
|
-
palette: palette,
|
|
37
|
-
size: size,
|
|
38
|
-
dataId: dataId,
|
|
39
|
-
clipped: clipped,
|
|
40
|
-
title: clipped ? text : '',
|
|
41
|
-
customClass: style.lable
|
|
42
|
-
}), tooltip ? /*#__PURE__*/React.createElement("span", {
|
|
43
|
-
className: `${style.icon} ${colors[palette]}`,
|
|
44
|
-
"data-title": tooltip
|
|
45
|
-
}, /*#__PURE__*/React.createElement(Icon, {
|
|
46
|
-
name: "ZD-information57",
|
|
47
|
-
size: "14"
|
|
48
|
-
})) : null);
|
|
49
|
-
}
|
|
50
8
|
|
|
51
|
-
|
|
9
|
+
const ValidationMessage = props => {
|
|
10
|
+
const {
|
|
11
|
+
palette,
|
|
12
|
+
text,
|
|
13
|
+
htmlFor,
|
|
14
|
+
onClick,
|
|
15
|
+
type,
|
|
16
|
+
size,
|
|
17
|
+
dataId,
|
|
18
|
+
clipped,
|
|
19
|
+
a11y,
|
|
20
|
+
tooltip,
|
|
21
|
+
dataSelectorId
|
|
22
|
+
} = props;
|
|
23
|
+
const {
|
|
24
|
+
role = 'alert'
|
|
25
|
+
} = a11y;
|
|
26
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
27
|
+
role: role,
|
|
28
|
+
onClick: onClick,
|
|
29
|
+
className: `${type === 'primary' ? style.primary : style.secondary}`,
|
|
30
|
+
"data-id": "errorMsgContainer",
|
|
31
|
+
"data-test-id": "errorMsgContainer",
|
|
32
|
+
"data-selector-id": dataSelectorId
|
|
33
|
+
}, /*#__PURE__*/React.createElement(Label, {
|
|
34
|
+
text: text,
|
|
35
|
+
htmlFor: htmlFor,
|
|
36
|
+
palette: palette,
|
|
37
|
+
size: size,
|
|
38
|
+
dataId: dataId,
|
|
39
|
+
clipped: clipped,
|
|
40
|
+
title: clipped ? text : '',
|
|
41
|
+
customClass: style.lable
|
|
42
|
+
}), tooltip ? /*#__PURE__*/React.createElement("span", {
|
|
43
|
+
className: `${style.icon} ${colors[palette]}`,
|
|
44
|
+
"data-title": tooltip
|
|
45
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
46
|
+
name: "ZD-information57",
|
|
47
|
+
size: "14"
|
|
48
|
+
})) : null);
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
export default ValidationMessage;
|
|
52
52
|
ValidationMessage.propTypes = propTypes;
|
|
53
53
|
ValidationMessage.defaultProps = defaultProps; // if (__DOCS__) {
|
|
54
54
|
// ValidationMessage.docs = {
|
|
@@ -1,33 +1,29 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { defaultProps } from './props/defaultProps';
|
|
3
3
|
import { propTypes } from './props/propTypes';
|
|
4
4
|
import style from '../../../../form/layout/Field/Field.module.css';
|
|
5
|
-
export default class Field extends Component {
|
|
6
|
-
render() {
|
|
7
|
-
let {
|
|
8
|
-
width,
|
|
9
|
-
children,
|
|
10
|
-
rowBreak,
|
|
11
|
-
column,
|
|
12
|
-
className,
|
|
13
|
-
containerClass,
|
|
14
|
-
dataId
|
|
15
|
-
} = this.props;
|
|
16
|
-
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
|
|
17
|
-
className: `${containerClass ? containerClass : ''} ${column == 'single' ? `${style.singleColumn}` : `${style[width]} `}`,
|
|
18
|
-
"data-id": dataId,
|
|
19
|
-
"data-test-id": dataId
|
|
20
|
-
}, /*#__PURE__*/React.createElement("div", {
|
|
21
|
-
className: `${className ? className : ''} ${`fieldWidth_${width}`}`
|
|
22
|
-
}, children)), rowBreak && /*#__PURE__*/React.createElement("div", {
|
|
23
|
-
className: style.rowBreak
|
|
24
|
-
}));
|
|
25
|
-
}
|
|
26
5
|
|
|
27
|
-
|
|
6
|
+
const Field = props => {
|
|
7
|
+
const {
|
|
8
|
+
width,
|
|
9
|
+
children,
|
|
10
|
+
rowBreak,
|
|
11
|
+
column,
|
|
12
|
+
className,
|
|
13
|
+
containerClass,
|
|
14
|
+
dataId
|
|
15
|
+
} = props;
|
|
16
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
|
|
17
|
+
className: `${containerClass ? containerClass : ''} ${column == 'single' ? `${style.singleColumn}` : `${style[width]} `}`,
|
|
18
|
+
"data-id": dataId,
|
|
19
|
+
"data-test-id": dataId
|
|
20
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
21
|
+
className: `${className ? className : ''} ${`fieldWidth_${width}`}`
|
|
22
|
+
}, children)), rowBreak && /*#__PURE__*/React.createElement("div", {
|
|
23
|
+
className: style.rowBreak
|
|
24
|
+
}));
|
|
25
|
+
};
|
|
26
|
+
|
|
28
27
|
Field.propTypes = propTypes;
|
|
29
|
-
Field.defaultProps = defaultProps;
|
|
30
|
-
|
|
31
|
-
// componentGroup: 'ModuleAddForm'
|
|
32
|
-
// };
|
|
33
|
-
// }
|
|
28
|
+
Field.defaultProps = defaultProps;
|
|
29
|
+
export default Field;
|
|
@@ -1,37 +1,30 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { propTypes } from './props/propTypes';
|
|
3
3
|
import style from '../../../../form/layout/Section/ModuleFormSection.module.css';
|
|
4
|
-
export default class Section extends Component {
|
|
5
|
-
constructor(props) {
|
|
6
|
-
super(props);
|
|
7
|
-
}
|
|
8
4
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
}
|
|
5
|
+
const Section = props => {
|
|
6
|
+
const {
|
|
7
|
+
title,
|
|
8
|
+
dataId,
|
|
9
|
+
containerClass,
|
|
10
|
+
titleClass,
|
|
11
|
+
className,
|
|
12
|
+
column,
|
|
13
|
+
formName,
|
|
14
|
+
children
|
|
15
|
+
} = props;
|
|
16
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
17
|
+
"data-id": dataId,
|
|
18
|
+
"data-test-id": dataId,
|
|
19
|
+
className: containerClass ? containerClass : ''
|
|
20
|
+
}, title && /*#__PURE__*/React.createElement("div", {
|
|
21
|
+
className: titleClass ? titleClass : ''
|
|
22
|
+
}, title), /*#__PURE__*/React.createElement("div", {
|
|
23
|
+
className: `${className ? className : ''} ${column == 'single' ? style.singleColumn : ''}`,
|
|
24
|
+
"data-id": formName && formName,
|
|
25
|
+
"data-test-id": formName && formName
|
|
26
|
+
}, children));
|
|
27
|
+
};
|
|
31
28
|
|
|
32
|
-
|
|
33
|
-
Section.propTypes = propTypes;
|
|
34
|
-
// Section.docs = {
|
|
35
|
-
// componentGroup: 'ModuleAddForm'
|
|
36
|
-
// };
|
|
37
|
-
// }
|
|
29
|
+
export default Section;
|
|
30
|
+
Section.propTypes = propTypes;
|
|
@@ -1,57 +1,48 @@
|
|
|
1
1
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
2
|
|
|
3
|
-
import React
|
|
3
|
+
import React from 'react';
|
|
4
4
|
import { defaultProps } from './props/defaultProps';
|
|
5
5
|
import { propTypes } from './props/propTypes';
|
|
6
6
|
import Link from '../../Link/Link';
|
|
7
7
|
import style from '../../../list/Subject/Subject.module.css';
|
|
8
|
-
export default class Subject extends Component {
|
|
9
|
-
constructor(props) {
|
|
10
|
-
super(props);
|
|
11
|
-
}
|
|
12
8
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
9
|
+
const Subject = props => {
|
|
10
|
+
const {
|
|
11
|
+
text,
|
|
12
|
+
dataId,
|
|
13
|
+
urlName,
|
|
14
|
+
href,
|
|
15
|
+
urlData,
|
|
16
|
+
onClick,
|
|
17
|
+
isLink,
|
|
18
|
+
target,
|
|
19
|
+
fontWeight,
|
|
20
|
+
className,
|
|
21
|
+
isDotted,
|
|
22
|
+
children,
|
|
23
|
+
customProps
|
|
24
|
+
} = props;
|
|
25
|
+
const {
|
|
26
|
+
LinkProps = {},
|
|
27
|
+
TextProps = {}
|
|
28
|
+
} = customProps;
|
|
29
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, isLink ? /*#__PURE__*/React.createElement(Link, _extends({
|
|
30
|
+
urlName: urlName,
|
|
31
|
+
href: href,
|
|
32
|
+
urlData: urlData,
|
|
33
|
+
onClick: onClick,
|
|
34
|
+
className: `${style.subject} ${isDotted ? style.dotted : ''} ${className} ${style[`font_${fontWeight}`]} ${style.cursorPointer}`,
|
|
35
|
+
dataId: dataId,
|
|
36
|
+
title: text,
|
|
37
|
+
target: target
|
|
38
|
+
}, LinkProps), children ? children : text) : /*#__PURE__*/React.createElement("span", _extends({
|
|
39
|
+
className: `${style.subject} ${isDotted ? style.dotted : ''} ${className} ${style[`font_${fontWeight}`]}`,
|
|
40
|
+
"data-title": text,
|
|
41
|
+
"data-id": dataId,
|
|
42
|
+
"data-test-id": dataId
|
|
43
|
+
}, TextProps), text));
|
|
44
|
+
};
|
|
49
45
|
|
|
50
|
-
|
|
46
|
+
export default Subject;
|
|
51
47
|
Subject.propTypes = propTypes;
|
|
52
|
-
Subject.defaultProps = defaultProps;
|
|
53
|
-
// Subject.docs = {
|
|
54
|
-
// folderName: 'List',
|
|
55
|
-
// componentGroup: 'Subject'
|
|
56
|
-
// };
|
|
57
|
-
// }
|
|
48
|
+
Subject.defaultProps = defaultProps;
|
|
@@ -1,33 +1,24 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { defaultProps } from './props/defaultProps';
|
|
3
3
|
import { propTypes } from './props/propTypes';
|
|
4
4
|
import style from '../../../list/TagNew/TagNew.module.css';
|
|
5
|
-
export default class TagNew extends Component {
|
|
6
|
-
constructor(props) {
|
|
7
|
-
super(props);
|
|
8
|
-
}
|
|
9
5
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
6
|
+
const TagNew = props => {
|
|
7
|
+
const {
|
|
8
|
+
className,
|
|
9
|
+
text,
|
|
10
|
+
animate,
|
|
11
|
+
onClick,
|
|
12
|
+
dataId
|
|
13
|
+
} = props;
|
|
14
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
15
|
+
className: `${style.tagStyle} ${animate ? style.bounceIn : ''} ${className ? className : ''}`,
|
|
16
|
+
onClick: onClick,
|
|
17
|
+
"data-id": dataId,
|
|
18
|
+
"data-test-id": dataId
|
|
19
|
+
}, text);
|
|
20
|
+
};
|
|
25
21
|
|
|
26
|
-
|
|
22
|
+
export default TagNew;
|
|
27
23
|
TagNew.propTypes = propTypes;
|
|
28
|
-
TagNew.defaultProps = defaultProps;
|
|
29
|
-
// TagNew.docs = {
|
|
30
|
-
// folderName: 'List',
|
|
31
|
-
// componentGroup: 'TagNew'
|
|
32
|
-
// };
|
|
33
|
-
// }
|
|
24
|
+
TagNew.defaultProps = defaultProps;
|
|
@@ -1,43 +1,34 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { defaultProps } from './props/defaultProps';
|
|
3
3
|
import { propTypes } from './props/propTypes';
|
|
4
4
|
import { Icon } from '@zohodesk/icons';
|
|
5
5
|
import Button from '@zohodesk/components/es/v1/semantic/Button/Button';
|
|
6
6
|
import style from '../../../list/Thread/Thread.module.css';
|
|
7
|
-
export default class Thread extends Component {
|
|
8
|
-
constructor(props) {
|
|
9
|
-
super(props);
|
|
10
|
-
}
|
|
11
7
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
8
|
+
const Thread = props => {
|
|
9
|
+
const {
|
|
10
|
+
count: threadCount,
|
|
11
|
+
className,
|
|
12
|
+
iconTitle,
|
|
13
|
+
dataId,
|
|
14
|
+
align
|
|
15
|
+
} = props;
|
|
16
|
+
const count = threadCount === '0' ? '1' : threadCount;
|
|
17
|
+
return /*#__PURE__*/React.createElement(Button, {
|
|
18
|
+
customClass: `${style.container} ${style[`align_${align}`]} ${className}`,
|
|
19
|
+
title: iconTitle,
|
|
20
|
+
dataId: dataId,
|
|
21
|
+
a11y: {
|
|
22
|
+
ariaLabel: iconTitle
|
|
23
|
+
}
|
|
24
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
25
|
+
name: "ZD-TK-thread",
|
|
26
|
+
size: "9"
|
|
27
|
+
}), /*#__PURE__*/React.createElement("span", {
|
|
28
|
+
className: style.count
|
|
29
|
+
}, count));
|
|
30
|
+
};
|
|
35
31
|
|
|
36
|
-
|
|
32
|
+
export default Thread;
|
|
37
33
|
Thread.propTypes = propTypes;
|
|
38
|
-
Thread.defaultProps = defaultProps;
|
|
39
|
-
// Thread.docs = {
|
|
40
|
-
// folderName: 'List',
|
|
41
|
-
// componentGroup: 'Thread'
|
|
42
|
-
// };
|
|
43
|
-
// }
|
|
34
|
+
Thread.defaultProps = defaultProps;
|
|
@@ -110,6 +110,7 @@ var CheckBoxField = /*#__PURE__*/function (_PureComponent) {
|
|
|
110
110
|
dataSelectorId = _this$props3.dataSelectorId,
|
|
111
111
|
validationRuleMessage = _this$props3.validationRuleMessage,
|
|
112
112
|
validationRulePalette = _this$props3.validationRulePalette,
|
|
113
|
+
getContainerRef = _this$props3.getContainerRef,
|
|
113
114
|
infoText = _this$props3.infoText,
|
|
114
115
|
fieldSize = _this$props3.fieldSize,
|
|
115
116
|
labelPalette = _this$props3.labelPalette,
|
|
@@ -167,7 +168,8 @@ var CheckBoxField = /*#__PURE__*/function (_PureComponent) {
|
|
|
167
168
|
disabled: removeEvent,
|
|
168
169
|
checked: checked,
|
|
169
170
|
getRef: this.handleGetRef,
|
|
170
|
-
dataId: dataId
|
|
171
|
+
dataId: dataId,
|
|
172
|
+
getContainerRef: getContainerRef
|
|
171
173
|
}, CheckBoxProps))), !isDirectCol && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
172
174
|
flexible: true
|
|
173
175
|
}, labelElement)), validationMessage && /*#__PURE__*/_react["default"].createElement(_ValidationMessage["default"], _extends({
|
|
@@ -23,6 +23,7 @@ var propTypes = _objectSpread({
|
|
|
23
23
|
errorType: _propTypes["default"].oneOf(['primary', 'secondary']),
|
|
24
24
|
fieldSize: _propTypes["default"].oneOf(['small', 'medium']),
|
|
25
25
|
getRef: _propTypes["default"].func,
|
|
26
|
+
getContainerRef: _propTypes["default"].func,
|
|
26
27
|
id: _propTypes["default"].string.isRequired,
|
|
27
28
|
labelCustomClass: _propTypes["default"].string,
|
|
28
29
|
labelName: _propTypes["default"].string,
|
|
@@ -60,6 +60,26 @@
|
|
|
60
60
|
[dir=rtl] .radio {
|
|
61
61
|
margin: var(--zd_size5) 0 var(--zd_size5) var(--zd_size32) ;
|
|
62
62
|
}
|
|
63
|
+
.radio, .radioWrap {
|
|
64
|
+
max-width: 100%
|
|
65
|
+
}
|
|
66
|
+
.radiosWrapper {
|
|
67
|
+
gap: var(--zd_size10)
|
|
68
|
+
}
|
|
69
|
+
.radioBox {
|
|
70
|
+
max-width: 100% ;
|
|
71
|
+
height: var(--zd_size36) ;
|
|
72
|
+
transition: border var(--zd_transition3);
|
|
73
|
+
padding: 0 var(--zd_size10) ;
|
|
74
|
+
border: 1px solid var(--zdt_radiofield_box_border);
|
|
75
|
+
border-radius: 6px
|
|
76
|
+
}
|
|
77
|
+
.radioBox:hover, .radioBoxActive {
|
|
78
|
+
border-color: var(--zdt_radiofield_box_active_border)
|
|
79
|
+
}
|
|
80
|
+
.radioBoxActive {
|
|
81
|
+
background-color: var(--zdt_radiofield_box_active_bg)
|
|
82
|
+
}
|
|
63
83
|
[dir=ltr] .duration {
|
|
64
84
|
margin-right: var(--zd_size15) ;
|
|
65
85
|
}
|
|
@@ -13,6 +13,8 @@ var _defaultProps = require("./props/defaultProps");
|
|
|
13
13
|
|
|
14
14
|
var _propTypes = require("./props/propTypes");
|
|
15
15
|
|
|
16
|
+
var _Icon = _interopRequireDefault(require("@zohodesk/icons/es/Icon"));
|
|
17
|
+
|
|
16
18
|
var _Label = _interopRequireDefault(require("@zohodesk/components/lib/Label/Label"));
|
|
17
19
|
|
|
18
20
|
var _Radio = _interopRequireDefault(require("@zohodesk/components/lib/Radio/Radio"));
|
|
@@ -103,6 +105,8 @@ var RadioField = /*#__PURE__*/function (_PureComponent) {
|
|
|
103
105
|
LabelProps = _customProps$LabelPro === void 0 ? {} : _customProps$LabelPro,
|
|
104
106
|
_customProps$RadioPro = customProps.RadioProps,
|
|
105
107
|
RadioProps = _customProps$RadioPro === void 0 ? {} : _customProps$RadioPro,
|
|
108
|
+
_customProps$InfoIcon = customProps.InfoIconProps,
|
|
109
|
+
InfoIconProps = _customProps$InfoIcon === void 0 ? {} : _customProps$InfoIcon,
|
|
106
110
|
_customProps$Validati = customProps.ValidationMessageProps1,
|
|
107
111
|
ValidationMessageProps1 = _customProps$Validati === void 0 ? {} : _customProps$Validati,
|
|
108
112
|
_customProps$Validati2 = customProps.ValidationMessageProps2,
|
|
@@ -122,7 +126,10 @@ var RadioField = /*#__PURE__*/function (_PureComponent) {
|
|
|
122
126
|
className: "".concat(_FieldsModule["default"].fieldContainer, " ").concat(labelName ? _FieldsModule["default"].fieldMargin_medium : '', " ").concat(_FieldsModule["default"].radioContainer)
|
|
123
127
|
}, options.map(function (option, index) {
|
|
124
128
|
var text = option.text,
|
|
125
|
-
value = option.value
|
|
129
|
+
value = option.value,
|
|
130
|
+
_option$disabled = option.disabled,
|
|
131
|
+
disabled = _option$disabled === void 0 ? false : _option$disabled,
|
|
132
|
+
infoTooltip = option.infoTooltip;
|
|
126
133
|
return /*#__PURE__*/_react["default"].createElement("span", {
|
|
127
134
|
key: index,
|
|
128
135
|
className: "".concat(_FieldsModule["default"].radio)
|
|
@@ -134,14 +141,19 @@ var RadioField = /*#__PURE__*/function (_PureComponent) {
|
|
|
134
141
|
labelPalette: labelPalette,
|
|
135
142
|
labelSize: labelSize,
|
|
136
143
|
active: isActive,
|
|
137
|
-
disabled: isDisabled,
|
|
144
|
+
disabled: disabled || isDisabled,
|
|
138
145
|
onChange: _this2.handleChange,
|
|
139
146
|
size: size,
|
|
140
147
|
checked: selectedValue == value,
|
|
141
148
|
dataId: dataId,
|
|
142
149
|
isReadOnly: isReadOnly,
|
|
143
150
|
variant: variant
|
|
144
|
-
}, RadioProps)
|
|
151
|
+
}, RadioProps), !!infoTooltip ? /*#__PURE__*/_react["default"].createElement(_Icon["default"], _extends({
|
|
152
|
+
name: "ZD-GN-info",
|
|
153
|
+
size: "16",
|
|
154
|
+
title: infoTooltip,
|
|
155
|
+
iconClass: _FieldsModule["default"].infoIcon
|
|
156
|
+
}, InfoIconProps)) : null));
|
|
145
157
|
})), validationMessage && /*#__PURE__*/_react["default"].createElement(_ValidationMessage["default"], _extends({
|
|
146
158
|
text: validationMessage,
|
|
147
159
|
palette: validationPalette,
|
|
@@ -33,12 +33,12 @@ var _ResponsiveDropBox = _interopRequireDefault(require("@zohodesk/components/li
|
|
|
33
33
|
|
|
34
34
|
var _CustomResponsive = require("@zohodesk/components/lib/Responsive/CustomResponsive");
|
|
35
35
|
|
|
36
|
+
var _MultiSelectHeader = _interopRequireDefault(require("@zohodesk/components/lib/MultiSelect/MultiSelectHeader"));
|
|
37
|
+
|
|
36
38
|
var _General = require("../../../utils/General");
|
|
37
39
|
|
|
38
40
|
var _Common = require("@zohodesk/components/lib/utils/Common.js");
|
|
39
41
|
|
|
40
|
-
var _MultiSelectHeader = _interopRequireDefault(require("@zohodesk/components/lib/MultiSelect/MultiSelectHeader"));
|
|
41
|
-
|
|
42
42
|
var _TagsMultiSelectModule = _interopRequireDefault(require("./TagsMultiSelect.module.css"));
|
|
43
43
|
|
|
44
44
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -225,7 +225,7 @@ var TagsMultiSelect = /*#__PURE__*/function (_React$Component) {
|
|
|
225
225
|
_customProps$TagProps = customProps.TagProps,
|
|
226
226
|
TagProps = _customProps$TagProps === void 0 ? {} : _customProps$TagProps;
|
|
227
227
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
228
|
-
className: " ".concat(!isReadOnly ? " ".concat(needBorder ? _TagsMultiSelectModule["default"].hasBorder : '', "\n ").concat(needBorder ? _TagsMultiSelectModule["default"]["borderColor_".concat(borderColor)] : _TagsMultiSelectModule["default"].borderColor_transparent, " ").concat(isPopupReady && needBorder ? _TagsMultiSelectModule["default"].active : '') : '', " ").concat(className),
|
|
228
|
+
className: "".concat(_TagsMultiSelectModule["default"].container, " ").concat(!isReadOnly ? " ".concat(needBorder ? _TagsMultiSelectModule["default"].hasBorder : '', "\n ").concat(needBorder ? _TagsMultiSelectModule["default"]["borderColor_".concat(borderColor)] : _TagsMultiSelectModule["default"].borderColor_transparent, " ").concat(isPopupReady && needBorder ? _TagsMultiSelectModule["default"].active : '') : '', " ").concat(className),
|
|
229
229
|
onClick: _General.stopBubbling,
|
|
230
230
|
"data-id": "".concat(dataId, "_tagsContainer"),
|
|
231
231
|
"data-test-id": "".concat(dataId, "_tagsContainer"),
|
|
@@ -247,7 +247,7 @@ var TagsMultiSelect = /*#__PURE__*/function (_React$Component) {
|
|
|
247
247
|
return index < chipLimit ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, _extends({
|
|
248
248
|
className: _TagsMultiSelectModule["default"].tag,
|
|
249
249
|
key: index
|
|
250
|
-
},
|
|
250
|
+
}, TagWrapperProps, boxCustomProps), /*#__PURE__*/_react["default"].createElement(_Tag["default"], _extends({
|
|
251
251
|
id: id,
|
|
252
252
|
text: name,
|
|
253
253
|
onRemove: isReadOnly ? null : deleteTag.bind(_this3, name),
|
|
@@ -256,7 +256,7 @@ var TagsMultiSelect = /*#__PURE__*/function (_React$Component) {
|
|
|
256
256
|
isReadOnly: isReadOnly,
|
|
257
257
|
onSelectTag: onSelectTag ? onSelectTag : undefined,
|
|
258
258
|
customClass: tagCustomClass
|
|
259
|
-
},
|
|
259
|
+
}, TagProps, tagCustomProps))) : null;
|
|
260
260
|
}), tagsList.length > chipNeedToShow && !isPopupReady ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
261
261
|
className: _TagsMultiSelectModule["default"].moreLess,
|
|
262
262
|
dataId: "".concat(dataId, "_tagsMore"),
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
.container {
|
|
2
|
+
position: relative;
|
|
3
|
+
}
|
|
1
4
|
.tag {
|
|
2
5
|
max-width: 100% ;
|
|
3
6
|
}
|
|
@@ -91,6 +94,12 @@
|
|
|
91
94
|
max-width: 100% ;
|
|
92
95
|
visibility: hidden;
|
|
93
96
|
}
|
|
97
|
+
[dir=ltr] .custmSpan {
|
|
98
|
+
padding-right: var(--zd_size28) ;
|
|
99
|
+
}
|
|
100
|
+
[dir=rtl] .custmSpan {
|
|
101
|
+
padding-left: var(--zd_size28) ;
|
|
102
|
+
}
|
|
94
103
|
.custmInp {
|
|
95
104
|
position: absolute;
|
|
96
105
|
top: 0 ;
|
|
@@ -117,7 +117,11 @@ var TagsMultiSelectField = function TagsMultiSelectField(props) {
|
|
|
117
117
|
value = fieldProperties.value,
|
|
118
118
|
selectedValueCount = fieldProperties.selectedValueCount,
|
|
119
119
|
validationMessage = fieldProperties.validationMessage,
|
|
120
|
-
options = fieldProperties.options
|
|
120
|
+
options = fieldProperties.options,
|
|
121
|
+
infoText = fieldProperties.infoText,
|
|
122
|
+
isLocked = fieldProperties.isLocked,
|
|
123
|
+
lockedInfoText = fieldProperties.lockedInfoText,
|
|
124
|
+
alignField = fieldProperties.alignField;
|
|
121
125
|
options = options || [];
|
|
122
126
|
|
|
123
127
|
var handleKeyUp = function handleKeyUp(event) {
|
|
@@ -230,7 +234,10 @@ var TagsMultiSelectField = function TagsMultiSelectField(props) {
|
|
|
230
234
|
"data-selector-id": dataSelectorId
|
|
231
235
|
}, labelName && /*#__PURE__*/_react["default"].createElement(_FieldContainer["default"], {
|
|
232
236
|
ePhiData: ePhiData,
|
|
233
|
-
alignContainer:
|
|
237
|
+
alignContainer: alignField,
|
|
238
|
+
infoText: infoText,
|
|
239
|
+
isLocked: isLocked,
|
|
240
|
+
lockedInfoText: lockedInfoText,
|
|
234
241
|
renderProps: {
|
|
235
242
|
end: renderEnd
|
|
236
243
|
}
|
|
@@ -16,7 +16,9 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
|
|
|
16
16
|
var defaultProps = _objectSpread({
|
|
17
17
|
fieldProperties: {
|
|
18
18
|
isDisabled: false,
|
|
19
|
-
isMandatory: false
|
|
19
|
+
isMandatory: false,
|
|
20
|
+
isLocked: false,
|
|
21
|
+
alignField: 'baseline'
|
|
20
22
|
},
|
|
21
23
|
styleProperties: {
|
|
22
24
|
containerClass: '',
|
|
@@ -22,7 +22,11 @@ var propTypes = {
|
|
|
22
22
|
selectedValueCount: _propTypes["default"].string,
|
|
23
23
|
validationMessage: _propTypes["default"].string,
|
|
24
24
|
options: _propTypes["default"].array,
|
|
25
|
-
clickableTag: _propTypes["default"].bool
|
|
25
|
+
clickableTag: _propTypes["default"].bool,
|
|
26
|
+
infoText: _propTypes["default"].string,
|
|
27
|
+
isLocked: _propTypes["default"].bool,
|
|
28
|
+
lockedInfoText: _propTypes["default"].string,
|
|
29
|
+
alignField: _propTypes["default"].oneOf(['vertical', 'baseline'])
|
|
26
30
|
}),
|
|
27
31
|
styleProperties: _propTypes["default"].shape({
|
|
28
32
|
labelSize: _propTypes["default"].string,
|