@zohodesk/dot 1.7.25 → 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 CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  In this Library, we Provide Some Basic Components to Build Your Application
4
4
 
5
+ # 1.7.26
6
+
7
+ - `list/SecondaryText/PhoneNumber.js`
8
+ - RTL unicode-bidi issue fixed
9
+
5
10
  # 1.7.25
6
11
 
7
12
  - Added rtl:as:property comment for linear-gradient usages to ensure support in PostCSS
@@ -41,9 +41,9 @@ export default class PhoneNumber extends Component {
41
41
  className: style.link,
42
42
  ...LinkProps
43
43
  }, /*#__PURE__*/React.createElement("div", {
44
- className: `${style.phoneNumber} ${style[`font_${fontWeight}`]} ${className ? className : ''}`
44
+ className: `${style.phoneNumber} ${style.phonetxt} ${style[`font_${fontWeight}`]} ${className ? className : ''}`
45
45
  }, text)) : /*#__PURE__*/React.createElement("div", {
46
- className: `${style.secondaryText} ${style[`font_${fontWeight}`]} ${className ? className : ''}`,
46
+ className: `${style.secondaryText} ${style.phonetxt} ${style[`font_${fontWeight}`]} ${className ? className : ''}`,
47
47
  "data-title": title,
48
48
  ...TextProps
49
49
  }, text));
@@ -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
+ }
@@ -8,7 +8,7 @@ exports[`PhoneNumber rendering the defult props 1`] = `
8
8
  rel="noopener noreferrer"
9
9
  >
10
10
  <div
11
- class="phoneNumber font_regular "
11
+ class="phoneNumber phonetxt font_regular "
12
12
  />
13
13
  </a>
14
14
  </DocumentFragment>
@@ -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
+ }
@@ -8,7 +8,7 @@ exports[`PhoneNumber rendering the defult props 1`] = `
8
8
  rel="noopener noreferrer"
9
9
  >
10
10
  <div
11
- class="phoneNumber font_regular "
11
+ class="phoneNumber phonetxt font_regular "
12
12
  />
13
13
  </a>
14
14
  </DocumentFragment>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/dot",
3
- "version": "1.7.25",
3
+ "version": "1.7.26",
4
4
  "main": "lib/index",
5
5
  "module": "es/index.js",
6
6
  "private": false,
@@ -73,9 +73,9 @@
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.19",
77
- "@zohodesk/hooks": "2.0.5",
78
- "@zohodesk/icons": "1.1.0",
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
81
  "@zohodesk/utils": "1.3.15",
@@ -89,12 +89,12 @@
89
89
  "peerDependencies": {
90
90
  "velocity-react": "1.4.3",
91
91
  "@zohodesk/variables": "1.1.0",
92
- "@zohodesk/components": "1.4.19",
93
- "@zohodesk/icons": "1.1.0",
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.5",
97
+ "@zohodesk/hooks": "2.0.6",
98
98
  "@zohodesk/utils": "1.3.15",
99
99
  "@zohodesk/a11y": "2.3.8",
100
100
  "@zohodesk/layout": "3.1.0"