@open-condo/ui 2.17.1 → 2.18.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/dist/components/Select/select.d.ts.map +1 -1
- package/dist/index.js +764 -136
- package/dist/style-vars/variables.css +1 -1
- package/dist/style-vars/variables.less +1 -1
- package/dist/styles.css +71 -108
- package/dist/styles.min.css +2 -2
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -717,6 +717,9 @@
|
|
|
717
717
|
text-align: right;
|
|
718
718
|
}
|
|
719
719
|
.condo-typography {
|
|
720
|
+
transition-timing-function: ease-in;
|
|
721
|
+
transition-duration: 0.15s;
|
|
722
|
+
transition-property: color opacity text-decoration-color;
|
|
720
723
|
word-break: break-word;
|
|
721
724
|
}
|
|
722
725
|
.condo-typography-break-spaces {
|
|
@@ -4873,50 +4876,70 @@ a.condo-btn-secondary {
|
|
|
4873
4876
|
}
|
|
4874
4877
|
.condo-checkbox-wrapper .condo-checkbox {
|
|
4875
4878
|
top: 0;
|
|
4876
|
-
|
|
4877
|
-
|
|
4878
|
-
|
|
4879
|
+
border-color: #d0d3e5;
|
|
4880
|
+
transition-timing-function: ease-in;
|
|
4881
|
+
transition-duration: 0.15s;
|
|
4882
|
+
transition-property: border-color;
|
|
4879
4883
|
}
|
|
4880
4884
|
.condo-checkbox-wrapper .condo-checkbox-inner {
|
|
4881
4885
|
box-sizing: content-box;
|
|
4882
4886
|
border-color: #d0d3e5;
|
|
4887
|
+
outline: none;
|
|
4888
|
+
transition-timing-function: ease-in;
|
|
4889
|
+
transition-duration: 0.15s;
|
|
4890
|
+
transition-property: border-color opacity;
|
|
4891
|
+
}
|
|
4892
|
+
.condo-checkbox-wrapper .condo-checkbox-inner::before {
|
|
4893
|
+
box-sizing: border-box;
|
|
4894
|
+
background: linear-gradient(90deg, #85eba4 0%, #9fd5ff 100%) border-box;
|
|
4895
|
+
border: 2px solid transparent;
|
|
4896
|
+
opacity: 1;
|
|
4897
|
+
-webkit-mask: linear-gradient(#111 0, #111 0) padding-box, linear-gradient(#fff 0, #fff 0);
|
|
4898
|
+
mask: linear-gradient(#111 0, #111 0) padding-box, linear-gradient(#fff 0, #fff 0);
|
|
4899
|
+
-webkit-mask: linear-gradient(#111 0 0) padding-box, linear-gradient(#fff 0 0);
|
|
4900
|
+
mask: linear-gradient(#111 0 0) padding-box, linear-gradient(#fff 0 0);
|
|
4901
|
+
-webkit-mask-composite: xor;
|
|
4902
|
+
mask-composite: exclude;
|
|
4883
4903
|
}
|
|
4884
4904
|
.condo-checkbox-wrapper .condo-checkbox-inner::after {
|
|
4885
4905
|
transition: none;
|
|
4886
4906
|
}
|
|
4887
|
-
.condo-checkbox-wrapper .condo-checkbox-
|
|
4888
|
-
|
|
4889
|
-
height: 4px;
|
|
4890
|
-
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
4891
|
-
border-radius: 1px;
|
|
4907
|
+
.condo-checkbox-wrapper .condo-checkbox-checked::after {
|
|
4908
|
+
border: none;
|
|
4892
4909
|
}
|
|
4893
|
-
.condo-checkbox-wrapper .condo-checkbox
|
|
4910
|
+
.condo-checkbox-wrapper .condo-checkbox::after {
|
|
4894
4911
|
position: absolute;
|
|
4895
|
-
|
|
4896
|
-
|
|
4897
|
-
|
|
4898
|
-
|
|
4899
|
-
|
|
4912
|
+
top: -4px;
|
|
4913
|
+
left: -4px;
|
|
4914
|
+
width: 32px;
|
|
4915
|
+
height: 32px;
|
|
4916
|
+
background-color: transparent;
|
|
4917
|
+
border-radius: 4px;
|
|
4918
|
+
visibility: visible;
|
|
4900
4919
|
content: "";
|
|
4901
4920
|
}
|
|
4902
|
-
.condo-checkbox-wrapper .condo-checkbox-
|
|
4903
|
-
|
|
4921
|
+
.condo-checkbox-wrapper-disabled .condo-checkbox-inner {
|
|
4922
|
+
opacity: 0.5;
|
|
4904
4923
|
}
|
|
4905
|
-
.condo-checkbox-wrapper .condo-checkbox-
|
|
4906
|
-
|
|
4907
|
-
background: #d0d3e5 border-box;
|
|
4908
|
-
border-color: transparent;
|
|
4924
|
+
.condo-checkbox-wrapper .condo-checkbox-input {
|
|
4925
|
+
margin: 0;
|
|
4909
4926
|
}
|
|
4910
|
-
.condo-checkbox-wrapper .condo-checkbox-
|
|
4911
|
-
|
|
4912
|
-
|
|
4913
|
-
|
|
4914
|
-
|
|
4915
|
-
|
|
4916
|
-
|
|
4917
|
-
|
|
4927
|
+
.condo-checkbox-wrapper .condo-checkbox-input:focus + .condo-checkbox-inner {
|
|
4928
|
+
border-color: #d0d3e5;
|
|
4929
|
+
}
|
|
4930
|
+
.condo-checkbox-wrapper .condo-checkbox.condo-checkbox-indeterminate > .condo-checkbox-inner {
|
|
4931
|
+
background: linear-gradient(90deg, #e2ffeb 0%, #e7f4ff 100%);
|
|
4932
|
+
}
|
|
4933
|
+
.condo-checkbox-wrapper .condo-checkbox.condo-checkbox-indeterminate > .condo-checkbox-inner::after {
|
|
4934
|
+
width: 12px;
|
|
4935
|
+
height: 4px;
|
|
4936
|
+
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
4937
|
+
border-radius: 1px;
|
|
4918
4938
|
}
|
|
4919
|
-
.condo-checkbox-wrapper .condo-checkbox-checked > .condo-checkbox-inner
|
|
4939
|
+
.condo-checkbox-wrapper .condo-checkbox.condo-checkbox-checked > .condo-checkbox-inner {
|
|
4940
|
+
background: linear-gradient(90deg, #e2ffeb 0%, #e7f4ff 100%);
|
|
4941
|
+
}
|
|
4942
|
+
.condo-checkbox-wrapper .condo-checkbox.condo-checkbox-checked > .condo-checkbox-inner::after {
|
|
4920
4943
|
top: 10px;
|
|
4921
4944
|
left: 5px;
|
|
4922
4945
|
box-sizing: content-box;
|
|
@@ -4928,94 +4951,34 @@ a.condo-btn-secondary {
|
|
|
4928
4951
|
transform: rotate(48deg) scale(1) translate(-50%, -50%);
|
|
4929
4952
|
transition: none;
|
|
4930
4953
|
}
|
|
4931
|
-
.condo-checkbox-wrapper .condo-checkbox-
|
|
4932
|
-
|
|
4933
|
-
}
|
|
4934
|
-
.condo-checkbox-wrapper .condo-checkbox-disabled > .condo-checkbox-inner {
|
|
4935
|
-
background-color: #f2f4f6;
|
|
4936
|
-
}
|
|
4937
|
-
.condo-checkbox-wrapper .condo-checkbox-disabled.condo-checkbox-checked > .condo-checkbox-inner::before {
|
|
4938
|
-
background: #f2f4f6;
|
|
4939
|
-
}
|
|
4940
|
-
.condo-checkbox-wrapper .condo-checkbox-disabled.condo-checkbox-checked > .condo-checkbox-inner::after {
|
|
4941
|
-
border-color: #d0d3e5;
|
|
4942
|
-
border-image-source: none;
|
|
4943
|
-
}
|
|
4944
|
-
.condo-checkbox-wrapper .condo-checkbox-input:focus + .condo-checkbox-inner {
|
|
4945
|
-
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
4946
|
-
border-color: transparent;
|
|
4947
|
-
}
|
|
4948
|
-
.condo-checkbox-wrapper .condo-checkbox-input:focus + .condo-checkbox-inner::before {
|
|
4949
|
-
position: absolute;
|
|
4950
|
-
box-sizing: border-box;
|
|
4951
|
-
width: 100%;
|
|
4952
|
-
height: 100%;
|
|
4953
|
-
background: #fff border-box;
|
|
4954
|
-
border-radius: 3px;
|
|
4955
|
-
content: "";
|
|
4956
|
-
}
|
|
4957
|
-
.condo-checkbox-wrapper .condo-checkbox-indeterminate.condo-checkbox-disabled > .condo-checkbox-inner::after {
|
|
4958
|
-
background: #d0d3e5;
|
|
4954
|
+
.condo-checkbox-wrapper-disabled .condo-checkbox:not(.condo-checkbox-indeterminate):not(.condo-checkbox-checked) > .condo-checkbox-inner {
|
|
4955
|
+
background: transparent;
|
|
4959
4956
|
}
|
|
4960
|
-
.condo-checkbox-wrapper .condo-checkbox-
|
|
4957
|
+
.condo-checkbox-wrapper .condo-checkbox-input.focus-visible + .condo-checkbox-inner::before {
|
|
4961
4958
|
position: absolute;
|
|
4962
|
-
|
|
4963
|
-
|
|
4964
|
-
|
|
4965
|
-
|
|
4966
|
-
|
|
4959
|
+
top: -5px;
|
|
4960
|
+
right: -5px;
|
|
4961
|
+
bottom: -5px;
|
|
4962
|
+
left: -5px;
|
|
4963
|
+
display: block;
|
|
4964
|
+
border-radius: inherit;
|
|
4967
4965
|
content: "";
|
|
4966
|
+
border-radius: 8px;
|
|
4968
4967
|
}
|
|
4969
|
-
.condo-checkbox-wrapper .condo-checkbox::
|
|
4968
|
+
.condo-checkbox-wrapper .condo-checkbox-input:focus-visible + .condo-checkbox-inner::before {
|
|
4970
4969
|
position: absolute;
|
|
4971
|
-
top: -
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
4976
|
-
border-radius:
|
|
4977
|
-
visibility: visible;
|
|
4970
|
+
top: -5px;
|
|
4971
|
+
right: -5px;
|
|
4972
|
+
bottom: -5px;
|
|
4973
|
+
left: -5px;
|
|
4974
|
+
display: block;
|
|
4975
|
+
border-radius: inherit;
|
|
4978
4976
|
content: "";
|
|
4977
|
+
border-radius: 8px;
|
|
4979
4978
|
}
|
|
4980
|
-
.condo-checkbox-wrapper:hover > .condo-checkbox > .condo-checkbox-inner {
|
|
4979
|
+
.condo-checkbox-wrapper:hover:not(.condo-checkbox-wrapper-disabled) > .condo-checkbox > .condo-checkbox-inner {
|
|
4981
4980
|
border-color: #707695;
|
|
4982
4981
|
}
|
|
4983
|
-
.condo-checkbox-wrapper:hover > .condo-checkbox-checked > .condo-checkbox-inner::before {
|
|
4984
|
-
border-radius: 3px;
|
|
4985
|
-
}
|
|
4986
|
-
.condo-checkbox-wrapper .condo-checkbox-indeterminate > .condo-checkbox-input:focus + .condo-checkbox-inner::before {
|
|
4987
|
-
position: absolute;
|
|
4988
|
-
box-sizing: border-box;
|
|
4989
|
-
width: 100%;
|
|
4990
|
-
height: 100%;
|
|
4991
|
-
background: linear-gradient(90deg, #e2ffeb 0%, #e7f4ff 100%) border-box;
|
|
4992
|
-
border-radius: 3px;
|
|
4993
|
-
content: "";
|
|
4994
|
-
}
|
|
4995
|
-
.condo-checkbox-wrapper:hover > .condo-checkbox-checked > .condo-checkbox-inner {
|
|
4996
|
-
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
4997
|
-
border-color: transparent;
|
|
4998
|
-
}
|
|
4999
|
-
.condo-checkbox-wrapper:hover > .condo-checkbox-disabled > .condo-checkbox-inner {
|
|
5000
|
-
background: #f2f4f6 border-box;
|
|
5001
|
-
border-color: transparent;
|
|
5002
|
-
}
|
|
5003
|
-
.condo-checkbox-wrapper .condo-checkbox-checked > .condo-checkbox-input:focus + .condo-checkbox-inner {
|
|
5004
|
-
background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
|
|
5005
|
-
border-color: transparent;
|
|
5006
|
-
}
|
|
5007
|
-
.condo-checkbox-wrapper .condo-checkbox-checked > .condo-checkbox-input:focus + .condo-checkbox-inner::before {
|
|
5008
|
-
position: absolute;
|
|
5009
|
-
box-sizing: border-box;
|
|
5010
|
-
width: 100%;
|
|
5011
|
-
height: 100%;
|
|
5012
|
-
background: linear-gradient(90deg, #e2ffeb 0%, #e7f4ff 100%) border-box;
|
|
5013
|
-
border-radius: 3px;
|
|
5014
|
-
content: "";
|
|
5015
|
-
}
|
|
5016
|
-
.condo-checkbox-wrapper:hover > .condo-checkbox::after {
|
|
5017
|
-
visibility: visible;
|
|
5018
|
-
}
|
|
5019
4982
|
|
|
5020
4983
|
.condo-control {
|
|
5021
4984
|
width: 40px !important;
|