@useblu/ocean-core 1.77.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 +6 -0
- package/ocean.css +20 -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,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.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
|
+
|
|
6
12
|
# [1.77.0](https://github.com/ocean-ds/ocean-web/compare/v1.76.0...v1.77.0) (2025-01-30)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/ocean.css
CHANGED
|
@@ -5421,4 +5421,24 @@
|
|
|
5421
5421
|
.ods-card-group__action:active {
|
|
5422
5422
|
background-color: #e0e2ee;
|
|
5423
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
|
+
}
|
|
5424
5444
|
/*# sourceMappingURL=ocean.css.map */
|