@clayui/breadcrumb 3.116.0 → 3.128.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/Item.d.ts CHANGED
File without changes
package/lib/Item.js CHANGED
@@ -4,30 +4,24 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.default = void 0;
7
-
8
7
  var _link = _interopRequireDefault(require("@clayui/link"));
9
-
10
8
  var _classnames = _interopRequireDefault(require("classnames"));
11
-
12
9
  var _react = _interopRequireDefault(require("react"));
13
-
14
10
  var _excluded = ["active", "href", "label", "onClick"];
15
-
16
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17
-
18
- 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); }
19
-
20
- 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; }
21
-
22
- 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; }
23
-
11
+ /**
12
+ * SPDX-FileCopyrightText: © 2019 Liferay, Inc. <https://liferay.com>
13
+ * SPDX-License-Identifier: BSD-3-Clause
14
+ */
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ 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); }
17
+ 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; }
18
+ 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; }
24
19
  var Item = function Item(_ref) {
25
20
  var active = _ref.active,
26
- href = _ref.href,
27
- label = _ref.label,
28
- _onClick = _ref.onClick,
29
- otherProps = _objectWithoutProperties(_ref, _excluded);
30
-
21
+ href = _ref.href,
22
+ label = _ref.label,
23
+ _onClick = _ref.onClick,
24
+ otherProps = _objectWithoutProperties(_ref, _excluded);
31
25
  return /*#__PURE__*/_react.default.createElement("li", _extends({
32
26
  className: (0, _classnames.default)('breadcrumb-item', {
33
27
  active: active
@@ -39,12 +33,9 @@ var Item = function Item(_ref) {
39
33
  onClick: function onClick(event) {
40
34
  if (_onClick) {
41
35
  event.preventDefault();
42
-
43
36
  _onClick(event);
44
37
  }
45
38
  }
46
39
  }, label));
47
40
  };
48
-
49
- var _default = Item;
50
- exports.default = _default;
41
+ var _default = exports.default = Item;
package/lib/index.d.ts CHANGED
@@ -4,8 +4,6 @@
4
4
  */
5
5
  import React from 'react';
6
6
  import Item from './Item';
7
- declare type TItem = React.ComponentProps<typeof Item>;
8
- declare type TItems = Array<TItem>;
9
7
  interface IProps extends React.HTMLAttributes<HTMLOListElement> {
10
8
  /**
11
9
  * Defines the aria label of component elements.
@@ -29,11 +27,11 @@ interface IProps extends React.HTMLAttributes<HTMLOListElement> {
29
27
  /**
30
28
  * Property to define Breadcrumb's items.
31
29
  */
32
- items: TItems;
30
+ items: Array<React.ComponentProps<typeof Item>>;
33
31
  /**
34
32
  * Path to the location of the spritemap resource.
35
33
  */
36
34
  spritemap?: string;
37
35
  }
38
- declare const ClayBreadcrumb: ({ ariaLabels, ellipsisBuffer, ellipsisProps, className, items, spritemap, ...otherProps }: IProps) => JSX.Element;
39
- export default ClayBreadcrumb;
36
+ declare const Breadcrumb: ({ ariaLabels, ellipsisBuffer, ellipsisProps, className, items, spritemap, ...otherProps }: IProps) => JSX.Element;
37
+ export default Breadcrumb;
package/lib/index.js CHANGED
@@ -1,77 +1,57 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
-
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); }
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
8
7
  exports.default = void 0;
9
-
10
8
  var _button = require("@clayui/button");
11
-
12
9
  var _classnames = _interopRequireDefault(require("classnames"));
13
-
14
10
  var _react = _interopRequireWildcard(require("react"));
15
-
16
11
  var _warning = _interopRequireDefault(require("warning"));
17
-
18
12
  var _Item = _interopRequireDefault(require("./Item"));
19
-
20
13
  var _excluded = ["ariaLabels", "ellipsisBuffer", "ellipsisProps", "className", "items", "spritemap"];
21
-
22
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
23
-
24
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
25
-
26
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
27
-
28
- 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); }
29
-
30
- function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
31
-
14
+ /**
15
+ * SPDX-FileCopyrightText: © 2019 Liferay, Inc. <https://liferay.com>
16
+ * SPDX-License-Identifier: BSD-3-Clause
17
+ */
18
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
19
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) { if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } } return n.default = e, t && t.set(e, n), n; }
20
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
21
+ 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); }
22
+ function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
32
23
  function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
