@useblu/ocean-core 1.47.0 → 1.48.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.48.0](https://github.com/ocean-ds/ocean-web/compare/v1.47.1...v1.48.0) (2023-07-31)
7
+
8
+ ### Features
9
+
10
+ - remove unused margin an add condicional render in input label ([#1079](https://github.com/ocean-ds/ocean-web/issues/1079)) ([561d8a7](https://github.com/ocean-ds/ocean-web/commit/561d8a73f8699848d0e2f0679a618471bcb088f7))
11
+
12
+ ## [1.47.1](https://github.com/ocean-ds/ocean-web/compare/v1.47.0...v1.47.1) (2023-07-03)
13
+
14
+ ### Bug Fixes
15
+
16
+ - Center checkbox icon ([#1074](https://github.com/ocean-ds/ocean-web/issues/1074)) ([6441262](https://github.com/ocean-ds/ocean-web/commit/6441262c2382bf544a0097e8ce9d235a61a284f6))
17
+
6
18
  # [1.47.0](https://github.com/ocean-ds/ocean-web/compare/v1.46.3...v1.47.0) (2023-06-27)
7
19
 
8
20
  ### Features
package/ocean.css CHANGED
@@ -1360,7 +1360,6 @@
1360
1360
  .ods-input:hover, .ods-input:focus, .ods-input:active, .ods-input:focus-within {
1361
1361
  border-color: #5872f5;
1362
1362
  border-width: 2px;
1363
- margin: -1px;
1364
1363
  }
1365
1364
  .ods-input--filled {
1366
1365
  border: 1px solid #b8c3ff;
@@ -1458,7 +1457,6 @@
1458
1457
  }
1459
1458
  .ods-textarea:hover, .ods-textarea:focus, .ods-textarea:active, .ods-textarea:focus-within {
1460
1459
  border: 2px solid #5872f5;
1461
- margin: -1px;
1462
1460
  }
1463
1461
  .ods-textarea:disabled {
1464
1462
  background-color: #ebecf5;
@@ -1511,11 +1509,12 @@
1511
1509
  .ods-checkbox__checkmark::after {
1512
1510
  border: solid #fff;
1513
1511
  border-width: 0 2px 2px 0;
1512
+ box-sizing: border-box;
1514
1513
  content: "";
1515
1514
  display: none;
1516
1515
  height: 10px;
1517
- margin-left: 5px;
1518
- margin-top: 1px;
1516
+ margin-left: 6px;
1517
+ margin-top: 3px;
1519
1518
  transform: rotate(40deg);
1520
1519
  width: 6px;
1521
1520
  }
@@ -2723,7 +2722,6 @@
2723
2722
  }
2724
2723
  .ods-search:hover, .ods-search:focus, .ods-search:active, .ods-search:focus-within {
2725
2724
  border: 2px solid #5872f5;
2726
- margin: -1px;
2727
2725
  }
2728
2726
  .ods-search--filled {
2729
2727
  border: 1px solid #b8c3ff;