@useblu/ocean-core 1.31.4 → 1.34.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 CHANGED
@@ -3,6 +3,24 @@
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.0](https://github.com/ocean-ds/ocean-web/compare/v1.33.1...v1.34.0) (2022-08-03)
7
+
8
+ ### Features
9
+
10
+ - **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))
11
+
12
+ # [1.33.0](https://github.com/ocean-ds/ocean-web/compare/v1.32.0...v1.33.0) (2022-07-07)
13
+
14
+ ### Features
15
+
16
+ - add checkbox error state ([#982](https://github.com/ocean-ds/ocean-web/issues/982)) ([e36081e](https://github.com/ocean-ds/ocean-web/commit/e36081ec995356f5f7215d158bfcca66c24e1153))
17
+
18
+ # [1.32.0](https://github.com/ocean-ds/ocean-web/compare/v1.31.4...v1.32.0) (2022-06-30)
19
+
20
+ ### Features
21
+
22
+ - add cross sell card component ([#980](https://github.com/ocean-ds/ocean-web/issues/980)) ([6177870](https://github.com/ocean-ds/ocean-web/commit/61778709e2ac7d6f0f9daafce2f2888f09d84ccf))
23
+
6
24
  ## [1.31.4](https://github.com/ocean-ds/ocean-web/compare/v1.31.3...v1.31.4) (2022-06-28)
7
25
 
8
26
  **Note:** Version bump only for package @useblu/ocean-core
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;
@@ -3166,4 +3169,83 @@
3166
3169
  display: flex;
3167
3170
  justify-content: center;
3168
3171
  }
3172
+
3173
+ .ods-cross-sell-card {
3174
+ border-radius: 8px;
3175
+ cursor: pointer;
3176
+ min-height: 156px;
3177
+ width: 100%;
3178
+ }
3179
+ .ods-cross-sell-card__content {
3180
+ align-items: center;
3181
+ background-color: #0025e0;
3182
+ border: 1px solid #ebecf5;
3183
+ border-bottom: 0;
3184
+ border-radius: 8px 8px 0 0;
3185
+ display: flex;
3186
+ gap: 16px;
3187
+ justify-content: center;
3188
+ padding: 12px 24px;
3189
+ transition: background 0.1s ease-in;
3190
+ }
3191
+ @media (max-width: 991.98px) {
3192
+ .ods-cross-sell-card__content {
3193
+ padding: 16px;
3194
+ }
3195
+ }
3196
+ .ods-cross-sell-card__information {
3197
+ width: 100%;
3198
+ }
3199
+ .ods-cross-sell-card__image {
3200
+ min-height: 102px;
3201
+ width: 102px;
3202
+ }
3203
+ @media (max-width: 991.98px) {
3204
+ .ods-cross-sell-card__image {
3205
+ min-height: 80px;
3206
+ width: 80px;
3207
+ }
3208
+ }
3209
+ .ods-cross-sell-card__description {
3210
+ color: #b8c3ff;
3211
+ margin-top: 4px;
3212
+ }
3213
+ .ods-cross-sell-card__cta {
3214
+ align-items: center;
3215
+ background: white;
3216
+ border: 1px solid #ebecf5;
3217
+ border-radius: 0 0 8px 8px;
3218
+ border-top: 0;
3219
+ color: #0025e0;
3220
+ display: flex;
3221
+ font-family: "Nunito Sans";
3222
+ font-size: 14px;
3223
+ font-weight: 700;
3224
+ gap: 8px;
3225
+ height: 48px;
3226
+ justify-content: space-between;
3227
+ padding-left: 24px;
3228
+ padding-right: 24px;
3229
+ transition: background 0.1s ease-in;
3230
+ width: 100%;
3231
+ }
3232
+ @media (max-width: 991.98px) {
3233
+ .ods-cross-sell-card__cta {
3234
+ padding-left: 16px;
3235
+ padding-right: 16px;
3236
+ }
3237
+ }
3238
+ .ods-cross-sell-card__cta:hover {
3239
+ background: #f7f9ff;
3240
+ cursor: pointer;
3241
+ }
3242
+ .ods-cross-sell-card__cta:active {
3243
+ background: #ebecf5;
3244
+ }
3245
+ .ods-cross-sell-card__cta:focus-visible {
3246
+ outline: #0025e0 auto 1px;
3247
+ }
3248
+ .ods-cross-sell-card__cta-icon svg {
3249
+ color: #0025e0;
3250
+ }
3169
3251
  /*# sourceMappingURL=ocean.css.map */