@itcase/ui 1.0.17 → 1.0.19
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/dist/components/Button.js +3 -1
- package/dist/components/DatePicker.js +26 -17
- package/dist/components/Group.js +3 -1
- package/dist/components/Icon.js +5 -1
- package/dist/components/Label.js +2 -0
- package/dist/components/Search.js +2 -0
- package/dist/components/Segmented.js +1 -0
- package/dist/components/Tab.js +8 -4
- package/dist/components/Text.js +2 -0
- package/dist/components/Title.js +3 -1
- package/dist/css/components/Notification/Notification.css +1 -0
- package/dist/css/components/Segmented/Segmented.css +3 -0
- package/package.json +1 -1
|
@@ -51,6 +51,7 @@ var Button = /*#__PURE__*/React__default.default.forwardRef(function Button(prop
|
|
|
51
51
|
var before = props.before,
|
|
52
52
|
after = props.after,
|
|
53
53
|
className = props.className,
|
|
54
|
+
dataTour = props.dataTour,
|
|
54
55
|
Badge = props.Badge,
|
|
55
56
|
children = props.children,
|
|
56
57
|
iconAfter = props.iconAfter,
|
|
@@ -132,7 +133,8 @@ var Button = /*#__PURE__*/React__default.default.forwardRef(function Button(prop
|
|
|
132
133
|
target: target,
|
|
133
134
|
type: htmlType,
|
|
134
135
|
onClick: onClick,
|
|
135
|
-
onMouseDown: onMouseDown
|
|
136
|
+
onMouseDown: onMouseDown,
|
|
137
|
+
"data-tour": dataTour
|
|
136
138
|
}, /*#__PURE__*/React__default.default.createElement("div", {
|
|
137
139
|
className: "button__wrapper",
|
|
138
140
|
ref: ref
|
|
@@ -9,13 +9,13 @@ var index = require('./Input.js');
|
|
|
9
9
|
var index$3 = require('./Text.js');
|
|
10
10
|
var index$1 = require('./Button.js');
|
|
11
11
|
var index$2 = require('./Icon.js');
|
|
12
|
-
require('lodash/castArray');
|
|
13
|
-
require('lodash/camelCase');
|
|
14
|
-
require('../context/UIContext.js');
|
|
15
12
|
var size = require('../constants/componentProps/size.js');
|
|
16
13
|
var textColor = require('../constants/componentProps/textColor.js');
|
|
17
14
|
var textWeight = require('../constants/componentProps/textWeight.js');
|
|
18
15
|
require('../hooks/useDeviceTargetClass.js');
|
|
16
|
+
require('lodash/castArray');
|
|
17
|
+
require('lodash/camelCase');
|
|
18
|
+
require('../context/UIContext.js');
|
|
19
19
|
require('../hooks/useMediaQueries.js');
|
|
20
20
|
require('react-responsive');
|
|
21
21
|
require('../constants/componentProps/textColorActive.js');
|
|
@@ -10103,13 +10103,20 @@ var ru = locale;
|
|
|
10103
10103
|
function DatePickerInput(props) {
|
|
10104
10104
|
var className = props.className,
|
|
10105
10105
|
inputProps = props.inputProps,
|
|
10106
|
-
datePickerProps = props.datePickerProps
|
|
10107
|
-
|
|
10106
|
+
datePickerProps = props.datePickerProps,
|
|
10107
|
+
onChange = props.onChange;
|
|
10108
|
+
var _useState = React.useState(function () {
|
|
10109
|
+
return datePickerProps.isStartDefaultNull ? null : new Date();
|
|
10110
|
+
}),
|
|
10108
10111
|
startDate = _useState[0],
|
|
10109
10112
|
setStartDate = _useState[1];
|
|
10110
10113
|
var _useState2 = React.useState(null),
|
|
10111
10114
|
endDate = _useState2[0],
|
|
10112
10115
|
setEndDate = _useState2[1];
|
|
10116
|
+
var onChangeDate = React.useCallback(function (date) {
|
|
10117
|
+
setStartDate(date);
|
|
10118
|
+
onChange && onChange(date);
|
|
10119
|
+
}, []);
|
|
10113
10120
|
var handleChange = function handleChange(_ref) {
|
|
10114
10121
|
var newStartDate = _ref[0],
|
|
10115
10122
|
newEndDate = _ref[1];
|
|
@@ -10119,11 +10126,11 @@ function DatePickerInput(props) {
|
|
|
10119
10126
|
var renderDayContents = function renderDayContents(day, date) {
|
|
10120
10127
|
return /*#__PURE__*/React__namespace.default.createElement(index$1.Button, {
|
|
10121
10128
|
className: "react-datepicker__day-button",
|
|
10122
|
-
size: datePickerProps.daySize,
|
|
10123
10129
|
label: date.getDate(),
|
|
10124
10130
|
labelTextColor: datePickerProps.dayTextColor,
|
|
10125
10131
|
labelTextSize: datePickerProps.dayTextSize,
|
|
10126
|
-
shape: datePickerProps.dayTextShape
|
|
10132
|
+
shape: datePickerProps.dayTextShape,
|
|
10133
|
+
size: datePickerProps.daySize
|
|
10127
10134
|
});
|
|
10128
10135
|
};
|
|
10129
10136
|
var renderCustomHeader = function renderCustomHeader(_ref2) {
|
|
@@ -10138,8 +10145,8 @@ function DatePickerInput(props) {
|
|
|
10138
10145
|
fillHover: datePickerProps.iconFillHover,
|
|
10139
10146
|
fillSize: datePickerProps.iconFillSize,
|
|
10140
10147
|
iconFill: datePickerProps.iconItemFill,
|
|
10141
|
-
size: datePickerProps.iconSize,
|
|
10142
10148
|
shape: datePickerProps.iconShape,
|
|
10149
|
+
size: datePickerProps.iconSize,
|
|
10143
10150
|
stroke: datePickerProps.iconStroke,
|
|
10144
10151
|
SvgImage: datePickerProps.iconLeft,
|
|
10145
10152
|
onClick: decreaseMonth
|
|
@@ -10147,15 +10154,15 @@ function DatePickerInput(props) {
|
|
|
10147
10154
|
className: "react-datepicker__data"
|
|
10148
10155
|
}, /*#__PURE__*/React__namespace.default.createElement(index$3.Text, {
|
|
10149
10156
|
className: "react-datepicker__month",
|
|
10150
|
-
textColor: datePickerProps.monthTextColor,
|
|
10151
10157
|
size: datePickerProps.monthTextSize,
|
|
10158
|
+
textColor: datePickerProps.monthTextColor,
|
|
10152
10159
|
textWeight: datePickerProps.monthTextWeight
|
|
10153
10160
|
}, monthDate.toLocaleString('ru-RU', {
|
|
10154
10161
|
month: 'long'
|
|
10155
10162
|
})), /*#__PURE__*/React__namespace.default.createElement(index$3.Text, {
|
|
10156
10163
|
className: "react-datepicker__year",
|
|
10157
|
-
textColor: datePickerProps.yearTextColor,
|
|
10158
10164
|
size: datePickerProps.yearTextSize,
|
|
10165
|
+
textColor: datePickerProps.yearTextColor,
|
|
10159
10166
|
textWeight: datePickerProps.yearTextWeight
|
|
10160
10167
|
}, monthDate.toLocaleString('ru-RU', {
|
|
10161
10168
|
year: 'numeric'
|
|
@@ -10165,8 +10172,8 @@ function DatePickerInput(props) {
|
|
|
10165
10172
|
fillHover: datePickerProps.iconFillHover,
|
|
10166
10173
|
fillSize: datePickerProps.iconFillSize,
|
|
10167
10174
|
iconFill: datePickerProps.iconItemFill,
|
|
10168
|
-
size: datePickerProps.iconSize,
|
|
10169
10175
|
shape: datePickerProps.iconShape,
|
|
10176
|
+
size: datePickerProps.iconSize,
|
|
10170
10177
|
stroke: datePickerProps.iconStroke,
|
|
10171
10178
|
SvgImage: datePickerProps.iconRight,
|
|
10172
10179
|
onClick: increaseMonth
|
|
@@ -10178,13 +10185,11 @@ function DatePickerInput(props) {
|
|
|
10178
10185
|
customInput: /*#__PURE__*/React__namespace.default.createElement(DatePickerСustomInput, inputProps),
|
|
10179
10186
|
endDate: (datePickerProps == null ? void 0 : datePickerProps.selectsRange) && endDate,
|
|
10180
10187
|
locale: ru,
|
|
10188
|
+
renderCustomHeader: renderCustomHeader,
|
|
10189
|
+
renderDayContents: renderDayContents,
|
|
10181
10190
|
selected: startDate,
|
|
10182
10191
|
startDate: startDate,
|
|
10183
|
-
onChange: datePickerProps != null && datePickerProps.selectsRange ? handleChange :
|
|
10184
|
-
return setStartDate(date);
|
|
10185
|
-
},
|
|
10186
|
-
renderDayContents: renderDayContents,
|
|
10187
|
-
renderCustomHeader: renderCustomHeader
|
|
10192
|
+
onChange: datePickerProps != null && datePickerProps.selectsRange ? handleChange : onChangeDate
|
|
10188
10193
|
}, datePickerProps)));
|
|
10189
10194
|
}
|
|
10190
10195
|
var DatePickerСustomInput = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
@@ -10194,9 +10199,13 @@ var DatePickerСustomInput = /*#__PURE__*/React.forwardRef(function (props, ref)
|
|
|
10194
10199
|
});
|
|
10195
10200
|
DatePickerСustomInput.displayName = 'DatePickerСustomInput';
|
|
10196
10201
|
DatePickerInput.propTypes = {
|
|
10202
|
+
className: PropTypes__default.default.string,
|
|
10203
|
+
datePickerProps: PropTypes__default.default.object,
|
|
10204
|
+
inputProps: PropTypes__default.default.object,
|
|
10197
10205
|
size: PropTypes__default.default.oneOf(size.default),
|
|
10198
10206
|
textColor: PropTypes__default.default.oneOf(textColor.default),
|
|
10199
|
-
textWeight: PropTypes__default.default.oneOf(textWeight.default)
|
|
10207
|
+
textWeight: PropTypes__default.default.oneOf(textWeight.default),
|
|
10208
|
+
onChange: PropTypes__default.default.func
|
|
10200
10209
|
};
|
|
10201
10210
|
|
|
10202
10211
|
exports.DatePickerInput = DatePickerInput;
|
package/dist/components/Group.js
CHANGED
|
@@ -32,7 +32,8 @@ function Group(props) {
|
|
|
32
32
|
className = props.className,
|
|
33
33
|
horizontalScroll = props.horizontalScroll,
|
|
34
34
|
set = props.set,
|
|
35
|
-
style = props.style
|
|
35
|
+
style = props.style,
|
|
36
|
+
dataTour = props.dataTour;
|
|
36
37
|
var contentAlignClass = useDeviceTargetClass.useDeviceTargetClass(props, {
|
|
37
38
|
prefix: 'group_content-align_',
|
|
38
39
|
propsKey: 'contentAlign'
|
|
@@ -107,6 +108,7 @@ function Group(props) {
|
|
|
107
108
|
return /*#__PURE__*/React__default.default.createElement("div", {
|
|
108
109
|
className: clsx__default.default(className, 'group', widthClass, columnsClass, contentAlignClass, alignDirectionClass, directionClass, alignClass, fillClass, fillHoverClass, set && "group_set_" + set, horizontalScroll && 'group_type_horizontal_scroll', stackingClass, wrapClass, growClass, shapeClass, borderColorClass, borderWidthClass, borderTypeClass, elevationClass, justifyContentClass),
|
|
109
110
|
id: id,
|
|
111
|
+
"data-tour": dataTour,
|
|
110
112
|
style: Object.assign({}, groupStyles, style)
|
|
111
113
|
}, horizontalScroll ? /*#__PURE__*/React__default.default.createElement("div", {
|
|
112
114
|
className: "group__wrapper",
|
package/dist/components/Icon.js
CHANGED
|
@@ -45,9 +45,11 @@ var Icon = /*#__PURE__*/React__default.default.forwardRef(function Icon(props, r
|
|
|
45
45
|
after = props.after,
|
|
46
46
|
Badge = props.Badge,
|
|
47
47
|
SvgImage = props.SvgImage,
|
|
48
|
+
id = props.id,
|
|
48
49
|
imageSrc = props.imageSrc;
|
|
49
50
|
props.simple;
|
|
50
|
-
var
|
|
51
|
+
var dataTour = props.dataTour,
|
|
52
|
+
className = props.className,
|
|
51
53
|
href = props.href,
|
|
52
54
|
link = props.link,
|
|
53
55
|
linkTarget = props.linkTarget,
|
|
@@ -138,7 +140,9 @@ var Icon = /*#__PURE__*/React__default.default.forwardRef(function Icon(props, r
|
|
|
138
140
|
}, [SvgImage, imageSrc]);
|
|
139
141
|
return /*#__PURE__*/React__default.default.createElement("div", {
|
|
140
142
|
className: clsx__default.default(className, 'icon', fillClass, fillHoverClass, fillSizeClass, iconFillClass, iconFillHoverClass, shapeClass, iconStrokeClass, iconStrokeHoverClass, borderColorClass, borderColorHoverClass, borderWidthClass, borderTypeClass, Badge && 'icon_type_with-badge', (link || href || onClick) && 'cursor_type_pointer'),
|
|
143
|
+
id: id,
|
|
141
144
|
ref: ref,
|
|
145
|
+
"data-tour": dataTour,
|
|
142
146
|
style: iconStyles,
|
|
143
147
|
onClick: onClick
|
|
144
148
|
}, /*#__PURE__*/React__default.default.createElement(index.LinkWrapper, {
|
package/dist/components/Label.js
CHANGED
|
@@ -45,6 +45,7 @@ function Label(props) {
|
|
|
45
45
|
labelTextWrap = props.labelTextWrap,
|
|
46
46
|
labelTextColor = props.labelTextColor,
|
|
47
47
|
set = props.set,
|
|
48
|
+
dataTour = props.dataTour,
|
|
48
49
|
type = props.type;
|
|
49
50
|
var alignDirectionClass = useDeviceTargetClass.useDeviceTargetClass(props, {
|
|
50
51
|
prefix: 'align_',
|
|
@@ -78,6 +79,7 @@ function Label(props) {
|
|
|
78
79
|
labelStyles = _useStyles.styles;
|
|
79
80
|
return /*#__PURE__*/React__default.default.createElement("div", {
|
|
80
81
|
className: clsx__default.default(className, 'label', fillClass || appearance && ("fill_" + labelConfig.appearance[appearance].fillClass).replace(/([A-Z])/g, '-$1').toLowerCase(), shapeClass, borderClass, borderTypeClass, sizeClass, alignDirectionClass, alignClass, type && "label_type_" + type, set && "label_set_" + set),
|
|
82
|
+
"data-tour": dataTour,
|
|
81
83
|
style: labelStyles
|
|
82
84
|
}, /*#__PURE__*/React__default.default.createElement("div", {
|
|
83
85
|
className: "label__inner"
|
|
@@ -44,6 +44,7 @@ var SearchInput = /*#__PURE__*/React__default.default.forwardRef(function Search
|
|
|
44
44
|
before = props.before,
|
|
45
45
|
className = props.className,
|
|
46
46
|
size = props.size,
|
|
47
|
+
dataTour = props.dataTour,
|
|
47
48
|
iconAfter = props.iconAfter;
|
|
48
49
|
props.iconAfterBgFill;
|
|
49
50
|
var iconAfterFill = props.iconAfterFill,
|
|
@@ -158,6 +159,7 @@ var SearchInput = /*#__PURE__*/React__default.default.forwardRef(function Search
|
|
|
158
159
|
searchInputStyles = _useStyles.styles;
|
|
159
160
|
return /*#__PURE__*/React__default.default.createElement("label", {
|
|
160
161
|
className: clsx__default.default(className, 'search-input', shapeClass, fillClass, widthClass, borderColorClass, borderColorHoverClass, borderWidthClass, borderTypeClass, size && "search-input_size_" + size, type && "search-input_type_" + type),
|
|
162
|
+
"data-tour": dataTour,
|
|
161
163
|
style: searchInputStyles
|
|
162
164
|
}, before, iconBefore && /*#__PURE__*/React__default.default.createElement(index.Icon, {
|
|
163
165
|
className: "search-input__icon search-input__icon-before",
|
|
@@ -109,6 +109,7 @@ var Segmented = /*#__PURE__*/React__default.default.forwardRef(function (props,
|
|
|
109
109
|
className: clsx__default.default('segmented__item-label'),
|
|
110
110
|
htmlFor: item.label
|
|
111
111
|
}, /*#__PURE__*/React__default.default.createElement(index.Text, {
|
|
112
|
+
className: "segmented__item-label-text",
|
|
112
113
|
textColor: item.value === activeSegment.value ? labelTextActiveColor : labelTextColor,
|
|
113
114
|
size: labelTextSize
|
|
114
115
|
}, item.label)));
|
package/dist/components/Tab.js
CHANGED
|
@@ -68,7 +68,8 @@ function Tab(props) {
|
|
|
68
68
|
labelTextSize = props.labelTextSize,
|
|
69
69
|
labelTextWrap = props.labelTextWrap,
|
|
70
70
|
labelTextStyle = props.labelTextStyle,
|
|
71
|
-
|
|
71
|
+
labelTextWeight = props.labelTextWeight,
|
|
72
|
+
dataTour = props.dataTour,
|
|
72
73
|
dividerFill = props.dividerFill,
|
|
73
74
|
dividerFillHover = props.dividerFillHover,
|
|
74
75
|
dividerFillActive = props.dividerFillActive,
|
|
@@ -140,7 +141,8 @@ function Tab(props) {
|
|
|
140
141
|
className: clsx__default.default('tab', isActive && 'tab_state_active', isHover && 'tab_state_hover', appearance && ("fill_" + tabConfig.appearance[appearance].fillClass).replace(/([A-Z])/g, '-$1').toLowerCase(), appearance && ("fill_hover_" + tabConfig.appearance[appearance].fillHoverClass).replace(/([A-Z])/g, '-$1').toLowerCase(), className, sizeClass, fillClass, fillHoverClass, fillActiveClass, fillActiveHoverClass, fillDisabledClass, shapeClass, typeClass, widthClass, set && "tab_set_" + set, justifyContentClass),
|
|
141
142
|
style: tab,
|
|
142
143
|
onClick: onClick,
|
|
143
|
-
onMouseEnter: onMouseEnter
|
|
144
|
+
onMouseEnter: onMouseEnter,
|
|
145
|
+
"data-tour": dataTour
|
|
144
146
|
}, /*#__PURE__*/React__default.default.createElement(index.Link, {
|
|
145
147
|
href: link || href,
|
|
146
148
|
className: clsx__default.default('tab__link', alignDirectionClass, alignClass),
|
|
@@ -154,7 +156,7 @@ function Tab(props) {
|
|
|
154
156
|
textColorActive: isActive && labelColorActive || appearance && tabConfig.appearance[appearance].labelColorActive.replace(/([A-Z])/g, '-$1').toLowerCase(),
|
|
155
157
|
textGradient: labelTextGradient,
|
|
156
158
|
size: labelTextSize,
|
|
157
|
-
textWeight:
|
|
159
|
+
textWeight: labelTextWeight,
|
|
158
160
|
textColor: labelColor || appearance && tabConfig.appearance[appearance].labelColor.replace(/([A-Z])/g, '-$1').toLowerCase(),
|
|
159
161
|
textWrap: labelTextWrap,
|
|
160
162
|
textColorHover: labelTextColorHover,
|
|
@@ -211,7 +213,7 @@ Tab.propTypes = (_Tab$propTypes = {
|
|
|
211
213
|
labelTextColorHover: PropTypes__default.default.oneOf(textColorHover.default),
|
|
212
214
|
labelColorActive: PropTypes__default.default.oneOf(textColorActive.default),
|
|
213
215
|
labelTextGradient: PropTypes__default.default.oneOf(textGradient.default)
|
|
214
|
-
}, _Tab$propTypes["labelTextSize"] = PropTypes__default.default.oneOf(size.default), _Tab$propTypes.labelTextWrap = PropTypes__default.default.string, _Tab$propTypes.labelTextStyle = PropTypes__default.default.oneOf(textStyle.default), _Tab$propTypes.
|
|
216
|
+
}, _Tab$propTypes["labelTextSize"] = PropTypes__default.default.oneOf(size.default), _Tab$propTypes.labelTextWrap = PropTypes__default.default.string, _Tab$propTypes.labelTextStyle = PropTypes__default.default.oneOf(textStyle.default), _Tab$propTypes.labelTextWeight = PropTypes__default.default.oneOf(textWeight.default), _Tab$propTypes.type = PropTypes__default.default.oneOf(type.default), _Tab$propTypes.typeDesktop = PropTypes__default.default.oneOf(type.default), _Tab$propTypes.typeMobile = PropTypes__default.default.oneOf(type.default), _Tab$propTypes.typeTablet = PropTypes__default.default.oneOf(type.default), _Tab$propTypes.title = PropTypes__default.default.string, _Tab$propTypes.underline = PropTypes__default.default.oneOf(underline.default), _Tab$propTypes);
|
|
215
217
|
Tab.defaultProps = {
|
|
216
218
|
size: 'normal',
|
|
217
219
|
LinkComponent: 'a',
|
|
@@ -220,6 +222,7 @@ Tab.defaultProps = {
|
|
|
220
222
|
|
|
221
223
|
function TabGroup(props) {
|
|
222
224
|
var id = props.id,
|
|
225
|
+
dataTour = props.dataTour,
|
|
223
226
|
children = props.children,
|
|
224
227
|
className = props.className,
|
|
225
228
|
horizontalScroll = props.horizontalScroll,
|
|
@@ -271,6 +274,7 @@ function TabGroup(props) {
|
|
|
271
274
|
return /*#__PURE__*/React__default.default.createElement("div", {
|
|
272
275
|
className: clsx__default.default(className, 'tab-group', 'group', widthClass, contentAlignClass, alignDirectionClass, directionClass, alignClass, fillClass, set && "group_set_" + set, horizontalScroll && 'group_type_horizontal_scroll', wrapClass, borderColorClass, borderWidthClass, borderTypeClass),
|
|
273
276
|
id: id,
|
|
277
|
+
"data-tour": dataTour,
|
|
274
278
|
style: Object.assign({}, groupStyles, style)
|
|
275
279
|
}, horizontalScroll ? /*#__PURE__*/React__default.default.createElement("div", {
|
|
276
280
|
className: "group__wrapper",
|
package/dist/components/Text.js
CHANGED
|
@@ -28,6 +28,7 @@ var clsx__default = /*#__PURE__*/_interopDefault(clsx);
|
|
|
28
28
|
|
|
29
29
|
function Text(props) {
|
|
30
30
|
var after = props.after,
|
|
31
|
+
dataTour = props.dataTour,
|
|
31
32
|
before = props.before,
|
|
32
33
|
children = props.children,
|
|
33
34
|
className = props.className,
|
|
@@ -80,6 +81,7 @@ function Text(props) {
|
|
|
80
81
|
});
|
|
81
82
|
return /*#__PURE__*/React__default.default.createElement(Tag, {
|
|
82
83
|
className: clsx__default.default(className, 'text', sizeClass, weightClass, textColorClass, textColorActiveClass, textColorHoverClass, textGradientClass, textStyleClass, textTruncateClass, textWrapClass, type && "text_type_" + type, widthClass, onClick && (cursor || 'cursor_type_pointer')),
|
|
84
|
+
"data-tour": dataTour,
|
|
83
85
|
htmlFor: htmlFor,
|
|
84
86
|
style: textStyles,
|
|
85
87
|
onClick: onClick
|
package/dist/components/Title.js
CHANGED
|
@@ -30,7 +30,8 @@ var PropTypes__default = /*#__PURE__*/_interopDefault(PropTypes);
|
|
|
30
30
|
var clsx__default = /*#__PURE__*/_interopDefault(clsx);
|
|
31
31
|
|
|
32
32
|
function Title(props) {
|
|
33
|
-
var
|
|
33
|
+
var dataTour = props.dataTour,
|
|
34
|
+
tag = props.tag,
|
|
34
35
|
text = props.text,
|
|
35
36
|
textWrap = props.textWrap;
|
|
36
37
|
var children = props.children,
|
|
@@ -105,6 +106,7 @@ function Title(props) {
|
|
|
105
106
|
}, [isMobile, isTablet, isDesktop]);
|
|
106
107
|
return /*#__PURE__*/React__default.default.createElement(Tag, {
|
|
107
108
|
className: clsx__default.default(className, 'title', fillColorClass, size && "title_size_" + size, textColorClass, textColorActiveClass, textColorHoverClass, typeClass, textGradientClass, textStyleClass, weightClass, textWrap && "word-wrap_" + textWrap),
|
|
109
|
+
"data-tour": dataTour,
|
|
108
110
|
onClick: onClick,
|
|
109
111
|
style: titleStyles
|
|
110
112
|
}, /*#__PURE__*/React__default.default.createElement("span", {
|