@useblu/ocean-core 1.110.0 → 1.112.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 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.112.0](https://github.com/ocean-ds/ocean-web/compare/v1.111.0...v1.112.0) (2025-10-07)
7
+
8
+ ### Features
9
+
10
+ - add tag and actionCount ([#1192](https://github.com/ocean-ds/ocean-web/issues/1192)) ([77e9f5f](https://github.com/ocean-ds/ocean-web/commit/77e9f5fb31eadb1f26820f6b105b966450af6b46))
11
+
6
12
  # [1.110.0](https://github.com/ocean-ds/ocean-web/compare/v1.109.0...v1.110.0) (2025-08-25)
7
13
 
8
14
  ### Features
package/ocean.css CHANGED
@@ -5409,12 +5409,23 @@
5409
5409
  height: 100%;
5410
5410
  justify-content: space-between;
5411
5411
  padding: 16px;
5412
+ position: relative;
5412
5413
  }
5413
5414
  .ods-card-group__header--content {
5414
5415
  display: flex;
5416
+ flex: 1;
5415
5417
  flex-direction: column;
5416
5418
  gap: 4px;
5417
5419
  }
5420
+ .ods-card-group__header .container-line {
5421
+ display: flex;
5422
+ justify-content: space-between;
5423
+ }
5424
+ .ods-card-group__header .container-line > .ods-tag {
5425
+ height: -webkit-fit-content;
5426
+ height: -moz-fit-content;
5427
+ height: fit-content;
5428
+ }
5418
5429
  .ods-card-group__action {
5419
5430
  align-items: center;
5420
5431
  background-color: white;
@@ -5425,7 +5436,8 @@
5425
5436
  display: flex;
5426
5437
  gap: 16px;
5427
5438
  justify-content: space-between;
5428
- padding: 14px 8px 14px 16px;
5439
+ max-height: 48px;
5440
+ padding: 12px 8px 12px 16px;
5429
5441
  width: 100%;
5430
5442
  }
5431
5443
  .ods-card-group__action--label {
@@ -5434,7 +5446,12 @@
5434
5446
  font-weight: 700;
5435
5447
  line-height: 15.4px;
5436
5448
  }
5437
- .ods-card-group__action:hover, .ods-card-group__action:focus {
5449
+ .ods-card-group__action--right {
5450
+ align-items: center;
5451
+ display: flex;
5452
+ gap: 4px;
5453
+ }
5454
+ .ods-card-group__action:hover {
5438
5455
  background-color: #f3f5fe;
5439
5456
  cursor: pointer;
5440
5457
  }