@useblu/ocean-core 1.110.0 → 1.112.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 +12 -0
- package/ocean.css +20 -3
- package/ocean.css.map +1 -1
- package/ocean.min.css +1 -1
- package/ocean.min.css.map +1 -1
- package/package.json +1 -1
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.1](https://github.com/ocean-ds/ocean-web/compare/v1.112.0...v1.112.1) (2025-10-07)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- tag position and limit props to accept only tag or count prop ([#1191](https://github.com/ocean-ds/ocean-web/issues/1191)) ([7d0952f](https://github.com/ocean-ds/ocean-web/commit/7d0952fe23e34c5ebb36ab30303e2a0bbf39028f))
|
|
11
|
+
|
|
12
|
+
# [1.112.0](https://github.com/ocean-ds/ocean-web/compare/v1.111.0...v1.112.0) (2025-10-07)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- add tag and actionCount ([#1192](https://github.com/ocean-ds/ocean-web/issues/1192)) ([77e9f5f](https://github.com/ocean-ds/ocean-web/commit/77e9f5fb31eadb1f26820f6b105b966450af6b46))
|
|
17
|
+
|
|
6
18
|
# [1.110.0](https://github.com/ocean-ds/ocean-web/compare/v1.109.0...v1.110.0) (2025-08-25)
|
|
7
19
|
|
|
8
20
|
### Features
|
package/ocean.css
CHANGED
|
@@ -4738,7 +4738,7 @@
|
|
|
4738
4738
|
.ods-shortcut__description {
|
|
4739
4739
|
font-size: 12px;
|
|
4740
4740
|
}
|
|
4741
|
-
.ods-shortcut__badge {
|
|
4741
|
+
.ods-shortcut__badge, .ods-shortcut__tag {
|
|
4742
4742
|
position: absolute;
|
|
4743
4743
|
right: 8px;
|
|
4744
4744
|
top: 8px;
|
|
@@ -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
|
-
|
|
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
|
|
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
|
}
|