matsuri-ui 9.7.2-alpha.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 +2680 -0
- package/LICENSE +674 -0
- package/README.md +16 -0
- package/dist/cjs/@typings/DeepPartial.js +6 -0
- package/dist/cjs/@typings/DeepPartial.js.map +1 -0
- package/dist/cjs/@utils/RelativeTimeFormat.js +34 -0
- package/dist/cjs/@utils/RelativeTimeFormat.js.map +1 -0
- package/dist/cjs/@utils/debounce.js +219 -0
- package/dist/cjs/@utils/debounce.js.map +1 -0
- package/dist/cjs/@utils/fetchAddress.js +35 -0
- package/dist/cjs/@utils/fetchAddress.js.map +1 -0
- package/dist/cjs/@utils/hexToRgba.js +22 -0
- package/dist/cjs/@utils/hexToRgba.js.map +1 -0
- package/dist/cjs/@utils/index.js +19 -0
- package/dist/cjs/@utils/index.js.map +1 -0
- package/dist/cjs/@utils/intersection.js +32 -0
- package/dist/cjs/@utils/intersection.js.map +1 -0
- package/dist/cjs/@utils/isNumericString.js +22 -0
- package/dist/cjs/@utils/isNumericString.js.map +1 -0
- package/dist/cjs/@utils/isObject.js +12 -0
- package/dist/cjs/@utils/isObject.js.map +1 -0
- package/dist/cjs/@utils/makeLocaleString.js +22 -0
- package/dist/cjs/@utils/makeLocaleString.js.map +1 -0
- package/dist/cjs/@utils/mergeDeep.js +23 -0
- package/dist/cjs/@utils/mergeDeep.js.map +1 -0
- package/dist/cjs/@utils/range.js +33 -0
- package/dist/cjs/@utils/range.js.map +1 -0
- package/dist/cjs/@utils/sleep.js +11 -0
- package/dist/cjs/@utils/sleep.js.map +1 -0
- package/dist/cjs/@utils/subordinateComponents.js +16 -0
- package/dist/cjs/@utils/subordinateComponents.js.map +1 -0
- package/dist/cjs/Alert/Alert.js +209 -0
- package/dist/cjs/Alert/Alert.js.map +1 -0
- package/dist/cjs/Alert/index.js +19 -0
- package/dist/cjs/Alert/index.js.map +1 -0
- package/dist/cjs/AsComponentProps.js +6 -0
- package/dist/cjs/AsComponentProps.js.map +1 -0
- package/dist/cjs/Breadcrumbs/BreadcrumbSeparator.js +37 -0
- package/dist/cjs/Breadcrumbs/BreadcrumbSeparator.js.map +1 -0
- package/dist/cjs/Breadcrumbs/Breadcrumbs.js +82 -0
- package/dist/cjs/Breadcrumbs/Breadcrumbs.js.map +1 -0
- package/dist/cjs/Breadcrumbs/index.js +32 -0
- package/dist/cjs/Breadcrumbs/index.js.map +1 -0
- package/dist/cjs/Button/Button.js +153 -0
- package/dist/cjs/Button/Button.js.map +1 -0
- package/dist/cjs/Button/index.js +19 -0
- package/dist/cjs/Button/index.js.map +1 -0
- package/dist/cjs/Calendar/Calendar.js +33 -0
- package/dist/cjs/Calendar/Calendar.js.map +1 -0
- package/dist/cjs/Calendar/CalendarDay.js +70 -0
- package/dist/cjs/Calendar/CalendarDay.js.map +1 -0
- package/dist/cjs/Calendar/CalendarDayEvent.js +48 -0
- package/dist/cjs/Calendar/CalendarDayEvent.js.map +1 -0
- package/dist/cjs/Calendar/CalendarDaysInMonth.js +134 -0
- package/dist/cjs/Calendar/CalendarDaysInMonth.js.map +1 -0
- package/dist/cjs/Calendar/CalendarWeek.js +68 -0
- package/dist/cjs/Calendar/CalendarWeek.js.map +1 -0
- package/dist/cjs/Calendar/index.js +45 -0
- package/dist/cjs/Calendar/index.js.map +1 -0
- package/dist/cjs/CalendarController/CalendarController.js +71 -0
- package/dist/cjs/CalendarController/CalendarController.js.map +1 -0
- package/dist/cjs/CalendarController/index.js +19 -0
- package/dist/cjs/CalendarController/index.js.map +1 -0
- package/dist/cjs/CalendarLabel/CalendarLabel.js +38 -0
- package/dist/cjs/CalendarLabel/CalendarLabel.js.map +1 -0
- package/dist/cjs/CalendarLabel/index.js +19 -0
- package/dist/cjs/CalendarLabel/index.js.map +1 -0
- package/dist/cjs/CalendarUI/CalendarUIContainer.js +27 -0
- package/dist/cjs/CalendarUI/CalendarUIContainer.js.map +1 -0
- package/dist/cjs/CalendarUI/CalendarUIHeader.js +32 -0
- package/dist/cjs/CalendarUI/CalendarUIHeader.js.map +1 -0
- package/dist/cjs/CalendarUI/index.js +137 -0
- package/dist/cjs/CalendarUI/index.js.map +1 -0
- package/dist/cjs/Card/index.js +60 -0
- package/dist/cjs/Card/index.js.map +1 -0
- package/dist/cjs/CardMedia/CardMedia.js +37 -0
- package/dist/cjs/CardMedia/CardMedia.js.map +1 -0
- package/dist/cjs/CardMedia/index.js +19 -0
- package/dist/cjs/CardMedia/index.js.map +1 -0
- package/dist/cjs/Checkbox/Checkbox.js +93 -0
- package/dist/cjs/Checkbox/Checkbox.js.map +1 -0
- package/dist/cjs/Checkbox/index.js +19 -0
- package/dist/cjs/Checkbox/index.js.map +1 -0
- package/dist/cjs/Chip/Chip.js +51 -0
- package/dist/cjs/Chip/Chip.js.map +1 -0
- package/dist/cjs/Chip/index.js +19 -0
- package/dist/cjs/Chip/index.js.map +1 -0
- package/dist/cjs/Container/Container.js +30 -0
- package/dist/cjs/Container/Container.js.map +1 -0
- package/dist/cjs/Container/index.js +19 -0
- package/dist/cjs/Container/index.js.map +1 -0
- package/dist/cjs/DateField/DateField.js +225 -0
- package/dist/cjs/DateField/DateField.js.map +1 -0
- package/dist/cjs/DateField/index.js +19 -0
- package/dist/cjs/DateField/index.js.map +1 -0
- package/dist/cjs/DropArea/DropArea.js +89 -0
- package/dist/cjs/DropArea/DropArea.js.map +1 -0
- package/dist/cjs/DropArea/index.js +19 -0
- package/dist/cjs/DropArea/index.js.map +1 -0
- package/dist/cjs/ErrorBoundary/ErrorBoundary.js +64 -0
- package/dist/cjs/ErrorBoundary/ErrorBoundary.js.map +1 -0
- package/dist/cjs/ErrorBoundary/index.js +19 -0
- package/dist/cjs/ErrorBoundary/index.js.map +1 -0
- package/dist/cjs/ErrorBoundaryAlert/ErrorBoundaryAlert.js +70 -0
- package/dist/cjs/ErrorBoundaryAlert/ErrorBoundaryAlert.js.map +1 -0
- package/dist/cjs/ErrorBoundaryAlert/index.js +19 -0
- package/dist/cjs/ErrorBoundaryAlert/index.js.map +1 -0
- package/dist/cjs/FormControl/FormControl.js +37 -0
- package/dist/cjs/FormControl/FormControl.js.map +1 -0
- package/dist/cjs/FormControl/index.js +19 -0
- package/dist/cjs/FormControl/index.js.map +1 -0
- package/dist/cjs/FormHelperText/index.js +31 -0
- package/dist/cjs/FormHelperText/index.js.map +1 -0
- package/dist/cjs/FullHeight/FullHeight.js +59 -0
- package/dist/cjs/FullHeight/FullHeight.js.map +1 -0
- package/dist/cjs/FullHeight/index.js +19 -0
- package/dist/cjs/FullHeight/index.js.map +1 -0
- package/dist/cjs/Icon/ArrowDown.js +31 -0
- package/dist/cjs/Icon/ArrowDown.js.map +1 -0
- package/dist/cjs/Icon/ArrowLeft.js +30 -0
- package/dist/cjs/Icon/ArrowLeft.js.map +1 -0
- package/dist/cjs/Icon/ArrowRight.js +31 -0
- package/dist/cjs/Icon/ArrowRight.js.map +1 -0
- package/dist/cjs/Icon/ArrowUp.js +31 -0
- package/dist/cjs/Icon/ArrowUp.js.map +1 -0
- package/dist/cjs/Icon/Avator.js +33 -0
- package/dist/cjs/Icon/Avator.js.map +1 -0
- package/dist/cjs/Icon/Check.js +31 -0
- package/dist/cjs/Icon/Check.js.map +1 -0
- package/dist/cjs/Icon/CircleFill.js +28 -0
- package/dist/cjs/Icon/CircleFill.js.map +1 -0
- package/dist/cjs/Icon/Close.js +30 -0
- package/dist/cjs/Icon/Close.js.map +1 -0
- package/dist/cjs/Icon/Edit.js +34 -0
- package/dist/cjs/Icon/Edit.js.map +1 -0
- package/dist/cjs/Icon/Minus.js +31 -0
- package/dist/cjs/Icon/Minus.js.map +1 -0
- package/dist/cjs/Icon/Plus.js +34 -0
- package/dist/cjs/Icon/Plus.js.map +1 -0
- package/dist/cjs/Icon/Question.js +28 -0
- package/dist/cjs/Icon/Question.js.map +1 -0
- package/dist/cjs/Icon/QuestionCircle.js +32 -0
- package/dist/cjs/Icon/QuestionCircle.js.map +1 -0
- package/dist/cjs/Icon/SVGComponents.js +109 -0
- package/dist/cjs/Icon/SVGComponents.js.map +1 -0
- package/dist/cjs/Icon/Time.js +31 -0
- package/dist/cjs/Icon/Time.js.map +1 -0
- package/dist/cjs/Icon/Triangle.js +30 -0
- package/dist/cjs/Icon/Triangle.js.map +1 -0
- package/dist/cjs/Icon/index.js +59 -0
- package/dist/cjs/Icon/index.js.map +1 -0
- package/dist/cjs/Icon/index.stories.js +114 -0
- package/dist/cjs/Icon/index.stories.js.map +1 -0
- package/dist/cjs/ImageViewer/ImageViewer.js +165 -0
- package/dist/cjs/ImageViewer/ImageViewer.js.map +1 -0
- package/dist/cjs/ImageViewer/index.js +19 -0
- package/dist/cjs/ImageViewer/index.js.map +1 -0
- package/dist/cjs/ImgHTMLAttributes.d.js +4 -0
- package/dist/cjs/ImgHTMLAttributes.d.js.map +1 -0
- package/dist/cjs/InputBase/InputAdornment.js +64 -0
- package/dist/cjs/InputBase/InputAdornment.js.map +1 -0
- package/dist/cjs/InputBase/InputBase.js +77 -0
- package/dist/cjs/InputBase/InputBase.js.map +1 -0
- package/dist/cjs/InputBase/index.js +14 -0
- package/dist/cjs/InputBase/index.js.map +1 -0
- package/dist/cjs/InputLabel/InputLabel.js +34 -0
- package/dist/cjs/InputLabel/InputLabel.js.map +1 -0
- package/dist/cjs/InputLabel/index.js +19 -0
- package/dist/cjs/InputLabel/index.js.map +1 -0
- package/dist/cjs/Layouts/Box.js +41 -0
- package/dist/cjs/Layouts/Box.js.map +1 -0
- package/dist/cjs/Layouts/Column.js +29 -0
- package/dist/cjs/Layouts/Column.js.map +1 -0
- package/dist/cjs/Layouts/Item.js +68 -0
- package/dist/cjs/Layouts/Item.js.map +1 -0
- package/dist/cjs/Layouts/Row.js +14 -0
- package/dist/cjs/Layouts/Row.js.map +1 -0
- package/dist/cjs/Layouts/index.js +73 -0
- package/dist/cjs/Layouts/index.js.map +1 -0
- package/dist/cjs/Legend/Legend.js +47 -0
- package/dist/cjs/Legend/Legend.js.map +1 -0
- package/dist/cjs/Legend/index.js +19 -0
- package/dist/cjs/Legend/index.js.map +1 -0
- package/dist/cjs/List/List.js +46 -0
- package/dist/cjs/List/List.js.map +1 -0
- package/dist/cjs/List/ListItem.js +44 -0
- package/dist/cjs/List/ListItem.js.map +1 -0
- package/dist/cjs/List/ListItemIcon.js +28 -0
- package/dist/cjs/List/ListItemIcon.js.map +1 -0
- package/dist/cjs/List/index.js +45 -0
- package/dist/cjs/List/index.js.map +1 -0
- package/dist/cjs/Loading/Loading.js +89 -0
- package/dist/cjs/Loading/Loading.js.map +1 -0
- package/dist/cjs/Loading/index.js +19 -0
- package/dist/cjs/Loading/index.js.map +1 -0
- package/dist/cjs/LoadingOverlay/index.js +76 -0
- package/dist/cjs/LoadingOverlay/index.js.map +1 -0
- package/dist/cjs/LocaleProvider.js +16 -0
- package/dist/cjs/LocaleProvider.js.map +1 -0
- package/dist/cjs/Menu/Menu.js +42 -0
- package/dist/cjs/Menu/Menu.js.map +1 -0
- package/dist/cjs/Menu/MenuList.js +31 -0
- package/dist/cjs/Menu/MenuList.js.map +1 -0
- package/dist/cjs/Menu/index.js +32 -0
- package/dist/cjs/Menu/index.js.map +1 -0
- package/dist/cjs/Mobile/MobileHeader.js +96 -0
- package/dist/cjs/Mobile/MobileHeader.js.map +1 -0
- package/dist/cjs/Mobile/MobilePage.js +48 -0
- package/dist/cjs/Mobile/MobilePage.js.map +1 -0
- package/dist/cjs/Mobile/index.js +45 -0
- package/dist/cjs/Mobile/index.js.map +1 -0
- package/dist/cjs/Mobile/useMobile.js +131 -0
- package/dist/cjs/Mobile/useMobile.js.map +1 -0
- package/dist/cjs/Modal/Modal.js +78 -0
- package/dist/cjs/Modal/Modal.js.map +1 -0
- package/dist/cjs/Modal/ModalBackdrop.js +40 -0
- package/dist/cjs/Modal/ModalBackdrop.js.map +1 -0
- package/dist/cjs/Modal/ModalBody.js +26 -0
- package/dist/cjs/Modal/ModalBody.js.map +1 -0
- package/dist/cjs/Modal/ModalContext.js +12 -0
- package/dist/cjs/Modal/ModalContext.js.map +1 -0
- package/dist/cjs/Modal/ModalFooter.js +26 -0
- package/dist/cjs/Modal/ModalFooter.js.map +1 -0
- package/dist/cjs/Modal/ModalHeader.js +43 -0
- package/dist/cjs/Modal/ModalHeader.js.map +1 -0
- package/dist/cjs/Modal/ModalProvider.js +12 -0
- package/dist/cjs/Modal/ModalProvider.js.map +1 -0
- package/dist/cjs/Modal/index.js +19 -0
- package/dist/cjs/Modal/index.js.map +1 -0
- package/dist/cjs/MultipleTextField/index.js +86 -0
- package/dist/cjs/MultipleTextField/index.js.map +1 -0
- package/dist/cjs/NumberField/NumberField.js +153 -0
- package/dist/cjs/NumberField/NumberField.js.map +1 -0
- package/dist/cjs/NumberField/NumberFormatOptions.js +6 -0
- package/dist/cjs/NumberField/NumberFormatOptions.js.map +1 -0
- package/dist/cjs/NumberField/index.js +19 -0
- package/dist/cjs/NumberField/index.js.map +1 -0
- package/dist/cjs/NumericTextField/index.js +104 -0
- package/dist/cjs/NumericTextField/index.js.map +1 -0
- package/dist/cjs/Overlay/index.js +104 -0
- package/dist/cjs/Overlay/index.js.map +1 -0
- package/dist/cjs/Pagination/Pagination.js +84 -0
- package/dist/cjs/Pagination/Pagination.js.map +1 -0
- package/dist/cjs/Pagination/PaginationContainer.js +29 -0
- package/dist/cjs/Pagination/PaginationContainer.js.map +1 -0
- package/dist/cjs/Pagination/PaginationItem.js +46 -0
- package/dist/cjs/Pagination/PaginationItem.js.map +1 -0
- package/dist/cjs/Pagination/PaginationMore.js +25 -0
- package/dist/cjs/Pagination/PaginationMore.js.map +1 -0
- package/dist/cjs/Pagination/PaginationNext.js +28 -0
- package/dist/cjs/Pagination/PaginationNext.js.map +1 -0
- package/dist/cjs/Pagination/PaginationPrev.js +28 -0
- package/dist/cjs/Pagination/PaginationPrev.js.map +1 -0
- package/dist/cjs/Pagination/index.js +45 -0
- package/dist/cjs/Pagination/index.js.map +1 -0
- package/dist/cjs/Pagination/usePagination.js +101 -0
- package/dist/cjs/Pagination/usePagination.js.map +1 -0
- package/dist/cjs/Pagination/usePaginationIndex.js +67 -0
- package/dist/cjs/Pagination/usePaginationIndex.js.map +1 -0
- package/dist/cjs/Pagination/usePaginationIndex.test.js +31 -0
- package/dist/cjs/Pagination/usePaginationIndex.test.js.map +1 -0
- package/dist/cjs/Panel/Panel.js +43 -0
- package/dist/cjs/Panel/Panel.js.map +1 -0
- package/dist/cjs/Panel/index.js +19 -0
- package/dist/cjs/Panel/index.js.map +1 -0
- package/dist/cjs/Paper/Paper.js +40 -0
- package/dist/cjs/Paper/Paper.js.map +1 -0
- package/dist/cjs/Paper/index.js +19 -0
- package/dist/cjs/Paper/index.js.map +1 -0
- package/dist/cjs/Popper/Popper.js +96 -0
- package/dist/cjs/Popper/Popper.js.map +1 -0
- package/dist/cjs/Popper/index.js +19 -0
- package/dist/cjs/Popper/index.js.map +1 -0
- package/dist/cjs/Popper/useOnClickOutside.js +36 -0
- package/dist/cjs/Popper/useOnClickOutside.js.map +1 -0
- package/dist/cjs/Portal/Portal.js +72 -0
- package/dist/cjs/Portal/Portal.js.map +1 -0
- package/dist/cjs/Portal/PortalContext.js +29 -0
- package/dist/cjs/Portal/PortalContext.js.map +1 -0
- package/dist/cjs/Portal/index.js +32 -0
- package/dist/cjs/Portal/index.js.map +1 -0
- package/dist/cjs/ProgressBar/ProgressBar.js +42 -0
- package/dist/cjs/ProgressBar/ProgressBar.js.map +1 -0
- package/dist/cjs/ProgressBar/index.js +19 -0
- package/dist/cjs/ProgressBar/index.js.map +1 -0
- package/dist/cjs/RadioButton/RadioButton.js +59 -0
- package/dist/cjs/RadioButton/RadioButton.js.map +1 -0
- package/dist/cjs/RadioButton/RadioButtonGroup.js +30 -0
- package/dist/cjs/RadioButton/RadioButtonGroup.js.map +1 -0
- package/dist/cjs/RadioButton/index.js +32 -0
- package/dist/cjs/RadioButton/index.js.map +1 -0
- package/dist/cjs/RelativeTime/RelativeTime.js +34 -0
- package/dist/cjs/RelativeTime/RelativeTime.js.map +1 -0
- package/dist/cjs/RelativeTime/index.js +19 -0
- package/dist/cjs/RelativeTime/index.js.map +1 -0
- package/dist/cjs/SearchField/SearchField.js +53 -0
- package/dist/cjs/SearchField/SearchField.js.map +1 -0
- package/dist/cjs/SearchField/index.js +19 -0
- package/dist/cjs/SearchField/index.js.map +1 -0
- package/dist/cjs/SearchField/useSearch.js +78 -0
- package/dist/cjs/SearchField/useSearch.js.map +1 -0
- package/dist/cjs/SelectField/Select.js +238 -0
- package/dist/cjs/SelectField/Select.js.map +1 -0
- package/dist/cjs/SelectField/SelectField.js +61 -0
- package/dist/cjs/SelectField/SelectField.js.map +1 -0
- package/dist/cjs/SelectField/SelectInnerSpinButton.js +40 -0
- package/dist/cjs/SelectField/SelectInnerSpinButton.js.map +1 -0
- package/dist/cjs/SelectField/SelectList.js +59 -0
- package/dist/cjs/SelectField/SelectList.js.map +1 -0
- package/dist/cjs/SelectField/SelectOption.js +35 -0
- package/dist/cjs/SelectField/SelectOption.js.map +1 -0
- package/dist/cjs/SelectField/index.js +32 -0
- package/dist/cjs/SelectField/index.js.map +1 -0
- package/dist/cjs/SelectSearchField/index.js +101 -0
- package/dist/cjs/SelectSearchField/index.js.map +1 -0
- package/dist/cjs/SortArea/index.js +114 -0
- package/dist/cjs/SortArea/index.js.map +1 -0
- package/dist/cjs/Status/Status.js +51 -0
- package/dist/cjs/Status/Status.js.map +1 -0
- package/dist/cjs/Status/index.js +19 -0
- package/dist/cjs/Status/index.js.map +1 -0
- package/dist/cjs/Steper/Step.js +85 -0
- package/dist/cjs/Steper/Step.js.map +1 -0
- package/dist/cjs/Steper/Steper.js +91 -0
- package/dist/cjs/Steper/Steper.js.map +1 -0
- package/dist/cjs/Steper/index.js +19 -0
- package/dist/cjs/Steper/index.js.map +1 -0
- package/dist/cjs/Table/Table.js +105 -0
- package/dist/cjs/Table/Table.js.map +1 -0
- package/dist/cjs/Table/TableCheckbox.js +87 -0
- package/dist/cjs/Table/TableCheckbox.js.map +1 -0
- package/dist/cjs/Table/index.js +45 -0
- package/dist/cjs/Table/index.js.map +1 -0
- package/dist/cjs/Table/useTable.js +290 -0
- package/dist/cjs/Table/useTable.js.map +1 -0
- package/dist/cjs/Tabs/Tab.js +95 -0
- package/dist/cjs/Tabs/Tab.js.map +1 -0
- package/dist/cjs/Tabs/TabGroup.js +97 -0
- package/dist/cjs/Tabs/TabGroup.js.map +1 -0
- package/dist/cjs/Tabs/TabPanel.js +45 -0
- package/dist/cjs/Tabs/TabPanel.js.map +1 -0
- package/dist/cjs/Tabs/TabPanelGroup.js +25 -0
- package/dist/cjs/Tabs/TabPanelGroup.js.map +1 -0
- package/dist/cjs/Tabs/TabProvider.js +49 -0
- package/dist/cjs/Tabs/TabProvider.js.map +1 -0
- package/dist/cjs/Tabs/index.js +84 -0
- package/dist/cjs/Tabs/index.js.map +1 -0
- package/dist/cjs/Tabs/useTab.js +18 -0
- package/dist/cjs/Tabs/useTab.js.map +1 -0
- package/dist/cjs/TextField/index.js +89 -0
- package/dist/cjs/TextField/index.js.map +1 -0
- package/dist/cjs/TextField/useDitectInputTouched.js +20 -0
- package/dist/cjs/TextField/useDitectInputTouched.js.map +1 -0
- package/dist/cjs/TextField/useValidation.js +86 -0
- package/dist/cjs/TextField/useValidation.js.map +1 -0
- package/dist/cjs/TextareaBase/index.js +29 -0
- package/dist/cjs/TextareaBase/index.js.map +1 -0
- package/dist/cjs/Thumbnail/index.js +186 -0
- package/dist/cjs/Thumbnail/index.js.map +1 -0
- package/dist/cjs/Thumbnail/useIntersectionObserver.js +48 -0
- package/dist/cjs/Thumbnail/useIntersectionObserver.js.map +1 -0
- package/dist/cjs/Time/Time.js +40 -0
- package/dist/cjs/Time/Time.js.map +1 -0
- package/dist/cjs/Time/index.js +19 -0
- package/dist/cjs/Time/index.js.map +1 -0
- package/dist/cjs/Timeline/Timeline.js +149 -0
- package/dist/cjs/Timeline/Timeline.js.map +1 -0
- package/dist/cjs/Timeline/index.js +19 -0
- package/dist/cjs/Timeline/index.js.map +1 -0
- package/dist/cjs/Tooltip/Tooltip.js +129 -0
- package/dist/cjs/Tooltip/Tooltip.js.map +1 -0
- package/dist/cjs/Tooltip/Tooltip.test.js +41 -0
- package/dist/cjs/Tooltip/Tooltip.test.js.map +1 -0
- package/dist/cjs/Tooltip/index.js +19 -0
- package/dist/cjs/Tooltip/index.js.map +1 -0
- package/dist/cjs/Tooltip/useHover.js +35 -0
- package/dist/cjs/Tooltip/useHover.js.map +1 -0
- package/dist/cjs/Typography/index.js +41 -0
- package/dist/cjs/Typography/index.js.map +1 -0
- package/dist/cjs/ViewCarousel/ViewCarousel.js +126 -0
- package/dist/cjs/ViewCarousel/ViewCarousel.js.map +1 -0
- package/dist/cjs/ViewCarousel/index.js +19 -0
- package/dist/cjs/ViewCarousel/index.js.map +1 -0
- package/dist/cjs/WeeklyCalendarUI/WeeklyCalendar.js +120 -0
- package/dist/cjs/WeeklyCalendarUI/WeeklyCalendar.js.map +1 -0
- package/dist/cjs/WeeklyCalendarUI/WeeklyCalendarUI.js +104 -0
- package/dist/cjs/WeeklyCalendarUI/WeeklyCalendarUI.js.map +1 -0
- package/dist/cjs/WeeklyCalendarUI/index.js +32 -0
- package/dist/cjs/WeeklyCalendarUI/index.js.map +1 -0
- package/dist/cjs/ZipCodeField/ZipCodeField.js +277 -0
- package/dist/cjs/ZipCodeField/ZipCodeField.js.map +1 -0
- package/dist/cjs/ZipCodeField/index.js +19 -0
- package/dist/cjs/ZipCodeField/index.js.map +1 -0
- package/dist/cjs/console.d.js +2 -0
- package/dist/cjs/console.d.js.map +1 -0
- package/dist/cjs/dayjs.js +26 -0
- package/dist/cjs/dayjs.js.map +1 -0
- package/dist/cjs/globals.d.js +2 -0
- package/dist/cjs/globals.d.js.map +1 -0
- package/dist/cjs/hooks/index.js +201 -0
- package/dist/cjs/hooks/index.js.map +1 -0
- package/dist/cjs/hooks/useClickAnimation.js +30 -0
- package/dist/cjs/hooks/useClickAnimation.js.map +1 -0
- package/dist/cjs/hooks/useFetch.js +90 -0
- package/dist/cjs/hooks/useFetch.js.map +1 -0
- package/dist/cjs/hooks/useFocus.js +35 -0
- package/dist/cjs/hooks/useFocus.js.map +1 -0
- package/dist/cjs/hooks/useForceUpdate.js +19 -0
- package/dist/cjs/hooks/useForceUpdate.js.map +1 -0
- package/dist/cjs/hooks/useHover.js +37 -0
- package/dist/cjs/hooks/useHover.js.map +1 -0
- package/dist/cjs/hooks/useIntersectionObserver.js +40 -0
- package/dist/cjs/hooks/useIntersectionObserver.js.map +1 -0
- package/dist/cjs/hooks/useInterval.js +32 -0
- package/dist/cjs/hooks/useInterval.js.map +1 -0
- package/dist/cjs/hooks/useKeyboard.js +30 -0
- package/dist/cjs/hooks/useKeyboard.js.map +1 -0
- package/dist/cjs/hooks/useLocaleString.js +27 -0
- package/dist/cjs/hooks/useLocaleString.js.map +1 -0
- package/dist/cjs/hooks/useMouseLongPress.js +35 -0
- package/dist/cjs/hooks/useMouseLongPress.js.map +1 -0
- package/dist/cjs/hooks/useMutationObserver.js +53 -0
- package/dist/cjs/hooks/useMutationObserver.js.map +1 -0
- package/dist/cjs/hooks/useOnClickOutside.js +32 -0
- package/dist/cjs/hooks/useOnClickOutside.js.map +1 -0
- package/dist/cjs/hooks/useResizeObserver.js +55 -0
- package/dist/cjs/hooks/useResizeObserver.js.map +1 -0
- package/dist/cjs/hooks/useTimeout.js +28 -0
- package/dist/cjs/hooks/useTimeout.js.map +1 -0
- package/dist/cjs/hooks/useWindowResize.js +38 -0
- package/dist/cjs/hooks/useWindowResize.js.map +1 -0
- package/dist/cjs/index.js +825 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/cjs/isBrowser.js +9 -0
- package/dist/cjs/isBrowser.js.map +1 -0
- package/dist/cjs/react.d.js +4 -0
- package/dist/cjs/react.d.js.map +1 -0
- package/dist/cjs/theme.js +252 -0
- package/dist/cjs/theme.js.map +1 -0
- package/dist/esm/@typings/DeepPartial.js +2 -0
- package/dist/esm/@typings/DeepPartial.js.map +1 -0
- package/dist/esm/@utils/RelativeTimeFormat.js +19 -0
- package/dist/esm/@utils/RelativeTimeFormat.js.map +1 -0
- package/dist/esm/@utils/debounce.js +217 -0
- package/dist/esm/@utils/debounce.js.map +1 -0
- package/dist/esm/@utils/fetchAddress.js +33 -0
- package/dist/esm/@utils/fetchAddress.js.map +1 -0
- package/dist/esm/@utils/hexToRgba.js +13 -0
- package/dist/esm/@utils/hexToRgba.js.map +1 -0
- package/dist/esm/@utils/index.js +2 -0
- package/dist/esm/@utils/index.js.map +1 -0
- package/dist/esm/@utils/intersection.js +24 -0
- package/dist/esm/@utils/intersection.js.map +1 -0
- package/dist/esm/@utils/isNumericString.js +13 -0
- package/dist/esm/@utils/isNumericString.js.map +1 -0
- package/dist/esm/@utils/isObject.js +5 -0
- package/dist/esm/@utils/isObject.js.map +1 -0
- package/dist/esm/@utils/makeLocaleString.js +15 -0
- package/dist/esm/@utils/makeLocaleString.js.map +1 -0
- package/dist/esm/@utils/mergeDeep.js +16 -0
- package/dist/esm/@utils/mergeDeep.js.map +1 -0
- package/dist/esm/@utils/range.js +28 -0
- package/dist/esm/@utils/range.js.map +1 -0
- package/dist/esm/@utils/sleep.js +2 -0
- package/dist/esm/@utils/sleep.js.map +1 -0
- package/dist/esm/@utils/subordinateComponents.js +8 -0
- package/dist/esm/@utils/subordinateComponents.js.map +1 -0
- package/dist/esm/Alert/Alert.js +184 -0
- package/dist/esm/Alert/Alert.js.map +1 -0
- package/dist/esm/Alert/index.js +2 -0
- package/dist/esm/Alert/index.js.map +1 -0
- package/dist/esm/AsComponentProps.js +2 -0
- package/dist/esm/AsComponentProps.js.map +1 -0
- package/dist/esm/Breadcrumbs/BreadcrumbSeparator.js +27 -0
- package/dist/esm/Breadcrumbs/BreadcrumbSeparator.js.map +1 -0
- package/dist/esm/Breadcrumbs/Breadcrumbs.js +72 -0
- package/dist/esm/Breadcrumbs/Breadcrumbs.js.map +1 -0
- package/dist/esm/Breadcrumbs/index.js +3 -0
- package/dist/esm/Breadcrumbs/index.js.map +1 -0
- package/dist/esm/Button/Button.js +149 -0
- package/dist/esm/Button/Button.js.map +1 -0
- package/dist/esm/Button/index.js +2 -0
- package/dist/esm/Button/index.js.map +1 -0
- package/dist/esm/Calendar/Calendar.js +28 -0
- package/dist/esm/Calendar/Calendar.js.map +1 -0
- package/dist/esm/Calendar/CalendarDay.js +61 -0
- package/dist/esm/Calendar/CalendarDay.js.map +1 -0
- package/dist/esm/Calendar/CalendarDayEvent.js +43 -0
- package/dist/esm/Calendar/CalendarDayEvent.js.map +1 -0
- package/dist/esm/Calendar/CalendarDaysInMonth.js +122 -0
- package/dist/esm/Calendar/CalendarDaysInMonth.js.map +1 -0
- package/dist/esm/Calendar/CalendarWeek.js +57 -0
- package/dist/esm/Calendar/CalendarWeek.js.map +1 -0
- package/dist/esm/Calendar/index.js +4 -0
- package/dist/esm/Calendar/index.js.map +1 -0
- package/dist/esm/CalendarController/CalendarController.js +53 -0
- package/dist/esm/CalendarController/CalendarController.js.map +1 -0
- package/dist/esm/CalendarController/index.js +2 -0
- package/dist/esm/CalendarController/index.js.map +1 -0
- package/dist/esm/CalendarLabel/CalendarLabel.js +30 -0
- package/dist/esm/CalendarLabel/CalendarLabel.js.map +1 -0
- package/dist/esm/CalendarLabel/index.js +2 -0
- package/dist/esm/CalendarLabel/index.js.map +1 -0
- package/dist/esm/CalendarUI/CalendarUIContainer.js +23 -0
- package/dist/esm/CalendarUI/CalendarUIContainer.js.map +1 -0
- package/dist/esm/CalendarUI/CalendarUIHeader.js +19 -0
- package/dist/esm/CalendarUI/CalendarUIHeader.js.map +1 -0
- package/dist/esm/CalendarUI/index.js +120 -0
- package/dist/esm/CalendarUI/index.js.map +1 -0
- package/dist/esm/Card/index.js +54 -0
- package/dist/esm/Card/index.js.map +1 -0
- package/dist/esm/CardMedia/CardMedia.js +32 -0
- package/dist/esm/CardMedia/CardMedia.js.map +1 -0
- package/dist/esm/CardMedia/index.js +2 -0
- package/dist/esm/CardMedia/index.js.map +1 -0
- package/dist/esm/Checkbox/Checkbox.js +76 -0
- package/dist/esm/Checkbox/Checkbox.js.map +1 -0
- package/dist/esm/Checkbox/index.js +2 -0
- package/dist/esm/Checkbox/index.js.map +1 -0
- package/dist/esm/Chip/Chip.js +47 -0
- package/dist/esm/Chip/Chip.js.map +1 -0
- package/dist/esm/Chip/index.js +2 -0
- package/dist/esm/Chip/index.js.map +1 -0
- package/dist/esm/Container/Container.js +18 -0
- package/dist/esm/Container/Container.js.map +1 -0
- package/dist/esm/Container/index.js +2 -0
- package/dist/esm/Container/index.js.map +1 -0
- package/dist/esm/DateField/DateField.js +204 -0
- package/dist/esm/DateField/DateField.js.map +1 -0
- package/dist/esm/DateField/index.js +2 -0
- package/dist/esm/DateField/index.js.map +1 -0
- package/dist/esm/DropArea/DropArea.js +86 -0
- package/dist/esm/DropArea/DropArea.js.map +1 -0
- package/dist/esm/DropArea/index.js +2 -0
- package/dist/esm/DropArea/index.js.map +1 -0
- package/dist/esm/ErrorBoundary/ErrorBoundary.js +51 -0
- package/dist/esm/ErrorBoundary/ErrorBoundary.js.map +1 -0
- package/dist/esm/ErrorBoundary/index.js +2 -0
- package/dist/esm/ErrorBoundary/index.js.map +1 -0
- package/dist/esm/ErrorBoundaryAlert/ErrorBoundaryAlert.js +61 -0
- package/dist/esm/ErrorBoundaryAlert/ErrorBoundaryAlert.js.map +1 -0
- package/dist/esm/ErrorBoundaryAlert/index.js +2 -0
- package/dist/esm/ErrorBoundaryAlert/index.js.map +1 -0
- package/dist/esm/FormControl/FormControl.js +26 -0
- package/dist/esm/FormControl/FormControl.js.map +1 -0
- package/dist/esm/FormControl/index.js +2 -0
- package/dist/esm/FormControl/index.js.map +1 -0
- package/dist/esm/FormHelperText/index.js +26 -0
- package/dist/esm/FormHelperText/index.js.map +1 -0
- package/dist/esm/FullHeight/FullHeight.js +56 -0
- package/dist/esm/FullHeight/FullHeight.js.map +1 -0
- package/dist/esm/FullHeight/index.js +2 -0
- package/dist/esm/FullHeight/index.js.map +1 -0
- package/dist/esm/Icon/ArrowDown.js +17 -0
- package/dist/esm/Icon/ArrowDown.js.map +1 -0
- package/dist/esm/Icon/ArrowLeft.js +16 -0
- package/dist/esm/Icon/ArrowLeft.js.map +1 -0
- package/dist/esm/Icon/ArrowRight.js +17 -0
- package/dist/esm/Icon/ArrowRight.js.map +1 -0
- package/dist/esm/Icon/ArrowUp.js +17 -0
- package/dist/esm/Icon/ArrowUp.js.map +1 -0
- package/dist/esm/Icon/Avator.js +19 -0
- package/dist/esm/Icon/Avator.js.map +1 -0
- package/dist/esm/Icon/Check.js +17 -0
- package/dist/esm/Icon/Check.js.map +1 -0
- package/dist/esm/Icon/CircleFill.js +14 -0
- package/dist/esm/Icon/CircleFill.js.map +1 -0
- package/dist/esm/Icon/Close.js +16 -0
- package/dist/esm/Icon/Close.js.map +1 -0
- package/dist/esm/Icon/Edit.js +20 -0
- package/dist/esm/Icon/Edit.js.map +1 -0
- package/dist/esm/Icon/Minus.js +17 -0
- package/dist/esm/Icon/Minus.js.map +1 -0
- package/dist/esm/Icon/Plus.js +20 -0
- package/dist/esm/Icon/Plus.js.map +1 -0
- package/dist/esm/Icon/Question.js +14 -0
- package/dist/esm/Icon/Question.js.map +1 -0
- package/dist/esm/Icon/QuestionCircle.js +18 -0
- package/dist/esm/Icon/QuestionCircle.js.map +1 -0
- package/dist/esm/Icon/SVGComponents.js +100 -0
- package/dist/esm/Icon/SVGComponents.js.map +1 -0
- package/dist/esm/Icon/Time.js +17 -0
- package/dist/esm/Icon/Time.js.map +1 -0
- package/dist/esm/Icon/Triangle.js +16 -0
- package/dist/esm/Icon/Triangle.js.map +1 -0
- package/dist/esm/Icon/index.js +36 -0
- package/dist/esm/Icon/index.js.map +1 -0
- package/dist/esm/Icon/index.stories.js +94 -0
- package/dist/esm/Icon/index.stories.js.map +1 -0
- package/dist/esm/ImageViewer/ImageViewer.js +150 -0
- package/dist/esm/ImageViewer/ImageViewer.js.map +1 -0
- package/dist/esm/ImageViewer/index.js +2 -0
- package/dist/esm/ImageViewer/index.js.map +1 -0
- package/dist/esm/ImgHTMLAttributes.d.js +2 -0
- package/dist/esm/ImgHTMLAttributes.d.js.map +1 -0
- package/dist/esm/InputBase/InputAdornment.js +58 -0
- package/dist/esm/InputBase/InputAdornment.js.map +1 -0
- package/dist/esm/InputBase/InputBase.js +69 -0
- package/dist/esm/InputBase/InputBase.js.map +1 -0
- package/dist/esm/InputBase/index.js +2 -0
- package/dist/esm/InputBase/index.js.map +1 -0
- package/dist/esm/InputLabel/InputLabel.js +29 -0
- package/dist/esm/InputLabel/InputLabel.js.map +1 -0
- package/dist/esm/InputLabel/index.js +2 -0
- package/dist/esm/InputLabel/index.js.map +1 -0
- package/dist/esm/Layouts/Box.js +34 -0
- package/dist/esm/Layouts/Box.js.map +1 -0
- package/dist/esm/Layouts/Column.js +25 -0
- package/dist/esm/Layouts/Column.js.map +1 -0
- package/dist/esm/Layouts/Item.js +62 -0
- package/dist/esm/Layouts/Item.js.map +1 -0
- package/dist/esm/Layouts/Row.js +2 -0
- package/dist/esm/Layouts/Row.js.map +1 -0
- package/dist/esm/Layouts/index.js +15 -0
- package/dist/esm/Layouts/index.js.map +1 -0
- package/dist/esm/Legend/Legend.js +43 -0
- package/dist/esm/Legend/Legend.js.map +1 -0
- package/dist/esm/Legend/index.js +2 -0
- package/dist/esm/Legend/index.js.map +1 -0
- package/dist/esm/List/List.js +43 -0
- package/dist/esm/List/List.js.map +1 -0
- package/dist/esm/List/ListItem.js +39 -0
- package/dist/esm/List/ListItem.js.map +1 -0
- package/dist/esm/List/ListItemIcon.js +16 -0
- package/dist/esm/List/ListItemIcon.js.map +1 -0
- package/dist/esm/List/index.js +4 -0
- package/dist/esm/List/index.js.map +1 -0
- package/dist/esm/Loading/Loading.js +87 -0
- package/dist/esm/Loading/Loading.js.map +1 -0
- package/dist/esm/Loading/index.js +2 -0
- package/dist/esm/Loading/index.js.map +1 -0
- package/dist/esm/LoadingOverlay/index.js +69 -0
- package/dist/esm/LoadingOverlay/index.js.map +1 -0
- package/dist/esm/LocaleProvider.js +5 -0
- package/dist/esm/LocaleProvider.js.map +1 -0
- package/dist/esm/Menu/Menu.js +35 -0
- package/dist/esm/Menu/Menu.js.map +1 -0
- package/dist/esm/Menu/MenuList.js +24 -0
- package/dist/esm/Menu/MenuList.js.map +1 -0
- package/dist/esm/Menu/index.js +3 -0
- package/dist/esm/Menu/index.js.map +1 -0
- package/dist/esm/Mobile/MobileHeader.js +88 -0
- package/dist/esm/Mobile/MobileHeader.js.map +1 -0
- package/dist/esm/Mobile/MobilePage.js +38 -0
- package/dist/esm/Mobile/MobilePage.js.map +1 -0
- package/dist/esm/Mobile/index.js +4 -0
- package/dist/esm/Mobile/index.js.map +1 -0
- package/dist/esm/Mobile/useMobile.js +113 -0
- package/dist/esm/Mobile/useMobile.js.map +1 -0
- package/dist/esm/Modal/Modal.js +71 -0
- package/dist/esm/Modal/Modal.js.map +1 -0
- package/dist/esm/Modal/ModalBackdrop.js +29 -0
- package/dist/esm/Modal/ModalBackdrop.js.map +1 -0
- package/dist/esm/Modal/ModalBody.js +14 -0
- package/dist/esm/Modal/ModalBody.js.map +1 -0
- package/dist/esm/Modal/ModalContext.js +3 -0
- package/dist/esm/Modal/ModalContext.js.map +1 -0
- package/dist/esm/Modal/ModalFooter.js +14 -0
- package/dist/esm/Modal/ModalFooter.js.map +1 -0
- package/dist/esm/Modal/ModalHeader.js +34 -0
- package/dist/esm/Modal/ModalHeader.js.map +1 -0
- package/dist/esm/Modal/ModalProvider.js +3 -0
- package/dist/esm/Modal/ModalProvider.js.map +1 -0
- package/dist/esm/Modal/index.js +2 -0
- package/dist/esm/Modal/index.js.map +1 -0
- package/dist/esm/MultipleTextField/index.js +73 -0
- package/dist/esm/MultipleTextField/index.js.map +1 -0
- package/dist/esm/NumberField/NumberField.js +139 -0
- package/dist/esm/NumberField/NumberField.js.map +1 -0
- package/dist/esm/NumberField/NumberFormatOptions.js +2 -0
- package/dist/esm/NumberField/NumberFormatOptions.js.map +1 -0
- package/dist/esm/NumberField/index.js +2 -0
- package/dist/esm/NumberField/index.js.map +1 -0
- package/dist/esm/NumericTextField/index.js +93 -0
- package/dist/esm/NumericTextField/index.js.map +1 -0
- package/dist/esm/Overlay/index.js +96 -0
- package/dist/esm/Overlay/index.js.map +1 -0
- package/dist/esm/Pagination/Pagination.js +71 -0
- package/dist/esm/Pagination/Pagination.js.map +1 -0
- package/dist/esm/Pagination/PaginationContainer.js +17 -0
- package/dist/esm/Pagination/PaginationContainer.js.map +1 -0
- package/dist/esm/Pagination/PaginationItem.js +42 -0
- package/dist/esm/Pagination/PaginationItem.js.map +1 -0
- package/dist/esm/Pagination/PaginationMore.js +11 -0
- package/dist/esm/Pagination/PaginationMore.js.map +1 -0
- package/dist/esm/Pagination/PaginationNext.js +14 -0
- package/dist/esm/Pagination/PaginationNext.js.map +1 -0
- package/dist/esm/Pagination/PaginationPrev.js +14 -0
- package/dist/esm/Pagination/PaginationPrev.js.map +1 -0
- package/dist/esm/Pagination/index.js +4 -0
- package/dist/esm/Pagination/index.js.map +1 -0
- package/dist/esm/Pagination/usePagination.js +91 -0
- package/dist/esm/Pagination/usePagination.js.map +1 -0
- package/dist/esm/Pagination/usePaginationIndex.js +52 -0
- package/dist/esm/Pagination/usePaginationIndex.js.map +1 -0
- package/dist/esm/Pagination/usePaginationIndex.test.js +28 -0
- package/dist/esm/Pagination/usePaginationIndex.test.js.map +1 -0
- package/dist/esm/Panel/Panel.js +38 -0
- package/dist/esm/Panel/Panel.js.map +1 -0
- package/dist/esm/Panel/index.js +2 -0
- package/dist/esm/Panel/index.js.map +1 -0
- package/dist/esm/Paper/Paper.js +35 -0
- package/dist/esm/Paper/Paper.js.map +1 -0
- package/dist/esm/Paper/index.js +2 -0
- package/dist/esm/Paper/index.js.map +1 -0
- package/dist/esm/Popper/Popper.js +86 -0
- package/dist/esm/Popper/Popper.js.map +1 -0
- package/dist/esm/Popper/index.js +2 -0
- package/dist/esm/Popper/index.js.map +1 -0
- package/dist/esm/Popper/useOnClickOutside.js +26 -0
- package/dist/esm/Popper/useOnClickOutside.js.map +1 -0
- package/dist/esm/Portal/Portal.js +53 -0
- package/dist/esm/Portal/Portal.js.map +1 -0
- package/dist/esm/Portal/PortalContext.js +13 -0
- package/dist/esm/Portal/PortalContext.js.map +1 -0
- package/dist/esm/Portal/index.js +3 -0
- package/dist/esm/Portal/index.js.map +1 -0
- package/dist/esm/ProgressBar/ProgressBar.js +37 -0
- package/dist/esm/ProgressBar/ProgressBar.js.map +1 -0
- package/dist/esm/ProgressBar/index.js +2 -0
- package/dist/esm/ProgressBar/index.js.map +1 -0
- package/dist/esm/RadioButton/RadioButton.js +48 -0
- package/dist/esm/RadioButton/RadioButton.js.map +1 -0
- package/dist/esm/RadioButton/RadioButtonGroup.js +18 -0
- package/dist/esm/RadioButton/RadioButtonGroup.js.map +1 -0
- package/dist/esm/RadioButton/index.js +3 -0
- package/dist/esm/RadioButton/index.js.map +1 -0
- package/dist/esm/RelativeTime/RelativeTime.js +25 -0
- package/dist/esm/RelativeTime/RelativeTime.js.map +1 -0
- package/dist/esm/RelativeTime/index.js +2 -0
- package/dist/esm/RelativeTime/index.js.map +1 -0
- package/dist/esm/SearchField/SearchField.js +41 -0
- package/dist/esm/SearchField/SearchField.js.map +1 -0
- package/dist/esm/SearchField/index.js +2 -0
- package/dist/esm/SearchField/index.js.map +1 -0
- package/dist/esm/SearchField/useSearch.js +75 -0
- package/dist/esm/SearchField/useSearch.js.map +1 -0
- package/dist/esm/SelectField/Select.js +231 -0
- package/dist/esm/SelectField/Select.js.map +1 -0
- package/dist/esm/SelectField/SelectField.js +52 -0
- package/dist/esm/SelectField/SelectField.js.map +1 -0
- package/dist/esm/SelectField/SelectInnerSpinButton.js +28 -0
- package/dist/esm/SelectField/SelectInnerSpinButton.js.map +1 -0
- package/dist/esm/SelectField/SelectList.js +52 -0
- package/dist/esm/SelectField/SelectList.js.map +1 -0
- package/dist/esm/SelectField/SelectOption.js +29 -0
- package/dist/esm/SelectField/SelectOption.js.map +1 -0
- package/dist/esm/SelectField/index.js +3 -0
- package/dist/esm/SelectField/index.js.map +1 -0
- package/dist/esm/SelectSearchField/index.js +98 -0
- package/dist/esm/SelectSearchField/index.js.map +1 -0
- package/dist/esm/SortArea/index.js +113 -0
- package/dist/esm/SortArea/index.js.map +1 -0
- package/dist/esm/Status/Status.js +47 -0
- package/dist/esm/Status/Status.js.map +1 -0
- package/dist/esm/Status/index.js +2 -0
- package/dist/esm/Status/index.js.map +1 -0
- package/dist/esm/Steper/Step.js +78 -0
- package/dist/esm/Steper/Step.js.map +1 -0
- package/dist/esm/Steper/Steper.js +85 -0
- package/dist/esm/Steper/Steper.js.map +1 -0
- package/dist/esm/Steper/index.js +2 -0
- package/dist/esm/Steper/index.js.map +1 -0
- package/dist/esm/Table/Table.js +116 -0
- package/dist/esm/Table/Table.js.map +1 -0
- package/dist/esm/Table/TableCheckbox.js +81 -0
- package/dist/esm/Table/TableCheckbox.js.map +1 -0
- package/dist/esm/Table/index.js +4 -0
- package/dist/esm/Table/index.js.map +1 -0
- package/dist/esm/Table/useTable.js +308 -0
- package/dist/esm/Table/useTable.js.map +1 -0
- package/dist/esm/Tabs/Tab.js +94 -0
- package/dist/esm/Tabs/Tab.js.map +1 -0
- package/dist/esm/Tabs/TabGroup.js +78 -0
- package/dist/esm/Tabs/TabGroup.js.map +1 -0
- package/dist/esm/Tabs/TabPanel.js +41 -0
- package/dist/esm/Tabs/TabPanel.js.map +1 -0
- package/dist/esm/Tabs/TabPanelGroup.js +13 -0
- package/dist/esm/Tabs/TabPanelGroup.js.map +1 -0
- package/dist/esm/Tabs/TabProvider.js +32 -0
- package/dist/esm/Tabs/TabProvider.js.map +1 -0
- package/dist/esm/Tabs/index.js +7 -0
- package/dist/esm/Tabs/index.js.map +1 -0
- package/dist/esm/Tabs/useTab.js +7 -0
- package/dist/esm/Tabs/useTab.js.map +1 -0
- package/dist/esm/TextField/index.js +76 -0
- package/dist/esm/TextField/index.js.map +1 -0
- package/dist/esm/TextField/useDitectInputTouched.js +10 -0
- package/dist/esm/TextField/useDitectInputTouched.js.map +1 -0
- package/dist/esm/TextField/useValidation.js +80 -0
- package/dist/esm/TextField/useValidation.js.map +1 -0
- package/dist/esm/TextareaBase/index.js +15 -0
- package/dist/esm/TextareaBase/index.js.map +1 -0
- package/dist/esm/Thumbnail/index.js +178 -0
- package/dist/esm/Thumbnail/index.js.map +1 -0
- package/dist/esm/Thumbnail/useIntersectionObserver.js +38 -0
- package/dist/esm/Thumbnail/useIntersectionObserver.js.map +1 -0
- package/dist/esm/Time/Time.js +29 -0
- package/dist/esm/Time/Time.js.map +1 -0
- package/dist/esm/Time/index.js +2 -0
- package/dist/esm/Time/index.js.map +1 -0
- package/dist/esm/Timeline/Timeline.js +160 -0
- package/dist/esm/Timeline/Timeline.js.map +1 -0
- package/dist/esm/Timeline/index.js +2 -0
- package/dist/esm/Timeline/index.js.map +1 -0
- package/dist/esm/Tooltip/Tooltip.js +111 -0
- package/dist/esm/Tooltip/Tooltip.js.map +1 -0
- package/dist/esm/Tooltip/Tooltip.test.js +33 -0
- package/dist/esm/Tooltip/Tooltip.test.js.map +1 -0
- package/dist/esm/Tooltip/index.js +2 -0
- package/dist/esm/Tooltip/index.js.map +1 -0
- package/dist/esm/Tooltip/useHover.js +25 -0
- package/dist/esm/Tooltip/useHover.js.map +1 -0
- package/dist/esm/Typography/index.js +42 -0
- package/dist/esm/Typography/index.js.map +1 -0
- package/dist/esm/ViewCarousel/ViewCarousel.js +111 -0
- package/dist/esm/ViewCarousel/ViewCarousel.js.map +1 -0
- package/dist/esm/ViewCarousel/index.js +2 -0
- package/dist/esm/ViewCarousel/index.js.map +1 -0
- package/dist/esm/WeeklyCalendarUI/WeeklyCalendar.js +102 -0
- package/dist/esm/WeeklyCalendarUI/WeeklyCalendar.js.map +1 -0
- package/dist/esm/WeeklyCalendarUI/WeeklyCalendarUI.js +88 -0
- package/dist/esm/WeeklyCalendarUI/WeeklyCalendarUI.js.map +1 -0
- package/dist/esm/WeeklyCalendarUI/index.js +3 -0
- package/dist/esm/WeeklyCalendarUI/index.js.map +1 -0
- package/dist/esm/ZipCodeField/ZipCodeField.js +263 -0
- package/dist/esm/ZipCodeField/ZipCodeField.js.map +1 -0
- package/dist/esm/ZipCodeField/index.js +2 -0
- package/dist/esm/ZipCodeField/index.js.map +1 -0
- package/dist/esm/console.d.js +2 -0
- package/dist/esm/console.d.js.map +1 -0
- package/dist/esm/dayjs.js +13 -0
- package/dist/esm/dayjs.js.map +1 -0
- package/dist/esm/globals.d.js +2 -0
- package/dist/esm/globals.d.js.map +1 -0
- package/dist/esm/hooks/index.js +16 -0
- package/dist/esm/hooks/index.js.map +1 -0
- package/dist/esm/hooks/useClickAnimation.js +20 -0
- package/dist/esm/hooks/useClickAnimation.js.map +1 -0
- package/dist/esm/hooks/useFetch.js +91 -0
- package/dist/esm/hooks/useFetch.js.map +1 -0
- package/dist/esm/hooks/useFocus.js +26 -0
- package/dist/esm/hooks/useFocus.js.map +1 -0
- package/dist/esm/hooks/useForceUpdate.js +9 -0
- package/dist/esm/hooks/useForceUpdate.js.map +1 -0
- package/dist/esm/hooks/useHover.js +27 -0
- package/dist/esm/hooks/useHover.js.map +1 -0
- package/dist/esm/hooks/useIntersectionObserver.js +30 -0
- package/dist/esm/hooks/useIntersectionObserver.js.map +1 -0
- package/dist/esm/hooks/useInterval.js +21 -0
- package/dist/esm/hooks/useInterval.js.map +1 -0
- package/dist/esm/hooks/useKeyboard.js +19 -0
- package/dist/esm/hooks/useKeyboard.js.map +1 -0
- package/dist/esm/hooks/useLocaleString.js +16 -0
- package/dist/esm/hooks/useLocaleString.js.map +1 -0
- package/dist/esm/hooks/useMouseLongPress.js +23 -0
- package/dist/esm/hooks/useMouseLongPress.js.map +1 -0
- package/dist/esm/hooks/useMutationObserver.js +42 -0
- package/dist/esm/hooks/useMutationObserver.js.map +1 -0
- package/dist/esm/hooks/useOnClickOutside.js +22 -0
- package/dist/esm/hooks/useOnClickOutside.js.map +1 -0
- package/dist/esm/hooks/useResizeObserver.js +40 -0
- package/dist/esm/hooks/useResizeObserver.js.map +1 -0
- package/dist/esm/hooks/useTimeout.js +18 -0
- package/dist/esm/hooks/useTimeout.js.map +1 -0
- package/dist/esm/hooks/useWindowResize.js +26 -0
- package/dist/esm/hooks/useWindowResize.js.map +1 -0
- package/dist/esm/index.js +64 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/isBrowser.js +2 -0
- package/dist/esm/isBrowser.js.map +1 -0
- package/dist/esm/react.d.js +2 -0
- package/dist/esm/react.d.js.map +1 -0
- package/dist/esm/theme.js +214 -0
- package/dist/esm/theme.js.map +1 -0
- package/dist/types/@typings/DeepPartial.d.ts +3 -0
- package/dist/types/@utils/RelativeTimeFormat.d.ts +25 -0
- package/dist/types/@utils/debounce.d.ts +90 -0
- package/dist/types/@utils/fetchAddress.d.ts +8 -0
- package/dist/types/@utils/hexToRgba.d.ts +1 -0
- package/dist/types/@utils/index.d.ts +1 -0
- package/dist/types/@utils/intersection.d.ts +8 -0
- package/dist/types/@utils/isNumericString.d.ts +12 -0
- package/dist/types/@utils/isObject.d.ts +1 -0
- package/dist/types/@utils/makeLocaleString.d.ts +5 -0
- package/dist/types/@utils/mergeDeep.d.ts +2 -0
- package/dist/types/@utils/range.d.ts +1 -0
- package/dist/types/@utils/sleep.d.ts +1 -0
- package/dist/types/@utils/subordinateComponents.d.ts +3 -0
- package/dist/types/@utils/tests/debounce.test.d.ts +1 -0
- package/dist/types/@utils/tests/fetchAddress.test.d.ts +1 -0
- package/dist/types/@utils/tests/mergeDeep.test.d.ts +1 -0
- package/dist/types/@utils/tests/mocks/fetchAddress.mock.d.ts +12 -0
- package/dist/types/@utils/tests/range.test.d.ts +1 -0
- package/dist/types/Alert/Alert.d.ts +34 -0
- package/dist/types/Alert/index.d.ts +1 -0
- package/dist/types/AsComponentProps.d.ts +14 -0
- package/dist/types/Breadcrumbs/BreadcrumbSeparator.d.ts +4 -0
- package/dist/types/Breadcrumbs/Breadcrumbs.d.ts +6 -0
- package/dist/types/Breadcrumbs/index.d.ts +2 -0
- package/dist/types/Button/Button.d.ts +36 -0
- package/dist/types/Button/index.d.ts +1 -0
- package/dist/types/Calendar/Calendar.d.ts +7 -0
- package/dist/types/Calendar/CalendarDay.d.ts +16 -0
- package/dist/types/Calendar/CalendarDayEvent.d.ts +9 -0
- package/dist/types/Calendar/CalendarDaysInMonth.d.ts +33 -0
- package/dist/types/Calendar/CalendarWeek.d.ts +6 -0
- package/dist/types/Calendar/index.d.ts +3 -0
- package/dist/types/CalendarController/CalendarController.d.ts +12 -0
- package/dist/types/CalendarController/index.d.ts +1 -0
- package/dist/types/CalendarLabel/CalendarLabel.d.ts +8 -0
- package/dist/types/CalendarLabel/index.d.ts +1 -0
- package/dist/types/CalendarUI/CalendarUIContainer.d.ts +9 -0
- package/dist/types/CalendarUI/CalendarUIHeader.d.ts +2 -0
- package/dist/types/CalendarUI/index.d.ts +34 -0
- package/dist/types/Card/index.d.ts +6 -0
- package/dist/types/CardMedia/CardMedia.d.ts +17 -0
- package/dist/types/CardMedia/index.d.ts +1 -0
- package/dist/types/Checkbox/Checkbox.d.ts +17 -0
- package/dist/types/Checkbox/index.d.ts +1 -0
- package/dist/types/Chip/Chip.d.ts +30 -0
- package/dist/types/Chip/index.d.ts +1 -0
- package/dist/types/Container/Container.d.ts +6 -0
- package/dist/types/Container/index.d.ts +1 -0
- package/dist/types/DateField/DateField.d.ts +20 -0
- package/dist/types/DateField/index.d.ts +1 -0
- package/dist/types/DropArea/DropArea.d.ts +13 -0
- package/dist/types/DropArea/index.d.ts +1 -0
- package/dist/types/ErrorBoundary/ErrorBoundary.d.ts +30 -0
- package/dist/types/ErrorBoundary/index.d.ts +1 -0
- package/dist/types/ErrorBoundaryAlert/ErrorBoundaryAlert.d.ts +5 -0
- package/dist/types/ErrorBoundaryAlert/index.d.ts +1 -0
- package/dist/types/FormControl/FormControl.d.ts +2 -0
- package/dist/types/FormControl/index.d.ts +1 -0
- package/dist/types/FormHelperText/index.d.ts +11 -0
- package/dist/types/FullHeight/FullHeight.d.ts +6 -0
- package/dist/types/FullHeight/index.d.ts +1 -0
- package/dist/types/Icon/ArrowDown.d.ts +3 -0
- package/dist/types/Icon/ArrowLeft.d.ts +3 -0
- package/dist/types/Icon/ArrowRight.d.ts +3 -0
- package/dist/types/Icon/ArrowUp.d.ts +3 -0
- package/dist/types/Icon/Avator.d.ts +3 -0
- package/dist/types/Icon/Check.d.ts +3 -0
- package/dist/types/Icon/CircleFill.d.ts +3 -0
- package/dist/types/Icon/Close.d.ts +3 -0
- package/dist/types/Icon/Edit.d.ts +3 -0
- package/dist/types/Icon/Minus.d.ts +3 -0
- package/dist/types/Icon/Plus.d.ts +3 -0
- package/dist/types/Icon/Question.d.ts +3 -0
- package/dist/types/Icon/QuestionCircle.d.ts +3 -0
- package/dist/types/Icon/SVGComponents.d.ts +19 -0
- package/dist/types/Icon/Time.d.ts +3 -0
- package/dist/types/Icon/Triangle.d.ts +3 -0
- package/dist/types/Icon/index.d.ts +22 -0
- package/dist/types/ImageViewer/ImageViewer.d.ts +9 -0
- package/dist/types/ImageViewer/index.d.ts +1 -0
- package/dist/types/InputBase/InputAdornment.d.ts +5 -0
- package/dist/types/InputBase/InputBase.d.ts +15 -0
- package/dist/types/InputBase/index.d.ts +2 -0
- package/dist/types/InputLabel/InputLabel.d.ts +5 -0
- package/dist/types/InputLabel/index.d.ts +1 -0
- package/dist/types/Layouts/Box.d.ts +35 -0
- package/dist/types/Layouts/Column.d.ts +2 -0
- package/dist/types/Layouts/Item.d.ts +9 -0
- package/dist/types/Layouts/Row.d.ts +1 -0
- package/dist/types/Layouts/index.d.ts +11 -0
- package/dist/types/Legend/Legend.d.ts +10 -0
- package/dist/types/Legend/index.d.ts +1 -0
- package/dist/types/List/List.d.ts +11 -0
- package/dist/types/List/ListItem.d.ts +4 -0
- package/dist/types/List/ListItemIcon.d.ts +4 -0
- package/dist/types/List/index.d.ts +3 -0
- package/dist/types/Loading/Loading.d.ts +6 -0
- package/dist/types/Loading/index.d.ts +1 -0
- package/dist/types/LoadingOverlay/index.d.ts +9 -0
- package/dist/types/LocaleProvider.d.ts +3 -0
- package/dist/types/Menu/Menu.d.ts +8 -0
- package/dist/types/Menu/MenuList.d.ts +12 -0
- package/dist/types/Menu/index.d.ts +2 -0
- package/dist/types/Mobile/MobileHeader.d.ts +20 -0
- package/dist/types/Mobile/MobilePage.d.ts +4 -0
- package/dist/types/Mobile/index.d.ts +3 -0
- package/dist/types/Mobile/useMobile.d.ts +35 -0
- package/dist/types/Modal/Modal.d.ts +53 -0
- package/dist/types/Modal/ModalBackdrop.d.ts +2 -0
- package/dist/types/Modal/ModalBody.d.ts +2 -0
- package/dist/types/Modal/ModalContext.d.ts +3 -0
- package/dist/types/Modal/ModalFooter.d.ts +2 -0
- package/dist/types/Modal/ModalHeader.d.ts +2 -0
- package/dist/types/Modal/ModalProvider.d.ts +2 -0
- package/dist/types/Modal/index.d.ts +1 -0
- package/dist/types/MultipleTextField/index.d.ts +7 -0
- package/dist/types/NumberField/NumberField.d.ts +33 -0
- package/dist/types/NumberField/NumberFormatOptions.d.ts +12 -0
- package/dist/types/NumberField/index.d.ts +1 -0
- package/dist/types/NumericTextField/index.d.ts +7 -0
- package/dist/types/Overlay/index.d.ts +47 -0
- package/dist/types/Pagination/Pagination.d.ts +37 -0
- package/dist/types/Pagination/PaginationContainer.d.ts +2 -0
- package/dist/types/Pagination/PaginationItem.d.ts +7 -0
- package/dist/types/Pagination/PaginationMore.d.ts +7 -0
- package/dist/types/Pagination/PaginationNext.d.ts +3 -0
- package/dist/types/Pagination/PaginationPrev.d.ts +3 -0
- package/dist/types/Pagination/index.d.ts +3 -0
- package/dist/types/Pagination/usePagination.d.ts +38 -0
- package/dist/types/Pagination/usePaginationIndex.d.ts +12 -0
- package/dist/types/Pagination/usePaginationIndex.test.d.ts +1 -0
- package/dist/types/Panel/Panel.d.ts +24 -0
- package/dist/types/Panel/index.d.ts +1 -0
- package/dist/types/Paper/Paper.d.ts +16 -0
- package/dist/types/Paper/index.d.ts +1 -0
- package/dist/types/Popper/Popper.d.ts +35 -0
- package/dist/types/Popper/index.d.ts +1 -0
- package/dist/types/Popper/useOnClickOutside.d.ts +1 -0
- package/dist/types/Portal/Portal.d.ts +15 -0
- package/dist/types/Portal/PortalContext.d.ts +6 -0
- package/dist/types/Portal/index.d.ts +2 -0
- package/dist/types/ProgressBar/ProgressBar.d.ts +30 -0
- package/dist/types/ProgressBar/index.d.ts +1 -0
- package/dist/types/RadioButton/RadioButton.d.ts +26 -0
- package/dist/types/RadioButton/RadioButtonGroup.d.ts +8 -0
- package/dist/types/RadioButton/index.d.ts +2 -0
- package/dist/types/RelativeTime/RelativeTime.d.ts +15 -0
- package/dist/types/RelativeTime/index.d.ts +1 -0
- package/dist/types/SearchField/SearchField.d.ts +17 -0
- package/dist/types/SearchField/index.d.ts +1 -0
- package/dist/types/SearchField/useSearch.d.ts +14 -0
- package/dist/types/SelectField/Select.d.ts +54 -0
- package/dist/types/SelectField/SelectField.d.ts +12 -0
- package/dist/types/SelectField/SelectInnerSpinButton.d.ts +4 -0
- package/dist/types/SelectField/SelectList.d.ts +3 -0
- package/dist/types/SelectField/SelectOption.d.ts +8 -0
- package/dist/types/SelectField/index.d.ts +2 -0
- package/dist/types/SelectSearchField/index.d.ts +11 -0
- package/dist/types/SortArea/index.d.ts +15 -0
- package/dist/types/Status/Status.d.ts +5 -0
- package/dist/types/Status/index.d.ts +1 -0
- package/dist/types/Steper/Step.d.ts +7 -0
- package/dist/types/Steper/Steper.d.ts +7 -0
- package/dist/types/Steper/index.d.ts +1 -0
- package/dist/types/Table/Table.d.ts +33 -0
- package/dist/types/Table/TableCheckbox.d.ts +9 -0
- package/dist/types/Table/index.d.ts +3 -0
- package/dist/types/Table/useTable.d.ts +87 -0
- package/dist/types/Tabs/Tab.d.ts +10 -0
- package/dist/types/Tabs/TabGroup.d.ts +6 -0
- package/dist/types/Tabs/TabPanel.d.ts +4 -0
- package/dist/types/Tabs/TabPanelGroup.d.ts +2 -0
- package/dist/types/Tabs/TabProvider.d.ts +12 -0
- package/dist/types/Tabs/index.d.ts +6 -0
- package/dist/types/Tabs/useTab.d.ts +1 -0
- package/dist/types/TextField/index.d.ts +41 -0
- package/dist/types/TextField/useDitectInputTouched.d.ts +4 -0
- package/dist/types/TextField/useValidation.d.ts +18 -0
- package/dist/types/TextareaBase/index.d.ts +4 -0
- package/dist/types/Thumbnail/index.d.ts +49 -0
- package/dist/types/Thumbnail/useIntersectionObserver.d.ts +4 -0
- package/dist/types/Time/Time.d.ts +72 -0
- package/dist/types/Time/index.d.ts +1 -0
- package/dist/types/Timeline/Timeline.d.ts +79 -0
- package/dist/types/Timeline/index.d.ts +1 -0
- package/dist/types/Tooltip/Tooltip.d.ts +19 -0
- package/dist/types/Tooltip/Tooltip.test.d.ts +1 -0
- package/dist/types/Tooltip/index.d.ts +1 -0
- package/dist/types/Tooltip/useHover.d.ts +1 -0
- package/dist/types/Typography/index.d.ts +46 -0
- package/dist/types/ViewCarousel/ViewCarousel.d.ts +9 -0
- package/dist/types/ViewCarousel/index.d.ts +1 -0
- package/dist/types/WeeklyCalendarUI/WeeklyCalendar.d.ts +22 -0
- package/dist/types/WeeklyCalendarUI/WeeklyCalendarUI.d.ts +21 -0
- package/dist/types/WeeklyCalendarUI/index.d.ts +2 -0
- package/dist/types/ZipCodeField/ZipCodeField.d.ts +59 -0
- package/dist/types/ZipCodeField/index.d.ts +1 -0
- package/dist/types/dayjs.d.ts +2 -0
- package/dist/types/hooks/index.d.ts +15 -0
- package/dist/types/hooks/useClickAnimation.d.ts +5 -0
- package/dist/types/hooks/useFetch.d.ts +5 -0
- package/dist/types/hooks/useFocus.d.ts +2 -0
- package/dist/types/hooks/useForceUpdate.d.ts +1 -0
- package/dist/types/hooks/useHover.d.ts +2 -0
- package/dist/types/hooks/useIntersectionObserver.d.ts +1 -0
- package/dist/types/hooks/useInterval.d.ts +3 -0
- package/dist/types/hooks/useKeyboard.d.ts +1 -0
- package/dist/types/hooks/useLocaleString.d.ts +5 -0
- package/dist/types/hooks/useMouseLongPress.d.ts +6 -0
- package/dist/types/hooks/useMutationObserver.d.ts +1 -0
- package/dist/types/hooks/useOnClickOutside.d.ts +1 -0
- package/dist/types/hooks/useResizeObserver.d.ts +2 -0
- package/dist/types/hooks/useTimeout.d.ts +3 -0
- package/dist/types/hooks/useWindowResize.d.ts +4 -0
- package/dist/types/index.d.ts +63 -0
- package/dist/types/isBrowser.d.ts +1 -0
- package/dist/types/tests/index.test.d.ts +1 -0
- package/dist/types/theme.d.ts +385 -0
- package/package.json +135 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,2680 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
### [9.7.2-alpha.0](https://github.com/matsuri-tech/matsuri-ui/compare/v9.7.1...v9.7.2-alpha.0) (2021-09-24)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **ErrorBoundary:** update state without onError prop ([f76add5](https://github.com/matsuri-tech/matsuri-ui/commit/f76add5e3d36bd31fa5e2444fdca0f0cd7eb2f72))
|
|
11
|
+
* **hooks/useFetch:** types ([009018e](https://github.com/matsuri-tech/matsuri-ui/commit/009018e81e3d5397f4245165edd0341013522cf4))
|
|
12
|
+
|
|
13
|
+
### [9.7.1](https://github.com/matsuri-tech/matsuri-ui/compare/v9.7.0...v9.7.1) (2021-08-06)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **NumberField:** disable MouseWheel event ([75e31d0](https://github.com/matsuri-tech/matsuri-ui/commit/75e31d055671e7cc568f03bac4763f00b6f908e1))
|
|
19
|
+
|
|
20
|
+
## [9.7.0](https://github.com/matsuri-tech/matsuri-ui/compare/v9.6.1...v9.7.0) (2021-08-06)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
* **Modal:** add width, maxWidth prop ([008b309](https://github.com/matsuri-tech/matsuri-ui/commit/008b30956713fae120bc5e183e0c3ca73dcd6502))
|
|
26
|
+
* **Tooltip:** add open prop instead of debug prop ([a0559b6](https://github.com/matsuri-tech/matsuri-ui/commit/a0559b6e9ff51f9c34fe24cb7197d9eb8520f1f6))
|
|
27
|
+
* **Tooltip:** add support of string children ([316d34d](https://github.com/matsuri-tech/matsuri-ui/commit/316d34d2432f0a75bc8821bdf40f3a6e13a79f94))
|
|
28
|
+
* **Tooltip:** improve animation ([14b86bc](https://github.com/matsuri-tech/matsuri-ui/commit/14b86bc483360a3186aaeb334e518569edb59081))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
* type ([9c6104f](https://github.com/matsuri-tech/matsuri-ui/commit/9c6104f7d54775760b9be528b23115a6e6bf4d1b))
|
|
34
|
+
* **ErrorBoundary:** typo ([04af442](https://github.com/matsuri-tech/matsuri-ui/commit/04af4426e883cfe03ddbdcbe2c4e207faf6cc897))
|
|
35
|
+
* export PortalContext ([d2cf072](https://github.com/matsuri-tech/matsuri-ui/commit/d2cf072e86970be99be02a1be3ac34c8eae4348c))
|
|
36
|
+
|
|
37
|
+
### [9.6.1](https://github.com/matsuri-tech/matsuri-ui/compare/v9.6.0...v9.6.1) (2021-07-06)
|
|
38
|
+
|
|
39
|
+
## [9.6.0](https://github.com/matsuri-tech/matsuri-ui/compare/v9.5.0...v9.6.0) (2021-06-29)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
### Features
|
|
43
|
+
|
|
44
|
+
* **DateField:** add helperText, invalid props ([2e28b34](https://github.com/matsuri-tech/matsuri-ui/commit/2e28b34e0ba46f12f3564715a4c3e80d5a96a3a9))
|
|
45
|
+
* **DateField:** remove month type ([3d73b55](https://github.com/matsuri-tech/matsuri-ui/commit/3d73b551e3d3f3054dc248b13c16df0cce79f055))
|
|
46
|
+
* **MultipleTextField:** add helperText, invalid props ([f4a31b0](https://github.com/matsuri-tech/matsuri-ui/commit/f4a31b0ffef5df6d7211489be7861339ea2e02ca))
|
|
47
|
+
* **NumberField:** add helperText, invalid props ([58294b1](https://github.com/matsuri-tech/matsuri-ui/commit/58294b16c1422c867faf0aa7f0f140defcb97e9b))
|
|
48
|
+
* **NumericTextField:** add helperText, invalid props ([12319ea](https://github.com/matsuri-tech/matsuri-ui/commit/12319ea375756a1738115708f2eaffa0a8a7bb4b))
|
|
49
|
+
* **SelectField:** add helperText, invalid props ([5d7e807](https://github.com/matsuri-tech/matsuri-ui/commit/5d7e8076962594243ff754ceb64c78f7a4fc34b4))
|
|
50
|
+
* **TextField:** add helperText, invalid props ([e312a9f](https://github.com/matsuri-tech/matsuri-ui/commit/e312a9f4ed95a25b91987ca4aa296ab552777982))
|
|
51
|
+
* **TextField:** make helperText prop approve React.ReactNode ([ad69ff6](https://github.com/matsuri-tech/matsuri-ui/commit/ad69ff6788c0ce77067f63a4bf5ca97bf4a44e23))
|
|
52
|
+
* **ZipCodeField:** add helperText, invalid props ([d226c51](https://github.com/matsuri-tech/matsuri-ui/commit/d226c5174abba507d3e50a9fc56271b9c6704e42))
|
|
53
|
+
|
|
54
|
+
## [9.5.0](https://github.com/matsuri-tech/matsuri-ui/compare/v9.4.0...v9.5.0) (2021-06-23)
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
### Features
|
|
58
|
+
|
|
59
|
+
* **NumericTextField:** add pattern attribute ([7c3c169](https://github.com/matsuri-tech/matsuri-ui/commit/7c3c16918ff1437bb469e0b47cbbf89f8ebad1d9))
|
|
60
|
+
* **Select:** label of undefined value has priority, if placeholder is undefined ([91b341d](https://github.com/matsuri-tech/matsuri-ui/commit/91b341d5260e98540087391bb79eeab410dacadf))
|
|
61
|
+
* **Select:** placeholder has priority, if value has never been updated ([0dc0650](https://github.com/matsuri-tech/matsuri-ui/commit/0dc06501b56fa92fd0e1143b7e31357059cc4650))
|
|
62
|
+
* add NumericTextField ([6ec67b2](https://github.com/matsuri-tech/matsuri-ui/commit/6ec67b29086060989c2d4aba9d27cc2017b60f16))
|
|
63
|
+
* export NumericTextField ([f692fc6](https://github.com/matsuri-tech/matsuri-ui/commit/f692fc614b28f66286e1109486694f11e9af9710))
|
|
64
|
+
|
|
65
|
+
## [9.4.0](https://github.com/matsuri-tech/matsuri-ui/compare/v9.3.2...v9.4.0) (2021-06-18)
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
### Features
|
|
69
|
+
|
|
70
|
+
* **Table:** add ColumnLayoutProperties to useTable.args.columns[] ([f230d80](https://github.com/matsuri-tech/matsuri-ui/commit/f230d8076071a40901974b09dc48cf427e4ceb29))
|
|
71
|
+
* **Table:** export TableCell type & TableColumns type ([f796b3a](https://github.com/matsuri-tech/matsuri-ui/commit/f796b3ab0ba7a54938f6445f2afaa8252d292ec5))
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Bug Fixes
|
|
75
|
+
|
|
76
|
+
* typo ([2c32098](https://github.com/matsuri-tech/matsuri-ui/commit/2c3209887a6a6d450f2b2e7589b2069a87b1a017))
|
|
77
|
+
|
|
78
|
+
### [9.3.2](https://github.com/matsuri-tech/matsuri-ui/compare/v9.3.1...v9.3.2) (2021-06-16)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
### Bug Fixes
|
|
82
|
+
|
|
83
|
+
* **Pagination:** replace PageSize with initialPageSize ([1fdfdb0](https://github.com/matsuri-tech/matsuri-ui/commit/1fdfdb0d46ee7537510cd07f7ab3144194de3634))
|
|
84
|
+
* **SelectField:** make inner input large enough ([010b4db](https://github.com/matsuri-tech/matsuri-ui/commit/010b4db1d0a7d1ab2a00e2a1b223a1c7d15d7a43))
|
|
85
|
+
|
|
86
|
+
### [9.3.1](https://github.com/matsuri-tech/matsuri-ui/compare/v9.3.0...v9.3.1) (2021-06-11)
|
|
87
|
+
|
|
88
|
+
## [9.3.0](https://github.com/matsuri-tech/matsuri-ui/compare/v9.2.0...v9.3.0) (2021-05-27)
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
### Features
|
|
92
|
+
|
|
93
|
+
* **ErrorBoundary:** make props.fallback add support for react element function ([346f4d2](https://github.com/matsuri-tech/matsuri-ui/commit/346f4d2d9f33b3df4ce384a21860b2cc8e9b5d6e))
|
|
94
|
+
* **SelectSearchField:** make SelectSearchFieldProps.items add label property ([45708da](https://github.com/matsuri-tech/matsuri-ui/commit/45708da7df8b418291f04dd6e7f0a43a1928e5f4))
|
|
95
|
+
|
|
96
|
+
## [9.2.0](https://github.com/matsuri-tech/matsuri-ui/compare/v9.1.0...v9.2.0) (2021-05-12)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
### Features
|
|
100
|
+
|
|
101
|
+
* **Table:** allow additional Cell logic ([cb1fb1f](https://github.com/matsuri-tech/matsuri-ui/commit/cb1fb1f89c2993ec51ca4246685077c90417cb95))
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### Bug Fixes
|
|
105
|
+
|
|
106
|
+
* **Alert:** add support for long long sentence that cannot break lines ([41a03a3](https://github.com/matsuri-tech/matsuri-ui/commit/41a03a30c87f69f8541235f4c089287f0ff15e6a))
|
|
107
|
+
* **RadioButton:** extend type with InputHTMLAttributes ([e76f7bb](https://github.com/matsuri-tech/matsuri-ui/commit/e76f7bbab3dfee4e540d15655c1fd1df81e05d81))
|
|
108
|
+
|
|
109
|
+
## [9.1.0](https://github.com/matsuri-tech/matsuri-ui/compare/v9.0.1...v9.1.0) (2021-04-26)
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
### Features
|
|
113
|
+
|
|
114
|
+
* **DateField:** export DATE_FORMAT ([c296e24](https://github.com/matsuri-tech/matsuri-ui/commit/c296e24b760e562fd76b0e9c32d97973f537d992))
|
|
115
|
+
* **SelectField:** add onChangeValue prop & support of undefined data values ([234b521](https://github.com/matsuri-tech/matsuri-ui/commit/234b521961719e0aed446e37811a7273364dc170))
|
|
116
|
+
|
|
117
|
+
### [9.0.1](https://github.com/matsuri-tech/matsuri-ui/compare/v9.0.1-alpha.0...v9.0.1) (2021-04-22)
|
|
118
|
+
|
|
119
|
+
### [9.0.1-alpha.0](https://github.com/matsuri-tech/matsuri-ui/compare/v9.0.0...v9.0.1-alpha.0) (2021-04-22)
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
### Bug Fixes
|
|
123
|
+
|
|
124
|
+
* **Chip:** inherit cursor value ([3b7c4c8](https://github.com/matsuri-tech/matsuri-ui/commit/3b7c4c83c745285808b2ae9e182739e97011d5da))
|
|
125
|
+
|
|
126
|
+
## [9.0.0](https://github.com/matsuri-tech/matsuri-ui/compare/v8.2.0-alpha.0...v9.0.0) (2021-04-21)
|
|
127
|
+
|
|
128
|
+
## [8.2.0-alpha.0](https://github.com/matsuri-tech/matsuri-ui/compare/v8.1.3-alpha.0...v8.2.0-alpha.0) (2021-04-21)
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
### Features
|
|
132
|
+
|
|
133
|
+
* **Fields:** add bottomGutter prop ([b7dfa1d](https://github.com/matsuri-tech/matsuri-ui/commit/b7dfa1d23d0ee361b512f7df60b13be8ae81b393))
|
|
134
|
+
|
|
135
|
+
### [8.1.3-alpha.0](https://github.com/matsuri-tech/matsuri-ui/compare/v8.1.2...v8.1.3-alpha.0) (2021-04-09)
|
|
136
|
+
|
|
137
|
+
### [8.1.1](https://github.com/matsuri-tech/matsuri-ui/compare/v8.1.0...v8.1.1) (2021-04-07)
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
### Bug Fixes
|
|
141
|
+
|
|
142
|
+
* **SelectField:** keep the previous state ([1fdad2a](https://github.com/matsuri-tech/matsuri-ui/commit/1fdad2a8fa83287034aa3b11719b84a56dda78bd))
|
|
143
|
+
|
|
144
|
+
### [8.1.2](https://github.com/matsuri-tech/matsuri-ui/compare/v8.1.0...v8.1.2) (2021-04-08)
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
### Bug Fixes
|
|
148
|
+
|
|
149
|
+
* **SelectField:** keep the previous state ([c0b9f96](https://github.com/matsuri-tech/matsuri-ui/commit/c0b9f9680272a8d29534257a31ebac5a0d1296bd))
|
|
150
|
+
|
|
151
|
+
## [8.1.0](https://github.com/matsuri-tech/matsuri-ui/compare/v8.1.0-alpha.0...v8.1.0) (2021-03-10)
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
### Features
|
|
155
|
+
|
|
156
|
+
* **components:** add SelectSearchField ([fdff96c](https://github.com/matsuri-tech/matsuri-ui/commit/fdff96c8d613e17802a836880ebbc52f70108857))
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
### Bug Fixes
|
|
160
|
+
|
|
161
|
+
* **Button:** make TextButton convert hover effect to active effect ([aca3805](https://github.com/matsuri-tech/matsuri-ui/commit/aca3805e12dd4deed38401badd395e9b9e9d8a6c))
|
|
162
|
+
* **Button:** replace active effect with clicked effect ([0eb8a51](https://github.com/matsuri-tech/matsuri-ui/commit/0eb8a5116bca420624b680a76d1e4a82021b4737))
|
|
163
|
+
* **DateField:** improve UI ([2ead5dc](https://github.com/matsuri-tech/matsuri-ui/commit/2ead5dc59afd384808d1c4f2a69769e740a910b8))
|
|
164
|
+
* **Inputs:** improve UI ([2f1af4b](https://github.com/matsuri-tech/matsuri-ui/commit/2f1af4b37e2f26666111890260d926c2f48b5afd))
|
|
165
|
+
* **Pagination:** make PaginationItem disable animation ([5ffc299](https://github.com/matsuri-tech/matsuri-ui/commit/5ffc29924539a5ebd4f39cf81cb099dacaa7af9d))
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
### Others
|
|
169
|
+
|
|
170
|
+
* make git-hook remove typecheck ([b77b10b](https://github.com/matsuri-tech/matsuri-ui/commit/b77b10b7820b5c6d43dca9c8df463406c59c66bb))
|
|
171
|
+
* **deps:** update dependency @types/react-dom to v16.9.11 ([#1038](https://github.com/matsuri-tech/matsuri-ui/issues/1038)) ([d0caf9b](https://github.com/matsuri-tech/matsuri-ui/commit/d0caf9be07d81a5c4936d2ae9f60cb9afa4c3a10))
|
|
172
|
+
* **deps:** update dependency husky to v4.3.8 ([#1030](https://github.com/matsuri-tech/matsuri-ui/issues/1030)) ([3203f33](https://github.com/matsuri-tech/matsuri-ui/commit/3203f33e2cdb1ac5f4be32323862f5c107b53994))
|
|
173
|
+
* **deps:** update dependency ts-loader to v8.0.15 ([#1032](https://github.com/matsuri-tech/matsuri-ui/issues/1032)) ([bbd3514](https://github.com/matsuri-tech/matsuri-ui/commit/bbd35142d9b9e937832d1e35adc2331754ef646a))
|
|
174
|
+
* **deps:** update dependency ts-loader to v8.0.16 ([#1033](https://github.com/matsuri-tech/matsuri-ui/issues/1033)) ([c42bc85](https://github.com/matsuri-tech/matsuri-ui/commit/c42bc85691f00812b923d6a188cb580ca5cd640a))
|
|
175
|
+
* **deps:** update dependency ts-loader to v8.0.17 ([#1036](https://github.com/matsuri-tech/matsuri-ui/issues/1036)) ([e2b907d](https://github.com/matsuri-tech/matsuri-ui/commit/e2b907d581c36a52dcab5d9ced713a0205043357))
|
|
176
|
+
* **deps:** update dependency typescript to v4.0.7 ([#1037](https://github.com/matsuri-tech/matsuri-ui/issues/1037)) ([2fbc985](https://github.com/matsuri-tech/matsuri-ui/commit/2fbc9851077cceab3353e72e63447b28e246bf48))
|
|
177
|
+
|
|
178
|
+
## [8.1.0-alpha.0](https://github.com/matsuri-tech/matsuri-ui/compare/v8.0.0-alpha.0...v8.1.0-alpha.0) (2021-01-15)
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
### Features
|
|
182
|
+
|
|
183
|
+
* **Portal:** add PortalProvider to be able to specify all Portals to the specified Node ([8df3a2a](https://github.com/matsuri-tech/matsuri-ui/commit/8df3a2a01b3603ccf51a7ce65eff785d38fd32b4))
|
|
184
|
+
|
|
185
|
+
# [8.0.0](https://github.com/matsuri-tech/matsuri-ui/compare/v8.0.0-alpha.0...v8.0.0) (2021-01-14)
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
# Changelog
|
|
190
|
+
|
|
191
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
192
|
+
|
|
193
|
+
## [8.0.0-alpha.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.15.0...v8.0.0-alpha.0) (2021-01-14)
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
### Features
|
|
197
|
+
|
|
198
|
+
* make @emotion/react to an external pkg ([8146a10](https://github.com/matsuri-tech/matsuri-ui/commit/8146a109606ccd61610db3013bdb81549016659e))
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
### Others
|
|
202
|
+
|
|
203
|
+
* **deps:** update dependency @popperjs/core to v2.5.4 ([#979](https://github.com/matsuri-tech/matsuri-ui/issues/979)) ([64d02d5](https://github.com/matsuri-tech/matsuri-ui/commit/64d02d56dc385e0e00c55a0ea723199f3f717db5))
|
|
204
|
+
* **deps:** update dependency @storybook/addons to v6.0.25 ([#951](https://github.com/matsuri-tech/matsuri-ui/issues/951)) ([243f669](https://github.com/matsuri-tech/matsuri-ui/commit/243f669a0742a9f23dc58e4da107f7046b92db2b))
|
|
205
|
+
* **deps:** update dependency @types/jest to v26.0.15 ([#967](https://github.com/matsuri-tech/matsuri-ui/issues/967)) ([5cd5c8f](https://github.com/matsuri-tech/matsuri-ui/commit/5cd5c8f9775d5bbeb52a752281f53c26a9f1bc07))
|
|
206
|
+
* **deps:** update dependency @types/jest to v26.0.16 ([#1000](https://github.com/matsuri-tech/matsuri-ui/issues/1000)) ([685348e](https://github.com/matsuri-tech/matsuri-ui/commit/685348e39296432cb12e37331a6786575cf23b3a))
|
|
207
|
+
* **deps:** update dependency @types/jest to v26.0.17 ([#1005](https://github.com/matsuri-tech/matsuri-ui/issues/1005)) ([815655a](https://github.com/matsuri-tech/matsuri-ui/commit/815655a2be1607d691b16fe6e670aea7dfd8dcd5))
|
|
208
|
+
* **deps:** update dependency @types/jest to v26.0.18 ([#1006](https://github.com/matsuri-tech/matsuri-ui/issues/1006)) ([d28d470](https://github.com/matsuri-tech/matsuri-ui/commit/d28d4706aab2e19c2d6a85b5a8a0d8040867df27))
|
|
209
|
+
* **deps:** update dependency @types/jest to v26.0.19 ([#1008](https://github.com/matsuri-tech/matsuri-ui/issues/1008)) ([dd25913](https://github.com/matsuri-tech/matsuri-ui/commit/dd25913d4439a96d99009abadd4c6126f18d47e9))
|
|
210
|
+
* **deps:** update dependency @types/jest to v26.0.20 ([#1025](https://github.com/matsuri-tech/matsuri-ui/issues/1025)) ([c94b675](https://github.com/matsuri-tech/matsuri-ui/commit/c94b67588c4f26d28a0f6e963a079d5d477c9213))
|
|
211
|
+
* **deps:** update dependency @types/react to v16.9.51 ([#954](https://github.com/matsuri-tech/matsuri-ui/issues/954)) ([1e6ed42](https://github.com/matsuri-tech/matsuri-ui/commit/1e6ed42f6220fb4b58564a5ed1962395dc249fcb))
|
|
212
|
+
* **deps:** update dependency @types/react to v16.9.52 ([#958](https://github.com/matsuri-tech/matsuri-ui/issues/958)) ([f8527d3](https://github.com/matsuri-tech/matsuri-ui/commit/f8527d3e6ca14774fbf0ce4a268c5d4f093b27d0))
|
|
213
|
+
* **deps:** update dependency @types/react to v16.9.53 ([#963](https://github.com/matsuri-tech/matsuri-ui/issues/963)) ([e0bc3d6](https://github.com/matsuri-tech/matsuri-ui/commit/e0bc3d69cdf09cc7621e0063d397ab98028e656a))
|
|
214
|
+
* **deps:** update dependency @types/react to v16.9.54 ([#977](https://github.com/matsuri-tech/matsuri-ui/issues/977)) ([c4da58c](https://github.com/matsuri-tech/matsuri-ui/commit/c4da58c1f7c112fa662544e63c9bc59b482d6a89))
|
|
215
|
+
* **deps:** update dependency @types/react to v16.9.55 ([#978](https://github.com/matsuri-tech/matsuri-ui/issues/978)) ([7dda691](https://github.com/matsuri-tech/matsuri-ui/commit/7dda6913759738a8723eb9aefe418f3792765ce6))
|
|
216
|
+
* **deps:** update dependency @types/react to v16.9.56 ([#987](https://github.com/matsuri-tech/matsuri-ui/issues/987)) ([cd1d24b](https://github.com/matsuri-tech/matsuri-ui/commit/cd1d24bdcfacb9761a0bad6af6acaddfd70f7bc9))
|
|
217
|
+
* **deps:** update dependency @types/react-dom to v16.9.10 ([#994](https://github.com/matsuri-tech/matsuri-ui/issues/994)) ([cc8fb44](https://github.com/matsuri-tech/matsuri-ui/commit/cc8fb44281888a8e2012bb412c090ef123c69ef6))
|
|
218
|
+
* **deps:** update dependency @types/react-dom to v16.9.9 ([#976](https://github.com/matsuri-tech/matsuri-ui/issues/976)) ([31908a0](https://github.com/matsuri-tech/matsuri-ui/commit/31908a001429694ede96a19af6651151767e8352))
|
|
219
|
+
* **deps:** update dependency @types/react-router to v5.1.10 ([#1023](https://github.com/matsuri-tech/matsuri-ui/issues/1023)) ([fc83560](https://github.com/matsuri-tech/matsuri-ui/commit/fc83560647ba187cc137732fc933218c45c48d0b))
|
|
220
|
+
* **deps:** update dependency @types/react-router to v5.1.11 ([#1026](https://github.com/matsuri-tech/matsuri-ui/issues/1026)) ([4cae20a](https://github.com/matsuri-tech/matsuri-ui/commit/4cae20a64ce5a6f03c3a8d677b840dd844150202))
|
|
221
|
+
* **deps:** update dependency @types/react-router to v5.1.9 ([#1013](https://github.com/matsuri-tech/matsuri-ui/issues/1013)) ([6912e39](https://github.com/matsuri-tech/matsuri-ui/commit/6912e39f4c7796b131f3be9ea610833085fed05f))
|
|
222
|
+
* **deps:** update dependency @types/react-router-dom to v5.1.6 ([#955](https://github.com/matsuri-tech/matsuri-ui/issues/955)) ([3be7f73](https://github.com/matsuri-tech/matsuri-ui/commit/3be7f7393afe2b84e0099cd834478873d59f51e2))
|
|
223
|
+
* **deps:** update dependency @types/react-router-dom to v5.1.7 ([#1014](https://github.com/matsuri-tech/matsuri-ui/issues/1014)) ([8600cd5](https://github.com/matsuri-tech/matsuri-ui/commit/8600cd540ec00aa04b9a835f266aa3633787c3a8))
|
|
224
|
+
* **deps:** update dependency color to v3.1.3 ([#956](https://github.com/matsuri-tech/matsuri-ui/issues/956)) ([a0465ee](https://github.com/matsuri-tech/matsuri-ui/commit/a0465ee73868c1172b8614d4a047481bfcc7ff5f))
|
|
225
|
+
* **deps:** update dependency conventional-changelog-cli to v2.1.1 ([#985](https://github.com/matsuri-tech/matsuri-ui/issues/985)) ([d88f7d9](https://github.com/matsuri-tech/matsuri-ui/commit/d88f7d9c74ae06c8c3058ce39d736f53d043dd48))
|
|
226
|
+
* **deps:** update dependency dayjs to v1.9.2 ([#960](https://github.com/matsuri-tech/matsuri-ui/issues/960)) ([9edbb77](https://github.com/matsuri-tech/matsuri-ui/commit/9edbb77405c673c5f01caf6141d69614fa322e45))
|
|
227
|
+
* **deps:** update dependency dayjs to v1.9.3 ([#961](https://github.com/matsuri-tech/matsuri-ui/issues/961)) ([19e86a8](https://github.com/matsuri-tech/matsuri-ui/commit/19e86a8e8bb0da7b129e7b5deac2f921022db250))
|
|
228
|
+
* **deps:** update dependency dayjs to v1.9.4 ([#969](https://github.com/matsuri-tech/matsuri-ui/issues/969)) ([058c500](https://github.com/matsuri-tech/matsuri-ui/commit/058c50072b09352fd779666415d8efaf8101e2f1))
|
|
229
|
+
* **deps:** update dependency dayjs to v1.9.5 ([#986](https://github.com/matsuri-tech/matsuri-ui/issues/986)) ([3879a84](https://github.com/matsuri-tech/matsuri-ui/commit/3879a840e659a91f59184609c996954189e9c3eb))
|
|
230
|
+
* **deps:** update dependency dayjs to v1.9.6 ([#991](https://github.com/matsuri-tech/matsuri-ui/issues/991)) ([6636f4c](https://github.com/matsuri-tech/matsuri-ui/commit/6636f4c2d6ba3d8bbc5c7f2346a84046f45d8b93))
|
|
231
|
+
* **deps:** update dependency dayjs to v1.9.7 ([#1002](https://github.com/matsuri-tech/matsuri-ui/issues/1002)) ([eeea8a2](https://github.com/matsuri-tech/matsuri-ui/commit/eeea8a283015de222077ff2825ad01b08f016e1c))
|
|
232
|
+
* **deps:** update dependency dayjs to v1.9.8 ([#1012](https://github.com/matsuri-tech/matsuri-ui/issues/1012)) ([d7ec324](https://github.com/matsuri-tech/matsuri-ui/commit/d7ec3247b21bd6b2f6bd6984af10e098ecd89aad))
|
|
233
|
+
* **deps:** update dependency eslint-plugin-react to v7.21.3 ([#949](https://github.com/matsuri-tech/matsuri-ui/issues/949)) ([6b74654](https://github.com/matsuri-tech/matsuri-ui/commit/6b746549b7032b07d49a32a44a5de5f024ff6e94))
|
|
234
|
+
* **deps:** update dependency eslint-plugin-react to v7.21.4 ([#957](https://github.com/matsuri-tech/matsuri-ui/issues/957)) ([076a1ac](https://github.com/matsuri-tech/matsuri-ui/commit/076a1ac2e9d1ae4363a766a624ce8e7c8c34af74))
|
|
235
|
+
* **deps:** update dependency eslint-plugin-react to v7.21.5 ([#965](https://github.com/matsuri-tech/matsuri-ui/issues/965)) ([7749334](https://github.com/matsuri-tech/matsuri-ui/commit/7749334fda4d9ea43e7d6a7b14b41cd0bb0d045d))
|
|
236
|
+
* **deps:** update dependency husky to v4.3.5 ([#1004](https://github.com/matsuri-tech/matsuri-ui/issues/1004)) ([cf28823](https://github.com/matsuri-tech/matsuri-ui/commit/cf28823e1226cf75deb6428e195b448a02f9a03b))
|
|
237
|
+
* **deps:** update dependency husky to v4.3.6 ([#1010](https://github.com/matsuri-tech/matsuri-ui/issues/1010)) ([241a3d5](https://github.com/matsuri-tech/matsuri-ui/commit/241a3d55e7a4341020e3726377dbbc4a1bacd641))
|
|
238
|
+
* **deps:** update dependency husky to v4.3.7 ([#1024](https://github.com/matsuri-tech/matsuri-ui/issues/1024)) ([bee0c6d](https://github.com/matsuri-tech/matsuri-ui/commit/bee0c6d2094d6a31c4d8ab1baec121406d0bf2cd))
|
|
239
|
+
* **deps:** update dependency lint-staged to v10.4.1 ([#962](https://github.com/matsuri-tech/matsuri-ui/issues/962)) ([a1412b9](https://github.com/matsuri-tech/matsuri-ui/commit/a1412b9ad69005b2d382241356e8504c321aaa69))
|
|
240
|
+
* **deps:** update dependency lint-staged to v10.4.2 ([#964](https://github.com/matsuri-tech/matsuri-ui/issues/964)) ([9e09d3c](https://github.com/matsuri-tech/matsuri-ui/commit/9e09d3c533ad4514f9267da2e2de8653b5a8063e))
|
|
241
|
+
* **deps:** update dependency react-table to v7.5.2 ([#952](https://github.com/matsuri-tech/matsuri-ui/issues/952)) ([c387932](https://github.com/matsuri-tech/matsuri-ui/commit/c38793229cc4447c59d2d853e250ef39511508f7))
|
|
242
|
+
* **deps:** update dependency ts-jest to v26.4.2 ([#972](https://github.com/matsuri-tech/matsuri-ui/issues/972)) ([e64862e](https://github.com/matsuri-tech/matsuri-ui/commit/e64862edb27262df886839498f9d10d754bf77e6))
|
|
243
|
+
* **deps:** update dependency ts-jest to v26.4.3 ([#974](https://github.com/matsuri-tech/matsuri-ui/issues/974)) ([129de2e](https://github.com/matsuri-tech/matsuri-ui/commit/129de2efbf236e9fcc576dc6ce027e27845575da))
|
|
244
|
+
* **deps:** update dependency ts-jest to v26.4.4 ([#989](https://github.com/matsuri-tech/matsuri-ui/issues/989)) ([866b9da](https://github.com/matsuri-tech/matsuri-ui/commit/866b9da18eabbd3cb473fe32f87cf6033a3f84cf))
|
|
245
|
+
* **deps:** update dependency ts-loader to v8.0.10 ([#988](https://github.com/matsuri-tech/matsuri-ui/issues/988)) ([74a4a0e](https://github.com/matsuri-tech/matsuri-ui/commit/74a4a0ed4d9304ff45abcb37055c4d8d4ef15805))
|
|
246
|
+
* **deps:** update dependency ts-loader to v8.0.11 ([#990](https://github.com/matsuri-tech/matsuri-ui/issues/990)) ([8a39255](https://github.com/matsuri-tech/matsuri-ui/commit/8a39255b93ed682b5269423321411355215a107f))
|
|
247
|
+
* **deps:** update dependency ts-loader to v8.0.12 ([#1009](https://github.com/matsuri-tech/matsuri-ui/issues/1009)) ([1a24cc8](https://github.com/matsuri-tech/matsuri-ui/commit/1a24cc8a36a6f5b03cb2fbfd4c7b38fa5eb410cd))
|
|
248
|
+
* **deps:** update dependency ts-loader to v8.0.13 ([#1015](https://github.com/matsuri-tech/matsuri-ui/issues/1015)) ([e5dc6c7](https://github.com/matsuri-tech/matsuri-ui/commit/e5dc6c71c5b26c5cfc7bdedfd6324b4e7fd525f2))
|
|
249
|
+
* **deps:** update dependency ts-loader to v8.0.14 ([#1022](https://github.com/matsuri-tech/matsuri-ui/issues/1022)) ([11d2d74](https://github.com/matsuri-tech/matsuri-ui/commit/11d2d7464708badf2716264c6982c051f79d9e12))
|
|
250
|
+
* **deps:** update dependency ts-loader to v8.0.5 ([#959](https://github.com/matsuri-tech/matsuri-ui/issues/959)) ([aaf182a](https://github.com/matsuri-tech/matsuri-ui/commit/aaf182ab7f88d1e8845e53e2ac7067b4fa213034))
|
|
251
|
+
* **deps:** update dependency ts-loader to v8.0.6 ([#966](https://github.com/matsuri-tech/matsuri-ui/issues/966)) ([0a2f69a](https://github.com/matsuri-tech/matsuri-ui/commit/0a2f69a7f5eb560590cf5980b137b46118cfb176))
|
|
252
|
+
* **deps:** update dependency ts-loader to v8.0.7 ([#973](https://github.com/matsuri-tech/matsuri-ui/issues/973)) ([4d8c159](https://github.com/matsuri-tech/matsuri-ui/commit/4d8c15933949feb5dc0832de1b85a6ddaced24e5))
|
|
253
|
+
* **deps:** update dependency ts-loader to v8.0.8 ([#983](https://github.com/matsuri-tech/matsuri-ui/issues/983)) ([05159c2](https://github.com/matsuri-tech/matsuri-ui/commit/05159c22301d6632b2efee0e0af463fa4cf52023))
|
|
254
|
+
* **deps:** update dependency ts-loader to v8.0.9 ([#984](https://github.com/matsuri-tech/matsuri-ui/issues/984)) ([dda4c6b](https://github.com/matsuri-tech/matsuri-ui/commit/dda4c6b42c6c7d6ea009ebe839b337435649d0be))
|
|
255
|
+
* **deps:** update dependency typescript to v4.0.5 ([#975](https://github.com/matsuri-tech/matsuri-ui/issues/975)) ([a420488](https://github.com/matsuri-tech/matsuri-ui/commit/a420488f0372f05a1c0d8cd96e07a48f7e66ae3e))
|
|
256
|
+
* **deps:** update storybook monorepo ([#950](https://github.com/matsuri-tech/matsuri-ui/issues/950)) ([ae0de1a](https://github.com/matsuri-tech/matsuri-ui/commit/ae0de1a5189030092e24ef0dc2a24c383c26f311))
|
|
257
|
+
* **deps:** update storybook monorepo to v6.0.26 ([#953](https://github.com/matsuri-tech/matsuri-ui/issues/953)) ([ecbcfe5](https://github.com/matsuri-tech/matsuri-ui/commit/ecbcfe51341e8cc2b85ddb62355a6f3df62af353))
|
|
258
|
+
* **deps:** update storybook monorepo to v6.0.27 ([#970](https://github.com/matsuri-tech/matsuri-ui/issues/970)) ([5121fcf](https://github.com/matsuri-tech/matsuri-ui/commit/5121fcf55b8e5b927446cd23e48b0db844ba8a30))
|
|
259
|
+
* **deps:** update storybook monorepo to v6.0.28 ([#980](https://github.com/matsuri-tech/matsuri-ui/issues/980)) ([fd3cade](https://github.com/matsuri-tech/matsuri-ui/commit/fd3cadeef84b950bad1dfa49c5ce081305cf0141))
|
|
260
|
+
* **renovate:** update config ([0984e28](https://github.com/matsuri-tech/matsuri-ui/commit/0984e287a58caa6a8aa183c0f3c9045b9370fa87))
|
|
261
|
+
|
|
262
|
+
## [7.15.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.14.3...v7.15.0) (2020-10-02)
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
### Features
|
|
266
|
+
|
|
267
|
+
* **Fields:** add support of required label ([0633bd3](https://github.com/matsuri-tech/matsuri-ui/commit/0633bd39eaa6e98b0769d7f22f241d746672c34f))
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
### Others
|
|
271
|
+
|
|
272
|
+
* **deps:** make dependencies smart ([0b06635](https://github.com/matsuri-tech/matsuri-ui/commit/0b066352b2d4372ad1097326b5a67fd764731bf2))
|
|
273
|
+
* **deps:** remove eslint-plugin-prettier ([f74986a](https://github.com/matsuri-tech/matsuri-ui/commit/f74986aa167d9804f9b40a267934204a06d22e2c))
|
|
274
|
+
* **deps:** update all dependencies ([b2ebf75](https://github.com/matsuri-tech/matsuri-ui/commit/b2ebf75cbac42cfd9971ee6e07a0ad1eee0be1b0))
|
|
275
|
+
* **deps:** update commitlint monorepo to v11 ([dc1c8f6](https://github.com/matsuri-tech/matsuri-ui/commit/dc1c8f6c086f571d77a21d76f472a9a0f7943e3b))
|
|
276
|
+
* **deps:** update dependency @testing-library/react to v11 ([5ebb089](https://github.com/matsuri-tech/matsuri-ui/commit/5ebb089bb9147f4ff7dd228a6de4b95fd7e0af6c))
|
|
277
|
+
* **deps:** update dependency @testing-library/react to v11.0.3 ([#927](https://github.com/matsuri-tech/matsuri-ui/issues/927)) ([40a250c](https://github.com/matsuri-tech/matsuri-ui/commit/40a250c5bbe96011d5c679fa48d1e4e7a595f03e))
|
|
278
|
+
* **deps:** update dependency @testing-library/react to v11.0.4 ([#928](https://github.com/matsuri-tech/matsuri-ui/issues/928)) ([2737971](https://github.com/matsuri-tech/matsuri-ui/commit/2737971bb952a4c1e9081c2ba90636832a7b97cf))
|
|
279
|
+
* **deps:** update dependency @types/jest to v26.0.14 ([#931](https://github.com/matsuri-tech/matsuri-ui/issues/931)) ([9d6504e](https://github.com/matsuri-tech/matsuri-ui/commit/9d6504ef806f3b922b5d42122faf55db6a9994ae))
|
|
280
|
+
* **deps:** update dependency @types/react to v16.9.50 ([#947](https://github.com/matsuri-tech/matsuri-ui/issues/947)) ([a51d740](https://github.com/matsuri-tech/matsuri-ui/commit/a51d7405f92fe159b513fa9abea5c395ce2b4c91))
|
|
281
|
+
* **deps:** update dependency dayjs to v1.8.36 ([#932](https://github.com/matsuri-tech/matsuri-ui/issues/932)) ([f436e5e](https://github.com/matsuri-tech/matsuri-ui/commit/f436e5e64ace50eee2a407ae4a4faa292b6e5f1f))
|
|
282
|
+
* **deps:** update dependency eslint-plugin-react-hooks to v4.1.1 ([#922](https://github.com/matsuri-tech/matsuri-ui/issues/922)) ([47ec2be](https://github.com/matsuri-tech/matsuri-ui/commit/47ec2beede088ca745a59393563194d1b2ba417d))
|
|
283
|
+
* **deps:** update dependency eslint-plugin-react-hooks to v4.1.2 ([#924](https://github.com/matsuri-tech/matsuri-ui/issues/924)) ([35f6d11](https://github.com/matsuri-tech/matsuri-ui/commit/35f6d1110abed83f6e21cc8018ed129cd930eba5))
|
|
284
|
+
* **deps:** update dependency prettier to v2.1.2 ([#930](https://github.com/matsuri-tech/matsuri-ui/issues/930)) ([f7c5f6e](https://github.com/matsuri-tech/matsuri-ui/commit/f7c5f6e48ac766508f38bf5b67731dfd5332cba3))
|
|
285
|
+
* **deps:** update dependency react-table to v7.5.1 ([#933](https://github.com/matsuri-tech/matsuri-ui/issues/933)) ([d5ae7b2](https://github.com/matsuri-tech/matsuri-ui/commit/d5ae7b233f904e5c4ae426e6d0a6652af439cce9))
|
|
286
|
+
* **deps:** update dependency rollup to v2.26.11 ([#921](https://github.com/matsuri-tech/matsuri-ui/issues/921)) ([0800ffe](https://github.com/matsuri-tech/matsuri-ui/commit/0800ffe60ca096f4c07b8985563e2df820a8f825))
|
|
287
|
+
* **deps:** update dependency rollup-plugin-typescript2 to v0.27.3 ([#942](https://github.com/matsuri-tech/matsuri-ui/issues/942)) ([766fc66](https://github.com/matsuri-tech/matsuri-ui/commit/766fc669c2bab97be762b5310f98de3a21a619e6))
|
|
288
|
+
* **deps:** update dependency stylelint to v13.7.1 ([#925](https://github.com/matsuri-tech/matsuri-ui/issues/925)) ([fb7ce12](https://github.com/matsuri-tech/matsuri-ui/commit/fb7ce12670311602145d22610c23b56f1c85d30c))
|
|
289
|
+
* **deps:** update dependency stylelint to v13.7.2 ([#941](https://github.com/matsuri-tech/matsuri-ui/issues/941)) ([c7471ad](https://github.com/matsuri-tech/matsuri-ui/commit/c7471adaaa7f95e1673320c1766ffa5b16f6e880))
|
|
290
|
+
* **deps:** update dependency ts-loader to v8.0.4 ([#935](https://github.com/matsuri-tech/matsuri-ui/issues/935)) ([825ad35](https://github.com/matsuri-tech/matsuri-ui/commit/825ad35756fb3059fa932c8a67394f9601092bbc))
|
|
291
|
+
* **deps:** update dependency typescript to v4 ([8930357](https://github.com/matsuri-tech/matsuri-ui/commit/89303576bc69bbb61fb3e7681f52fa1b76852cc5))
|
|
292
|
+
* **deps:** update dependency typescript to v4.0.3 ([#934](https://github.com/matsuri-tech/matsuri-ui/issues/934)) ([aadca60](https://github.com/matsuri-tech/matsuri-ui/commit/aadca60a818127601a51d7e039836883a311f83c))
|
|
293
|
+
* **deps:** update storybook monorepo to v6.0.22 ([#943](https://github.com/matsuri-tech/matsuri-ui/issues/943)) ([4d391d4](https://github.com/matsuri-tech/matsuri-ui/commit/4d391d4cd78a147ea9142f2832a6c368dbad36ff))
|
|
294
|
+
* **deps:** update typescript-eslint monorepo to v4 ([dc99347](https://github.com/matsuri-tech/matsuri-ui/commit/dc993479b25c8a17af791a81f26ae1c70bd50fe3))
|
|
295
|
+
* **deps:** update typescript-eslint monorepo to v4.1.1 ([#929](https://github.com/matsuri-tech/matsuri-ui/issues/929)) ([b0fc491](https://github.com/matsuri-tech/matsuri-ui/commit/b0fc491a5830a066465abcea06e7b1ff50279619))
|
|
296
|
+
* **deps:** upgrade latest ([562b5d4](https://github.com/matsuri-tech/matsuri-ui/commit/562b5d4221a1fb6463722af5598961eebe00a99f))
|
|
297
|
+
* **scripts:** rename lint:*:fix to format:* ([3009200](https://github.com/matsuri-tech/matsuri-ui/commit/3009200b2735f3945d888343c08836e124523d9d))
|
|
298
|
+
* **stories:** update ([21fc44f](https://github.com/matsuri-tech/matsuri-ui/commit/21fc44f5a578f331e59c14028f4e31ea9ee504e5)), closes [#940](https://github.com/matsuri-tech/matsuri-ui/issues/940) [#938](https://github.com/matsuri-tech/matsuri-ui/issues/938)
|
|
299
|
+
* **vscode:** update settings ([2a7776c](https://github.com/matsuri-tech/matsuri-ui/commit/2a7776ceacb281013c42405673ebb371d28dd37c))
|
|
300
|
+
* format files ([539c0da](https://github.com/matsuri-tech/matsuri-ui/commit/539c0da519908816368574393bc05d93dfa99cec))
|
|
301
|
+
|
|
302
|
+
### [7.14.3](https://github.com/matsuri-tech/matsuri-ui/compare/v7.14.2...v7.14.3) (2020-09-04)
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
### Bug Fixes
|
|
306
|
+
|
|
307
|
+
* **SelectField:** not update if it has not changed from the previous value ([022ab00](https://github.com/matsuri-tech/matsuri-ui/commit/022ab00f63084777e53c3e756543235225ed7e3c))
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
### Others
|
|
311
|
+
|
|
312
|
+
* **deps:** update dependency @babel/core to v7.11.6 ([#917](https://github.com/matsuri-tech/matsuri-ui/issues/917)) ([6572dfd](https://github.com/matsuri-tech/matsuri-ui/commit/6572dfd434647a2d1dc03aa5f1fd3350181df3c6))
|
|
313
|
+
* **deps:** update dependency rollup to v2.26.10 ([#918](https://github.com/matsuri-tech/matsuri-ui/issues/918)) ([bfaa274](https://github.com/matsuri-tech/matsuri-ui/commit/bfaa2746f3c8bda57b5e0c5e694dc787800b8f23))
|
|
314
|
+
|
|
315
|
+
### [7.14.2](https://github.com/matsuri-tech/matsuri-ui/compare/v7.14.1...v7.14.2) (2020-09-03)
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
### Bug Fixes
|
|
319
|
+
|
|
320
|
+
* **TextField:** avoid overwriting props ([73c5199](https://github.com/matsuri-tech/matsuri-ui/commit/73c519967c6a0638856b7ad57396d5075edda437))
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
### Others
|
|
324
|
+
|
|
325
|
+
* **deps:** update babel monorepo to v7.11.5 ([#907](https://github.com/matsuri-tech/matsuri-ui/issues/907)) ([2a8dd3a](https://github.com/matsuri-tech/matsuri-ui/commit/2a8dd3ad0557dece66120c49104c82e260158963))
|
|
326
|
+
* **deps:** update dependency @storybook/addon-notes to v5.3.20 ([#896](https://github.com/matsuri-tech/matsuri-ui/issues/896)) ([b2efcd1](https://github.com/matsuri-tech/matsuri-ui/commit/b2efcd1231cdfe2152c525e985ebb7a72f8063eb))
|
|
327
|
+
* **deps:** update dependency @storybook/addon-notes to v5.3.21 ([#900](https://github.com/matsuri-tech/matsuri-ui/issues/900)) ([edffbd6](https://github.com/matsuri-tech/matsuri-ui/commit/edffbd6b8252f54721e806bd41a6990c63c436b8))
|
|
328
|
+
* **deps:** update dependency @types/jest to v26.0.12 ([#908](https://github.com/matsuri-tech/matsuri-ui/issues/908)) ([c8c04e8](https://github.com/matsuri-tech/matsuri-ui/commit/c8c04e85124686988d5f3ac7d43d3736d995f2e0))
|
|
329
|
+
* **deps:** update dependency @types/jest to v26.0.13 ([#913](https://github.com/matsuri-tech/matsuri-ui/issues/913)) ([920b7cf](https://github.com/matsuri-tech/matsuri-ui/commit/920b7cffdabb20754d58b14a7e61cbe0910ccfbc))
|
|
330
|
+
* **deps:** update dependency @types/react to v16.9.48 ([#898](https://github.com/matsuri-tech/matsuri-ui/issues/898)) ([b0c6d64](https://github.com/matsuri-tech/matsuri-ui/commit/b0c6d64c7cfd4e6c89c16a0d12ab36eec27f0a3f))
|
|
331
|
+
* **deps:** update dependency @types/react to v16.9.49 ([#905](https://github.com/matsuri-tech/matsuri-ui/issues/905)) ([0cac1ea](https://github.com/matsuri-tech/matsuri-ui/commit/0cac1ea5882ef4e40c798e236aa4d2b096e73580))
|
|
332
|
+
* **deps:** update dependency dayjs to v1.8.35 ([#912](https://github.com/matsuri-tech/matsuri-ui/issues/912)) ([19dbe15](https://github.com/matsuri-tech/matsuri-ui/commit/19dbe15fff516239f8a43d05ac4dbfd427af9c38))
|
|
333
|
+
* **deps:** update dependency lint-staged to v10.2.13 ([#894](https://github.com/matsuri-tech/matsuri-ui/issues/894)) ([bd93fc1](https://github.com/matsuri-tech/matsuri-ui/commit/bd93fc181a09545c6d9c17965e53859b727ae39a))
|
|
334
|
+
* **deps:** update dependency rollup to v2.26.6 ([#899](https://github.com/matsuri-tech/matsuri-ui/issues/899)) ([1e5a0dd](https://github.com/matsuri-tech/matsuri-ui/commit/1e5a0ddf983b87740006d177ae3235bd13125db7))
|
|
335
|
+
* **deps:** update dependency rollup to v2.26.7 ([#902](https://github.com/matsuri-tech/matsuri-ui/issues/902)) ([3a0b23b](https://github.com/matsuri-tech/matsuri-ui/commit/3a0b23ba5be89bd7c28e9ac4f539f2ce37a3c272))
|
|
336
|
+
* **deps:** update dependency rollup to v2.26.8 ([#903](https://github.com/matsuri-tech/matsuri-ui/issues/903)) ([5e2d613](https://github.com/matsuri-tech/matsuri-ui/commit/5e2d6133e4bd038cb0fc2c95a734ca57d3050112))
|
|
337
|
+
* **deps:** update dependency rollup to v2.26.9 ([#911](https://github.com/matsuri-tech/matsuri-ui/issues/911)) ([017d798](https://github.com/matsuri-tech/matsuri-ui/commit/017d798158707560c720cfa331a9607886b04a0b))
|
|
338
|
+
* **deps:** update storybook monorepo to v6.0.18 ([#895](https://github.com/matsuri-tech/matsuri-ui/issues/895)) ([f316b8b](https://github.com/matsuri-tech/matsuri-ui/commit/f316b8bfc120aaf00afe37937fa59adf3d4108d6))
|
|
339
|
+
* **deps:** update storybook monorepo to v6.0.19 ([#897](https://github.com/matsuri-tech/matsuri-ui/issues/897)) ([7dd0097](https://github.com/matsuri-tech/matsuri-ui/commit/7dd0097dab2a1a05e58c53c971659758d1bf434d))
|
|
340
|
+
* **deps:** update storybook monorepo to v6.0.20 ([#901](https://github.com/matsuri-tech/matsuri-ui/issues/901)) ([c5083e8](https://github.com/matsuri-tech/matsuri-ui/commit/c5083e802e836f26bee30a5abebc7d0dfaa8da10))
|
|
341
|
+
* **deps:** update storybook monorepo to v6.0.21 ([#904](https://github.com/matsuri-tech/matsuri-ui/issues/904)) ([dd1f51e](https://github.com/matsuri-tech/matsuri-ui/commit/dd1f51edb07aaba7178ec72936e81952efd42983))
|
|
342
|
+
|
|
343
|
+
### [7.14.1](https://github.com/matsuri-tech/matsuri-ui/compare/v7.14.0...v7.14.1) (2020-08-25)
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
### Bug Fixes
|
|
347
|
+
|
|
348
|
+
* **InputBase:** controll input state ([757cc21](https://github.com/matsuri-tech/matsuri-ui/commit/757cc212498b78f6208ba8669bc07d31f17134df))
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
### Others
|
|
352
|
+
|
|
353
|
+
* **deps:** update dependency @babel/core to v7.11.4 ([#884](https://github.com/matsuri-tech/matsuri-ui/issues/884)) ([461dbe2](https://github.com/matsuri-tech/matsuri-ui/commit/461dbe27070c6e34b70b425e3edeac61d9da8282))
|
|
354
|
+
* **deps:** update dependency @emotion/core to v10.0.35 ([#875](https://github.com/matsuri-tech/matsuri-ui/issues/875)) ([7cdea74](https://github.com/matsuri-tech/matsuri-ui/commit/7cdea74ac18133328dbab2a3cf37e76535256506))
|
|
355
|
+
* **deps:** update dependency @testing-library/react to v10.4.9 ([#885](https://github.com/matsuri-tech/matsuri-ui/issues/885)) ([b0cfe72](https://github.com/matsuri-tech/matsuri-ui/commit/b0cfe726eb51a915157e59391b95be4a3cf51ba6))
|
|
356
|
+
* **deps:** update dependency @types/react to v16.9.47 ([#890](https://github.com/matsuri-tech/matsuri-ui/issues/890)) ([4d8c305](https://github.com/matsuri-tech/matsuri-ui/commit/4d8c3056fc3bd14f3f30793f4053501cc7270019))
|
|
357
|
+
* **deps:** update dependency dayjs to v1.8.34 ([#878](https://github.com/matsuri-tech/matsuri-ui/issues/878)) ([89bfaab](https://github.com/matsuri-tech/matsuri-ui/commit/89bfaabb30adbc637e4f2d0779c418e2e56364c8))
|
|
358
|
+
* **deps:** update dependency jest to v26.4.1 ([#880](https://github.com/matsuri-tech/matsuri-ui/issues/880)) ([5222d18](https://github.com/matsuri-tech/matsuri-ui/commit/5222d18ad00f7d6164b379faf78de28dc265133b))
|
|
359
|
+
* **deps:** update dependency jest to v26.4.2 ([#887](https://github.com/matsuri-tech/matsuri-ui/issues/887)) ([5da9b15](https://github.com/matsuri-tech/matsuri-ui/commit/5da9b1524fa085b9da367c58ef7e40a741765b0a))
|
|
360
|
+
* **deps:** update dependency lint-staged to v10.2.12 ([#891](https://github.com/matsuri-tech/matsuri-ui/issues/891)) ([015c95d](https://github.com/matsuri-tech/matsuri-ui/commit/015c95def728cfa4aedb6314e498e16e60af2174))
|
|
361
|
+
* **deps:** update dependency rollup to v2.26.4 ([#876](https://github.com/matsuri-tech/matsuri-ui/issues/876)) ([3d58cd2](https://github.com/matsuri-tech/matsuri-ui/commit/3d58cd28b699b8ca08860b9d969bac9a2164b3b0))
|
|
362
|
+
* **deps:** update dependency rollup to v2.26.5 ([#886](https://github.com/matsuri-tech/matsuri-ui/issues/886)) ([1d7f1a9](https://github.com/matsuri-tech/matsuri-ui/commit/1d7f1a921351e0d064d66b48a7f6bf8eaa7f193e))
|
|
363
|
+
* **deps:** update dependency ts-loader to v8.0.3 ([#888](https://github.com/matsuri-tech/matsuri-ui/issues/888)) ([8d62686](https://github.com/matsuri-tech/matsuri-ui/commit/8d6268616f760320d3f54fae614213820d1fa835))
|
|
364
|
+
* **deps:** update storybook monorepo to v6.0.13 ([#877](https://github.com/matsuri-tech/matsuri-ui/issues/877)) ([58dd80d](https://github.com/matsuri-tech/matsuri-ui/commit/58dd80d708a9145307a4dfc86f00ce3066ff05cc))
|
|
365
|
+
* **deps:** update storybook monorepo to v6.0.14 ([#879](https://github.com/matsuri-tech/matsuri-ui/issues/879)) ([4c1bc4b](https://github.com/matsuri-tech/matsuri-ui/commit/4c1bc4bea4a6f3eb862512ea19ec9fb7efb5bce5))
|
|
366
|
+
* **deps:** update storybook monorepo to v6.0.15 ([#881](https://github.com/matsuri-tech/matsuri-ui/issues/881)) ([267d8d7](https://github.com/matsuri-tech/matsuri-ui/commit/267d8d7148fa2c23af1a9e5e65222839e330b183))
|
|
367
|
+
* **deps:** update storybook monorepo to v6.0.16 ([#882](https://github.com/matsuri-tech/matsuri-ui/issues/882)) ([8683940](https://github.com/matsuri-tech/matsuri-ui/commit/86839404b6b47313f640af50d7b7a57874fe9b61))
|
|
368
|
+
* **deps:** update storybook monorepo to v6.0.17 ([#889](https://github.com/matsuri-tech/matsuri-ui/issues/889)) ([a3453af](https://github.com/matsuri-tech/matsuri-ui/commit/a3453af8a6959dac6acb031565dd61fb3356a535))
|
|
369
|
+
|
|
370
|
+
## [7.14.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.13.3...v7.14.0) (2020-08-18)
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
### Features
|
|
374
|
+
|
|
375
|
+
* **DateField:** add support of adornments ([99ebb11](https://github.com/matsuri-tech/matsuri-ui/commit/99ebb11292bcf4cc56c0a503aa5dc6b3b0c543f4))
|
|
376
|
+
* **InputBase:** add support of adornments ([d99bceb](https://github.com/matsuri-tech/matsuri-ui/commit/d99bcebb673f345c5bce79414b2173ce42ed15cf))
|
|
377
|
+
* **NumberField:** add support of adornments ([3084306](https://github.com/matsuri-tech/matsuri-ui/commit/3084306aa91cc45c724fb2444fa487d75628d24a))
|
|
378
|
+
* **TextField:** add support of adornments ([9beff96](https://github.com/matsuri-tech/matsuri-ui/commit/9beff96a04e7407c143f65911b280a34cd63c7f0))
|
|
379
|
+
* add InputAdornment ([8f1a8ea](https://github.com/matsuri-tech/matsuri-ui/commit/8f1a8ea408ebdd4c74deee3aa9257befb8d555ec))
|
|
380
|
+
* **TabGroup:** add position & underline prop for Underlined TabGroup ([64a5f85](https://github.com/matsuri-tech/matsuri-ui/commit/64a5f850570046710fafe58a524c00fb65d5f62e))
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
### Others
|
|
384
|
+
|
|
385
|
+
* **deps:** update all dependencies ([347aa85](https://github.com/matsuri-tech/matsuri-ui/commit/347aa8579c8819af57d4a0799a4143b2ab5c7816))
|
|
386
|
+
* **deps:** update dependency @emotion/core to v10.0.34 ([#864](https://github.com/matsuri-tech/matsuri-ui/issues/864)) ([3d0e0f6](https://github.com/matsuri-tech/matsuri-ui/commit/3d0e0f6fe9a318af5a905ff5e2612b5438bf9a10))
|
|
387
|
+
* **deps:** update dependency @testing-library/react to v10.4.8 ([#858](https://github.com/matsuri-tech/matsuri-ui/issues/858)) ([afa64cf](https://github.com/matsuri-tech/matsuri-ui/commit/afa64cf2cfa8b32340d21f25a96aa6a18ab8609b))
|
|
388
|
+
* **deps:** update dependency @types/jest to v26.0.10 ([#868](https://github.com/matsuri-tech/matsuri-ui/issues/868)) ([c5c74b0](https://github.com/matsuri-tech/matsuri-ui/commit/c5c74b02cc24ccc2b66b3738a3495170c4a299eb))
|
|
389
|
+
* **deps:** update dependency @types/jest to v26.0.6 ([#846](https://github.com/matsuri-tech/matsuri-ui/issues/846)) ([ef80903](https://github.com/matsuri-tech/matsuri-ui/commit/ef80903a41b4b6ba582d9861289ca050cef9a76b))
|
|
390
|
+
* **deps:** update dependency @types/jest to v26.0.7 ([#847](https://github.com/matsuri-tech/matsuri-ui/issues/847)) ([b7d0068](https://github.com/matsuri-tech/matsuri-ui/commit/b7d0068d5ad4ddbd13b71cfd7faa88ececc64c4e))
|
|
391
|
+
* **deps:** update dependency @types/jest to v26.0.8 ([#852](https://github.com/matsuri-tech/matsuri-ui/issues/852)) ([a01d735](https://github.com/matsuri-tech/matsuri-ui/commit/a01d73579fd1092e401420ad11202826b50a63b6))
|
|
392
|
+
* **deps:** update dependency @types/jest to v26.0.9 ([#859](https://github.com/matsuri-tech/matsuri-ui/issues/859)) ([7d813e2](https://github.com/matsuri-tech/matsuri-ui/commit/7d813e2dfe2640160f6c7168d0b414e56489dfe3))
|
|
393
|
+
* **deps:** update dependency @types/react to v16.9.44 ([#853](https://github.com/matsuri-tech/matsuri-ui/issues/853)) ([967a4de](https://github.com/matsuri-tech/matsuri-ui/commit/967a4deee2206496f304d1e2fc1ac126d7814d2e))
|
|
394
|
+
* **deps:** update dependency @types/react to v16.9.45 ([#861](https://github.com/matsuri-tech/matsuri-ui/issues/861)) ([9fd9d85](https://github.com/matsuri-tech/matsuri-ui/commit/9fd9d859c6a61bf8756b9b68a98c876da3a6b803))
|
|
395
|
+
* **deps:** update dependency @types/react to v16.9.46 ([#863](https://github.com/matsuri-tech/matsuri-ui/issues/863)) ([d841a3f](https://github.com/matsuri-tech/matsuri-ui/commit/d841a3f52dba4d7f02f2024d76c782fc7604dbca))
|
|
396
|
+
* **deps:** update dependency conventional-changelog-cli to v2.0.35 ([#866](https://github.com/matsuri-tech/matsuri-ui/issues/866)) ([4b13d6d](https://github.com/matsuri-tech/matsuri-ui/commit/4b13d6d52b2926af88462cf14098542fd407e9a8))
|
|
397
|
+
* **deps:** update dependency dayjs to v1.8.31 ([#851](https://github.com/matsuri-tech/matsuri-ui/issues/851)) ([e3963ab](https://github.com/matsuri-tech/matsuri-ui/commit/e3963aba9d2292632edc87ed7e725b09cb0bc118))
|
|
398
|
+
* **deps:** update dependency dayjs to v1.8.32 ([#857](https://github.com/matsuri-tech/matsuri-ui/issues/857)) ([bbb7640](https://github.com/matsuri-tech/matsuri-ui/commit/bbb7640f65f728fbc4d61e47782dfb303fb80264))
|
|
399
|
+
* **deps:** update dependency dayjs to v1.8.33 ([#862](https://github.com/matsuri-tech/matsuri-ui/issues/862)) ([571c425](https://github.com/matsuri-tech/matsuri-ui/commit/571c42533cdc2af5f56d6ffce8a83647292c91fd))
|
|
400
|
+
* **deps:** update dependency eslint-plugin-react to v7.20.4 ([#848](https://github.com/matsuri-tech/matsuri-ui/issues/848)) ([f8bf935](https://github.com/matsuri-tech/matsuri-ui/commit/f8bf9357bd16e5d260e1303e0c9039e9b4cbed22))
|
|
401
|
+
* **deps:** update dependency eslint-plugin-react to v7.20.5 ([#850](https://github.com/matsuri-tech/matsuri-ui/issues/850)) ([ab9228a](https://github.com/matsuri-tech/matsuri-ui/commit/ab9228a8f5e66ece3dd2e91f89fd7c4f7140dbb2))
|
|
402
|
+
* **deps:** update dependency eslint-plugin-react to v7.20.6 ([#867](https://github.com/matsuri-tech/matsuri-ui/issues/867)) ([2109f02](https://github.com/matsuri-tech/matsuri-ui/commit/2109f02948de889f8042d002aa2f5f70d3780b2d))
|
|
403
|
+
* **deps:** update dependency rollup-plugin-typescript2 to v0.27.2 ([#860](https://github.com/matsuri-tech/matsuri-ui/issues/860)) ([ca6b4de](https://github.com/matsuri-tech/matsuri-ui/commit/ca6b4dea517088cb443dddd5ea033809b9a83984))
|
|
404
|
+
* **deps:** update dependency standard-version to v9 ([d95717f](https://github.com/matsuri-tech/matsuri-ui/commit/d95717f5869d1c25824960d3a739679c63a3a6e3))
|
|
405
|
+
* **deps:** update dependency ts-jest to v26.1.4 ([#849](https://github.com/matsuri-tech/matsuri-ui/issues/849)) ([8b7b5a5](https://github.com/matsuri-tech/matsuri-ui/commit/8b7b5a546592b92e64b58474c731989144b1d119))
|
|
406
|
+
* **deps:** update dependency ts-loader to v8.0.2 ([#856](https://github.com/matsuri-tech/matsuri-ui/issues/856)) ([4415e72](https://github.com/matsuri-tech/matsuri-ui/commit/4415e7262b910a084c4e0228051f8c004473308f))
|
|
407
|
+
* **deps:** update storybook monorepo to v6 ([be643bf](https://github.com/matsuri-tech/matsuri-ui/commit/be643bf92f5e1c85121dbdec4581dd6c37579e22))
|
|
408
|
+
* **stories:** fix type ([8f73d5b](https://github.com/matsuri-tech/matsuri-ui/commit/8f73d5b832df3488bb41e2775885c9bb5cfd825b))
|
|
409
|
+
|
|
410
|
+
### [7.13.3](https://github.com/matsuri-tech/matsuri-ui/compare/v7.13.2...v7.13.3) (2020-07-23)
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
### Bug Fixes
|
|
414
|
+
|
|
415
|
+
* **MultipleTextField:** make inner value controlled ([0e2fa87](https://github.com/matsuri-tech/matsuri-ui/commit/0e2fa87c3eef193e4835093fa082dc7df11afe74))
|
|
416
|
+
|
|
417
|
+
### [7.13.2](https://github.com/matsuri-tech/matsuri-ui/compare/v7.13.1...v7.13.2) (2020-07-23)
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
### Bug Fixes
|
|
421
|
+
|
|
422
|
+
* **TextField:** make inner value controlled ([f5010d5](https://github.com/matsuri-tech/matsuri-ui/commit/f5010d5c7ef9d912ad71a7c4700ef49ce001bbad))
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
### Others
|
|
426
|
+
|
|
427
|
+
* **deps:** update dependency @babel/core to v7.10.5 ([#835](https://github.com/matsuri-tech/matsuri-ui/issues/835)) ([6801972](https://github.com/matsuri-tech/matsuri-ui/commit/6801972d71ee285c43c8f0a3791150a676a1b2ab))
|
|
428
|
+
* **deps:** update dependency @testing-library/react to v10.4.7 ([#837](https://github.com/matsuri-tech/matsuri-ui/issues/837)) ([a573157](https://github.com/matsuri-tech/matsuri-ui/commit/a5731572ab66603e8850fe7f77ce374057ca6a5a))
|
|
429
|
+
* **deps:** update dependency @types/jest to v26.0.5 ([#840](https://github.com/matsuri-tech/matsuri-ui/issues/840)) ([4ad0bd8](https://github.com/matsuri-tech/matsuri-ui/commit/4ad0bd88259644f197880da387590de8edea9316))
|
|
430
|
+
* **deps:** update dependency dayjs to v1.8.30 ([#841](https://github.com/matsuri-tech/matsuri-ui/issues/841)) ([7221014](https://github.com/matsuri-tech/matsuri-ui/commit/72210141c7b53efd0e7192b33e28150935b8753c))
|
|
431
|
+
* **deps:** update dependency ts-jest to v26.1.3 ([#839](https://github.com/matsuri-tech/matsuri-ui/issues/839)) ([55b1bd6](https://github.com/matsuri-tech/matsuri-ui/commit/55b1bd67f9c93216a7f23d7e63b5278bd2975faa))
|
|
432
|
+
* **deps:** update dependency ts-loader to v8.0.1 ([#836](https://github.com/matsuri-tech/matsuri-ui/issues/836)) ([cef287b](https://github.com/matsuri-tech/matsuri-ui/commit/cef287b29929eb5a9b42eca1ff37f8972180b750))
|
|
433
|
+
* **deps:** update dependency typescript to v3.9.7 ([#838](https://github.com/matsuri-tech/matsuri-ui/issues/838)) ([1e3c28d](https://github.com/matsuri-tech/matsuri-ui/commit/1e3c28d651d0c9282d69615412c8d7dc4c4cacd7))
|
|
434
|
+
|
|
435
|
+
### [7.13.1](https://github.com/matsuri-tech/matsuri-ui/compare/v7.13.0...v7.13.1) (2020-07-14)
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
### Bug Fixes
|
|
439
|
+
|
|
440
|
+
* **AsComponentProps:** make type inference decent ([7652ff3](https://github.com/matsuri-tech/matsuri-ui/commit/7652ff3b4367a649f2611883796b11ec45b9419f))
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
### Others
|
|
444
|
+
|
|
445
|
+
* format files ([3e7e4d7](https://github.com/matsuri-tech/matsuri-ui/commit/3e7e4d705de529e82bc4799abf4e9c183443639d))
|
|
446
|
+
* **deps:** update dependency @testing-library/react to v10.4.6 ([#831](https://github.com/matsuri-tech/matsuri-ui/issues/831)) ([bd64260](https://github.com/matsuri-tech/matsuri-ui/commit/bd642605811a191f9aff66941ed8da5b8e3a2660))
|
|
447
|
+
* **deps:** update dependency @types/react to v16.9.42 ([#824](https://github.com/matsuri-tech/matsuri-ui/issues/824)) ([48b7a77](https://github.com/matsuri-tech/matsuri-ui/commit/48b7a7761756b376de60328f0053b44771ce1d4a))
|
|
448
|
+
* **deps:** update dependency @types/react to v16.9.43 ([#826](https://github.com/matsuri-tech/matsuri-ui/issues/826)) ([7368a21](https://github.com/matsuri-tech/matsuri-ui/commit/7368a21ea3a074eb81ea847fb1856deaddb0b495))
|
|
449
|
+
* **deps:** update dependency eslint-plugin-react-hooks to v4.0.7 ([#825](https://github.com/matsuri-tech/matsuri-ui/issues/825)) ([c92edc5](https://github.com/matsuri-tech/matsuri-ui/commit/c92edc59abc06409b6ebe3baa1674966770635c3))
|
|
450
|
+
* **deps:** update dependency eslint-plugin-react-hooks to v4.0.8 ([#829](https://github.com/matsuri-tech/matsuri-ui/issues/829)) ([cf6422a](https://github.com/matsuri-tech/matsuri-ui/commit/cf6422ad09ab0cc8724510e43703f0dbdd012e52))
|
|
451
|
+
* **deps:** update dependency standard-version to v8.0.1 ([#827](https://github.com/matsuri-tech/matsuri-ui/issues/827)) ([8622543](https://github.com/matsuri-tech/matsuri-ui/commit/8622543479750aab9ce7d08b1ad14a71feb67ce2))
|
|
452
|
+
* **deps:** update dependency standard-version to v8.0.2 ([#832](https://github.com/matsuri-tech/matsuri-ui/issues/832)) ([7c7386d](https://github.com/matsuri-tech/matsuri-ui/commit/7c7386d1ef6dec68219774fd42925de9858750fa))
|
|
453
|
+
* **deps:** update dependency ts-jest to v26.1.2 ([#828](https://github.com/matsuri-tech/matsuri-ui/issues/828)) ([4c92377](https://github.com/matsuri-tech/matsuri-ui/commit/4c923774c6c3c2430e1a7b50711ec6c9b95ff1ac))
|
|
454
|
+
* **deps:** update typescript-eslint monorepo to v3.6.1 ([#830](https://github.com/matsuri-tech/matsuri-ui/issues/830)) ([955a205](https://github.com/matsuri-tech/matsuri-ui/commit/955a2056be3c842580f787e3b9be3a3dbfcfeae6))
|
|
455
|
+
|
|
456
|
+
## [7.13.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.12.1...v7.13.0) (2020-07-09)
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
### Features
|
|
460
|
+
|
|
461
|
+
* **Fields:** delay invalid status until the first event ([0b98708](https://github.com/matsuri-tech/matsuri-ui/commit/0b98708abc3ac220843a4f106d6d83738e8efd95))
|
|
462
|
+
* **useTable:** add support for filtering ([4ee8409](https://github.com/matsuri-tech/matsuri-ui/commit/4ee84093a3206ecfc38c825d91153d795c641dc8))
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
### Others
|
|
466
|
+
|
|
467
|
+
* **deps:** update dependency ts-loader to v8 ([ef9c9c6](https://github.com/matsuri-tech/matsuri-ui/commit/ef9c9c6ca0ebb5c59112a45c359db2d2703bb7c1))
|
|
468
|
+
|
|
469
|
+
### [7.12.1](https://github.com/matsuri-tech/matsuri-ui/compare/v7.12.0...v7.12.1) (2020-07-08)
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
### Bug Fixes
|
|
473
|
+
|
|
474
|
+
* **Table:** improve design ([b50de0a](https://github.com/matsuri-tech/matsuri-ui/commit/b50de0a0c4f09f6861992fc22062313aca99db35))
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
### Others
|
|
478
|
+
|
|
479
|
+
* **deps:** pin dependencies ([9931d9e](https://github.com/matsuri-tech/matsuri-ui/commit/9931d9e8dc0a7362435a0efffe082f035f9666d5))
|
|
480
|
+
* **deps:** update babel monorepo to ^7.10.4 ([44ce6cf](https://github.com/matsuri-tech/matsuri-ui/commit/44ce6cf90d96a2d5b951b4ca5ef8ddfe7c49905c))
|
|
481
|
+
* **deps:** update dependency @popperjs/core to ^2.4.4 ([7fab393](https://github.com/matsuri-tech/matsuri-ui/commit/7fab393fee197410901b742f6672bc0cde3d678e))
|
|
482
|
+
* **deps:** update dependency @testing-library/react to ^10.4.5 ([479a286](https://github.com/matsuri-tech/matsuri-ui/commit/479a286f8ca30d4cfb69acb3731a7b25c7e2d4e9))
|
|
483
|
+
* **deps:** update dependency dayjs to ^1.8.29 ([64e7a9e](https://github.com/matsuri-tech/matsuri-ui/commit/64e7a9e298a338dc099d8fd5aedf55869e5108ac))
|
|
484
|
+
* **deps:** update dependency jest to ^26.1.0 ([ab0908f](https://github.com/matsuri-tech/matsuri-ui/commit/ab0908f09b4c53f6e42179f10279b244e56bf540))
|
|
485
|
+
* **deps:** update dependency react-table to ^7.2.2 ([4c0fd83](https://github.com/matsuri-tech/matsuri-ui/commit/4c0fd83eec0e365449055d2362113a77035275ec))
|
|
486
|
+
* **deps:** update dependency rollup to ^2.21.0 ([2c1fe3d](https://github.com/matsuri-tech/matsuri-ui/commit/2c1fe3d81c00b078ec1e06a0f7aa131bc9fb9804))
|
|
487
|
+
* **deps:** update dependency typescript to ^3.9.6 ([02c6d1d](https://github.com/matsuri-tech/matsuri-ui/commit/02c6d1dff619d7c39f6cea09d51877feae8693a0))
|
|
488
|
+
* **deps:** update eslint and prettier ([aa5d2fa](https://github.com/matsuri-tech/matsuri-ui/commit/aa5d2fa3a2a78530ff6e1b7751423190f42d1c6d))
|
|
489
|
+
* **deps:** update types ([4a3c622](https://github.com/matsuri-tech/matsuri-ui/commit/4a3c622f73a4cc3b8704a9616c95085325dc54df))
|
|
490
|
+
* **deps:** update typescript-eslint monorepo to ^3.6.0 ([d697d76](https://github.com/matsuri-tech/matsuri-ui/commit/d697d7610be2412d89ab9e1c5d8f4e846e26465e))
|
|
491
|
+
* **renovate:** simplify ([868dc94](https://github.com/matsuri-tech/matsuri-ui/commit/868dc94d72d168612d878abbb3f294fe29bdee3d))
|
|
492
|
+
* **stories/SelectField:** update ([9dbcc16](https://github.com/matsuri-tech/matsuri-ui/commit/9dbcc16d81820f1be3c3fdb7649216b84983b77e))
|
|
493
|
+
|
|
494
|
+
## [7.12.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.11.1...v7.12.0) (2020-06-26)
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
### Features
|
|
498
|
+
|
|
499
|
+
* **Select:** add helperText prop ([b471bc2](https://github.com/matsuri-tech/matsuri-ui/commit/b471bc2f0f1597124f3bbb8cc688d1583c5872fa))
|
|
500
|
+
* **Select:** add support to update value externally ([c793b36](https://github.com/matsuri-tech/matsuri-ui/commit/c793b362b3b0056b2e2116e3a3210c1132ad73b1))
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
### Bug Fixes
|
|
504
|
+
|
|
505
|
+
* **InputLabel:** make sure aria-disabled style correctly ([e44dab2](https://github.com/matsuri-tech/matsuri-ui/commit/e44dab21f3129fa1a333d1d446b444820c964bec))
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
### Others
|
|
509
|
+
|
|
510
|
+
* **Select:** make closer to more natural behavior of select element ([4516b3f](https://github.com/matsuri-tech/matsuri-ui/commit/4516b3feb61468287b9a7867e1e9d22553d0bcb4))
|
|
511
|
+
* **stories/SelectField:** update ([cd8da53](https://github.com/matsuri-tech/matsuri-ui/commit/cd8da53aeb99947ac6608508a604adb3aecca1c9))
|
|
512
|
+
|
|
513
|
+
### [7.11.1](https://github.com/matsuri-tech/matsuri-ui/compare/v7.11.0...v7.11.1) (2020-06-22)
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
### Others
|
|
517
|
+
|
|
518
|
+
* **deps:** upgrade --latest ([c010da0](https://github.com/matsuri-tech/matsuri-ui/commit/c010da0a327afce4b845c3312da8c9f9c58ae2a7))
|
|
519
|
+
* **eslint:** lint:ts ([8881373](https://github.com/matsuri-tech/matsuri-ui/commit/88813739e47842c030c510769de2b0c8bed18c60))
|
|
520
|
+
* **script:** remove textlint ([f65c89c](https://github.com/matsuri-tech/matsuri-ui/commit/f65c89c560368d4097983e8decbc1c58c2c86f58))
|
|
521
|
+
|
|
522
|
+
## [7.11.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.10.0...v7.11.0) (2020-06-22)
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
### Features
|
|
526
|
+
|
|
527
|
+
* **Table.Body:** add striped prop ([2f547a0](https://github.com/matsuri-tech/matsuri-ui/commit/2f547a0b78ea5b7859fe61bd58a295deb0535034))
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
### Others
|
|
531
|
+
|
|
532
|
+
* **components/Field:** change readonly colors ([b13b9dc](https://github.com/matsuri-tech/matsuri-ui/commit/b13b9dc5542430d81a700216e39d08d8f71d4d7c))
|
|
533
|
+
|
|
534
|
+
## [7.10.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.9.2...v7.10.0) (2020-06-18)
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
### Features
|
|
538
|
+
|
|
539
|
+
* **components:** make Fields add readOnly style ([b2f842b](https://github.com/matsuri-tech/matsuri-ui/commit/b2f842b8396c5699c45c10be8808874b54fc7b9d))
|
|
540
|
+
|
|
541
|
+
### [7.9.2](https://github.com/matsuri-tech/matsuri-ui/compare/v7.9.1...v7.9.2) (2020-06-18)
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
### Bug Fixes
|
|
545
|
+
|
|
546
|
+
* **components:** pass className properly ([419bfd2](https://github.com/matsuri-tech/matsuri-ui/commit/419bfd2cf8eb6ac53e9414b68950fe9022d2776d))
|
|
547
|
+
|
|
548
|
+
### [7.9.1](https://github.com/matsuri-tech/matsuri-ui/compare/v7.9.0...v7.9.1) (2020-06-17)
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
### Bug Fixes
|
|
552
|
+
|
|
553
|
+
* **Button:** improve click animation ([1bec624](https://github.com/matsuri-tech/matsuri-ui/commit/1bec624e6122a65d88e56534d4a2f211ee1621a8))
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
### Others
|
|
557
|
+
|
|
558
|
+
* **stories:** fix Pagination story ([7ed8c62](https://github.com/matsuri-tech/matsuri-ui/commit/7ed8c628cae73ae6c9147ecb985fe45018c37dda))
|
|
559
|
+
|
|
560
|
+
## [7.9.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.8.0...v7.9.0) (2020-06-17)
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
### Features
|
|
564
|
+
|
|
565
|
+
* **InputLabel:** add support of aria-disabled ([64bf524](https://github.com/matsuri-tech/matsuri-ui/commit/64bf5246c9dd2449269c38575d5fb1496f049fb4))
|
|
566
|
+
* **Pagination:** add support of numbering ellipsis ([705ee75](https://github.com/matsuri-tech/matsuri-ui/commit/705ee75a9ebdbb4d428c90a674667ae414c15d71))
|
|
567
|
+
* **SelectField:** add disabled prop ([809cae1](https://github.com/matsuri-tech/matsuri-ui/commit/809cae14982c2fac5218dcac9d2a9562dce3c751))
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
### Others
|
|
571
|
+
|
|
572
|
+
* **circleci:** improve preformance ([2e2e388](https://github.com/matsuri-tech/matsuri-ui/commit/2e2e3884d5e829eb037bab9e17dbdcb45693fd6e))
|
|
573
|
+
|
|
574
|
+
## [7.8.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.7.14...v7.8.0) (2020-06-15)
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
### Features
|
|
578
|
+
|
|
579
|
+
* **WeeklyCalendar:** add columnHeight ([929ea22](https://github.com/matsuri-tech/matsuri-ui/commit/929ea222e9fd1092cb6ab92bbb483e7392cf5455))
|
|
580
|
+
|
|
581
|
+
### [7.7.14](https://github.com/matsuri-tech/matsuri-ui/compare/v7.7.13...v7.7.14) (2020-06-11)
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
### Bug Fixes
|
|
585
|
+
|
|
586
|
+
* **Box:** prefer nowrap ([450b3d8](https://github.com/matsuri-tech/matsuri-ui/commit/450b3d8294789ffe217521007659746e8061a8ae))
|
|
587
|
+
* **Legend:** improve layout ([4f1f3a3](https://github.com/matsuri-tech/matsuri-ui/commit/4f1f3a399b3575e40ff474cfdd250d05d179d43d))
|
|
588
|
+
* **Pagination:** improve design ([76cc16f](https://github.com/matsuri-tech/matsuri-ui/commit/76cc16fd2451ec7e3172c6973785df472da5f9dc))
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
### Others
|
|
592
|
+
|
|
593
|
+
* **Steper:** improve style code ([ecf8f98](https://github.com/matsuri-tech/matsuri-ui/commit/ecf8f9847decd766204925e1880fa47bcf7da7a3))
|
|
594
|
+
|
|
595
|
+
### [7.7.13](https://github.com/matsuri-tech/matsuri-ui/compare/v7.7.12...v7.7.13) (2020-06-09)
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
### Bug Fixes
|
|
599
|
+
|
|
600
|
+
* **Typography:** add vender prefixes to lineClamp styles ([38fc1e8](https://github.com/matsuri-tech/matsuri-ui/commit/38fc1e88f574e26bbbb81dcd337e565f7f6f4381))
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
### Others
|
|
604
|
+
|
|
605
|
+
* **storybook:** quiet ([37a1496](https://github.com/matsuri-tech/matsuri-ui/commit/37a1496f0310e3523400cc5ca03ad645e99007fc))
|
|
606
|
+
|
|
607
|
+
### [7.7.12](https://github.com/matsuri-tech/matsuri-ui/compare/v7.7.11...v7.7.12) (2020-06-08)
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
### Bug Fixes
|
|
611
|
+
|
|
612
|
+
* **Button:** make pass fullWidth prop to the internal component explicitly ([4e84e05](https://github.com/matsuri-tech/matsuri-ui/commit/4e84e05cdd66931c9a89f2f8adbef4f3eb12f0ce))
|
|
613
|
+
|
|
614
|
+
### [7.7.11](https://github.com/matsuri-tech/matsuri-ui/compare/v7.7.10...v7.7.11) (2020-06-04)
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
### Bug Fixes
|
|
618
|
+
|
|
619
|
+
* **DateField:** make Calendar close on selected ([50429e4](https://github.com/matsuri-tech/matsuri-ui/commit/50429e402391c705516fe8948dac033341112de6))
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
### Others
|
|
623
|
+
|
|
624
|
+
* linting ([f6d3b0f](https://github.com/matsuri-tech/matsuri-ui/commit/f6d3b0fbc270c10b28cab189362c07b0dfe660e5))
|
|
625
|
+
* **deps:** update typescript to v3.9.3 ([9a61d46](https://github.com/matsuri-tech/matsuri-ui/commit/9a61d466ca191893f27985593b3680247b4c4ee6))
|
|
626
|
+
|
|
627
|
+
### [7.7.10](https://github.com/matsuri-tech/matsuri-ui/compare/v7.7.9...v7.7.10) (2020-06-04)
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
### Bug Fixes
|
|
631
|
+
|
|
632
|
+
* **Modal:** improve the layout that has long contents ([ac25b68](https://github.com/matsuri-tech/matsuri-ui/commit/ac25b68dae8173e5e53695e7712311f756b9494d))
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
### Others
|
|
636
|
+
|
|
637
|
+
* **deps:** maintain lockfile ([05216a1](https://github.com/matsuri-tech/matsuri-ui/commit/05216a18e0602f7a641408879d128e018c485e58))
|
|
638
|
+
|
|
639
|
+
### [7.7.9](https://github.com/matsuri-tech/matsuri-ui/compare/v7.7.8...v7.7.9) (2020-05-28)
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
### Bug Fixes
|
|
643
|
+
|
|
644
|
+
* **SelectField:** make List set minHeight to 200px after getting component's position ([6caa637](https://github.com/matsuri-tech/matsuri-ui/commit/6caa637111a45b42797dcc33fdd3eeafd9a7a696))
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
### Others
|
|
648
|
+
|
|
649
|
+
* **deps:** update dependency dayjs to ^1.8.28 ([9e58145](https://github.com/matsuri-tech/matsuri-ui/commit/9e58145d2bc7bcd4f9d2ecdbed676b42778aac10))
|
|
650
|
+
* **deps:** update dependency lint-staged to ^10.2.6 ([9482163](https://github.com/matsuri-tech/matsuri-ui/commit/9482163f000b484fd31838b48da19c11597fd3e3))
|
|
651
|
+
* **deps:** update dependency react-table to ^7.1.0 ([1ddbc09](https://github.com/matsuri-tech/matsuri-ui/commit/1ddbc09825f052f442abfa188ae5b2721259dbb6))
|
|
652
|
+
* **deps:** update dependency stylelint to ^13.5.0 ([0a9f6d6](https://github.com/matsuri-tech/matsuri-ui/commit/0a9f6d67d1ad4f908251a2d3e1bc7d75dc3d06b8))
|
|
653
|
+
* **deps:** update dependency ts-jest to v26 ([7262fad](https://github.com/matsuri-tech/matsuri-ui/commit/7262fad40059625d79c6fa8f89ba8619822ea8d5))
|
|
654
|
+
* **deps:** update dependency ts-loader to ^7.0.5 ([a140de4](https://github.com/matsuri-tech/matsuri-ui/commit/a140de44a346785fabadf76ca58e799a49d05fab))
|
|
655
|
+
* **deps:** update eslint and prettier ([a81e4c8](https://github.com/matsuri-tech/matsuri-ui/commit/a81e4c8403095ec86ae8d9e872bf2da98542e85c))
|
|
656
|
+
* **deps:** update rollup ([817797d](https://github.com/matsuri-tech/matsuri-ui/commit/817797dedda993c3cce6cbb0d28554d16f4175aa))
|
|
657
|
+
* **deps:** update storybook to ^5.3.19 ([978b151](https://github.com/matsuri-tech/matsuri-ui/commit/978b15157c3913ff6d08fb77fe4827dc44b5ad29))
|
|
658
|
+
* **deps:** update types ([9de7f83](https://github.com/matsuri-tech/matsuri-ui/commit/9de7f832b79ef906abd3de956326e6a921f89cf2))
|
|
659
|
+
* **deps:** update typescript-eslint monorepo to ^2.34.0 ([1232011](https://github.com/matsuri-tech/matsuri-ui/commit/1232011b04da45c00daff255444caa28611b1c25))
|
|
660
|
+
* **deps:** yarn add @typescript-eslint/eslint-plugin @typescript-eslint/parser --latest ([567f163](https://github.com/matsuri-tech/matsuri-ui/commit/567f163eaebb0bf42e5f58b04eddf48a76a71fb3))
|
|
661
|
+
|
|
662
|
+
### [7.7.8](https://github.com/matsuri-tech/matsuri-ui/compare/v7.7.7...v7.7.8) (2020-05-26)
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
### Bug Fixes
|
|
666
|
+
|
|
667
|
+
* **TextField:** make sure to give defaultValue to input element correctly ([413febc](https://github.com/matsuri-tech/matsuri-ui/commit/413febc194f8c64e949db36ea718d9227edfe381))
|
|
668
|
+
* **useSelect:** make initial label fallback to value correctly if the data has no label ([f2c09ad](https://github.com/matsuri-tech/matsuri-ui/commit/f2c09ad0fc79dbc9635cc25d52112c08bbd71a46))
|
|
669
|
+
|
|
670
|
+
### [7.7.7](https://github.com/matsuri-tech/matsuri-ui/compare/v7.7.6...v7.7.7) (2020-05-26)
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
### Bug Fixes
|
|
674
|
+
|
|
675
|
+
* **SelectField:** fix Stuttering Scrollbar ([0aa12d4](https://github.com/matsuri-tech/matsuri-ui/commit/0aa12d436a70c9e07a556688837dcc4745fa9b69))
|
|
676
|
+
* **useSearch:** make result respect the original order ([fab7622](https://github.com/matsuri-tech/matsuri-ui/commit/fab7622bdd9a119b1440a1cc400cd94ef1d176e2))
|
|
677
|
+
|
|
678
|
+
### [7.7.6](https://github.com/matsuri-tech/matsuri-ui/compare/v7.7.5...v7.7.6) (2020-05-22)
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
### Bug Fixes
|
|
682
|
+
|
|
683
|
+
* **Modal:** add support of long contents ([3546df8](https://github.com/matsuri-tech/matsuri-ui/commit/3546df8f5aa08a4cda8ac20edb2a82e7408d6287))
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
### Others
|
|
687
|
+
|
|
688
|
+
* **stories/Modal:** rename LongContent to FullScreenLongContent ([ccba4c2](https://github.com/matsuri-tech/matsuri-ui/commit/ccba4c28a010db12f3f1ac9df6610e438908c99e))
|
|
689
|
+
|
|
690
|
+
### [7.7.5](https://github.com/matsuri-tech/matsuri-ui/compare/v7.7.4...v7.7.5) (2020-05-22)
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
### Bug Fixes
|
|
694
|
+
|
|
695
|
+
* **CalendarUI:** fix CalendarDayEvent length at the beginning of the month ([d94bca8](https://github.com/matsuri-tech/matsuri-ui/commit/d94bca83bec69cb0818b0912e05527621c6857a2))
|
|
696
|
+
* **TextFiled:** make correct updating value on controlled ([73d5073](https://github.com/matsuri-tech/matsuri-ui/commit/73d5073d1db7f49f0410d96082e23b158bd58d14))
|
|
697
|
+
|
|
698
|
+
### [7.7.4](https://github.com/matsuri-tech/matsuri-ui/compare/v7.7.3...v7.7.4) (2020-05-21)
|
|
699
|
+
|
|
700
|
+
|
|
701
|
+
### Bug Fixes
|
|
702
|
+
|
|
703
|
+
* **CalendarUI/Controller:** make Buttons' type `button` ([d20051d](https://github.com/matsuri-tech/matsuri-ui/commit/d20051d825e7c3f61cc2467cc60f7c8d436b7f2a))
|
|
704
|
+
|
|
705
|
+
### [7.7.3](https://github.com/matsuri-tech/matsuri-ui/compare/v7.7.2...v7.7.3) (2020-05-19)
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
### Bug Fixes
|
|
709
|
+
|
|
710
|
+
* **DateField:** make disabledPortal true in many use cases ([b93f75b](https://github.com/matsuri-tech/matsuri-ui/commit/b93f75b21a979ac230869b43241c543372994fc6))
|
|
711
|
+
|
|
712
|
+
### [7.7.2](https://github.com/matsuri-tech/matsuri-ui/compare/v7.7.1...v7.7.2) (2020-05-15)
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
### Bug Fixes
|
|
716
|
+
|
|
717
|
+
* **useTable:** make cells' order follow the order of columns ([0d3b2b4](https://github.com/matsuri-tech/matsuri-ui/commit/0d3b2b409812a56963feecd4af278a438f38e792))
|
|
718
|
+
|
|
719
|
+
### [7.7.1](https://github.com/matsuri-tech/matsuri-ui/compare/v7.7.0...v7.7.1) (2020-05-14)
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
### Bug Fixes
|
|
723
|
+
|
|
724
|
+
* **SelectField:** make suppress length of SelectList ([e4aa722](https://github.com/matsuri-tech/matsuri-ui/commit/e4aa7225da25fd9d00d8409288d8247d8992606e))
|
|
725
|
+
* use useRef instead of useCallback ([9408972](https://github.com/matsuri-tech/matsuri-ui/commit/9408972cca0a75374073e9fc581c3477d9827ff2))
|
|
726
|
+
|
|
727
|
+
|
|
728
|
+
### Others
|
|
729
|
+
|
|
730
|
+
* **ci:** add circle ci config.yml ([0408a83](https://github.com/matsuri-tech/matsuri-ui/commit/0408a83d143349403e4b824dc1b383c706607840))
|
|
731
|
+
* **circleci:** update ([dc112c6](https://github.com/matsuri-tech/matsuri-ui/commit/dc112c6d51c23032dd7b84a135f0073ecda2ef89))
|
|
732
|
+
* **components:** export Container ([9a2982b](https://github.com/matsuri-tech/matsuri-ui/commit/9a2982ba6712b4e2f2db008533b681aa07db3c4f))
|
|
733
|
+
* **deps:** update babel monorepo to ^7.9.6 ([4676537](https://github.com/matsuri-tech/matsuri-ui/commit/4676537233d7f5aa15a8f0530319a5b5993124cb))
|
|
734
|
+
* **deps:** update dependency @popperjs/core to ^2.4.0 ([b88376a](https://github.com/matsuri-tech/matsuri-ui/commit/b88376a2d85ea8784261059f48e48ec70aa16e50))
|
|
735
|
+
* **deps:** update dependency @testing-library/react to ^10.0.4 ([f62145d](https://github.com/matsuri-tech/matsuri-ui/commit/f62145d896139ae741fe7d41f76588e58950a226))
|
|
736
|
+
* **deps:** update dependency conventional-changelog-cli to ^2.0.34 ([298c377](https://github.com/matsuri-tech/matsuri-ui/commit/298c37785e5ecbbe00c14201156b28cc9534d189))
|
|
737
|
+
* **deps:** update dependency lint-staged to ^10.2.2 ([0127255](https://github.com/matsuri-tech/matsuri-ui/commit/0127255356d44f26b304432d95b51923690d6eaa))
|
|
738
|
+
* **deps:** update dependency react-transition-group to ^4.4.1 ([deb46b5](https://github.com/matsuri-tech/matsuri-ui/commit/deb46b5f47cdac4a4ed0b76c9cac1e16d1b4b4b0))
|
|
739
|
+
* **deps:** update dependency rollup to ^2.9.1 ([1d2816e](https://github.com/matsuri-tech/matsuri-ui/commit/1d2816e8c812d156c51025cb6cc39abc05eef9b4))
|
|
740
|
+
* **deps:** update dependency ts-loader to ^7.0.4 ([c374937](https://github.com/matsuri-tech/matsuri-ui/commit/c3749373e9592088dc1c387b7c4e551da35fc78c))
|
|
741
|
+
* **deps:** update main packages ([1d966fd](https://github.com/matsuri-tech/matsuri-ui/commit/1d966fdd10a25018a11a7648608e72c2a82c8f2f))
|
|
742
|
+
* **deps:** update types ([6f4be19](https://github.com/matsuri-tech/matsuri-ui/commit/6f4be194aed6310c49b45af6b0fffb1667db287a))
|
|
743
|
+
* **deps:** update typescript-eslint monorepo to ^2.32.0 ([8c22fca](https://github.com/matsuri-tech/matsuri-ui/commit/8c22fca4aeb1cd12de1f90495f6cbcba0aa7fa71))
|
|
744
|
+
* **deps:** yarn upgrade --latest ([6ce3795](https://github.com/matsuri-tech/matsuri-ui/commit/6ce3795b0814daf9770e5cec8530782b5f3c84e7))
|
|
745
|
+
* **Portal:** remove unused eslint-disable directive ([1a17a75](https://github.com/matsuri-tech/matsuri-ui/commit/1a17a75665f812185e20a745e1f4ed316df128f2))
|
|
746
|
+
|
|
747
|
+
## [7.7.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.6.2...v7.7.0) (2020-05-07)
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
### Features
|
|
751
|
+
|
|
752
|
+
* **components:** add FullHeight ([0293f15](https://github.com/matsuri-tech/matsuri-ui/commit/0293f15d844cee8ce581901b57e551eb87d00f89))
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
### Documents
|
|
756
|
+
|
|
757
|
+
* **AsComponentProps:** add description of `as` prop ([277b2b9](https://github.com/matsuri-tech/matsuri-ui/commit/277b2b91e84c4dd8a4a0d17f57ed487a2bbc2bc6))
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
### Others
|
|
761
|
+
|
|
762
|
+
* **components:** export FullHeight ([29b1f09](https://github.com/matsuri-tech/matsuri-ui/commit/29b1f0902707a095c8104c46e1dd8e012938a0c4))
|
|
763
|
+
|
|
764
|
+
### [7.6.2](https://github.com/matsuri-tech/matsuri-ui/compare/v7.6.1...v7.6.2) (2020-05-05)
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
### Bug Fixes
|
|
768
|
+
|
|
769
|
+
* **Alert:** reduce shadows ([901b55f](https://github.com/matsuri-tech/matsuri-ui/commit/901b55fdb83b4c5b4af547411dd8cde28b82301d))
|
|
770
|
+
* **CalendarUI:** improve display of events' children ([ca8d6a2](https://github.com/matsuri-tech/matsuri-ui/commit/ca8d6a2923df13d90653459dc354ccf4d77ad833))
|
|
771
|
+
* **ImageViewer:** improve specifications and performance ([c6c449c](https://github.com/matsuri-tech/matsuri-ui/commit/c6c449c42b70be1390effb95d677faa90c66a645))
|
|
772
|
+
* **Thumbnail:** add support of forwardRef ([a29dfe2](https://github.com/matsuri-tech/matsuri-ui/commit/a29dfe281abae0f9c1a3914639677d05597aa4a9))
|
|
773
|
+
* **useKeyboard:** migrate from `code` to `key` ([bccea6b](https://github.com/matsuri-tech/matsuri-ui/commit/bccea6b57da40950a443c3592718bb7a0cb75277))
|
|
774
|
+
|
|
775
|
+
### [7.6.1](https://github.com/matsuri-tech/matsuri-ui/compare/v7.6.0...v7.6.1) (2020-05-04)
|
|
776
|
+
|
|
777
|
+
|
|
778
|
+
### Bug Fixes
|
|
779
|
+
|
|
780
|
+
* **Popper:** fallback to `position: absolute` when disablePortal ([cba0736](https://github.com/matsuri-tech/matsuri-ui/commit/cba0736f705e6a877219d8def520b464815be9bf))
|
|
781
|
+
* **SearchField:** make the comparison process of key and query always performed in lowercase ([2dbedb4](https://github.com/matsuri-tech/matsuri-ui/commit/2dbedb45675aadfb4fe649f41a2618ad26053fc4))
|
|
782
|
+
* **TextField:** adjust the right margin of startAdorment ([86d7ef1](https://github.com/matsuri-tech/matsuri-ui/commit/86d7ef1a5b8afc0e63bfce20d2113041a1681326))
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
### Others
|
|
786
|
+
|
|
787
|
+
* **deps:** maintain lock file ([20650ff](https://github.com/matsuri-tech/matsuri-ui/commit/20650ff4147254a9f8343cc21c7f9a0ac6bae1f0))
|
|
788
|
+
|
|
789
|
+
## [7.6.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.5.0...v7.6.0) (2020-05-01)
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
### Features
|
|
793
|
+
|
|
794
|
+
* **CalendarUI:** make children in the event fill the period ([310ad00](https://github.com/matsuri-tech/matsuri-ui/commit/310ad0004b3924f2e2bab535d68c515dc2d008e3))
|
|
795
|
+
|
|
796
|
+
## [7.5.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.4.2...v7.5.0) (2020-04-30)
|
|
797
|
+
|
|
798
|
+
|
|
799
|
+
### Features
|
|
800
|
+
|
|
801
|
+
* **Alert:** add id to AlertOptions ([4b3e50f](https://github.com/matsuri-tech/matsuri-ui/commit/4b3e50f7ecc1c6e88747f16c37958584387c847c))
|
|
802
|
+
* **CalendarDaysInMonth:** allow events to have children ([dd997dc](https://github.com/matsuri-tech/matsuri-ui/commit/dd997dcd0d573504358e4177687def70447c4689))
|
|
803
|
+
* **components:** add ErrorBoundary ([8f1bf3d](https://github.com/matsuri-tech/matsuri-ui/commit/8f1bf3daff32d9b499b7dbe8874753fe64923df7))
|
|
804
|
+
* **components:** add ErrorBoundaryAlert ([221edd7](https://github.com/matsuri-tech/matsuri-ui/commit/221edd76f6ff6d29a3c79ff7d0a58792e8317c74))
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
### Others
|
|
808
|
+
|
|
809
|
+
* **deps:** remove extra dependencies ([86f88be](https://github.com/matsuri-tech/matsuri-ui/commit/86f88be13ba26fc4fc50a99e90ad08160710491a))
|
|
810
|
+
* **deps:** update dependency @testing-library/react to ^10.0.3 ([b4b9b06](https://github.com/matsuri-tech/matsuri-ui/commit/b4b9b06dd1be46869981cd4b97504d61fb4c4701))
|
|
811
|
+
* **deps:** update dependency @types/react-router-dom to ^5.1.5 ([482709f](https://github.com/matsuri-tech/matsuri-ui/commit/482709f4b390091cecdc0bb9929fb3b469de2f29))
|
|
812
|
+
* **deps:** update dependency core-js to v3.6.5 ([2edc62d](https://github.com/matsuri-tech/matsuri-ui/commit/2edc62dae790dd88c9462922acd83c671b63f24e))
|
|
813
|
+
* **deps:** update dependency dayjs to ^1.8.25 ([be9d163](https://github.com/matsuri-tech/matsuri-ui/commit/be9d163549ff97888cc8b589a59f92b8f29cae6c))
|
|
814
|
+
* **deps:** update dependency eslint-config-prettier to ^6.11.0 ([46cb42b](https://github.com/matsuri-tech/matsuri-ui/commit/46cb42b6697d098b4b78efcd104c7c9ca9d21e77))
|
|
815
|
+
* **deps:** update dependency eslint-plugin-prettier to ^3.1.3 ([cff4d6a](https://github.com/matsuri-tech/matsuri-ui/commit/cff4d6a3f64925aca7a4c086da996c3ea5d59018))
|
|
816
|
+
* **deps:** update dependency husky to ^4.2.5 ([edbd8c2](https://github.com/matsuri-tech/matsuri-ui/commit/edbd8c21426228fb59f2c02bf05388b2f265a896))
|
|
817
|
+
* **deps:** update dependency jest to ^25.4.0 ([75f6e59](https://github.com/matsuri-tech/matsuri-ui/commit/75f6e5913a7227996a0dc6545daad3b16ff96a59))
|
|
818
|
+
* **deps:** update dependency react-icons to ^3.10.0 ([6da3c2f](https://github.com/matsuri-tech/matsuri-ui/commit/6da3c2f472799b6f153d3cfdfd0155590dcc2bab))
|
|
819
|
+
* **deps:** update dependency ts-jest to ^25.4.0 ([e8db139](https://github.com/matsuri-tech/matsuri-ui/commit/e8db1394a38a7170de94a605caa247d66e91a80b))
|
|
820
|
+
* **deps:** update dependency ts-loader to v7 ([a669f4c](https://github.com/matsuri-tech/matsuri-ui/commit/a669f4ca1ee479b6686919f42e65de12cabeb735))
|
|
821
|
+
* **renovate:** fix config ([060c29f](https://github.com/matsuri-tech/matsuri-ui/commit/060c29fd1fd7cf3763787392912fd4b56dd1e034))
|
|
822
|
+
* **renovate:** make config simple ([9c879f5](https://github.com/matsuri-tech/matsuri-ui/commit/9c879f5c9955d7991e36a76ee2cf02ad51ad5ab2))
|
|
823
|
+
* **rollup:** remove extra configuration ([11e2da7](https://github.com/matsuri-tech/matsuri-ui/commit/11e2da7792af9c2c9856fada71226e194960ab49))
|
|
824
|
+
|
|
825
|
+
### [7.4.2](https://github.com/matsuri-tech/matsuri-ui/compare/v7.4.1...v7.4.2) (2020-04-28)
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
### Bug Fixes
|
|
829
|
+
|
|
830
|
+
* **useTable:** make useTable highly available ([9cf1d61](https://github.com/matsuri-tech/matsuri-ui/commit/9cf1d6170190839ab1f34c34b98732f455a4a707))
|
|
831
|
+
|
|
832
|
+
### [7.4.1](https://github.com/matsuri-tech/matsuri-ui/compare/v7.4.0...v7.4.1) (2020-04-28)
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
### Others
|
|
836
|
+
|
|
837
|
+
* **deps:** update dependency @popperjs/core to ^2.3.3 ([a8a3b66](https://github.com/matsuri-tech/matsuri-ui/commit/a8a3b6681b662f7155722e7d52592b450b18a54e))
|
|
838
|
+
* **deps:** update dependency @types/react to ^16.9.34 ([873f917](https://github.com/matsuri-tech/matsuri-ui/commit/873f91777ed00d926b65367a82cc32f2a7208300))
|
|
839
|
+
* **deps:** update dependency @types/react-dom to ^16.9.6 ([b3a5fae](https://github.com/matsuri-tech/matsuri-ui/commit/b3a5fae3879fed32bec7c1796bf8e142a739bcaa))
|
|
840
|
+
* **deps:** update dependency lint-staged to ^10.1.7 ([5370d45](https://github.com/matsuri-tech/matsuri-ui/commit/5370d459b55aa0209ce3c05ca06d9ab1f9a1cef5))
|
|
841
|
+
* **deps:** update dependency prettier to ^2.0.5 ([0f61f39](https://github.com/matsuri-tech/matsuri-ui/commit/0f61f39b5c8607605c087e93ee3da2a096afb6ac))
|
|
842
|
+
* **deps:** update dependency react-table to ^7.0.4 ([4128908](https://github.com/matsuri-tech/matsuri-ui/commit/41289086f42aa8cd98d9848045f15726f6ee42fe))
|
|
843
|
+
* **deps:** update dependency rollup to ^2.7.2 ([ab44082](https://github.com/matsuri-tech/matsuri-ui/commit/ab440827640a9185107f0727a7bf78c31eeee632))
|
|
844
|
+
* **deps:** update dependency rollup-plugin-visualizer to ^4.0.4 ([5520f76](https://github.com/matsuri-tech/matsuri-ui/commit/5520f7673323db3d6d8c1b709ebfc96e20a1ae9a))
|
|
845
|
+
* **deps:** update dependency styled-components to ^5.1.0 ([4abe696](https://github.com/matsuri-tech/matsuri-ui/commit/4abe696c22337f599ce326f7cc9fe05e292b0515))
|
|
846
|
+
* **deps:** update dependency stylelint to ^13.3.3 ([0bff07a](https://github.com/matsuri-tech/matsuri-ui/commit/0bff07a44ef5dbdad7bcd380cee4c1e91d76914f))
|
|
847
|
+
* **deps:** update storybook monorepo to ^5.3.18 ([c188746](https://github.com/matsuri-tech/matsuri-ui/commit/c188746ffe010d50d407daeeba0db1e9ae45b8dc))
|
|
848
|
+
* **deps:** update types ([68946bc](https://github.com/matsuri-tech/matsuri-ui/commit/68946bcf39cd9da4c82deb3d8719e0bea9db0ff3))
|
|
849
|
+
* **deps:** update typescript-eslint monorepo to ^2.29.0 ([5f2ab4f](https://github.com/matsuri-tech/matsuri-ui/commit/5f2ab4ff834ab0af7d74002b1ea1be75463690d0))
|
|
850
|
+
* **Table:** extract types of Props and export them ([bfe0bef](https://github.com/matsuri-tech/matsuri-ui/commit/bfe0befdf630c29c777d89160d0d523dbd14abca))
|
|
851
|
+
|
|
852
|
+
## [7.4.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.3.1...v7.4.0) (2020-04-16)
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
### Features
|
|
856
|
+
|
|
857
|
+
* **SortArea:** remake ([0ffcd4d](https://github.com/matsuri-tech/matsuri-ui/commit/0ffcd4d5bb8b8c5da61f0c24a623d8d77c22fc01))
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
### Bug Fixes
|
|
861
|
+
|
|
862
|
+
* **SelectField:** correct display ([f4f90b1](https://github.com/matsuri-tech/matsuri-ui/commit/f4f90b12c27ddc3d60c40764e71fa744b3b4b658))
|
|
863
|
+
|
|
864
|
+
### [7.3.1](https://github.com/matsuri-tech/matsuri-ui/compare/v7.3.0...v7.3.1) (2020-04-15)
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
### Bug Fixes
|
|
868
|
+
|
|
869
|
+
* **SelectField:** make defaultValue prop give to Select ([74d150a](https://github.com/matsuri-tech/matsuri-ui/commit/74d150a8c2b99fda04ca1b82f326c32a86e48162))
|
|
870
|
+
* **Table:** make export TableCheckbox, useTable ([ec87fd9](https://github.com/matsuri-tech/matsuri-ui/commit/ec87fd97b6319ce3a23136a23053e539f18ba1fb))
|
|
871
|
+
|
|
872
|
+
## [7.3.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.2.0...v7.3.0) (2020-04-13)
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
### Features
|
|
876
|
+
|
|
877
|
+
* **components:** add Container ([7cf58d0](https://github.com/matsuri-tech/matsuri-ui/commit/7cf58d09cdc666122719f0740ef0e3d3f48f5620))
|
|
878
|
+
* **SelectField:** add defaultValue prop ([3b67804](https://github.com/matsuri-tech/matsuri-ui/commit/3b6780441ee6e036ecdc98f2d8c9cee44ba6f027))
|
|
879
|
+
|
|
880
|
+
|
|
881
|
+
### Bug Fixes
|
|
882
|
+
|
|
883
|
+
* **Alert:** make display alert on backdrop ([1d35331](https://github.com/matsuri-tech/matsuri-ui/commit/1d353310a96415443a7855bb4e938d0d312a211c))
|
|
884
|
+
* **components:** make export RadioButtonGroup ([dbe7728](https://github.com/matsuri-tech/matsuri-ui/commit/dbe772859816e32c8d405327a50d2a4240a36a30))
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
### Others
|
|
888
|
+
|
|
889
|
+
* **components:** export CalendarWeek ([49be0d3](https://github.com/matsuri-tech/matsuri-ui/commit/49be0d374a362426223314dc235318f151954de7))
|
|
890
|
+
* **deps:** update dependency @testing-library/react to ^10.0.2 ([#610](https://github.com/matsuri-tech/matsuri-ui/issues/610)) ([9429036](https://github.com/matsuri-tech/matsuri-ui/commit/9429036d8392f572f88e0d4cc6d20b86646446c0))
|
|
891
|
+
* **deps:** update dependency ts-jest to ^25.3.0 ([#608](https://github.com/matsuri-tech/matsuri-ui/issues/608)) ([ddb703f](https://github.com/matsuri-tech/matsuri-ui/commit/ddb703f6120a8781c15bd91a8494423cb1634695))
|
|
892
|
+
* **github:** make actions disabled ([5e56e02](https://github.com/matsuri-tech/matsuri-ui/commit/5e56e023355980476a603a832888dbd89b3698c9))
|
|
893
|
+
* yarn lint:fix ([7415e99](https://github.com/matsuri-tech/matsuri-ui/commit/7415e99c15ebe8360268974c390c9b58bf16a715))
|
|
894
|
+
|
|
895
|
+
## [7.2.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.2.0-alpha.1...v7.2.0) (2020-03-31)
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
### Features
|
|
899
|
+
|
|
900
|
+
* **hooks:** add useTable ([#599](https://github.com/matsuri-tech/matsuri-ui/issues/599)) ([c7b6175](https://github.com/matsuri-tech/matsuri-ui/commit/c7b61759543d10b285ec36c8e251765982bd9e87))
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
### Bug Fixes
|
|
904
|
+
|
|
905
|
+
* **SVGComponents:** provide ref from forwardRef ([10ac301](https://github.com/matsuri-tech/matsuri-ui/commit/10ac3012658cb2ce85e15652ca703fe17346ce15))
|
|
906
|
+
|
|
907
|
+
|
|
908
|
+
### Others
|
|
909
|
+
|
|
910
|
+
* **deps:** update dependency @types/react to ^16.9.27 ([#604](https://github.com/matsuri-tech/matsuri-ui/issues/604)) ([9ee3997](https://github.com/matsuri-tech/matsuri-ui/commit/9ee39970d978f93f631bdae0c19bef62a449c282))
|
|
911
|
+
* **deps:** update dependency eslint-plugin-react-hooks to v3 ([279d692](https://github.com/matsuri-tech/matsuri-ui/commit/279d69284e2af127508d4fc87e0911fa12106703))
|
|
912
|
+
* **deps:** update dependency jest to ^25.2.4 ([dd9dfa1](https://github.com/matsuri-tech/matsuri-ui/commit/dd9dfa1f006d30078a546157adde89509ce0be6f))
|
|
913
|
+
* **deps:** update dependency react-docgen-typescript-loader to ^3.7.2 ([#606](https://github.com/matsuri-tech/matsuri-ui/issues/606)) ([75b93dd](https://github.com/matsuri-tech/matsuri-ui/commit/75b93dd19867280018cbe6c666183f46d93c0b3c))
|
|
914
|
+
* **deps:** update dependency rollup-plugin-typescript2 to ^0.27.0 ([cbd368f](https://github.com/matsuri-tech/matsuri-ui/commit/cbd368ffcf7cfd99219d54262a4df30d1d9832bd))
|
|
915
|
+
* **deps:** update dependency rollup-plugin-visualizer to v4 ([5e690ca](https://github.com/matsuri-tech/matsuri-ui/commit/5e690cad9a85b0de98f499959f210caafc0bb0da))
|
|
916
|
+
|
|
917
|
+
## [7.2.0-alpha.1](https://github.com/matsuri-tech/matsuri-ui/compare/v7.2.0-alpha.0...v7.2.0-alpha.1) (2020-03-28)
|
|
918
|
+
|
|
919
|
+
|
|
920
|
+
### Bug Fixes
|
|
921
|
+
|
|
922
|
+
* **TabPanel:** correct display property value ([5918dc4](https://github.com/matsuri-tech/matsuri-ui/commit/5918dc44ca3183649b1a2519b08ad6bd0aeb5e6c))
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
### Others
|
|
926
|
+
|
|
927
|
+
* **deps:** update dependency @types/react to ^16.9.26 ([#597](https://github.com/matsuri-tech/matsuri-ui/issues/597)) ([ca98ec1](https://github.com/matsuri-tech/matsuri-ui/commit/ca98ec112bdd5c7ebda9145be313682e9c4d489a))
|
|
928
|
+
* **deps:** update dependency jest to ^25.2.3 ([da44364](https://github.com/matsuri-tech/matsuri-ui/commit/da443644e50913433371ec7ce66a5fb81a34afd4))
|
|
929
|
+
* **deps:** update dependency prettier to v2 ([5235552](https://github.com/matsuri-tech/matsuri-ui/commit/5235552e9d67e6e87ae8246351d896fbcd926203))
|
|
930
|
+
* **deps:** update react monorepo ([#595](https://github.com/matsuri-tech/matsuri-ui/issues/595)) ([ffa728d](https://github.com/matsuri-tech/matsuri-ui/commit/ffa728d8f7b0e7569d68dd9c9b3a9c3633e4256f))
|
|
931
|
+
* **deps:** update typescript-eslint monorepo to ^2.25.0 ([eb91f69](https://github.com/matsuri-tech/matsuri-ui/commit/eb91f69f41270e65f2da824d6ee7fa2d3678431e))
|
|
932
|
+
* **SortArea:** add no draggable story ([d24bc56](https://github.com/matsuri-tech/matsuri-ui/commit/d24bc56d6087401d89852fc2dc9386fe0d57b499))
|
|
933
|
+
* **src:** yarn lint:fix:ts ([b22e66f](https://github.com/matsuri-tech/matsuri-ui/commit/b22e66f686635c6f6406690945ce9c3278460ef8))
|
|
934
|
+
|
|
935
|
+
## [7.2.0-alpha.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.1.1...v7.2.0-alpha.0) (2020-03-27)
|
|
936
|
+
|
|
937
|
+
|
|
938
|
+
### Features
|
|
939
|
+
|
|
940
|
+
* **components:** add MultipleTextField ([6cc467b](https://github.com/matsuri-tech/matsuri-ui/commit/6cc467b627935221f19f54fee4dc53b1c548956c))
|
|
941
|
+
* **DropArea:** add accept attribute ([92b89b2](https://github.com/matsuri-tech/matsuri-ui/commit/92b89b245928ad9ebcf30b7327e36281235f6ce1))
|
|
942
|
+
* **DropArea:** component only reaction if available "accept" props ([35f4a1e](https://github.com/matsuri-tech/matsuri-ui/commit/35f4a1e293bd59f32bce07c6aaeec732d6b07fec))
|
|
943
|
+
* **Inputs:** remove directory ([ba16d13](https://github.com/matsuri-tech/matsuri-ui/commit/ba16d13f1d99dda95b99cee5132127c3dfcacfdc))
|
|
944
|
+
|
|
945
|
+
|
|
946
|
+
### Bug Fixes
|
|
947
|
+
|
|
948
|
+
* void 0 to undefined ([cab5e38](https://github.com/matsuri-tech/matsuri-ui/commit/cab5e38437751c90a81e74cc3e4136ea1d02c043))
|
|
949
|
+
|
|
950
|
+
|
|
951
|
+
### Others
|
|
952
|
+
|
|
953
|
+
* **Breadcrumbs:** migration @emotion/core from @material-ui/styled ([df5b0fb](https://github.com/matsuri-tech/matsuri-ui/commit/df5b0fbf3b44696bfd9bd584e28df4271a42b86a))
|
|
954
|
+
* **components:** migrate @emotion/core from @material-ui/styled ([f4d8584](https://github.com/matsuri-tech/matsuri-ui/commit/f4d858415c7b6c727830f6d52b1acc6afe956e7e))
|
|
955
|
+
* **components:** migrate @emotion/core from @material-ui/styled ([39478ff](https://github.com/matsuri-tech/matsuri-ui/commit/39478fff360ba19d458c30acf9fbbe04f3e74951))
|
|
956
|
+
* **deps:** remove @material-ui/styles ([9e4b2dc](https://github.com/matsuri-tech/matsuri-ui/commit/9e4b2dc86ce0dc1b51bb8890fbbcb3e1fc55011c))
|
|
957
|
+
* **deps:** update dependency @babel/preset-react to ^7.9.4 ([#587](https://github.com/matsuri-tech/matsuri-ui/issues/587)) ([3ad7e61](https://github.com/matsuri-tech/matsuri-ui/commit/3ad7e612b1f1bbdac49ed50c59134107f9e9f8b9))
|
|
958
|
+
* **deps:** update dependency lint-staged to ^10.0.9 ([#588](https://github.com/matsuri-tech/matsuri-ui/issues/588)) ([6bbdf75](https://github.com/matsuri-tech/matsuri-ui/commit/6bbdf75e27410c719a8c7d33a14ca9ab5ee35ebd))
|
|
959
|
+
* **deps:** update dependency rollup to ^2.2.0 ([#589](https://github.com/matsuri-tech/matsuri-ui/issues/589)) ([7b94acb](https://github.com/matsuri-tech/matsuri-ui/commit/7b94acb3fdb61acaf763cf14ff9fdcfae60afccb))
|
|
960
|
+
* **FormControl:** migration @emotion/core from @material-ui/styled ([6e6861b](https://github.com/matsuri-tech/matsuri-ui/commit/6e6861b16225eb6cb4343052289ca548e308a9f9))
|
|
961
|
+
* **Icon:** migration @emotion/core from @material-ui/styled ([38f66c2](https://github.com/matsuri-tech/matsuri-ui/commit/38f66c21dae192495804353d1b6bd6753bb7b8ba))
|
|
962
|
+
* **InputLabel:** migration @emotion/core from @material-ui/styled ([331db35](https://github.com/matsuri-tech/matsuri-ui/commit/331db3549f3652714107e3665ae496b2a4d9dfea))
|
|
963
|
+
* **vscode:** add emotion-init litetal snippet ([4dd3795](https://github.com/matsuri-tech/matsuri-ui/commit/4dd37953241b3caf1058b94ca21a522ead538582))
|
|
964
|
+
|
|
965
|
+
### [7.1.1](https://github.com/matsuri-tech/matsuri-ui/compare/v7.1.0...v7.1.1) (2020-03-25)
|
|
966
|
+
|
|
967
|
+
|
|
968
|
+
### Others
|
|
969
|
+
|
|
970
|
+
* make checking isBrowser strict ([42e52ca](https://github.com/matsuri-tech/matsuri-ui/commit/42e52caf63da2084867db7949d11fa46a32324a2))
|
|
971
|
+
* **components:** add support of SSR `window is not defined` ([924de33](https://github.com/matsuri-tech/matsuri-ui/commit/924de336c3810f2aaefc9660dcd1ca9268eadff9))
|
|
972
|
+
* **scripts:** add release:alpha ([b3dcf7c](https://github.com/matsuri-tech/matsuri-ui/commit/b3dcf7c677f734ea7b694ccc078772fede9d6b43))
|
|
973
|
+
|
|
974
|
+
## [7.1.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.0.3...v7.1.0) (2020-03-25)
|
|
975
|
+
|
|
976
|
+
|
|
977
|
+
### Features
|
|
978
|
+
|
|
979
|
+
* **Layouts:** make flexbox components extend flexitem components ([4df6e87](https://github.com/matsuri-tech/matsuri-ui/commit/4df6e8761986e7bf76b3b69e9642617d3413450b))
|
|
980
|
+
* **Thumbanil:** add props.compressWidth, props.compressHeight, props.contained and export useCompressImage hook ([2944670](https://github.com/matsuri-tech/matsuri-ui/commit/2944670907281284be2bcbf4fe281fe5cb36bccd))
|
|
981
|
+
|
|
982
|
+
|
|
983
|
+
### Bug Fixes
|
|
984
|
+
|
|
985
|
+
* **Thumbnail:** stop skelton screen animation ([cc632a0](https://github.com/matsuri-tech/matsuri-ui/commit/cc632a038fb760ba114f8cb21bceb5f874e1e800))
|
|
986
|
+
|
|
987
|
+
|
|
988
|
+
### Others
|
|
989
|
+
|
|
990
|
+
* **deps:** remove compressor.js ([3d11fee](https://github.com/matsuri-tech/matsuri-ui/commit/3d11fee392cd2b15d9479f331aba3a8f2624b250))
|
|
991
|
+
|
|
992
|
+
### [7.0.3](https://github.com/matsuri-tech/matsuri-ui/compare/v7.0.2...v7.0.3) (2020-03-24)
|
|
993
|
+
|
|
994
|
+
|
|
995
|
+
### Bug Fixes
|
|
996
|
+
|
|
997
|
+
* **theme:** make useTheme add support of CustomTheme ([52bc7d8](https://github.com/matsuri-tech/matsuri-ui/commit/52bc7d815e7b3767da5539b8615da1d5844cab79))
|
|
998
|
+
|
|
999
|
+
### [7.0.2](https://github.com/matsuri-tech/matsuri-ui/compare/v7.0.1...v7.0.2) (2020-03-24)
|
|
1000
|
+
|
|
1001
|
+
|
|
1002
|
+
### Bug Fixes
|
|
1003
|
+
|
|
1004
|
+
* typo of intention ([45362b0](https://github.com/matsuri-tech/matsuri-ui/commit/45362b08219db4111b1e5ceee2f411710c390284))
|
|
1005
|
+
* **theme:** check original has key ([f4f9f9b](https://github.com/matsuri-tech/matsuri-ui/commit/f4f9f9b00790c6c99d9ef382d8cc840fcabff851))
|
|
1006
|
+
|
|
1007
|
+
|
|
1008
|
+
### Others
|
|
1009
|
+
|
|
1010
|
+
* **deps:** update dependency eslint-config-prettier to ^6.10.1 ([#571](https://github.com/matsuri-tech/matsuri-ui/issues/571)) ([f6e19a1](https://github.com/matsuri-tech/matsuri-ui/commit/f6e19a1554f4c5ca6672719a15f828c7026758ad))
|
|
1011
|
+
* **deps:** update dependency ts-loader to ^6.2.2 ([#573](https://github.com/matsuri-tech/matsuri-ui/issues/573)) ([34ac3ad](https://github.com/matsuri-tech/matsuri-ui/commit/34ac3ad7ebb5fa26d4608b784a04c73a1f58b37f))
|
|
1012
|
+
|
|
1013
|
+
### [7.0.1](https://github.com/matsuri-tech/matsuri-ui/compare/v7.0.0...v7.0.1) (2020-03-23)
|
|
1014
|
+
|
|
1015
|
+
## [7.0.0](https://github.com/matsuri-tech/matsuri-ui/compare/v7.0.0-alpha.0...v7.0.0) (2020-03-23)
|
|
1016
|
+
|
|
1017
|
+
|
|
1018
|
+
### Others
|
|
1019
|
+
|
|
1020
|
+
* **deps:** update babel monorepo ([8379e6f](https://github.com/matsuri-tech/matsuri-ui/commit/8379e6fd509f9f86b0347bc2295c3083e9034354))
|
|
1021
|
+
* **deps:** update dependency @babel/preset-react to ^7.9.1 ([#565](https://github.com/matsuri-tech/matsuri-ui/issues/565)) ([53c9893](https://github.com/matsuri-tech/matsuri-ui/commit/53c9893a53e915f8b7b6a80118c3da99f7cd0064))
|
|
1022
|
+
* **deps:** update dependency @types/react to ^16.9.25 ([#564](https://github.com/matsuri-tech/matsuri-ui/issues/564)) ([da1683e](https://github.com/matsuri-tech/matsuri-ui/commit/da1683ebb3c9774b64d2f345abf836d51d3d4a8b))
|
|
1023
|
+
* **deps:** update dependency babel-preset-react-app to ^9.1.2 ([#566](https://github.com/matsuri-tech/matsuri-ui/issues/566)) ([0dd6ff5](https://github.com/matsuri-tech/matsuri-ui/commit/0dd6ff5a1e4b6b949815133fed3c663ebc8c7f9a))
|
|
1024
|
+
* **docs:** add about Overriding Theme ([7ab4754](https://github.com/matsuri-tech/matsuri-ui/commit/7ab4754cff3e8448990d0302284471d6d76ea181))
|
|
1025
|
+
* **rollup:** ignore stats.html ([e5d81ca](https://github.com/matsuri-tech/matsuri-ui/commit/e5d81ca6b2a33268d8a51a0670b9cf4aad664114))
|
|
1026
|
+
* **theme:** make Theme enable overriding ([97ae4b3](https://github.com/matsuri-tech/matsuri-ui/commit/97ae4b3fb7e225d412b4a12a4a353ceded2f8b8c))
|
|
1027
|
+
|
|
1028
|
+
## [7.0.0-alpha.0](https://github.com/matsuri-tech/matsuri-ui/compare/v6.9.2...v7.0.0-alpha.0) (2020-03-20)
|
|
1029
|
+
|
|
1030
|
+
|
|
1031
|
+
### ⚠ BREAKING CHANGES
|
|
1032
|
+
|
|
1033
|
+
* **RadioButtonGroup:** RadioButton has had its props changed drastically, and was supposed to be used inside a RadioButtonGroup
|
|
1034
|
+
|
|
1035
|
+
### Features
|
|
1036
|
+
|
|
1037
|
+
* **components:** add SearchField ([d0b0444](https://github.com/matsuri-tech/matsuri-ui/commit/d0b04440c3b3184f81494b4c0804aa30ca67b7ca))
|
|
1038
|
+
* **DropArea:** make forwardRef component ([e4f67e7](https://github.com/matsuri-tech/matsuri-ui/commit/e4f67e7fc09aec05d5b9063e450b1f2b2f64f522))
|
|
1039
|
+
* **hooks:** add useSearch ([e95019c](https://github.com/matsuri-tech/matsuri-ui/commit/e95019cb2382e96b3f87b659d89a448380a3c972))
|
|
1040
|
+
* **Layouts:** rename Flexbox to Box, FlexItem to Item ([adb1fd3](https://github.com/matsuri-tech/matsuri-ui/commit/adb1fd303a65085d0b8c7d34562ff91c3c4efdab))
|
|
1041
|
+
* **RadioButtonGroup:** make RadioButton's props fit the feeling of implementation ([fad5ccb](https://github.com/matsuri-tech/matsuri-ui/commit/fad5ccb33acd35ea8be19e7926699a9b65ed0816))
|
|
1042
|
+
* **TextField:** add support of startAdornment ([6ed4cab](https://github.com/matsuri-tech/matsuri-ui/commit/6ed4cabc8f53c68749714dc866a281267baa516f))
|
|
1043
|
+
* **theme:** update Theme structure ([2306d46](https://github.com/matsuri-tech/matsuri-ui/commit/2306d46784919661be0aa817a3fd78aeb3bc84c8))
|
|
1044
|
+
* **useSearch:** add suppot of mulitiple keys ([8732813](https://github.com/matsuri-tech/matsuri-ui/commit/8732813b6f04923aceffa9d5b3f48a15812664f2))
|
|
1045
|
+
|
|
1046
|
+
|
|
1047
|
+
### Bug Fixes
|
|
1048
|
+
|
|
1049
|
+
* **Popper:** correct type ([3d7bd94](https://github.com/matsuri-tech/matsuri-ui/commit/3d7bd9440515bcf38e46a6f9a9604c2ce79f7531))
|
|
1050
|
+
* **Portal:** correct type ([6c3e22e](https://github.com/matsuri-tech/matsuri-ui/commit/6c3e22ec398a76d2043aa380631080606d9dcf68))
|
|
1051
|
+
* **Thumbnail:** correct type ([c4b9f2c](https://github.com/matsuri-tech/matsuri-ui/commit/c4b9f2c54f30b87af83202c16cab7da60db6bd6c))
|
|
1052
|
+
* `Parameter 'tag' implicitly has an 'any' type` ([16a60e1](https://github.com/matsuri-tech/matsuri-ui/commit/16a60e1556100552f339bf15144cb6665712d4ae))
|
|
1053
|
+
* correct types ([18476ec](https://github.com/matsuri-tech/matsuri-ui/commit/18476ec8c0b228089e44e01cf3fbb0e3aaf5d67d))
|
|
1054
|
+
* Not all code paths return a value ([56c8ce8](https://github.com/matsuri-tech/matsuri-ui/commit/56c8ce867a3577b3d29962e669eeea9300ae41aa))
|
|
1055
|
+
* **Button:** fix type ([8e1e245](https://github.com/matsuri-tech/matsuri-ui/commit/8e1e2450ea1f9f54b21ab6d9771a81e17d5dffc7))
|
|
1056
|
+
* **Checkbox:** correct disabled Checkbox ([022d2fd](https://github.com/matsuri-tech/matsuri-ui/commit/022d2fd1d05c537624dedf2a8dac864fd6334713))
|
|
1057
|
+
* **Checkbox:** correct type ([6d7eb37](https://github.com/matsuri-tech/matsuri-ui/commit/6d7eb375efad752faa830adbf42ed3ad9536d2f9))
|
|
1058
|
+
* **Steper:** correct coloring ([8ddf366](https://github.com/matsuri-tech/matsuri-ui/commit/8ddf366d8e5c4677af1911f25bad4937830dc8ce))
|
|
1059
|
+
* **theme:** remove default color & disabled color from palette.intentions ([bcf0c80](https://github.com/matsuri-tech/matsuri-ui/commit/bcf0c804043d28fbe16aefa6799d745c1a8f1622))
|
|
1060
|
+
|
|
1061
|
+
|
|
1062
|
+
### Others
|
|
1063
|
+
|
|
1064
|
+
* **Alert:** improve performance ([69e3fcb](https://github.com/matsuri-tech/matsuri-ui/commit/69e3fcbd048e3855e92bc3e8ec226d662ce70a91))
|
|
1065
|
+
* **Button:** improve performance & design ([9b225a9](https://github.com/matsuri-tech/matsuri-ui/commit/9b225a91e9d5a819962855a2b985779e9e3f537a))
|
|
1066
|
+
* **Checkbox:** improve performance ([f14dafb](https://github.com/matsuri-tech/matsuri-ui/commit/f14dafb7d8e44d2aa7efa1c47e43b14b075b7773))
|
|
1067
|
+
* **components:** export SearchField ([e3375ba](https://github.com/matsuri-tech/matsuri-ui/commit/e3375bae7fe9c94467c453f394ed796d7fb25a0d))
|
|
1068
|
+
* **components:** remove internal components ([d66968e](https://github.com/matsuri-tech/matsuri-ui/commit/d66968ea6e7b75a2764294e3f8518beac7b03a9d))
|
|
1069
|
+
* **deps:** update dependency @popperjs/core to ^2.1.1 ([#548](https://github.com/matsuri-tech/matsuri-ui/issues/548)) ([31bb7bb](https://github.com/matsuri-tech/matsuri-ui/commit/31bb7bb6e908f8978cfaf0bb9f493a60f9343f9c))
|
|
1070
|
+
* **deps:** update dependency dayjs to ^1.8.23 ([#549](https://github.com/matsuri-tech/matsuri-ui/issues/549)) ([d700608](https://github.com/matsuri-tech/matsuri-ui/commit/d7006083af4ea7e59a008929240f2192b3d7218e))
|
|
1071
|
+
* **deps:** update dependency lint-staged to v10 ([541c975](https://github.com/matsuri-tech/matsuri-ui/commit/541c9754f7d052564c9fb6a0b05b81d97be60c3e))
|
|
1072
|
+
* **deps:** update dependency stylelint-config-recess-order to ^2.0.4 ([#550](https://github.com/matsuri-tech/matsuri-ui/issues/550)) ([57d001c](https://github.com/matsuri-tech/matsuri-ui/commit/57d001cca551aa5eec3ae3b3856edd3feee2eafb))
|
|
1073
|
+
* **deps:** update typescript-eslint monorepo to ^2.24.0 ([5e7d832](https://github.com/matsuri-tech/matsuri-ui/commit/5e7d832b72ffcc6cdf806fb6e3831b67d1bbb347))
|
|
1074
|
+
* **ImageViewer:** correct CSS property orders ([e539290](https://github.com/matsuri-tech/matsuri-ui/commit/e539290ab09625c5a6b376a279471158cd03a5cd))
|
|
1075
|
+
* **SearchField:** rename onChange with onChangeQuery ([aa39713](https://github.com/matsuri-tech/matsuri-ui/commit/aa39713f19d5e6e228c18c330f0bf7e0efd392ff))
|
|
1076
|
+
* **SelectField:** add support of children ([662867b](https://github.com/matsuri-tech/matsuri-ui/commit/662867bf9c7d6f41368b86900130f125b84c6da9))
|
|
1077
|
+
* **stories:** add DataDisplay category ([72efcf3](https://github.com/matsuri-tech/matsuri-ui/commit/72efcf3d3728f4211a513885f046c362a2abcbd7))
|
|
1078
|
+
* **stories:** add Examples category ([b1c5a04](https://github.com/matsuri-tech/matsuri-ui/commit/b1c5a04845a4d0603f93757fd270d4c2162ee756))
|
|
1079
|
+
* **stories:** add feedback category ([514e3d4](https://github.com/matsuri-tech/matsuri-ui/commit/514e3d4ebf7806a69352c3de0a19f44dd365cc1a))
|
|
1080
|
+
* **stories:** add Galleries category ([59a05b2](https://github.com/matsuri-tech/matsuri-ui/commit/59a05b2150c775270647bc7f3dc891223a175ef0))
|
|
1081
|
+
* **stories:** add Icon to Data display category ([59a1355](https://github.com/matsuri-tech/matsuri-ui/commit/59a1355dec74f99d8b7f59136dfc1ab521410040))
|
|
1082
|
+
* **stories:** add ImageViewer to Utils caategory ([701c24d](https://github.com/matsuri-tech/matsuri-ui/commit/701c24d09c42f84f35d4d747073023192ecc77ed))
|
|
1083
|
+
* **stories:** add Legend to Data Display category ([5bfa4e3](https://github.com/matsuri-tech/matsuri-ui/commit/5bfa4e3b02cdde070581fb653c517df738155b4c))
|
|
1084
|
+
* **stories:** add List to Data Display category ([639eb97](https://github.com/matsuri-tech/matsuri-ui/commit/639eb979ba87df7e164ffed9b0b76acd2dcce278))
|
|
1085
|
+
* **stories:** add Loading to DataDisplay category ([54019c2](https://github.com/matsuri-tech/matsuri-ui/commit/54019c2729138585d8c1a35985255d4e56547365))
|
|
1086
|
+
* **stories:** add LoadingOverlay to Utils category ([de6c7c9](https://github.com/matsuri-tech/matsuri-ui/commit/de6c7c9361919cf696793d3f0dc84582a15d6b36))
|
|
1087
|
+
* **stories:** add Menu to Navigation category ([c30891e](https://github.com/matsuri-tech/matsuri-ui/commit/c30891ede4e449aede563a0913fa8d5b8d9601b3))
|
|
1088
|
+
* **stories:** add Mobile Components to Layouts category ([1717c28](https://github.com/matsuri-tech/matsuri-ui/commit/1717c28a36ddde8b6ebb7ff738ae11e8ff2a11a5))
|
|
1089
|
+
* **stories:** add Modal to Utils category ([2bd294a](https://github.com/matsuri-tech/matsuri-ui/commit/2bd294ab0be5c101f70cfb47489670134c170dd4))
|
|
1090
|
+
* **stories:** add navigation category ([8e00462](https://github.com/matsuri-tech/matsuri-ui/commit/8e004629c2106ca127b167f1967d756ca40d218a))
|
|
1091
|
+
* **stories:** add Search stories ([09d1945](https://github.com/matsuri-tech/matsuri-ui/commit/09d1945e254d03d847f723be9bbff2d8465b28f2))
|
|
1092
|
+
* **stories:** add Surfaces category ([c0b2034](https://github.com/matsuri-tech/matsuri-ui/commit/c0b2034ad98cc9d5c1b48d860c9563a5b736739a))
|
|
1093
|
+
* **stories:** add Utils catrgory ([861ac1f](https://github.com/matsuri-tech/matsuri-ui/commit/861ac1f86926d2c8a41c045513ea8ba68e4f18eb))
|
|
1094
|
+
* **stories:** categorize some components stories ([8ee4c14](https://github.com/matsuri-tech/matsuri-ui/commit/8ee4c14f2f45f2fcd187655e59f5790070d68bc4))
|
|
1095
|
+
* **stories:** correct Overlay stories type ([2eb0213](https://github.com/matsuri-tech/matsuri-ui/commit/2eb0213ed0d6dab4bbc5675fa694e3bb790ca1ac))
|
|
1096
|
+
* **stories:** correct Pagination stories type ([1993606](https://github.com/matsuri-tech/matsuri-ui/commit/1993606ec4d6eb1e20b9fbe527c0283c5ca9140e))
|
|
1097
|
+
* **stories:** correct Panel stories type ([bdda4ca](https://github.com/matsuri-tech/matsuri-ui/commit/bdda4ca9cce575ec389657af284bcf21d47ff981))
|
|
1098
|
+
* **stories:** correct ProgressBar stories type ([cd099b6](https://github.com/matsuri-tech/matsuri-ui/commit/cd099b6d5f9921a612f17cfb00493adc518b61a6))
|
|
1099
|
+
* **stories:** correct SelectField stories type ([cf63fb2](https://github.com/matsuri-tech/matsuri-ui/commit/cf63fb22cf9d0df525f49647124f6e823281c0a1))
|
|
1100
|
+
* **stories:** correct SortAre stories type ([811939c](https://github.com/matsuri-tech/matsuri-ui/commit/811939cb84632b8254d90717163984089b095b86))
|
|
1101
|
+
* **stories:** correct stories type ([e8ee164](https://github.com/matsuri-tech/matsuri-ui/commit/e8ee164b1ae1eff44f9759366937e76e32ffb406))
|
|
1102
|
+
* **stories:** disabled Table stories ([cc15621](https://github.com/matsuri-tech/matsuri-ui/commit/cc15621d4a6eba3589e0c16e372a98914fa8aefa))
|
|
1103
|
+
* **stories:** improve catgorieze ([1f7b359](https://github.com/matsuri-tech/matsuri-ui/commit/1f7b359f7b82ff7e58b2355b2daecfaaf828b245))
|
|
1104
|
+
* **stories:** remove Icons notes ([d55848d](https://github.com/matsuri-tech/matsuri-ui/commit/d55848ddb6d3ba3b9ae4891ce41bd9a832d9f246))
|
|
1105
|
+
* **stories:** remove minor component stories ([385341f](https://github.com/matsuri-tech/matsuri-ui/commit/385341f86adac726b54851ce301c4cb1b3e91b78))
|
|
1106
|
+
* **stories:** remove stories like examples ([bac4f96](https://github.com/matsuri-tech/matsuri-ui/commit/bac4f96979599fc92a4bc9f19ac8d330436af1f5))
|
|
1107
|
+
* **stories:** revive directory structure ([9266e7d](https://github.com/matsuri-tech/matsuri-ui/commit/9266e7dd0159b79cf001b40f035209bffeab71b4))
|
|
1108
|
+
* **tsx:** add strict type check for stories ([07ffa01](https://github.com/matsuri-tech/matsuri-ui/commit/07ffa0144637d84c5df29565404d2eaa8cfda106))
|
|
1109
|
+
* remove needless files ([ce18d04](https://github.com/matsuri-tech/matsuri-ui/commit/ce18d04fa1dd053298249cc45452a386583f0bc7))
|
|
1110
|
+
* **useSearch:** improve performance ([4624d2f](https://github.com/matsuri-tech/matsuri-ui/commit/4624d2f8022b7c21e0446bbff4c7d3560c2dea26))
|
|
1111
|
+
* **useSearch:** rename word with query ([54c531b](https://github.com/matsuri-tech/matsuri-ui/commit/54c531bea8a0afff8fcf7ef77096c1fa7d1a7559))
|
|
1112
|
+
|
|
1113
|
+
### [6.9.2](https://github.com/matsuri-tech/matsuri-ui/compare/v6.9.1...v6.9.2) (2020-03-17)
|
|
1114
|
+
|
|
1115
|
+
|
|
1116
|
+
### Others
|
|
1117
|
+
|
|
1118
|
+
* **deps:** make react-sprint peerdeps ([318484e](https://github.com/matsuri-tech/matsuri-ui/commit/318484e52566d2618c643bc5db5ca9503ed0581f))
|
|
1119
|
+
|
|
1120
|
+
### [6.9.1](https://github.com/matsuri-tech/matsuri-ui/compare/v6.9.0...v6.9.1) (2020-03-17)
|
|
1121
|
+
|
|
1122
|
+
|
|
1123
|
+
### Bug Fixes
|
|
1124
|
+
|
|
1125
|
+
* **SelectField:** make internal Popper disabled ([7394919](https://github.com/matsuri-tech/matsuri-ui/commit/739491916bf79d9717f75d6b86b943bc92ad0202))
|
|
1126
|
+
|
|
1127
|
+
|
|
1128
|
+
### Others
|
|
1129
|
+
|
|
1130
|
+
* **deps:** degradation react-spring ([f8e8a34](https://github.com/matsuri-tech/matsuri-ui/commit/f8e8a344c7f5ba684b41d8cf6f7d43cf6b20a05d))
|
|
1131
|
+
|
|
1132
|
+
## [6.9.0](https://github.com/matsuri-tech/matsuri-ui/compare/v6.8.0...v6.9.0) (2020-03-16)
|
|
1133
|
+
|
|
1134
|
+
|
|
1135
|
+
### Features
|
|
1136
|
+
|
|
1137
|
+
* **components:** add Carousel ([23169fe](https://github.com/matsuri-tech/matsuri-ui/commit/23169fe7043a9358a752e3c1c5df52e03914a478))
|
|
1138
|
+
* **components:** add ImageViewer ([a7d104b](https://github.com/matsuri-tech/matsuri-ui/commit/a7d104bfba20435891eeddedb594c3c0822e484c))
|
|
1139
|
+
* **components:** add Status ([0fdd82d](https://github.com/matsuri-tech/matsuri-ui/commit/0fdd82de249cea2d7443ff1251196890cc48518f))
|
|
1140
|
+
* **components:** export ImageViewer ([a97ca46](https://github.com/matsuri-tech/matsuri-ui/commit/a97ca46f68bc90d850ffebb8e16e71d3f13d7761))
|
|
1141
|
+
* **components:** export Status ([af97d17](https://github.com/matsuri-tech/matsuri-ui/commit/af97d17884ad9e56ed05bc4cee72e55af73a967c))
|
|
1142
|
+
* **ImageViewer:** add onClickOutside prop ([62bc6c4](https://github.com/matsuri-tech/matsuri-ui/commit/62bc6c4759a8be753e46b78daf47f59341bd79ff))
|
|
1143
|
+
|
|
1144
|
+
|
|
1145
|
+
### Bug Fixes
|
|
1146
|
+
|
|
1147
|
+
* **Chip:** remove dependency on button component ([39fae8a](https://github.com/matsuri-tech/matsuri-ui/commit/39fae8aa2d1b52057c3482079f9ed19809947c27))
|
|
1148
|
+
* **ImageViewer:** improve UI ([d10702f](https://github.com/matsuri-tech/matsuri-ui/commit/d10702f9452902813bf7326fe3343f1bd7c7b6c4))
|
|
1149
|
+
|
|
1150
|
+
|
|
1151
|
+
### Others
|
|
1152
|
+
|
|
1153
|
+
* **Button:** make it a forwardRef component ([da2884c](https://github.com/matsuri-tech/matsuri-ui/commit/da2884cac56645821f69cca45a6f8f5036b8ae9c))
|
|
1154
|
+
* **Carousel:** rename to ViewCarousel ([37ed609](https://github.com/matsuri-tech/matsuri-ui/commit/37ed6092e89a24f158999bfb70f94044d84831df))
|
|
1155
|
+
* **Chip:** make flexible style ([a6c8ff4](https://github.com/matsuri-tech/matsuri-ui/commit/a6c8ff4dfc3fcbee0b9de6c306cc216f84ec9372))
|
|
1156
|
+
* **components:** export Carousel ([ec2eff3](https://github.com/matsuri-tech/matsuri-ui/commit/ec2eff38ee9d7ec4a6de83c87b841b7b3b7ba3b5))
|
|
1157
|
+
* **deps:** add rollup-plugin-visualizer ([bef61ca](https://github.com/matsuri-tech/matsuri-ui/commit/bef61ca3286623c2c2f0a420fc486161e79bef7c))
|
|
1158
|
+
* **deps:** update dependency @testing-library/react to v10 ([5d0b468](https://github.com/matsuri-tech/matsuri-ui/commit/5d0b4686bda55dc0ba444ffc1edec97412545ecb))
|
|
1159
|
+
* **deps:** update dependency react-docgen-typescript-loader to ^3.7.1 ([c9159df](https://github.com/matsuri-tech/matsuri-ui/commit/c9159dfb0a51695622d240d9787b4ee19ff3e8f3))
|
|
1160
|
+
* **deps:** update dependency react-table to ^7.0.0 ([#534](https://github.com/matsuri-tech/matsuri-ui/issues/534)) ([c70dfe4](https://github.com/matsuri-tech/matsuri-ui/commit/c70dfe430b405d33949a9707f12d250620cc295a))
|
|
1161
|
+
* **deps:** update dependency rollup to ^2.0.3 ([e7d9320](https://github.com/matsuri-tech/matsuri-ui/commit/e7d93209e6b3ec1070caa71994a58b09b0d83f5e))
|
|
1162
|
+
* **deps:** update dependency rollup to ^2.0.6 ([#536](https://github.com/matsuri-tech/matsuri-ui/issues/536)) ([ca4cd1d](https://github.com/matsuri-tech/matsuri-ui/commit/ca4cd1d48a00f7db16017639e3719582a0b1d752))
|
|
1163
|
+
* **deps:** update dependency stylelint to ^13.2.1 ([#523](https://github.com/matsuri-tech/matsuri-ui/issues/523)) ([56f70cd](https://github.com/matsuri-tech/matsuri-ui/commit/56f70cd4526d9bbd02e78d6451bf414db2c29d82))
|
|
1164
|
+
* **deps:** update react-spring ([4caea7d](https://github.com/matsuri-tech/matsuri-ui/commit/4caea7db7835f05021aa4afc88e988294ef080f7))
|
|
1165
|
+
* **deps:** update storybook monorepo to ^5.3.17 ([#538](https://github.com/matsuri-tech/matsuri-ui/issues/538)) ([3e8ecbc](https://github.com/matsuri-tech/matsuri-ui/commit/3e8ecbcac856878340fbd67d2725d413e686b642))
|
|
1166
|
+
* **deps:** update typescript-eslint monorepo to ^2.23.0 ([53294fa](https://github.com/matsuri-tech/matsuri-ui/commit/53294fa7f8e2f0b5865eb7c8242e250ef71867d1))
|
|
1167
|
+
* **ImageViewer:** improve UI ([9b812d4](https://github.com/matsuri-tech/matsuri-ui/commit/9b812d4b742b1043f1d0a2a4589b59b4c0823eb2))
|
|
1168
|
+
* **ImageViewer:** rename index with currentIndex ([7a79410](https://github.com/matsuri-tech/matsuri-ui/commit/7a79410f6d5ab2d9c697c510567bae558cf9d685))
|
|
1169
|
+
* **rollup:** fix 'each' is not exported by node_modules/@react-spring/shared/index.js ([41f8909](https://github.com/matsuri-tech/matsuri-ui/commit/41f89097d6ab9842b0b6d9026ccfe3462e8129df))
|
|
1170
|
+
* **rollup:** fix config ([4f9827f](https://github.com/matsuri-tech/matsuri-ui/commit/4f9827fbc0cfceee83baf9de4afc78f2d135705e))
|
|
1171
|
+
* **stories:** add Carousel stories ([7097472](https://github.com/matsuri-tech/matsuri-ui/commit/709747287e3b9ba6759919293ad509d812210d25))
|
|
1172
|
+
* **stories:** add ImageViewer story ([1dbdc1e](https://github.com/matsuri-tech/matsuri-ui/commit/1dbdc1e1cab42c3599e24a90f721eb98fbed001f))
|
|
1173
|
+
* **stories:** add Status stories ([fd5a5e1](https://github.com/matsuri-tech/matsuri-ui/commit/fd5a5e19fd4a913c7151110dea5cd8c2a5439d53))
|
|
1174
|
+
* **stories:** fix Button stories ([60d0ae4](https://github.com/matsuri-tech/matsuri-ui/commit/60d0ae42bdce2c3945a0a2af9cf1a3c0228f4b72))
|
|
1175
|
+
* **stories:** update Chip stories ([e639669](https://github.com/matsuri-tech/matsuri-ui/commit/e639669f8430447a8d949a8ff4850ae89f5c78d6))
|
|
1176
|
+
* **theme:** update caption font-size ([8aeeaf8](https://github.com/matsuri-tech/matsuri-ui/commit/8aeeaf868b7d15d84f6922bf152f50553457ab7c))
|
|
1177
|
+
* **types:** fix Loading types for react-spring ([719ff87](https://github.com/matsuri-tech/matsuri-ui/commit/719ff87437f1641d986f9e595f7a431c90488bb5))
|
|
1178
|
+
* **useOnClickOutside:** make version for multiple elements ([751db87](https://github.com/matsuri-tech/matsuri-ui/commit/751db87df6e0b85f76a5f55308c6ee6cf3d6cc03))
|
|
1179
|
+
* **ViewCarousel:** manage views as children ([39f4be4](https://github.com/matsuri-tech/matsuri-ui/commit/39f4be4ac2d4d466eb72bdbf564043fa580db1e6))
|
|
1180
|
+
* **ViewCarousel:** remove useless code ([c1e8ef9](https://github.com/matsuri-tech/matsuri-ui/commit/c1e8ef9f0d314cc5fe7ffae7a29d76d7115dd981))
|
|
1181
|
+
|
|
1182
|
+
|
|
1183
|
+
### Documents
|
|
1184
|
+
|
|
1185
|
+
* add GitHub pages ([ba5a10d](https://github.com/matsuri-tech/matsuri-ui/commit/ba5a10d7b41308794a5f445f56bb9baf7d106a6e))
|
|
1186
|
+
|
|
1187
|
+
## [6.8.0](https://github.com/matsuri-tech/matsuri-ui/compare/v6.7.0...v6.8.0) (2020-03-10)
|
|
1188
|
+
|
|
1189
|
+
|
|
1190
|
+
### Features
|
|
1191
|
+
|
|
1192
|
+
* **WeeklyCalendarUI:** add onChange props, handler that fires when the base date changes ([3081fd1](https://github.com/matsuri-tech/matsuri-ui/commit/3081fd105dbd4a042cf6aa13771560618e01a7f4)), closes [#520](https://github.com/matsuri-tech/matsuri-ui/issues/520)
|
|
1193
|
+
|
|
1194
|
+
|
|
1195
|
+
### Others
|
|
1196
|
+
|
|
1197
|
+
* **deps:** update babel monorepo to ^7.8.7 ([#510](https://github.com/matsuri-tech/matsuri-ui/issues/510)) ([5650518](https://github.com/matsuri-tech/matsuri-ui/commit/565051819bedb78c54bb347681537127bd862812))
|
|
1198
|
+
* **deps:** update dependency @types/jest to ^25.1.4 ([#513](https://github.com/matsuri-tech/matsuri-ui/issues/513)) ([5e2dd99](https://github.com/matsuri-tech/matsuri-ui/commit/5e2dd99e3770a0f2129615908ec8c9fbf0230d5a))
|
|
1199
|
+
* **deps:** update dependency dayjs to ^1.8.22 ([#519](https://github.com/matsuri-tech/matsuri-ui/issues/519)) ([bbb1064](https://github.com/matsuri-tech/matsuri-ui/commit/bbb1064e69a19085b22295b414a744009d279494))
|
|
1200
|
+
* **deps:** update dependency rollup to ^1.32.1 ([#512](https://github.com/matsuri-tech/matsuri-ui/issues/512)) ([7076e84](https://github.com/matsuri-tech/matsuri-ui/commit/7076e8452cba21dd594f8b6fe22442a6e091ae44))
|
|
1201
|
+
* **deps:** update dependency rollup to v2 ([b7075ec](https://github.com/matsuri-tech/matsuri-ui/commit/b7075ec7b680d84ec090b419cbc698e9e65a4c9d))
|
|
1202
|
+
* **deps:** update dependency rollup-plugin-babel to ^4.4.0 ([#514](https://github.com/matsuri-tech/matsuri-ui/issues/514)) ([8749403](https://github.com/matsuri-tech/matsuri-ui/commit/8749403bde9f1d534973b6bf68137d6b7fb60417))
|
|
1203
|
+
* **deps:** update react ([#515](https://github.com/matsuri-tech/matsuri-ui/issues/515)) ([b5a95dd](https://github.com/matsuri-tech/matsuri-ui/commit/b5a95dd00ee50e186ebe3551789f650fa42fb24c))
|
|
1204
|
+
* **ZipCodeField:** change API domain ([f8b031a](https://github.com/matsuri-tech/matsuri-ui/commit/f8b031a46d3b5ae2099eb196f0aaa0b08ebf6c1b))
|
|
1205
|
+
|
|
1206
|
+
## [6.7.0](https://github.com/matsuri-tech/matsuri-ui/compare/v6.6.0...v6.7.0) (2020-03-06)
|
|
1207
|
+
|
|
1208
|
+
|
|
1209
|
+
### Features
|
|
1210
|
+
|
|
1211
|
+
* **LoadingOverlay:** add helperText attribute ([6b69e49](https://github.com/matsuri-tech/matsuri-ui/commit/6b69e49b17b9deff35af40f902fd12d5d3732e73))
|
|
1212
|
+
|
|
1213
|
+
## [6.6.0](https://github.com/matsuri-tech/matsuri-ui/compare/v6.5.1...v6.6.0) (2020-03-06)
|
|
1214
|
+
|
|
1215
|
+
|
|
1216
|
+
### Features
|
|
1217
|
+
|
|
1218
|
+
* **Popper:** migrate to popper.js v2 ([e4facc4](https://github.com/matsuri-tech/matsuri-ui/commit/e4facc45721c9a2665925bd4ead8d06795a6f908))
|
|
1219
|
+
|
|
1220
|
+
|
|
1221
|
+
### Bug Fixes
|
|
1222
|
+
|
|
1223
|
+
* **Overlay:** fix typo of of property name `potision` to `position` ([5ccde62](https://github.com/matsuri-tech/matsuri-ui/commit/5ccde6217694ca8d63a16cdd5169723d4d6444f9))
|
|
1224
|
+
|
|
1225
|
+
|
|
1226
|
+
### Others
|
|
1227
|
+
|
|
1228
|
+
* **deps:** migrate to @popperjs/core from popperjs ([6d5a539](https://github.com/matsuri-tech/matsuri-ui/commit/6d5a539b917ff52a419081adaa4a7c0a4d0299f6))
|
|
1229
|
+
* **deps:** update dependency @testing-library/react to ^9.5.0 ([#503](https://github.com/matsuri-tech/matsuri-ui/issues/503)) ([11a8f9c](https://github.com/matsuri-tech/matsuri-ui/commit/11a8f9c7eea91f72eb6b8f34f83880a55544cc4b))
|
|
1230
|
+
|
|
1231
|
+
### [6.5.1](https://github.com/matsuri-tech/matsuri-ui/compare/v6.5.0...v6.5.1) (2020-03-05)
|
|
1232
|
+
|
|
1233
|
+
|
|
1234
|
+
### Bug Fixes
|
|
1235
|
+
|
|
1236
|
+
* **Tooltip:** improve styles ([583a957](https://github.com/matsuri-tech/matsuri-ui/commit/583a9571c2dd9779bed3802b492bddba553b5111))
|
|
1237
|
+
|
|
1238
|
+
|
|
1239
|
+
### Others
|
|
1240
|
+
|
|
1241
|
+
* **deps:** update typescript-eslint monorepo to ^2.22.0 ([b747a14](https://github.com/matsuri-tech/matsuri-ui/commit/b747a148417e422e4289b4e05071cb9ea3fd069c))
|
|
1242
|
+
* **stories:** add Tooltip WithModal story ([a635345](https://github.com/matsuri-tech/matsuri-ui/commit/a63534568d62eae8a438d53b2353589643316b7d))
|
|
1243
|
+
|
|
1244
|
+
## [6.5.0](https://github.com/matsuri-tech/matsuri-ui/compare/v6.4.0...v6.5.0) (2020-03-03)
|
|
1245
|
+
|
|
1246
|
+
|
|
1247
|
+
### Features
|
|
1248
|
+
|
|
1249
|
+
* **components:** add LoadingOverlay ([9884f0f](https://github.com/matsuri-tech/matsuri-ui/commit/9884f0f68da3890582498cb2c567acda95af0d3c)), closes [#495](https://github.com/matsuri-tech/matsuri-ui/issues/495)
|
|
1250
|
+
* **Overlay:** add fullScreen props ([bf52009](https://github.com/matsuri-tech/matsuri-ui/commit/bf52009937fe20cfa58074de9e5e47d2985c777f))
|
|
1251
|
+
|
|
1252
|
+
|
|
1253
|
+
### Bug Fixes
|
|
1254
|
+
|
|
1255
|
+
* **Button:** fix appearance of disabled OutlinedButton ([b48268f](https://github.com/matsuri-tech/matsuri-ui/commit/b48268f910276ae2c8b83595f611f716abfb8f92))
|
|
1256
|
+
* **Loading:** update look ([6f7d667](https://github.com/matsuri-tech/matsuri-ui/commit/6f7d6670467bceee7bcaaaeb9c2164130b0a4867))
|
|
1257
|
+
|
|
1258
|
+
|
|
1259
|
+
### Others
|
|
1260
|
+
|
|
1261
|
+
* **stories:** update Loading story ([aa2714f](https://github.com/matsuri-tech/matsuri-ui/commit/aa2714f92f173c46862bb3cd46042acdce9b8326))
|
|
1262
|
+
|
|
1263
|
+
## [6.4.0](https://github.com/matsuri-tech/matsuri-ui/compare/v6.3.0...v6.4.0) (2020-03-02)
|
|
1264
|
+
|
|
1265
|
+
|
|
1266
|
+
### Features
|
|
1267
|
+
|
|
1268
|
+
* **Calendar:** make CalendarUI.renderCell return centering component by default ([e7b2f24](https://github.com/matsuri-tech/matsuri-ui/commit/e7b2f2488c1fb566d10b86d35270e8c68c28af47)), closes [#449](https://github.com/matsuri-tech/matsuri-ui/issues/449)
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
### Bug Fixes
|
|
1272
|
+
|
|
1273
|
+
* **Tooltip:** export Tooltip ([7f996fc](https://github.com/matsuri-tech/matsuri-ui/commit/7f996fc9387e94d20af701a47f3e4660114aaa18))
|
|
1274
|
+
|
|
1275
|
+
|
|
1276
|
+
### Others
|
|
1277
|
+
|
|
1278
|
+
* **deps:** lock file maintenance ([d413c67](https://github.com/matsuri-tech/matsuri-ui/commit/d413c6780fd6254ec028376523c362cf250edf07))
|
|
1279
|
+
* **test:** check components are indexed? ([4b1f5ae](https://github.com/matsuri-tech/matsuri-ui/commit/4b1f5ae254df13eb7b3d0758ee36d420d0c75f13))
|
|
1280
|
+
|
|
1281
|
+
## [6.3.0](https://github.com/matsuri-tech/matsuri-ui/compare/v6.2.1...v6.3.0) (2020-03-02)
|
|
1282
|
+
|
|
1283
|
+
|
|
1284
|
+
### Features
|
|
1285
|
+
|
|
1286
|
+
* **components:** add Tooltip ([30ba6c7](https://github.com/matsuri-tech/matsuri-ui/commit/30ba6c713c7a6d78f7ee0932986ef2cf2d65b31a))
|
|
1287
|
+
|
|
1288
|
+
|
|
1289
|
+
### Bug Fixes
|
|
1290
|
+
|
|
1291
|
+
* **DateField:** remove today button ([3039458](https://github.com/matsuri-tech/matsuri-ui/commit/303945872fdb634b4190825a715e1ce81f200ac3))
|
|
1292
|
+
|
|
1293
|
+
|
|
1294
|
+
### Others
|
|
1295
|
+
|
|
1296
|
+
* **deps:** lock file maintenance ([#485](https://github.com/matsuri-tech/matsuri-ui/issues/485)) ([932a99e](https://github.com/matsuri-tech/matsuri-ui/commit/932a99e96c04694d57ba8ea94cafe5099022815f))
|
|
1297
|
+
* **deps:** update babel monorepo to ^7.8.6 ([#482](https://github.com/matsuri-tech/matsuri-ui/issues/482)) ([9bdb09e](https://github.com/matsuri-tech/matsuri-ui/commit/9bdb09e97b8054e1a76599ba1accb17237ec60ce))
|
|
1298
|
+
* **deps:** update dependency @emotion/core to ^10.0.28 ([#483](https://github.com/matsuri-tech/matsuri-ui/issues/483)) ([0471fbc](https://github.com/matsuri-tech/matsuri-ui/commit/0471fbc603b544eaa76e165f0061e2eeaf267f76))
|
|
1299
|
+
* **deps:** update dependency @types/react to ^16.9.23 ([#476](https://github.com/matsuri-tech/matsuri-ui/issues/476)) ([528806b](https://github.com/matsuri-tech/matsuri-ui/commit/528806bc5413facdce6a0e341dadb58489a3059f))
|
|
1300
|
+
* **deps:** update dependency @types/styled-components to ^5.0.1 ([#475](https://github.com/matsuri-tech/matsuri-ui/issues/475)) ([72a7d1b](https://github.com/matsuri-tech/matsuri-ui/commit/72a7d1b205dc31187927f28bc27ab95e6c426b19))
|
|
1301
|
+
* **deps:** update dependency dayjs to ^1.8.21 ([#478](https://github.com/matsuri-tech/matsuri-ui/issues/478)) ([d07c3df](https://github.com/matsuri-tech/matsuri-ui/commit/d07c3dff00fa7a9dabe8d170b2ee81d212c29cb2))
|
|
1302
|
+
* **deps:** update dependency rollup to ^1.32.0 ([#484](https://github.com/matsuri-tech/matsuri-ui/issues/484)) ([5e5df4f](https://github.com/matsuri-tech/matsuri-ui/commit/5e5df4f5c28ed21b1451d80f857dfb20c12d7c08))
|
|
1303
|
+
* **deps:** update dependency typescript to ^3.8.3 ([#486](https://github.com/matsuri-tech/matsuri-ui/issues/486)) ([32556f6](https://github.com/matsuri-tech/matsuri-ui/commit/32556f67f53a8d5022987cbaf24e5da891dd4a08))
|
|
1304
|
+
* **deps:** update react ([#479](https://github.com/matsuri-tech/matsuri-ui/issues/479)) ([f233fb7](https://github.com/matsuri-tech/matsuri-ui/commit/f233fb7a247f975c71e2b7c648471b24f7d87938))
|
|
1305
|
+
* **deps:** update storybook monorepo to ^5.3.14 ([#474](https://github.com/matsuri-tech/matsuri-ui/issues/474)) ([0cf1019](https://github.com/matsuri-tech/matsuri-ui/commit/0cf1019d460a8ba41dc9a83bf566d5a959f37f9c))
|
|
1306
|
+
* **deps:** update typescript-eslint monorepo to ^2.21.0 ([7243cb2](https://github.com/matsuri-tech/matsuri-ui/commit/7243cb29243503219404a002445084196ae1588b))
|
|
1307
|
+
* **hooks:** add useHover ([1bcedcc](https://github.com/matsuri-tech/matsuri-ui/commit/1bcedcc1ada709c134321692ae3e6301ce1ebb20))
|
|
1308
|
+
* **Tooltip:** add test ([3e1d393](https://github.com/matsuri-tech/matsuri-ui/commit/3e1d39372be58306e152b4e759699289d5cae817))
|
|
1309
|
+
* **Tooltip:** extract styles ([e5dec44](https://github.com/matsuri-tech/matsuri-ui/commit/e5dec44fbf7ef479f9ecf6de857826f42e005a47))
|
|
1310
|
+
|
|
1311
|
+
### [6.2.1](https://github.com/matsuri-tech/matsuri-ui/compare/v6.2.0...v6.2.1) (2020-02-26)
|
|
1312
|
+
|
|
1313
|
+
|
|
1314
|
+
### Bug Fixes
|
|
1315
|
+
|
|
1316
|
+
* **CalendarUI:** add jsx anotation ([ff79659](https://github.com/matsuri-tech/matsuri-ui/commit/ff7965925fd86952788630f6d5991d69f26c1b62))
|
|
1317
|
+
* **CardMedia:** normalize style ([aa8ba22](https://github.com/matsuri-tech/matsuri-ui/commit/aa8ba22f9095956aba24fa41170a34f168f38990))
|
|
1318
|
+
|
|
1319
|
+
|
|
1320
|
+
### Others
|
|
1321
|
+
|
|
1322
|
+
* **CalendarDaysInMonth:** make CSS cache strict ([1cb6b99](https://github.com/matsuri-tech/matsuri-ui/commit/1cb6b99d610731eb2a7033a605c81e3a2e98c725))
|
|
1323
|
+
* **CalendarUI/*:** fix CalendarController props and follow-up related ([2d90fcd](https://github.com/matsuri-tech/matsuri-ui/commit/2d90fcd53e2bc2afd19f545ba22081f7b33db989))
|
|
1324
|
+
* **CalendarWeek:** precalculate variables that behave like constants ([bd1312b](https://github.com/matsuri-tech/matsuri-ui/commit/bd1312b2a217c25d75e425625638aeaf6624619d))
|
|
1325
|
+
|
|
1326
|
+
## [6.2.0](https://github.com/matsuri-tech/matsuri-ui/compare/v6.1.1...v6.2.0) (2020-02-24)
|
|
1327
|
+
|
|
1328
|
+
|
|
1329
|
+
### Features
|
|
1330
|
+
|
|
1331
|
+
* **components:** add List ([368f087](https://github.com/matsuri-tech/matsuri-ui/commit/368f087230ade79a6c1682fc126a48865fa4435e))
|
|
1332
|
+
* **components:** add ListItem ([2c2139e](https://github.com/matsuri-tech/matsuri-ui/commit/2c2139e9b5300a0e0bc533c37140bcff266e68df))
|
|
1333
|
+
* **components:** add ListItemIcon ([68aff5b](https://github.com/matsuri-tech/matsuri-ui/commit/68aff5be788126f6d0af9810748a68c6500fe4d7))
|
|
1334
|
+
* **components:** add Menu ([1cc4223](https://github.com/matsuri-tech/matsuri-ui/commit/1cc4223839ab1816f464a0c221817eff329b8e21))
|
|
1335
|
+
* **components:** add MenuList ([be3061d](https://github.com/matsuri-tech/matsuri-ui/commit/be3061dc74af8fa9d60f351929e6915da0693a78))
|
|
1336
|
+
* **Popper:** prevent firing ClickOutside event on anchor element ([ad14649](https://github.com/matsuri-tech/matsuri-ui/commit/ad14649dce3952b16176c33b8b0ede5a083c4335))
|
|
1337
|
+
|
|
1338
|
+
|
|
1339
|
+
### Bug Fixes
|
|
1340
|
+
|
|
1341
|
+
* **types:** make strict ([8886f5b](https://github.com/matsuri-tech/matsuri-ui/commit/8886f5b4669ff5f8aab97c434d0feee4d44554db))
|
|
1342
|
+
|
|
1343
|
+
|
|
1344
|
+
### Documents
|
|
1345
|
+
|
|
1346
|
+
* **AsComponentProps:** update ([95c70c9](https://github.com/matsuri-tech/matsuri-ui/commit/95c70c960888705bbec23bff75e6ea932d66cd73))
|
|
1347
|
+
* **List:** update ([2aa8c6f](https://github.com/matsuri-tech/matsuri-ui/commit/2aa8c6ff1ac70a4849561d2948fcc8e509bca0fa))
|
|
1348
|
+
|
|
1349
|
+
|
|
1350
|
+
### Others
|
|
1351
|
+
|
|
1352
|
+
* **deps:** update dependency @types/jest to ^25.1.3 ([#454](https://github.com/matsuri-tech/matsuri-ui/issues/454)) ([959a08b](https://github.com/matsuri-tech/matsuri-ui/commit/959a08baa1a46833ec15ed25a064c10237f6956c))
|
|
1353
|
+
* **deps:** update dependency @types/react to ^16.9.21 ([#460](https://github.com/matsuri-tech/matsuri-ui/issues/460)) ([1f89495](https://github.com/matsuri-tech/matsuri-ui/commit/1f8949561ea79334d5cf66da75c1388546eff13c))
|
|
1354
|
+
* **deps:** update dependency @types/react to ^16.9.22 ([#463](https://github.com/matsuri-tech/matsuri-ui/issues/463)) ([8c1b919](https://github.com/matsuri-tech/matsuri-ui/commit/8c1b9199f905d9b9ce2af3113d07f6731b636b95))
|
|
1355
|
+
* **deps:** update dependency @types/styled-components to v5 ([6745230](https://github.com/matsuri-tech/matsuri-ui/commit/6745230a20eeec5869aff181c27841796b12875a))
|
|
1356
|
+
* **deps:** update dependency ts-jest to ^25.2.1 ([#453](https://github.com/matsuri-tech/matsuri-ui/issues/453)) ([8ea8503](https://github.com/matsuri-tech/matsuri-ui/commit/8ea8503fc0ba4077e0e66e097a7355b27a746b0d))
|
|
1357
|
+
* **deps:** update typescript to v3.8.2 ([3524285](https://github.com/matsuri-tech/matsuri-ui/commit/352428586ab42e900f8f92716660ec8686123e8c))
|
|
1358
|
+
* **Popper:** extract PopperBaseProps from PopperProps ([4327803](https://github.com/matsuri-tech/matsuri-ui/commit/43278039b4b80244a87855ad8e80fb78d241bb0a))
|
|
1359
|
+
* **stories:** add List story ([29a86e6](https://github.com/matsuri-tech/matsuri-ui/commit/29a86e624a7b68f861853d793bf043db581ea45d))
|
|
1360
|
+
* **stories:** add Menu story ([9354862](https://github.com/matsuri-tech/matsuri-ui/commit/9354862a7c9b149c26b537f0b0766d9fd40309a4))
|
|
1361
|
+
* **stories/Menu:** make practical ([7fabf02](https://github.com/matsuri-tech/matsuri-ui/commit/7fabf022d758e87898892ac2e57fa51ba0cf1861))
|
|
1362
|
+
|
|
1363
|
+
### [6.1.1](https://github.com/matsuri-tech/matsuri-ui/compare/v6.1.0...v6.1.1) (2020-02-20)
|
|
1364
|
+
|
|
1365
|
+
|
|
1366
|
+
### Bug Fixes
|
|
1367
|
+
|
|
1368
|
+
* **components:** extract css prop from HTMLAttributes ([40eadd4](https://github.com/matsuri-tech/matsuri-ui/commit/40eadd4b8d9b77232d79cce4789ddfbd6bb7b4fd)), closes [#450](https://github.com/matsuri-tech/matsuri-ui/issues/450)
|
|
1369
|
+
|
|
1370
|
+
## [6.1.0](https://github.com/matsuri-tech/matsuri-ui/compare/v6.0.1...v6.1.0) (2020-02-20)
|
|
1371
|
+
|
|
1372
|
+
|
|
1373
|
+
### Features
|
|
1374
|
+
|
|
1375
|
+
* **DateField:** Inherite Portal.disabledPortal ([7312175](https://github.com/matsuri-tech/matsuri-ui/commit/73121756a7040ac4311aaf3f82d28caf84e136f9))
|
|
1376
|
+
* **Popper:** Inherite Portal.disabledPortal ([8bdf657](https://github.com/matsuri-tech/matsuri-ui/commit/8bdf6578ed1255cf4c69e443ce3ea62fc7f078f4))
|
|
1377
|
+
* **Portal:** add disabledPortal props ([4b90b67](https://github.com/matsuri-tech/matsuri-ui/commit/4b90b679a8c6313700d549b330b54c1d592ee229))
|
|
1378
|
+
|
|
1379
|
+
|
|
1380
|
+
### Others
|
|
1381
|
+
|
|
1382
|
+
* **github:** add about ([4311341](https://github.com/matsuri-tech/matsuri-ui/commit/43113410f0e5bd76b11327d77006122b340955a7))
|
|
1383
|
+
* **github:** make issue templates smarter ([0b02648](https://github.com/matsuri-tech/matsuri-ui/commit/0b02648dfac0735cf5ebb6a16e9570253a17f9bc))
|
|
1384
|
+
|
|
1385
|
+
### [6.0.1](https://github.com/matsuri-tech/matsuri-ui/compare/v6.0.0...v6.0.1) (2020-02-19)
|
|
1386
|
+
|
|
1387
|
+
|
|
1388
|
+
### Bug Fixes
|
|
1389
|
+
|
|
1390
|
+
* **NumberField:** reduce strict numerical input normalization only when leaving ([3aaa528](https://github.com/matsuri-tech/matsuri-ui/commit/3aaa528b81c94db074d59fe2b7f3906c82a6b372)), closes [#437](https://github.com/matsuri-tech/matsuri-ui/issues/437)
|
|
1391
|
+
|
|
1392
|
+
|
|
1393
|
+
### Others
|
|
1394
|
+
|
|
1395
|
+
* **deps:** update dependency @types/react to ^16.9.20 ([#438](https://github.com/matsuri-tech/matsuri-ui/issues/438)) ([e96bf6c](https://github.com/matsuri-tech/matsuri-ui/commit/e96bf6c7dd13742bdbaf7d9bbda80b522c9b76da))
|
|
1396
|
+
* **deps:** update dependency eslint-plugin-react-hooks to ^2.4.0 ([#436](https://github.com/matsuri-tech/matsuri-ui/issues/436)) ([aae0efc](https://github.com/matsuri-tech/matsuri-ui/commit/aae0efc09c82950209acd11f12a9023dbce1162f))
|
|
1397
|
+
* **deps:** update dependency react-table to ^7.0.0-rc.16 ([#434](https://github.com/matsuri-tech/matsuri-ui/issues/434)) ([359080c](https://github.com/matsuri-tech/matsuri-ui/commit/359080cdfee524aa4ba8dc4ee2acf9cd18d6a013))
|
|
1398
|
+
* **deps:** update typescript-eslint monorepo to ^2.20.0 ([8e4f379](https://github.com/matsuri-tech/matsuri-ui/commit/8e4f3792c98b290c5742a58a408141a70b33d52e))
|
|
1399
|
+
* **NumberField:** improve performance ([89e53fe](https://github.com/matsuri-tech/matsuri-ui/commit/89e53feb79a5b53d86cb4828f2bb7a0fb1a9ab66))
|
|
1400
|
+
|
|
1401
|
+
## [6.0.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.26.1...v6.0.0) (2020-02-17)
|
|
1402
|
+
|
|
1403
|
+
|
|
1404
|
+
### Features
|
|
1405
|
+
|
|
1406
|
+
* **CardMedia:** remake easy to handle ([688281e](https://github.com/matsuri-tech/matsuri-ui/commit/688281edcc99824d3c885fe633af2eba0e4098d2))
|
|
1407
|
+
* **components:** add Card ([0174796](https://github.com/matsuri-tech/matsuri-ui/commit/0174796a9d29f7256e30e8bca8418c659d3cd2fa))
|
|
1408
|
+
* **DropArea:** make sure that they cannot be dropped outside the drop area when dragging and dropping images ([4e66aa0](https://github.com/matsuri-tech/matsuri-ui/commit/4e66aa0247d419e5e6c5a1eda0de6613d0a1c269)), closes [#413](https://github.com/matsuri-tech/matsuri-ui/issues/413)
|
|
1409
|
+
* **Paper:** make border-RADIUS little stronger ([bbed2db](https://github.com/matsuri-tech/matsuri-ui/commit/bbed2db05936246ed5b25024682d5b4a655f0d2f))
|
|
1410
|
+
* **Popper:** add support of onClickOutside prop ([a9ce5ed](https://github.com/matsuri-tech/matsuri-ui/commit/a9ce5ed37928088fadfe42645e342e769f8f558a)), closes [#412](https://github.com/matsuri-tech/matsuri-ui/issues/412)
|
|
1411
|
+
* **ProgressBar:** add label prop ([96ff0dc](https://github.com/matsuri-tech/matsuri-ui/commit/96ff0dce597ca600829059f7cf77dec39f1302d1))
|
|
1412
|
+
* **RadioButton:** rename Radio with RadioButton ([158557d](https://github.com/matsuri-tech/matsuri-ui/commit/158557d186502df66dc21690d6e6c1dd20995db5))
|
|
1413
|
+
* **theme:** add toCSS ([d343364](https://github.com/matsuri-tech/matsuri-ui/commit/d343364bfed4d1fbf5461136c04e10a73a562338))
|
|
1414
|
+
* **Typography:** add bolder prop & clamp prop ([3f65e4e](https://github.com/matsuri-tech/matsuri-ui/commit/3f65e4e94b65eed6bd6629df69aa13309895ec84))
|
|
1415
|
+
|
|
1416
|
+
|
|
1417
|
+
### Bug Fixes
|
|
1418
|
+
|
|
1419
|
+
* **Button:** make outlined variant's background-color to contrast color ([daf39a8](https://github.com/matsuri-tech/matsuri-ui/commit/daf39a84f6c09bd2ff47ccd008aa9fcb2eeca1d4))
|
|
1420
|
+
* **CalendarDay:** make disabled border-color gray ([d57ac5f](https://github.com/matsuri-tech/matsuri-ui/commit/d57ac5fa0cd8a85cd014c299e8734b99936bc5d6))
|
|
1421
|
+
* **CalendarUI:** update to date ([0b5ceab](https://github.com/matsuri-tech/matsuri-ui/commit/0b5ceabac7b83df1712fe8919d8a2c6bee5c1f36))
|
|
1422
|
+
* **Checkbox:** make cursor pointer ([18e3373](https://github.com/matsuri-tech/matsuri-ui/commit/18e3373985e55236e5c7bee7293f584eac43ffb0))
|
|
1423
|
+
* **components:** fix colors ([5d9d1aa](https://github.com/matsuri-tech/matsuri-ui/commit/5d9d1aa3269f38b8c12addee824a3a0c0e02aa48))
|
|
1424
|
+
* **DateField:** improve style ([89adfff](https://github.com/matsuri-tech/matsuri-ui/commit/89adfff72decb7d4a9ed3ad1ef54395af57fd205)), closes [#414](https://github.com/matsuri-tech/matsuri-ui/issues/414)
|
|
1425
|
+
* **DateField:** suppress display of Native DatePicker ([a83a6ef](https://github.com/matsuri-tech/matsuri-ui/commit/a83a6ef6e4ed059000e91ad11b71cfdb62bc306e)), closes [#427](https://github.com/matsuri-tech/matsuri-ui/issues/427)
|
|
1426
|
+
* **hooks:** disable exports ([2056317](https://github.com/matsuri-tech/matsuri-ui/commit/20563170c8f88c107cd2bca628ccda7ecaed157b)), closes [#420](https://github.com/matsuri-tech/matsuri-ui/issues/420)
|
|
1427
|
+
* **Thumbnail:** make props enale to overwrite ([6a0551b](https://github.com/matsuri-tech/matsuri-ui/commit/6a0551b2090af110194d1998a57fb5377cb1d368))
|
|
1428
|
+
|
|
1429
|
+
|
|
1430
|
+
### Documents
|
|
1431
|
+
|
|
1432
|
+
* **readme:** add playground link ([298db5d](https://github.com/matsuri-tech/matsuri-ui/commit/298db5d1b82c4e658f5c50e64968035350d93788))
|
|
1433
|
+
|
|
1434
|
+
|
|
1435
|
+
### Others
|
|
1436
|
+
|
|
1437
|
+
* **CalendarDay:** complete pick hasChildren from styled-components to emtion ([fd61f4e](https://github.com/matsuri-tech/matsuri-ui/commit/fd61f4e0b33e731561e477262b339441a632d5d7))
|
|
1438
|
+
* **CalendarDay:** pick hasChildren from styled-components to emtion ([a9cf845](https://github.com/matsuri-tech/matsuri-ui/commit/a9cf845a8c5be55f3bec338958a6bf1181cbc00d))
|
|
1439
|
+
* **CardMedia:** change directory ([091ac15](https://github.com/matsuri-tech/matsuri-ui/commit/091ac15bab4e5aa9086f880dd6419a24296d8917))
|
|
1440
|
+
* **deps:** add @emotion/code ([ef2bc5f](https://github.com/matsuri-tech/matsuri-ui/commit/ef2bc5ff500786381fdd32cb4d62a483479229be))
|
|
1441
|
+
* **deps:** lock file maintenance ([9b3e3a2](https://github.com/matsuri-tech/matsuri-ui/commit/9b3e3a2631c6b8ee4d2cf6b29abb3179e15d4210))
|
|
1442
|
+
* **deps:** update dependency @types/jest to ^25.1.2 ([#403](https://github.com/matsuri-tech/matsuri-ui/issues/403)) ([4ea01d7](https://github.com/matsuri-tech/matsuri-ui/commit/4ea01d76ca7606ece40d8949faffc92ab72c3b42))
|
|
1443
|
+
* **deps:** update dependency @types/styled-components to ^4.4.3 ([#411](https://github.com/matsuri-tech/matsuri-ui/issues/411)) ([a397179](https://github.com/matsuri-tech/matsuri-ui/commit/a397179e8eef668f8f2a2712bbe108237d3e2329))
|
|
1444
|
+
* **deps:** update dependency husky to ^4.2.3 ([#417](https://github.com/matsuri-tech/matsuri-ui/issues/417)) ([fc22d54](https://github.com/matsuri-tech/matsuri-ui/commit/fc22d54a8fff38b30939e1602b71b11ab2707263))
|
|
1445
|
+
* **deps:** update dependency rimraf to ^3.0.2 ([#408](https://github.com/matsuri-tech/matsuri-ui/issues/408)) ([133b2ec](https://github.com/matsuri-tech/matsuri-ui/commit/133b2ec1034820272ea1ee9155c71ee3331a5acb))
|
|
1446
|
+
* **deps:** update dependency rollup to ^1.31.1 ([#418](https://github.com/matsuri-tech/matsuri-ui/issues/418)) ([12697b1](https://github.com/matsuri-tech/matsuri-ui/commit/12697b1be71dba2c944c0108625fb2a51ca849f0))
|
|
1447
|
+
* **deps:** update dependency rollup-plugin-typescript2 to ^0.26.0 ([#416](https://github.com/matsuri-tech/matsuri-ui/issues/416)) ([2be2443](https://github.com/matsuri-tech/matsuri-ui/commit/2be24436dc5f8fdd362d991e7866b576c41cad8f))
|
|
1448
|
+
* **deps:** update dependency stylelint to ^13.1.0 ([#405](https://github.com/matsuri-tech/matsuri-ui/issues/405)) ([77732a6](https://github.com/matsuri-tech/matsuri-ui/commit/77732a68619c1adbe02876d3f4f5965cf31966a1))
|
|
1449
|
+
* **deps:** update dependency stylelint to ^13.2.0 ([#419](https://github.com/matsuri-tech/matsuri-ui/issues/419)) ([42474ea](https://github.com/matsuri-tech/matsuri-ui/commit/42474ea3d59d66cf9b3850838a74dcb5a460465d))
|
|
1450
|
+
* **deps:** update dependency textlint to ^11.6.3 ([#404](https://github.com/matsuri-tech/matsuri-ui/issues/404)) ([a30ddf7](https://github.com/matsuri-tech/matsuri-ui/commit/a30ddf7af9e8585ae904f0252cf3c85376c5750a))
|
|
1451
|
+
* **deps:** update storybook monorepo to ^5.3.12 ([#397](https://github.com/matsuri-tech/matsuri-ui/issues/397)) ([92cc285](https://github.com/matsuri-tech/matsuri-ui/commit/92cc2856569ea57fa72e8e63e470a8b0372623c5))
|
|
1452
|
+
* **deps:** update storybook monorepo to ^5.3.13 ([#415](https://github.com/matsuri-tech/matsuri-ui/issues/415)) ([105a329](https://github.com/matsuri-tech/matsuri-ui/commit/105a3298369406ae5404899c1edff3604289db75))
|
|
1453
|
+
* **deps:** update typescript-eslint monorepo to ^2.19.2 ([#410](https://github.com/matsuri-tech/matsuri-ui/issues/410)) ([c633e98](https://github.com/matsuri-tech/matsuri-ui/commit/c633e98b99992232e8154069c8d136b1ad827b43))
|
|
1454
|
+
* **eslint:** fix codes ([27a71e7](https://github.com/matsuri-tech/matsuri-ui/commit/27a71e720fda70bcd1dca9456cef12c2cff766df))
|
|
1455
|
+
* **eslint:** remove disbaled rule ([59639e5](https://github.com/matsuri-tech/matsuri-ui/commit/59639e5c27fb3267590cc7624459c5ac7b2cb99e))
|
|
1456
|
+
* **Thumbnail:** improve preformance ([5f5bfb0](https://github.com/matsuri-tech/matsuri-ui/commit/5f5bfb0577c01f198d0d266f78d0deef13f1d584))
|
|
1457
|
+
|
|
1458
|
+
### [5.26.1](https://github.com/matsuri-tech/matsuri-ui/compare/v5.26.0...v5.26.1) (2020-02-06)
|
|
1459
|
+
|
|
1460
|
+
|
|
1461
|
+
### Bug Fixes
|
|
1462
|
+
|
|
1463
|
+
* **CalendarUI:** fix event change redrawing ([865eece](https://github.com/matsuri-tech/matsuri-ui/commit/865eece4265b51a9f487385d212f0ac229a08a95)), closes [#387](https://github.com/matsuri-tech/matsuri-ui/issues/387)
|
|
1464
|
+
* **CalendarUI:** fix renderCell not working in CalendarUI ([dc5a3c8](https://github.com/matsuri-tech/matsuri-ui/commit/dc5a3c8d0a03c632d80ca0445b7f10c05827b46a)), closes [#386](https://github.com/matsuri-tech/matsuri-ui/issues/386)
|
|
1465
|
+
|
|
1466
|
+
|
|
1467
|
+
### Others
|
|
1468
|
+
|
|
1469
|
+
* **deps:** update dependency clsx to ^1.1.0 ([a719930](https://github.com/matsuri-tech/matsuri-ui/commit/a719930ab148ba80fff7c7f29de15c101f13126e))
|
|
1470
|
+
* **deps:** update dependency dayjs to ^1.8.20 ([#389](https://github.com/matsuri-tech/matsuri-ui/issues/389)) ([cd873ee](https://github.com/matsuri-tech/matsuri-ui/commit/cd873eeba145dd735cc5e03076bd067481e33e3a))
|
|
1471
|
+
* **deps:** update dependency eslint-plugin-react to ^7.18.3 ([#382](https://github.com/matsuri-tech/matsuri-ui/issues/382)) ([9528bb6](https://github.com/matsuri-tech/matsuri-ui/commit/9528bb66b02d8aa0aa5df41f1a2e2b476d209e11))
|
|
1472
|
+
* **deps:** update dependency styled-components to ^5.0.1 ([#390](https://github.com/matsuri-tech/matsuri-ui/issues/390)) ([c47c9d7](https://github.com/matsuri-tech/matsuri-ui/commit/c47c9d7438271043bfe5695254757023c3a2c1a8))
|
|
1473
|
+
* **deps:** update dependency ts-jest to ^25.2.0 ([#385](https://github.com/matsuri-tech/matsuri-ui/issues/385)) ([f7d0afd](https://github.com/matsuri-tech/matsuri-ui/commit/f7d0afd83d6f49ad88c756b35d3d1e0b8f45b2bc))
|
|
1474
|
+
* **deps:** update typescript-eslint monorepo to ^2.19.0 ([514f2cd](https://github.com/matsuri-tech/matsuri-ui/commit/514f2cd3687c9e88252cddcc4d7b302a5d6150f3))
|
|
1475
|
+
* **eslint:** update ([54547d3](https://github.com/matsuri-tech/matsuri-ui/commit/54547d370a0ed601131d2666b68bb6f4214110e2))
|
|
1476
|
+
* **rollup:** add support of styled-components ([8b081cb](https://github.com/matsuri-tech/matsuri-ui/commit/8b081cbe9929f3aaf5c2ee1067cd0faeab876c4d))
|
|
1477
|
+
|
|
1478
|
+
## [5.26.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.25.1...v5.26.0) (2020-02-04)
|
|
1479
|
+
|
|
1480
|
+
|
|
1481
|
+
### Features
|
|
1482
|
+
|
|
1483
|
+
* **components:** add Thumbnail ([5aabe74](https://github.com/matsuri-tech/matsuri-ui/commit/5aabe747f0003f8030d4ea9525633cc979d203f4))
|
|
1484
|
+
* **Thumbnail:** add nocompress mode & fullWidth mode ([d67c008](https://github.com/matsuri-tech/matsuri-ui/commit/d67c0087b1054ef90079e687c67101b809bc3ff7))
|
|
1485
|
+
* **types:** add DeepPartialTheme ([a7ba9c3](https://github.com/matsuri-tech/matsuri-ui/commit/a7ba9c3e56962edb1603d537fab3b18446d90a06)), closes [#346](https://github.com/matsuri-tech/matsuri-ui/issues/346)
|
|
1486
|
+
|
|
1487
|
+
|
|
1488
|
+
### Bug Fixes
|
|
1489
|
+
|
|
1490
|
+
* **components:** export Thumbnail ([040129e](https://github.com/matsuri-tech/matsuri-ui/commit/040129e008d19ca39d46604af192ea72a1a71c69))
|
|
1491
|
+
* **Loading:** improve styles ([41ee88b](https://github.com/matsuri-tech/matsuri-ui/commit/41ee88b50e1555e00f430fb949cfa49aec00be17))
|
|
1492
|
+
* **useMobile:** get types of headerProps.ref.current and footerProps.ref.current from Generics type ([3fb7bea](https://github.com/matsuri-tech/matsuri-ui/commit/3fb7beabed2a34b11b192e5a6faaa1e7a2726dd6)), closes [#345](https://github.com/matsuri-tech/matsuri-ui/issues/345)
|
|
1493
|
+
|
|
1494
|
+
|
|
1495
|
+
### Others
|
|
1496
|
+
|
|
1497
|
+
* **deps:** add compressorjs ([02e6e93](https://github.com/matsuri-tech/matsuri-ui/commit/02e6e93c15bfc6bdcac23a88cfefa2e4c9580758))
|
|
1498
|
+
* **deps:** lock file maintenance ([#372](https://github.com/matsuri-tech/matsuri-ui/issues/372)) ([59fe0a7](https://github.com/matsuri-tech/matsuri-ui/commit/59fe0a75f931e534f34de205a01aaaab6b3bcbbb))
|
|
1499
|
+
* **deps:** lock file maintenance ([#373](https://github.com/matsuri-tech/matsuri-ui/issues/373)) ([b41d267](https://github.com/matsuri-tech/matsuri-ui/commit/b41d26708efd02756b5ac632fa6ee29d9b940b19))
|
|
1500
|
+
* **deps:** lock file maintenance ([#374](https://github.com/matsuri-tech/matsuri-ui/issues/374)) ([d8e0112](https://github.com/matsuri-tech/matsuri-ui/commit/d8e011225a087e089c561162ce9198e77a368fee))
|
|
1501
|
+
* **deps:** lock file maintenance ([#375](https://github.com/matsuri-tech/matsuri-ui/issues/375)) ([49d3c54](https://github.com/matsuri-tech/matsuri-ui/commit/49d3c54c5d6b44c2d0278a7da5c625578b608533))
|
|
1502
|
+
* **deps:** update babel monorepo to ^7.8.4 ([#369](https://github.com/matsuri-tech/matsuri-ui/issues/369)) ([61e0f28](https://github.com/matsuri-tech/matsuri-ui/commit/61e0f28409a6f0eff80dc652cd9201f6c23745e3))
|
|
1503
|
+
* **deps:** update dependency @types/jest to ^25.1.1 ([#368](https://github.com/matsuri-tech/matsuri-ui/issues/368)) ([7c43e7e](https://github.com/matsuri-tech/matsuri-ui/commit/7c43e7ebbf70eec596e5ac824085bd0eec44554d))
|
|
1504
|
+
* **deps:** update dependency @types/jest to v25 ([fab1868](https://github.com/matsuri-tech/matsuri-ui/commit/fab1868a299de6018bd78b6764cb3cfa7086b438))
|
|
1505
|
+
* **deps:** update dependency babel-preset-react-app to ^9.1.1 ([#377](https://github.com/matsuri-tech/matsuri-ui/issues/377)) ([848c995](https://github.com/matsuri-tech/matsuri-ui/commit/848c995a575e1e51bc5c3f543b009d7aa7abaca4))
|
|
1506
|
+
* **deps:** update dependency eslint-config-prettier to ^6.10.0 ([#367](https://github.com/matsuri-tech/matsuri-ui/issues/367)) ([6808ff5](https://github.com/matsuri-tech/matsuri-ui/commit/6808ff51903872f52c16fa610ec794c95a7e7d23))
|
|
1507
|
+
* **deps:** update dependency react-icons to ^3.9.0 ([#370](https://github.com/matsuri-tech/matsuri-ui/issues/370)) ([ff3144c](https://github.com/matsuri-tech/matsuri-ui/commit/ff3144ce4f63c07fcad6d1cb152f6d35648c32db))
|
|
1508
|
+
* **deps:** update dependency rimraf to ^3.0.1 ([#366](https://github.com/matsuri-tech/matsuri-ui/issues/366)) ([c3a0228](https://github.com/matsuri-tech/matsuri-ui/commit/c3a0228e4ef784a4b35c9b62d58cc30b3f745cd4))
|
|
1509
|
+
* **deps:** update dependency rollup to ^1.30.1 ([#363](https://github.com/matsuri-tech/matsuri-ui/issues/363)) ([34b20e6](https://github.com/matsuri-tech/matsuri-ui/commit/34b20e6c1e2c763a7efa321b9b8800c0be719227))
|
|
1510
|
+
* **deps:** update dependency rollup to ^1.31.0 ([#378](https://github.com/matsuri-tech/matsuri-ui/issues/378)) ([d422c9c](https://github.com/matsuri-tech/matsuri-ui/commit/d422c9c7d1de0dfa73e9aa687adda7560b525ac1))
|
|
1511
|
+
* **deps:** update dependency textlint to ^11.6.2 ([#379](https://github.com/matsuri-tech/matsuri-ui/issues/379)) ([59341ad](https://github.com/matsuri-tech/matsuri-ui/commit/59341ad320ce821f888286c1cba2e7084ddec2a6))
|
|
1512
|
+
* **deps:** update dependency ts-jest to ^25.1.0 ([#371](https://github.com/matsuri-tech/matsuri-ui/issues/371)) ([078340b](https://github.com/matsuri-tech/matsuri-ui/commit/078340b9326f3ddaee0322e971b1f0ee6d688bb5))
|
|
1513
|
+
* **deps:** update storybook monorepo to ^5.3.10 ([#381](https://github.com/matsuri-tech/matsuri-ui/issues/381)) ([af2b4a1](https://github.com/matsuri-tech/matsuri-ui/commit/af2b4a11c71a9e0bf7f11ec45a37f6d4704eb050))
|
|
1514
|
+
* **deps:** update typescript-eslint monorepo to ^2.18.0 ([4486f1d](https://github.com/matsuri-tech/matsuri-ui/commit/4486f1d3fa4b9ff6a68fa7241c8290fb0eb976a4))
|
|
1515
|
+
* **eslint:** allow console.error console.warning ([da25d9d](https://github.com/matsuri-tech/matsuri-ui/commit/da25d9df69bb2d395f4ffabd81783154bf3c8ba0))
|
|
1516
|
+
* **hooks:** export hooks ([cd35d61](https://github.com/matsuri-tech/matsuri-ui/commit/cd35d61d0fd090039906c1b8ca37123766752bdd))
|
|
1517
|
+
* **types:** add support of ImgHTMLArrtibutes["loading"] ([9202aa2](https://github.com/matsuri-tech/matsuri-ui/commit/9202aa209c706a9fbc85785b536636c3e328ebf2))
|
|
1518
|
+
|
|
1519
|
+
### [5.25.1](https://github.com/matsuri-tech/matsuri-ui/compare/v5.25.0...v5.25.1) (2020-01-28)
|
|
1520
|
+
|
|
1521
|
+
|
|
1522
|
+
### Bug Fixes
|
|
1523
|
+
|
|
1524
|
+
* **Loading:** export Loading component ([fed33fc](https://github.com/matsuri-tech/matsuri-ui/commit/fed33fc54d7d0fd570b7a935b264279e690a8a99))
|
|
1525
|
+
|
|
1526
|
+
|
|
1527
|
+
### Others
|
|
1528
|
+
|
|
1529
|
+
* **theme:** sort palette colors ([d5fa48a](https://github.com/matsuri-tech/matsuri-ui/commit/d5fa48af475c7f9505a53b514f884a51f6f30423))
|
|
1530
|
+
|
|
1531
|
+
## [5.25.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.24.0...v5.25.0) (2020-01-28)
|
|
1532
|
+
|
|
1533
|
+
|
|
1534
|
+
### Features
|
|
1535
|
+
|
|
1536
|
+
* **Calendar:** add support of small size ([#330](https://github.com/matsuri-tech/matsuri-ui/issues/330)) ([e98a1e2](https://github.com/matsuri-tech/matsuri-ui/commit/e98a1e263830aa048054b70e6d201d8ae08bcda4)), closes [#317](https://github.com/matsuri-tech/matsuri-ui/issues/317)
|
|
1537
|
+
* **DateField:** add support of month type ([#349](https://github.com/matsuri-tech/matsuri-ui/issues/349)) ([12c3afa](https://github.com/matsuri-tech/matsuri-ui/commit/12c3afaa088caaaddfd8ea5e4fff282c3c0cfec3))
|
|
1538
|
+
|
|
1539
|
+
|
|
1540
|
+
### Bug Fixes
|
|
1541
|
+
|
|
1542
|
+
* **Buttons:** fix Button imports ([cb8a4b0](https://github.com/matsuri-tech/matsuri-ui/commit/cb8a4b0d6cdebda8b38f8654bca84c91bbbe49b8))
|
|
1543
|
+
* **Progressbar:** change props.color to depends on theme ([#348](https://github.com/matsuri-tech/matsuri-ui/issues/348)) ([3a3672f](https://github.com/matsuri-tech/matsuri-ui/commit/3a3672f18b5893367a26de2e57b7eed1a51a3e6a))
|
|
1544
|
+
* **Radio:** improve disabled Radio styles ([9733de0](https://github.com/matsuri-tech/matsuri-ui/commit/9733de0e280c466fe8698a2473e85c58c6e09cd5))
|
|
1545
|
+
|
|
1546
|
+
|
|
1547
|
+
### Others
|
|
1548
|
+
|
|
1549
|
+
* **Button:** extract Button from Buttons ([c932e02](https://github.com/matsuri-tech/matsuri-ui/commit/c932e02edb31da7a58b67fde153e026d549743fc))
|
|
1550
|
+
* **Buttons:** improve styles ([#347](https://github.com/matsuri-tech/matsuri-ui/issues/347)) ([4741fbb](https://github.com/matsuri-tech/matsuri-ui/commit/4741fbb88aaf03e579f63c0ea03103972bdb2831))
|
|
1551
|
+
* **Checkbox:** extract Checkbox from Buttons ([488cd77](https://github.com/matsuri-tech/matsuri-ui/commit/488cd77d9ea0ece8af309d8fd9fb8b7bd08262a6))
|
|
1552
|
+
* **Chip:** extract Chip from Buttons ([8be2b05](https://github.com/matsuri-tech/matsuri-ui/commit/8be2b05093c69004cef4c259d874c82fd528ba3e))
|
|
1553
|
+
* **components:** fix`expected 1 arguments, but got 0` ([9691585](https://github.com/matsuri-tech/matsuri-ui/commit/9691585650a014629b581439aa9c56294627d042))
|
|
1554
|
+
* **deps:** update dependency @material-ui/styles to ^4.9.0 ([#342](https://github.com/matsuri-tech/matsuri-ui/issues/342)) ([5b7183c](https://github.com/matsuri-tech/matsuri-ui/commit/5b7183caecf3cb38da23a385ae9b9042f8b8f5ad))
|
|
1555
|
+
* **deps:** update dependency @types/jest to ^24.9.1 ([#351](https://github.com/matsuri-tech/matsuri-ui/issues/351)) ([e19caae](https://github.com/matsuri-tech/matsuri-ui/commit/e19caaee0c866ce48de3be17c45478430bebf994))
|
|
1556
|
+
* **deps:** update dependency @types/react to ^16.9.18 ([#336](https://github.com/matsuri-tech/matsuri-ui/issues/336)) ([a0f6735](https://github.com/matsuri-tech/matsuri-ui/commit/a0f6735670d84845eac62fc5427ce75ec056579b))
|
|
1557
|
+
* **deps:** update dependency @types/react to ^16.9.19 ([#338](https://github.com/matsuri-tech/matsuri-ui/issues/338)) ([278a673](https://github.com/matsuri-tech/matsuri-ui/commit/278a673c795399b6191291e5dd60a2dad673e19e))
|
|
1558
|
+
* **deps:** update dependency @types/react-dom to ^16.9.5 ([#334](https://github.com/matsuri-tech/matsuri-ui/issues/334)) ([78aa34f](https://github.com/matsuri-tech/matsuri-ui/commit/78aa34f791a7a96c767296ace44a98a8983ae278))
|
|
1559
|
+
* **deps:** update dependency husky to ^4.2.1 ([#340](https://github.com/matsuri-tech/matsuri-ui/issues/340)) ([913f325](https://github.com/matsuri-tech/matsuri-ui/commit/913f32566ece16729ccb278eb83f9866a9f9462a))
|
|
1560
|
+
* **deps:** update dependency jest to v25 ([#341](https://github.com/matsuri-tech/matsuri-ui/issues/341)) ([1ceb92d](https://github.com/matsuri-tech/matsuri-ui/commit/1ceb92d1ea845f189a0abdd6eca31b6416eb3e3f))
|
|
1561
|
+
* **deps:** update dependency popper.js to ^1.16.1 ([#339](https://github.com/matsuri-tech/matsuri-ui/issues/339)) ([4c9df6d](https://github.com/matsuri-tech/matsuri-ui/commit/4c9df6d9be7f2c59d7232883891888ad4196a8be))
|
|
1562
|
+
* **deps:** update dependency rollup to ^1.29.1 ([#335](https://github.com/matsuri-tech/matsuri-ui/issues/335)) ([8038408](https://github.com/matsuri-tech/matsuri-ui/commit/803840842f412e02904521a69a87c6ebdf65b721))
|
|
1563
|
+
* **deps:** update dependency standard-version to ^7.1.0 ([#333](https://github.com/matsuri-tech/matsuri-ui/issues/333)) ([8802c7a](https://github.com/matsuri-tech/matsuri-ui/commit/8802c7a50cca8a40089b92c12b118250aa1a68e2))
|
|
1564
|
+
* **deps:** update dependency ts-jest to v25 ([#350](https://github.com/matsuri-tech/matsuri-ui/issues/350)) ([c09d926](https://github.com/matsuri-tech/matsuri-ui/commit/c09d9260047d40e6638aa8a9b7b62f4ac552b6b6))
|
|
1565
|
+
* **deps:** update storybook monorepo to ^5.3.7 ([#331](https://github.com/matsuri-tech/matsuri-ui/issues/331)) ([88d1890](https://github.com/matsuri-tech/matsuri-ui/commit/88d1890e17f1242b866beff371bf6f0d76cee94e))
|
|
1566
|
+
* **deps:** update storybook monorepo to ^5.3.8 ([#337](https://github.com/matsuri-tech/matsuri-ui/issues/337)) ([b290567](https://github.com/matsuri-tech/matsuri-ui/commit/b290567762492ffec4281cca0434f1da204c5868))
|
|
1567
|
+
* **deps:** update storybook monorepo to ^5.3.9 ([#355](https://github.com/matsuri-tech/matsuri-ui/issues/355)) ([550d1e7](https://github.com/matsuri-tech/matsuri-ui/commit/550d1e79489ec77a171bd72a2091f1a7b4084716))
|
|
1568
|
+
* **deps:** update typescript-eslint monorepo to ^2.17.0 ([#332](https://github.com/matsuri-tech/matsuri-ui/issues/332)) ([c7c2014](https://github.com/matsuri-tech/matsuri-ui/commit/c7c201444b31b6cccf7458209af867a01c21d964))
|
|
1569
|
+
* **Radio:** extract Radio from Buttons ([721d5bd](https://github.com/matsuri-tech/matsuri-ui/commit/721d5bd481a40094b73777de109bd8c63239befe))
|
|
1570
|
+
* **scripts:** add typecheck ([5488f98](https://github.com/matsuri-tech/matsuri-ui/commit/5488f98ce960eba1c754c18a9fdbc1632c19e52c))
|
|
1571
|
+
* **Steper:** extract Steper from Buttons ([72bed16](https://github.com/matsuri-tech/matsuri-ui/commit/72bed160c8c0503cf5a1a7e1ca357119e1cffa58))
|
|
1572
|
+
* **theme:** use PartialColorProps instead ColorProps ([6ea0e82](https://github.com/matsuri-tech/matsuri-ui/commit/6ea0e823d78ff7e5dc2120cc83560cee01e1bc5f))
|
|
1573
|
+
|
|
1574
|
+
## [5.24.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.23.0...v5.24.0) (2020-01-20)
|
|
1575
|
+
|
|
1576
|
+
|
|
1577
|
+
### Features
|
|
1578
|
+
|
|
1579
|
+
* **theme:** change font-family to "Noto Sans" ([#322](https://github.com/matsuri-tech/matsuri-ui/issues/322)) ([298eed8](https://github.com/matsuri-tech/matsuri-ui/commit/298eed858c7a05664b3acf4654b6dc3ad5ec7319))
|
|
1580
|
+
|
|
1581
|
+
|
|
1582
|
+
### Others
|
|
1583
|
+
|
|
1584
|
+
* **deps:** update dependency eslint-plugin-react to ^7.18.0 ([#326](https://github.com/matsuri-tech/matsuri-ui/issues/326)) ([7b50aa8](https://github.com/matsuri-tech/matsuri-ui/commit/7b50aa80a49cc48b96072b596e462ae2b0bcb55c))
|
|
1585
|
+
* **deps:** update dependency typescript to v3.7.5 ([#327](https://github.com/matsuri-tech/matsuri-ui/issues/327)) ([8ce8e46](https://github.com/matsuri-tech/matsuri-ui/commit/8ce8e461418444736fe2dbafac4e0cfa8a65304a))
|
|
1586
|
+
* **deps:** update storybook monorepo to ^5.3.6 ([#328](https://github.com/matsuri-tech/matsuri-ui/issues/328)) ([400e2c1](https://github.com/matsuri-tech/matsuri-ui/commit/400e2c12e19881af16baba5e7b08f5eb8319716d))
|
|
1587
|
+
|
|
1588
|
+
## [5.23.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.22.1...v5.23.0) (2020-01-17)
|
|
1589
|
+
|
|
1590
|
+
|
|
1591
|
+
### Features
|
|
1592
|
+
|
|
1593
|
+
* **components:** add Loading ([#324](https://github.com/matsuri-tech/matsuri-ui/issues/324)) ([6e96144](https://github.com/matsuri-tech/matsuri-ui/commit/6e96144eec7ba18838b62e44bc580f7b13955ec0))
|
|
1594
|
+
|
|
1595
|
+
|
|
1596
|
+
### Bug Fixes
|
|
1597
|
+
|
|
1598
|
+
* **Alert:** make scrollbar not displayed on Linux ([#323](https://github.com/matsuri-tech/matsuri-ui/issues/323)) ([1f62bf5](https://github.com/matsuri-tech/matsuri-ui/commit/1f62bf543f70dc87f49e4652e31f256dd1d051b1))
|
|
1599
|
+
|
|
1600
|
+
|
|
1601
|
+
### Others
|
|
1602
|
+
|
|
1603
|
+
* **stories/Progressbar:** add fetching story ([#325](https://github.com/matsuri-tech/matsuri-ui/issues/325)) ([3537c32](https://github.com/matsuri-tech/matsuri-ui/commit/3537c327ea8280d90f826a0f74a82443b12f202c))
|
|
1604
|
+
|
|
1605
|
+
### [5.22.1](https://github.com/matsuri-tech/matsuri-ui/compare/v5.22.0...v5.22.1) (2020-01-17)
|
|
1606
|
+
|
|
1607
|
+
|
|
1608
|
+
### Bug Fixes
|
|
1609
|
+
|
|
1610
|
+
* **components:** improved component overlap ([#318](https://github.com/matsuri-tech/matsuri-ui/issues/318)) ([e1a81f3](https://github.com/matsuri-tech/matsuri-ui/commit/e1a81f3ec05e6c77e813cb7000df0a07b46cfced))
|
|
1611
|
+
|
|
1612
|
+
|
|
1613
|
+
### Others
|
|
1614
|
+
|
|
1615
|
+
* **components:** improve Breadcrumbs ([#316](https://github.com/matsuri-tech/matsuri-ui/issues/316)) ([eec2d2a](https://github.com/matsuri-tech/matsuri-ui/commit/eec2d2a63de075c26ad77752409e16da962e829d))
|
|
1616
|
+
* **deps:** update dependency @commitlint/cli to ^8.3.5 ([#310](https://github.com/matsuri-tech/matsuri-ui/issues/310)) ([7debb17](https://github.com/matsuri-tech/matsuri-ui/commit/7debb171cef1bc1b399474b7d7e537bc7df835cd))
|
|
1617
|
+
* **deps:** update dependency @types/jest to ^24.9.0 ([#309](https://github.com/matsuri-tech/matsuri-ui/issues/309)) ([41a5356](https://github.com/matsuri-tech/matsuri-ui/commit/41a53568ed09fa448b0894c4395c21791da718cb))
|
|
1618
|
+
* **deps:** update dependency husky to ^4.0.10 ([#311](https://github.com/matsuri-tech/matsuri-ui/issues/311)) ([97ad41f](https://github.com/matsuri-tech/matsuri-ui/commit/97ad41f6f8bfde67ea8d346f6287b30a1ae78ea2))
|
|
1619
|
+
* **deps:** update dependency styled-components to v5 ([#301](https://github.com/matsuri-tech/matsuri-ui/issues/301)) ([0061dd2](https://github.com/matsuri-tech/matsuri-ui/commit/0061dd2a59bb8f1cbcfe81c0224a58cd1d5289fc))
|
|
1620
|
+
* **deps:** update typescript-eslint monorepo to ^2.16.0 ([#300](https://github.com/matsuri-tech/matsuri-ui/issues/300)) ([b0a299c](https://github.com/matsuri-tech/matsuri-ui/commit/b0a299c37c15b9c6c843de7138c0e441e1bcc9fb))
|
|
1621
|
+
* **stories:** fix CalendarController stories ([#314](https://github.com/matsuri-tech/matsuri-ui/issues/314)) ([1127a4e](https://github.com/matsuri-tech/matsuri-ui/commit/1127a4e74d2b97b8b7a88e2a960f84593015e82d))
|
|
1622
|
+
* **storybook:** custom theme ([#313](https://github.com/matsuri-tech/matsuri-ui/issues/313)) ([035185d](https://github.com/matsuri-tech/matsuri-ui/commit/035185d5a18d8f031fc9db152880970375f5c506))
|
|
1623
|
+
|
|
1624
|
+
## [5.22.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.21.0...v5.22.0) (2020-01-16)
|
|
1625
|
+
|
|
1626
|
+
|
|
1627
|
+
### Features
|
|
1628
|
+
|
|
1629
|
+
* **components:** add Breadcrumbs ([#295](https://github.com/matsuri-tech/matsuri-ui/issues/295)) ([449d923](https://github.com/matsuri-tech/matsuri-ui/commit/449d92343343ba34a3475e1fa8f6b9ef3e80bee4))
|
|
1630
|
+
* **components:** add Legend([#299](https://github.com/matsuri-tech/matsuri-ui/issues/299)) ([9ff3f36](https://github.com/matsuri-tech/matsuri-ui/commit/9ff3f3632b5c64036fc9d957eaae65a133087972))
|
|
1631
|
+
* **components:** add Time, RelativeTime ([#297](https://github.com/matsuri-tech/matsuri-ui/issues/297)) ([2b71f33](https://github.com/matsuri-tech/matsuri-ui/commit/2b71f330e40d49cb7d534b1f24557295224b8d22))
|
|
1632
|
+
* **components:** add WeeklyCalendar ([#305](https://github.com/matsuri-tech/matsuri-ui/issues/305)) ([0787ad6](https://github.com/matsuri-tech/matsuri-ui/commit/0787ad6f2b3c836ecf05ffe0fd2cfcc1b8ae2d8c))
|
|
1633
|
+
* **theme:** add info color ([#298](https://github.com/matsuri-tech/matsuri-ui/issues/298)) ([c95d5c8](https://github.com/matsuri-tech/matsuri-ui/commit/c95d5c8281502e54016cb8ccea2f58bce1a7b367))
|
|
1634
|
+
* **WeeklyCalendar:** add support of changing startWeekday ([#307](https://github.com/matsuri-tech/matsuri-ui/issues/307)) ([cc15f7b](https://github.com/matsuri-tech/matsuri-ui/commit/cc15f7b6dde1f133991b6a04ec689b4cff10011b))
|
|
1635
|
+
|
|
1636
|
+
|
|
1637
|
+
### Others
|
|
1638
|
+
|
|
1639
|
+
* **deps:** update babel monorepo to ^7.8.3 ([#302](https://github.com/matsuri-tech/matsuri-ui/issues/302)) ([4335e1e](https://github.com/matsuri-tech/matsuri-ui/commit/4335e1e4986ff48432db73ca49e7b8d1ed3b6af1))
|
|
1640
|
+
* **deps:** update dependency core-js to v3.6.4 ([#303](https://github.com/matsuri-tech/matsuri-ui/issues/303)) ([c5f7219](https://github.com/matsuri-tech/matsuri-ui/commit/c5f72191ca1b9f6d09a66bca16af14d80355a98f))
|
|
1641
|
+
* **deps:** update storybook monorepo to ^5.3.3 ([#304](https://github.com/matsuri-tech/matsuri-ui/issues/304)) ([9bcbe3b](https://github.com/matsuri-tech/matsuri-ui/commit/9bcbe3b475f60f0dc1e061526eb26c827da247e1))
|
|
1642
|
+
* **stories:** add Theme stories ([#293](https://github.com/matsuri-tech/matsuri-ui/issues/293)) ([600c199](https://github.com/matsuri-tech/matsuri-ui/commit/600c19958584f549e448029aea8d7248f150d7ce))
|
|
1643
|
+
* **WeeklyCalendarUI:** improve hooks args type ([#306](https://github.com/matsuri-tech/matsuri-ui/issues/306)) ([834518b](https://github.com/matsuri-tech/matsuri-ui/commit/834518b669a6aafe2df78f87a93aaabc03eed2d5))
|
|
1644
|
+
|
|
1645
|
+
## [5.21.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.20.4...v5.21.0) (2020-01-13)
|
|
1646
|
+
|
|
1647
|
+
|
|
1648
|
+
### Features
|
|
1649
|
+
|
|
1650
|
+
* **components:** add Alert ([#292](https://github.com/matsuri-tech/matsuri-ui/issues/292)) ([4ea9bdf](https://github.com/matsuri-tech/matsuri-ui/commit/4ea9bdfdc72dcb9e979c4d2bb519bc5da7dfb06b))
|
|
1651
|
+
* **components:** add Toast, Portal ([#286](https://github.com/matsuri-tech/matsuri-ui/issues/286)) ([d89f6e3](https://github.com/matsuri-tech/matsuri-ui/commit/d89f6e34b4d5b870d493ad6e962755b6e0826936)), closes [#253](https://github.com/matsuri-tech/matsuri-ui/issues/253) [#263](https://github.com/matsuri-tech/matsuri-ui/issues/263) [#243](https://github.com/matsuri-tech/matsuri-ui/issues/243)
|
|
1652
|
+
* **components:** replace Portal with container for some components that should be placed outside ([#290](https://github.com/matsuri-tech/matsuri-ui/issues/290)) ([33b7c6b](https://github.com/matsuri-tech/matsuri-ui/commit/33b7c6b2eb182040c4cac83e4350299d075a9484))
|
|
1653
|
+
|
|
1654
|
+
|
|
1655
|
+
### Others
|
|
1656
|
+
|
|
1657
|
+
* **deps:** update storybook to ^5.3.0 ([#289](https://github.com/matsuri-tech/matsuri-ui/issues/289)) ([b7b4e6f](https://github.com/matsuri-tech/matsuri-ui/commit/b7b4e6f065f93406f74d8badc97abd345f7d5f52))
|
|
1658
|
+
|
|
1659
|
+
### [5.20.4](https://github.com/matsuri-tech/matsuri-ui/compare/v5.20.3...v5.20.4) (2020-01-10)
|
|
1660
|
+
|
|
1661
|
+
|
|
1662
|
+
### Bug Fixes
|
|
1663
|
+
|
|
1664
|
+
* **Chip:** fix behavior when having relative container ([#287](https://github.com/matsuri-tech/matsuri-ui/issues/287)) ([6efb51f](https://github.com/matsuri-tech/matsuri-ui/commit/6efb51fb29e2b24a7995e0069a14e8680c9654cd))
|
|
1665
|
+
|
|
1666
|
+
|
|
1667
|
+
### Others
|
|
1668
|
+
|
|
1669
|
+
* **deps:** update dependency dayjs to ^1.8.19 ([#279](https://github.com/matsuri-tech/matsuri-ui/issues/279)) ([8e5116c](https://github.com/matsuri-tech/matsuri-ui/commit/8e5116c19e080c3b761c5b0ea10ca7eb98e72d13))
|
|
1670
|
+
* **deps:** update dependency rollup to ^1.29.0 ([#284](https://github.com/matsuri-tech/matsuri-ui/issues/284)) ([8498b88](https://github.com/matsuri-tech/matsuri-ui/commit/8498b888057f675945eac538fb6e9ec8912fbf57))
|
|
1671
|
+
* **deps:** update dependency textlint to ^11.6.0 ([#281](https://github.com/matsuri-tech/matsuri-ui/issues/281)) ([8ecab36](https://github.com/matsuri-tech/matsuri-ui/commit/8ecab36b149ad7c74391f2c2f52864841874fc0f))
|
|
1672
|
+
* **deps:** update dependency textlint to ^11.6.1 ([#285](https://github.com/matsuri-tech/matsuri-ui/issues/285)) ([699cf1a](https://github.com/matsuri-tech/matsuri-ui/commit/699cf1a2e741d7617b547e36c9f1d8800e6aebf4))
|
|
1673
|
+
* **deps:** update dependency ts-jest to ^24.3.0 ([#282](https://github.com/matsuri-tech/matsuri-ui/issues/282)) ([3ad9646](https://github.com/matsuri-tech/matsuri-ui/commit/3ad96462ee8dd0b2e74c019b79825d8894b9750f))
|
|
1674
|
+
* **deps:** update typescript-eslint monorepo to ^2.15.0 ([#280](https://github.com/matsuri-tech/matsuri-ui/issues/280)) ([e43875d](https://github.com/matsuri-tech/matsuri-ui/commit/e43875dce5165e59ce61e8f3309857526b9353fe))
|
|
1675
|
+
* **github:** update pull request template 2020-01-07 ([#278](https://github.com/matsuri-tech/matsuri-ui/issues/278)) ([838e4b7](https://github.com/matsuri-tech/matsuri-ui/commit/838e4b7cac7c1569241a353d49c5762e66e4ab15))
|
|
1676
|
+
* **stories/Typography:** fix types ([#277](https://github.com/matsuri-tech/matsuri-ui/issues/277)) ([534b15d](https://github.com/matsuri-tech/matsuri-ui/commit/534b15dfbaa5750ed9d082cd1de6ddcba7d80604))
|
|
1677
|
+
|
|
1678
|
+
### [5.20.3](https://github.com/matsuri-tech/matsuri-ui/compare/v5.20.2...v5.20.3) (2020-01-06)
|
|
1679
|
+
|
|
1680
|
+
|
|
1681
|
+
### Bug Fixes
|
|
1682
|
+
|
|
1683
|
+
* **Inputs/DateField:** improve styles, popper area ([#275](https://github.com/matsuri-tech/matsuri-ui/issues/275)) ([62f6c8d](https://github.com/matsuri-tech/matsuri-ui/commit/62f6c8d6721f0049dd0f455554ebe931e918b614))
|
|
1684
|
+
|
|
1685
|
+
|
|
1686
|
+
### Others
|
|
1687
|
+
|
|
1688
|
+
* **deps:** lock file maintenance ([#270](https://github.com/matsuri-tech/matsuri-ui/issues/270)) ([3e7dfb8](https://github.com/matsuri-tech/matsuri-ui/commit/3e7dfb832a78b3faac3180dabad2f8e5cc1e3886))
|
|
1689
|
+
* **deps:** update babel monorepo to ^7.7.7 ([#259](https://github.com/matsuri-tech/matsuri-ui/issues/259)) ([58e6cb9](https://github.com/matsuri-tech/matsuri-ui/commit/58e6cb9a2d44557ba3b9772c526397f8f0bd84cc))
|
|
1690
|
+
* **deps:** update commitlint monorepo to ^8.3.4 ([#272](https://github.com/matsuri-tech/matsuri-ui/issues/272)) ([07ff432](https://github.com/matsuri-tech/matsuri-ui/commit/07ff432e681b00b8ae0b5e70445b77e5cb1cf3de))
|
|
1691
|
+
* **deps:** update dependency @material-ui/styles to ^4.8.2 ([#269](https://github.com/matsuri-tech/matsuri-ui/issues/269)) ([1ce4ffe](https://github.com/matsuri-tech/matsuri-ui/commit/1ce4ffef983d07c87df2990435584a920948d0ca))
|
|
1692
|
+
* **deps:** update dependency @types/color to ^3.0.1 ([#273](https://github.com/matsuri-tech/matsuri-ui/issues/273)) ([7f6f32c](https://github.com/matsuri-tech/matsuri-ui/commit/7f6f32c13186a11349d5c511e5cbd2870f6df25f))
|
|
1693
|
+
* **deps:** update dependency @types/jest to ^24.0.24 ([#257](https://github.com/matsuri-tech/matsuri-ui/issues/257)) ([263a1e6](https://github.com/matsuri-tech/matsuri-ui/commit/263a1e62bf42c3cbe12e5108fb255f2b154d280a))
|
|
1694
|
+
* **deps:** update dependency @types/jest to ^24.0.25 ([#267](https://github.com/matsuri-tech/matsuri-ui/issues/267)) ([8d255b1](https://github.com/matsuri-tech/matsuri-ui/commit/8d255b131bd3b15ccfa624a1bc3f557d20c13f5b))
|
|
1695
|
+
* **deps:** update dependency @types/react to ^16.9.17 ([#260](https://github.com/matsuri-tech/matsuri-ui/issues/260)) ([32f3634](https://github.com/matsuri-tech/matsuri-ui/commit/32f36340a2f9443e8ae77f402eaaae1434630d20))
|
|
1696
|
+
* **deps:** update dependency conventional-changelog-cli to ^2.0.31 ([#252](https://github.com/matsuri-tech/matsuri-ui/issues/252)) ([1b93752](https://github.com/matsuri-tech/matsuri-ui/commit/1b937523b75db32534e7bcc7076954ca18abdfba))
|
|
1697
|
+
* **deps:** update dependency dayjs to ^1.8.18 ([#255](https://github.com/matsuri-tech/matsuri-ui/issues/255)) ([9c6f54d](https://github.com/matsuri-tech/matsuri-ui/commit/9c6f54d3d61d7258af6d9c3635672d546255b119))
|
|
1698
|
+
* **deps:** update dependency eslint to ^6.8.0 ([#262](https://github.com/matsuri-tech/matsuri-ui/issues/262)) ([53d166f](https://github.com/matsuri-tech/matsuri-ui/commit/53d166fe42d1ba1a8a1da09ea7f0df62d8dd2b61))
|
|
1699
|
+
* **deps:** update dependency eslint-config-prettier to ^6.8.0 ([#265](https://github.com/matsuri-tech/matsuri-ui/issues/265)) ([2595db7](https://github.com/matsuri-tech/matsuri-ui/commit/2595db76dd2dfd6b7e976210b7bb19ed591ef0ee))
|
|
1700
|
+
* **deps:** update dependency eslint-config-prettier to ^6.9.0 ([#268](https://github.com/matsuri-tech/matsuri-ui/issues/268)) ([eef12c4](https://github.com/matsuri-tech/matsuri-ui/commit/eef12c4191fce417a8b606fba0c641e8d428c15b))
|
|
1701
|
+
* **deps:** update dependency eslint-plugin-prettier to ^3.1.2 ([#251](https://github.com/matsuri-tech/matsuri-ui/issues/251)) ([5ca7023](https://github.com/matsuri-tech/matsuri-ui/commit/5ca7023e269b2614c9238b5e896acc85ce221e85))
|
|
1702
|
+
* **deps:** update dependency react-table to ^7.0.0-rc.15 ([#258](https://github.com/matsuri-tech/matsuri-ui/issues/258)) ([ada193c](https://github.com/matsuri-tech/matsuri-ui/commit/ada193cdc3c8170b3e5e97cb351dd50a5deea8cd))
|
|
1703
|
+
* **deps:** update dependency rollup to ^1.27.14 ([#264](https://github.com/matsuri-tech/matsuri-ui/issues/264)) ([c08cb47](https://github.com/matsuri-tech/matsuri-ui/commit/c08cb47f9f60e95628962693d5b1834b7035b1bc))
|
|
1704
|
+
* **deps:** update dependency rollup to ^1.28.0 ([#274](https://github.com/matsuri-tech/matsuri-ui/issues/274)) ([e326183](https://github.com/matsuri-tech/matsuri-ui/commit/e326183d393c01180bdf5849d53789d4b6651800))
|
|
1705
|
+
* **deps:** update dependency stylelint to ^12.0.1 ([#266](https://github.com/matsuri-tech/matsuri-ui/issues/266)) ([0f5948b](https://github.com/matsuri-tech/matsuri-ui/commit/0f5948baecbf7c531ceccda78f27d8752ad1d5df))
|
|
1706
|
+
* **deps:** update dependency textlint-rule-prh to ^5.3.0 ([#256](https://github.com/matsuri-tech/matsuri-ui/issues/256)) ([7d2da31](https://github.com/matsuri-tech/matsuri-ui/commit/7d2da31e2367818fdc384171b6d977aa1a0e2dfc))
|
|
1707
|
+
* **deps:** update dependency typescript to v3.7.4 ([#261](https://github.com/matsuri-tech/matsuri-ui/issues/261)) ([0603c2e](https://github.com/matsuri-tech/matsuri-ui/commit/0603c2e6af3eb3573fcfd148ea8ac86f0eb00187))
|
|
1708
|
+
* **deps:** update typescript-eslint monorepo to ^2.13.0 ([#254](https://github.com/matsuri-tech/matsuri-ui/issues/254)) ([4466956](https://github.com/matsuri-tech/matsuri-ui/commit/44669560bfc8d138d8e077ca640d9831bf78b713))
|
|
1709
|
+
* **deps:** update typescript-eslint monorepo to ^2.14.0 ([#271](https://github.com/matsuri-tech/matsuri-ui/issues/271)) ([227d618](https://github.com/matsuri-tech/matsuri-ui/commit/227d618fed2e52acf485ec81b13b8ed65f2dac97))
|
|
1710
|
+
* **vscode:** improve actions ([#276](https://github.com/matsuri-tech/matsuri-ui/issues/276)) ([e062a9d](https://github.com/matsuri-tech/matsuri-ui/commit/e062a9d5db7b2945acf4b32596ec1cee6a062261))
|
|
1711
|
+
|
|
1712
|
+
### [5.20.2](https://github.com/matsuri-tech/matsuri-ui/compare/v5.20.1...v5.20.2) (2019-12-16)
|
|
1713
|
+
|
|
1714
|
+
|
|
1715
|
+
### Bug Fixes
|
|
1716
|
+
|
|
1717
|
+
* **inputs:** fix placeholder color ([6b20aaf](https://github.com/matsuri-tech/matsuri-ui/commit/6b20aafff30409636711857b44391ad0c31e1a6c))
|
|
1718
|
+
* **mobile:** make useMobile detect ref changes ([#247](https://github.com/matsuri-tech/matsuri-ui/issues/247)) ([0d893c6](https://github.com/matsuri-tech/matsuri-ui/commit/0d893c6cd72ed70e7b580112ec45f56a787b4101)), closes [#246](https://github.com/matsuri-tech/matsuri-ui/issues/246)
|
|
1719
|
+
* **textfield:** fix "Received `true` for a non-boolean attribute `multiline`" ([#250](https://github.com/matsuri-tech/matsuri-ui/issues/250)) ([93993ed](https://github.com/matsuri-tech/matsuri-ui/commit/93993ed2522ec9a6a528bdfc17c609a393d8569e)), closes [#244](https://github.com/matsuri-tech/matsuri-ui/issues/244)
|
|
1720
|
+
* **types:** fix AsComponentProps ([#249](https://github.com/matsuri-tech/matsuri-ui/issues/249)) ([7b6fe04](https://github.com/matsuri-tech/matsuri-ui/commit/7b6fe048ad62de3ce9e71f531939007a24642f53)), closes [#248](https://github.com/matsuri-tech/matsuri-ui/issues/248)
|
|
1721
|
+
|
|
1722
|
+
|
|
1723
|
+
### Others
|
|
1724
|
+
|
|
1725
|
+
* **deps:** update dependency react-table to ^7.0.0-rc.10 ([#241](https://github.com/matsuri-tech/matsuri-ui/issues/241)) ([e8d67f5](https://github.com/matsuri-tech/matsuri-ui/commit/e8d67f5e370c263e57b12902a1a382f66dc89acd))
|
|
1726
|
+
* **deps:** update dependency rollup to ^1.27.12 ([#242](https://github.com/matsuri-tech/matsuri-ui/issues/242)) ([35e4c3a](https://github.com/matsuri-tech/matsuri-ui/commit/35e4c3a61143cc4c766769868fd0de59122634a7))
|
|
1727
|
+
* **deps:** update dependency rollup to ^1.27.13 ([#245](https://github.com/matsuri-tech/matsuri-ui/issues/245)) ([de2eeb6](https://github.com/matsuri-tech/matsuri-ui/commit/de2eeb630ed7b064f40fa7fbaec89071a5ed6058))
|
|
1728
|
+
|
|
1729
|
+
### [5.20.1](https://github.com/matsuri-tech/matsuri-ui/compare/v5.20.0...v5.20.1) (2019-12-13)
|
|
1730
|
+
|
|
1731
|
+
|
|
1732
|
+
### Bug Fixes
|
|
1733
|
+
|
|
1734
|
+
* **inputs:** remove unused theme variable ([87923cf](https://github.com/matsuri-tech/matsuri-ui/commit/87923cfc7f131fd8834fa007f50f2ecb18a2cf17))
|
|
1735
|
+
|
|
1736
|
+
|
|
1737
|
+
### Others
|
|
1738
|
+
|
|
1739
|
+
* **deps:** include @types/react @types/react-dom in peerDependencies ([f345ac4](https://github.com/matsuri-tech/matsuri-ui/commit/f345ac41c0bb4a623d11f20ba1ac096544af3a12))
|
|
1740
|
+
* **deps:** update dependency react-table to ^7.0.0-rc.9 ([#239](https://github.com/matsuri-tech/matsuri-ui/issues/239)) ([31ca13c](https://github.com/matsuri-tech/matsuri-ui/commit/31ca13cc61393986c9395e722455a2285d2acf27))
|
|
1741
|
+
* **deps:** update typescript-eslint monorepo to ^2.11.0 ([#238](https://github.com/matsuri-tech/matsuri-ui/issues/238)) ([152c269](https://github.com/matsuri-tech/matsuri-ui/commit/152c269c7de1d2368c84087f74e57bc2377c394f))
|
|
1742
|
+
|
|
1743
|
+
## [5.20.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.19.1...v5.20.0) (2019-12-10)
|
|
1744
|
+
|
|
1745
|
+
|
|
1746
|
+
### Features
|
|
1747
|
+
|
|
1748
|
+
* **inputs:** export useInputStyles ([#234](https://github.com/matsuri-tech/matsuri-ui/issues/234)) ([374111a](https://github.com/matsuri-tech/matsuri-ui/commit/374111a2286349fd46234cfd5826aa9abb506d0a))
|
|
1749
|
+
* **theme:** add usePalette ([#233](https://github.com/matsuri-tech/matsuri-ui/issues/233)) ([81546c4](https://github.com/matsuri-tech/matsuri-ui/commit/81546c4a2e73607941ab93e23a58455f21aad7d6))
|
|
1750
|
+
|
|
1751
|
+
|
|
1752
|
+
### Others
|
|
1753
|
+
|
|
1754
|
+
* **deps:** update dependency @babel/preset-env to ^7.7.6 ([#231](https://github.com/matsuri-tech/matsuri-ui/issues/231)) ([7513f64](https://github.com/matsuri-tech/matsuri-ui/commit/7513f64ce947e36c67e0aab660e51db4c4d4930d))
|
|
1755
|
+
* **deps:** update dependency rollup to ^1.27.9 ([#232](https://github.com/matsuri-tech/matsuri-ui/issues/232)) ([0e10032](https://github.com/matsuri-tech/matsuri-ui/commit/0e100322506269f4e24b79a4620e88c576d4bcfa))
|
|
1756
|
+
* **scripts:** fix build script ([806efb6](https://github.com/matsuri-tech/matsuri-ui/commit/806efb63624310bf9cc10783499ba4d0ecf82f97))
|
|
1757
|
+
* **stories:** add DummyInput ([#235](https://github.com/matsuri-tech/matsuri-ui/issues/235)) ([e159bf8](https://github.com/matsuri-tech/matsuri-ui/commit/e159bf8e9d42b3f1a41a628a5eb10511a64f52b2))
|
|
1758
|
+
|
|
1759
|
+
### [5.19.1](https://github.com/matsuri-tech/matsuri-ui/compare/v5.19.0...v5.19.1) (2019-12-09)
|
|
1760
|
+
|
|
1761
|
+
|
|
1762
|
+
### Bug Fixes
|
|
1763
|
+
|
|
1764
|
+
* **panel:** change alignItems from flex-start to center ([#230](https://github.com/matsuri-tech/matsuri-ui/issues/230)) ([557ec30](https://github.com/matsuri-tech/matsuri-ui/commit/557ec30002b7c531e1bda2a031953e0ffd53e066))
|
|
1765
|
+
|
|
1766
|
+
|
|
1767
|
+
### Others
|
|
1768
|
+
|
|
1769
|
+
* **stories:** fix TodoList story ([4a04971](https://github.com/matsuri-tech/matsuri-ui/commit/4a049713ec4d76fac55d7ed51b24a5d408c0dafa))
|
|
1770
|
+
|
|
1771
|
+
## [5.19.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.18.0...v5.19.0) (2019-12-09)
|
|
1772
|
+
|
|
1773
|
+
|
|
1774
|
+
### Features
|
|
1775
|
+
|
|
1776
|
+
* **select-field:** add a component completed form contol including label, select ([#228](https://github.com/matsuri-tech/matsuri-ui/issues/228)) ([ffce27f](https://github.com/matsuri-tech/matsuri-ui/commit/ffce27f95f6cdbf3dec3921e31f16d16f65b6839))
|
|
1777
|
+
|
|
1778
|
+
|
|
1779
|
+
### Bug Fixes
|
|
1780
|
+
|
|
1781
|
+
* **overlay:** rename props.alpha to props.opacity ([#229](https://github.com/matsuri-tech/matsuri-ui/issues/229)) ([25da78b](https://github.com/matsuri-tech/matsuri-ui/commit/25da78b582e0de9b00f23cb40cbbb8c5893f6ee5))
|
|
1782
|
+
|
|
1783
|
+
|
|
1784
|
+
### Others
|
|
1785
|
+
|
|
1786
|
+
* **scripts:** update release script ([7abb959](https://github.com/matsuri-tech/matsuri-ui/commit/7abb95920bafabe9c53951e7ac1a7b575ba31055))
|
|
1787
|
+
|
|
1788
|
+
## [5.18.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.17.0...v5.18.0) (2019-12-09)
|
|
1789
|
+
|
|
1790
|
+
|
|
1791
|
+
### Features
|
|
1792
|
+
|
|
1793
|
+
* **components:** add Pagination ([#226](https://github.com/matsuri-tech/matsuri-ui/issues/226)) ([330fa59](https://github.com/matsuri-tech/matsuri-ui/commit/330fa5983ab9c04b0cd0b36f5ac4b0eb41465a47))
|
|
1794
|
+
* **components:** add Select, FormControl, InputLabel ([#222](https://github.com/matsuri-tech/matsuri-ui/issues/222)) ([0d48294](https://github.com/matsuri-tech/matsuri-ui/commit/0d4829455f0773a746ff20c2494d46b72853bf8d))
|
|
1795
|
+
|
|
1796
|
+
|
|
1797
|
+
### Bug Fixes
|
|
1798
|
+
|
|
1799
|
+
* **inputs:** improve empty input style ([#221](https://github.com/matsuri-tech/matsuri-ui/issues/221)) ([2689428](https://github.com/matsuri-tech/matsuri-ui/commit/26894281ba6f037091dc560f7ed3bc4a3675c104))
|
|
1800
|
+
* **paper:** remove overflow: hidden from root style ([#224](https://github.com/matsuri-tech/matsuri-ui/issues/224)) ([a56df9a](https://github.com/matsuri-tech/matsuri-ui/commit/a56df9a59b0eda6237dc6c371db4d20a6ac7e676))
|
|
1801
|
+
* **popper:** fix misalignment in specific case ([#223](https://github.com/matsuri-tech/matsuri-ui/issues/223)) ([0a1c6b3](https://github.com/matsuri-tech/matsuri-ui/commit/0a1c6b3fcedc0098af01186f2a92b225ec889e67))
|
|
1802
|
+
|
|
1803
|
+
|
|
1804
|
+
### Others
|
|
1805
|
+
|
|
1806
|
+
* improve commits and deploy ([#216](https://github.com/matsuri-tech/matsuri-ui/issues/216)) ([dcb504c](https://github.com/matsuri-tech/matsuri-ui/commit/dcb504c9222e16926611765cfc918eaf4d69ea6b))
|
|
1807
|
+
* **buttons:** improve state cache & animation ([#227](https://github.com/matsuri-tech/matsuri-ui/issues/227)) ([cc69dc0](https://github.com/matsuri-tech/matsuri-ui/commit/cc69dc0f3952e13911c0b54100d52e133e1151f0))
|
|
1808
|
+
* **deps:** update babel monorepo to ^7.7.5 ([#219](https://github.com/matsuri-tech/matsuri-ui/issues/219)) ([e0dff9f](https://github.com/matsuri-tech/matsuri-ui/commit/e0dff9f986db9495331d271e62b0fbcb117a18eb))
|
|
1809
|
+
* **deps:** update dependency @types/react to ^16.9.15 ([#218](https://github.com/matsuri-tech/matsuri-ui/issues/218)) ([edfc536](https://github.com/matsuri-tech/matsuri-ui/commit/edfc53688c58dcf1045bf7b9a8c35375080306a8))
|
|
1810
|
+
* **deps:** update dependency react-table to ^7.0.0-rc.3 ([#225](https://github.com/matsuri-tech/matsuri-ui/issues/225)) ([037e26a](https://github.com/matsuri-tech/matsuri-ui/commit/037e26a3ae27e1b120ececc8b1d0ac4cd35eb289))
|
|
1811
|
+
* **deps:** update dependency typescript to v3.7.3 ([#217](https://github.com/matsuri-tech/matsuri-ui/issues/217)) ([e2c14a7](https://github.com/matsuri-tech/matsuri-ui/commit/e2c14a73c6c9e87afcbd71f930d53192bd853011))
|
|
1812
|
+
* **utils:** pick subordinateComponents function from Table ([#220](https://github.com/matsuri-tech/matsuri-ui/issues/220)) ([09f634b](https://github.com/matsuri-tech/matsuri-ui/commit/09f634bfdf80ce5177614307586450de64e0bcf8))
|
|
1813
|
+
|
|
1814
|
+
## [5.17.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.16.1...v5.17.0) (2019-12-05)
|
|
1815
|
+
|
|
1816
|
+
|
|
1817
|
+
### Features
|
|
1818
|
+
|
|
1819
|
+
* **table:** add Table components (no body) ([#214](https://github.com/matsuri-tech/matsuri-ui/issues/214)) ([64e71cf](https://github.com/matsuri-tech/matsuri-ui/commit/64e71cf67ac202af1e9080f9369b29bed63f6946))
|
|
1820
|
+
|
|
1821
|
+
### [5.16.1](https://github.com/matsuri-tech/matsuri-ui/compare/v5.16.0...v5.16.1) (2019-12-04)
|
|
1822
|
+
|
|
1823
|
+
## [5.16.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.15.1...v5.16.0) (2019-12-04)
|
|
1824
|
+
|
|
1825
|
+
|
|
1826
|
+
### Features
|
|
1827
|
+
|
|
1828
|
+
* add useMobile ([#212](https://github.com/matsuri-tech/matsuri-ui/issues/212)) ([69aa714](https://github.com/matsuri-tech/matsuri-ui/commit/69aa714f2f19dcd87f99777fd5cd4147cf18a24f))
|
|
1829
|
+
|
|
1830
|
+
### [5.15.1](https://github.com/matsuri-tech/matsuri-ui/compare/v5.15.0...v5.15.1) (2019-11-29)
|
|
1831
|
+
|
|
1832
|
+
## [5.15.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.14.3...v5.15.0) (2019-11-29)
|
|
1833
|
+
|
|
1834
|
+
|
|
1835
|
+
### Features
|
|
1836
|
+
|
|
1837
|
+
* **inputs:** return event by onChange as much as possible ([#198](https://github.com/matsuri-tech/matsuri-ui/issues/198)) ([aa53d90](https://github.com/matsuri-tech/matsuri-ui/commit/aa53d90f64b3eee395f1218dad933ecd8bc01289)), closes [#194](https://github.com/matsuri-tech/matsuri-ui/issues/194)
|
|
1838
|
+
|
|
1839
|
+
### [5.14.3](https://github.com/matsuri-tech/matsuri-ui/compare/v5.14.2...v5.14.3) (2019-11-28)
|
|
1840
|
+
|
|
1841
|
+
|
|
1842
|
+
### Bug Fixes
|
|
1843
|
+
|
|
1844
|
+
* **components:** fix imports ([0d9431e](https://github.com/matsuri-tech/matsuri-ui/commit/0d9431ee53603e77ab0f34a5e032c0bfd16040dd))
|
|
1845
|
+
|
|
1846
|
+
### [5.14.2](https://github.com/matsuri-tech/matsuri-ui/compare/v5.14.1...v5.14.2) (2019-11-27)
|
|
1847
|
+
|
|
1848
|
+
|
|
1849
|
+
### Bug Fixes
|
|
1850
|
+
|
|
1851
|
+
* **layout:** improve flexbox base components ([#192](https://github.com/matsuri-tech/matsuri-ui/issues/192)) ([ba5e76a](https://github.com/matsuri-tech/matsuri-ui/commit/ba5e76a9e69b7a4a287f0b03386fef966bbfeb64))
|
|
1852
|
+
|
|
1853
|
+
### [5.14.1](https://github.com/matsuri-tech/matsuri-ui/compare/v5.14.0...v5.14.1) (2019-11-26)
|
|
1854
|
+
|
|
1855
|
+
|
|
1856
|
+
### Bug Fixes
|
|
1857
|
+
|
|
1858
|
+
* **tab:** remove type=button ([31b3c96](https://github.com/matsuri-tech/matsuri-ui/commit/31b3c96f9582c0ba02ff8d658f396a5185fed4ff))
|
|
1859
|
+
|
|
1860
|
+
## [5.14.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.13.0...v5.14.0) (2019-11-25)
|
|
1861
|
+
|
|
1862
|
+
|
|
1863
|
+
### Features
|
|
1864
|
+
|
|
1865
|
+
* **timeline:** add support of relative format & separating timeline ([#187](https://github.com/matsuri-tech/matsuri-ui/issues/187)) ([a798726](https://github.com/matsuri-tech/matsuri-ui/commit/a79872636e09e7f5f89c59222d7a3d675c121354))
|
|
1866
|
+
|
|
1867
|
+
## [5.13.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.12.5...v5.13.0) (2019-11-21)
|
|
1868
|
+
|
|
1869
|
+
|
|
1870
|
+
### Features
|
|
1871
|
+
|
|
1872
|
+
* **components:** add Timeline Component ([#174](https://github.com/matsuri-tech/matsuri-ui/issues/174)) ([c121912](https://github.com/matsuri-tech/matsuri-ui/commit/c121912c8170dbfd294f06cb38e2efd34c30f6fd))
|
|
1873
|
+
|
|
1874
|
+
### [5.12.5](https://github.com/matsuri-tech/matsuri-ui/compare/v5.12.3...v5.12.5) (2019-11-21)
|
|
1875
|
+
|
|
1876
|
+
### [5.12.4](https://github.com/matsuri-tech/matsuri-ui/compare/v5.12.3...v5.12.4) (2019-11-20)
|
|
1877
|
+
|
|
1878
|
+
### [5.12.3](https://github.com/matsuri-tech/matsuri-ui/compare/v5.12.2...v5.12.3) (2019-11-20)
|
|
1879
|
+
|
|
1880
|
+
### [5.12.2](https://github.com/matsuri-tech/matsuri-ui/compare/v5.12.1...v5.12.2) (2019-11-20)
|
|
1881
|
+
|
|
1882
|
+
### [5.12.1](https://github.com/matsuri-tech/matsuri-ui/compare/v5.12.0...v5.12.1) (2019-11-20)
|
|
1883
|
+
|
|
1884
|
+
## [5.12.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.11.5...v5.12.0) (2019-11-20)
|
|
1885
|
+
|
|
1886
|
+
|
|
1887
|
+
### Features
|
|
1888
|
+
|
|
1889
|
+
* **components:** add Mobile Components ([#168](https://github.com/matsuri-tech/matsuri-ui/issues/168)) ([25a4056](https://github.com/matsuri-tech/matsuri-ui/commit/25a4056769b19cea973c7cf9d2733408a4cb851c))
|
|
1890
|
+
|
|
1891
|
+
### [5.11.5](https://github.com/matsuri-tech/matsuri-ui/compare/v5.11.4...v5.11.5) (2019-11-19)
|
|
1892
|
+
|
|
1893
|
+
### [5.11.4](https://github.com/matsuri-tech/matsuri-ui/compare/v5.11.3...v5.11.4) (2019-11-19)
|
|
1894
|
+
|
|
1895
|
+
### [5.11.3](https://github.com/matsuri-tech/matsuri-ui/compare/v5.11.2...v5.11.3) (2019-11-19)
|
|
1896
|
+
|
|
1897
|
+
### [5.11.2](https://github.com/matsuri-tech/matsuri-ui/compare/v5.11.1...v5.11.2) (2019-11-18)
|
|
1898
|
+
|
|
1899
|
+
## [5.11.1](https://github.com/matsuri-tech/matsuri-ui/compare/v5.11.0...v5.11.1) (2019-11-18)
|
|
1900
|
+
|
|
1901
|
+
|
|
1902
|
+
### Bug Fixes
|
|
1903
|
+
|
|
1904
|
+
* **steper:** fix missing export ([511de9d](https://github.com/matsuri-tech/matsuri-ui/commit/511de9d1e647e88f62a533b3bf3b3d9692a70a5f))
|
|
1905
|
+
|
|
1906
|
+
|
|
1907
|
+
|
|
1908
|
+
# [5.11.0](https://github.com/matsuri-tech/matsuri-ui/compare/v5.10.10...v5.11.0) (2019-11-18)
|
|
1909
|
+
|
|
1910
|
+
|
|
1911
|
+
### Bug Fixes
|
|
1912
|
+
|
|
1913
|
+
* **flexbox:** make props such as style inherit to container, not wrapper ([7caeb92](https://github.com/matsuri-tech/matsuri-ui/commit/7caeb92d55e9c0234dc269e9dfab57936b5d162f))
|
|
1914
|
+
|
|
1915
|
+
|
|
1916
|
+
|
|
1917
|
+
## [5.10.10](https://github.com/matsuri-tech/matsuri-ui/compare/v5.10.9...v5.10.10) (2019-11-18)
|
|
1918
|
+
|
|
1919
|
+
|
|
1920
|
+
|
|
1921
|
+
## [5.10.9](https://github.com/matsuri-tech/matsuri-ui/compare/v5.10.8...v5.10.9) (2019-11-18)
|
|
1922
|
+
|
|
1923
|
+
|
|
1924
|
+
|
|
1925
|
+
## [5.10.8](https://github.com/matsuri-tech/matsuri-ui/compare/v5.10.7...v5.10.8) (2019-11-15)
|
|
1926
|
+
|
|
1927
|
+
|
|
1928
|
+
|
|
1929
|
+
## [5.10.7](https://github.com/matsuri-tech/matsuri-ui/compare/v5.10.6...v5.10.7) (2019-11-15)
|
|
1930
|
+
|
|
1931
|
+
|
|
1932
|
+
### Bug Fixes
|
|
1933
|
+
|
|
1934
|
+
* **theme:** include types more ([d1fe31d](https://github.com/matsuri-tech/matsuri-ui/commit/d1fe31d4e1b4bf289b8c97139537626fb0dc4089))
|
|
1935
|
+
|
|
1936
|
+
|
|
1937
|
+
|
|
1938
|
+
## [5.10.6](https://github.com/matsuri-tech/matsuri-ui/compare/v4.2.1...v5.10.6) (2019-11-15)
|
|
1939
|
+
|
|
1940
|
+
|
|
1941
|
+
### Bug Fixes
|
|
1942
|
+
|
|
1943
|
+
* change palette.gray.text to dark ([14f0265](https://github.com/matsuri-tech/matsuri-ui/commit/14f0265ef1c6c1641303b25aa60eaa2d57b3c1b9))
|
|
1944
|
+
* fix Button styles ([#51](https://github.com/matsuri-tech/matsuri-ui/issues/51)) ([1b45fb8](https://github.com/matsuri-tech/matsuri-ui/commit/1b45fb8bb8713170136b1dffc2b11e5047663380))
|
|
1945
|
+
* fix ImageField ([#56](https://github.com/matsuri-tech/matsuri-ui/issues/56)) ([0793a96](https://github.com/matsuri-tech/matsuri-ui/commit/0793a9606ce7a9f226f181863214753f39758007)), closes [#54](https://github.com/matsuri-tech/matsuri-ui/issues/54)
|
|
1946
|
+
* fix minor style issues of TextField ([#236](https://github.com/matsuri-tech/matsuri-ui/issues/236)) ([16761b9](https://github.com/matsuri-tech/matsuri-ui/commit/16761b9037f32cd4581b02f2cf4b610ff708f784))
|
|
1947
|
+
* fix Popper position on first rendering ([#34](https://github.com/matsuri-tech/matsuri-ui/issues/34)) ([d41e0fa](https://github.com/matsuri-tech/matsuri-ui/commit/d41e0fad3fe749dcd981db5a4240592b9af10cd5)), closes [#33](https://github.com/matsuri-tech/matsuri-ui/issues/33)
|
|
1948
|
+
* fix Select bug ([#178](https://github.com/matsuri-tech/matsuri-ui/issues/178)) ([73e4cb6](https://github.com/matsuri-tech/matsuri-ui/commit/73e4cb6942d0f961c0668f40dfa7d75d726d7427)), closes [#177](https://github.com/matsuri-tech/matsuri-ui/issues/177)
|
|
1949
|
+
* fix some issues ([#106](https://github.com/matsuri-tech/matsuri-ui/issues/106)) ([0c778f0](https://github.com/matsuri-tech/matsuri-ui/commit/0c778f02196edcdd9820ebcb5c5e38c37def200b))
|
|
1950
|
+
* improve styles of inputs ([#74](https://github.com/matsuri-tech/matsuri-ui/issues/74)) ([5679e9b](https://github.com/matsuri-tech/matsuri-ui/commit/5679e9b125456f2f0b8b6bed1c1e98ffda3c98a4)), closes [#64](https://github.com/matsuri-tech/matsuri-ui/issues/64)
|
|
1951
|
+
* make CalendarUI updatable ([#40](https://github.com/matsuri-tech/matsuri-ui/issues/40)) ([05280f3](https://github.com/matsuri-tech/matsuri-ui/commit/05280f3158992e5d528346db00c393990938b29c))
|
|
1952
|
+
* make FunctionComponent to forwardRef ([#67](https://github.com/matsuri-tech/matsuri-ui/issues/67)) ([92b2daa](https://github.com/matsuri-tech/matsuri-ui/commit/92b2daae86d5dfb8cfafe527df9afb12f841f149)), closes [#65](https://github.com/matsuri-tech/matsuri-ui/issues/65)
|
|
1953
|
+
* **buttons:** fix style ([12c625f](https://github.com/matsuri-tech/matsuri-ui/commit/12c625fafc6b6062c23d12be804841eb64976fd8))
|
|
1954
|
+
* **buttons:** fix style ([c97ce06](https://github.com/matsuri-tech/matsuri-ui/commit/c97ce06c21f8b595ceea14d931b5a0952d981b59))
|
|
1955
|
+
* **buttons:** improve click animation ([#153](https://github.com/matsuri-tech/matsuri-ui/issues/153)) ([e82d382](https://github.com/matsuri-tech/matsuri-ui/commit/e82d382e07688b1bb12a2a444dd0044d81e1faad))
|
|
1956
|
+
* **calendarui:** fix props.dates type ([#85](https://github.com/matsuri-tech/matsuri-ui/issues/85)) ([4888126](https://github.com/matsuri-tech/matsuri-ui/commit/48881264e78891c588d79379d3c5844d54f4f5d6))
|
|
1957
|
+
* **calendarui:** force time to 0 ([#83](https://github.com/matsuri-tech/matsuri-ui/issues/83)) ([e46ae23](https://github.com/matsuri-tech/matsuri-ui/commit/e46ae2352cfb443834b86e2d6d72f2a3ac7e3987))
|
|
1958
|
+
* **cardmedia:** fix styles ([46c8d05](https://github.com/matsuri-tech/matsuri-ui/commit/46c8d051c9fb12a73a1f9963d8ce34e54b921dec))
|
|
1959
|
+
* **checkbox:** fix checkbox style ([ed19be7](https://github.com/matsuri-tech/matsuri-ui/commit/ed19be76d594b37239af23165440d11e1b915385))
|
|
1960
|
+
* **checkbox:** fix checkmark style ([87c63a8](https://github.com/matsuri-tech/matsuri-ui/commit/87c63a8e594bb795ca27020800ebd36f7d7c6efe))
|
|
1961
|
+
* **checkbox:** make label wrapable ([c982fed](https://github.com/matsuri-tech/matsuri-ui/commit/c982fedf9f1838937874ace25f0b9982521a9957))
|
|
1962
|
+
* **compnents:** fix imports ([85b9214](https://github.com/matsuri-tech/matsuri-ui/commit/85b921493aa547b362c5698d95b57c56637b1c64))
|
|
1963
|
+
* **components/button:** improve small Button style ([#79](https://github.com/matsuri-tech/matsuri-ui/issues/79)) ([5844124](https://github.com/matsuri-tech/matsuri-ui/commit/584412476befeccb04428dc7dba49062ffd47ed9))
|
|
1964
|
+
* **components/overlay:** fix circular dependency ([18ad742](https://github.com/matsuri-tech/matsuri-ui/commit/18ad7427cb64704c13a3499597d766837942f963))
|
|
1965
|
+
* **components/paper:** make overflow hidden ([#78](https://github.com/matsuri-tech/matsuri-ui/issues/78)) ([f87d702](https://github.com/matsuri-tech/matsuri-ui/commit/f87d702f9b93e9ffa8f6cec1c4917747c65e4b90))
|
|
1966
|
+
* **input:** fix input style ([e1341e0](https://github.com/matsuri-tech/matsuri-ui/commit/e1341e0390af7e20fb3b962bd3a803db27e00ba1))
|
|
1967
|
+
* **step:** fix misalignment ([#71](https://github.com/matsuri-tech/matsuri-ui/issues/71)) ([0669612](https://github.com/matsuri-tech/matsuri-ui/commit/066961214e834b749137641860c0e6890b5417c0))
|
|
1968
|
+
* **tabs:** remove box-shadows ([33b5292](https://github.com/matsuri-tech/matsuri-ui/commit/33b5292c7be314e041b8582454eb2e4ca100e98e))
|
|
1969
|
+
* **types:** fix AsComponentProps ([f86f61b](https://github.com/matsuri-tech/matsuri-ui/commit/f86f61b02b1dbc0984fcf7adc4f69b6acb267ba7))
|
|
1970
|
+
* **typography:** fix default color to textPrimary ([#119](https://github.com/matsuri-tech/matsuri-ui/issues/119)) ([462b055](https://github.com/matsuri-tech/matsuri-ui/commit/462b055cbfcfcf21963bef31ba4de7be22243c7e))
|
|
1971
|
+
|
|
1972
|
+
|
|
1973
|
+
### Features
|
|
1974
|
+
|
|
1975
|
+
* add CalendarUI ([#3](https://github.com/matsuri-tech/matsuri-ui/issues/3)) ([45e7f92](https://github.com/matsuri-tech/matsuri-ui/commit/45e7f9261714c8a8e6b5deb3419f67456fa4427e)), closes [#12](https://github.com/matsuri-tech/matsuri-ui/issues/12)
|
|
1976
|
+
* add DateField ([#1](https://github.com/matsuri-tech/matsuri-ui/issues/1)) ([fc57c55](https://github.com/matsuri-tech/matsuri-ui/commit/fc57c552b46f1285fa912ea1a1aba5ce0903624b)), closes [#13](https://github.com/matsuri-tech/matsuri-ui/issues/13)
|
|
1977
|
+
* add Flex Component ([#159](https://github.com/matsuri-tech/matsuri-ui/issues/159)) ([ef6c92f](https://github.com/matsuri-tech/matsuri-ui/commit/ef6c92f7f96c5d6e01afcf82290499c31f66938c))
|
|
1978
|
+
* add ImageField ([#21](https://github.com/matsuri-tech/matsuri-ui/issues/21)) ([217f970](https://github.com/matsuri-tech/matsuri-ui/commit/217f97019523eff18a53527cbdf39ff7d18f9de1))
|
|
1979
|
+
* add NumberField ([#129](https://github.com/matsuri-tech/matsuri-ui/issues/129)) ([04b10c1](https://github.com/matsuri-tech/matsuri-ui/commit/04b10c10eb819def94837840a18d6a04e828a668))
|
|
1980
|
+
* add NumberFormatOptions interface ([#187](https://github.com/matsuri-tech/matsuri-ui/issues/187)) ([4b250fb](https://github.com/matsuri-tech/matsuri-ui/commit/4b250fb3b532e16d4a39b3e43a40dbd0d69bb990))
|
|
1981
|
+
* add RadioGroup ([#73](https://github.com/matsuri-tech/matsuri-ui/issues/73)) ([18f8118](https://github.com/matsuri-tech/matsuri-ui/commit/18f81181edebf91080080b3234aeab1cf66cb2f5))
|
|
1982
|
+
* add Select, Option, OptionGroup, useOptions, SelectContext ([#166](https://github.com/matsuri-tech/matsuri-ui/issues/166)) ([1e9a008](https://github.com/matsuri-tech/matsuri-ui/commit/1e9a0084ad47f496b5e3919ea29b41d1794b4ee2))
|
|
1983
|
+
* add TextField.multiline ([#238](https://github.com/matsuri-tech/matsuri-ui/issues/238)) ([3cb3d7e](https://github.com/matsuri-tech/matsuri-ui/commit/3cb3d7e72c13e1faf365483686376f68b53fcd5d))
|
|
1984
|
+
* add ThemeProvider ([#109](https://github.com/matsuri-tech/matsuri-ui/issues/109)) ([b768339](https://github.com/matsuri-tech/matsuri-ui/commit/b768339cf94809e8961f59638ad631700ca04f72))
|
|
1985
|
+
* add Timeline prototype version ([#180](https://github.com/matsuri-tech/matsuri-ui/issues/180)) ([a20baef](https://github.com/matsuri-tech/matsuri-ui/commit/a20baef44931d1610586c14ce7590ef85719abe4))
|
|
1986
|
+
* add Typography’ s Headline1, Headline2, Headlin3, Headline4, Body, Caption ([#162](https://github.com/matsuri-tech/matsuri-ui/issues/162)) ([f5463a0](https://github.com/matsuri-tech/matsuri-ui/commit/f5463a066ea53b1760c717e08e8d607f0d4c7208))
|
|
1987
|
+
* make NumberField allow change from parent ([#186](https://github.com/matsuri-tech/matsuri-ui/issues/186)) ([7d0681e](https://github.com/matsuri-tech/matsuri-ui/commit/7d0681efdd4aad5933dc7c33ee6292d9e2bd8bea))
|
|
1988
|
+
* remove Flex.wrap ([#206](https://github.com/matsuri-tech/matsuri-ui/issues/206)) ([a00c731](https://github.com/matsuri-tech/matsuri-ui/commit/a00c7313c9d69d4b9842a1913248c0d3b4a5caae))
|
|
1989
|
+
* remove reset styles from style.css ([#171](https://github.com/matsuri-tech/matsuri-ui/issues/171)) ([b965f6c](https://github.com/matsuri-tech/matsuri-ui/commit/b965f6c62170d699d67a336dda3121349cbeb255)), closes [#152](https://github.com/matsuri-tech/matsuri-ui/issues/152)
|
|
1990
|
+
* update Button ([#47](https://github.com/matsuri-tech/matsuri-ui/issues/47)) ([1604042](https://github.com/matsuri-tech/matsuri-ui/commit/160404281f794bd9515d4e690eb0e91571a77696)), closes [#31](https://github.com/matsuri-tech/matsuri-ui/issues/31) [#32](https://github.com/matsuri-tech/matsuri-ui/issues/32)
|
|
1991
|
+
* update ImageField ([#48](https://github.com/matsuri-tech/matsuri-ui/issues/48)) ([adeff91](https://github.com/matsuri-tech/matsuri-ui/commit/adeff91e8ab57d9f45cced1b746766182e988789))
|
|
1992
|
+
* **button:** add support of props.as ([#145](https://github.com/matsuri-tech/matsuri-ui/issues/145)) ([1a55ca2](https://github.com/matsuri-tech/matsuri-ui/commit/1a55ca227ef81f8ff4fd649af194011cbb1fc36f))
|
|
1993
|
+
* **buttons:** add hover animations ([#111](https://github.com/matsuri-tech/matsuri-ui/issues/111)) ([05b3d4e](https://github.com/matsuri-tech/matsuri-ui/commit/05b3d4e900ea48e5be63e03da803fb69903a22a1))
|
|
1994
|
+
* **buttons:** update click animations ([#112](https://github.com/matsuri-tech/matsuri-ui/issues/112)) ([0fd649c](https://github.com/matsuri-tech/matsuri-ui/commit/0fd649cbbf95b144460995e17422e6f520ed1ed8))
|
|
1995
|
+
* **calendarui:** add dates & daysProps to props ([#84](https://github.com/matsuri-tech/matsuri-ui/issues/84)) ([039c515](https://github.com/matsuri-tech/matsuri-ui/commit/039c51567b3992a91a54f1a5194336c4146d27f9))
|
|
1996
|
+
* **checkbox:** change root to span instead of label if children noexist ([#150](https://github.com/matsuri-tech/matsuri-ui/issues/150)) ([4e7e4e7](https://github.com/matsuri-tech/matsuri-ui/commit/4e7e4e77342ecb659c0022f5607d624edfe5a87e))
|
|
1997
|
+
* **component:** add NightScreen ([#50](https://github.com/matsuri-tech/matsuri-ui/issues/50)) ([e8d1cf6](https://github.com/matsuri-tech/matsuri-ui/commit/e8d1cf6d31e2ff0538084e24964adf9ee461d6b1))
|
|
1998
|
+
* **components:** add CardMedia ([#118](https://github.com/matsuri-tech/matsuri-ui/issues/118)) ([6d2e195](https://github.com/matsuri-tech/matsuri-ui/commit/6d2e1956268074b735de3a1b07c5115f87640785))
|
|
1999
|
+
* **components:** add Checkbox and CheckboxGroup ([#72](https://github.com/matsuri-tech/matsuri-ui/issues/72)) ([f8e21d6](https://github.com/matsuri-tech/matsuri-ui/commit/f8e21d6cbc0ff77d266a9e07adc987ee0c83045f))
|
|
2000
|
+
* **components:** add Chip ([#117](https://github.com/matsuri-tech/matsuri-ui/issues/117)) ([5fff1e5](https://github.com/matsuri-tech/matsuri-ui/commit/5fff1e5b70fb1b781605a267189ad193a00ff654))
|
|
2001
|
+
* **components:** add DropArea and SortArea ([#147](https://github.com/matsuri-tech/matsuri-ui/issues/147)) ([8a62c99](https://github.com/matsuri-tech/matsuri-ui/commit/8a62c991a5b2bbd5df82590867a772890a80d64a))
|
|
2002
|
+
* **components:** add Overlay ([#139](https://github.com/matsuri-tech/matsuri-ui/issues/139)) ([5cb8e41](https://github.com/matsuri-tech/matsuri-ui/commit/5cb8e418835360354ab1ba0c8bdcc1d269a84ca1))
|
|
2003
|
+
* **components:** add Panel ([#115](https://github.com/matsuri-tech/matsuri-ui/issues/115)) ([250a375](https://github.com/matsuri-tech/matsuri-ui/commit/250a375d6ded62e9467fab640ba1caeba31ef66d))
|
|
2004
|
+
* **components:** add ProgressBar ([#116](https://github.com/matsuri-tech/matsuri-ui/issues/116)) ([fa5ca15](https://github.com/matsuri-tech/matsuri-ui/commit/fa5ca153ae26f7d0745f697b490f51149e45faa4))
|
|
2005
|
+
* **components/flexbox:** update ([1450eae](https://github.com/matsuri-tech/matsuri-ui/commit/1450eae0d466aba9aa3f63c5d1a34d590bc489f6))
|
|
2006
|
+
* **components/tabs:** add Tab components ([#149](https://github.com/matsuri-tech/matsuri-ui/issues/149)) ([00cd5c3](https://github.com/matsuri-tech/matsuri-ui/commit/00cd5c3907c9aaf3d7106825a94d01caf5dd7b37))
|
|
2007
|
+
* **hooks:** change overser hooks return value to entry ([#161](https://github.com/matsuri-tech/matsuri-ui/issues/161)) ([b7cead2](https://github.com/matsuri-tech/matsuri-ui/commit/b7cead21fd7557905d55b993ceb4a8a9030a5244))
|
|
2008
|
+
* **interals/palette:** add Palette component ([#113](https://github.com/matsuri-tech/matsuri-ui/issues/113)) ([7cdf5f2](https://github.com/matsuri-tech/matsuri-ui/commit/7cdf5f2a4ee316ea73accb437067ff5eac87b232))
|
|
2009
|
+
* **overlay:** improve overlay styles ([8a5da72](https://github.com/matsuri-tech/matsuri-ui/commit/8a5da727ec872e7e9de5df3f930672c768aa84b5))
|
|
2010
|
+
* **panel:** not wrap children in span If children !== string ([#151](https://github.com/matsuri-tech/matsuri-ui/issues/151)) ([1c6a138](https://github.com/matsuri-tech/matsuri-ui/commit/1c6a1387c69c9d82055feb06bb1ccf959395422b))
|
|
2011
|
+
* **tabs:** improve design ([#152](https://github.com/matsuri-tech/matsuri-ui/issues/152)) ([4455ccd](https://github.com/matsuri-tech/matsuri-ui/commit/4455ccd0014ffe7be8288cd565668be6ccacf928))
|
|
2012
|
+
|
|
2013
|
+
|
|
2014
|
+
### BREAKING CHANGES
|
|
2015
|
+
|
|
2016
|
+
* remove Flex.wrap (use Flex.nowrap instead)
|
|
2017
|
+
|
|
2018
|
+
|
|
2019
|
+
|
|
2020
|
+
## [4.6.8](https://github.com/matsuritech/matsuri-ui/compare/v4.6.6...v4.6.8) (2019-08-13)
|
|
2021
|
+
|
|
2022
|
+
|
|
2023
|
+
### Features
|
|
2024
|
+
|
|
2025
|
+
* add TextField.multiline ([#238](https://github.com/matsuritech/matsuri-ui/issues/238)) ([3cb3d7e](https://github.com/matsuritech/matsuri-ui/commit/3cb3d7e))
|
|
2026
|
+
|
|
2027
|
+
|
|
2028
|
+
## [4.6.6](https://github.com/matsuritech/matsuri-ui/compare/v4.2.1...v4.6.6) (2019-08-12)
|
|
2029
|
+
|
|
2030
|
+
|
|
2031
|
+
### Bug Fixes
|
|
2032
|
+
|
|
2033
|
+
* change palette.gray.text to dark ([14f0265](https://github.com/matsuritech/matsuri-ui/commit/14f0265))
|
|
2034
|
+
|
|
2035
|
+
## [4.6.5](https://github.com/matsuritech/matsuri-ui/compare/v4.2.1...v4.6.5) (2019-08-12)
|
|
2036
|
+
|
|
2037
|
+
|
|
2038
|
+
### Bug Fixes
|
|
2039
|
+
|
|
2040
|
+
* fix minor style issues of TextField ([#236](https://github.com/matsuritech/matsuri-ui/issues/236)) ([16761b9](https://github.com/matsuritech/matsuri-ui/commit/16761b9))
|
|
2041
|
+
|
|
2042
|
+
### Features
|
|
2043
|
+
|
|
2044
|
+
* remove Flex.wrap ([#206](https://github.com/matsuritech/matsuri-ui/issues/206)) ([a00c731](https://github.com/matsuritech/matsuri-ui/commit/a00c731))
|
|
2045
|
+
|
|
2046
|
+
### BREAKING CHANGES
|
|
2047
|
+
|
|
2048
|
+
* remove Flex.wrap (use Flex.nowrap instead)
|
|
2049
|
+
|
|
2050
|
+
|
|
2051
|
+
|
|
2052
|
+
## [4.6.4](https://github.com/matsuritech/matsuri-ui/compare/v4.5.4...v4.6.4) (2019-07-08)
|
|
2053
|
+
|
|
2054
|
+
|
|
2055
|
+
### Features
|
|
2056
|
+
|
|
2057
|
+
* add NumberField ([#129](https://github.com/matsuritech/matsuri-ui/issues/129)) ([04b10c1](https://github.com/matsuritech/matsuri-ui/commit/04b10c1))
|
|
2058
|
+
* make NumberField allow change from parent ([#186](https://github.com/matsuritech/matsuri-ui/issues/186)) ([7d0681e](https://github.com/matsuritech/matsuri-ui/commit/7d0681e))
|
|
2059
|
+
* add useMouseLongPress hook
|
|
2060
|
+
* add props.nowrap to Flex Component
|
|
2061
|
+
|
|
2062
|
+
## [4.5.4](https://github.com/matsuritech/matsuri-ui/compare/v4.5.3...v4.5.4) (2019-07-03)
|
|
2063
|
+
|
|
2064
|
+
|
|
2065
|
+
### Bug Fixes
|
|
2066
|
+
|
|
2067
|
+
* fix Select bug ([#178](https://github.com/matsuritech/matsuri-ui/issues/178)) ([73e4cb6](https://github.com/matsuritech/matsuri-ui/commit/73e4cb6)), closes [#177](https://github.com/matsuritech/matsuri-ui/issues/177)
|
|
2068
|
+
|
|
2069
|
+
|
|
2070
|
+
|
|
2071
|
+
## [4.5.3](https://github.com/matsuritech/matsuri-ui/compare/v4.4.3...v4.5.3) (2019-07-03)
|
|
2072
|
+
|
|
2073
|
+
|
|
2074
|
+
### Features
|
|
2075
|
+
|
|
2076
|
+
* add Flex ([#159](https://github.com/matsuritech/matsuri-ui/issues/159)) ([ef6c92f](https://github.com/matsuritech/matsuri-ui/commit/ef6c92f))
|
|
2077
|
+
|
|
2078
|
+
|
|
2079
|
+
## [4.4.3](https://github.com/matsuritech/matsuri-ui/compare/v4.4.2...v4.4.3) (2019-07-01)
|
|
2080
|
+
|
|
2081
|
+
|
|
2082
|
+
### Features
|
|
2083
|
+
|
|
2084
|
+
* remove reset styles from style.css ([#171](https://github.com/matsuritech/matsuri-ui/issues/171)) ([b965f6c](https://github.com/matsuritech/matsuri-ui/commit/b965f6c)), closes [#152](https://github.com/matsuritech/matsuri-ui/issues/152)
|
|
2085
|
+
|
|
2086
|
+
|
|
2087
|
+
### BREAKING CHANGES
|
|
2088
|
+
|
|
2089
|
+
* remove reset styles from styled.css (Use Ress.css, CSS Remedy, ... instead)
|
|
2090
|
+
|
|
2091
|
+
## [4.4.2](https://github.com/matsuritech/matsuri-ui/compare/v4.3.2...v4.4.2) (2019-07-01)
|
|
2092
|
+
|
|
2093
|
+
|
|
2094
|
+
### Features
|
|
2095
|
+
|
|
2096
|
+
* add Select, Option, OptionGroup, useOptions, SelectContext ([#166](https://github.com/matsuritech/matsuri-ui/issues/166)) ([1e9a008](https://github.com/matsuritech/matsuri-ui/commit/1e9a008))
|
|
2097
|
+
|
|
2098
|
+
|
|
2099
|
+
## [4.3.2](https://github.com/matsuritech/matsuri-ui/compare/v4.2.1...v4.3.2) (2019-06-29)
|
|
2100
|
+
|
|
2101
|
+
|
|
2102
|
+
### Features
|
|
2103
|
+
|
|
2104
|
+
* add Typography’ s Headline1, Headline2, Headlin3, Headline4, Body, Caption ([#162](https://github.com/matsuritech/matsuri-ui/issues/162)) ([f5463a0](https://github.com/matsuritech/matsuri-ui/commit/f5463a0))
|
|
2105
|
+
* **hooks:** change useIntersectionObserver, useResizeObserver, useMutationObserver return-value to Entry ([#161](https://github.com/matsuritech/matsuri-ui/issues/161)) ([b7cead2](https://github.com/matsuritech/matsuri-ui/commit/b7cead2))
|
|
2106
|
+
|
|
2107
|
+
|
|
2108
|
+
|
|
2109
|
+
## [4.2.1](https://github.com/matsuritech/matsuri-ui/compare/v4.2.0...v4.2.1) (2019-06-27)
|
|
2110
|
+
|
|
2111
|
+
|
|
2112
|
+
### Bug Fixes
|
|
2113
|
+
|
|
2114
|
+
* improve some behavior ([#158](https://github.com/matsuritech/matsuri-ui/issues/158)) ([6b64987](https://github.com/matsuritech/matsuri-ui/commit/6b64987))
|
|
2115
|
+
|
|
2116
|
+
|
|
2117
|
+
|
|
2118
|
+
# [4.2.0](https://github.com/matsuritech/matsuri-ui/compare/v4.0.0...v4.2.0) (2019-06-26)
|
|
2119
|
+
|
|
2120
|
+
|
|
2121
|
+
### Bug Fixes
|
|
2122
|
+
|
|
2123
|
+
* **components:** fix circular dependency ([6a42a02](https://github.com/matsuritech/matsuri-ui/commit/6a42a02))
|
|
2124
|
+
* **icon:** adjust position ([#151](https://github.com/matsuritech/matsuri-ui/issues/151)) ([c8d5eed](https://github.com/matsuritech/matsuri-ui/commit/c8d5eed))
|
|
2125
|
+
* **icons:** improved the appearance as text ([#149](https://github.com/matsuritech/matsuri-ui/issues/149)) ([2402fdf](https://github.com/matsuritech/matsuri-ui/commit/2402fdf))
|
|
2126
|
+
|
|
2127
|
+
|
|
2128
|
+
### Features
|
|
2129
|
+
|
|
2130
|
+
* **button:** simplify <Button/>, add <Circle/> <Square/> ([#136](https://github.com/matsuritech/matsuri-ui/issues/136)) ([410824f](https://github.com/matsuritech/matsuri-ui/commit/410824f))
|
|
2131
|
+
* **hooks:** add useIntersectionObserver, useMutationObserver ([#137](https://github.com/matsuritech/matsuri-ui/issues/137)) ([cdd4acc](https://github.com/matsuritech/matsuri-ui/commit/cdd4acc))
|
|
2132
|
+
* **hooks:** include hooks in this library ([#133](https://github.com/matsuritech/matsuri-ui/issues/133)) ([8c4af05](https://github.com/matsuritech/matsuri-ui/commit/8c4af05))
|
|
2133
|
+
* **icon:** update icons, add <Icon.QuestionCircle/> ([#134](https://github.com/matsuritech/matsuri-ui/issues/134)) ([445f8c5](https://github.com/matsuritech/matsuri-ui/commit/445f8c5))
|
|
2134
|
+
* **paper:** add paper component ([#142](https://github.com/matsuritech/matsuri-ui/issues/142)) ([90f8839](https://github.com/matsuritech/matsuri-ui/commit/90f8839))
|
|
2135
|
+
* **popper:** add <Popper/> ([#146](https://github.com/matsuritech/matsuri-ui/issues/146)) ([543c0df](https://github.com/matsuritech/matsuri-ui/commit/543c0df)), closes [#145](https://github.com/matsuritech/matsuri-ui/issues/145)
|
|
2136
|
+
|
|
2137
|
+
|
|
2138
|
+
### BREAKING CHANGES
|
|
2139
|
+
|
|
2140
|
+
* **popper:** Remove Tooltip (Use Popper instead)
|
|
2141
|
+
|
|
2142
|
+
|
|
2143
|
+
|
|
2144
|
+
# [4.1.0](https://github.com/matsuritech/matsuri-ui/compare/v4.0.0...v4.1.0) (2019-06-22)
|
|
2145
|
+
|
|
2146
|
+
### Features
|
|
2147
|
+
|
|
2148
|
+
* **button:** simplify <Button/>, add <Circle/> <Square/> ([#136](https://github.com/matsuritech/matsuri-ui/issues/136)) ([410824f](https://github.com/matsuritech/matsuri-ui/commit/410824f))
|
|
2149
|
+
* **hooks:** include hooks in this library ([#133](https://github.com/matsuritech/matsuri-ui/issues/133)) ([8c4af05](https://github.com/matsuritech/matsuri-ui/commit/8c4af05))
|
|
2150
|
+
* **icon:** update icons, add <Icon.QuestionCircle/> ([#134](https://github.com/matsuritech/matsuri-ui/issues/134)) ([445f8c5](https://github.com/matsuritech/matsuri-ui/commit/445f8c5))
|
|
2151
|
+
|
|
2152
|
+
|
|
2153
|
+
# [4.0.0](https://github.com/matsuritech/matsuri-ui/compare/v2.0.0...v4.0.0) (2019-06-11)
|
|
2154
|
+
|
|
2155
|
+
|
|
2156
|
+
### Bug Fixes
|
|
2157
|
+
|
|
2158
|
+
* **CalendarCell:** Fix typo ([7bd0bf3](https://github.com/matsuritech/matsuri-ui/commit/7bd0bf3))
|
|
2159
|
+
* **CalendarUI:** Fix conflicting re-exports ([b234f32](https://github.com/matsuritech/matsuri-ui/commit/b234f32))
|
|
2160
|
+
* **css:** Fix font-family ([23c0b72](https://github.com/matsuritech/matsuri-ui/commit/23c0b72))
|
|
2161
|
+
* **useValidation:** Add reset of secCustomValidity ([bd936fc](https://github.com/matsuritech/matsuri-ui/commit/bd936fc))
|
|
2162
|
+
* **ZipCodeField:** Fix `this` has been rewritten to `undefined` on buiild ([23ad653](https://github.com/matsuritech/matsuri-ui/commit/23ad653)), closes [#109](https://github.com/matsuritech/matsuri-ui/issues/109)
|
|
2163
|
+
|
|
2164
|
+
|
|
2165
|
+
### Features
|
|
2166
|
+
|
|
2167
|
+
* **Box:** Remove ([764193e](https://github.com/matsuritech/matsuri-ui/commit/764193e))
|
|
2168
|
+
* **CalendarUI:** Update ([c0ab3fb](https://github.com/matsuritech/matsuri-ui/commit/c0ab3fb)), closes [#83](https://github.com/matsuritech/matsuri-ui/issues/83) [#13](https://github.com/matsuritech/matsuri-ui/issues/13) [#63](https://github.com/matsuritech/matsuri-ui/issues/63)
|
|
2169
|
+
* **css:** Add custom variables of typography ([7fe98f0](https://github.com/matsuritech/matsuri-ui/commit/7fe98f0))
|
|
2170
|
+
* **css:** Add style.css instead of reset.css ([d79def5](https://github.com/matsuritech/matsuri-ui/commit/d79def5))
|
|
2171
|
+
* **Flex:** Add instead of FlexConatiner, ... ([3d1eedf](https://github.com/matsuritech/matsuri-ui/commit/3d1eedf))
|
|
2172
|
+
* **halfWidthForm:** Rename convertZenkakuToHankaku ([af66636](https://github.com/matsuritech/matsuri-ui/commit/af66636))
|
|
2173
|
+
* **hooks:** Add useResizeObserver ([73a320a](https://github.com/matsuritech/matsuri-ui/commit/73a320a))
|
|
2174
|
+
* **Modal:** Update ([4725d31](https://github.com/matsuritech/matsuri-ui/commit/4725d31)), closes [#89](https://github.com/matsuritech/matsuri-ui/issues/89)
|
|
2175
|
+
* **TextField:** Add ([f3aa76d](https://github.com/matsuritech/matsuri-ui/commit/f3aa76d))
|
|
2176
|
+
* **typing:** Add Unpacked type ([cd69ca5](https://github.com/matsuritech/matsuri-ui/commit/cd69ca5))
|
|
2177
|
+
* **useKeyboard:** Return KeyboardEvent ([dc99abe](https://github.com/matsuritech/matsuri-ui/commit/dc99abe))
|
|
2178
|
+
* **utils/date:** Add now, return now UTC Date ([24d9956](https://github.com/matsuritech/matsuri-ui/commit/24d9956))
|
|
2179
|
+
* **utils/string:** Add camelToKebab ([f114d35](https://github.com/matsuritech/matsuri-ui/commit/f114d35))
|
|
2180
|
+
* **ZipCodeFIeld:** Add ([24af506](https://github.com/matsuritech/matsuri-ui/commit/24af506))
|
|
2181
|
+
|
|
2182
|
+
|
|
2183
|
+
### BREAKING CHANGES
|
|
2184
|
+
|
|
2185
|
+
* **ZipCodeFIeld:** Delete InputZipCode (Use ZipCodeField instead)
|
|
2186
|
+
* **halfWidthForm:** Use halfWidthForm instead of convertZenkakuToHankaku
|
|
2187
|
+
* **Modal:** Remove title, onOk, onCancel, visible, cancelText, closeText and okText of props
|
|
2188
|
+
(Use ModalHeader, ModalFootter, ModalContent and open instead)
|
|
2189
|
+
|
|
2190
|
+
* chore(stories): Update Modal
|
|
2191
|
+
|
|
2192
|
+
* feat(Layer): Add
|
|
2193
|
+
* **CalendarUI:** Delete Calendar (Use CalendarUI instead)
|
|
2194
|
+
* **Flex:** Remove FlexContainer, FlexColumn
|
|
2195
|
+
* **css:** Remove Typography Components
|
|
2196
|
+
|
|
2197
|
+
|
|
2198
|
+
|
|
2199
|
+
# [3.1.0](https://github.com/matsuritech/matsuri-ui/compare/v2.0.0...v3.1.0) (2019-05-26)
|
|
2200
|
+
|
|
2201
|
+
|
|
2202
|
+
### Bug Fixes
|
|
2203
|
+
|
|
2204
|
+
* **CalendarCell:** Fix typo ([7bd0bf3](https://github.com/matsuritech/matsuri-ui/commit/7bd0bf3))
|
|
2205
|
+
* **CalendarUI:** Fix conflicting re-exports ([b234f32](https://github.com/matsuritech/matsuri-ui/commit/b234f32))
|
|
2206
|
+
|
|
2207
|
+
|
|
2208
|
+
### Features
|
|
2209
|
+
|
|
2210
|
+
* **Box:** Remove ([764193e](https://github.com/matsuritech/matsuri-ui/commit/764193e))
|
|
2211
|
+
* **CalendarUI:** Update ([c0ab3fb](https://github.com/matsuritech/matsuri-ui/commit/c0ab3fb)), closes [#83](https://github.com/matsuritech/matsuri-ui/issues/83) [#13](https://github.com/matsuritech/matsuri-ui/issues/13) [#63](https://github.com/matsuritech/matsuri-ui/issues/63)
|
|
2212
|
+
* **css:** Add custom variables of typography ([7fe98f0](https://github.com/matsuritech/matsuri-ui/commit/7fe98f0))
|
|
2213
|
+
* **css:** Add style.css instead of reset.css ([d79def5](https://github.com/matsuritech/matsuri-ui/commit/d79def5))
|
|
2214
|
+
* **Flex:** Add instead of FlexConatiner, ... ([3d1eedf](https://github.com/matsuritech/matsuri-ui/commit/3d1eedf))
|
|
2215
|
+
* **hooks:** Add useResizeObserver ([73a320a](https://github.com/matsuritech/matsuri-ui/commit/73a320a))
|
|
2216
|
+
* **utils/date:** Add now, return now UTC Date ([24d9956](https://github.com/matsuritech/matsuri-ui/commit/24d9956))
|
|
2217
|
+
* **utils/string:** Add camelToKebab ([f114d35](https://github.com/matsuritech/matsuri-ui/commit/f114d35))
|
|
2218
|
+
|
|
2219
|
+
|
|
2220
|
+
### BREAKING CHANGES
|
|
2221
|
+
|
|
2222
|
+
* **CalendarUI:** Delete Calendar (Use CalendarUI instead)
|
|
2223
|
+
* **Flex:** Remove FlexContainer, FlexColumn (Use Flex instead)
|
|
2224
|
+
* **css:** Remove Typography Components (Use HTMLElement instead)
|
|
2225
|
+
|
|
2226
|
+
|
|
2227
|
+
# [3.0.0](https://github.com/matsuritech/matsuri-ui/compare/v2.0.0...v3.0.0) (2019-05-17)
|
|
2228
|
+
|
|
2229
|
+
|
|
2230
|
+
### Features
|
|
2231
|
+
|
|
2232
|
+
* **css:** Add style.css instead of reset.css ([d79def5](https://github.com/matsuritech/matsuri-ui/commit/d79def5))
|
|
2233
|
+
|
|
2234
|
+
|
|
2235
|
+
### BREAKING CHANGES
|
|
2236
|
+
|
|
2237
|
+
* **css:** Remove Typography Components
|
|
2238
|
+
|
|
2239
|
+
|
|
2240
|
+
|
|
2241
|
+
# 2.0.0 (2019-05-17)
|
|
2242
|
+
|
|
2243
|
+
|
|
2244
|
+
### Bug Fixes
|
|
2245
|
+
|
|
2246
|
+
* **Calendar/WeekdayGroup:** Rename ([a49da35](https://github.com/matsuritech/matsuri-ui/commit/a49da35))
|
|
2247
|
+
* **Step:** Correct the type ([819e187](https://github.com/matsuritech/matsuri-ui/commit/819e187))
|
|
2248
|
+
* **Step:** Fix code sample in storybook ([27280e0](https://github.com/matsuritech/matsuri-ui/commit/27280e0))
|
|
2249
|
+
* **Step:** Fix Step animation ([034019f](https://github.com/matsuritech/matsuri-ui/commit/034019f))
|
|
2250
|
+
* **Step:** Include Step in components ([a4a7ca5](https://github.com/matsuritech/matsuri-ui/commit/a4a7ca5))
|
|
2251
|
+
* **tooltip:** fix type of placement ([747034e](https://github.com/matsuritech/matsuri-ui/commit/747034e))
|
|
2252
|
+
* Change typescript ver. for storybook build ([96da83d](https://github.com/matsuritech/matsuri-ui/commit/96da83d))
|
|
2253
|
+
* Fix build-storybook command ([c21cbe9](https://github.com/matsuritech/matsuri-ui/commit/c21cbe9))
|
|
2254
|
+
* Fix dependencies ([7c0042e](https://github.com/matsuritech/matsuri-ui/commit/7c0042e))
|
|
2255
|
+
* Fix for new theme config ([832593c](https://github.com/matsuritech/matsuri-ui/commit/832593c))
|
|
2256
|
+
* Fix link syntax ([316961c](https://github.com/matsuritech/matsuri-ui/commit/316961c))
|
|
2257
|
+
* Fix mergeDeep ([0e602b0](https://github.com/matsuritech/matsuri-ui/commit/0e602b0))
|
|
2258
|
+
* Fix name & repository ([c04e96a](https://github.com/matsuritech/matsuri-ui/commit/c04e96a))
|
|
2259
|
+
* Fix onclicked animation ([1d91f14](https://github.com/matsuritech/matsuri-ui/commit/1d91f14))
|
|
2260
|
+
* Fix some components' design ([f8d71ab](https://github.com/matsuritech/matsuri-ui/commit/f8d71ab))
|
|
2261
|
+
* Fix style of CalendarCell ([1b09a57](https://github.com/matsuritech/matsuri-ui/commit/1b09a57))
|
|
2262
|
+
* Fix type ([38e2405](https://github.com/matsuritech/matsuri-ui/commit/38e2405))
|
|
2263
|
+
* Fix typings ([4e70b0c](https://github.com/matsuritech/matsuri-ui/commit/4e70b0c))
|
|
2264
|
+
* Fix unresolved dependencies ([918d1c8](https://github.com/matsuritech/matsuri-ui/commit/918d1c8))
|
|
2265
|
+
* Make Icon accept miscellaneous props ([c106df2](https://github.com/matsuritech/matsuri-ui/commit/c106df2))
|
|
2266
|
+
* Remove circular dependenciy ([bd28e3e](https://github.com/matsuritech/matsuri-ui/commit/bd28e3e))
|
|
2267
|
+
* Remove old files ([6ab4030](https://github.com/matsuritech/matsuri-ui/commit/6ab4030))
|
|
2268
|
+
* Remove typo ([4b75908](https://github.com/matsuritech/matsuri-ui/commit/4b75908))
|
|
2269
|
+
* Replace async arrow func with async func ([3326e75](https://github.com/matsuritech/matsuri-ui/commit/3326e75))
|
|
2270
|
+
* Replace Button type props with pattern props ([c1c42f4](https://github.com/matsuritech/matsuri-ui/commit/c1c42f4))
|
|
2271
|
+
* Replace Component.d.ts with Component.type.ts ([ee58294](https://github.com/matsuritech/matsuri-ui/commit/ee58294))
|
|
2272
|
+
* Update lint scripts for fast linting ([c8a36e6](https://github.com/matsuritech/matsuri-ui/commit/c8a36e6))
|
|
2273
|
+
|
|
2274
|
+
|
|
2275
|
+
### Features
|
|
2276
|
+
|
|
2277
|
+
* Put out components/* in src/ ([c1abf40](https://github.com/matsuritech/matsuri-ui/commit/c1abf40)), closes [#52](https://github.com/matsuritech/matsuri-ui/issues/52)
|
|
2278
|
+
* **Calendar:** Update ([d5ac4fb](https://github.com/matsuritech/matsuri-ui/commit/d5ac4fb)), closes [#14](https://github.com/matsuritech/matsuri-ui/issues/14)
|
|
2279
|
+
* **Calendar:** Update ([1d88087](https://github.com/matsuritech/matsuri-ui/commit/1d88087))
|
|
2280
|
+
* **Components:** Use defaultTheme ([#70](https://github.com/matsuritech/matsuri-ui/issues/70)) ([162347d](https://github.com/matsuritech/matsuri-ui/commit/162347d))
|
|
2281
|
+
* **Modal:** Update Modal ([0f9c215](https://github.com/matsuritech/matsuri-ui/commit/0f9c215)), closes [#3](https://github.com/matsuritech/matsuri-ui/issues/3)
|
|
2282
|
+
* **Step:** Add ([f0fbdd0](https://github.com/matsuritech/matsuri-ui/commit/f0fbdd0))
|
|
2283
|
+
* **Step:** Propagate current from StepGroup ([1969b93](https://github.com/matsuritech/matsuri-ui/commit/1969b93))
|
|
2284
|
+
* **Step:** Update design ([6715483](https://github.com/matsuritech/matsuri-ui/commit/6715483))
|
|
2285
|
+
* **Typography:** Update ([02dcd1e](https://github.com/matsuritech/matsuri-ui/commit/02dcd1e))
|
|
2286
|
+
* Add .editorconfig ([101726d](https://github.com/matsuritech/matsuri-ui/commit/101726d))
|
|
2287
|
+
* Add arithmetricSequence to array utils ([9d11fa0](https://github.com/matsuritech/matsuri-ui/commit/9d11fa0))
|
|
2288
|
+
* Add Avator Icon, closes [#21](https://github.com/matsuritech/matsuri-ui/issues/21) ([c606cd6](https://github.com/matsuritech/matsuri-ui/commit/c606cd6))
|
|
2289
|
+
* Add Calendar, closes [#14](https://github.com/matsuritech/matsuri-ui/issues/14) ([4d875c9](https://github.com/matsuritech/matsuri-ui/commit/4d875c9))
|
|
2290
|
+
* Add Code component for storybook ([99bf120](https://github.com/matsuritech/matsuri-ui/commit/99bf120))
|
|
2291
|
+
* Add createTheme ([59eafae](https://github.com/matsuritech/matsuri-ui/commit/59eafae))
|
|
2292
|
+
* Add eslint rules, format some files ([9d63f36](https://github.com/matsuritech/matsuri-ui/commit/9d63f36))
|
|
2293
|
+
* Add gary dark color to defaultTheme ([10fe171](https://github.com/matsuritech/matsuri-ui/commit/10fe171))
|
|
2294
|
+
* Add Icon, close [#5](https://github.com/matsuritech/matsuri-ui/issues/5) ([9bd8bc8](https://github.com/matsuritech/matsuri-ui/commit/9bd8bc8))
|
|
2295
|
+
* Add Icons ([81de985](https://github.com/matsuritech/matsuri-ui/commit/81de985))
|
|
2296
|
+
* Add InputZipCode component ([8dd2a22](https://github.com/matsuritech/matsuri-ui/commit/8dd2a22))
|
|
2297
|
+
* Add mergeDeep to utility ([0c0ae8b](https://github.com/matsuritech/matsuri-ui/commit/0c0ae8b))
|
|
2298
|
+
* Add nowrap to FlexContainer'props ([53b2f5f](https://github.com/matsuritech/matsuri-ui/commit/53b2f5f))
|
|
2299
|
+
* Add reset.css and support in storybook ([2d01a1f](https://github.com/matsuritech/matsuri-ui/commit/2d01a1f))
|
|
2300
|
+
* Add Small, close [#6](https://github.com/matsuritech/matsuri-ui/issues/6) ([491a5dd](https://github.com/matsuritech/matsuri-ui/commit/491a5dd))
|
|
2301
|
+
* Add snippets of dummy text ([ad52ff9](https://github.com/matsuritech/matsuri-ui/commit/ad52ff9))
|
|
2302
|
+
* Add some colors to defaultTheme ([c097e7a](https://github.com/matsuritech/matsuri-ui/commit/c097e7a))
|
|
2303
|
+
* Add styles for typography ([fe246bc](https://github.com/matsuritech/matsuri-ui/commit/fe246bc))
|
|
2304
|
+
* Add support for exporting interface ([8babd10](https://github.com/matsuritech/matsuri-ui/commit/8babd10))
|
|
2305
|
+
* Add support of icon to Button, closes [#8](https://github.com/matsuritech/matsuri-ui/issues/8) ([8e0610a](https://github.com/matsuritech/matsuri-ui/commit/8e0610a))
|
|
2306
|
+
* Add support of multi props ([b87e919](https://github.com/matsuritech/matsuri-ui/commit/b87e919))
|
|
2307
|
+
* Add support of some props ([05b8b38](https://github.com/matsuritech/matsuri-ui/commit/05b8b38))
|
|
2308
|
+
* Add Tooltip, closes [#22](https://github.com/matsuritech/matsuri-ui/issues/22) ([b482bcc](https://github.com/matsuritech/matsuri-ui/commit/b482bcc))
|
|
2309
|
+
* Add Typography comoponents ([75fdf97](https://github.com/matsuritech/matsuri-ui/commit/75fdf97))
|
|
2310
|
+
* Add Typography's Headline2, Headline3 ([fa80ecb](https://github.com/matsuritech/matsuri-ui/commit/fa80ecb))
|
|
2311
|
+
* Add with typography to Icon story ([cd60733](https://github.com/matsuritech/matsuri-ui/commit/cd60733))
|
|
2312
|
+
* Cache linting ([8e175c9](https://github.com/matsuritech/matsuri-ui/commit/8e175c9))
|
|
2313
|
+
* Change Avatar's shape to be easy to use ([1ed602d](https://github.com/matsuritech/matsuri-ui/commit/1ed602d))
|
|
2314
|
+
* Change error color ([20f800e](https://github.com/matsuritech/matsuri-ui/commit/20f800e))
|
|
2315
|
+
* Change props to allow string type ([d444920](https://github.com/matsuritech/matsuri-ui/commit/d444920))
|
|
2316
|
+
* Enhanced release script ([b831a58](https://github.com/matsuritech/matsuri-ui/commit/b831a58))
|
|
2317
|
+
* Fit Icon size to font-size, closes [#9](https://github.com/matsuritech/matsuri-ui/issues/9) ([14cdefa](https://github.com/matsuritech/matsuri-ui/commit/14cdefa))
|
|
2318
|
+
* Make data utils divide into each method ([846566d](https://github.com/matsuritech/matsuri-ui/commit/846566d))
|
|
2319
|
+
* Remove react-icons, closes [#10](https://github.com/matsuritech/matsuri-ui/issues/10) ([a1fe138](https://github.com/matsuritech/matsuri-ui/commit/a1fe138))
|
|
2320
|
+
* Replace Code with @hrdtbs/react-code ([4a4d73b](https://github.com/matsuritech/matsuri-ui/commit/4a4d73b))
|
|
2321
|
+
* Update Calendar story ([ff8bbb8](https://github.com/matsuritech/matsuri-ui/commit/ff8bbb8))
|
|
2322
|
+
* Update dependencies ([5b8935b](https://github.com/matsuritech/matsuri-ui/commit/5b8935b))
|
|
2323
|
+
* Update InputNumber to reset value, closes [#16](https://github.com/matsuritech/matsuri-ui/issues/16) ([da802ea](https://github.com/matsuritech/matsuri-ui/commit/da802ea))
|
|
2324
|
+
* Update packages ([dc975cc](https://github.com/matsuritech/matsuri-ui/commit/dc975cc))
|
|
2325
|
+
* Upgrade dependencies ([9674d1c](https://github.com/matsuritech/matsuri-ui/commit/9674d1c))
|
|
2326
|
+
|
|
2327
|
+
|
|
2328
|
+
### BREAKING CHANGES
|
|
2329
|
+
|
|
2330
|
+
* Use `import "matsuri-ui/SomeComponent"` instead of `import "matsuri-ui/components/SomeComponent"`
|
|
2331
|
+
|
|
2332
|
+
|
|
2333
|
+
|
|
2334
|
+
## 1.4.1 (2019-05-14)
|
|
2335
|
+
|
|
2336
|
+
|
|
2337
|
+
### Bug Fixes
|
|
2338
|
+
|
|
2339
|
+
* **Calendar/WeekdayGroup:** Rename ([a49da35](https://github.com/matsuritech/matsuri-ui/commit/a49da35))
|
|
2340
|
+
* **Step:** Correct the type ([819e187](https://github.com/matsuritech/matsuri-ui/commit/819e187))
|
|
2341
|
+
* **Step:** Fix code sample in storybook ([27280e0](https://github.com/matsuritech/matsuri-ui/commit/27280e0))
|
|
2342
|
+
* **Step:** Fix Step animation ([034019f](https://github.com/matsuritech/matsuri-ui/commit/034019f))
|
|
2343
|
+
* **Step:** Include Step in components ([a4a7ca5](https://github.com/matsuritech/matsuri-ui/commit/a4a7ca5))
|
|
2344
|
+
* **tooltip:** fix type of placement ([747034e](https://github.com/matsuritech/matsuri-ui/commit/747034e))
|
|
2345
|
+
* Change typescript ver. for storybook build ([96da83d](https://github.com/matsuritech/matsuri-ui/commit/96da83d))
|
|
2346
|
+
* Fix build-storybook command ([c21cbe9](https://github.com/matsuritech/matsuri-ui/commit/c21cbe9))
|
|
2347
|
+
* Fix dependencies ([7c0042e](https://github.com/matsuritech/matsuri-ui/commit/7c0042e))
|
|
2348
|
+
* Fix for new theme config ([832593c](https://github.com/matsuritech/matsuri-ui/commit/832593c))
|
|
2349
|
+
* Fix link syntax ([316961c](https://github.com/matsuritech/matsuri-ui/commit/316961c))
|
|
2350
|
+
* Fix mergeDeep ([0e602b0](https://github.com/matsuritech/matsuri-ui/commit/0e602b0))
|
|
2351
|
+
* Fix name & repository ([c04e96a](https://github.com/matsuritech/matsuri-ui/commit/c04e96a))
|
|
2352
|
+
* Fix onclicked animation ([1d91f14](https://github.com/matsuritech/matsuri-ui/commit/1d91f14))
|
|
2353
|
+
* Fix some components' design ([f8d71ab](https://github.com/matsuritech/matsuri-ui/commit/f8d71ab))
|
|
2354
|
+
* Fix style of CalendarCell ([1b09a57](https://github.com/matsuritech/matsuri-ui/commit/1b09a57))
|
|
2355
|
+
* Fix type ([38e2405](https://github.com/matsuritech/matsuri-ui/commit/38e2405))
|
|
2356
|
+
* Fix typings ([4e70b0c](https://github.com/matsuritech/matsuri-ui/commit/4e70b0c))
|
|
2357
|
+
* Fix unresolved dependencies ([918d1c8](https://github.com/matsuritech/matsuri-ui/commit/918d1c8))
|
|
2358
|
+
* Make Icon accept miscellaneous props ([c106df2](https://github.com/matsuritech/matsuri-ui/commit/c106df2))
|
|
2359
|
+
* Remove circular dependenciy ([bd28e3e](https://github.com/matsuritech/matsuri-ui/commit/bd28e3e))
|
|
2360
|
+
* Remove old files ([6ab4030](https://github.com/matsuritech/matsuri-ui/commit/6ab4030))
|
|
2361
|
+
* Remove typo ([4b75908](https://github.com/matsuritech/matsuri-ui/commit/4b75908))
|
|
2362
|
+
* Replace async arrow func with async func ([3326e75](https://github.com/matsuritech/matsuri-ui/commit/3326e75))
|
|
2363
|
+
* Replace Button type props with pattern props ([c1c42f4](https://github.com/matsuritech/matsuri-ui/commit/c1c42f4))
|
|
2364
|
+
* Replace Component.d.ts with Component.type.ts ([ee58294](https://github.com/matsuritech/matsuri-ui/commit/ee58294))
|
|
2365
|
+
* Update lint scripts for fast linting ([c8a36e6](https://github.com/matsuritech/matsuri-ui/commit/c8a36e6))
|
|
2366
|
+
|
|
2367
|
+
|
|
2368
|
+
### Features
|
|
2369
|
+
|
|
2370
|
+
* **Calendar:** Update ([d5ac4fb](https://github.com/matsuritech/matsuri-ui/commit/d5ac4fb)), closes [#14](https://github.com/matsuritech/matsuri-ui/issues/14)
|
|
2371
|
+
* **Calendar:** Update ([1d88087](https://github.com/matsuritech/matsuri-ui/commit/1d88087))
|
|
2372
|
+
* **Components:** Use defaultTheme ([#70](https://github.com/matsuritech/matsuri-ui/issues/70)) ([162347d](https://github.com/matsuritech/matsuri-ui/commit/162347d))
|
|
2373
|
+
* **Step:** Add ([f0fbdd0](https://github.com/matsuritech/matsuri-ui/commit/f0fbdd0))
|
|
2374
|
+
* **Step:** Propagate current from StepGroup ([1969b93](https://github.com/matsuritech/matsuri-ui/commit/1969b93))
|
|
2375
|
+
* **Step:** Update design ([6715483](https://github.com/matsuritech/matsuri-ui/commit/6715483))
|
|
2376
|
+
* **Typography:** Update ([02dcd1e](https://github.com/matsuritech/matsuri-ui/commit/02dcd1e))
|
|
2377
|
+
* Add .editorconfig ([101726d](https://github.com/matsuritech/matsuri-ui/commit/101726d))
|
|
2378
|
+
* Add arithmetricSequence to array utils ([9d11fa0](https://github.com/matsuritech/matsuri-ui/commit/9d11fa0))
|
|
2379
|
+
* Add Avator Icon, closes [#21](https://github.com/matsuritech/matsuri-ui/issues/21) ([c606cd6](https://github.com/matsuritech/matsuri-ui/commit/c606cd6))
|
|
2380
|
+
* Add Calendar, closes [#14](https://github.com/matsuritech/matsuri-ui/issues/14) ([4d875c9](https://github.com/matsuritech/matsuri-ui/commit/4d875c9))
|
|
2381
|
+
* Add Code component for storybook ([99bf120](https://github.com/matsuritech/matsuri-ui/commit/99bf120))
|
|
2382
|
+
* Add createTheme ([59eafae](https://github.com/matsuritech/matsuri-ui/commit/59eafae))
|
|
2383
|
+
* Add eslint rules, format some files ([9d63f36](https://github.com/matsuritech/matsuri-ui/commit/9d63f36))
|
|
2384
|
+
* Add gary dark color to defaultTheme ([10fe171](https://github.com/matsuritech/matsuri-ui/commit/10fe171))
|
|
2385
|
+
* Add Icon, close [#5](https://github.com/matsuritech/matsuri-ui/issues/5) ([9bd8bc8](https://github.com/matsuritech/matsuri-ui/commit/9bd8bc8))
|
|
2386
|
+
* Add Icons ([81de985](https://github.com/matsuritech/matsuri-ui/commit/81de985))
|
|
2387
|
+
* Add InputZipCode component ([8dd2a22](https://github.com/matsuritech/matsuri-ui/commit/8dd2a22))
|
|
2388
|
+
* Add mergeDeep to utility ([0c0ae8b](https://github.com/matsuritech/matsuri-ui/commit/0c0ae8b))
|
|
2389
|
+
* Add nowrap to FlexContainer'props ([53b2f5f](https://github.com/matsuritech/matsuri-ui/commit/53b2f5f))
|
|
2390
|
+
* Add reset.css and support in storybook ([2d01a1f](https://github.com/matsuritech/matsuri-ui/commit/2d01a1f))
|
|
2391
|
+
* Add Small, close [#6](https://github.com/matsuritech/matsuri-ui/issues/6) ([491a5dd](https://github.com/matsuritech/matsuri-ui/commit/491a5dd))
|
|
2392
|
+
* Add snippets of dummy text ([ad52ff9](https://github.com/matsuritech/matsuri-ui/commit/ad52ff9))
|
|
2393
|
+
* Add some colors to defaultTheme ([c097e7a](https://github.com/matsuritech/matsuri-ui/commit/c097e7a))
|
|
2394
|
+
* Add styles for typography ([fe246bc](https://github.com/matsuritech/matsuri-ui/commit/fe246bc))
|
|
2395
|
+
* Add support for exporting interface ([8babd10](https://github.com/matsuritech/matsuri-ui/commit/8babd10))
|
|
2396
|
+
* Add support of icon to Button, closes [#8](https://github.com/matsuritech/matsuri-ui/issues/8) ([8e0610a](https://github.com/matsuritech/matsuri-ui/commit/8e0610a))
|
|
2397
|
+
* Add support of multi props ([b87e919](https://github.com/matsuritech/matsuri-ui/commit/b87e919))
|
|
2398
|
+
* Add support of some props ([05b8b38](https://github.com/matsuritech/matsuri-ui/commit/05b8b38))
|
|
2399
|
+
* Add Tooltip, closes [#22](https://github.com/matsuritech/matsuri-ui/issues/22) ([b482bcc](https://github.com/matsuritech/matsuri-ui/commit/b482bcc))
|
|
2400
|
+
* Add Typography comoponents ([75fdf97](https://github.com/matsuritech/matsuri-ui/commit/75fdf97))
|
|
2401
|
+
* Add Typography's Headline2, Headline3 ([fa80ecb](https://github.com/matsuritech/matsuri-ui/commit/fa80ecb))
|
|
2402
|
+
* Add with typography to Icon story ([cd60733](https://github.com/matsuritech/matsuri-ui/commit/cd60733))
|
|
2403
|
+
* Cache linting ([8e175c9](https://github.com/matsuritech/matsuri-ui/commit/8e175c9))
|
|
2404
|
+
* Change Avatar's shape to be easy to use ([1ed602d](https://github.com/matsuritech/matsuri-ui/commit/1ed602d))
|
|
2405
|
+
* Change error color ([20f800e](https://github.com/matsuritech/matsuri-ui/commit/20f800e))
|
|
2406
|
+
* Change props to allow string type ([d444920](https://github.com/matsuritech/matsuri-ui/commit/d444920))
|
|
2407
|
+
* Enhanced release script ([b831a58](https://github.com/matsuritech/matsuri-ui/commit/b831a58))
|
|
2408
|
+
* Fit Icon size to font-size, closes [#9](https://github.com/matsuritech/matsuri-ui/issues/9) ([14cdefa](https://github.com/matsuritech/matsuri-ui/commit/14cdefa))
|
|
2409
|
+
* Make data utils divide into each method ([846566d](https://github.com/matsuritech/matsuri-ui/commit/846566d))
|
|
2410
|
+
* Remove react-icons, closes [#10](https://github.com/matsuritech/matsuri-ui/issues/10) ([a1fe138](https://github.com/matsuritech/matsuri-ui/commit/a1fe138))
|
|
2411
|
+
* Replace Code with @hrdtbs/react-code ([4a4d73b](https://github.com/matsuritech/matsuri-ui/commit/4a4d73b))
|
|
2412
|
+
* Update Calendar story ([ff8bbb8](https://github.com/matsuritech/matsuri-ui/commit/ff8bbb8))
|
|
2413
|
+
* Update dependencies ([5b8935b](https://github.com/matsuritech/matsuri-ui/commit/5b8935b))
|
|
2414
|
+
* Update InputNumber to reset value, closes [#16](https://github.com/matsuritech/matsuri-ui/issues/16) ([da802ea](https://github.com/matsuritech/matsuri-ui/commit/da802ea))
|
|
2415
|
+
* Update packages ([dc975cc](https://github.com/matsuritech/matsuri-ui/commit/dc975cc))
|
|
2416
|
+
* Upgrade dependencies ([9674d1c](https://github.com/matsuritech/matsuri-ui/commit/9674d1c))
|
|
2417
|
+
|
|
2418
|
+
|
|
2419
|
+
|
|
2420
|
+
# 1.4.0 (2019-05-06)
|
|
2421
|
+
|
|
2422
|
+
|
|
2423
|
+
### Bug Fixes
|
|
2424
|
+
|
|
2425
|
+
* **Calendar/WeekdayGroup:** Rename ([a49da35](https://github.com/matsuritech/matsuri-ui/commit/a49da35))
|
|
2426
|
+
* **Step:** Correct the type ([819e187](https://github.com/matsuritech/matsuri-ui/commit/819e187))
|
|
2427
|
+
* **Step:** Fix code sample in storybook ([27280e0](https://github.com/matsuritech/matsuri-ui/commit/27280e0))
|
|
2428
|
+
* **Step:** Fix Step animation ([034019f](https://github.com/matsuritech/matsuri-ui/commit/034019f))
|
|
2429
|
+
* **Step:** Include Step in components ([a4a7ca5](https://github.com/matsuritech/matsuri-ui/commit/a4a7ca5))
|
|
2430
|
+
* **tooltip:** fix type of placement ([747034e](https://github.com/matsuritech/matsuri-ui/commit/747034e))
|
|
2431
|
+
* Change typescript ver. for storybook build ([96da83d](https://github.com/matsuritech/matsuri-ui/commit/96da83d))
|
|
2432
|
+
* Fix build-storybook command ([c21cbe9](https://github.com/matsuritech/matsuri-ui/commit/c21cbe9))
|
|
2433
|
+
* Fix dependencies ([7c0042e](https://github.com/matsuritech/matsuri-ui/commit/7c0042e))
|
|
2434
|
+
* Fix for new theme config ([832593c](https://github.com/matsuritech/matsuri-ui/commit/832593c))
|
|
2435
|
+
* Fix link syntax ([316961c](https://github.com/matsuritech/matsuri-ui/commit/316961c))
|
|
2436
|
+
* Fix mergeDeep ([0e602b0](https://github.com/matsuritech/matsuri-ui/commit/0e602b0))
|
|
2437
|
+
* Fix name & repository ([c04e96a](https://github.com/matsuritech/matsuri-ui/commit/c04e96a))
|
|
2438
|
+
* Fix onclicked animation ([1d91f14](https://github.com/matsuritech/matsuri-ui/commit/1d91f14))
|
|
2439
|
+
* Fix some components' design ([f8d71ab](https://github.com/matsuritech/matsuri-ui/commit/f8d71ab))
|
|
2440
|
+
* Fix style of CalendarCell ([1b09a57](https://github.com/matsuritech/matsuri-ui/commit/1b09a57))
|
|
2441
|
+
* Fix type ([38e2405](https://github.com/matsuritech/matsuri-ui/commit/38e2405))
|
|
2442
|
+
* Fix typings ([4e70b0c](https://github.com/matsuritech/matsuri-ui/commit/4e70b0c))
|
|
2443
|
+
* Fix unresolved dependencies ([918d1c8](https://github.com/matsuritech/matsuri-ui/commit/918d1c8))
|
|
2444
|
+
* Make Icon accept miscellaneous props ([c106df2](https://github.com/matsuritech/matsuri-ui/commit/c106df2))
|
|
2445
|
+
* Remove circular dependenciy ([bd28e3e](https://github.com/matsuritech/matsuri-ui/commit/bd28e3e))
|
|
2446
|
+
* Remove old files ([6ab4030](https://github.com/matsuritech/matsuri-ui/commit/6ab4030))
|
|
2447
|
+
* Remove typo ([4b75908](https://github.com/matsuritech/matsuri-ui/commit/4b75908))
|
|
2448
|
+
* Replace async arrow func with async func ([3326e75](https://github.com/matsuritech/matsuri-ui/commit/3326e75))
|
|
2449
|
+
* Replace Button type props with pattern props ([c1c42f4](https://github.com/matsuritech/matsuri-ui/commit/c1c42f4))
|
|
2450
|
+
* Replace Component.d.ts with Component.type.ts ([ee58294](https://github.com/matsuritech/matsuri-ui/commit/ee58294))
|
|
2451
|
+
* Update lint scripts for fast linting ([c8a36e6](https://github.com/matsuritech/matsuri-ui/commit/c8a36e6))
|
|
2452
|
+
|
|
2453
|
+
|
|
2454
|
+
### Features
|
|
2455
|
+
|
|
2456
|
+
* **Calendar:** Update ([d5ac4fb](https://github.com/matsuritech/matsuri-ui/commit/d5ac4fb)), closes [#14](https://github.com/matsuritech/matsuri-ui/issues/14)
|
|
2457
|
+
* **Calendar:** Update ([1d88087](https://github.com/matsuritech/matsuri-ui/commit/1d88087))
|
|
2458
|
+
* **Step:** Add ([f0fbdd0](https://github.com/matsuritech/matsuri-ui/commit/f0fbdd0))
|
|
2459
|
+
* **Step:** Propagate current from StepGroup ([1969b93](https://github.com/matsuritech/matsuri-ui/commit/1969b93))
|
|
2460
|
+
* **Step:** Update design ([6715483](https://github.com/matsuritech/matsuri-ui/commit/6715483))
|
|
2461
|
+
* **Typography:** Update ([02dcd1e](https://github.com/matsuritech/matsuri-ui/commit/02dcd1e))
|
|
2462
|
+
* Add .editorconfig ([101726d](https://github.com/matsuritech/matsuri-ui/commit/101726d))
|
|
2463
|
+
* Add arithmetricSequence to array utils ([9d11fa0](https://github.com/matsuritech/matsuri-ui/commit/9d11fa0))
|
|
2464
|
+
* Add Avator Icon, closes [#21](https://github.com/matsuritech/matsuri-ui/issues/21) ([c606cd6](https://github.com/matsuritech/matsuri-ui/commit/c606cd6))
|
|
2465
|
+
* Add Calendar, closes [#14](https://github.com/matsuritech/matsuri-ui/issues/14) ([4d875c9](https://github.com/matsuritech/matsuri-ui/commit/4d875c9))
|
|
2466
|
+
* Add Code component for storybook ([99bf120](https://github.com/matsuritech/matsuri-ui/commit/99bf120))
|
|
2467
|
+
* Add createTheme ([59eafae](https://github.com/matsuritech/matsuri-ui/commit/59eafae))
|
|
2468
|
+
* Add eslint rules, format some files ([9d63f36](https://github.com/matsuritech/matsuri-ui/commit/9d63f36))
|
|
2469
|
+
* Add gary dark color to defaultTheme ([10fe171](https://github.com/matsuritech/matsuri-ui/commit/10fe171))
|
|
2470
|
+
* Add Icon, close [#5](https://github.com/matsuritech/matsuri-ui/issues/5) ([9bd8bc8](https://github.com/matsuritech/matsuri-ui/commit/9bd8bc8))
|
|
2471
|
+
* Add Icons ([81de985](https://github.com/matsuritech/matsuri-ui/commit/81de985))
|
|
2472
|
+
* Add InputZipCode component ([8dd2a22](https://github.com/matsuritech/matsuri-ui/commit/8dd2a22))
|
|
2473
|
+
* Add mergeDeep to utility ([0c0ae8b](https://github.com/matsuritech/matsuri-ui/commit/0c0ae8b))
|
|
2474
|
+
* Add nowrap to FlexContainer'props ([53b2f5f](https://github.com/matsuritech/matsuri-ui/commit/53b2f5f))
|
|
2475
|
+
* Add reset.css and support in storybook ([2d01a1f](https://github.com/matsuritech/matsuri-ui/commit/2d01a1f))
|
|
2476
|
+
* Add Small, close [#6](https://github.com/matsuritech/matsuri-ui/issues/6) ([491a5dd](https://github.com/matsuritech/matsuri-ui/commit/491a5dd))
|
|
2477
|
+
* Add snippets of dummy text ([ad52ff9](https://github.com/matsuritech/matsuri-ui/commit/ad52ff9))
|
|
2478
|
+
* Add some colors to defaultTheme ([c097e7a](https://github.com/matsuritech/matsuri-ui/commit/c097e7a))
|
|
2479
|
+
* Add styles for typography ([fe246bc](https://github.com/matsuritech/matsuri-ui/commit/fe246bc))
|
|
2480
|
+
* Add support for exporting interface ([8babd10](https://github.com/matsuritech/matsuri-ui/commit/8babd10))
|
|
2481
|
+
* Add support of icon to Button, closes [#8](https://github.com/matsuritech/matsuri-ui/issues/8) ([8e0610a](https://github.com/matsuritech/matsuri-ui/commit/8e0610a))
|
|
2482
|
+
* Add support of multi props ([b87e919](https://github.com/matsuritech/matsuri-ui/commit/b87e919))
|
|
2483
|
+
* Add support of some props ([05b8b38](https://github.com/matsuritech/matsuri-ui/commit/05b8b38))
|
|
2484
|
+
* Add Tooltip, closes [#22](https://github.com/matsuritech/matsuri-ui/issues/22) ([b482bcc](https://github.com/matsuritech/matsuri-ui/commit/b482bcc))
|
|
2485
|
+
* Add Typography comoponents ([75fdf97](https://github.com/matsuritech/matsuri-ui/commit/75fdf97))
|
|
2486
|
+
* Add Typography's Headline2, Headline3 ([fa80ecb](https://github.com/matsuritech/matsuri-ui/commit/fa80ecb))
|
|
2487
|
+
* Add with typography to Icon story ([cd60733](https://github.com/matsuritech/matsuri-ui/commit/cd60733))
|
|
2488
|
+
* Cache linting ([8e175c9](https://github.com/matsuritech/matsuri-ui/commit/8e175c9))
|
|
2489
|
+
* Change Avatar's shape to be easy to use ([1ed602d](https://github.com/matsuritech/matsuri-ui/commit/1ed602d))
|
|
2490
|
+
* Change error color ([20f800e](https://github.com/matsuritech/matsuri-ui/commit/20f800e))
|
|
2491
|
+
* Change props to allow string type ([d444920](https://github.com/matsuritech/matsuri-ui/commit/d444920))
|
|
2492
|
+
* Enhanced release script ([b831a58](https://github.com/matsuritech/matsuri-ui/commit/b831a58))
|
|
2493
|
+
* Fit Icon size to font-size, closes [#9](https://github.com/matsuritech/matsuri-ui/issues/9) ([14cdefa](https://github.com/matsuritech/matsuri-ui/commit/14cdefa))
|
|
2494
|
+
* Make data utils divide into each method ([846566d](https://github.com/matsuritech/matsuri-ui/commit/846566d))
|
|
2495
|
+
* Remove react-icons, closes [#10](https://github.com/matsuritech/matsuri-ui/issues/10) ([a1fe138](https://github.com/matsuritech/matsuri-ui/commit/a1fe138))
|
|
2496
|
+
* Replace Code with @hrdtbs/react-code ([4a4d73b](https://github.com/matsuritech/matsuri-ui/commit/4a4d73b))
|
|
2497
|
+
* Update Calendar story ([ff8bbb8](https://github.com/matsuritech/matsuri-ui/commit/ff8bbb8))
|
|
2498
|
+
* Update dependencies ([5b8935b](https://github.com/matsuritech/matsuri-ui/commit/5b8935b))
|
|
2499
|
+
* Update InputNumber to reset value, closes [#16](https://github.com/matsuritech/matsuri-ui/issues/16) ([da802ea](https://github.com/matsuritech/matsuri-ui/commit/da802ea))
|
|
2500
|
+
* Update packages ([dc975cc](https://github.com/matsuritech/matsuri-ui/commit/dc975cc))
|
|
2501
|
+
* Upgrade dependencies ([9674d1c](https://github.com/matsuritech/matsuri-ui/commit/9674d1c))
|
|
2502
|
+
|
|
2503
|
+
|
|
2504
|
+
|
|
2505
|
+
## [1.3.5](https://github.com/matsuritech/matsuri-ui/compare/v1.3.1...v1.3.5) (2019-04-19)
|
|
2506
|
+
|
|
2507
|
+
|
|
2508
|
+
### Bug Fixes
|
|
2509
|
+
|
|
2510
|
+
* **Step:** Correct the type ([819e187](https://github.com/matsuritech/matsuri-ui/commit/819e187))
|
|
2511
|
+
* **Step:** Fix code sample in storybook ([27280e0](https://github.com/matsuritech/matsuri-ui/commit/27280e0))
|
|
2512
|
+
* **Step:** Fix Step animation ([034019f](https://github.com/matsuritech/matsuri-ui/commit/034019f))
|
|
2513
|
+
|
|
2514
|
+
|
|
2515
|
+
### Features
|
|
2516
|
+
|
|
2517
|
+
* **Step:** Propagate current from StepGroup ([1969b93](https://github.com/matsuritech/matsuri-ui/commit/1969b93))
|
|
2518
|
+
* **Step:** Update design ([6715483](https://github.com/matsuritech/matsuri-ui/commit/6715483))
|
|
2519
|
+
|
|
2520
|
+
|
|
2521
|
+
|
|
2522
|
+
## [1.3.4](https://github.com/matsuritech/matsuri-ui/compare/v1.3.1...v1.3.4) (2019-04-19)
|
|
2523
|
+
|
|
2524
|
+
|
|
2525
|
+
### Bug Fixes
|
|
2526
|
+
|
|
2527
|
+
* **Step:** Correct the type ([819e187](https://github.com/matsuritech/matsuri-ui/commit/819e187))
|
|
2528
|
+
* **Step:** Fix code sample in storybook ([27280e0](https://github.com/matsuritech/matsuri-ui/commit/27280e0))
|
|
2529
|
+
|
|
2530
|
+
|
|
2531
|
+
### Features
|
|
2532
|
+
|
|
2533
|
+
* **Step:** Propagate current from StepGroup ([1969b93](https://github.com/matsuritech/matsuri-ui/commit/1969b93))
|
|
2534
|
+
* **Step:** Update design ([6715483](https://github.com/matsuritech/matsuri-ui/commit/6715483))
|
|
2535
|
+
|
|
2536
|
+
|
|
2537
|
+
|
|
2538
|
+
## [1.3.3](https://github.com/matsuritech/matsuri-ui/compare/v1.3.1...v1.3.3) (2019-04-19)
|
|
2539
|
+
|
|
2540
|
+
|
|
2541
|
+
### Bug Fixes
|
|
2542
|
+
|
|
2543
|
+
* **Step:** Fix code sample in storybook ([27280e0](https://github.com/matsuritech/matsuri-ui/commit/27280e0))
|
|
2544
|
+
|
|
2545
|
+
|
|
2546
|
+
### Features
|
|
2547
|
+
|
|
2548
|
+
* **Step:** Propagate current from StepGroup ([1969b93](https://github.com/matsuritech/matsuri-ui/commit/1969b93))
|
|
2549
|
+
* **Step:** Update design ([6715483](https://github.com/matsuritech/matsuri-ui/commit/6715483))
|
|
2550
|
+
|
|
2551
|
+
|
|
2552
|
+
|
|
2553
|
+
## [1.3.2](https://github.com/matsuritech/matsuri-ui/compare/v1.3.1...v1.3.2) (2019-04-18)
|
|
2554
|
+
|
|
2555
|
+
|
|
2556
|
+
### Features
|
|
2557
|
+
|
|
2558
|
+
* **Step:** Update design ([6715483](https://github.com/matsuritech/matsuri-ui/commit/6715483))
|
|
2559
|
+
|
|
2560
|
+
|
|
2561
|
+
|
|
2562
|
+
## [1.3.1](https://github.com/matsuritech/matsuri-ui/compare/v1.3.0...v1.3.1) (2019-04-18)
|
|
2563
|
+
|
|
2564
|
+
|
|
2565
|
+
### Bug Fixes
|
|
2566
|
+
|
|
2567
|
+
* **Step:** Include Step in components ([a4a7ca5](https://github.com/matsuritech/matsuri-ui/commit/a4a7ca5))
|
|
2568
|
+
|
|
2569
|
+
|
|
2570
|
+
|
|
2571
|
+
# [1.3.0](https://github.com/matsuritech/matsuri-ui/compare/v1.2.0...v1.3.0) (2019-04-18)
|
|
2572
|
+
|
|
2573
|
+
|
|
2574
|
+
### Bug Fixes
|
|
2575
|
+
|
|
2576
|
+
* **tooltip:** fix type of placement ([747034e](https://github.com/matsuritech/matsuri-ui/commit/747034e))
|
|
2577
|
+
|
|
2578
|
+
|
|
2579
|
+
### Features
|
|
2580
|
+
|
|
2581
|
+
* **Step:** Add ([f0fbdd0](https://github.com/matsuritech/matsuri-ui/commit/f0fbdd0))
|
|
2582
|
+
* Enhanced release script ([b831a58](https://github.com/matsuritech/matsuri-ui/commit/b831a58))
|
|
2583
|
+
|
|
2584
|
+
|
|
2585
|
+
|
|
2586
|
+
## [1.2.1](https://github.com/matsuritech/matsuri-ui/compare/v1.2.0...v1.2.1) (2019-04-18)
|
|
2587
|
+
|
|
2588
|
+
|
|
2589
|
+
### Bug Fixes
|
|
2590
|
+
|
|
2591
|
+
* **tooltip:** fix type of placement ([747034e](https://github.com/matsuritech/matsuri-ui/commit/747034e))
|
|
2592
|
+
|
|
2593
|
+
|
|
2594
|
+
### Features
|
|
2595
|
+
|
|
2596
|
+
* **package.json** enhanced release script ([b831a58](https://github.com/matsuritech/matsuri-ui/commit/b831a58))
|
|
2597
|
+
|
|
2598
|
+
|
|
2599
|
+
|
|
2600
|
+
# 1.2.0 (2019-04-17)
|
|
2601
|
+
|
|
2602
|
+
|
|
2603
|
+
### Bug Fixes
|
|
2604
|
+
|
|
2605
|
+
* Make Icon accept miscellaneous props ([c106df2](https://github.com/matsuritech/matsuri-ui/commit/c106df2))
|
|
2606
|
+
* Replace Component.d.ts with Component.type.ts ([ee58294](https://github.com/matsuritech/matsuri-ui/commit/ee58294))
|
|
2607
|
+
|
|
2608
|
+
|
|
2609
|
+
### Features
|
|
2610
|
+
|
|
2611
|
+
* Add Avator Icon, closes [#21](https://github.com/matsuritech/matsuri-ui/issues/21) ([c606cd6](https://github.com/matsuritech/matsuri-ui/commit/c606cd6))
|
|
2612
|
+
* Add Tooltip, closes [#22](https://github.com/matsuritech/matsuri-ui/issues/22) ([b482bcc](https://github.com/matsuritech/matsuri-ui/commit/b482bcc))
|
|
2613
|
+
* Change Avatar's shape to be easy to use ([1ed602d](https://github.com/matsuritech/matsuri-ui/commit/1ed602d))
|
|
2614
|
+
|
|
2615
|
+
|
|
2616
|
+
# 1.0.0 (2019-04-14)
|
|
2617
|
+
|
|
2618
|
+
|
|
2619
|
+
### Bug Fixes
|
|
2620
|
+
|
|
2621
|
+
* Change typescript ver. for storybook build ([96da83d](https://github.com/matsuritech/matsuri-ui/commit/96da83d))
|
|
2622
|
+
* Fix build-storybook command ([c21cbe9](https://github.com/matsuritech/matsuri-ui/commit/c21cbe9))
|
|
2623
|
+
* Fix dependencies ([7c0042e](https://github.com/matsuritech/matsuri-ui/commit/7c0042e))
|
|
2624
|
+
* Fix for new theme config ([832593c](https://github.com/matsuritech/matsuri-ui/commit/832593c))
|
|
2625
|
+
* Fix link syntax ([316961c](https://github.com/matsuritech/matsuri-ui/commit/316961c))
|
|
2626
|
+
* Fix mergeDeep ([0e602b0](https://github.com/matsuritech/matsuri-ui/commit/0e602b0))
|
|
2627
|
+
* Fix name & repository ([c04e96a](https://github.com/matsuritech/matsuri-ui/commit/c04e96a))
|
|
2628
|
+
* Fix onclicked animation ([1d91f14](https://github.com/matsuritech/matsuri-ui/commit/1d91f14))
|
|
2629
|
+
* Fix some components' design ([f8d71ab](https://github.com/matsuritech/matsuri-ui/commit/f8d71ab))
|
|
2630
|
+
* Fix style of CalendarCell ([1b09a57](https://github.com/matsuritech/matsuri-ui/commit/1b09a57))
|
|
2631
|
+
* Fix type ([38e2405](https://github.com/matsuritech/matsuri-ui/commit/38e2405))
|
|
2632
|
+
* Fix typings ([4e70b0c](https://github.com/matsuritech/matsuri-ui/commit/4e70b0c))
|
|
2633
|
+
* Fix unresolved dependencies ([918d1c8](https://github.com/matsuritech/matsuri-ui/commit/918d1c8))
|
|
2634
|
+
* Remove circular dependenciy ([bd28e3e](https://github.com/matsuritech/matsuri-ui/commit/bd28e3e))
|
|
2635
|
+
* Remove old files ([6ab4030](https://github.com/matsuritech/matsuri-ui/commit/6ab4030))
|
|
2636
|
+
* Remove typo ([4b75908](https://github.com/matsuritech/matsuri-ui/commit/4b75908))
|
|
2637
|
+
* Replace async arrow func with async func ([3326e75](https://github.com/matsuritech/matsuri-ui/commit/3326e75))
|
|
2638
|
+
* Replace Button type props with pattern props ([c1c42f4](https://github.com/matsuritech/matsuri-ui/commit/c1c42f4))
|
|
2639
|
+
* Update lint scripts for fast linting ([c8a36e6](https://github.com/matsuritech/matsuri-ui/commit/c8a36e6))
|
|
2640
|
+
|
|
2641
|
+
|
|
2642
|
+
### Features
|
|
2643
|
+
|
|
2644
|
+
* Add .editorconfig ([101726d](https://github.com/matsuritech/matsuri-ui/commit/101726d))
|
|
2645
|
+
* Add arithmetricSequence to array utils ([9d11fa0](https://github.com/matsuritech/matsuri-ui/commit/9d11fa0))
|
|
2646
|
+
* Add Calendar, closes [#14](https://github.com/matsuritech/matsuri-ui/issues/14) ([4d875c9](https://github.com/matsuritech/matsuri-ui/commit/4d875c9))
|
|
2647
|
+
* Add Code component for storybook ([99bf120](https://github.com/matsuritech/matsuri-ui/commit/99bf120))
|
|
2648
|
+
* Add createTheme ([59eafae](https://github.com/matsuritech/matsuri-ui/commit/59eafae))
|
|
2649
|
+
* Add eslint rules, format some files ([9d63f36](https://github.com/matsuritech/matsuri-ui/commit/9d63f36))
|
|
2650
|
+
* Add gary dark color to defaultTheme ([10fe171](https://github.com/matsuritech/matsuri-ui/commit/10fe171))
|
|
2651
|
+
* Add Icon, close [#5](https://github.com/matsuritech/matsuri-ui/issues/5) ([9bd8bc8](https://github.com/matsuritech/matsuri-ui/commit/9bd8bc8))
|
|
2652
|
+
* Add Icons ([81de985](https://github.com/matsuritech/matsuri-ui/commit/81de985))
|
|
2653
|
+
* Add InputZipCode component ([8dd2a22](https://github.com/matsuritech/matsuri-ui/commit/8dd2a22))
|
|
2654
|
+
* Add mergeDeep to utility ([0c0ae8b](https://github.com/matsuritech/matsuri-ui/commit/0c0ae8b))
|
|
2655
|
+
* Add nowrap to FlexContainer'props ([53b2f5f](https://github.com/matsuritech/matsuri-ui/commit/53b2f5f))
|
|
2656
|
+
* Add reset.css and support in storybook ([2d01a1f](https://github.com/matsuritech/matsuri-ui/commit/2d01a1f))
|
|
2657
|
+
* Add Small, close [#6](https://github.com/matsuritech/matsuri-ui/issues/6) ([491a5dd](https://github.com/matsuritech/matsuri-ui/commit/491a5dd))
|
|
2658
|
+
* Add snippets of dummy text ([ad52ff9](https://github.com/matsuritech/matsuri-ui/commit/ad52ff9))
|
|
2659
|
+
* Add some colors to defaultTheme ([c097e7a](https://github.com/matsuritech/matsuri-ui/commit/c097e7a))
|
|
2660
|
+
* Add styles for typography ([fe246bc](https://github.com/matsuritech/matsuri-ui/commit/fe246bc))
|
|
2661
|
+
* Add support for exporting interface ([8babd10](https://github.com/matsuritech/matsuri-ui/commit/8babd10))
|
|
2662
|
+
* Add support of icon to Button, closes [#8](https://github.com/matsuritech/matsuri-ui/issues/8) ([8e0610a](https://github.com/matsuritech/matsuri-ui/commit/8e0610a))
|
|
2663
|
+
* Add support of multi props ([b87e919](https://github.com/matsuritech/matsuri-ui/commit/b87e919))
|
|
2664
|
+
* Add support of some props ([05b8b38](https://github.com/matsuritech/matsuri-ui/commit/05b8b38))
|
|
2665
|
+
* Add Typography comoponents ([75fdf97](https://github.com/matsuritech/matsuri-ui/commit/75fdf97))
|
|
2666
|
+
* Add Typography's Headline2, Headline3 ([fa80ecb](https://github.com/matsuritech/matsuri-ui/commit/fa80ecb))
|
|
2667
|
+
* Add with typography to Icon story ([cd60733](https://github.com/matsuritech/matsuri-ui/commit/cd60733))
|
|
2668
|
+
* Cache linting ([8e175c9](https://github.com/matsuritech/matsuri-ui/commit/8e175c9))
|
|
2669
|
+
* Change error color ([20f800e](https://github.com/matsuritech/matsuri-ui/commit/20f800e))
|
|
2670
|
+
* Change props to allow string type ([d444920](https://github.com/matsuritech/matsuri-ui/commit/d444920))
|
|
2671
|
+
* Fit Icon size to font-size, closes [#9](https://github.com/matsuritech/matsuri-ui/issues/9) ([14cdefa](https://github.com/matsuritech/matsuri-ui/commit/14cdefa))
|
|
2672
|
+
* Make data utils divide into each method ([846566d](https://github.com/matsuritech/matsuri-ui/commit/846566d))
|
|
2673
|
+
* Remove react-icons, closes [#10](https://github.com/matsuritech/matsuri-ui/issues/10) ([a1fe138](https://github.com/matsuritech/matsuri-ui/commit/a1fe138))
|
|
2674
|
+
* Replace Code with @hrdtbs/react-code ([4a4d73b](https://github.com/matsuritech/matsuri-ui/commit/4a4d73b))
|
|
2675
|
+
* Update Calendar story ([ff8bbb8](https://github.com/matsuritech/matsuri-ui/commit/ff8bbb8))
|
|
2676
|
+
* Update dependencies ([5b8935b](https://github.com/matsuritech/matsuri-ui/commit/5b8935b))
|
|
2677
|
+
* Update InputNumber to reset value, closes [#16](https://github.com/matsuritech/matsuri-ui/issues/16) ([da802ea](https://github.com/matsuritech/matsuri-ui/commit/da802ea))
|
|
2678
|
+
* Update package.json ([6a007a7](https://github.com/matsuritech/matsuri-ui/commit/6a007a7))
|
|
2679
|
+
* Update packages ([dc975cc](https://github.com/matsuritech/matsuri-ui/commit/dc975cc))
|
|
2680
|
+
* Upgrade dependencies ([9674d1c](https://github.com/matsuritech/matsuri-ui/commit/9674d1c))
|