33
-
34
- function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
35
-
36
- function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
37
-
38
- function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
39
-
40
- function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
41
-
42
- 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; }
43
-
44
- 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; }
45
-
24
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
25
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) { n[e] = r[e]; } return n; }
26
+ function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0) { ; } } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
27
+ function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
28
+ 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; }
29
+ 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; }
46
30
  var findActiveItems = function findActiveItems(items) {
47
31
  return items.filter(function (item) {
48
32
  return item.active;
49
33
  });
50
34
  };
51
-
52
- var ClayBreadcrumb = function ClayBreadcrumb(_ref) {
35
+ var Breadcrumb = function Breadcrumb(_ref) {
53
36
  var _ref$ariaLabels = _ref.ariaLabels,
54
- ariaLabels = _ref$ariaLabels === void 0 ? {
55
- breadcrumb: 'Breadcrumb',
56
- close: 'Partially nest breadcrumbs',
57
- open: 'See full nested'
58
- } : _ref$ariaLabels,
59
- _ref$ellipsisBuffer = _ref.ellipsisBuffer,
60
- ellipsisBuffer = _ref$ellipsisBuffer === void 0 ? 1 : _ref$ellipsisBuffer,
61
- _ref$ellipsisProps = _ref.ellipsisProps,
62
- ellipsisProps = _ref$ellipsisProps === void 0 ? {} : _ref$ellipsisProps,
63
- className = _ref.className,
64
- items = _ref.items,
65
- spritemap = _ref.spritemap,
66
- otherProps = _objectWithoutProperties(_ref, _excluded);
67
-
37
+ ariaLabels = _ref$ariaLabels === void 0 ? {
38
+ breadcrumb: 'Breadcrumb',
39
+ close: 'Partially nest breadcrumbs',
40
+ open: 'See full nested'
41
+ } : _ref$ariaLabels,
42
+ _ref$ellipsisBuffer = _ref.ellipsisBuffer,
43
+ ellipsisBuffer = _ref$ellipsisBuffer === void 0 ? 1 : _ref$ellipsisBuffer,
44
+ _ref$ellipsisProps = _ref.ellipsisProps,
45
+ ellipsisProps = _ref$ellipsisProps === void 0 ? {} : _ref$ellipsisProps,
46
+ className = _ref.className,
47
+ items = _ref.items,
48
+ spritemap = _ref.spritemap,
49
+ otherProps = _objectWithoutProperties(_ref, _excluded);
68
50
  "production" !== "production" ? (0, _warning.default)(findActiveItems(items).length === 1, 'ClayBreadcrumb expects at least one `active` item on `items`.') : void 0;
69
-
70
51
  var _useState = (0, _react.useState)(false),
71
- _useState2 = _slicedToArray(_useState, 2),
72
- collapsed = _useState2[0],
73
- setCollapsed = _useState2[1];
74
-
52
+ _useState2 = _slicedToArray(_useState, 2),
53
+ collapsed = _useState2[0],
54
+ setCollapsed = _useState2[1];
75
55
  return /*#__PURE__*/_react.default.createElement("nav", {
76
56
  "aria-label": ariaLabels.breadcrumb,
77
57
  className: "align-items-center d-flex"
@@ -95,13 +75,12 @@ var ClayBreadcrumb = function ClayBreadcrumb(_ref) {
95
75
  items: items
96
76
  })));
97
77
  };
98
-
99
78
  function Items(_ref2) {
100
79
  var items = _ref2.items;
101
80
  return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, items.map(function (item, i) {
102
- return /*#__PURE__*/_react.default.isValidElement(item) ? /*#__PURE__*/_react.default.cloneElement(item, {
81
+ return /*#__PURE__*/_react.default.isValidElement(item) ? (/*#__PURE__*/_react.default.cloneElement(item, {
103
82
  key: "ellipsis".concat(i)
104
- }) : /*#__PURE__*/_react.default.createElement(_Item.default, {
83
+ })) : /*#__PURE__*/_react.default.createElement(_Item.default, {
105
84
  active: item.active,
106
85
  href: item.href,
107
86
  key: "breadcrumbItem".concat(i),
@@ -110,6 +89,4 @@ function Items(_ref2) {
110
89
  });
111
90
  }));
112
91
  }
113
-
114
- var _default = ClayBreadcrumb;
115
- exports.default = _default;
92
+ var _default = exports.default = Breadcrumb;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clayui/breadcrumb",
3
- "version": "3.116.0",
3
+ "version": "3.128.0",
4
4
  "description": "ClayBreadcrumb component",
5
5
  "license": "BSD-3-Clause",
6
6
  "repository": "https://github.com/liferay/clay",
@@ -24,9 +24,9 @@
24
24
  "react"
25
25
  ],
26
26
  "dependencies": {
27
- "@clayui/button": "^3.116.0",
28
- "@clayui/icon": "^3.111.0",
29
- "@clayui/link": "^3.111.0",
27
+ "@clayui/button": "^3.128.0",
28
+ "@clayui/icon": "^3.128.0",
29
+ "@clayui/link": "^3.128.0",
30
30
  "classnames": "^2.2.6",
31
31
  "warning": "^4.0.3"
32
32
  },
@@ -38,5 +38,5 @@
38
38
  "browserslist": [
39
39
  "extends browserslist-config-clay"
40
40
  ],
41
- "gitHead": "235780a282ba87864ce556f8004571af102ff165"
41
+ "gitHead": "98d935035547358645741cbc137cae53a596f568"
42
42
  }
