@useblu/ocean-core 1.32.0 → 1.34.2
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 +16 -0
- package/ocean.css +6 -1
- 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,22 @@
|
|
|
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.34.2](https://github.com/ocean-ds/ocean-web/compare/v1.34.1...v1.34.2) (2022-08-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @useblu/ocean-core
|
|
9
|
+
|
|
10
|
+
# [1.34.0](https://github.com/ocean-ds/ocean-web/compare/v1.33.1...v1.34.0) (2022-08-03)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- **crosssellcard:** CustomIcon + increases the clickable area for the whole component ([#992](https://github.com/ocean-ds/ocean-web/issues/992)) ([7f16ad2](https://github.com/ocean-ds/ocean-web/commit/7f16ad209c8d6beb6a330270bb70209398aaa81e))
|
|
15
|
+
|
|
16
|
+
# [1.33.0](https://github.com/ocean-ds/ocean-web/compare/v1.32.0...v1.33.0) (2022-07-07)
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
- add checkbox error state ([#982](https://github.com/ocean-ds/ocean-web/issues/982)) ([e36081e](https://github.com/ocean-ds/ocean-web/commit/e36081ec995356f5f7215d158bfcca66c24e1153))
|
|
21
|
+
|
|
6
22
|
# [1.32.0](https://github.com/ocean-ds/ocean-web/compare/v1.31.4...v1.32.0) (2022-06-30)
|
|
7
23
|
|
|
8
24
|
### Features
|
package/ocean.css
CHANGED
|
@@ -1497,6 +1497,9 @@
|
|
|
1497
1497
|
transform: rotate(40deg);
|
|
1498
1498
|
width: 6px;
|
|
1499
1499
|
}
|
|
1500
|
+
.ods-checkbox__checkmark--error {
|
|
1501
|
+
border-color: #f5456e;
|
|
1502
|
+
}
|
|
1500
1503
|
.ods-checkbox__checkmark--indeterminate {
|
|
1501
1504
|
align-items: center;
|
|
1502
1505
|
display: flex;
|
|
@@ -3169,6 +3172,7 @@
|
|
|
3169
3172
|
|
|
3170
3173
|
.ods-cross-sell-card {
|
|
3171
3174
|
border-radius: 8px;
|
|
3175
|
+
cursor: pointer;
|
|
3172
3176
|
min-height: 156px;
|
|
3173
3177
|
width: 100%;
|
|
3174
3178
|
}
|
|
@@ -3182,6 +3186,7 @@
|
|
|
3182
3186
|
gap: 16px;
|
|
3183
3187
|
justify-content: center;
|
|
3184
3188
|
padding: 12px 24px;
|
|
3189
|
+
transition: background 0.1s ease-in;
|
|
3185
3190
|
}
|
|
3186
3191
|
@media (max-width: 991.98px) {
|
|
3187
3192
|
.ods-cross-sell-card__content {
|
|
@@ -3240,7 +3245,7 @@
|
|
|
3240
3245
|
.ods-cross-sell-card__cta:focus-visible {
|
|
3241
3246
|
outline: #0025e0 auto 1px;
|
|
3242
3247
|
}
|
|
3243
|
-
.ods-cross-sell-card__cta-icon {
|
|
3248
|
+
.ods-cross-sell-card__cta-icon svg {
|
|
3244
3249
|
color: #0025e0;
|
|
3245
3250
|
}
|
|
3246
3251
|
/*# sourceMappingURL=ocean.css.map */
|