rsuite 5.26.1 → 5.28.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.
Files changed (53) hide show
  1. package/Button/styles/index.less +12 -1
  2. package/CHANGELOG.md +21 -0
  3. package/cjs/Button/Button.d.ts +4 -0
  4. package/cjs/Button/Button.js +18 -9
  5. package/cjs/Message/Message.d.ts +4 -0
  6. package/cjs/Message/Message.js +8 -2
  7. package/cjs/Notification/Notification.d.ts +3 -0
  8. package/cjs/Notification/Notification.js +8 -2
  9. package/cjs/Picker/PickerToggleTrigger.js +1 -1
  10. package/cjs/Schema/Schema.d.ts +2 -1
  11. package/cjs/Schema/Schema.js +2 -1
  12. package/cjs/locales/hu_HU.d.ts +117 -0
  13. package/cjs/locales/hu_HU.js +89 -0
  14. package/cjs/locales/index.d.ts +1 -0
  15. package/cjs/locales/index.js +5 -1
  16. package/cjs/toaster/ToastContainer.d.ts +6 -1
  17. package/cjs/toaster/ToastContainer.js +12 -5
  18. package/cjs/toaster/ToastContext.d.ts +6 -0
  19. package/cjs/toaster/ToastContext.js +16 -0
  20. package/cjs/toaster/toaster.js +7 -5
  21. package/cjs/toaster/useToaster.js +1 -1
  22. package/dist/rsuite-rtl.css +38 -5
  23. package/dist/rsuite-rtl.min.css +1 -1
  24. package/dist/rsuite-rtl.min.css.map +1 -1
  25. package/dist/rsuite.css +38 -5
  26. package/dist/rsuite.js +21 -10
  27. package/dist/rsuite.js.map +1 -1
  28. package/dist/rsuite.min.css +1 -1
  29. package/dist/rsuite.min.css.map +1 -1
  30. package/dist/rsuite.min.js +1 -1
  31. package/dist/rsuite.min.js.map +1 -1
  32. package/esm/Button/Button.d.ts +4 -0
  33. package/esm/Button/Button.js +18 -9
  34. package/esm/Message/Message.d.ts +4 -0
  35. package/esm/Message/Message.js +8 -3
  36. package/esm/Notification/Notification.d.ts +3 -0
  37. package/esm/Notification/Notification.js +8 -3
  38. package/esm/Picker/PickerToggleTrigger.js +1 -1
  39. package/esm/Schema/Schema.d.ts +2 -1
  40. package/esm/Schema/Schema.js +3 -2
  41. package/esm/locales/hu_HU.d.ts +117 -0
  42. package/esm/locales/hu_HU.js +79 -0
  43. package/esm/locales/index.d.ts +1 -0
  44. package/esm/locales/index.js +1 -0
  45. package/esm/toaster/ToastContainer.d.ts +6 -1
  46. package/esm/toaster/ToastContainer.js +11 -5
  47. package/esm/toaster/ToastContext.d.ts +6 -0
  48. package/esm/toaster/ToastContext.js +6 -0
  49. package/esm/toaster/toaster.js +7 -5
  50. package/esm/toaster/useToaster.js +1 -1
  51. package/locales/hu_HU/package.json +7 -0
  52. package/package.json +2 -2
  53. package/styles/variables.less +3 -0
package/dist/rsuite.css CHANGED
@@ -1849,7 +1849,12 @@ tbody.rs-anim-collapse.rs-anim-in {
1849
1849
  margin: 0 4px;
1850
1850
  }
1851
1851
  .rs-btn {
1852
- display: inline-block;
1852
+ display: -webkit-inline-box;
1853
+ display: -ms-inline-flexbox;
1854
+ display: inline-flex;
1855
+ -webkit-box-align: center;
1856
+ -ms-flex-align: center;
1857
+ align-items: center;
1853
1858
  margin-bottom: 0;
1854
1859
  font-weight: normal;
1855
1860
  text-align: center;
@@ -1954,6 +1959,14 @@ tbody.rs-anim-collapse.rs-anim-in {
1954
1959
  /* stylelint-enable */
1955
1960
  }
1956
1961
  }
1962
+ .rs-btn-start-icon {
1963
+ line-height: 0;
1964
+ margin-right: 5px;
1965
+ }
1966
+ .rs-btn-end-icon {
1967
+ line-height: 0;
1968
+ margin-left: 5px;
1969
+ }
1957
1970
  .rs-btn-primary {
1958
1971
  color: #fff;
1959
1972
  color: var(--rs-btn-primary-text);
@@ -10408,7 +10421,12 @@ textarea.rs-picker-search-input {
10408
10421
  padding: 1px 7px;
10409
10422
  }
10410
10423
  .rs-pagination-btn {
10411
- display: inline-block;
10424
+ display: -webkit-inline-box;
10425
+ display: -ms-inline-flexbox;
10426
+ display: inline-flex;
10427
+ -webkit-box-align: center;
10428
+ -ms-flex-align: center;
10429
+ align-items: center;
10412
10430
  margin-bottom: 0;
10413
10431
  font-weight: normal;
10414
10432
  text-align: center;
@@ -10865,7 +10883,12 @@ textarea.rs-picker-search-input {
10865
10883
  box-shadow: var(--rs-state-focus-shadow);
10866
10884
  }
10867
10885
  .rs-picker-toggle {
10868
- display: inline-block;
10886
+ display: -webkit-inline-box;
10887
+ display: -ms-inline-flexbox;
10888
+ display: inline-flex;
10889
+ -webkit-box-align: center;
10890
+ -ms-flex-align: center;
10891
+ align-items: center;
10869
10892
  margin-bottom: 0;
10870
10893
  font-weight: normal;
10871
10894
  text-align: center;
@@ -12791,7 +12814,12 @@ textarea.rs-picker-menu .rs-picker-search-bar .rs-picker-search-bar-input {
12791
12814
  display: none;
12792
12815
  }
12793
12816
  .rs-radio-group-picker .rs-radio-checker > label {
12794
- display: inline-block;
12817
+ display: -webkit-inline-box;
12818
+ display: -ms-inline-flexbox;
12819
+ display: inline-flex;
12820
+ -webkit-box-align: center;
12821
+ -ms-flex-align: center;
12822
+ align-items: center;
12795
12823
  margin-bottom: 0;
12796
12824
  font-weight: normal;
12797
12825
  text-align: center;
@@ -15979,7 +16007,12 @@ textarea.rs-picker-menu .rs-picker-search-bar .rs-picker-search-bar-input {
15979
16007
  clear: both;
15980
16008
  }
15981
16009
  .rs-uploader-picture .rs-uploader-trigger-btn {
15982
- display: inline-block;
16010
+ display: -webkit-inline-box;
16011
+ display: -ms-inline-flexbox;
16012
+ display: inline-flex;
16013
+ -webkit-box-align: center;
16014
+ -ms-flex-align: center;
16015
+ align-items: center;
15983
16016
  margin-bottom: 0;
15984
16017
  font-weight: normal;
15985
16018
  text-align: center;