package/CHANGELOG.md DELETED
@@ -1,457 +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.116.0](https://github.com/liferay/clay/compare/v3.115.2...v3.116.0) (2024-06-10)
7
-
8
- **Note:** Version bump only for package @clayui/breadcrumb
9
-
10
- # [3.115.0](https://github.com/liferay/clay/compare/v3.114.0...v3.115.0) (2024-05-16)
11
-
12
- **Note:** Version bump only for package @clayui/breadcrumb
13
-
14
- # [3.113.0](https://github.com/liferay/clay/compare/v3.112.0...v3.113.0) (2024-03-28)
15
-
16
- **Note:** Version bump only for package @clayui/breadcrumb
17
-
18
- # [3.111.0](https://github.com/liferay/clay/compare/v3.110.0...v3.111.0) (2024-02-15)
19
-
20
- **Note:** Version bump only for package @clayui/breadcrumb
21
-
22
- # [3.107.0](https://github.com/liferay/clay/compare/v3.106.1...v3.107.0) (2023-11-27)
23
-
24
- **Note:** Version bump only for package @clayui/breadcrumb
25
-
26
- ## [3.106.1](https://github.com/liferay/clay/compare/v3.106.0...v3.106.1) (2023-10-26)
27
-
28
- **Note:** Version bump only for package @clayui/breadcrumb
29
-
30
- # [3.106.0](https://github.com/liferay/clay/compare/v3.105.0...v3.106.0) (2023-10-25)
31
-
32
- ### Bug Fixes
33
-
34
- - remove 'src' dir from being packaged with npm ([9383e8d](https://github.com/liferay/clay/commit/9383e8d8abb25ca3396e7c6e4dfa53bbc72691c5))
35
- - use package's directory for baseDir when generating type ([0a5c710](https://github.com/liferay/clay/commit/0a5c710092f36243bc8d5487f70e831295715072))
36
-
37
- # [3.104.0](https://github.com/liferay/clay/compare/v3.103.1...v3.104.0) (2023-08-25)
38
-
39
- ### Bug Fixes
40
-
41
- - **@clayui/breadcrumb:** the active item must not have the href ([4482a15](https://github.com/liferay/clay/commit/4482a15494fa4aef807bb4b023f18281e8cf54ed))
42
- - **@clayui/breadcrumb:** updates colors to active state with link and expand button ([0313029](https://github.com/liferay/clay/commit/0313029dfe39c7689315919d9c3f36fdea8b97f9))
43
- - **@clayui/breadcrumb:** use `breadcrumb-toggle` instead of `breadcrumb-item-expand` ([a94ba61](https://github.com/liferay/clay/commit/a94ba614e9742ea83767d93573fc75608871c95f))
44
-
45
- # [3.101.0](https://github.com/liferay/clay/compare/v3.100.0...v3.101.0) (2023-07-28)
46
-
47
- ### Bug Fixes
48
-
49
- - **@clayui/breadcrumb:** fix focus visible in breadcrumb ([62b1a24](https://github.com/liferay/clay/commit/62b1a241b390f0e4bcea9aa97322f14dacb539db))
50
-
51
- # [3.100.0](https://github.com/liferay/clay/compare/v3.99.4...v3.100.0) (2023-07-13)
52
-
53
- **Note:** Version bump only for package @clayui/breadcrumb
54
-
55
- # [3.92.0](https://github.com/liferay/clay/compare/v3.91.0...v3.92.0) (2023-04-06)
56
-
57
- ### Features
58
-
59
- - **@clayui/breadcrumb:** changes the ellipse implementation to collapse ([5bbc5fc](https://github.com/liferay/clay/commit/5bbc5fc20572dce091e5dfb64836b83041014ab4))
60
- - **@clayui/breadcrumb:** improve breadcrumb accessibility ([f3c6131](https://github.com/liferay/clay/commit/f3c61311dd55c68e3aeb772d8dff0c77a1287362))
61
-
62
- # [3.91.0](https://github.com/liferay/clay/compare/v3.90.0...v3.91.0) (2023-03-24)
63
-
64
- **Note:** Version bump only for package @clayui/breadcrumb
65
-
66
- # [3.90.0](https://github.com/liferay/clay/compare/v3.89.0...v3.90.0) (2023-03-15)
67
-
68
- **Note:** Version bump only for package @clayui/breadcrumb
69
-
70
- # [3.89.0](https://github.com/liferay/clay/compare/v3.88.0...v3.89.0) (2023-03-01)
71
-
72
- **Note:** Version bump only for package @clayui/breadcrumb
73
-
74
- # [3.88.0](https://github.com/liferay/clay/compare/v3.87.2...v3.88.0) (2023-02-14)
75
-
76
- **Note:** Version bump only for package @clayui/breadcrumb
77
-
78
- # [3.87.0](https://github.com/liferay/clay/compare/v3.86.1...v3.87.0) (2023-02-08)
79
-
80
- **Note:** Version bump only for package @clayui/breadcrumb
81
-
82
- ## [3.86.1](https://github.com/liferay/clay/compare/v3.86.0...v3.86.1) (2023-02-02)
83
-
84
- **Note:** Version bump only for package @clayui/breadcrumb
85
-
86
- # [3.86.0](https://github.com/liferay/clay/compare/v3.85.0...v3.86.0) (2023-01-31)
87
-
88
- **Note:** Version bump only for package @clayui/breadcrumb
89
-
90
- # [3.85.0](https://github.com/liferay/clay/compare/v3.84.0...v3.85.0) (2023-01-23)
91
-
92
- **Note:** Version bump only for package @clayui/breadcrumb
93
-
94
- # [3.84.0](https://github.com/liferay/clay/compare/v3.83.1...v3.84.0) (2022-12-23)
95
-
96
- **Note:** Version bump only for package @clayui/breadcrumb
97
-
98
- ## [3.83.1](https://github.com/liferay/clay/compare/v3.83.0...v3.83.1) (2022-12-20)
99
-
100
- **Note:** Version bump only for package @clayui/breadcrumb
101
-
102
- # [3.83.0](https://github.com/liferay/clay/compare/v3.82.0...v3.83.0) (2022-12-20)
103
-
104
- **Note:** Version bump only for package @clayui/breadcrumb
105
-
106
- # [3.82.0](https://github.com/liferay/clay/compare/v3.81.0...v3.82.0) (2022-12-07)
107
-
108
- ### Bug Fixes
109
-
110
- - **@clayui/breadcrumb:** add `aria-label` and `title` to ellipsis ([7905087](https://github.com/liferay/clay/commit/7905087c927396c74f5a9230d9d5b29a6aeebb30))
111
-
112
- # [3.81.0](https://github.com/liferay/clay/compare/v3.80.1...v3.81.0) (2022-11-30)
113
-
114
- **Note:** Version bump only for package @clayui/breadcrumb
115
-
116
- ## [3.80.1](https://github.com/liferay/clay/compare/v3.80.0...v3.80.1) (2022-11-22)
117
-
118
- **Note:** Version bump only for package @clayui/breadcrumb
119
-
120
- # [3.80.0](https://github.com/liferay/clay/compare/v3.79.0...v3.80.0) (2022-11-21)
121
-
122
- **Note:** Version bump only for package @clayui/breadcrumb
123
-
124
- # [3.79.0](https://github.com/liferay/clay/compare/v3.78.2...v3.79.0) (2022-11-08)
125
-
126
- **Note:** Version bump only for package @clayui/breadcrumb
127
-
128
- ## [3.78.2](https://github.com/liferay/clay/compare/v3.78.1...v3.78.2) (2022-10-25)
129
-
130
- **Note:** Version bump only for package @clayui/breadcrumb
131
-
132
- ## [3.78.1](https://github.com/liferay/clay/compare/v3.78.0...v3.78.1) (2022-10-25)
133
-
134
- **Note:** Version bump only for package @clayui/breadcrumb
135
-
136
- # [3.78.0](https://github.com/liferay/clay/compare/v3.77.0...v3.78.0) (2022-10-25)
137
-
138
- **Note:** Version bump only for package @clayui/breadcrumb
139
-
140
- # [3.77.0](https://github.com/liferay/clay/compare/v3.76.0...v3.77.0) (2022-10-17)
141
-
142
- **Note:** Version bump only for package @clayui/breadcrumb
143
-
144
- ## [3.75.2](https://github.com/liferay/clay/compare/v3.75.1...v3.75.2) (2022-09-29)
145
-
146
- **Note:** Version bump only for package @clayui/breadcrumb
147
-
148
- # [3.75.0](https://github.com/liferay/clay/compare/v3.74.0...v3.75.0) (2022-09-28)
149
-
150
- **Note:** Version bump only for package @clayui/breadcrumb
151
-
152
- # [3.74.0](https://github.com/liferay/clay/compare/v3.73.0...v3.74.0) (2022-09-19)
153
-
154
- **Note:** Version bump only for package @clayui/breadcrumb
155
-
156
- # [3.73.0](https://github.com/liferay/clay/compare/v3.72.0...v3.73.0) (2022-09-13)
157
-
158
- **Note:** Version bump only for package @clayui/breadcrumb
159
-
160
- # [3.72.0](https://github.com/liferay/clay/compare/v3.71.0...v3.72.0) (2022-09-05)
161
-
162
- **Note:** Version bump only for package @clayui/breadcrumb
163
-
164
- # [3.71.0](https://github.com/liferay/clay/compare/v3.70.3...v3.71.0) (2022-08-30)
165
-
166
- **Note:** Version bump only for package @clayui/breadcrumb
167
-
168
- ## [3.70.3](https://github.com/liferay/clay/compare/v3.70.2...v3.70.3) (2022-08-30)
169
-
170
- **Note:** Version bump only for package @clayui/breadcrumb
171
-
172
- ## [3.70.2](https://github.com/liferay/clay/compare/v3.70.1...v3.70.2) (2022-08-30)
173
-
174
- **Note:** Version bump only for package @clayui/breadcrumb
175
-
176
- # [3.70.0](https://github.com/liferay/clay/compare/v3.69.0...v3.70.0) (2022-08-23)
177
-
178
- **Note:** Version bump only for package @clayui/breadcrumb
179
-
180
- # [3.69.0](https://github.com/liferay/clay/compare/v3.68.0...v3.69.0) (2022-08-16)
181
-
182
- **Note:** Version bump only for package @clayui/breadcrumb
183
-
184
- # [3.68.0](https://github.com/liferay/clay/compare/v3.67.0...v3.68.0) (2022-08-01)
185
-
186
- **Note:** Version bump only for package @clayui/breadcrumb
187
-
188
- # [3.67.0](https://github.com/liferay/clay/compare/v3.66.0...v3.67.0) (2022-07-25)
189
-
190
- **Note:** Version bump only for package @clayui/breadcrumb
191
-
192
- # [3.66.0](https://github.com/liferay/clay/compare/v3.65.2...v3.66.0) (2022-07-20)
193
-
194
- **Note:** Version bump only for package @clayui/breadcrumb
195
-
196
- ## [3.65.2](https://github.com/liferay/clay/compare/v3.65.1...v3.65.2) (2022-07-19)
197
-
198
- **Note:** Version bump only for package @clayui/breadcrumb
199
-
200
- ## [3.65.1](https://github.com/liferay/clay/compare/v3.65.0...v3.65.1) (2022-07-11)
201
-
202
- **Note:** Version bump only for package @clayui/breadcrumb
203
-
204
- # [3.65.0](https://github.com/liferay/clay/compare/v3.64.0...v3.65.0) (2022-07-11)
205
-
206
- **Note:** Version bump only for package @clayui/breadcrumb
207
-
208
- # [3.64.0](https://github.com/liferay/clay/compare/v3.63.0...v3.64.0) (2022-07-04)
209
-
210
- **Note:** Version bump only for package @clayui/breadcrumb
211
-
212
- # [3.62.0](https://github.com/liferay/clay/compare/v3.61.0...v3.62.0) (2022-06-20)
213
-
214
- **Note:** Version bump only for package @clayui/breadcrumb
215
-
216
- # [3.58.0](https://github.com/liferay/clay/compare/v3.57.0...v3.58.0) (2022-05-23)
217
-
218
- **Note:** Version bump only for package @clayui/breadcrumb
219
-
220
- # [3.56.0](https://github.com/liferay/clay/compare/v3.55.0...v3.56.0) (2022-05-09)
221
-
222
- **Note:** Version bump only for package @clayui/breadcrumb
223
-
224
- # [3.55.0](https://github.com/liferay/clay/compare/v3.54.0...v3.55.0) (2022-05-02)
225
-
226
- **Note:** Version bump only for package @clayui/breadcrumb
227
-
228
- # [3.52.0](https://github.com/liferay/clay/compare/v3.51.0...v3.52.0) (2022-04-04)
229
-
230
- **Note:** Version bump only for package @clayui/breadcrumb
231
-
232
- # [3.49.0](https://github.com/liferay/clay/compare/v3.48.0...v3.49.0) (2022-03-15)
233
-
234
- ### Features
235
-
236
- - **@clayui/drop-down:** make it possible to render the menu lazily ([1e4e565](https://github.com/liferay/clay/commit/1e4e5655503645358245a200e72c8ca711f72956))
237
-
238
- # [3.48.0](https://github.com/liferay/clay/compare/v3.47.0...v3.48.0) (2022-03-07)
239
-
240
- ### Features
241
-
242
- - **@clayui/drop-down:** Update tests ([ab564dd](https://github.com/liferay/clay/commit/ab564ddb95de1e01cb690cd458e5ac3aad634946))
243
-
244
- # [3.47.0](https://github.com/liferay/clay/compare/v3.46.0...v3.47.0) (2022-02-23)
245
-
246
- **Note:** Version bump only for package @clayui/breadcrumb
247
-
248
- # [3.45.0](https://github.com/liferay/clay/compare/v3.44.2...v3.45.0) (2022-02-01)
249
-
250
- **Note:** Version bump only for package @clayui/breadcrumb
251
-
252
- # [3.43.0](https://github.com/liferay/clay/compare/v3.42.0...v3.43.0) (2021-12-29)
253
-
254
- **Note:** Version bump only for package @clayui/breadcrumb
255
-
256
- # [3.42.0](https://github.com/liferay/clay/compare/v3.41.0...v3.42.0) (2021-12-15)
257
-
258
- **Note:** Version bump only for package @clayui/breadcrumb
259
-
260
- # [3.41.0](https://github.com/liferay/clay/compare/v3.40.1...v3.41.0) (2021-12-02)
261
-
262
- **Note:** Version bump only for package @clayui/breadcrumb
263
-
264
- # [3.40.0](https://github.com/liferay/clay/compare/v3.39.0...v3.40.0) (2021-11-17)
265
-
266
- **Note:** Version bump only for package @clayui/breadcrumb
267
-
268
- # [3.39.0](https://github.com/liferay/clay/compare/v3.38.0...v3.39.0) (2021-10-29)
269
-
270
- **Note:** Version bump only for package @clayui/breadcrumb
271
-
272
- # [3.38.0](https://github.com/liferay/clay/compare/v3.37.0...v3.38.0) (2021-10-22)
273
-
274
- **Note:** Version bump only for package @clayui/breadcrumb
275
-
276
- # [3.37.0](https://github.com/liferay/clay/compare/v3.36.0...v3.37.0) (2021-10-06)
277
-
278
- **Note:** Version bump only for package @clayui/breadcrumb
279
-
280
- # [3.36.0](https://github.com/liferay/clay/compare/v3.35.3...v3.36.0) (2021-09-23)
281
-
282
- **Note:** Version bump only for package @clayui/breadcrumb
283
-
284
- ## [3.35.3](https://github.com/liferay/clay/compare/v3.35.2...v3.35.3) (2021-09-09)
285
-
286
- **Note:** Version bump only for package @clayui/breadcrumb
287
-
288
- ## [3.35.2](https://github.com/liferay/clay/compare/v3.35.1...v3.35.2) (2021-08-30)
289
-
290
- **Note:** Version bump only for package @clayui/breadcrumb
291
-
292
- ## [3.35.1](https://github.com/liferay/clay/compare/v3.35.0...v3.35.1) (2021-08-30)
293
-
294
- **Note:** Version bump only for package @clayui/breadcrumb
295
-
296
- # [3.35.0](https://github.com/liferay/clay/compare/v3.34.0...v3.35.0) (2021-08-30)
297
-
298
- **Note:** Version bump only for package @clayui/breadcrumb
299
-
300
- # [3.32.0](https://github.com/liferay/clay/compare/v3.31.0...v3.32.0) (2021-07-28)
301
-
302
- **Note:** Version bump only for package @clayui/breadcrumb
303
-
304
- # [3.30.0](https://github.com/liferay/clay/compare/v3.29.0...v3.30.0) (2021-06-16)
305
-
306
- **Note:** Version bump only for package @clayui/breadcrumb
307
-
308
- # [3.29.0](https://github.com/liferay/clay/compare/v3.28.0...v3.29.0) (2021-05-28)
309
-
310
- **Note:** Version bump only for package @clayui/breadcrumb
311
-
312
- # [3.28.0](https://github.com/liferay/clay/compare/v3.27.0...v3.28.0) (2021-05-19)
313
-
314
- **Note:** Version bump only for package @clayui/breadcrumb
315
-
316
- # [3.27.0](https://github.com/liferay/clay/compare/v3.26.0...v3.27.0) (2021-05-05)
317
-
318
- **Note:** Version bump only for package @clayui/breadcrumb
319
-
320
- ## [3.25.1](https://github.com/liferay/clay/compare/v3.25.0...v3.25.1) (2021-03-05)
321
-
322
- **Note:** Version bump only for package @clayui/breadcrumb
323
-
324
- # [3.25.0](https://github.com/liferay/clay/compare/v3.24.1...v3.25.0) (2021-02-23)
325
-
326
- **Note:** Version bump only for package @clayui/breadcrumb
327
-
328
- ## [3.3.6](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.3.5...@clayui/breadcrumb@3.3.6) (2021-02-11)
329
-
330
- **Note:** Version bump only for package @clayui/breadcrumb
331
-
332
- ## [3.3.5](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.3.4...@clayui/breadcrumb@3.3.5) (2021-01-27)
333
-
334
- **Note:** Version bump only for package @clayui/breadcrumb
335
-
336
- ## [3.3.4](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.3.3...@clayui/breadcrumb@3.3.4) (2021-01-13)
337
-
338
- **Note:** Version bump only for package @clayui/breadcrumb
339
-
340
- ## [3.3.3](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.3.2...@clayui/breadcrumb@3.3.3) (2020-12-29)
341
-
342
- **Note:** Version bump only for package @clayui/breadcrumb
343
-
344
- ## [3.3.2](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.3.0...@clayui/breadcrumb@3.3.2) (2020-12-16)
345
-
346
- **Note:** Version bump only for package @clayui/breadcrumb
347
-
348
- ## [3.3.1](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.3.0...@clayui/breadcrumb@3.3.1) (2020-12-02)
349
-
350
- **Note:** Version bump only for package @clayui/breadcrumb
351
-
352
- # [3.3.0](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.2.8...@clayui/breadcrumb@3.3.0) (2020-10-01)
353
-
354
- ### Features
355
-
356
- - **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))
357
-
358
- ## [3.2.8](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.2.7...@clayui/breadcrumb@3.2.8) (2020-08-28)
359
-
360
- **Note:** Version bump only for package @clayui/breadcrumb
361
-
362
- ## [3.2.7](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.2.6...@clayui/breadcrumb@3.2.7) (2020-08-26)
363
-
364
- **Note:** Version bump only for package @clayui/breadcrumb
365
-
366
- ## [3.2.6](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.2.5...@clayui/breadcrumb@3.2.6) (2020-08-21)
367
-
368
- **Note:** Version bump only for package @clayui/breadcrumb
369
-
370
- ## [3.2.5](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.2.4...@clayui/breadcrumb@3.2.5) (2020-08-11)
371
-
372
- **Note:** Version bump only for package @clayui/breadcrumb
373
-
374
- ## [3.2.4](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.2.3...@clayui/breadcrumb@3.2.4) (2020-07-28)
375
-
376
- ### Bug Fixes
377
-
378
- - update packages to appropriate dependencies ([0026168](https://github.com/liferay/clay/commit/0026168))
379
-
380
- ## [3.2.3](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.2.2...@clayui/breadcrumb@3.2.3) (2020-07-14)
381
-
382
- **Note:** Version bump only for package @clayui/breadcrumb
383
-
384
- ## [3.2.2](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.2.1...@clayui/breadcrumb@3.2.2) (2020-07-07)
385
-
386
- **Note:** Version bump only for package @clayui/breadcrumb
387
-
388
- ## [3.2.1](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.2.0...@clayui/breadcrumb@3.2.1) (2020-06-18)
389
-
390
- **Note:** Version bump only for package @clayui/breadcrumb
391
-
392
- # [3.2.0](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.1.3...@clayui/breadcrumb@3.2.0) (2020-05-21)
393
-
394
- ### Features
395
-
396
- - **clayui.com:** Improve component docs by updating content - Badge, Breadcrumb, Dual List Box, Loading Indicator, Localized Input & Multi Step Nav ([c4ad126](https://github.com/liferay/clay/commit/c4ad126))
397
-
398
- ## [3.1.3](https://github.com/liferay/clay/compare/@clayui/breadcrumb@3.1.2...@clayui/breadcrumb@3.1.3) (2020-04-24)
399
-
400
- **Note:** Version bump only for package @clayui/breadcrumb
401
-
402
- ## [3.1.2](https://github.com/liferay/clay/tree/master/packages/clay-breadcrumb/compare/@clayui/breadcrumb@3.1.1...@clayui/breadcrumb@3.1.2) (2020-03-26)
403
-
404
- **Note:** Version bump only for package @clayui/breadcrumb
405
-
406
- ## [3.1.1](https://github.com/liferay/clay/tree/master/packages/clay-breadcrumb/compare/@clayui/breadcrumb@3.1.0...@clayui/breadcrumb@3.1.1) (2020-03-12)
407
-
408
- ### Bug Fixes
409
-
410
- - **@clayui/breadcrumb:** use ClayLink over anchor tag ([047c3be](https://github.com/liferay/clay/commit/047c3be))
411
-
412
- # 3.1.0 (2020-02-28)
413
-
414
- ### Bug Fixes
415
-
416
- - **drop-down:** use dom-align instead of metal-position ([335ff38](https://github.com/liferay/clay/commit/335ff38))
417
- - add missing dependency declarations ([c591e2f](https://github.com/liferay/clay/commit/c591e2f))
418
-
419
- ### Features
420
-
421
- - **breadcrumb:** move breadcrumb to its own package ([0994158](https://github.com/liferay/clay/commit/0994158))
422
-
423
- ## [3.0.7](https://github.com/liferay/clay/tree/master/packages/clay-breadcrumb/compare/@clayui/breadcrumb@3.0.6...@clayui/breadcrumb@3.0.7) (2020-02-13)
424
-
425
- **Note:** Version bump only for package @clayui/breadcrumb
426
-
427
- ## [3.0.6](https://github.com/liferay/clay/tree/master/packages/clay-breadcrumb/compare/@clayui/breadcrumb@3.0.3...@clayui/breadcrumb@3.0.6) (2020-01-31)
428
-
429
- ### Bug Fixes
430
-
431
- - **drop-down:** use dom-align instead of metal-position ([335ff38](https://github.com/liferay/clay/commit/335ff38))
432
- - add missing dependency declarations ([c591e2f](https://github.com/liferay/clay/commit/c591e2f))
433
-
434
- ## [3.0.5](https://github.com/liferay/clay/tree/master/packages/clay-breadcrumb/compare/@clayui/breadcrumb@3.0.3...@clayui/breadcrumb@3.0.5) (2020-01-20)
435
-
436
- ### Bug Fixes
437
-
438
- - add missing dependency declarations ([c591e2f](https://github.com/liferay/clay/commit/c591e2f))
439
- - **drop-down:** use dom-align instead of metal-position ([335ff38](https://github.com/liferay/clay/commit/335ff38))
440
-
441
- ## [3.0.4](https://github.com/liferay/clay/tree/master/packages/clay-breadcrumb/compare/@clayui/breadcrumb@3.0.3...@clayui/breadcrumb@3.0.4) (2019-12-05)
442
-
443
- ### Bug Fixes
444
-
445
- - **drop-down:** use dom-align instead of metal-position ([335ff38](https://github.com/liferay/clay/commit/335ff38))
446
-
447
- ## [3.0.3](https://github.com/liferay/clay/tree/master/packages/clay-breadcrumb/compare/@clayui/breadcrumb@3.0.2...@clayui/breadcrumb@3.0.3) (2019-11-07)
448
-
449
- **Note:** Version bump only for package @clayui/breadcrumb
450
-
451
- ## [3.0.2](https://github.com/liferay/clay/tree/master/packages/clay-breadcrumb/compare/@clayui/breadcrumb@3.0.1...@clayui/breadcrumb@3.0.2) (2019-11-01)
452
-
453
- **Note:** Version bump only for package @clayui/breadcrumb
454
-
455
- ## [3.0.1](https://github.com/liferay/clay/tree/master/packages/clay-breadcrumb/compare/@clayui/breadcrumb@3.0.0...@clayui/breadcrumb@3.0.1) (2019-10-28)
456
-
457
- **Note:** Version bump only for package @clayui/breadcrumb