rsuite 5.18.1 → 5.19.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/CHANGELOG.md +13 -0
- package/Picker/styles/index.less +5 -0
- package/cjs/Dropdown/Dropdown.js +1 -0
- package/cjs/Picker/PickerToggle.js +1 -1
- package/cjs/Sidenav/SidenavItem.js +8 -1
- package/cjs/Stack/Stack.d.ts +6 -2
- package/cjs/Stack/Stack.js +17 -7
- package/cjs/Stack/StackItem.d.ts +26 -0
- package/cjs/Stack/StackItem.js +53 -0
- package/dist/rsuite-rtl.css +4 -0
- package/dist/rsuite-rtl.min.css +1 -1
- package/dist/rsuite-rtl.min.css.map +1 -1
- package/dist/rsuite.css +4 -0
- package/dist/rsuite.js +530 -80
- package/dist/rsuite.js.map +1 -1
- package/dist/rsuite.min.css +1 -1
- package/dist/rsuite.min.css.map +1 -1
- package/dist/rsuite.min.js +1 -1
- package/dist/rsuite.min.js.map +1 -1
- package/esm/Dropdown/Dropdown.js +1 -0
- package/esm/Picker/PickerToggle.js +1 -1
- package/esm/Sidenav/SidenavItem.js +6 -1
- package/esm/Stack/Stack.d.ts +6 -2
- package/esm/Stack/Stack.js +15 -4
- package/esm/Stack/StackItem.d.ts +26 -0
- package/esm/Stack/StackItem.js +42 -0
- package/package.json +6 -6
package/dist/rsuite.css
CHANGED
|
@@ -11616,6 +11616,10 @@ textarea.rs-picker-search-input {
|
|
|
11616
11616
|
color: #575757;
|
|
11617
11617
|
color: var(--rs-text-primary);
|
|
11618
11618
|
}
|
|
11619
|
+
.rs-picker-toggle-label::after {
|
|
11620
|
+
content: ':';
|
|
11621
|
+
margin: 0 4px 0 2px;
|
|
11622
|
+
}
|
|
11619
11623
|
.rs-picker-toggle-value {
|
|
11620
11624
|
display: block;
|
|
11621
11625
|
overflow: hidden;
|