@clayui/label 3.111.0 → 3.141.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.
package/lib/index.d.ts CHANGED
@@ -3,8 +3,9 @@
3
3
  * SPDX-License-Identifier: BSD-3-Clause
4
4
  */
5
5
  import React from 'react';
6
- declare const ClayLabelItemExpand: React.ForwardRefExoticComponent<React.BaseHTMLAttributes<HTMLAnchorElement | HTMLSpanElement> & React.RefAttributes<HTMLAnchorElement | HTMLSpanElement>>;
7
- declare type DisplayType = 'secondary' | 'info' | 'warning' | 'danger' | 'success' | 'unstyled';
6
+ export declare const ItemAfter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLSpanElement> & React.RefAttributes<HTMLSpanElement>>;
7
+ export declare const ItemBefore: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLSpanElement> & React.RefAttributes<HTMLSpanElement>>;
8
+ export declare const ItemExpand: React.ForwardRefExoticComponent<React.BaseHTMLAttributes<HTMLSpanElement | HTMLAnchorElement> & React.RefAttributes<HTMLSpanElement | HTMLAnchorElement>>;
8
9
  interface IBaseProps extends React.BaseHTMLAttributes<HTMLSpanElement> {
9
10
  /**
10
11
  * Flag to indicate if `label-dismissible` class should be applied.
@@ -13,7 +14,7 @@ interface IBaseProps extends React.BaseHTMLAttributes<HTMLSpanElement> {
13
14
  /**
14
15
  * Determines the style of the label.
15
16
  */
16
- displayType?: DisplayType;
17
+ displayType?: 'secondary' | 'info' | 'warning' | 'danger' | 'success' | 'unstyled';
17
18
  /**
18
19
  * Flag to indicate if the label should be of the `large` variant.
19
20
  */
@@ -29,7 +30,7 @@ interface IProps extends IBaseProps {
29
30
  /**
30
31
  * Pros to add to the inner label item
31
32
  */
32
- innerElementProps?: React.ComponentProps<typeof ClayLabelItemExpand>;
33
+ innerElementProps?: React.ComponentProps<typeof ItemExpand>;
33
34
  /**
34
35
  * Path to the location of the spritemap resource used for Icon.
35
36
  */
@@ -39,9 +40,10 @@ interface IProps extends IBaseProps {
39
40
  */
40
41
  withClose?: boolean;
41
42
  }
42
- declare const _default: React.ForwardRefExoticComponent<IProps & React.RefAttributes<HTMLAnchorElement | HTMLSpanElement>> & {
43
- ItemAfter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLSpanElement> & React.RefAttributes<HTMLSpanElement>>;
44
- ItemBefore: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLSpanElement> & React.RefAttributes<HTMLSpanElement>>;
45
- ItemExpand: React.ForwardRefExoticComponent<React.BaseHTMLAttributes<HTMLAnchorElement | HTMLSpanElement> & React.RefAttributes<HTMLAnchorElement | HTMLSpanElement>>;
46
- };
47
- export default _default;
43
+ interface IForwardRef<T, P = {}> extends React.ForwardRefExoticComponent<P & React.RefAttributes<T>> {
44
+ ItemAfter: typeof ItemAfter;
45
+ ItemBefore: typeof ItemBefore;
46
+ ItemExpand: typeof ItemExpand;
47
+ }
48
+ declare const Label: IForwardRef<HTMLSpanElement | HTMLAnchorElement, IProps>;
49
+ export default Label;
package/lib/index.js CHANGED
@@ -1,66 +1,55 @@
1
1
  "use strict";
2
2
 
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
3
4
  Object.defineProperty(exports, "__esModule", {
4
5
  value: true
5
6
  });
6
- exports.default = void 0;
7
-
7
+ exports.default = exports.ItemExpand = exports.ItemBefore = exports.ItemAfter = void 0;
8
8
  var _icon = _interopRequireDefault(require("@clayui/icon"));
9
-
10
9
  var _link = _interopRequireDefault(require("@clayui/link"));
11
-
12
10
  var _classnames = _interopRequireDefault(require("classnames"));
13
-
14
11
  var _react = _interopRequireDefault(require("react"));
15
-
16
12
  var _excluded = ["children", "className"],
17
- _excluded2 = ["children", "className"],
18
- _excluded3 = ["children", "className", "href"],
19
- _excluded4 = ["children", "className", "dismissible", "displayType", "large"],
20
- _excluded5 = ["children", "closeButtonProps", "href", "innerElementProps", "withClose", "spritemap"];
21
-
22
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
23
-
24
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
25
-
26
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
27
-
28
- function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
29
-
30
- function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
31
-
32
- var ClayLabelItemAfter = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
13
+ _excluded2 = ["children", "className"],
14
+ _excluded3 = ["children", "className", "href"],
15
+ _excluded4 = ["children", "className", "dismissible", "displayType", "large"],
16
+ _excluded5 = ["children", "closeButtonProps", "href", "innerElementProps", "withClose", "spritemap"];
17
+ /**
18
+ * SPDX-FileCopyrightText: © 2019 Liferay, Inc. <https://liferay.com>
19
+ * SPDX-License-Identifier: BSD-3-Clause
20
+ */
21
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
22
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
23
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
24
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
25
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) { ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } } return n; }, _extends.apply(null, arguments); }
26
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) { o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } } return i; }
27
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) { if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } } return t; }
28
+ var ItemAfter = exports.ItemAfter = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
33
29
  var children = _ref.children,
