@useblu/ocean-core 1.68.1 → 1.69.1

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.69.1](https://github.com/ocean-ds/ocean-web/compare/v1.69.0...v1.69.1) (2024-11-13)
7
+
8
+ ### Bug Fixes
9
+
10
+ - checkbox border radius ([#1120](https://github.com/ocean-ds/ocean-web/issues/1120)) ([821429d](https://github.com/ocean-ds/ocean-web/commit/821429d660f275319657518cf77c1c828d3344bf))
11
+
12
+ # [1.69.0](https://github.com/ocean-ds/ocean-web/compare/v1.68.1...v1.69.0) (2024-08-21)
13
+
14
+ ### Features
15
+
16
+ - 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))
17
+
6
18
  ## [1.68.1](https://github.com/ocean-ds/ocean-web/compare/v1.68.0...v1.68.1) (2024-08-19)
7
19
 
8
20
  ### 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;
@@ -4632,6 +4646,12 @@
4632
4646
  height: 24px;
4633
4647
  width: 24px;
4634
4648
  }
4649
+ .ods-card-list-item__wrapper {
4650
+ align-items: center;
4651
+ display: flex;
4652
+ flex-direction: row;
4653
+ gap: 8px;
4654
+ }
4635
4655
  .ods-card-list-item__content {
4636
4656
  display: flex;
4637
4657
  flex-direction: column;