@zohodesk/components 1.0.0-alpha-236 → 1.0.0-alpha-237
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 +5 -0
- package/es/CheckBox/CheckBox.js +2 -1
- package/es/ListItem/ListItem.module.css +1 -1
- package/es/Responsive/Responsive.js +1 -0
- package/es/Select/SelectWithIcon.js +1 -0
- package/lib/CheckBox/CheckBox.js +2 -1
- package/lib/ListItem/ListItem.module.css +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -32,6 +32,11 @@ In this Package, we Provide Some Basic Components to Build Web App
|
|
|
32
32
|
- TextBoxIcon
|
|
33
33
|
- Tooltip
|
|
34
34
|
|
|
35
|
+
# 1.0.0-alpha-237
|
|
36
|
+
|
|
37
|
+
- ListItem Responsive Min Height Fixed
|
|
38
|
+
- CheckBox data-selector attribute added
|
|
39
|
+
|
|
35
40
|
# 1.0.0-alpha-236
|
|
36
41
|
|
|
37
42
|
- Input => autocomplete added in provider configuration
|
package/es/CheckBox/CheckBox.js
CHANGED
|
@@ -79,7 +79,8 @@ export default class CheckBox extends React.Component {
|
|
|
79
79
|
role: role,
|
|
80
80
|
"aria-label": ariaLabel,
|
|
81
81
|
"aria-labelledby": ariaLabelledby,
|
|
82
|
-
"aria-hidden": ariaHidden
|
|
82
|
+
"aria-hidden": ariaHidden,
|
|
83
|
+
"data-selector": id
|
|
83
84
|
}, CheckBoxProps), /*#__PURE__*/React.createElement(Box, {
|
|
84
85
|
className: `${style.boxContainer} ${style[size]} ${customCBoxSize} ${isFilled ? style.filled : ''}`
|
|
85
86
|
}, /*#__PURE__*/React.createElement("input", {
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
--listitem_padding: var(--zd_size10) var(--zd_size25) var(--zd_size10) var(--zd_size39);
|
|
199
199
|
}
|
|
200
200
|
.responsiveHeight {
|
|
201
|
-
--
|
|
201
|
+
--listitem_min_height: var(--zd_size45);
|
|
202
202
|
font-size: var(--zd_font_size15);
|
|
203
203
|
padding-top: var(--zd_size10);
|
|
204
204
|
padding-bottom: var(--zd_size10);
|
package/lib/CheckBox/CheckBox.js
CHANGED
|
@@ -127,7 +127,8 @@ var CheckBox = /*#__PURE__*/function (_React$Component) {
|
|
|
127
127
|
role: role,
|
|
128
128
|
"aria-label": ariaLabel,
|
|
129
129
|
"aria-labelledby": ariaLabelledby,
|
|
130
|
-
"aria-hidden": ariaHidden
|
|
130
|
+
"aria-hidden": ariaHidden,
|
|
131
|
+
"data-selector": id
|
|
131
132
|
}, CheckBoxProps), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
132
133
|
className: "".concat(_CheckBoxModule["default"].boxContainer, " ").concat(_CheckBoxModule["default"][size], " ").concat(customCBoxSize, " ").concat(isFilled ? _CheckBoxModule["default"].filled : '')
|
|
133
134
|
}, /*#__PURE__*/_react["default"].createElement("input", {
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
--listitem_padding: var(--zd_size10) var(--zd_size25) var(--zd_size10) var(--zd_size39);
|
|
199
199
|
}
|
|
200
200
|
.responsiveHeight {
|
|
201
|
-
--
|
|
201
|
+
--listitem_min_height: var(--zd_size45);
|
|
202
202
|
font-size: var(--zd_font_size15);
|
|
203
203
|
padding-top: var(--zd_size10);
|
|
204
204
|
padding-bottom: var(--zd_size10);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/components",
|
|
3
|
-
"version": "1.0.0-alpha-
|
|
3
|
+
"version": "1.0.0-alpha-237",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"module": "es/index.js",
|
|
6
6
|
"jsnext:main": "es/index.js",
|
|
@@ -31,7 +31,8 @@
|
|
|
31
31
|
"test": "react-cli test",
|
|
32
32
|
"sstest": "npm run init && react-cli sstest",
|
|
33
33
|
"build:external": "npm run clean && npm run init && npm run docsjs:build && npm run build:externalDocCopy && react-cli build:component:umd && npm run externalDocHTMLChange",
|
|
34
|
-
"download": "rm package-lock.json && rm -rf node_modules/ && npm install"
|
|
34
|
+
"download": "rm package-lock.json && rm -rf node_modules/ && npm install",
|
|
35
|
+
"expublish": "npm publish --tag experimental-version"
|
|
35
36
|
},
|
|
36
37
|
"devDependencies": {
|
|
37
38
|
"@zohodesk/docstool": "1.0.0-alpha-2",
|