@useblu/ocean-core 1.31.0 → 1.31.4
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 +16 -0
- package/ocean.css +14 -12
- package/ocean.css.map +1 -1
- package/ocean.min.css +1 -1
- package/ocean.min.css.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.31.4](https://github.com/ocean-ds/ocean-web/compare/v1.31.3...v1.31.4) (2022-06-28)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @useblu/ocean-core
|
|
9
|
+
|
|
10
|
+
## [1.31.3](https://github.com/ocean-ds/ocean-web/compare/v1.31.2...v1.31.3) (2022-05-24)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- **checkbox:** fix checkmark position ([#967](https://github.com/ocean-ds/ocean-web/issues/967)) ([f897612](https://github.com/ocean-ds/ocean-web/commit/f897612ff6c30dcc2ea7914618633f55c51d5e3a))
|
|
15
|
+
|
|
16
|
+
## [1.31.2](https://github.com/ocean-ds/ocean-web/compare/v1.31.1...v1.31.2) (2022-05-24)
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
- **checkbox:** add min-width and min-height to checkbox ([#964](https://github.com/ocean-ds/ocean-web/issues/964)) ([425eaf6](https://github.com/ocean-ds/ocean-web/commit/425eaf689cb837ac3f0f0634570e1a989e970310))
|
|
21
|
+
|
|
6
22
|
# [1.31.0](https://github.com/ocean-ds/ocean-web/compare/v1.30.4...v1.31.0) (2022-04-06)
|
|
7
23
|
|
|
8
24
|
### Features
|
package/ocean.css
CHANGED
|
@@ -1481,8 +1481,10 @@
|
|
|
1481
1481
|
border-radius: 4px;
|
|
1482
1482
|
box-sizing: border-box;
|
|
1483
1483
|
cursor: pointer;
|
|
1484
|
-
height:
|
|
1485
|
-
|
|
1484
|
+
height: 20px;
|
|
1485
|
+
min-height: 20px;
|
|
1486
|
+
min-width: 20px;
|
|
1487
|
+
width: 20px;
|
|
1486
1488
|
}
|
|
1487
1489
|
.ods-checkbox__checkmark::after {
|
|
1488
1490
|
border: solid #fff;
|
|
@@ -1490,8 +1492,8 @@
|
|
|
1490
1492
|
content: "";
|
|
1491
1493
|
display: none;
|
|
1492
1494
|
height: 10px;
|
|
1493
|
-
margin-left:
|
|
1494
|
-
margin-top:
|
|
1495
|
+
margin-left: 5px;
|
|
1496
|
+
margin-top: 1px;
|
|
1495
1497
|
transform: rotate(40deg);
|
|
1496
1498
|
width: 6px;
|
|
1497
1499
|
}
|
|
@@ -1556,11 +1558,11 @@
|
|
|
1556
1558
|
border-radius: 50%;
|
|
1557
1559
|
box-sizing: border-box;
|
|
1558
1560
|
cursor: pointer;
|
|
1559
|
-
height:
|
|
1560
|
-
width:
|
|
1561
|
+
height: 20px;
|
|
1562
|
+
width: 20px;
|
|
1561
1563
|
}
|
|
1562
1564
|
.ods-radio:checked ~ .ods-radio__checkmark {
|
|
1563
|
-
border-width:
|
|
1565
|
+
border-width: 6px;
|
|
1564
1566
|
}
|
|
1565
1567
|
.ods-radio:checked:not(:disabled) ~ .ods-radio__checkmark {
|
|
1566
1568
|
border-color: #13bdbd;
|
|
@@ -1584,9 +1586,9 @@
|
|
|
1584
1586
|
}
|
|
1585
1587
|
.ods-switch__root {
|
|
1586
1588
|
display: inline-block;
|
|
1587
|
-
height:
|
|
1589
|
+
height: 20px;
|
|
1588
1590
|
position: relative;
|
|
1589
|
-
width:
|
|
1591
|
+
width: 40px;
|
|
1590
1592
|
}
|
|
1591
1593
|
.ods-switch__root:hover .ods-switch__slider {
|
|
1592
1594
|
background-color: #f7f9ff;
|
|
@@ -1600,7 +1602,7 @@
|
|
|
1600
1602
|
box-sizing: border-box;
|
|
1601
1603
|
cursor: pointer;
|
|
1602
1604
|
left: 0;
|
|
1603
|
-
padding:
|
|
1605
|
+
padding: 2px;
|
|
1604
1606
|
position: absolute;
|
|
1605
1607
|
right: 0;
|
|
1606
1608
|
top: 0;
|
|
@@ -1611,9 +1613,9 @@
|
|
|
1611
1613
|
border-radius: 50%;
|
|
1612
1614
|
content: "";
|
|
1613
1615
|
display: block;
|
|
1614
|
-
height:
|
|
1616
|
+
height: 14px;
|
|
1615
1617
|
transition: all 0.2s ease;
|
|
1616
|
-
width:
|
|
1618
|
+
width: 14px;
|
|
1617
1619
|
}
|
|
1618
1620
|
.ods-switch:checked + .ods-switch__slider::before {
|
|
1619
1621
|
background-color: white;
|