rsuite 5.74.2 → 5.75.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 +16 -0
- package/Card/package.json +7 -0
- package/Card/styles/index.css +105 -0
- package/Card/styles/index.less +62 -0
- package/CardBody/package.json +7 -0
- package/CardFooter/package.json +7 -0
- package/CardGroup/package.json +7 -0
- package/CardGroup/styles/index.css +7 -0
- package/CardGroup/styles/index.less +8 -0
- package/CardHeader/package.json +7 -0
- package/List/styles/index.css +10 -12
- package/List/styles/index.less +12 -4
- package/Stat/package.json +7 -0
- package/Stat/styles/index.css +1749 -0
- package/Stat/styles/index.less +106 -0
- package/StatGroup/package.json +7 -0
- package/StatGroup/styles/index.css +7 -0
- package/StatGroup/styles/index.less +8 -0
- package/StatHelpText/package.json +7 -0
- package/StatLabel/package.json +7 -0
- package/StatTrend/package.json +7 -0
- package/StatValue/package.json +7 -0
- package/StatValueUnit/package.json +7 -0
- package/cjs/Affix/Affix.js +2 -2
- package/cjs/Animation/Transition.js +7 -7
- package/cjs/AutoComplete/AutoComplete.js +7 -7
- package/cjs/Avatar/useImage.js +1 -1
- package/cjs/Breadcrumb/Breadcrumb.js +1 -1
- package/cjs/Calendar/Calendar.js +3 -3
- package/cjs/Calendar/CalendarContainer.js +1 -1
- package/cjs/Calendar/Grid/GridRow.js +3 -3
- package/cjs/Calendar/MonthDropdown/MonthDropdownItem.js +1 -1
- package/cjs/Calendar/TimeDropdown/TimeDropdown.js +3 -3
- package/cjs/Calendar/hooks/useCalendarState.js +6 -6
- package/cjs/Card/Card.d.ts +33 -0
- package/cjs/Card/Card.js +63 -0
- package/cjs/Card/CardBody.d.ts +4 -0
- package/cjs/Card/CardBody.js +11 -0
- package/cjs/Card/CardFooter.d.ts +4 -0
- package/cjs/Card/CardFooter.js +11 -0
- package/cjs/Card/CardHeader.d.ts +4 -0
- package/cjs/Card/CardHeader.js +11 -0
- package/cjs/Card/index.d.ts +6 -0
- package/cjs/Card/index.js +8 -0
- package/cjs/CardGroup/CardGroup.d.ts +13 -0
- package/cjs/CardGroup/CardGroup.js +47 -0
- package/cjs/CardGroup/index.d.ts +3 -0
- package/cjs/CardGroup/index.js +8 -0
- package/cjs/Carousel/Carousel.js +4 -4
- package/cjs/CascadeTree/CascadeTree.js +1 -1
- package/cjs/CascadeTree/TreeView.js +1 -1
- package/cjs/CascadeTree/hooks/useSearch.js +4 -4
- package/cjs/CascadeTree/hooks/useSelect.js +2 -2
- package/cjs/Cascader/Cascader.js +13 -13
- package/cjs/Cascader/useActive.js +4 -4
- package/cjs/CheckPicker/CheckPicker.js +5 -5
- package/cjs/CheckTree/CheckTree.js +1 -1
- package/cjs/CheckTree/CheckTreeNode.js +3 -3
- package/cjs/CheckTree/CheckTreeView.js +7 -7
- package/cjs/CheckTree/utils.js +3 -3
- package/cjs/CheckTreePicker/CheckTreePicker.js +2 -2
- package/cjs/CheckTreePicker/hooks/useFocusState.js +3 -3
- package/cjs/Checkbox/Checkbox.js +2 -2
- package/cjs/CheckboxGroup/CheckboxGroup.js +1 -1
- package/cjs/CustomProvider/FormattedNumber.d.ts +7 -0
- package/cjs/CustomProvider/FormattedNumber.js +19 -0
- package/cjs/CustomProvider/index.d.ts +1 -0
- package/cjs/CustomProvider/index.js +3 -1
- package/cjs/CustomProvider/types.d.ts +8 -0
- package/cjs/CustomProvider/useCustom.d.ts +1 -0
- package/cjs/CustomProvider/useCustom.js +3 -1
- package/cjs/DateInput/DateField.js +2 -2
- package/cjs/DateInput/DateInput.js +2 -2
- package/cjs/DateInput/hooks/useDateInputState.js +2 -2
- package/cjs/DateInput/hooks/useIsFocused.js +2 -2
- package/cjs/DateInput/hooks/useKeyboardInputEvent.js +5 -5
- package/cjs/DatePicker/DatePicker.js +14 -14
- package/cjs/DatePicker/PredefinedRanges.js +1 -1
- package/cjs/DatePicker/hooks/useFocus.js +1 -1
- package/cjs/DatePicker/hooks/useMonthView.js +1 -1
- package/cjs/DateRangeInput/DateRangeInput.js +4 -4
- package/cjs/DateRangePicker/DateRangePicker.js +8 -8
- package/cjs/DateRangePicker/hooks/useCalendarHandlers.js +5 -5
- package/cjs/Dropdown/Dropdown.js +3 -3
- package/cjs/Dropdown/DropdownItem.js +2 -2
- package/cjs/Dropdown/DropdownMenu.js +1 -1
- package/cjs/Form/Form.js +8 -8
- package/cjs/Form/hooks/useFormValidate.js +19 -19
- package/cjs/FormControl/FormControl.js +5 -5
- package/cjs/FormControl/hooks/useField.js +1 -1
- package/cjs/FormControl/hooks/useRegisterModel.js +2 -2
- package/cjs/InlineEdit/renderChildren.js +1 -1
- package/cjs/InlineEdit/useEditState.js +7 -7
- package/cjs/InlineEdit/useFocusEvent.js +5 -5
- package/cjs/Input/Input.js +3 -3
- package/cjs/InputGroup/InputGroup.js +2 -2
- package/cjs/InputNumber/InputNumber.js +3 -3
- package/cjs/InputPicker/InputAutosize.js +1 -1
- package/cjs/InputPicker/InputPicker.js +13 -13
- package/cjs/InputPicker/InputSearch.js +1 -1
- package/cjs/InputPicker/hooks/useData.js +1 -1
- package/cjs/InputPicker/hooks/useInput.js +2 -2
- package/cjs/List/List.d.ts +19 -1
- package/cjs/List/List.js +11 -7
- package/cjs/List/ListItem.d.ts +1 -1
- package/cjs/List/helper/useSortHelper.js +10 -10
- package/cjs/MaskedInput/TextMask.js +3 -3
- package/cjs/Message/Message.js +1 -1
- package/cjs/Modal/Modal.js +6 -6
- package/cjs/Modal/utils.js +2 -2
- package/cjs/MultiCascadeTree/SearchView.js +1 -1
- package/cjs/MultiCascadeTree/TreeView.js +1 -1
- package/cjs/MultiCascadeTree/hooks/useCascadeValue.js +5 -5
- package/cjs/MultiCascadeTree/hooks/useSearch.js +1 -1
- package/cjs/MultiCascadeTree/hooks/useSelect.js +1 -1
- package/cjs/MultiCascadeTree/utils.js +9 -9
- package/cjs/MultiCascader/MultiCascader.js +5 -5
- package/cjs/Nav/Nav.js +2 -2
- package/cjs/Nav/NavDropdown.js +3 -3
- package/cjs/Nav/NavDropdownItem.js +2 -2
- package/cjs/Nav/NavDropdownMenu.js +1 -1
- package/cjs/Nav/NavItem.js +3 -3
- package/cjs/Navbar/NavbarDropdown.js +3 -3
- package/cjs/Navbar/NavbarDropdownItem.js +4 -4
- package/cjs/Navbar/NavbarItem.js +3 -3
- package/cjs/Notification/Notification.js +1 -1
- package/cjs/Pagination/PaginationButton.js +1 -1
- package/cjs/Pagination/PaginationGroup.js +3 -3
- package/cjs/Panel/Panel.js +2 -2
- package/cjs/PanelGroup/PanelGroup.js +1 -1
- package/cjs/Placeholder/PlaceholderGrid.js +2 -2
- package/cjs/Placeholder/PlaceholderParagraph.js +1 -1
- package/cjs/Radio/Radio.js +2 -2
- package/cjs/RadioGroup/RadioGroup.js +1 -1
- package/cjs/RadioTile/RadioTile.js +2 -2
- package/cjs/RadioTileGroup/RadioTileGroup.js +1 -1
- package/cjs/RangeSlider/RangeSlider.js +5 -5
- package/cjs/Rate/Character.js +2 -2
- package/cjs/Rate/Rate.js +3 -3
- package/cjs/SafeAnchor/SafeAnchor.js +1 -1
- package/cjs/SelectPicker/SelectPicker.js +7 -7
- package/cjs/Sidebar/Sidebar.js +1 -1
- package/cjs/Sidenav/ExpandedSidenavDropdown.js +4 -4
- package/cjs/Sidenav/ExpandedSidenavDropdownItem.js +3 -3
- package/cjs/Sidenav/ExpandedSidenavDropdownMenu.js +2 -2
- package/cjs/Sidenav/Sidenav.js +1 -1
- package/cjs/Sidenav/SidenavDropdown.js +4 -4
- package/cjs/Sidenav/SidenavDropdownItem.js +2 -2
- package/cjs/Sidenav/SidenavDropdownMenu.js +1 -1
- package/cjs/Sidenav/SidenavItem.js +4 -4
- package/cjs/Sidenav/SidenavToggle.js +1 -1
- package/cjs/Slider/Graduated.js +1 -1
- package/cjs/Slider/Slider.js +3 -3
- package/cjs/Slider/useDrag.js +6 -6
- package/cjs/Stack/HStack.d.ts +6 -3
- package/cjs/Stack/HStack.js +1 -0
- package/cjs/Stack/Stack.d.ts +6 -2
- package/cjs/Stack/Stack.js +1 -1
- package/cjs/Stack/VStack.d.ts +6 -3
- package/cjs/Stack/VStack.js +1 -0
- package/cjs/Stat/Stat.d.ts +26 -0
- package/cjs/Stat/Stat.js +57 -0
- package/cjs/Stat/StatHelpText.d.ts +4 -0
- package/cjs/Stat/StatHelpText.js +11 -0
- package/cjs/Stat/StatLabel.d.ts +14 -0
- package/cjs/Stat/StatLabel.js +53 -0
- package/cjs/Stat/StatTrend.d.ts +7 -0
- package/cjs/Stat/StatTrend.js +68 -0
- package/cjs/Stat/StatValue.d.ts +7 -0
- package/cjs/Stat/StatValue.js +41 -0
- package/cjs/Stat/StatValueUnit.d.ts +4 -0
- package/cjs/Stat/StatValueUnit.js +11 -0
- package/cjs/Stat/index.d.ts +3 -0
- package/cjs/Stat/index.js +8 -0
- package/cjs/StatGroup/StatGroup.d.ts +13 -0
- package/cjs/StatGroup/StatGroup.js +47 -0
- package/cjs/StatGroup/index.d.ts +3 -0
- package/cjs/StatGroup/index.js +8 -0
- package/cjs/Tabs/Tabs.js +1 -1
- package/cjs/Timeline/Timeline.js +1 -1
- package/cjs/Toggle/Toggle.js +1 -1
- package/cjs/Tree/Tree.js +1 -1
- package/cjs/Tree/TreeNode.js +9 -9
- package/cjs/Tree/TreeView.js +7 -7
- package/cjs/Tree/hooks/useExpandTree.js +1 -1
- package/cjs/Tree/hooks/useFlattenTree.js +1 -1
- package/cjs/Tree/hooks/useFocusTree.js +6 -6
- package/cjs/Tree/hooks/useTreeDrag.js +17 -17
- package/cjs/Tree/hooks/useTreeSearch.js +1 -1
- package/cjs/Tree/utils/flattenTree.js +6 -6
- package/cjs/Tree/utils/focusableTree.js +6 -6
- package/cjs/Tree/utils/getNodeParentKeys.js +4 -4
- package/cjs/Tree/utils/treeKeyboardInteractions.js +2 -2
- package/cjs/TreePicker/TreePicker.js +5 -5
- package/cjs/TreePicker/hooks/useFocusState.js +4 -4
- package/cjs/Uploader/UploadFileItem.js +5 -5
- package/cjs/Uploader/UploadTrigger.js +11 -11
- package/cjs/Uploader/Uploader.js +16 -16
- package/cjs/Uploader/utils/ajaxUpload.js +5 -5
- package/cjs/index.d.ts +8 -0
- package/cjs/index.js +10 -2
- package/cjs/internals/Disclosure/Disclosure.js +3 -3
- package/cjs/internals/Disclosure/DisclosureButton.js +2 -2
- package/cjs/internals/Menu/Menu.js +3 -3
- package/cjs/internals/Menu/MenuItem.js +1 -1
- package/cjs/internals/Menu/Menubar.js +2 -2
- package/cjs/internals/Overlay/Modal.js +7 -7
- package/cjs/internals/Overlay/Overlay.js +1 -1
- package/cjs/internals/Overlay/OverlayTrigger.js +3 -3
- package/cjs/internals/Overlay/Position.js +5 -5
- package/cjs/internals/Picker/ListCheckItem.js +3 -3
- package/cjs/internals/Picker/ListItem.js +1 -1
- package/cjs/internals/Picker/Listbox.js +4 -4
- package/cjs/internals/Picker/PickerToggle.js +2 -2
- package/cjs/internals/Picker/SelectedElement.js +1 -1
- package/cjs/internals/Picker/hooks/useFocusItemValue.js +2 -2
- package/cjs/internals/Picker/hooks/usePickerRef.js +4 -4
- package/cjs/internals/Picker/hooks/useSearch.js +1 -1
- package/cjs/internals/Picker/hooks/useToggleKeyDownEvent.js +9 -9
- package/cjs/internals/Picker/utils.js +8 -8
- package/cjs/internals/Ripple/Ripple.js +2 -2
- package/cjs/internals/ScrollView/hooks/useScrollState.js +1 -1
- package/cjs/internals/Tree/utils/filterNodesOfTree.js +3 -3
- package/cjs/internals/Tree/utils/findNodeOfTree.js +3 -3
- package/cjs/internals/Tree/utils/getParentMap.js +3 -3
- package/cjs/internals/Windowing/AutoSizer.js +1 -1
- package/cjs/internals/Windowing/List.js +4 -4
- package/cjs/internals/hooks/useClickOutside.js +1 -1
- package/cjs/internals/hooks/useElementResize.js +1 -1
- package/cjs/internals/hooks/useEventListener.js +1 -1
- package/cjs/internals/hooks/useFocus.js +2 -2
- package/cjs/internals/hooks/useMount.js +1 -1
- package/cjs/internals/hooks/useRootClose.js +4 -4
- package/cjs/internals/hooks/useTimeout.js +1 -1
- package/cjs/internals/utils/stringifyReactNode.js +5 -5
- package/cjs/toaster/ToastContainer.d.ts +1 -0
- package/cjs/toaster/ToastContainer.js +19 -14
- package/cjs/toaster/hooks/useDelayedClosure.js +2 -2
- package/cjs/toaster/toaster.js +7 -7
- package/cjs/useToaster/useToaster.js +1 -1
- package/dist/rsuite-no-reset-rtl.css +240 -36
- package/dist/rsuite-no-reset-rtl.min.css +1 -1
- package/dist/rsuite-no-reset-rtl.min.css.map +1 -1
- package/dist/rsuite-no-reset.css +240 -36
- package/dist/rsuite-no-reset.min.css +1 -1
- package/dist/rsuite-no-reset.min.css.map +1 -1
- package/dist/rsuite-rtl.css +240 -36
- package/dist/rsuite-rtl.min.css +1 -1
- package/dist/rsuite-rtl.min.css.map +1 -1
- package/dist/rsuite.css +240 -36
- package/dist/rsuite.js +384 -175
- 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/Affix/Affix.js +2 -2
- package/esm/Animation/Transition.js +7 -7
- package/esm/AutoComplete/AutoComplete.js +7 -7
- package/esm/Avatar/useImage.js +1 -1
- package/esm/Breadcrumb/Breadcrumb.js +1 -1
- package/esm/Calendar/Calendar.js +3 -3
- package/esm/Calendar/CalendarContainer.js +1 -1
- package/esm/Calendar/Grid/GridRow.js +3 -3
- package/esm/Calendar/MonthDropdown/MonthDropdownItem.js +1 -1
- package/esm/Calendar/TimeDropdown/TimeDropdown.js +3 -3
- package/esm/Calendar/hooks/useCalendarState.js +6 -6
- package/esm/Card/Card.d.ts +33 -0
- package/esm/Card/Card.js +58 -0
- package/esm/Card/CardBody.d.ts +4 -0
- package/esm/Card/CardBody.js +7 -0
- package/esm/Card/CardFooter.d.ts +4 -0
- package/esm/Card/CardFooter.js +7 -0
- package/esm/Card/CardHeader.d.ts +4 -0
- package/esm/Card/CardHeader.js +7 -0
- package/esm/Card/index.d.ts +6 -0
- package/esm/Card/index.js +3 -0
- package/esm/CardGroup/CardGroup.d.ts +13 -0
- package/esm/CardGroup/CardGroup.js +42 -0
- package/esm/CardGroup/index.d.ts +3 -0
- package/esm/CardGroup/index.js +3 -0
- package/esm/Carousel/Carousel.js +4 -4
- package/esm/CascadeTree/CascadeTree.js +1 -1
- package/esm/CascadeTree/TreeView.js +1 -1
- package/esm/CascadeTree/hooks/useSearch.js +4 -4
- package/esm/CascadeTree/hooks/useSelect.js +2 -2
- package/esm/Cascader/Cascader.js +13 -13
- package/esm/Cascader/useActive.js +4 -4
- package/esm/CheckPicker/CheckPicker.js +5 -5
- package/esm/CheckTree/CheckTree.js +1 -1
- package/esm/CheckTree/CheckTreeNode.js +3 -3
- package/esm/CheckTree/CheckTreeView.js +7 -7
- package/esm/CheckTree/utils.js +3 -3
- package/esm/CheckTreePicker/CheckTreePicker.js +2 -2
- package/esm/CheckTreePicker/hooks/useFocusState.js +3 -3
- package/esm/Checkbox/Checkbox.js +2 -2
- package/esm/CheckboxGroup/CheckboxGroup.js +1 -1
- package/esm/CustomProvider/FormattedNumber.d.ts +7 -0
- package/esm/CustomProvider/FormattedNumber.js +13 -0
- package/esm/CustomProvider/index.d.ts +1 -0
- package/esm/CustomProvider/index.js +1 -0
- package/esm/CustomProvider/types.d.ts +8 -0
- package/esm/CustomProvider/useCustom.d.ts +1 -0
- package/esm/CustomProvider/useCustom.js +3 -1
- package/esm/DateInput/DateField.js +2 -2
- package/esm/DateInput/DateInput.js +2 -2
- package/esm/DateInput/hooks/useDateInputState.js +2 -2
- package/esm/DateInput/hooks/useIsFocused.js +2 -2
- package/esm/DateInput/hooks/useKeyboardInputEvent.js +5 -5
- package/esm/DatePicker/DatePicker.js +14 -14
- package/esm/DatePicker/PredefinedRanges.js +1 -1
- package/esm/DatePicker/hooks/useFocus.js +1 -1
- package/esm/DatePicker/hooks/useMonthView.js +1 -1
- package/esm/DateRangeInput/DateRangeInput.js +4 -4
- package/esm/DateRangePicker/DateRangePicker.js +8 -8
- package/esm/DateRangePicker/hooks/useCalendarHandlers.js +5 -5
- package/esm/Dropdown/Dropdown.js +3 -3
- package/esm/Dropdown/DropdownItem.js +2 -2
- package/esm/Dropdown/DropdownMenu.js +1 -1
- package/esm/Form/Form.js +8 -8
- package/esm/Form/hooks/useFormValidate.js +19 -19
- package/esm/FormControl/FormControl.js +5 -5
- package/esm/FormControl/hooks/useField.js +1 -1
- package/esm/FormControl/hooks/useRegisterModel.js +2 -2
- package/esm/InlineEdit/renderChildren.js +1 -1
- package/esm/InlineEdit/useEditState.js +7 -7
- package/esm/InlineEdit/useFocusEvent.js +5 -5
- package/esm/Input/Input.js +3 -3
- package/esm/InputGroup/InputGroup.js +2 -2
- package/esm/InputNumber/InputNumber.js +3 -3
- package/esm/InputPicker/InputAutosize.js +1 -1
- package/esm/InputPicker/InputPicker.js +13 -13
- package/esm/InputPicker/InputSearch.js +1 -1
- package/esm/InputPicker/hooks/useData.js +1 -1
- package/esm/InputPicker/hooks/useInput.js +2 -2
- package/esm/List/List.d.ts +19 -1
- package/esm/List/List.js +11 -7
- package/esm/List/ListItem.d.ts +1 -1
- package/esm/List/helper/useSortHelper.js +10 -10
- package/esm/MaskedInput/TextMask.js +3 -3
- package/esm/Message/Message.js +1 -1
- package/esm/Modal/Modal.js +6 -6
- package/esm/Modal/utils.js +2 -2
- package/esm/MultiCascadeTree/SearchView.js +1 -1
- package/esm/MultiCascadeTree/TreeView.js +1 -1
- package/esm/MultiCascadeTree/hooks/useCascadeValue.js +5 -5
- package/esm/MultiCascadeTree/hooks/useSearch.js +1 -1
- package/esm/MultiCascadeTree/hooks/useSelect.js +1 -1
- package/esm/MultiCascadeTree/utils.js +13 -10
- package/esm/MultiCascader/MultiCascader.js +5 -5
- package/esm/Nav/Nav.js +2 -2
- package/esm/Nav/NavDropdown.js +3 -3
- package/esm/Nav/NavDropdownItem.js +2 -2
- package/esm/Nav/NavDropdownMenu.js +1 -1
- package/esm/Nav/NavItem.js +3 -3
- package/esm/Navbar/NavbarDropdown.js +3 -3
- package/esm/Navbar/NavbarDropdownItem.js +4 -4
- package/esm/Navbar/NavbarItem.js +3 -3
- package/esm/Notification/Notification.js +1 -1
- package/esm/Pagination/PaginationButton.js +1 -1
- package/esm/Pagination/PaginationGroup.js +3 -3
- package/esm/Panel/Panel.js +2 -2
- package/esm/PanelGroup/PanelGroup.js +1 -1
- package/esm/Placeholder/PlaceholderGrid.js +2 -2
- package/esm/Placeholder/PlaceholderParagraph.js +1 -1
- package/esm/Radio/Radio.js +2 -2
- package/esm/RadioGroup/RadioGroup.js +1 -1
- package/esm/RadioTile/RadioTile.js +2 -2
- package/esm/RadioTileGroup/RadioTileGroup.js +1 -1
- package/esm/RangeSlider/RangeSlider.js +5 -5
- package/esm/Rate/Character.js +2 -2
- package/esm/Rate/Rate.js +3 -3
- package/esm/SafeAnchor/SafeAnchor.js +1 -1
- package/esm/SelectPicker/SelectPicker.js +7 -7
- package/esm/Sidebar/Sidebar.js +1 -1
- package/esm/Sidenav/ExpandedSidenavDropdown.js +4 -4
- package/esm/Sidenav/ExpandedSidenavDropdownItem.js +3 -3
- package/esm/Sidenav/ExpandedSidenavDropdownMenu.js +2 -2
- package/esm/Sidenav/Sidenav.js +1 -1
- package/esm/Sidenav/SidenavDropdown.js +4 -4
- package/esm/Sidenav/SidenavDropdownItem.js +2 -2
- package/esm/Sidenav/SidenavDropdownMenu.js +1 -1
- package/esm/Sidenav/SidenavItem.js +4 -4
- package/esm/Sidenav/SidenavToggle.js +1 -1
- package/esm/Slider/Graduated.js +1 -1
- package/esm/Slider/Slider.js +3 -3
- package/esm/Slider/useDrag.js +6 -6
- package/esm/Stack/HStack.d.ts +6 -3
- package/esm/Stack/HStack.js +1 -0
- package/esm/Stack/Stack.d.ts +6 -2
- package/esm/Stack/Stack.js +1 -1
- package/esm/Stack/VStack.d.ts +6 -3
- package/esm/Stack/VStack.js +1 -0
- package/esm/Stat/Stat.d.ts +26 -0
- package/esm/Stat/Stat.js +52 -0
- package/esm/Stat/StatHelpText.d.ts +4 -0
- package/esm/Stat/StatHelpText.js +7 -0
- package/esm/Stat/StatLabel.d.ts +14 -0
- package/esm/Stat/StatLabel.js +48 -0
- package/esm/Stat/StatTrend.d.ts +7 -0
- package/esm/Stat/StatTrend.js +63 -0
- package/esm/Stat/StatValue.d.ts +7 -0
- package/esm/Stat/StatValue.js +36 -0
- package/esm/Stat/StatValueUnit.d.ts +4 -0
- package/esm/Stat/StatValueUnit.js +7 -0
- package/esm/Stat/index.d.ts +3 -0
- package/esm/Stat/index.js +3 -0
- package/esm/StatGroup/StatGroup.d.ts +13 -0
- package/esm/StatGroup/StatGroup.js +42 -0
- package/esm/StatGroup/index.d.ts +3 -0
- package/esm/StatGroup/index.js +3 -0
- package/esm/Tabs/Tabs.js +1 -1
- package/esm/Timeline/Timeline.js +1 -1
- package/esm/Toggle/Toggle.js +1 -1
- package/esm/Tree/Tree.js +1 -1
- package/esm/Tree/TreeNode.js +9 -9
- package/esm/Tree/TreeView.js +7 -7
- package/esm/Tree/hooks/useExpandTree.js +1 -1
- package/esm/Tree/hooks/useFlattenTree.js +1 -1
- package/esm/Tree/hooks/useFocusTree.js +6 -6
- package/esm/Tree/hooks/useTreeDrag.js +17 -17
- package/esm/Tree/hooks/useTreeSearch.js +1 -1
- package/esm/Tree/utils/flattenTree.js +6 -6
- package/esm/Tree/utils/focusableTree.js +6 -6
- package/esm/Tree/utils/getNodeParentKeys.js +4 -4
- package/esm/Tree/utils/treeKeyboardInteractions.js +2 -2
- package/esm/TreePicker/TreePicker.js +5 -5
- package/esm/TreePicker/hooks/useFocusState.js +4 -4
- package/esm/Uploader/UploadFileItem.js +5 -5
- package/esm/Uploader/UploadTrigger.js +11 -11
- package/esm/Uploader/Uploader.js +16 -16
- package/esm/Uploader/utils/ajaxUpload.js +5 -5
- package/esm/index.d.ts +8 -0
- package/esm/index.js +4 -0
- package/esm/internals/Disclosure/Disclosure.js +3 -3
- package/esm/internals/Disclosure/DisclosureButton.js +2 -2
- package/esm/internals/Menu/Menu.js +3 -3
- package/esm/internals/Menu/MenuItem.js +1 -1
- package/esm/internals/Menu/Menubar.js +2 -2
- package/esm/internals/Overlay/Modal.js +7 -7
- package/esm/internals/Overlay/Overlay.js +1 -1
- package/esm/internals/Overlay/OverlayTrigger.js +3 -3
- package/esm/internals/Overlay/Position.js +5 -5
- package/esm/internals/Picker/ListCheckItem.js +3 -3
- package/esm/internals/Picker/ListItem.js +1 -1
- package/esm/internals/Picker/Listbox.js +4 -4
- package/esm/internals/Picker/PickerToggle.js +2 -2
- package/esm/internals/Picker/SelectedElement.js +1 -1
- package/esm/internals/Picker/hooks/useFocusItemValue.js +2 -2
- package/esm/internals/Picker/hooks/usePickerRef.js +4 -4
- package/esm/internals/Picker/hooks/useSearch.js +1 -1
- package/esm/internals/Picker/hooks/useToggleKeyDownEvent.js +9 -9
- package/esm/internals/Picker/utils.js +8 -8
- package/esm/internals/Ripple/Ripple.js +2 -2
- package/esm/internals/ScrollView/hooks/useScrollState.js +1 -1
- package/esm/internals/Tree/utils/filterNodesOfTree.js +3 -3
- package/esm/internals/Tree/utils/findNodeOfTree.js +3 -3
- package/esm/internals/Tree/utils/getParentMap.js +3 -3
- package/esm/internals/Windowing/AutoSizer.js +1 -1
- package/esm/internals/Windowing/List.js +4 -4
- package/esm/internals/hooks/useClickOutside.js +1 -1
- package/esm/internals/hooks/useElementResize.js +1 -1
- package/esm/internals/hooks/useEventListener.js +1 -1
- package/esm/internals/hooks/useFocus.js +2 -2
- package/esm/internals/hooks/useMount.js +1 -1
- package/esm/internals/hooks/useRootClose.js +4 -4
- package/esm/internals/hooks/useTimeout.js +1 -1
- package/esm/internals/utils/stringifyReactNode.js +5 -5
- package/esm/toaster/ToastContainer.d.ts +1 -0
- package/esm/toaster/ToastContainer.js +19 -14
- package/esm/toaster/hooks/useDelayedClosure.js +2 -2
- package/esm/toaster/toaster.js +7 -7
- package/esm/useToaster/useToaster.js +1 -1
- package/package.json +1 -1
- package/styles/color-modes/dark.less +6 -0
- package/styles/color-modes/high-contrast.less +6 -0
- package/styles/color-modes/light.less +6 -0
- package/styles/index.less +4 -0
- package/toaster/styles/index.css +24 -24
- package/toaster/styles/index.less +29 -29
- package/useToaster/styles/index.css +24 -24
|
@@ -337,6 +337,7 @@
|
|
|
337
337
|
--rs-badge-text: var(--rs-gray-0);
|
|
338
338
|
--rs-close-button-hover-color: var(--rs-color-red);
|
|
339
339
|
--rs-tag-bg: var(--rs-gray-50);
|
|
340
|
+
--rs-card-bg: var(--rs-gray-0);
|
|
340
341
|
--rs-carousel-bg: var(--rs-gray-600);
|
|
341
342
|
--rs-carousel-indicator: rgb(from var(--rs-gray-0) r g b / 40%);
|
|
342
343
|
--rs-carousel-indicator-hover: var(--rs-gray-0);
|
|
@@ -376,6 +377,7 @@
|
|
|
376
377
|
--rs-popover-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
|
|
377
378
|
--rs-tree-indent-line-color: rgba(0, 0, 0, 0.1);
|
|
378
379
|
--rs-scroll-view-shadow-color: rgba(9, 9, 9, 0.2);
|
|
380
|
+
--rs-stat-body-bg: var(--rs-gray-0);
|
|
379
381
|
}
|
|
380
382
|
@supports not (color: rgb(from white r g b)) {
|
|
381
383
|
:root,
|
|
@@ -721,6 +723,7 @@
|
|
|
721
723
|
--rs-badge-text: var(--rs-gray-0);
|
|
722
724
|
--rs-close-button-hover-color: var(--rs-color-red);
|
|
723
725
|
--rs-tag-bg: var(--rs-gray-600);
|
|
726
|
+
--rs-card-bg: var(--rs-gray-900);
|
|
724
727
|
--rs-carousel-bg: var(--rs-gray-600);
|
|
725
728
|
--rs-carousel-indicator: rgb(from var(--rs-gray-0) r g b / 40%);
|
|
726
729
|
--rs-carousel-indicator-hover: var(--rs-gray-0);
|
|
@@ -758,6 +761,7 @@
|
|
|
758
761
|
--rs-popover-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
|
|
759
762
|
--rs-tree-indent-line-color: rgba(255, 255, 255, 0.1);
|
|
760
763
|
--rs-scroll-view-shadow-color: rgba(0, 0, 0, 0.99);
|
|
764
|
+
--rs-stat-body-bg: var(--rs-gray-900);
|
|
761
765
|
}
|
|
762
766
|
@supports not (color: rgb(from white r g b)) {
|
|
763
767
|
.rs-theme-dark {
|
|
@@ -1104,6 +1108,7 @@
|
|
|
1104
1108
|
--rs-badge-text: var(--rs-gray-0);
|
|
1105
1109
|
--rs-close-button-hover-color: var(--rs-color-red);
|
|
1106
1110
|
--rs-tag-bg: var(--rs-gray-600);
|
|
1111
|
+
--rs-card-bg: var(--rs-gray-900);
|
|
1107
1112
|
--rs-carousel-bg: var(--rs-gray-600);
|
|
1108
1113
|
--rs-carousel-indicator: rgb(from var(--rs-gray-0) r g b / 40%);
|
|
1109
1114
|
--rs-carousel-indicator-hover: var(--rs-gray-0);
|
|
@@ -1145,6 +1150,7 @@
|
|
|
1145
1150
|
--rs-popover-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
|
|
1146
1151
|
--rs-tree-indent-line-color: rgba(255, 255, 255, 0.1);
|
|
1147
1152
|
--rs-scroll-view-shadow-color: rgba(0, 0, 0, 0.99);
|
|
1153
|
+
--rs-stat-body-bg: var(--rs-gray-900);
|
|
1148
1154
|
}
|
|
1149
1155
|
@supports not (color: rgb(from white r g b)) {
|
|
1150
1156
|
.rs-theme-high-contrast {
|
|
@@ -3609,6 +3615,77 @@ tbody.rs-anim-collapse.rs-anim-in {
|
|
|
3609
3615
|
transform: translateY(0);
|
|
3610
3616
|
}
|
|
3611
3617
|
}
|
|
3618
|
+
.rs-card {
|
|
3619
|
+
--rs-card-width: 100%;
|
|
3620
|
+
--rs-card-padding: 16px;
|
|
3621
|
+
display: -webkit-box;
|
|
3622
|
+
display: -ms-flexbox;
|
|
3623
|
+
display: flex;
|
|
3624
|
+
-webkit-box-orient: vertical;
|
|
3625
|
+
-webkit-box-direction: normal;
|
|
3626
|
+
-ms-flex-direction: column;
|
|
3627
|
+
flex-direction: column;
|
|
3628
|
+
border-radius: 6px;
|
|
3629
|
+
overflow: hidden;
|
|
3630
|
+
-webkit-box-sizing: border-box;
|
|
3631
|
+
box-sizing: border-box;
|
|
3632
|
+
position: relative;
|
|
3633
|
+
width: var(--rs-card-width);
|
|
3634
|
+
}
|
|
3635
|
+
.rs-card-bordered {
|
|
3636
|
+
border: 1px solid #e5e5ea;
|
|
3637
|
+
border: 1px solid var(--rs-border-primary);
|
|
3638
|
+
background-color: #fff;
|
|
3639
|
+
background-color: var(--rs-card-bg);
|
|
3640
|
+
}
|
|
3641
|
+
.rs-card-shaded {
|
|
3642
|
+
-webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12), 0 0 10px rgba(0, 0, 0, 0.06);
|
|
3643
|
+
-webkit-box-shadow: var(--rs-panel-shadow);
|
|
3644
|
+
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12), 0 0 10px rgba(0, 0, 0, 0.06);
|
|
3645
|
+
box-shadow: var(--rs-panel-shadow);
|
|
3646
|
+
}
|
|
3647
|
+
.rs-card-shaded-hover:hover {
|
|
3648
|
+
-webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12), 0 0 10px rgba(0, 0, 0, 0.06);
|
|
3649
|
+
-webkit-box-shadow: var(--rs-panel-shadow);
|
|
3650
|
+
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12), 0 0 10px rgba(0, 0, 0, 0.06);
|
|
3651
|
+
box-shadow: var(--rs-panel-shadow);
|
|
3652
|
+
cursor: pointer;
|
|
3653
|
+
}
|
|
3654
|
+
.rs-card-sm {
|
|
3655
|
+
--rs-card-padding: 8px;
|
|
3656
|
+
}
|
|
3657
|
+
.rs-card-md {
|
|
3658
|
+
--rs-card-padding: 16px;
|
|
3659
|
+
}
|
|
3660
|
+
.rs-card-lg {
|
|
3661
|
+
--rs-card-padding: 24px;
|
|
3662
|
+
}
|
|
3663
|
+
.rs-card-row {
|
|
3664
|
+
-webkit-box-orient: horizontal;
|
|
3665
|
+
-webkit-box-direction: normal;
|
|
3666
|
+
-ms-flex-direction: row;
|
|
3667
|
+
flex-direction: row;
|
|
3668
|
+
}
|
|
3669
|
+
.rs-card-header {
|
|
3670
|
+
padding: var(--rs-card-padding) var(--rs-card-padding) 0 var(--rs-card-padding);
|
|
3671
|
+
}
|
|
3672
|
+
.rs-card-body {
|
|
3673
|
+
padding: var(--rs-card-padding);
|
|
3674
|
+
}
|
|
3675
|
+
.rs-card-footer {
|
|
3676
|
+
display: -webkit-box;
|
|
3677
|
+
display: -ms-flexbox;
|
|
3678
|
+
display: flex;
|
|
3679
|
+
gap: 8px;
|
|
3680
|
+
padding: 0 var(--rs-card-padding) var(--rs-card-padding) var(--rs-card-padding);
|
|
3681
|
+
}
|
|
3682
|
+
.rs-card-group {
|
|
3683
|
+
--rs-columns: 4;
|
|
3684
|
+
--rs-spacing: 20px;
|
|
3685
|
+
display: grid;
|
|
3686
|
+
grid-template-columns: repeat(var(--rs-columns), 1fr);
|
|
3687
|
+
grid-gap: var(--rs-spacing);
|
|
3688
|
+
}
|
|
3612
3689
|
.rs-carousel {
|
|
3613
3690
|
position: relative;
|
|
3614
3691
|
height: 400px;
|
|
@@ -9155,19 +9232,13 @@ textarea.rs-inline-edit-sm .rs-plaintext {
|
|
|
9155
9232
|
}
|
|
9156
9233
|
.rs-list {
|
|
9157
9234
|
position: relative;
|
|
9158
|
-
-webkit-box-shadow: 0 1px 0 #e5e5ea, 0 -1px 0 #e5e5ea;
|
|
9159
|
-
-webkit-box-shadow: 0 1px 0 var(--rs-list-border), 0 -1px 0 var(--rs-list-border);
|
|
9160
|
-
box-shadow: 0 1px 0 #e5e5ea, 0 -1px 0 #e5e5ea;
|
|
9161
|
-
box-shadow: 0 1px 0 var(--rs-list-border), 0 -1px 0 var(--rs-list-border);
|
|
9162
9235
|
overflow-x: hidden;
|
|
9163
9236
|
overflow-y: auto;
|
|
9164
9237
|
}
|
|
9165
9238
|
.rs-list-bordered {
|
|
9166
9239
|
border-radius: 6px;
|
|
9167
|
-
|
|
9168
|
-
|
|
9169
|
-
box-shadow: 0 0 0 1px #e5e5ea;
|
|
9170
|
-
box-shadow: 0 0 0 1px var(--rs-list-border);
|
|
9240
|
+
border: 1px solid #e5e5ea;
|
|
9241
|
+
border: 1px solid var(--rs-list-border);
|
|
9171
9242
|
}
|
|
9172
9243
|
.rs-list-hover .rs-list-item:hover {
|
|
9173
9244
|
background-color: #f2faff;
|
|
@@ -9201,14 +9272,14 @@ textarea.rs-inline-edit-sm .rs-plaintext {
|
|
|
9201
9272
|
padding-top: 8px;
|
|
9202
9273
|
padding-bottom: 8px;
|
|
9203
9274
|
}
|
|
9275
|
+
.rs-list-item-xs {
|
|
9276
|
+
padding-top: 2px;
|
|
9277
|
+
padding-bottom: 2px;
|
|
9278
|
+
}
|
|
9204
9279
|
/* stylelint-disable-next-line */
|
|
9205
9280
|
.rs-list-item {
|
|
9206
9281
|
background-color: #fff;
|
|
9207
9282
|
background-color: var(--rs-list-bg);
|
|
9208
|
-
-webkit-box-shadow: 0 -1px 0 #e5e5ea, 0 1px 0 #e5e5ea;
|
|
9209
|
-
-webkit-box-shadow: 0 -1px 0 var(--rs-list-border), 0 1px 0 var(--rs-list-border);
|
|
9210
|
-
box-shadow: 0 -1px 0 #e5e5ea, 0 1px 0 #e5e5ea;
|
|
9211
|
-
box-shadow: 0 -1px 0 var(--rs-list-border), 0 1px 0 var(--rs-list-border);
|
|
9212
9283
|
}
|
|
9213
9284
|
.rs-list-item-helper {
|
|
9214
9285
|
position: absolute;
|
|
@@ -9246,6 +9317,10 @@ textarea.rs-inline-edit-sm .rs-plaintext {
|
|
|
9246
9317
|
border: 1px #3498ff dashed;
|
|
9247
9318
|
border: 1px var(--rs-list-placeholder-border) dashed;
|
|
9248
9319
|
}
|
|
9320
|
+
.rs-list-divider .rs-list-item + .rs-list-item {
|
|
9321
|
+
border-top: 1px solid #e5e5ea;
|
|
9322
|
+
border-top: 1px solid var(--rs-list-border);
|
|
9323
|
+
}
|
|
9249
9324
|
.rs-loader {
|
|
9250
9325
|
display: inline-block;
|
|
9251
9326
|
}
|
|
@@ -13607,6 +13682,135 @@ textarea.rs-inline-edit-sm .rs-plaintext {
|
|
|
13607
13682
|
bottom: unset;
|
|
13608
13683
|
top: -8px;
|
|
13609
13684
|
}
|
|
13685
|
+
.rs-stat {
|
|
13686
|
+
display: -webkit-box;
|
|
13687
|
+
display: -ms-flexbox;
|
|
13688
|
+
display: flex;
|
|
13689
|
+
gap: 10px;
|
|
13690
|
+
-webkit-box-align: center;
|
|
13691
|
+
-ms-flex-align: center;
|
|
13692
|
+
align-items: center;
|
|
13693
|
+
}
|
|
13694
|
+
.rs-stat-icon {
|
|
13695
|
+
width: 50px;
|
|
13696
|
+
height: 50px;
|
|
13697
|
+
display: -webkit-box;
|
|
13698
|
+
display: -ms-flexbox;
|
|
13699
|
+
display: flex;
|
|
13700
|
+
-webkit-box-align: center;
|
|
13701
|
+
-ms-flex-align: center;
|
|
13702
|
+
align-items: center;
|
|
13703
|
+
-webkit-box-pack: center;
|
|
13704
|
+
-ms-flex-pack: center;
|
|
13705
|
+
justify-content: center;
|
|
13706
|
+
border-radius: 6px;
|
|
13707
|
+
}
|
|
13708
|
+
.rs-stat-body {
|
|
13709
|
+
display: -webkit-box;
|
|
13710
|
+
display: -ms-flexbox;
|
|
13711
|
+
display: flex;
|
|
13712
|
+
-webkit-box-orient: vertical;
|
|
13713
|
+
-webkit-box-direction: normal;
|
|
13714
|
+
-ms-flex-direction: column;
|
|
13715
|
+
flex-direction: column;
|
|
13716
|
+
gap: 8px;
|
|
13717
|
+
width: 100%;
|
|
13718
|
+
margin: 0;
|
|
13719
|
+
}
|
|
13720
|
+
.rs-stat-bordered {
|
|
13721
|
+
border: 1px solid #e5e5ea;
|
|
13722
|
+
border: 1px solid var(--rs-border-primary);
|
|
13723
|
+
background-color: #fff;
|
|
13724
|
+
background-color: var(--rs-stat-body-bg);
|
|
13725
|
+
border-radius: 6px;
|
|
13726
|
+
padding: 16px;
|
|
13727
|
+
}
|
|
13728
|
+
.rs-stat-label {
|
|
13729
|
+
font-weight: 100;
|
|
13730
|
+
display: -webkit-inline-box;
|
|
13731
|
+
display: -ms-inline-flexbox;
|
|
13732
|
+
display: inline-flex;
|
|
13733
|
+
-webkit-box-align: center;
|
|
13734
|
+
-ms-flex-align: center;
|
|
13735
|
+
align-items: center;
|
|
13736
|
+
color: #717273;
|
|
13737
|
+
color: var(--rs-text-secondary);
|
|
13738
|
+
gap: 6px;
|
|
13739
|
+
}
|
|
13740
|
+
.rs-stat-label-uppercase {
|
|
13741
|
+
text-transform: uppercase;
|
|
13742
|
+
}
|
|
13743
|
+
.rs-stat-value {
|
|
13744
|
+
display: -webkit-box;
|
|
13745
|
+
display: -ms-flexbox;
|
|
13746
|
+
display: flex;
|
|
13747
|
+
gap: 4px;
|
|
13748
|
+
-webkit-box-align: baseline;
|
|
13749
|
+
-ms-flex-align: baseline;
|
|
13750
|
+
align-items: baseline;
|
|
13751
|
+
font-size: 24px;
|
|
13752
|
+
font-weight: 600;
|
|
13753
|
+
line-height: 1;
|
|
13754
|
+
margin: 0;
|
|
13755
|
+
}
|
|
13756
|
+
.rs-stat-value-unit {
|
|
13757
|
+
font-size: 12px;
|
|
13758
|
+
font-weight: 400;
|
|
13759
|
+
}
|
|
13760
|
+
.rs-stat-trend {
|
|
13761
|
+
display: -webkit-inline-box;
|
|
13762
|
+
display: -ms-inline-flexbox;
|
|
13763
|
+
display: inline-flex;
|
|
13764
|
+
-webkit-box-align: center;
|
|
13765
|
+
-ms-flex-align: center;
|
|
13766
|
+
align-items: center;
|
|
13767
|
+
gap: 2px;
|
|
13768
|
+
border-radius: 4px;
|
|
13769
|
+
font-weight: 600;
|
|
13770
|
+
font-size: 12px;
|
|
13771
|
+
line-height: 1;
|
|
13772
|
+
}
|
|
13773
|
+
.rs-stat-trend-up {
|
|
13774
|
+
color: #007d0c;
|
|
13775
|
+
color: var(--rs-green-900);
|
|
13776
|
+
}
|
|
13777
|
+
.rs-stat-trend-down {
|
|
13778
|
+
color: #8f1300;
|
|
13779
|
+
color: var(--rs-red-900);
|
|
13780
|
+
}
|
|
13781
|
+
.rs-stat-trend-default {
|
|
13782
|
+
padding: 2px 6px;
|
|
13783
|
+
}
|
|
13784
|
+
.rs-stat-trend-default.rs-stat-trend-up {
|
|
13785
|
+
background-color: #c8f0c7;
|
|
13786
|
+
background-color: var(--rs-green-100);
|
|
13787
|
+
}
|
|
13788
|
+
.rs-stat-trend-default.rs-stat-trend-down {
|
|
13789
|
+
background-color: #fccfcf;
|
|
13790
|
+
background-color: var(--rs-red-100);
|
|
13791
|
+
}
|
|
13792
|
+
.rs-stat-trend-subtle.rs-stat-trend-up {
|
|
13793
|
+
color: #37ab3c;
|
|
13794
|
+
color: var(--rs-green-600);
|
|
13795
|
+
}
|
|
13796
|
+
.rs-stat-trend-subtle.rs-stat-trend-down {
|
|
13797
|
+
color: #eb3626;
|
|
13798
|
+
color: var(--rs-red-600);
|
|
13799
|
+
}
|
|
13800
|
+
.rs-stat-help-text {
|
|
13801
|
+
color: #717273;
|
|
13802
|
+
color: var(--rs-text-secondary);
|
|
13803
|
+
}
|
|
13804
|
+
.rs-stat .rs-progress-line {
|
|
13805
|
+
padding: 0;
|
|
13806
|
+
}
|
|
13807
|
+
.rs-stat-group {
|
|
13808
|
+
--rs-columns: 4;
|
|
13809
|
+
--rs-spacing: 6px;
|
|
13810
|
+
display: grid;
|
|
13811
|
+
grid-template-columns: repeat(var(--rs-columns), 1fr);
|
|
13812
|
+
grid-gap: var(--rs-spacing);
|
|
13813
|
+
}
|
|
13610
13814
|
.rs-steps {
|
|
13611
13815
|
min-height: 30px;
|
|
13612
13816
|
}
|
|
@@ -16408,29 +16612,6 @@ textarea.rs-inline-edit-sm .rs-plaintext {
|
|
|
16408
16612
|
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12), 0 0 10px rgba(0, 0, 0, 0.06);
|
|
16409
16613
|
box-shadow: var(--rs-shadow-overlay);
|
|
16410
16614
|
}
|
|
16411
|
-
.rs-toast-container .rs-toast-fade-entered,
|
|
16412
|
-
.rs-toast-container .rs-toast-fade-exiting {
|
|
16413
|
-
-webkit-animation-fill-mode: forwards;
|
|
16414
|
-
animation-fill-mode: forwards;
|
|
16415
|
-
}
|
|
16416
|
-
.rs-toast-container .rs-toast-fade-entered {
|
|
16417
|
-
-webkit-animation-duration: 0.4s;
|
|
16418
|
-
animation-duration: 0.4s;
|
|
16419
|
-
-webkit-animation-timing-function: cubic-bezier(0.99, 0.44, 0.44, 1.35);
|
|
16420
|
-
animation-timing-function: cubic-bezier(0.99, 0.44, 0.44, 1.35);
|
|
16421
|
-
}
|
|
16422
|
-
.rs-toast-container .rs-toast-fade-exited,
|
|
16423
|
-
.rs-toast-container .rs-toast-fade-entering {
|
|
16424
|
-
opacity: 0;
|
|
16425
|
-
}
|
|
16426
|
-
.rs-toast-container .rs-toast-fade-exited {
|
|
16427
|
-
-webkit-transform-origin: 100% 0;
|
|
16428
|
-
transform-origin: 100% 0;
|
|
16429
|
-
-webkit-transform: scaleY(0.8);
|
|
16430
|
-
transform: scaleY(0.8);
|
|
16431
|
-
max-height: 0;
|
|
16432
|
-
overflow: hidden;
|
|
16433
|
-
}
|
|
16434
16615
|
.rs-toast-container-top-center,
|
|
16435
16616
|
.rs-toast-container-bottom-center {
|
|
16436
16617
|
-webkit-box-align: center;
|
|
@@ -16478,7 +16659,30 @@ textarea.rs-inline-edit-sm .rs-plaintext {
|
|
|
16478
16659
|
.rs-toast-container-bottom-end {
|
|
16479
16660
|
bottom: 24px;
|
|
16480
16661
|
}
|
|
16481
|
-
.rs-toast-
|
|
16662
|
+
.rs-toast-fade-entered,
|
|
16663
|
+
.rs-toast-fade-exiting {
|
|
16664
|
+
-webkit-animation-fill-mode: forwards;
|
|
16665
|
+
animation-fill-mode: forwards;
|
|
16666
|
+
}
|
|
16667
|
+
.rs-toast-fade-entered {
|
|
16668
|
+
-webkit-animation-duration: 0.4s;
|
|
16669
|
+
animation-duration: 0.4s;
|
|
16670
|
+
-webkit-animation-timing-function: cubic-bezier(0.99, 0.44, 0.44, 1.35);
|
|
16671
|
+
animation-timing-function: cubic-bezier(0.99, 0.44, 0.44, 1.35);
|
|
16672
|
+
}
|
|
16673
|
+
.rs-toast-fade-exited,
|
|
16674
|
+
.rs-toast-fade-entering {
|
|
16675
|
+
opacity: 0;
|
|
16676
|
+
}
|
|
16677
|
+
.rs-toast-fade-exited {
|
|
16678
|
+
-webkit-transform-origin: 100% 0;
|
|
16679
|
+
transform-origin: 100% 0;
|
|
16680
|
+
-webkit-transform: scaleY(0.8);
|
|
16681
|
+
transform: scaleY(0.8);
|
|
16682
|
+
max-height: 0;
|
|
16683
|
+
overflow: hidden;
|
|
16684
|
+
}
|
|
16685
|
+
.rs-toast-fade-exiting {
|
|
16482
16686
|
-webkit-animation-duration: 0.3s;
|
|
16483
16687
|
animation-duration: 0.3s;
|
|
16484
16688
|
-webkit-animation-timing-function: cubic-bezier(0.64, 0.65, 0.57, 1.13);
|