@open-condo/ui 2.17.0 → 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 Fri, 05 Apr 2024 13:04:18 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 Fri, 05 Apr 2024 13:04:18 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 {
@@ -4619,6 +4622,13 @@ a.condo-btn-secondary {
4619
4622
  .condo-card:active {
4620
4623
  box-shadow: none;
4621
4624
  }
4625
+ .condo-card .condo-card-link-content {
4626
+ display: inline-flex;
4627
+ flex-flow: row;
4628
+ gap: 8px;
4629
+ align-items: center;
4630
+ text-decoration: underline;
4631
+ }
4622
4632
 
4623
4633
  /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
4624
4634
  /* stylelint-disable no-duplicate-selectors */
@@ -4866,50 +4876,70 @@ a.condo-btn-secondary {
4866
4876
  }
4867
4877
  .condo-checkbox-wrapper .condo-checkbox {
4868
4878
  top: 0;
4869
- }
4870
- .condo-checkbox-wrapper .condo-checkbox-input {
4871
- margin: 0;
4879
+ border-color: #d0d3e5;
4880
+ transition-timing-function: ease-in;
4881
+ transition-duration: 0.15s;
4882
+ transition-property: border-color;
4872
4883
  }
4873
4884
  .condo-checkbox-wrapper .condo-checkbox-inner {
4874
4885
  box-sizing: content-box;
4875
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;
4876
4903
  }
4877
4904
  .condo-checkbox-wrapper .condo-checkbox-inner::after {
4878
4905
  transition: none;
4879
4906
  }
4880
- .condo-checkbox-wrapper .condo-checkbox-indeterminate > .condo-checkbox-inner::after {
4881
- width: 12px;
4882
- height: 4px;
4883
- background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
4884
- border-radius: 1px;
4907
+ .condo-checkbox-wrapper .condo-checkbox-checked::after {
4908
+ border: none;
4885
4909
  }
4886
- .condo-checkbox-wrapper .condo-checkbox-indeterminate > .condo-checkbox-inner::before {
4910
+ .condo-checkbox-wrapper .condo-checkbox::after {
4887
4911
  position: absolute;
4888
- box-sizing: border-box;
4889
- width: 100%;
4890
- height: 100%;
4891
- background: linear-gradient(90deg, #e2ffeb 0%, #e7f4ff 100%) border-box;
4892
- 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;
4893
4919
  content: "";
4894
4920
  }
4895
- .condo-checkbox-wrapper .condo-checkbox-checked::after {
4896
- border: none;
4921
+ .condo-checkbox-wrapper-disabled .condo-checkbox-inner {
4922
+ opacity: 0.5;
4897
4923
  }
4898
- .condo-checkbox-wrapper .condo-checkbox-checked > .condo-checkbox-inner {
4899
- box-sizing: content-box;
4900
- background: #d0d3e5 border-box;
4901
- border-color: transparent;
4924
+ .condo-checkbox-wrapper .condo-checkbox-input {
4925
+ margin: 0;
4902
4926
  }
4903
- .condo-checkbox-wrapper .condo-checkbox-checked > .condo-checkbox-inner::before {
4904
- position: absolute;
4905
- box-sizing: border-box;
4906
- width: 100%;
4907
- height: 100%;
4908
- background: linear-gradient(90deg, #e2ffeb 0%, #e7f4ff 100%) border-box;
4909
- border-radius: 3px;
4910
- content: "";
4927
+ .condo-checkbox-wrapper .condo-checkbox-input:focus + .condo-checkbox-inner {
4928
+ border-color: #d0d3e5;
4911
4929
  }
4912
- .condo-checkbox-wrapper .condo-checkbox-checked > .condo-checkbox-inner::after {
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;
4938
+ }
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 {
4913
4943
  top: 10px;
4914
4944
  left: 5px;
4915
4945
  box-sizing: content-box;
@@ -4921,94 +4951,34 @@ a.condo-btn-secondary {
4921
4951
  transform: rotate(48deg) scale(1) translate(-50%, -50%);
4922
4952
  transition: none;
4923
4953
  }
4924
- .condo-checkbox-wrapper .condo-checkbox-disabled > .condo-checkbox-inner {
4925
- border-color: #e1e5ed !important;
4926
- }
4927
- .condo-checkbox-wrapper .condo-checkbox-disabled > .condo-checkbox-inner {
4928
- background-color: #f2f4f6;
4929
- }
4930
- .condo-checkbox-wrapper .condo-checkbox-disabled.condo-checkbox-checked > .condo-checkbox-inner::before {
4931
- background: #f2f4f6;
4932
- }
4933
- .condo-checkbox-wrapper .condo-checkbox-disabled.condo-checkbox-checked > .condo-checkbox-inner::after {
4934
- border-color: #d0d3e5;
4935
- border-image-source: none;
4936
- }
4937
- .condo-checkbox-wrapper .condo-checkbox-input:focus + .condo-checkbox-inner {
4938
- background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
4939
- border-color: transparent;
4940
- }
4941
- .condo-checkbox-wrapper .condo-checkbox-input:focus + .condo-checkbox-inner::before {
4942
- position: absolute;
4943
- box-sizing: border-box;
4944
- width: 100%;
4945
- height: 100%;
4946
- background: #fff border-box;
4947
- border-radius: 3px;
4948
- content: "";
4949
- }
4950
- .condo-checkbox-wrapper .condo-checkbox-indeterminate.condo-checkbox-disabled > .condo-checkbox-inner::after {
4951
- background: #d0d3e5;
4954
+ .condo-checkbox-wrapper-disabled .condo-checkbox:not(.condo-checkbox-indeterminate):not(.condo-checkbox-checked) > .condo-checkbox-inner {
4955
+ background: transparent;
4952
4956
  }
4953
- .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 {
4954
4958
  position: absolute;
4955
- box-sizing: border-box;
4956
- width: 100%;
4957
- height: 100%;
4958
- background: #fff border-box;
4959
- border-radius: 3px;
4959
+ top: -5px;
4960
+ right: -5px;
4961
+ bottom: -5px;
4962
+ left: -5px;
4963
+ display: block;
4964
+ border-radius: inherit;
4960
4965
  content: "";
4966
+ border-radius: 8px;
4961
4967
  }
4962
- .condo-checkbox-wrapper .condo-checkbox::after {
4968
+ .condo-checkbox-wrapper .condo-checkbox-input:focus-visible + .condo-checkbox-inner::before {
4963
4969
  position: absolute;
4964
- top: -4px;
4965
- left: -4px;
4966
- width: 32px;
4967
- height: 32px;
4968
- background-color: transparent;
4969
- border-radius: 4px;
4970
- visibility: visible;
4970
+ top: -5px;
4971
+ right: -5px;
4972
+ bottom: -5px;
4973
+ left: -5px;
4974
+ display: block;
4975
+ border-radius: inherit;
4971
4976
  content: "";
4977
+ border-radius: 8px;
4972
4978
  }
4973
- .condo-checkbox-wrapper:hover > .condo-checkbox > .condo-checkbox-inner {
4979
+ .condo-checkbox-wrapper:hover:not(.condo-checkbox-wrapper-disabled) > .condo-checkbox > .condo-checkbox-inner {
4974
4980
  border-color: #707695;
4975
4981
  }
4976
- .condo-checkbox-wrapper:hover > .condo-checkbox-checked > .condo-checkbox-inner::before {
4977
- border-radius: 3px;
4978
- }
4979
- .condo-checkbox-wrapper .condo-checkbox-indeterminate > .condo-checkbox-input:focus + .condo-checkbox-inner::before {
4980
- position: absolute;
4981
- box-sizing: border-box;
4982
- width: 100%;
4983
- height: 100%;
4984
- background: linear-gradient(90deg, #e2ffeb 0%, #e7f4ff 100%) border-box;
4985
- border-radius: 3px;
4986
- content: "";
4987
- }
4988
- .condo-checkbox-wrapper:hover > .condo-checkbox-checked > .condo-checkbox-inner {
4989
- background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
4990
- border-color: transparent;
4991
- }
4992
- .condo-checkbox-wrapper:hover > .condo-checkbox-disabled > .condo-checkbox-inner {
4993
- background: #f2f4f6 border-box;
4994
- border-color: transparent;
4995
- }
4996
- .condo-checkbox-wrapper .condo-checkbox-checked > .condo-checkbox-input:focus + .condo-checkbox-inner {
4997
- background: linear-gradient(90deg, #26c756 0%, #4ba2e4 100%) border-box;
4998
- border-color: transparent;
4999
- }
5000
- .condo-checkbox-wrapper .condo-checkbox-checked > .condo-checkbox-input:focus + .condo-checkbox-inner::before {
5001
- position: absolute;
5002
- box-sizing: border-box;
5003
- width: 100%;
5004
- height: 100%;
5005
- background: linear-gradient(90deg, #e2ffeb 0%, #e7f4ff 100%) border-box;
5006
- border-radius: 3px;
5007
- content: "";
5008
- }
5009
- .condo-checkbox-wrapper:hover > .condo-checkbox::after {
5010
- visibility: visible;
5011
- }
5012
4982
 
5013
4983
  .condo-control {
5014
4984
  width: 40px !important;