@useblu/ocean-core 1.76.0 → 1.78.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 +12 -0
- package/ocean.css +25 -0
- 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.78.0](https://github.com/ocean-ds/ocean-web/compare/v1.77.1...v1.78.0) (2025-03-31)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- create dot pagination ([#1132](https://github.com/ocean-ds/ocean-web/issues/1132)) ([264737b](https://github.com/ocean-ds/ocean-web/commit/264737be811319cc4bd556bbfebb3fedb162b240))
|
|
11
|
+
|
|
12
|
+
# [1.77.0](https://github.com/ocean-ds/ocean-web/compare/v1.76.0...v1.77.0) (2025-01-30)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- adjust style ([#1130](https://github.com/ocean-ds/ocean-web/issues/1130)) ([ab00ac9](https://github.com/ocean-ds/ocean-web/commit/ab00ac997868675a469b626a8f62194f0b516bc1))
|
|
17
|
+
|
|
6
18
|
# [1.76.0](https://github.com/ocean-ds/ocean-web/compare/v1.75.0...v1.76.0) (2025-01-30)
|
|
7
19
|
|
|
8
20
|
### Features
|
package/ocean.css
CHANGED
|
@@ -5371,6 +5371,10 @@
|
|
|
5371
5371
|
.ods-card-group {
|
|
5372
5372
|
border: 1px solid #e0e2ee;
|
|
5373
5373
|
border-radius: 8px;
|
|
5374
|
+
display: flex;
|
|
5375
|
+
flex-direction: column;
|
|
5376
|
+
height: 100%;
|
|
5377
|
+
justify-content: flex-end;
|
|
5374
5378
|
width: 100%;
|
|
5375
5379
|
}
|
|
5376
5380
|
.ods-card-group--header {
|
|
@@ -5382,6 +5386,7 @@
|
|
|
5382
5386
|
align-items: center;
|
|
5383
5387
|
display: flex;
|
|
5384
5388
|
gap: 16px;
|
|
5389
|
+
height: 100%;
|
|
5385
5390
|
justify-content: space-between;
|
|
5386
5391
|
padding: 16px;
|
|
5387
5392
|
}
|
|
@@ -5416,4 +5421,24 @@
|
|
|
5416
5421
|
.ods-card-group__action:active {
|
|
5417
5422
|
background-color: #e0e2ee;
|
|
5418
5423
|
}
|
|
5424
|
+
|
|
5425
|
+
.dot-pagination {
|
|
5426
|
+
align-items: center;
|
|
5427
|
+
display: flex;
|
|
5428
|
+
flex-direction: row;
|
|
5429
|
+
gap: 8px;
|
|
5430
|
+
justify-content: center;
|
|
5431
|
+
}
|
|
5432
|
+
.dot-pagination__dot {
|
|
5433
|
+
background-color: #ced1e1;
|
|
5434
|
+
border-radius: 3px;
|
|
5435
|
+
cursor: pointer;
|
|
5436
|
+
height: 6px;
|
|
5437
|
+
transition: all 250ms ease-in-out;
|
|
5438
|
+
width: 6px;
|
|
5439
|
+
}
|
|
5440
|
+
.dot-pagination__dot--active {
|
|
5441
|
+
background-color: #0025e0;
|
|
5442
|
+
width: 12px;
|
|
5443
|
+
}
|
|
5419
5444
|
/*# sourceMappingURL=ocean.css.map */
|