@useblu/ocean-react 1.48.1 → 1.49.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/CHANGELOG.md +6 -0
- package/index.es.js +2 -2
- package/index.es.js.map +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.49.0](https://github.com/ocean-ds/ocean-web/compare/v1.48.1...v1.49.0) (2023-09-01)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- center chevron with content ([#1081](https://github.com/ocean-ds/ocean-web/issues/1081)) ([0f1370b](https://github.com/ocean-ds/ocean-web/commit/0f1370b3de8cc6dff7b9499620428c0685771827))
|
|
11
|
+
|
|
6
12
|
## [1.48.1](https://github.com/ocean-ds/ocean-web/compare/v1.48.0...v1.48.1) (2023-08-30)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/index.es.js
CHANGED
|
@@ -46227,10 +46227,10 @@ var Breadcrumb = forwardRef(function (_a, ref) {
|
|
|
46227
46227
|
var items = _a.items, className = _a.className, rest = __rest$1(_a, ["items", "className"]);
|
|
46228
46228
|
return (e.createElement("div", __assign$1({ className: classNames('ods-breadcrumb', className), ref: ref }, rest), items === null || items === void 0 ? void 0 : items.map(function (item, index) {
|
|
46229
46229
|
var showIcon = index !== items.length - 1 && (e.createElement(ee, { size: 12 }));
|
|
46230
|
-
return typeof item === 'string' ? (e.createElement("div", { key: "string-item-".concat(item) },
|
|
46230
|
+
return typeof item === 'string' ? (e.createElement("div", { className: "ods-breadcrumb__item", key: "string-item-".concat(item) },
|
|
46231
46231
|
e.createElement("span", null, item),
|
|
46232
46232
|
" ",
|
|
46233
|
-
showIcon)) : (e.createElement("div", { key: "tag-item-".concat(index + 1) },
|
|
46233
|
+
showIcon)) : (e.createElement("div", { className: "ods-breadcrumb__item", key: "tag-item-".concat(index + 1) },
|
|
46234
46234
|
item,
|
|
46235
46235
|
" ",
|
|
46236
46236
|
showIcon));
|