@useblu/ocean-core 1.89.1 → 1.98.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.98.0](https://github.com/ocean-ds/ocean-web/compare/v1.97.0...v1.98.0) (2025-08-04)
7
+
8
+ ### Features
9
+
10
+ - select and stepper docs ([#1175](https://github.com/ocean-ds/ocean-web/issues/1175)) ([2f60bad](https://github.com/ocean-ds/ocean-web/commit/2f60bad3255bb1606cdf2cae57230d45ab2d3fac))
11
+
12
+ # [1.92.0](https://github.com/ocean-ds/ocean-web/compare/v1.91.0...v1.92.0) (2025-07-28)
13
+
14
+ ### Features
15
+
16
+ - setting list ([#1169](https://github.com/ocean-ds/ocean-web/issues/1169)) ([57c1796](https://github.com/ocean-ds/ocean-web/commit/57c1796b0ae2b26ee5a64e473054a571e88d4bfd))
17
+
6
18
  ## [1.89.1](https://github.com/ocean-ds/ocean-web/compare/v1.89.0...v1.89.1) (2025-07-22)
7
19
 
8
20
  ### Bug Fixes
package/ocean.css CHANGED
@@ -1473,7 +1473,6 @@
1473
1473
  font-family: "Nunito Sans";
1474
1474
  font-size: 16px;
1475
1475
  font-weight: 400;
1476
- height: 145px;
1477
1476
  line-height: 1.5;
1478
1477
  outline: none;
1479
1478
  padding: 16px;
@@ -5450,4 +5449,99 @@
5450
5449
  background-color: #0025e0;
5451
5450
  width: 12px;
5452
5451
  }
5452
+
5453
+ .ods-settings-list-item {
5454
+ align-items: center;
5455
+ display: flex;
5456
+ gap: 16px;
5457
+ justify-content: space-between;
5458
+ padding: 16px;
5459
+ }
5460
+ .ods-settings-list-item__actions {
5461
+ align-items: center;
5462
+ display: flex;
5463
+ height: 100%;
5464
+ }
5465
+ .ods-settings-list-item__actions svg {
5466
+ color: #aaadc0;
5467
+ }
5468
+ .ods-settings-list-item--disabled {
5469
+ cursor: not-allowed;
5470
+ }
5471
+ .ods-settings-list-item--divider {
5472
+ border-bottom: 1px solid #e0e2ee;
5473
+ }
5474
+
5475
+ .ods-skeleton-bar {
5476
+ background-color: #f3f5fe;
5477
+ border-radius: 4px;
5478
+ box-sizing: border-box;
5479
+ color: #f3f5fe;
5480
+ display: block;
5481
+ }
5482
+
5483
+ .ods-content-list {
5484
+ align-items: center;
5485
+ display: flex;
5486
+ gap: 16px;
5487
+ justify-content: space-between;
5488
+ padding: 16px;
5489
+ }
5490
+ .ods-content-list__content {
5491
+ display: flex;
5492
+ flex-direction: column;
5493
+ }
5494
+ .ods-content-list__content .ods-typography__tag {
5495
+ align-items: center;
5496
+ display: flex;
5497
+ gap: 4px;
5498
+ }
5499
+ .ods-content-list__content .ods-typography__paragraph {
5500
+ color: #0c0d14;
5501
+ }
5502
+ .ods-content-list__content .ods-typography__captionbold {
5503
+ margin-top: 8px;
5504
+ }
5505
+ .ods-content-list__content .ods-typography__caption {
5506
+ color: #f5456e;
5507
+ margin-top: 8px;
5508
+ }
5509
+ .ods-content-list__content .ods-typography__paragraph--inactive {
5510
+ color: #aaadc0;
5511
+ }
5512
+ .ods-content-list__content .ods-typography__paragraph--positive {
5513
+ color: #2da94f;
5514
+ }
5515
+ .ods-content-list__content .ods-typography__paragraph--warning {
5516
+ color: #ff8a14;
5517
+ }
5518
+ .ods-content-list__content .ods-typography__paragraph--highlight {
5519
+ color: #393b47;
5520
+ font-weight: 700;
5521
+ }
5522
+ .ods-content-list__content .ods-typography__paragraph--highlight-lead {
5523
+ color: #393b47;
5524
+ font-size: 20px;
5525
+ font-weight: 700;
5526
+ }
5527
+ .ods-content-list__content .ods-typography__paragraph--strikethrough {
5528
+ color: #2da94f;
5529
+ }
5530
+ .ods-content-list__content .ods-typography__paragraph--strikethrough-text {
5531
+ color: #aaadc0;
5532
+ margin-right: 4px;
5533
+ text-decoration: line-through;
5534
+ }
5535
+ .ods-content-list--disabled {
5536
+ cursor: not-allowed;
5537
+ }
5538
+ .ods-content-list--disabled .ods-typography {
5539
+ color: #aaadc0;
5540
+ }
5541
+ .ods-content-list__skeleton {
5542
+ display: flex;
5543
+ flex-direction: column;
5544
+ gap: 8px;
5545
+ width: 100%;
5546
+ }
5453
5547
  /*# sourceMappingURL=ocean.css.map */