@useblu/ocean-core 1.68.1 → 1.70.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.70.0](https://github.com/ocean-ds/ocean-web/compare/v1.69.1...v1.70.0) (2024-12-04)
7
+
8
+ ### Features
9
+
10
+ - update shortcut ([#1121](https://github.com/ocean-ds/ocean-web/issues/1121)) ([f4cd7f3](https://github.com/ocean-ds/ocean-web/commit/f4cd7f359132dfd3c85ed53962c118a9c83d0509))
11
+
12
+ ## [1.69.1](https://github.com/ocean-ds/ocean-web/compare/v1.69.0...v1.69.1) (2024-11-13)
13
+
14
+ ### Bug Fixes
15
+
16
+ - checkbox border radius ([#1120](https://github.com/ocean-ds/ocean-web/issues/1120)) ([821429d](https://github.com/ocean-ds/ocean-web/commit/821429d660f275319657518cf77c1c828d3344bf))
17
+
18
+ # [1.69.0](https://github.com/ocean-ds/ocean-web/compare/v1.68.1...v1.69.0) (2024-08-21)
19
+
20
+ ### Features
21
+
22
+ - add optionally tag on card list item ([#1119](https://github.com/ocean-ds/ocean-web/issues/1119)) ([d300d12](https://github.com/ocean-ds/ocean-web/commit/d300d1282d6910555304f358bfd4dfe9d4991da3))
23
+
6
24
  ## [1.68.1](https://github.com/ocean-ds/ocean-web/compare/v1.68.0...v1.68.1) (2024-08-19)
7
25
 
8
26
  ### Bug Fixes
package/ocean.css CHANGED
@@ -1512,6 +1512,19 @@
1512
1512
  position: absolute;
1513
1513
  width: 0;
1514
1514
  }
1515
+ .ods-checkbox__root-container {
1516
+ display: flex;
1517
+ flex-direction: column;
1518
+ }
1519
+ .ods-checkbox__root-container__error-message {
1520
+ color: #f5456e;
1521
+ font-family: "Nunito Sans";
1522
+ font-size: 12px;
1523
+ font-weight: 600;
1524
+ line-height: 1.5;
1525
+ padding-top: 8px;
1526
+ word-break: break-word;
1527
+ }
1515
1528
  .ods-checkbox__root {
1516
1529
  display: inline-flex;
1517
1530
  -webkit-user-select: none;
@@ -1530,7 +1543,7 @@
1530
1543
  .ods-checkbox__checkmark {
1531
1544
  background-color: white;
1532
1545
  border: solid 1px #aaadc0;
1533
- border-radius: 8px;
1546
+ border-radius: 4px;
1534
1547
  box-sizing: border-box;
1535
1548
  cursor: pointer;
1536
1549
  height: 20px;
@@ -1560,12 +1573,13 @@
1560
1573
  }
1561
1574
  .ods-checkbox__checkmark--indeterminate::after {
1562
1575
  border: 0;
1576
+ border-radius: 1px;
1563
1577
  border-top: 2px solid #fff;
1564
1578
  height: 0;
1565
1579
  margin: 0;
1566
1580
  position: absolute;
1567
1581
  transform: none;
1568
- width: 14px;
1582
+ width: 12px;
1569
1583
  }
1570
1584
  .ods-checkbox:checked ~ .ods-checkbox__checkmark::after {
1571
1585
  display: block;
@@ -2074,7 +2088,7 @@
2074
2088
  box-sizing: border-box;
2075
2089
  color: white;
2076
2090
  display: flex;
2077
- font-weight: 700;
2091
+ font-weight: 800;
2078
2092
  justify-content: center;
2079
2093
  white-space: nowrap;
2080
2094
  width: auto;
@@ -4523,7 +4537,7 @@
4523
4537
  align-items: flex-start;
4524
4538
  background-color: white;
4525
4539
  border: 1px solid #e0e2ee;
4526
- border-radius: 12px;
4540
+ border-radius: 8px;
4527
4541
  box-sizing: border-box;
4528
4542
  cursor: pointer;
4529
4543
  display: flex;
@@ -4536,8 +4550,11 @@
4536
4550
  .ods-shortcut:is(:hover, :focus) {
4537
4551
  background-color: #f3f5fe;
4538
4552
  }
4553
+ .ods-shortcut--blocked .ods-shortcut__content--horizontal, .ods-shortcut--with-badge .ods-shortcut__content--horizontal {
4554
+ margin-right: 16px;
4555
+ }
4539
4556
  .ods-shortcut--disabled {
4540
- background-color: rgba(235, 236, 245, 0.64);
4557
+ background-color: #f3f5fe;
4541
4558
  border-color: transparent;
4542
4559
  cursor: not-allowed;
4543
4560
  }
@@ -4552,11 +4569,14 @@
4552
4569
  .ods-shortcut--tiny.ods-shortcut--horizontal {
4553
4570
  min-width: 100px;
4554
4571
  }
4572
+ .ods-shortcut--tiny.ods-shortcut--horizontal.ods-shortcut--blocked, .ods-shortcut--tiny.ods-shortcut--horizontal.ods-shortcut--with-badge {
4573
+ min-width: 116px;
4574
+ }
4555
4575
  .ods-shortcut--small {
4556
4576
  min-width: 116px;
4557
4577
  }
4558
- .ods-shortcut--small.ods-shortcut--horizontal {
4559
- min-width: 140px;
4578
+ .ods-shortcut--small .ods-shortcut__content--vertical {
4579
+ gap: 26px;
4560
4580
  }
4561
4581
  .ods-shortcut--medium {
4562
4582
  min-width: 158px;
@@ -4565,7 +4585,7 @@
4565
4585
  min-width: 200px;
4566
4586
  }
4567
4587
  .ods-shortcut--medium .ods-shortcut__content--vertical {
4568
- gap: 12px;
4588
+ gap: 16px;
4569
4589
  }
4570
4590
  .ods-shortcut--full-width {
4571
4591
  width: 100%;
@@ -4587,11 +4607,7 @@
4587
4607
  flex-direction: row;
4588
4608
  }
4589
4609
  .ods-shortcut__label {
4590
- color: #393b47;
4591
- font-weight: 900;
4592
- height: -webkit-max-content;
4593
- height: -moz-max-content;
4594
- height: max-content;
4610
+ height: 16px;
4595
4611
  }
4596
4612
  .ods-shortcut__description {
4597
4613
  font-size: 12px;
@@ -4632,6 +4648,12 @@
4632
4648
  height: 24px;
4633
4649
  width: 24px;
4634
4650
  }
4651
+ .ods-card-list-item__wrapper {
4652
+ align-items: center;
4653
+ display: flex;
4654
+ flex-direction: row;
4655
+ gap: 8px;
4656
+ }
4635
4657
  .ods-card-list-item__content {
4636
4658
  display: flex;
4637
4659
  flex-direction: column;