@useblu/ocean-core 1.77.0 → 1.79.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 +32 -7
- 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.79.0](https://github.com/ocean-ds/ocean-web/compare/v1.78.0...v1.79.0) (2025-07-03)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- button and input documentation update ([#1134](https://github.com/ocean-ds/ocean-web/issues/1134)) ([d194c63](https://github.com/ocean-ds/ocean-web/commit/d194c63fcbce8700c351bb39d342992dee5a28ea))
|
|
11
|
+
|
|
12
|
+
# [1.78.0](https://github.com/ocean-ds/ocean-web/compare/v1.77.1...v1.78.0) (2025-03-31)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- create dot pagination ([#1132](https://github.com/ocean-ds/ocean-web/issues/1132)) ([264737b](https://github.com/ocean-ds/ocean-web/commit/264737be811319cc4bd556bbfebb3fedb162b240))
|
|
17
|
+
|
|
6
18
|
# [1.77.0](https://github.com/ocean-ds/ocean-web/compare/v1.76.0...v1.77.0) (2025-01-30)
|
|
7
19
|
|
|
8
20
|
### Features
|
package/ocean.css
CHANGED
|
@@ -2227,22 +2227,22 @@
|
|
|
2227
2227
|
.ods-btn--secondary-critical:active {
|
|
2228
2228
|
background-color: #e0e2ee;
|
|
2229
2229
|
}
|
|
2230
|
-
.ods-btn--text, .ods-btn--text-critical {
|
|
2230
|
+
.ods-btn--tertiary, .ods-btn--tertiary-critical, .ods-btn--text, .ods-btn--text-critical {
|
|
2231
2231
|
background-color: transparent;
|
|
2232
2232
|
}
|
|
2233
|
-
.ods-btn--text:hover, .ods-btn--text-critical:hover {
|
|
2233
|
+
.ods-btn--tertiary:hover, .ods-btn--tertiary-critical:hover, .ods-btn--text:hover, .ods-btn--text-critical:hover {
|
|
2234
2234
|
background-color: #f3f5fe;
|
|
2235
2235
|
}
|
|
2236
|
-
.ods-btn--text:focus, .ods-btn--text-critical:focus {
|
|
2236
|
+
.ods-btn--tertiary:focus, .ods-btn--tertiary-critical:focus, .ods-btn--text:focus, .ods-btn--text-critical:focus {
|
|
2237
2237
|
background-color: #f3f5fe;
|
|
2238
2238
|
}
|
|
2239
|
-
.ods-btn--text:active, .ods-btn--text-critical:active {
|
|
2239
|
+
.ods-btn--tertiary:active, .ods-btn--tertiary-critical:active, .ods-btn--text:active, .ods-btn--text-critical:active {
|
|
2240
2240
|
background-color: #e0e2ee;
|
|
2241
2241
|
}
|
|
2242
|
-
.ods-btn--text {
|
|
2242
|
+
.ods-btn--tertiary, .ods-btn--text {
|
|
2243
2243
|
color: #0025e0;
|
|
2244
2244
|
}
|
|
2245
|
-
.ods-btn--text-critical {
|
|
2245
|
+
.ods-btn--tertiary-critical, .ods-btn--text-critical {
|
|
2246
2246
|
color: #f5456e;
|
|
2247
2247
|
}
|
|
2248
2248
|
.ods-btn--text-tertiary, .ods-btn--text-tertiary-critical {
|
|
@@ -2292,7 +2292,12 @@
|
|
|
2292
2292
|
width: 100%;
|
|
2293
2293
|
}
|
|
2294
2294
|
.ods-btn--loading .ods-progress {
|
|
2295
|
+
align-items: center;
|
|
2296
|
+
display: flex;
|
|
2297
|
+
height: 100%;
|
|
2298
|
+
justify-content: center;
|
|
2295
2299
|
margin: auto;
|
|
2300
|
+
width: 100%;
|
|
2296
2301
|
}
|
|
2297
2302
|
.ods-btn--loading > span {
|
|
2298
2303
|
display: block;
|
|
@@ -2304,7 +2309,7 @@
|
|
|
2304
2309
|
color: #aaadc0;
|
|
2305
2310
|
cursor: not-allowed;
|
|
2306
2311
|
}
|
|
2307
|
-
.ods-btn--text:disabled, .ods-btn--text-critical:disabled, .ods-btn--text-tertiary:disabled, .ods-btn--text-tertiary-critical:disabled {
|
|
2312
|
+
.ods-btn--tertiary:disabled, .ods-btn--tertiary-critical:disabled, .ods-btn--text:disabled, .ods-btn--text-critical:disabled, .ods-btn--text-tertiary:disabled, .ods-btn--text-tertiary-critical:disabled {
|
|
2308
2313
|
background-color: transparent;
|
|
2309
2314
|
}
|
|
2310
2315
|
|
|
@@ -5421,4 +5426,24 @@
|
|
|
5421
5426
|
.ods-card-group__action:active {
|
|
5422
5427
|
background-color: #e0e2ee;
|
|
5423
5428
|
}
|
|
5429
|
+
|
|
5430
|
+
.dot-pagination {
|
|
5431
|
+
align-items: center;
|
|
5432
|
+
display: flex;
|
|
5433
|
+
flex-direction: row;
|
|
5434
|
+
gap: 8px;
|
|
5435
|
+
justify-content: center;
|
|
5436
|
+
}
|
|
5437
|
+
.dot-pagination__dot {
|
|
5438
|
+
background-color: #ced1e1;
|
|
5439
|
+
border-radius: 3px;
|
|
5440
|
+
cursor: pointer;
|
|
5441
|
+
height: 6px;
|
|
5442
|
+
transition: all 250ms ease-in-out;
|
|
5443
|
+
width: 6px;
|
|
5444
|
+
}
|
|
5445
|
+
.dot-pagination__dot--active {
|
|
5446
|
+
background-color: #0025e0;
|
|
5447
|
+
width: 12px;
|
|
5448
|
+
}
|
|
5424
5449
|
/*# sourceMappingURL=ocean.css.map */
|