@clayui/breadcrumb 3.141.1-alpha.0 → 3.141.1-alpha.1
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/esm/Item.js +0 -1
- package/lib/esm/index.js +1 -1
- package/package.json +5 -5
package/lib/esm/Item.js
CHANGED
|
@@ -22,7 +22,6 @@ const Item = _ref => {
|
|
|
22
22
|
}, otherProps), /*#__PURE__*/React.createElement(ClayLink, {
|
|
23
23
|
"aria-current": active ? 'page' : undefined,
|
|
24
24
|
className: "breadcrumb-link",
|
|
25
|
-
"data-testid": `testId${label}`,
|
|
26
25
|
href: active ? '#' : href,
|
|
27
26
|
onClick: event => {
|
|
28
27
|
if (onClick) {
|
package/lib/esm/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import { ClayButtonWithIcon } from '@clayui/button';
|
|
|
8
8
|
import classNames from 'classnames';
|
|
9
9
|
import React, { useState } from 'react';
|
|
10
10
|
import warning from 'warning';
|
|
11
|
-
import Item from
|
|
11
|
+
import Item from "./Item.js";
|
|
12
12
|
const findActiveItems = items => {
|
|
13
13
|
return items.filter(item => {
|
|
14
14
|
return item.active;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clayui/breadcrumb",
|
|
3
|
-
"version": "3.141.1-alpha.
|
|
3
|
+
"version": "3.141.1-alpha.1",
|
|
4
4
|
"description": "ClayBreadcrumb component",
|
|
5
5
|
"license": "BSD-3-Clause",
|
|
6
6
|
"repository": "https://github.com/liferay/clay",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"react"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@clayui/button": "^3.141.1-alpha.
|
|
31
|
-
"@clayui/icon": "^3.141.1-alpha.
|
|
32
|
-
"@clayui/link": "^3.141.1-alpha.
|
|
30
|
+
"@clayui/button": "^3.141.1-alpha.1",
|
|
31
|
+
"@clayui/icon": "^3.141.1-alpha.1",
|
|
32
|
+
"@clayui/link": "^3.141.1-alpha.1",
|
|
33
33
|
"classnames": "^2.2.6",
|
|
34
34
|
"warning": "^4.0.3"
|
|
35
35
|
},
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"browserslist": [
|
|
42
42
|
"extends browserslist-config-clay"
|
|
43
43
|
],
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "072149212c17bff4c6a2da1562e1b0cc2c6dff8a"
|
|
45
45
|
}
|