@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.
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 11 Apr 2024 14:02:37 GMT
3
+ * Generated on Thu, 02 May 2024 09:35:32 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Thu, 11 Apr 2024 14:02:37 GMT
3
+ // Generated on Thu, 02 May 2024 09:35:32 GMT
4
4
 
5
5
  @condo-global-spacing-4: 4px;
6
6
  @condo-global-spacing-8: 8px;
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
- .condo-checkbox-wrapper .condo-checkbox-input {
4878
- margin: 0;
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-indeterminate > .condo-checkbox-inner::after {
4888
- width: 12px;
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-indeterminate > .condo-checkbox-inner::before {
4910
+ .condo-checkbox-wrapper .condo-checkbox::after {
4894
4911
  position: absolute;
4895
- box-sizing: border-box;
4896
- width: 100%;
4897
- height: 100%;
4898
- background: linear-gradient(90deg, #e2ffeb 0%, #e7f4ff 100%) border-box;
4899
- border-radius: 3px;
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-checked::after {
4903
- border: none;
4921
+ .condo-checkbox-wrapper-disabled .condo-checkbox-inner {
4922
+ opacity: 0.5;
4904
4923
  }
4905
- .condo-checkbox-wrapper .condo-checkbox-checked > .condo-checkbox-inner {
4906
- box-sizing: content-box;
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-checked > .condo-checkbox-inner::before {
4911
- position: absolute;
4912
- box-sizing: border-box;
4913
- width: 100%;
4914
- height: 100%;
4915
- background: linear-gradient(90deg, #e2ffeb 0%, #e7f4ff 100%) border-box;
4916
- border-radius: 3px;
4917
- content: "";
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::after {
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-disabled > .condo-checkbox-inner {
4932
- border-color: #e1e5ed !important;
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-indeterminate.condo-checkbox-disabled > .condo-checkbox-inner::before {
4957
+ .condo-checkbox-wrapper .condo-checkbox-input.focus-visible + .condo-checkbox-inner::before {
4961
4958
  position: absolute;
4962
- box-sizing: border-box;
4963
- width: 100%;
4964
- height: 100%;
4965
- background: #fff border-box;
4966
- border-radius: 3px;
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::after {
4968
+ .condo-checkbox-wrapper .condo-checkbox-input:focus-visible + .condo-checkbox-inner::before {
4970
4969
  position: absolute;
4971
- top: -4px;
4972
- left: -4px;
4973
- width: 32px;
4974
- height: 32px;
4975
- background-color: transparent;
4976
- border-radius: 4px;
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;