rsuite 6.0.0-canary-2025031415 → 6.0.0-canary-20250315

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.
@@ -10303,7 +10303,7 @@ textarea.rs-input {
10303
10303
  transition: opacity 0.1s linear, transform 0.1s ease-out;
10304
10304
  }
10305
10305
  .rs-popover.rs-anim-in {
10306
- opacity: 1;
10306
+ --rs-popover-opacity: 1;
10307
10307
  transition: opacity 0.15s linear, transform 0.15s ease-in;
10308
10308
  }
10309
10309
  .rs-theme-high-contrast .rs-popover {
@@ -14930,91 +14930,53 @@ kbd.rs-text {
14930
14930
  :where(.rs-box)[style*='--rs-box-shadow'] {
14931
14931
  box-shadow: var(--rs-box-shadow);
14932
14932
  }
14933
- :where(.rs-box-visible-xs) {
14934
- display: none !important;
14935
- }
14936
14933
  @media (max-width: 575px) {
14937
- :where(.rs-box-visible-xs) {
14938
- display: var(--rs-box-display, inherit) !important;
14939
- }
14940
- }
14941
- :where(.rs-box-visible-sm) {
14942
- display: none !important;
14943
- }
14944
- @media (max-width: 767px) {
14945
- :where(.rs-box-visible-sm) {
14946
- display: var(--rs-box-display, inherit) !important;
14947
- }
14948
- }
14949
- :where(.rs-box-visible-md) {
14950
- display: none !important;
14951
- }
14952
- @media (max-width: 991px) {
14953
- :where(.rs-box-visible-md) {
14954
- display: var(--rs-box-display, inherit) !important;
14955
- }
14956
- }
14957
- :where(.rs-box-visible-lg) {
14958
- display: none !important;
14959
- }
14960
- @media (max-width: 1199px) {
14961
- :where(.rs-box-visible-lg) {
14962
- display: var(--rs-box-display, inherit) !important;
14963
- }
14964
- }
14965
- :where(.rs-box-visible-xl) {
14966
- display: none !important;
14967
- }
14968
- @media (max-width: 1399px) {
14969
- :where(.rs-box-visible-xl) {
14970
- display: var(--rs-box-display, inherit) !important;
14934
+ :where(.rs-box-visible-from-xs) {
14935
+ display: none !important;
14971
14936
  }
14972
14937
  }
14973
- :where(.rs-box-visible-xxl) {
14974
- display: none !important;
14975
- display: var(--rs-box-display, inherit) !important;
14976
- }
14977
- :where(.rs-box-hidden-xs) {
14978
- display: var(--rs-box-display, inherit) !important;
14979
- }
14980
- @media (max-width: 575px) {
14981
- :where(.rs-box-hidden-xs) {
14938
+ @media (min-width: 576px) {
14939
+ :where(.rs-box-hidden-from-xs) {
14982
14940
  display: none !important;
14983
14941
  }
14984
14942
  }
14985
- :where(.rs-box-hidden-sm) {
14986
- display: var(--rs-box-display, inherit) !important;
14987
- }
14988
14943
  @media (max-width: 767px) {
14989
- :where(.rs-box-hidden-sm) {
14944
+ :where(.rs-box-visible-from-sm) {
14990
14945
  display: none !important;
14991
14946
  }
14992
14947
  }
14993
- :where(.rs-box-hidden-md) {
14994
- display: var(--rs-box-display, inherit) !important;
14948
+ @media (min-width: 768px) {
14949
+ :where(.rs-box-hidden-from-sm) {
14950
+ display: none !important;
14951
+ }
14995
14952
  }
14996
14953
  @media (max-width: 991px) {
14997
- :where(.rs-box-hidden-md) {
14954
+ :where(.rs-box-visible-from-md) {
14998
14955
  display: none !important;
14999
14956
  }
15000
14957
  }
15001
- :where(.rs-box-hidden-lg) {
15002
- display: var(--rs-box-display, inherit) !important;
14958
+ @media (min-width: 992px) {
14959
+ :where(.rs-box-hidden-from-md) {
14960
+ display: none !important;
14961
+ }
15003
14962
  }
15004
14963
  @media (max-width: 1199px) {
15005
- :where(.rs-box-hidden-lg) {
14964
+ :where(.rs-box-visible-from-lg) {
15006
14965
  display: none !important;
15007
14966
  }
15008
14967
  }
15009
- :where(.rs-box-hidden-xl) {
15010
- display: var(--rs-box-display, inherit) !important;
14968
+ @media (min-width: 1200px) {
14969
+ :where(.rs-box-hidden-from-lg) {
14970
+ display: none !important;
14971
+ }
15011
14972
  }
15012
14973
  @media (max-width: 1399px) {
15013
- :where(.rs-box-hidden-xl) {
14974
+ :where(.rs-box-visible-from-xl) {
15014
14975
  display: none !important;
15015
14976
  }
15016
14977
  }
15017
- :where(.rs-box-hidden-xxl) {
15018
- display: var(--rs-box-display, inherit) !important;
15019
- display: none !important;
14978
+ @media (min-width: 1400px) {
14979
+ :where(.rs-box-hidden-from-xl) {
14980
+ display: none !important;
14981
+ }
15020
14982
  }