urfu-ui-kit-vanilla 1.0.66 → 1.0.67
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/package.json +1 -1
- package/src/main.css +10 -12
- package/src/main.ts +1 -11
package/package.json
CHANGED
package/src/main.css
CHANGED
|
@@ -1607,6 +1607,7 @@ button {
|
|
|
1607
1607
|
height: 26px;
|
|
1608
1608
|
position: relative;
|
|
1609
1609
|
border-radius: 16px;
|
|
1610
|
+
transition: all 0.2s ease-in-out;
|
|
1610
1611
|
background-color: #D3D3D3;
|
|
1611
1612
|
}
|
|
1612
1613
|
.u-switch__point::after {
|
|
@@ -1652,6 +1653,7 @@ button {
|
|
|
1652
1653
|
height: 26px;
|
|
1653
1654
|
position: relative;
|
|
1654
1655
|
border-radius: 16px;
|
|
1656
|
+
transition: all 0.2s ease-in-out;
|
|
1655
1657
|
background-color: #D3D3D3;
|
|
1656
1658
|
}
|
|
1657
1659
|
.u-switch-gradient__point::after {
|
|
@@ -1675,6 +1677,10 @@ button {
|
|
|
1675
1677
|
.u-radio {
|
|
1676
1678
|
cursor: pointer;
|
|
1677
1679
|
display: flex;
|
|
1680
|
+
align-items: center;
|
|
1681
|
+
column-gap: 10px;
|
|
1682
|
+
font-size: 14px;
|
|
1683
|
+
line-height: 20px;
|
|
1678
1684
|
}
|
|
1679
1685
|
.u-radio input {
|
|
1680
1686
|
display: none;
|
|
@@ -1701,15 +1707,13 @@ button {
|
|
|
1701
1707
|
background-repeat: no-repeat;
|
|
1702
1708
|
background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='15' height='15' rx='7.5' stroke='%23D3D3D3'/%3E%3C/svg%3E%0A");
|
|
1703
1709
|
}
|
|
1704
|
-
.u-radio.u-radio-text-left div {
|
|
1705
|
-
margin-left: 12px;
|
|
1706
|
-
}
|
|
1707
|
-
.u-radio.u-radio-text-right div {
|
|
1708
|
-
margin-right: 12px;
|
|
1709
|
-
}
|
|
1710
1710
|
.u-checkbox {
|
|
1711
1711
|
cursor: pointer;
|
|
1712
1712
|
display: flex;
|
|
1713
|
+
align-items: center;
|
|
1714
|
+
column-gap: 10px;
|
|
1715
|
+
font-size: 14px;
|
|
1716
|
+
line-height: 20px;
|
|
1713
1717
|
}
|
|
1714
1718
|
.u-checkbox input {
|
|
1715
1719
|
display: none;
|
|
@@ -1736,12 +1740,6 @@ button {
|
|
|
1736
1740
|
background-repeat: no-repeat;
|
|
1737
1741
|
background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='15' height='15' rx='1.5' fill='white' stroke='%23D3D3D3'/%3E%3C/svg%3E ");
|
|
1738
1742
|
}
|
|
1739
|
-
.u-checkbox.u-checkbox-text-left div {
|
|
1740
|
-
margin-left: 12px;
|
|
1741
|
-
}
|
|
1742
|
-
.u-checkbox.u-checkbox-text-right div {
|
|
1743
|
-
margin-right: 12px;
|
|
1744
|
-
}
|
|
1745
1743
|
.u-accordion {
|
|
1746
1744
|
border-left: 4px solid #748AB9;
|
|
1747
1745
|
padding-left: 20px;
|
package/src/main.ts
CHANGED
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
// import AirDatepicker from 'air-datepicker';
|
|
2
|
-
// import 'air-datepicker/air-datepicker.css';
|
|
3
1
|
import "./main.css";
|
|
4
2
|
// import "./main.less";
|
|
5
|
-
// import "./js/upward.js"
|
|
6
|
-
|
|
7
|
-
// new AirDatepicker('#airdatepicker', {
|
|
8
|
-
// toggleSelected: true,
|
|
9
|
-
// range: true,
|
|
10
|
-
// position: "bottom right",
|
|
11
|
-
// inline: true,
|
|
12
|
-
// })
|
|
13
|
-
|
|
3
|
+
// import "./js/upward.js"
|