34
- className = _ref.className,
35
- otherProps = _objectWithoutProperties(_ref, _excluded);
36
-
30
+ className = _ref.className,
31
+ otherProps = _objectWithoutProperties(_ref, _excluded);
37
32
  return /*#__PURE__*/_react.default.createElement("span", _extends({}, otherProps, {
38
33
  className: (0, _classnames.default)(className, 'label-item label-item-after'),
39
34
  ref: ref
40
35
  }), children);
41
36
  });
42
-
43
- ClayLabelItemAfter.displayName = 'ClayLabelItemAfter';
44
-
45
- var ClayLabelItemBefore = /*#__PURE__*/_react.default.forwardRef(function (_ref2, ref) {
37
+ ItemAfter.displayName = 'ClayLabelItemAfter';
38
+ var ItemBefore = exports.ItemBefore = /*#__PURE__*/_react.default.forwardRef(function (_ref2, ref) {
46
39
  var children = _ref2.children,
47
- className = _ref2.className,
48
- otherProps = _objectWithoutProperties(_ref2, _excluded2);
49
-
40
+ className = _ref2.className,
41
+ otherProps = _objectWithoutProperties(_ref2, _excluded2);
50
42
  return /*#__PURE__*/_react.default.createElement("span", _extends({}, otherProps, {
51
43
  className: (0, _classnames.default)(className, 'label-item label-item-before'),
52
44
  ref: ref
53
45
  }), children);
54
46
  });
55
-
56
- ClayLabelItemBefore.displayName = 'ClayLabelItemBefore';
57
-
58
- var ClayLabelItemExpand = /*#__PURE__*/_react.default.forwardRef(function (_ref3, ref) {
47
+ ItemBefore.displayName = 'ClayLabelItemBefore';
48
+ var ItemExpand = exports.ItemExpand = /*#__PURE__*/_react.default.forwardRef(function (_ref3, ref) {
59
49
  var children = _ref3.children,
60
- className = _ref3.className,
61
- href = _ref3.href,
62
- otherProps = _objectWithoutProperties(_ref3, _excluded3);
63
-
50
+ className = _ref3.className,
51
+ href = _ref3.href,
52
+ otherProps = _objectWithoutProperties(_ref3, _excluded3);
64
53
  var TagName = href ? _link.default : 'span';
65
54
  return /*#__PURE__*/_react.default.createElement(TagName, _extends({}, otherProps, {
66
55
  className: (0, _classnames.default)(className, 'label-item label-item-expand'),
@@ -68,19 +57,16 @@ var ClayLabelItemExpand = /*#__PURE__*/_react.default.forwardRef(function (_ref3
68
57
  ref: ref
69
58
  }), children);
70
59
  });
71
-
72
- ClayLabelItemExpand.displayName = 'ClayLabelItemExpand';
73
-
74
- var ClayLabel = /*#__PURE__*/_react.default.forwardRef(function (_ref4, ref) {
60
+ ItemExpand.displayName = 'ClayLabelItemExpand';
61
+ var OldLabel = /*#__PURE__*/_react.default.forwardRef(function (_ref4, ref) {
75
62
  var children = _ref4.children,
76
- className = _ref4.className,
77
- dismissible = _ref4.dismissible,
78
- _ref4$displayType = _ref4.displayType,
79
- displayType = _ref4$displayType === void 0 ? 'secondary' : _ref4$displayType,
80
- _ref4$large = _ref4.large,
81
- large = _ref4$large === void 0 ? false : _ref4$large,
82
- otherProps = _objectWithoutProperties(_ref4, _excluded4);
83
-
63
+ className = _ref4.className,
64
+ dismissible = _ref4.dismissible,
65
+ _ref4$displayType = _ref4.displayType,
66
+ displayType = _ref4$displayType === void 0 ? 'secondary' : _ref4$displayType,
67
+ _ref4$large = _ref4.large,
68
+ large = _ref4$large === void 0 ? false : _ref4$large,
69
+ otherProps = _objectWithoutProperties(_ref4, _excluded4);
84
70
  return /*#__PURE__*/_react.default.createElement("span", _extends({}, otherProps, {
85
71
  className: (0, _classnames.default)('label', className, _defineProperty({
86
72
  'label-dismissible': dismissible,
@@ -89,27 +75,27 @@ var ClayLabel = /*#__PURE__*/_react.default.forwardRef(function (_ref4, ref) {
89
75
  ref: ref
90
76
  }), children);
91
77
  });
92
-
93
- ClayLabel.displayName = 'ClayLabel';
94
-
95
- var ClayLabelHybrid = /*#__PURE__*/_react.default.forwardRef(function (_ref5, ref) {
78
+ OldLabel.displayName = 'ClayLabel';
79
+ function forwardRef(component) {
80
+ return /*#__PURE__*/_react.default.forwardRef(component);
81
+ }
82
+ var Label = forwardRef(function (_ref5, ref) {
96
83
  var children = _ref5.children,
97
- closeButtonProps = _ref5.closeButtonProps,
98
- href = _ref5.href,
99
- _ref5$innerElementPro = _ref5.innerElementProps,
100
- innerElementProps = _ref5$innerElementPro === void 0 ? {} : _ref5$innerElementPro,
101
- _ref5$withClose = _ref5.withClose,
102
- withClose = _ref5$withClose === void 0 ? true : _ref5$withClose,
103
- spritemap = _ref5.spritemap,
104
- otherProps = _objectWithoutProperties(_ref5, _excluded5);
105
-
106
- return /*#__PURE__*/_react.default.createElement(ClayLabel, _extends({
84
+ closeButtonProps = _ref5.closeButtonProps,
85
+ href = _ref5.href,
86
+ _ref5$innerElementPro = _ref5.innerElementProps,
87
+ innerElementProps = _ref5$innerElementPro === void 0 ? {} : _ref5$innerElementPro,
88
+ _ref5$withClose = _ref5.withClose,
89
+ withClose = _ref5$withClose === void 0 ? true : _ref5$withClose,
90
+ spritemap = _ref5.spritemap,
91
+ otherProps = _objectWithoutProperties(_ref5, _excluded5);
92
+ return /*#__PURE__*/_react.default.createElement(OldLabel, _extends({
107
93
  dismissible: withClose && !!closeButtonProps
108
94
  }, otherProps, {
109
95
  ref: ref
110
- }), !withClose && children, withClose && /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(ClayLabelItemExpand, _extends({}, innerElementProps, {
96
+ }), !withClose && children, withClose && /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(ItemExpand, _extends({}, innerElementProps, {
111
97
  href: href
112
- }), children), closeButtonProps && /*#__PURE__*/_react.default.createElement(ClayLabelItemAfter, null, /*#__PURE__*/_react.default.createElement("button", _extends({}, closeButtonProps, {
98
+ }), children), closeButtonProps && /*#__PURE__*/_react.default.createElement(ItemAfter, null, /*#__PURE__*/_react.default.createElement("button", _extends({}, closeButtonProps, {
113
99
  className: (0, _classnames.default)(closeButtonProps.className, 'close'),
114
100
  type: "button"
115
101
  }), /*#__PURE__*/_react.default.createElement(_icon.default, {
@@ -117,13 +103,8 @@ var ClayLabelHybrid = /*#__PURE__*/_react.default.forwardRef(function (_ref5, re
117
103
  symbol: "times-small"
118
104
  })))));
119
105
  });
120
-
121
- ClayLabelHybrid.displayName = 'ClayLabel';
122
-
123
- var _default = Object.assign(ClayLabelHybrid, {
124
- ItemAfter: ClayLabelItemAfter,
125
- ItemBefore: ClayLabelItemBefore,
126
- ItemExpand: ClayLabelItemExpand
127
- });
128
-
129
- exports.default = _default;
106
+ Label.displayName = 'ClayLabel';
107
+ Label.ItemAfter = ItemAfter;
108
+ Label.ItemBefore = ItemBefore;
109
+ Label.ItemExpand = ItemExpand;
110
+ var _default = exports.default = Label;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clayui/label",
3
- "version": "3.111.0",
3
+ "version": "3.141.0",
4
4
  "description": "ClayLabel component",
5
5
  "license": "BSD-3-Clause",
6
6
  "repository": "https://github.com/liferay/clay",
@@ -24,8 +24,8 @@
24
24
  "react"
25
25
  ],
26
26
  "dependencies": {
27
- "@clayui/icon": "^3.111.0",
28
- "@clayui/link": "^3.111.0",
27
+ "@clayui/icon": "^3.128.0",
28
+ "@clayui/link": "^3.141.0",
29
29
  "classnames": "^2.2.6"
30
30
  },
31
31
  "peerDependencies": {
@@ -36,5 +36,5 @@
36
36
  "browserslist": [
37
37
  "extends browserslist-config-clay"
38
38
  ],
39
- "gitHead": "7dae7b1ba2f61516876e5799dc95045a5adb2c18"
39
+ "gitHead": "399f0580371b978534fe4320541421b549bde3c1"
40
40
  }
package/CHANGELOG.md DELETED
@@ -1,116 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- # [3.111.0](https://github.com/liferay/clay/compare/v3.110.0...v3.111.0) (2024-02-15)
7
-
8
- **Note:** Version bump only for package @clayui/label
9
-
10
- ## [3.106.1](https://github.com/liferay/clay/compare/v3.106.0...v3.106.1) (2023-10-26)
11
-
12
- **Note:** Version bump only for package @clayui/label
13
-
14
- # [3.106.0](https://github.com/liferay/clay/compare/v3.105.0...v3.106.0) (2023-10-25)
15
-
16
- ### Bug Fixes
17
-
18
- - remove 'src' dir from being packaged with npm ([9383e8d](https://github.com/liferay/clay/commit/9383e8d8abb25ca3396e7c6e4dfa53bbc72691c5))
19
- - use package's directory for baseDir when generating type ([0a5c710](https://github.com/liferay/clay/commit/0a5c710092f36243bc8d5487f70e831295715072))
20
-
21
- # [3.88.0](https://github.com/liferay/clay/compare/v3.87.2...v3.88.0) (2023-02-14)
22
-
23
- **Note:** Version bump only for package @clayui/label
24
-
25
- # [3.85.0](https://github.com/liferay/clay/compare/v3.84.0...v3.85.0) (2023-01-23)
26
-
27
- **Note:** Version bump only for package @clayui/label
28
-
29
- # [3.56.0](https://github.com/liferay/clay/compare/v3.55.0...v3.56.0) (2022-05-09)
30
-
31
- **Note:** Version bump only for package @clayui/label
32
-
33
- # [3.45.0](https://github.com/liferay/clay/compare/v3.44.2...v3.45.0) (2022-02-01)
34
-
35
- **Note:** Version bump only for package @clayui/label
36
-
37
- # [3.40.0](https://github.com/liferay/clay/compare/v3.39.0...v3.40.0) (2021-11-17)
38
-
39
- **Note:** Version bump only for package @clayui/label
40
-
41
- # [3.39.0](https://github.com/liferay/clay/compare/v3.38.0...v3.39.0) (2021-10-29)
42
-
43
- **Note:** Version bump only for package @clayui/label
44
-
45
- # [3.38.0](https://github.com/liferay/clay/compare/v3.37.0...v3.38.0) (2021-10-22)
46
-
47
- **Note:** Version bump only for package @clayui/label
48
-
49
- # [3.37.0](https://github.com/liferay/clay/compare/v3.36.0...v3.37.0) (2021-10-06)
50
-
51
- **Note:** Version bump only for package @clayui/label
52
-
53
- # [3.32.0](https://github.com/liferay/clay/compare/v3.31.0...v3.32.0) (2021-07-28)
54
-
55
- **Note:** Version bump only for package @clayui/label
56
-
57
- ## [3.4.1](https://github.com/liferay/clay/compare/@clayui/label@3.4.0...@clayui/label@3.4.1) (2021-01-13)
58
-
59
- ### Bug Fixes
60
-
61
- - **@clayui/label:** close icon should be times-small ([5181335](https://github.com/liferay/clay/commit/5181335))
62
-
63
- # [3.4.0](https://github.com/liferay/clay/compare/@clayui/label@3.3.1...@clayui/label@3.4.0) (2020-10-01)
64
-
65
- ### Features
66
-
67
- - **clayui.com:** Add JSP code example to Label ([e90068e](https://github.com/liferay/clay/commit/e90068e))
68
- - **clayui.com:** Move API tables to new files and update document tabs, rename files to use singular naming instead of plural, change mainTabURL of pagination-bar to a proper one ([d812ee9](https://github.com/liferay/clay/commit/d812ee9))
69
- - add displayName for all components ([cc3211d](https://github.com/liferay/clay/commit/cc3211d))
70
-
71
- ## [3.3.1](https://github.com/liferay/clay/compare/@clayui/label@3.3.0...@clayui/label@3.3.1) (2020-06-18)
72
-
73
- **Note:** Version bump only for package @clayui/label
74
-
75
- # [3.3.0](https://github.com/liferay/clay/compare/@clayui/label@3.2.0...@clayui/label@3.3.0) (2020-04-24)
76
-
77
- ### Features
78
-
79
- - **@clayui/label:** Attempt at ClayLabel contentBefore prop ([cd634e2](https://github.com/liferay/clay/commit/cd634e2))
80
- - **@clayui/label:** use a hybrid API appraoch to expose low-level components ([deffd0e](https://github.com/liferay/clay/commit/deffd0e))
81
-
82
- # [3.2.0](https://github.com/liferay/clay/tree/master/packages/clay-label/compare/@clayui/label@3.1.1...@clayui/label@3.2.0) (2020-03-26)
83
-
84
- ### Features
85
-
86
- - **@clayui/label:** add prop for inner element attributes ([2d1f489](https://github.com/liferay/clay/commit/2d1f489))
87
-
88
- ## [3.1.1](https://github.com/liferay/clay/tree/master/packages/clay-label/compare/@clayui/label@3.1.0...@clayui/label@3.1.1) (2020-03-12)
89
-
90
- ### Bug Fixes
91
-
92
- - **@clayui/label:** use ClayLink over anchor tag ([746487f](https://github.com/liferay/clay/commit/746487f))
93
-
94
- # 3.1.0 (2020-02-28)
95
-
96
- ### Bug Fixes
97
-
98
- - update components to include 'types' and 'ts:main' package keys ([9e24b59](https://github.com/liferay/clay/commit/9e24b59))
99
-
100
- ### Features
101
-
102
- - **clay-form:** create high-level multi-select component ([feb3abc](https://github.com/liferay/clay/commit/feb3abc))
103
- - added template demos ([c2f1064](https://github.com/liferay/clay/commit/c2f1064))
104
- - update react-testing-library to be @testing-library/react ([bd78145](https://github.com/liferay/clay/commit/bd78145))
105
-
106
- ## [3.0.3](https://github.com/liferay/clay/tree/master/packages/clay-label/compare/@clayui/label@3.0.1...@clayui/label@3.0.3) (2020-01-31)
107
-
108
- **Note:** Version bump only for package @clayui/label
109
-
110
- ## [3.0.2](https://github.com/liferay/clay/tree/master/packages/clay-label/compare/@clayui/label@3.0.1...@clayui/label@3.0.2) (2020-01-20)
111
-
112
- **Note:** Version bump only for package @clayui/label
113
-
114
- ## [3.0.1](https://github.com/liferay/clay/tree/master/packages/clay-label/compare/@clayui/label@3.0.0...@clayui/label@3.0.1) (2019-10-28)
115
-
116
- **Note:** Version bump only for package @clayui/label