@useblu/ocean-react 1.125.0 → 1.125.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/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.125.1](https://github.com/ocean-ds/ocean-web/compare/v1.125.0...v1.125.1) (2026-01-13)
7
+
8
+ ### Bug Fixes
9
+
10
+ - adjust styles of card list item disabled ([#1219](https://github.com/ocean-ds/ocean-web/issues/1219)) ([0507e8e](https://github.com/ocean-ds/ocean-web/commit/0507e8ee03060df31843d14e6e2598d2490d98de))
11
+
6
12
  # [1.125.0](https://github.com/ocean-ds/ocean-web/compare/v1.124.0...v1.125.0) (2026-01-13)
7
13
 
8
14
  ### Features
@@ -1 +1 @@
1
- {"version":3,"file":"CardListItem.d.ts","sourceRoot":"","sources":["../../src/CardListItem/CardListItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+C,MAAM,OAAO,CAAC;AAGpE,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAiDtC,QAAA,MAAM,YAAY;WA3CT,MAAM;kBAIC,MAAM;cAIV,MAAM;iBAIH,KAAK,CAAC,SAAS;kBAId,KAAK,CAAC,SAAS;WAItB,OAAO,GAAG,QAAQ;eAId,OAAO;gBAIN,OAAO;UAIb,MAAM,GAAG,QAAQ;cAIb,MAAM,IAAI;cAIV,OAAO;kLAiGlB,CAAC;AAIF,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"CardListItem.d.ts","sourceRoot":"","sources":["../../src/CardListItem/CardListItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+C,MAAM,OAAO,CAAC;AAGpE,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAiDtC,QAAA,MAAM,YAAY;WA3CT,MAAM;kBAIC,MAAM;cAIV,MAAM;iBAIH,KAAK,CAAC,SAAS;kBAId,KAAK,CAAC,SAAS;WAItB,OAAO,GAAG,QAAQ;eAId,OAAO;gBAIN,OAAO;UAIb,MAAM,GAAG,QAAQ;cAIb,MAAM,IAAI;cAIV,OAAO;kLAqGlB,CAAC;AAIF,eAAe,YAAY,CAAC"}
package/index.es.js CHANGED
@@ -47039,7 +47039,9 @@ var Shortcut = function (_a) {
47039
47039
 
47040
47040
  var CardListItem = forwardRef(function (_a, ref) {
47041
47041
  var title = _a.title, description = _a.description, caption = _a.caption, leadingIcon = _a.leadingIcon, actionIcon = _a.actionIcon, _b = _a.size, size = _b === void 0 ? 'medium' : _b, _c = _a.disabled, disabled = _c === void 0 ? false : _c, _d = _a.fullWidth, fullWidth = _d === void 0 ? false : _d, onClick = _a.onClick, loading = _a.loading, tag = _a.tag, rest = __rest$1(_a, ["title", "description", "caption", "leadingIcon", "actionIcon", "size", "disabled", "fullWidth", "onClick", "loading", "tag"]);
47042
- var tagElement = typeof tag === 'string' ? (e.createElement(Tag, { variant: "highlight", type: "important" }, tag)) : (e.createElement(Tag, __assign$1({}, tag)));
47042
+ var tagElement = typeof tag === 'string' ? (e.createElement(Tag, __assign$1({}, (disabled
47043
+ ? { variant: 'default', type: 'neutral' }
47044
+ : { variant: 'highlight', type: 'important' })), tag)) : (e.createElement(Tag, __assign$1({}, tag)));
47043
47045
  if (loading) {
47044
47046
  return (e.createElement("div", __assign$1({ ref: ref }, rest, { "data-testid": "card-list-item", className: classNames('ods-card-list-item', "ods-card-list-item--size-".concat(size), { 'ods-card-list-item--full-width': fullWidth }, {
47045
47047
  'ods-card-list-item--loading': loading,