cozy-ui 111.19.0 → 111.21.0

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.
@@ -0,0 +1,15 @@
1
+ import _extends from "@babel/runtime/helpers/extends";
2
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/tab.svg` to regenerate;
3
+ import React from 'react';
4
+
5
+ function SvgTab(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 16 16"
8
+ }, props), /*#__PURE__*/React.createElement("path", {
9
+ fillRule: "evenodd",
10
+ clipRule: "evenodd",
11
+ d: "M13 12v1a2 2 0 01-2 2H2a2 2 0 01-2-2V6a2 2 0 012-2h1V3a2 2 0 012-2h9a2 2 0 012 2v7a2 2 0 01-2 2h-1zm1-9H5v1h6a2 2 0 012 2v4h1V3zM2 6h9v7H2V6z"
12
+ }));
13
+ }
14
+
15
+ export default SvgTab;
@@ -8,8 +8,11 @@ import Skeleton from "cozy-ui/transpiled/react/Skeleton";
8
8
 
9
9
  var ListItemSkeleton = function ListItemSkeleton(_ref) {
10
10
  var hasSecondary = _ref.hasSecondary,
11
- divider = _ref.divider;
12
- return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(ListItem, null, /*#__PURE__*/React.createElement(ListItemIcon, null, /*#__PURE__*/React.createElement(Skeleton, {
11
+ divider = _ref.divider,
12
+ gutters = _ref.gutters;
13
+ return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(ListItem, {
14
+ gutters: gutters
15
+ }, /*#__PURE__*/React.createElement(ListItemIcon, null, /*#__PURE__*/React.createElement(Skeleton, {
13
16
  className: "u-bdrs-4",
14
17
  variant: "rect",
15
18
  width: 32,
@@ -31,6 +34,7 @@ ListItemSkeleton.propTypes = {
31
34
  hasSecondary: PropTypes.bool,
32
35
 
33
36
  /** Show divider after the ListItem */
34
- divider: PropTypes.bool
37
+ divider: PropTypes.bool,
38
+ gutters: PropTypes.string
35
39
  };
36
40
  export default ListItemSkeleton;