@zohodesk/dot 1.7.24 → 1.7.26
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 +10 -0
- package/assets/Appearance/dark/mode/Dot_DarkMode.module.css +1 -1
- package/assets/Appearance/light/mode/Dot_LightMode.module.css +1 -1
- package/assets/Appearance/pureDark/mode/Dot_PureDarkMode.module.css +1 -1
- package/es/AudioPlayer/__tests__/AudioPlayer.spec.js +186 -38
- package/es/AudioPlayer/__tests__/__snapshots__/AudioPlayer.spec.js.snap +1851 -1
- package/es/list/SecondaryText/PhoneNumber.js +2 -2
- package/es/list/SecondaryText/SecondaryText.module.css +5 -1
- package/es/list/SecondaryText/__tests__/__snapshots__/PhoneNumber.spec.js.snap +1 -1
- package/lib/AudioPlayer/__tests__/AudioPlayer.spec.js +192 -32
- package/lib/AudioPlayer/__tests__/__snapshots__/AudioPlayer.spec.js.snap +1851 -1
- package/lib/list/SecondaryText/PhoneNumber.js +2 -2
- package/lib/list/SecondaryText/SecondaryText.module.css +5 -1
- package/lib/list/SecondaryText/__tests__/__snapshots__/PhoneNumber.spec.js.snap +1 -1
- package/package.json +9 -9
|
@@ -86,9 +86,9 @@ var PhoneNumber = /*#__PURE__*/function (_Component) {
|
|
|
86
86
|
hasReload: hasReload,
|
|
87
87
|
className: _SecondaryTextModule["default"].link
|
|
88
88
|
}, LinkProps), /*#__PURE__*/_react["default"].createElement("div", {
|
|
89
|
-
className: "".concat(_SecondaryTextModule["default"].phoneNumber, " ").concat(_SecondaryTextModule["default"]["font_".concat(fontWeight)], " ").concat(className ? className : '')
|
|
89
|
+
className: "".concat(_SecondaryTextModule["default"].phoneNumber, " ").concat(_SecondaryTextModule["default"].phonetxt, " ").concat(_SecondaryTextModule["default"]["font_".concat(fontWeight)], " ").concat(className ? className : '')
|
|
90
90
|
}, text)) : /*#__PURE__*/_react["default"].createElement("div", _extends({
|
|
91
|
-
className: "".concat(_SecondaryTextModule["default"].secondaryText, " ").concat(_SecondaryTextModule["default"]["font_".concat(fontWeight)], " ").concat(className ? className : ''),
|
|
91
|
+
className: "".concat(_SecondaryTextModule["default"].secondaryText, " ").concat(_SecondaryTextModule["default"].phonetxt, " ").concat(_SecondaryTextModule["default"]["font_".concat(fontWeight)], " ").concat(className ? className : ''),
|
|
92
92
|
"data-title": title
|
|
93
93
|
}, TextProps), text));
|
|
94
94
|
}
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
color: var(--zdt_secondaryText_black_text);
|
|
20
20
|
}
|
|
21
21
|
.textStyle, .link{
|
|
22
|
-
display: block
|
|
22
|
+
display: block
|
|
23
23
|
}
|
|
24
24
|
.textStyle.textBold {
|
|
25
25
|
font-family: var(--zd_bold);
|
|
@@ -134,3 +134,7 @@ display: block
|
|
|
134
134
|
.black {
|
|
135
135
|
color: var(--zdt_secondaryText_black_text);
|
|
136
136
|
}
|
|
137
|
+
|
|
138
|
+
.phonetxt {
|
|
139
|
+
composes: ltr-dir from '~@zohodesk/components/es/common/common.module.css';
|
|
140
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/dot",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.26",
|
|
4
4
|
"main": "lib/index",
|
|
5
5
|
"module": "es/index.js",
|
|
6
6
|
"private": false,
|
|
@@ -73,12 +73,12 @@
|
|
|
73
73
|
"@zohodesk-private/node-plugins": "1.1.13",
|
|
74
74
|
"@zohodesk-private/react-prop-validator": "1.2.3",
|
|
75
75
|
"@zohodesk/a11y": "2.3.8",
|
|
76
|
-
"@zohodesk/components": "1.4.
|
|
77
|
-
"@zohodesk/hooks": "2.0.
|
|
78
|
-
"@zohodesk/icons": "1.1.
|
|
76
|
+
"@zohodesk/components": "1.4.21",
|
|
77
|
+
"@zohodesk/hooks": "2.0.6",
|
|
78
|
+
"@zohodesk/icons": "1.1.1",
|
|
79
79
|
"@zohodesk/layout": "^3.1.0",
|
|
80
80
|
"@zohodesk/svg": "1.2.2",
|
|
81
|
-
"@zohodesk/utils": "1.3.
|
|
81
|
+
"@zohodesk/utils": "1.3.15",
|
|
82
82
|
"@zohodesk/variables": "1.1.0",
|
|
83
83
|
"@zohodesk/virtualizer": "1.0.13",
|
|
84
84
|
"react-sortable-hoc": "^0.8.3",
|
|
@@ -89,13 +89,13 @@
|
|
|
89
89
|
"peerDependencies": {
|
|
90
90
|
"velocity-react": "1.4.3",
|
|
91
91
|
"@zohodesk/variables": "1.1.0",
|
|
92
|
-
"@zohodesk/components": "1.4.
|
|
93
|
-
"@zohodesk/icons": "1.1.
|
|
92
|
+
"@zohodesk/components": "1.4.21",
|
|
93
|
+
"@zohodesk/icons": "1.1.1",
|
|
94
94
|
"@zohodesk/svg": "1.2.2",
|
|
95
95
|
"@zohodesk/virtualizer": "1.0.13",
|
|
96
96
|
"react-sortable-hoc": "^0.8.3",
|
|
97
|
-
"@zohodesk/hooks": "2.0.
|
|
98
|
-
"@zohodesk/utils": "1.3.
|
|
97
|
+
"@zohodesk/hooks": "2.0.6",
|
|
98
|
+
"@zohodesk/utils": "1.3.15",
|
|
99
99
|
"@zohodesk/a11y": "2.3.8",
|
|
100
100
|
"@zohodesk/layout": "3.1.0"
|
|
101
101
|
}
|