@useblu/ocean-core 1.108.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,18 @@
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
+
12
+ # [1.110.0](https://github.com/ocean-ds/ocean-web/compare/v1.109.0...v1.110.0) (2025-08-25)
13
+
14
+ ### Features
15
+
16
+ - ocean docs 3 ([#1188](https://github.com/ocean-ds/ocean-web/issues/1188)) ([d67aec1](https://github.com/ocean-ds/ocean-web/commit/d67aec1ee438b332dabd58c5a0be37b5e74fe3d7))
17
+
6
18
  # [1.108.0](https://github.com/ocean-ds/ocean-web/compare/v1.107.0...v1.108.0) (2025-08-20)
7
19
 
8
20
  ### Features
package/ocean.css CHANGED
@@ -5182,18 +5182,27 @@
5182
5182
  }
5183
5183
  .ods-web-notification__action-text-info {
5184
5184
  color: #b8c3ff;
5185
+ min-width: -webkit-fit-content;
5186
+ min-width: -moz-fit-content;
5187
+ min-width: fit-content;
5185
5188
  }
5186
5189
  .ods-web-notification__action-text-info:hover, .ods-web-notification__action-text-info:focus, .ods-web-notification__action-text-info:active {
5187
5190
  color: #b8c3ff;
5188
5191
  }
5189
5192
  .ods-web-notification__action-text-positive {
5190
5193
  color: #3dcc64;
5194
+ min-width: -webkit-fit-content;
5195
+ min-width: -moz-fit-content;
5196
+ min-width: fit-content;
5191
5197
  }
5192
5198
  .ods-web-notification__action-text-positive:hover, .ods-web-notification__action-text-positive:focus, .ods-web-notification__action-text-positive:active {
5193
5199
  color: #3dcc64;
5194
5200
  }
5195
5201
  .ods-web-notification__action-text-warning {
5196
5202
  color: #ffa347;
5203
+ min-width: -webkit-fit-content;
5204
+ min-width: -moz-fit-content;
5205
+ min-width: fit-content;
5197
5206
  }
5198
5207
  .ods-web-notification__action-text-warning:hover, .ods-web-notification__action-text-warning:focus, .ods-web-notification__action-text-warning:active {
5199
5208
  color: #ffa347;
@@ -5400,12 +5409,23 @@
5400
5409
  height: 100%;
5401
5410
  justify-content: space-between;
5402
5411
  padding: 16px;
5412
+ position: relative;
5403
5413
  }
5404
5414
  .ods-card-group__header--content {
5405
5415
  display: flex;
5416
+ flex: 1;
5406
5417
  flex-direction: column;
5407
5418
  gap: 4px;
5408
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
+ }
5409
5429
  .ods-card-group__action {
5410
5430
  align-items: center;
5411
5431
  background-color: white;
@@ -5416,7 +5436,8 @@
5416
5436
  display: flex;
5417
5437
  gap: 16px;
5418
5438
  justify-content: space-between;
5419
- padding: 14px 8px 14px 16px;
5439
+ max-height: 48px;
5440
+ padding: 12px 8px 12px 16px;
5420
5441
  width: 100%;
5421
5442
  }
5422
5443
  .ods-card-group__action--label {
@@ -5425,7 +5446,12 @@
5425
5446
  font-weight: 700;
5426
5447
  line-height: 15.4px;
5427
5448
  }
5428
- .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 {
5429
5455
  background-color: #f3f5fe;
5430
5456
  cursor: pointer;
5431
5457
  }