@useblu/ocean-core 1.70.0 → 1.72.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,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.72.0](https://github.com/ocean-ds/ocean-web/compare/v1.71.0...v1.72.0) (2024-12-06)
7
+
8
+ ### Features
9
+
10
+ - update text list item ([#1124](https://github.com/ocean-ds/ocean-web/issues/1124)) ([e1e8e81](https://github.com/ocean-ds/ocean-web/commit/e1e8e81a8e10c961dc7fef75c567a25bf2d87de1))
11
+
12
+ # [1.71.0](https://github.com/ocean-ds/ocean-web/compare/v1.70.1...v1.71.0) (2024-12-06)
13
+
14
+ ### Features
15
+
16
+ - create text list item ([#1123](https://github.com/ocean-ds/ocean-web/issues/1123)) ([ae17cd7](https://github.com/ocean-ds/ocean-web/commit/ae17cd7b094ee696a88fd981e67b3326ff3c9b40))
17
+
6
18
  # [1.70.0](https://github.com/ocean-ds/ocean-web/compare/v1.69.1...v1.70.0) (2024-12-04)
7
19
 
8
20
  ### Features
package/ocean.css CHANGED
@@ -3201,6 +3201,94 @@
3201
3201
  white-space: nowrap;
3202
3202
  }
3203
3203
 
3204
+ .ods-text-list-item-selectable .ods-checkbox__root,
3205
+ .ods-text-list-item-selectable .ods-radio__root {
3206
+ align-items: center;
3207
+ background-color: white;
3208
+ padding: 16px;
3209
+ }
3210
+ .ods-text-list-item-selectable .ods-checkbox__root:hover, .ods-text-list-item-selectable .ods-checkbox__root:focus,
3211
+ .ods-text-list-item-selectable .ods-radio__root:hover,
3212
+ .ods-text-list-item-selectable .ods-radio__root:focus {
3213
+ background-color: #f3f5fe;
3214
+ cursor: pointer;
3215
+ }
3216
+ .ods-text-list-item-selectable .ods-checkbox__label,
3217
+ .ods-text-list-item-selectable .ods-radio__label {
3218
+ padding-left: 16px;
3219
+ width: 100%;
3220
+ }
3221
+
3222
+ .ods-text-list-item {
3223
+ align-items: center;
3224
+ align-items: flex-start;
3225
+ background-color: white;
3226
+ display: flex;
3227
+ flex-direction: column;
3228
+ padding: 16px;
3229
+ width: 100%;
3230
+ }
3231
+ .ods-text-list-item--with-action {
3232
+ align-items: center;
3233
+ flex-direction: row;
3234
+ justify-content: space-between;
3235
+ padding: 16px 8px 16px 16px;
3236
+ }
3237
+ .ods-text-list-item--with-action svg {
3238
+ color: #aaadc0;
3239
+ height: 20px;
3240
+ width: 20px;
3241
+ }
3242
+ .ods-text-list-item--with-action:hover, .ods-text-list-item--with-action:focus {
3243
+ background-color: #f3f5fe;
3244
+ cursor: pointer;
3245
+ }
3246
+ .ods-text-list-item--selectable {
3247
+ background-color: transparent;
3248
+ padding: 0;
3249
+ }
3250
+ .ods-text-list-item--wide {
3251
+ align-items: center;
3252
+ flex-direction: row;
3253
+ justify-content: space-between;
3254
+ }
3255
+ .ods-text-list-item--wide .ods-text-list-item__info-text.ods-typography__description {
3256
+ margin-top: 0;
3257
+ }
3258
+ .ods-text-list-item__default-content {
3259
+ align-items: flex-start;
3260
+ display: flex;
3261
+ flex-direction: column;
3262
+ text-align: start;
3263
+ }
3264
+ .ods-text-list-item__info-text.ods-typography__description {
3265
+ margin-top: 8px;
3266
+ }
3267
+ .ods-text-list-item__info-text--neutral.ods-typography__description {
3268
+ color: #393b47;
3269
+ }
3270
+ .ods-text-list-item__info-text--positive.ods-typography__description {
3271
+ color: #2da94f;
3272
+ }
3273
+ .ods-text-list-item .ods-typography__paragraph {
3274
+ align-items: center;
3275
+ color: #0c0d14;
3276
+ display: flex;
3277
+ gap: 4px;
3278
+ }
3279
+ .ods-text-list-item .ods-typography__captionbold {
3280
+ margin-top: 8px;
3281
+ }
3282
+ .ods-text-list-item .ods-tag--medium {
3283
+ max-height: 20px;
3284
+ }
3285
+
3286
+ .ods-text-list-item--button {
3287
+ background-color: transparent;
3288
+ border: hidden;
3289
+ padding: 0;
3290
+ }
3291
+
3204
3292
  .ods-typography {
3205
3293
  margin: 0;
3206
3294
  }