@smwb/ui-solid 0.3.0 → 0.4.1
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/dist/assets/styles/less/components/appBar/appBar.entry.css +1 -1
- package/dist/components/layout/appLayout/appLayout.js +43 -43
- package/dist/components/layout/appLayout/appLayout.js.map +1 -1
- package/dist/components/navigation/bottomBar/bottomBar.js +31 -30
- package/dist/components/navigation/bottomBar/bottomBar.js.map +1 -1
- package/dist/components/navigation/sidebar/sidebar.js +48 -47
- package/dist/components/navigation/sidebar/sidebar.js.map +1 -1
- package/dist/headless/components/layout/appLayout/appLayout.js +43 -43
- package/dist/headless/components/layout/appLayout/appLayout.js.map +1 -1
- package/dist/headless/components/navigation/bottomBar/bottomBar.js +31 -30
- package/dist/headless/components/navigation/bottomBar/bottomBar.js.map +1 -1
- package/dist/headless/components/navigation/sidebar/sidebar.js +48 -47
- package/dist/headless/components/navigation/sidebar/sidebar.js.map +1 -1
- package/dist/headless/source/components/base/animateHeight/animateHeight.jsx +177 -0
- package/dist/headless/source/components/base/animateHeight/animateHeight.jsx.map +1 -0
- package/dist/headless/source/components/base/animateHeight/index.js +6 -0
- package/dist/headless/source/components/base/animateHeight/index.js.map +7 -0
- package/dist/headless/source/components/base/icon/icon.jsx +60 -0
- package/dist/headless/source/components/base/icon/icon.jsx.map +1 -0
- package/dist/headless/source/components/base/icon/index.js +6 -0
- package/dist/headless/source/components/base/icon/index.js.map +7 -0
- package/dist/headless/source/components/base/ripple/index.js +6 -0
- package/dist/headless/source/components/base/ripple/index.js.map +7 -0
- package/dist/headless/source/components/base/ripple/ripple.jsx +63 -0
- package/dist/headless/source/components/base/ripple/ripple.jsx.map +1 -0
- package/dist/headless/source/components/clickAwayListener/clickAwayListener.jsx +73 -0
- package/dist/headless/source/components/clickAwayListener/clickAwayListener.jsx.map +1 -0
- package/dist/headless/source/components/clickAwayListener/index.js +6 -0
- package/dist/headless/source/components/clickAwayListener/index.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/accordion/accordion.jsx +82 -0
- package/dist/headless/source/components/dataDisplay/accordion/accordion.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/accordion/index.js +6 -0
- package/dist/headless/source/components/dataDisplay/accordion/index.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/avatar/avatar.jsx +95 -0
- package/dist/headless/source/components/dataDisplay/avatar/avatar.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/avatar/index.js +7 -0
- package/dist/headless/source/components/dataDisplay/avatar/index.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/badge/badge.jsx +56 -0
- package/dist/headless/source/components/dataDisplay/badge/badge.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/badge/index.js +6 -0
- package/dist/headless/source/components/dataDisplay/badge/index.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/card/card.jsx +54 -0
- package/dist/headless/source/components/dataDisplay/card/card.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/card/index.js +6 -0
- package/dist/headless/source/components/dataDisplay/card/index.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/carousel/carousel.jsx +407 -0
- package/dist/headless/source/components/dataDisplay/carousel/carousel.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/carousel/index.js +6 -0
- package/dist/headless/source/components/dataDisplay/carousel/index.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/carousel/utils.js +76 -0
- package/dist/headless/source/components/dataDisplay/carousel/utils.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/chat/chat.jsx +155 -0
- package/dist/headless/source/components/dataDisplay/chat/chat.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatAttachmentImage.jsx +53 -0
- package/dist/headless/source/components/dataDisplay/chat/chatAttachmentImage.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatAttachments.jsx +35 -0
- package/dist/headless/source/components/dataDisplay/chat/chatAttachments.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatComposer.jsx +170 -0
- package/dist/headless/source/components/dataDisplay/chat/chatComposer.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatHeader.jsx +55 -0
- package/dist/headless/source/components/dataDisplay/chat/chatHeader.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatIconButton.jsx +38 -0
- package/dist/headless/source/components/dataDisplay/chat/chatIconButton.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatLayout.jsx +121 -0
- package/dist/headless/source/components/dataDisplay/chat/chatLayout.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessageAvatar.jsx +19 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessageAvatar.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessageBubble.jsx +56 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessageBubble.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessageIncoming.jsx +21 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessageIncoming.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessageItem.jsx +56 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessageItem.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessageOutgoing.jsx +25 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessageOutgoing.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessageSkeleton.jsx +33 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessageSkeleton.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessageStatus.jsx +35 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessageStatus.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessageSystem.jsx +17 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessageSystem.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessages.jsx +63 -0
- package/dist/headless/source/components/dataDisplay/chat/chatMessages.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatOverlayLayout.jsx +60 -0
- package/dist/headless/source/components/dataDisplay/chat/chatOverlayLayout.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/chatShell.jsx +66 -0
- package/dist/headless/source/components/dataDisplay/chat/chatShell.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chat/index.js +82 -0
- package/dist/headless/source/components/dataDisplay/chat/index.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/chat/types.js +25 -0
- package/dist/headless/source/components/dataDisplay/chat/types.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/chat/useChatFileUpload.js +49 -0
- package/dist/headless/source/components/dataDisplay/chat/useChatFileUpload.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/chat/useChatInfiniteScroll.js +27 -0
- package/dist/headless/source/components/dataDisplay/chat/useChatInfiniteScroll.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/chat/useChatStickToBottom.js +54 -0
- package/dist/headless/source/components/dataDisplay/chat/useChatStickToBottom.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/chat/utils.js +103 -0
- package/dist/headless/source/components/dataDisplay/chat/utils.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/chip/chip.jsx +119 -0
- package/dist/headless/source/components/dataDisplay/chip/chip.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/chip/index.js +6 -0
- package/dist/headless/source/components/dataDisplay/chip/index.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/expansionPanel/expansionPanel.jsx +164 -0
- package/dist/headless/source/components/dataDisplay/expansionPanel/expansionPanel.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/expansionPanel/index.js +6 -0
- package/dist/headless/source/components/dataDisplay/expansionPanel/index.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/imagesList/imagesList.jsx +25 -0
- package/dist/headless/source/components/dataDisplay/imagesList/imagesList.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/imagesList/imagesList.types.js +1 -0
- package/dist/headless/source/components/dataDisplay/imagesList/imagesList.types.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/imagesList/imagesListContext.js +8 -0
- package/dist/headless/source/components/dataDisplay/imagesList/imagesListContext.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/imagesList/imagesListItem/imagesListItem.jsx +55 -0
- package/dist/headless/source/components/dataDisplay/imagesList/imagesListItem/imagesListItem.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/imagesList/imagesListItem/imagesListItemModal.jsx +30 -0
- package/dist/headless/source/components/dataDisplay/imagesList/imagesListItem/imagesListItemModal.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/imagesList/index.js +12 -0
- package/dist/headless/source/components/dataDisplay/imagesList/index.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/list/index.js +8 -0
- package/dist/headless/source/components/dataDisplay/list/index.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/list/list.jsx +24 -0
- package/dist/headless/source/components/dataDisplay/list/list.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/list/listItem.jsx +53 -0
- package/dist/headless/source/components/dataDisplay/list/listItem.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/table/index.js +17 -0
- package/dist/headless/source/components/dataDisplay/table/index.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/table/table.jsx +46 -0
- package/dist/headless/source/components/dataDisplay/table/table.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/table/tableBody.jsx +15 -0
- package/dist/headless/source/components/dataDisplay/table/tableBody.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/table/tableCell.jsx +16 -0
- package/dist/headless/source/components/dataDisplay/table/tableCell.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/table/tableHead.jsx +15 -0
- package/dist/headless/source/components/dataDisplay/table/tableHead.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/table/tableHeadCell.jsx +53 -0
- package/dist/headless/source/components/dataDisplay/table/tableHeadCell.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/table/tablePagination/tablePagination.jsx +47 -0
- package/dist/headless/source/components/dataDisplay/table/tablePagination/tablePagination.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/table/tableRow.jsx +25 -0
- package/dist/headless/source/components/dataDisplay/table/tableRow.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/treeView/index.js +6 -0
- package/dist/headless/source/components/dataDisplay/treeView/index.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/treeView/treeView.jsx +172 -0
- package/dist/headless/source/components/dataDisplay/treeView/treeView.jsx.map +1 -0
- package/dist/headless/source/components/dataDisplay/typography/index.js +6 -0
- package/dist/headless/source/components/dataDisplay/typography/index.js.map +7 -0
- package/dist/headless/source/components/dataDisplay/typography/typography.jsx +57 -0
- package/dist/headless/source/components/dataDisplay/typography/typography.jsx.map +1 -0
- package/dist/headless/source/components/feedBack/message/index.js +7 -0
- package/dist/headless/source/components/feedBack/message/index.js.map +7 -0
- package/dist/headless/source/components/feedBack/message/message.jsx +51 -0
- package/dist/headless/source/components/feedBack/message/message.jsx.map +1 -0
- package/dist/headless/source/components/feedBack/modal/index.js +6 -0
- package/dist/headless/source/components/feedBack/modal/index.js.map +7 -0
- package/dist/headless/source/components/feedBack/modal/modal.jsx +101 -0
- package/dist/headless/source/components/feedBack/modal/modal.jsx.map +1 -0
- package/dist/headless/source/components/feedBack/progressIndicator/index.js +7 -0
- package/dist/headless/source/components/feedBack/progressIndicator/index.js.map +7 -0
- package/dist/headless/source/components/feedBack/progressIndicator/progressIndicator.jsx +68 -0
- package/dist/headless/source/components/feedBack/progressIndicator/progressIndicator.jsx.map +1 -0
- package/dist/headless/source/components/feedBack/skeleton/index.js +6 -0
- package/dist/headless/source/components/feedBack/skeleton/index.js.map +7 -0
- package/dist/headless/source/components/feedBack/skeleton/skeleton.jsx +65 -0
- package/dist/headless/source/components/feedBack/skeleton/skeleton.jsx.map +1 -0
- package/dist/headless/source/components/feedBack/snackbar/index.js +10 -0
- package/dist/headless/source/components/feedBack/snackbar/index.js.map +7 -0
- package/dist/headless/source/components/feedBack/snackbar/snackbar.jsx +196 -0
- package/dist/headless/source/components/feedBack/snackbar/snackbar.jsx.map +1 -0
- package/dist/headless/source/components/feedBack/snackbar/useSnackbarsPortal.js +21 -0
- package/dist/headless/source/components/feedBack/snackbar/useSnackbarsPortal.js.map +7 -0
- package/dist/headless/source/components/feedBack/tooltip/index.js +6 -0
- package/dist/headless/source/components/feedBack/tooltip/index.js.map +7 -0
- package/dist/headless/source/components/feedBack/tooltip/tooltip.jsx +92 -0
- package/dist/headless/source/components/feedBack/tooltip/tooltip.jsx.map +1 -0
- package/dist/headless/source/components/inputs/button/button.jsx +101 -0
- package/dist/headless/source/components/inputs/button/button.jsx.map +1 -0
- package/dist/headless/source/components/inputs/button/index.js +6 -0
- package/dist/headless/source/components/inputs/button/index.js.map +7 -0
- package/dist/headless/source/components/inputs/buttonGroups/buttonGroup.jsx +72 -0
- package/dist/headless/source/components/inputs/buttonGroups/buttonGroup.jsx.map +1 -0
- package/dist/headless/source/components/inputs/buttonGroups/buttonGroupContext.js +8 -0
- package/dist/headless/source/components/inputs/buttonGroups/buttonGroupContext.js.map +7 -0
- package/dist/headless/source/components/inputs/buttonGroups/index.js +9 -0
- package/dist/headless/source/components/inputs/buttonGroups/index.js.map +7 -0
- package/dist/headless/source/components/inputs/checkbox/checkbox.jsx +86 -0
- package/dist/headless/source/components/inputs/checkbox/checkbox.jsx.map +1 -0
- package/dist/headless/source/components/inputs/checkbox/index.js +6 -0
- package/dist/headless/source/components/inputs/checkbox/index.js.map +7 -0
- package/dist/headless/source/components/inputs/datePicker/dataPickerDays.jsx +87 -0
- package/dist/headless/source/components/inputs/datePicker/dataPickerDays.jsx.map +1 -0
- package/dist/headless/source/components/inputs/datePicker/dataPickerHeader.jsx +40 -0
- package/dist/headless/source/components/inputs/datePicker/dataPickerHeader.jsx.map +1 -0
- package/dist/headless/source/components/inputs/datePicker/dataPickerInput.jsx +57 -0
- package/dist/headless/source/components/inputs/datePicker/dataPickerInput.jsx.map +1 -0
- package/dist/headless/source/components/inputs/datePicker/dateFormat.js +89 -0
- package/dist/headless/source/components/inputs/datePicker/dateFormat.js.map +7 -0
- package/dist/headless/source/components/inputs/datePicker/datePicker.jsx +241 -0
- package/dist/headless/source/components/inputs/datePicker/datePicker.jsx.map +1 -0
- package/dist/headless/source/components/inputs/datePicker/datePickerActionLabel.jsx +48 -0
- package/dist/headless/source/components/inputs/datePicker/datePickerActionLabel.jsx.map +1 -0
- package/dist/headless/source/components/inputs/datePicker/datePickerDay.jsx +52 -0
- package/dist/headless/source/components/inputs/datePicker/datePickerDay.jsx.map +1 -0
- package/dist/headless/source/components/inputs/datePicker/datePickerIconButton.jsx +36 -0
- package/dist/headless/source/components/inputs/datePicker/datePickerIconButton.jsx.map +1 -0
- package/dist/headless/source/components/inputs/datePicker/datePickerList.jsx +44 -0
- package/dist/headless/source/components/inputs/datePicker/datePickerList.jsx.map +1 -0
- package/dist/headless/source/components/inputs/datePicker/dateUtils.js +232 -0
- package/dist/headless/source/components/inputs/datePicker/dateUtils.js.map +7 -0
- package/dist/headless/source/components/inputs/datePicker/index.js +24 -0
- package/dist/headless/source/components/inputs/datePicker/index.js.map +7 -0
- package/dist/headless/source/components/inputs/datePicker/openView.js +10 -0
- package/dist/headless/source/components/inputs/datePicker/openView.js.map +7 -0
- package/dist/headless/source/components/inputs/datePicker/useDateInput.js +56 -0
- package/dist/headless/source/components/inputs/datePicker/useDateInput.js.map +7 -0
- package/dist/headless/source/components/inputs/dateTimePicker/dateTimeFormat.js +119 -0
- package/dist/headless/source/components/inputs/dateTimePicker/dateTimeFormat.js.map +7 -0
- package/dist/headless/source/components/inputs/dateTimePicker/dateTimePicker.jsx +200 -0
- package/dist/headless/source/components/inputs/dateTimePicker/dateTimePicker.jsx.map +1 -0
- package/dist/headless/source/components/inputs/dateTimePicker/dateTimePickerInput.jsx +57 -0
- package/dist/headless/source/components/inputs/dateTimePicker/dateTimePickerInput.jsx.map +1 -0
- package/dist/headless/source/components/inputs/dateTimePicker/index.js +20 -0
- package/dist/headless/source/components/inputs/dateTimePicker/index.js.map +7 -0
- package/dist/headless/source/components/inputs/dateTimePicker/useDateTimeInput.js +85 -0
- package/dist/headless/source/components/inputs/dateTimePicker/useDateTimeInput.js.map +7 -0
- package/dist/headless/source/components/inputs/fileDrop/countPreview.jsx +17 -0
- package/dist/headless/source/components/inputs/fileDrop/countPreview.jsx.map +1 -0
- package/dist/headless/source/components/inputs/fileDrop/fileDrop.jsx +72 -0
- package/dist/headless/source/components/inputs/fileDrop/fileDrop.jsx.map +1 -0
- package/dist/headless/source/components/inputs/fileDrop/index.js +14 -0
- package/dist/headless/source/components/inputs/fileDrop/index.js.map +7 -0
- package/dist/headless/source/components/inputs/fileDrop/preview.jsx +41 -0
- package/dist/headless/source/components/inputs/fileDrop/preview.jsx.map +1 -0
- package/dist/headless/source/components/inputs/fileDrop/previewWrapper.jsx +27 -0
- package/dist/headless/source/components/inputs/fileDrop/previewWrapper.jsx.map +1 -0
- package/dist/headless/source/components/inputs/fileDrop/utils.js +7 -0
- package/dist/headless/source/components/inputs/fileDrop/utils.js.map +7 -0
- package/dist/headless/source/components/inputs/fileInput/fileInput.jsx +46 -0
- package/dist/headless/source/components/inputs/fileInput/fileInput.jsx.map +1 -0
- package/dist/headless/source/components/inputs/fileInput/index.js +6 -0
- package/dist/headless/source/components/inputs/fileInput/index.js.map +7 -0
- package/dist/headless/source/components/inputs/floatingButton/floatingButton.jsx +30 -0
- package/dist/headless/source/components/inputs/floatingButton/floatingButton.jsx.map +1 -0
- package/dist/headless/source/components/inputs/floatingButton/index.js +6 -0
- package/dist/headless/source/components/inputs/floatingButton/index.js.map +7 -0
- package/dist/headless/source/components/inputs/radioButton/index.js +6 -0
- package/dist/headless/source/components/inputs/radioButton/index.js.map +7 -0
- package/dist/headless/source/components/inputs/radioButton/radioButton.jsx +75 -0
- package/dist/headless/source/components/inputs/radioButton/radioButton.jsx.map +1 -0
- package/dist/headless/source/components/inputs/rating/index.js +6 -0
- package/dist/headless/source/components/inputs/rating/index.js.map +7 -0
- package/dist/headless/source/components/inputs/rating/rating.jsx +124 -0
- package/dist/headless/source/components/inputs/rating/rating.jsx.map +1 -0
- package/dist/headless/source/components/inputs/selectField/dropdownMenu.jsx +141 -0
- package/dist/headless/source/components/inputs/selectField/dropdownMenu.jsx.map +1 -0
- package/dist/headless/source/components/inputs/selectField/index.js +8 -0
- package/dist/headless/source/components/inputs/selectField/index.js.map +7 -0
- package/dist/headless/source/components/inputs/selectField/selectField.jsx +272 -0
- package/dist/headless/source/components/inputs/selectField/selectField.jsx.map +1 -0
- package/dist/headless/source/components/inputs/slider/index.js +6 -0
- package/dist/headless/source/components/inputs/slider/index.js.map +7 -0
- package/dist/headless/source/components/inputs/slider/slider.jsx +404 -0
- package/dist/headless/source/components/inputs/slider/slider.jsx.map +1 -0
- package/dist/headless/source/components/inputs/slider/utils.js +49 -0
- package/dist/headless/source/components/inputs/slider/utils.js.map +7 -0
- package/dist/headless/source/components/inputs/textField/index.js +9 -0
- package/dist/headless/source/components/inputs/textField/index.js.map +7 -0
- package/dist/headless/source/components/inputs/textField/textField.jsx +137 -0
- package/dist/headless/source/components/inputs/textField/textField.jsx.map +1 -0
- package/dist/headless/source/components/inputs/textField/textFieldAdornment.jsx +31 -0
- package/dist/headless/source/components/inputs/textField/textFieldAdornment.jsx.map +1 -0
- package/dist/headless/source/components/inputs/textField/textFieldWrapper.jsx +83 -0
- package/dist/headless/source/components/inputs/textField/textFieldWrapper.jsx.map +1 -0
- package/dist/headless/source/components/inputs/textField/types.js +1 -0
- package/dist/headless/source/components/inputs/textField/types.js.map +7 -0
- package/dist/headless/source/components/inputs/textField/utils.js +13 -0
- package/dist/headless/source/components/inputs/textField/utils.js.map +7 -0
- package/dist/headless/source/components/inputs/timePicker/index.js +14 -0
- package/dist/headless/source/components/inputs/timePicker/index.js.map +7 -0
- package/dist/headless/source/components/inputs/timePicker/timeFormat.js +78 -0
- package/dist/headless/source/components/inputs/timePicker/timeFormat.js.map +7 -0
- package/dist/headless/source/components/inputs/timePicker/timePicker.jsx +114 -0
- package/dist/headless/source/components/inputs/timePicker/timePicker.jsx.map +1 -0
- package/dist/headless/source/components/inputs/timePicker/timePickerColumns.jsx +42 -0
- package/dist/headless/source/components/inputs/timePicker/timePickerColumns.jsx.map +1 -0
- package/dist/headless/source/components/inputs/timePicker/timePickerInput.jsx +57 -0
- package/dist/headless/source/components/inputs/timePicker/timePickerInput.jsx.map +1 -0
- package/dist/headless/source/components/inputs/timePicker/timePickerList.jsx +36 -0
- package/dist/headless/source/components/inputs/timePicker/timePickerList.jsx.map +1 -0
- package/dist/headless/source/components/inputs/timePicker/timeUtils.js +96 -0
- package/dist/headless/source/components/inputs/timePicker/timeUtils.js.map +7 -0
- package/dist/headless/source/components/inputs/timePicker/useTimeInput.js +57 -0
- package/dist/headless/source/components/inputs/timePicker/useTimeInput.js.map +7 -0
- package/dist/headless/source/components/inputs/toggle/index.js +6 -0
- package/dist/headless/source/components/inputs/toggle/index.js.map +7 -0
- package/dist/headless/source/components/inputs/toggle/toggle.jsx +77 -0
- package/dist/headless/source/components/inputs/toggle/toggle.jsx.map +1 -0
- package/dist/headless/source/components/layout/appLayout/appLayout.jsx +104 -0
- package/dist/headless/source/components/layout/appLayout/appLayout.jsx.map +1 -0
- package/dist/headless/source/components/layout/appLayout/index.js +6 -0
- package/dist/headless/source/components/layout/appLayout/index.js.map +7 -0
- package/dist/headless/source/components/layout/divider/divider.jsx +68 -0
- package/dist/headless/source/components/layout/divider/divider.jsx.map +1 -0
- package/dist/headless/source/components/layout/divider/index.js +6 -0
- package/dist/headless/source/components/layout/divider/index.js.map +7 -0
- package/dist/headless/source/components/layout/grid/grid.jsx +112 -0
- package/dist/headless/source/components/layout/grid/grid.jsx.map +1 -0
- package/dist/headless/source/components/layout/grid/index.js +8 -0
- package/dist/headless/source/components/layout/grid/index.js.map +7 -0
- package/dist/headless/source/components/layout/page/index.js +6 -0
- package/dist/headless/source/components/layout/page/index.js.map +7 -0
- package/dist/headless/source/components/layout/page/page.jsx +28 -0
- package/dist/headless/source/components/layout/page/page.jsx.map +1 -0
- package/dist/headless/source/components/layout/pageHeader/index.js +6 -0
- package/dist/headless/source/components/layout/pageHeader/index.js.map +7 -0
- package/dist/headless/source/components/layout/pageHeader/pageHeader.jsx +52 -0
- package/dist/headless/source/components/layout/pageHeader/pageHeader.jsx.map +1 -0
- package/dist/headless/source/components/layout/screenDivider/index.js +6 -0
- package/dist/headless/source/components/layout/screenDivider/index.js.map +7 -0
- package/dist/headless/source/components/layout/screenDivider/screenDivider.jsx +129 -0
- package/dist/headless/source/components/layout/screenDivider/screenDivider.jsx.map +1 -0
- package/dist/headless/source/components/layout/sheet/index.js +6 -0
- package/dist/headless/source/components/layout/sheet/index.js.map +7 -0
- package/dist/headless/source/components/layout/sheet/sheet.jsx +261 -0
- package/dist/headless/source/components/layout/sheet/sheet.jsx.map +1 -0
- package/dist/headless/source/components/layout/stack/index.js +6 -0
- package/dist/headless/source/components/layout/stack/index.js.map +7 -0
- package/dist/headless/source/components/layout/stack/stack.jsx +53 -0
- package/dist/headless/source/components/layout/stack/stack.jsx.map +1 -0
- package/dist/headless/source/components/navigation/appBar/appBar.jsx +65 -0
- package/dist/headless/source/components/navigation/appBar/appBar.jsx.map +1 -0
- package/dist/headless/source/components/navigation/appBar/index.js +6 -0
- package/dist/headless/source/components/navigation/appBar/index.js.map +7 -0
- package/dist/headless/source/components/navigation/bottomBar/bottomBar.jsx +135 -0
- package/dist/headless/source/components/navigation/bottomBar/bottomBar.jsx.map +1 -0
- package/dist/headless/source/components/navigation/bottomBar/index.js +6 -0
- package/dist/headless/source/components/navigation/bottomBar/index.js.map +7 -0
- package/dist/headless/source/components/navigation/breadcrumbs/breadcrumbs.jsx +62 -0
- package/dist/headless/source/components/navigation/breadcrumbs/breadcrumbs.jsx.map +1 -0
- package/dist/headless/source/components/navigation/breadcrumbs/index.js +6 -0
- package/dist/headless/source/components/navigation/breadcrumbs/index.js.map +7 -0
- package/dist/headless/source/components/navigation/menu/index.js +23 -0
- package/dist/headless/source/components/navigation/menu/index.js.map +7 -0
- package/dist/headless/source/components/navigation/menu/menu.jsx +27 -0
- package/dist/headless/source/components/navigation/menu/menu.jsx.map +1 -0
- package/dist/headless/source/components/navigation/menu/menuComponent.jsx +18 -0
- package/dist/headless/source/components/navigation/menu/menuComponent.jsx.map +1 -0
- package/dist/headless/source/components/navigation/menu/menuContext.js +14 -0
- package/dist/headless/source/components/navigation/menu/menuContext.js.map +7 -0
- package/dist/headless/source/components/navigation/menu/menuDivider.jsx +19 -0
- package/dist/headless/source/components/navigation/menu/menuDivider.jsx.map +1 -0
- package/dist/headless/source/components/navigation/menu/menuFloating.jsx +84 -0
- package/dist/headless/source/components/navigation/menu/menuFloating.jsx.map +1 -0
- package/dist/headless/source/components/navigation/menu/menuItem.jsx +68 -0
- package/dist/headless/source/components/navigation/menu/menuItem.jsx.map +1 -0
- package/dist/headless/source/components/navigation/menu/menuItemIcon.jsx +25 -0
- package/dist/headless/source/components/navigation/menu/menuItemIcon.jsx.map +1 -0
- package/dist/headless/source/components/navigation/menu/menuItemText.jsx +25 -0
- package/dist/headless/source/components/navigation/menu/menuItemText.jsx.map +1 -0
- package/dist/headless/source/components/navigation/menu/menuList.jsx +46 -0
- package/dist/headless/source/components/navigation/menu/menuList.jsx.map +1 -0
- package/dist/headless/source/components/navigation/menu/menuSubmenu.jsx +86 -0
- package/dist/headless/source/components/navigation/menu/menuSubmenu.jsx.map +1 -0
- package/dist/headless/source/components/navigation/pagination/index.js +6 -0
- package/dist/headless/source/components/navigation/pagination/index.js.map +7 -0
- package/dist/headless/source/components/navigation/pagination/pagination.jsx +142 -0
- package/dist/headless/source/components/navigation/pagination/pagination.jsx.map +1 -0
- package/dist/headless/source/components/navigation/sidebar/index.js +6 -0
- package/dist/headless/source/components/navigation/sidebar/index.js.map +7 -0
- package/dist/headless/source/components/navigation/sidebar/sidebar.jsx +115 -0
- package/dist/headless/source/components/navigation/sidebar/sidebar.jsx.map +1 -0
- package/dist/headless/source/components/navigation/stepper/index.js +6 -0
- package/dist/headless/source/components/navigation/stepper/index.js.map +7 -0
- package/dist/headless/source/components/navigation/stepper/stepper.jsx +82 -0
- package/dist/headless/source/components/navigation/stepper/stepper.jsx.map +1 -0
- package/dist/headless/source/components/navigation/tabs/index.js +10 -0
- package/dist/headless/source/components/navigation/tabs/index.js.map +7 -0
- package/dist/headless/source/components/navigation/tabs/tab/tab.jsx +75 -0
- package/dist/headless/source/components/navigation/tabs/tab/tab.jsx.map +1 -0
- package/dist/headless/source/components/navigation/tabs/tabs.jsx +141 -0
- package/dist/headless/source/components/navigation/tabs/tabs.jsx.map +1 -0
- package/dist/headless/source/components/navigation/tabs/tabsContext.js +8 -0
- package/dist/headless/source/components/navigation/tabs/tabsContext.js.map +7 -0
- package/dist/headless/source/index.js +309 -0
- package/dist/headless/source/index.js.map +7 -0
- package/dist/headless/source/primitives/callHandler.js +12 -0
- package/dist/headless/source/primitives/callHandler.js.map +7 -0
- package/dist/headless/source/primitives/createControllableState.js +19 -0
- package/dist/headless/source/primitives/createControllableState.js.map +7 -0
- package/dist/headless/source/primitives/createCssTransition.js +59 -0
- package/dist/headless/source/primitives/createCssTransition.js.map +7 -0
- package/dist/headless/source/primitives/createDropzone.js +46 -0
- package/dist/headless/source/primitives/createDropzone.js.map +7 -0
- package/dist/headless/source/primitives/createFloating.js +48 -0
- package/dist/headless/source/primitives/createFloating.js.map +7 -0
- package/dist/headless/source/primitives/createFocusTrap.js +50 -0
- package/dist/headless/source/primitives/createFocusTrap.js.map +7 -0
- package/dist/headless/source/primitives/createId.js +9 -0
- package/dist/headless/source/primitives/createId.js.map +7 -0
- package/dist/headless/source/primitives/createMaskedInput.js +35 -0
- package/dist/headless/source/primitives/createMaskedInput.js.map +7 -0
- package/dist/headless/source/primitives/createTheme.js +51 -0
- package/dist/headless/source/primitives/createTheme.js.map +7 -0
- package/dist/headless/source/primitives/createVirtualList.js +19 -0
- package/dist/headless/source/primitives/createVirtualList.js.map +7 -0
- package/dist/headless/source/primitives/mergeRefs.js +13 -0
- package/dist/headless/source/primitives/mergeRefs.js.map +7 -0
- package/dist/headless/source/utils/animate.js +35 -0
- package/dist/headless/source/utils/animate.js.map +7 -0
- package/dist/headless/source/utils/debounce.js +23 -0
- package/dist/headless/source/utils/debounce.js.map +7 -0
- package/dist/headless/source/utils/floating.js +42 -0
- package/dist/headless/source/utils/floating.js.map +7 -0
- package/dist/headless/source/utils/throttle.js +41 -0
- package/dist/headless/source/utils/throttle.js.map +7 -0
- package/dist/source/components/base/animateHeight/animateHeight.jsx +177 -0
- package/dist/source/components/base/animateHeight/animateHeight.jsx.map +1 -0
- package/dist/source/components/base/animateHeight/index.js +6 -0
- package/dist/source/components/base/animateHeight/index.js.map +7 -0
- package/dist/source/components/base/icon/icon.jsx +61 -0
- package/dist/source/components/base/icon/icon.jsx.map +1 -0
- package/dist/source/components/base/icon/index.js +6 -0
- package/dist/source/components/base/icon/index.js.map +7 -0
- package/dist/source/components/base/ripple/index.js +6 -0
- package/dist/source/components/base/ripple/index.js.map +7 -0
- package/dist/source/components/base/ripple/ripple.jsx +64 -0
- package/dist/source/components/base/ripple/ripple.jsx.map +1 -0
- package/dist/source/components/clickAwayListener/clickAwayListener.jsx +73 -0
- package/dist/source/components/clickAwayListener/clickAwayListener.jsx.map +1 -0
- package/dist/source/components/clickAwayListener/index.js +6 -0
- package/dist/source/components/clickAwayListener/index.js.map +7 -0
- package/dist/source/components/dataDisplay/accordion/accordion.jsx +83 -0
- package/dist/source/components/dataDisplay/accordion/accordion.jsx.map +1 -0
- package/dist/source/components/dataDisplay/accordion/index.js +6 -0
- package/dist/source/components/dataDisplay/accordion/index.js.map +7 -0
- package/dist/source/components/dataDisplay/avatar/avatar.jsx +96 -0
- package/dist/source/components/dataDisplay/avatar/avatar.jsx.map +1 -0
- package/dist/source/components/dataDisplay/avatar/index.js +7 -0
- package/dist/source/components/dataDisplay/avatar/index.js.map +7 -0
- package/dist/source/components/dataDisplay/badge/badge.jsx +57 -0
- package/dist/source/components/dataDisplay/badge/badge.jsx.map +1 -0
- package/dist/source/components/dataDisplay/badge/index.js +6 -0
- package/dist/source/components/dataDisplay/badge/index.js.map +7 -0
- package/dist/source/components/dataDisplay/card/card.jsx +55 -0
- package/dist/source/components/dataDisplay/card/card.jsx.map +1 -0
- package/dist/source/components/dataDisplay/card/index.js +6 -0
- package/dist/source/components/dataDisplay/card/index.js.map +7 -0
- package/dist/source/components/dataDisplay/carousel/carousel.jsx +408 -0
- package/dist/source/components/dataDisplay/carousel/carousel.jsx.map +1 -0
- package/dist/source/components/dataDisplay/carousel/index.js +6 -0
- package/dist/source/components/dataDisplay/carousel/index.js.map +7 -0
- package/dist/source/components/dataDisplay/carousel/utils.js +76 -0
- package/dist/source/components/dataDisplay/carousel/utils.js.map +7 -0
- package/dist/source/components/dataDisplay/chat/chat.jsx +156 -0
- package/dist/source/components/dataDisplay/chat/chat.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatAttachmentImage.jsx +53 -0
- package/dist/source/components/dataDisplay/chat/chatAttachmentImage.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatAttachments.jsx +35 -0
- package/dist/source/components/dataDisplay/chat/chatAttachments.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatComposer.jsx +170 -0
- package/dist/source/components/dataDisplay/chat/chatComposer.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatHeader.jsx +55 -0
- package/dist/source/components/dataDisplay/chat/chatHeader.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatIconButton.jsx +38 -0
- package/dist/source/components/dataDisplay/chat/chatIconButton.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatLayout.jsx +121 -0
- package/dist/source/components/dataDisplay/chat/chatLayout.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatMessageAvatar.jsx +19 -0
- package/dist/source/components/dataDisplay/chat/chatMessageAvatar.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatMessageBubble.jsx +56 -0
- package/dist/source/components/dataDisplay/chat/chatMessageBubble.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatMessageIncoming.jsx +21 -0
- package/dist/source/components/dataDisplay/chat/chatMessageIncoming.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatMessageItem.jsx +56 -0
- package/dist/source/components/dataDisplay/chat/chatMessageItem.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatMessageOutgoing.jsx +25 -0
- package/dist/source/components/dataDisplay/chat/chatMessageOutgoing.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatMessageSkeleton.jsx +33 -0
- package/dist/source/components/dataDisplay/chat/chatMessageSkeleton.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatMessageStatus.jsx +35 -0
- package/dist/source/components/dataDisplay/chat/chatMessageStatus.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatMessageSystem.jsx +17 -0
- package/dist/source/components/dataDisplay/chat/chatMessageSystem.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatMessages.jsx +63 -0
- package/dist/source/components/dataDisplay/chat/chatMessages.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatOverlayLayout.jsx +60 -0
- package/dist/source/components/dataDisplay/chat/chatOverlayLayout.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/chatShell.jsx +66 -0
- package/dist/source/components/dataDisplay/chat/chatShell.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chat/index.js +82 -0
- package/dist/source/components/dataDisplay/chat/index.js.map +7 -0
- package/dist/source/components/dataDisplay/chat/types.js +25 -0
- package/dist/source/components/dataDisplay/chat/types.js.map +7 -0
- package/dist/source/components/dataDisplay/chat/useChatFileUpload.js +49 -0
- package/dist/source/components/dataDisplay/chat/useChatFileUpload.js.map +7 -0
- package/dist/source/components/dataDisplay/chat/useChatInfiniteScroll.js +27 -0
- package/dist/source/components/dataDisplay/chat/useChatInfiniteScroll.js.map +7 -0
- package/dist/source/components/dataDisplay/chat/useChatStickToBottom.js +54 -0
- package/dist/source/components/dataDisplay/chat/useChatStickToBottom.js.map +7 -0
- package/dist/source/components/dataDisplay/chat/utils.js +103 -0
- package/dist/source/components/dataDisplay/chat/utils.js.map +7 -0
- package/dist/source/components/dataDisplay/chip/chip.jsx +120 -0
- package/dist/source/components/dataDisplay/chip/chip.jsx.map +1 -0
- package/dist/source/components/dataDisplay/chip/index.js +6 -0
- package/dist/source/components/dataDisplay/chip/index.js.map +7 -0
- package/dist/source/components/dataDisplay/expansionPanel/expansionPanel.jsx +165 -0
- package/dist/source/components/dataDisplay/expansionPanel/expansionPanel.jsx.map +1 -0
- package/dist/source/components/dataDisplay/expansionPanel/index.js +6 -0
- package/dist/source/components/dataDisplay/expansionPanel/index.js.map +7 -0
- package/dist/source/components/dataDisplay/imagesList/imagesList.jsx +26 -0
- package/dist/source/components/dataDisplay/imagesList/imagesList.jsx.map +1 -0
- package/dist/source/components/dataDisplay/imagesList/imagesList.types.js +1 -0
- package/dist/source/components/dataDisplay/imagesList/imagesList.types.js.map +7 -0
- package/dist/source/components/dataDisplay/imagesList/imagesListContext.js +8 -0
- package/dist/source/components/dataDisplay/imagesList/imagesListContext.js.map +7 -0
- package/dist/source/components/dataDisplay/imagesList/imagesListItem/imagesListItem.jsx +56 -0
- package/dist/source/components/dataDisplay/imagesList/imagesListItem/imagesListItem.jsx.map +1 -0
- package/dist/source/components/dataDisplay/imagesList/imagesListItem/imagesListItemModal.jsx +30 -0
- package/dist/source/components/dataDisplay/imagesList/imagesListItem/imagesListItemModal.jsx.map +1 -0
- package/dist/source/components/dataDisplay/imagesList/index.js +12 -0
- package/dist/source/components/dataDisplay/imagesList/index.js.map +7 -0
- package/dist/source/components/dataDisplay/list/index.js +8 -0
- package/dist/source/components/dataDisplay/list/index.js.map +7 -0
- package/dist/source/components/dataDisplay/list/list.jsx +25 -0
- package/dist/source/components/dataDisplay/list/list.jsx.map +1 -0
- package/dist/source/components/dataDisplay/list/listItem.jsx +53 -0
- package/dist/source/components/dataDisplay/list/listItem.jsx.map +1 -0
- package/dist/source/components/dataDisplay/table/index.js +17 -0
- package/dist/source/components/dataDisplay/table/index.js.map +7 -0
- package/dist/source/components/dataDisplay/table/table.jsx +47 -0
- package/dist/source/components/dataDisplay/table/table.jsx.map +1 -0
- package/dist/source/components/dataDisplay/table/tableBody.jsx +15 -0
- package/dist/source/components/dataDisplay/table/tableBody.jsx.map +1 -0
- package/dist/source/components/dataDisplay/table/tableCell.jsx +16 -0
- package/dist/source/components/dataDisplay/table/tableCell.jsx.map +1 -0
- package/dist/source/components/dataDisplay/table/tableHead.jsx +15 -0
- package/dist/source/components/dataDisplay/table/tableHead.jsx.map +1 -0
- package/dist/source/components/dataDisplay/table/tableHeadCell.jsx +53 -0
- package/dist/source/components/dataDisplay/table/tableHeadCell.jsx.map +1 -0
- package/dist/source/components/dataDisplay/table/tablePagination/tablePagination.jsx +48 -0
- package/dist/source/components/dataDisplay/table/tablePagination/tablePagination.jsx.map +1 -0
- package/dist/source/components/dataDisplay/table/tableRow.jsx +25 -0
- package/dist/source/components/dataDisplay/table/tableRow.jsx.map +1 -0
- package/dist/source/components/dataDisplay/treeView/index.js +6 -0
- package/dist/source/components/dataDisplay/treeView/index.js.map +7 -0
- package/dist/source/components/dataDisplay/treeView/treeView.jsx +173 -0
- package/dist/source/components/dataDisplay/treeView/treeView.jsx.map +1 -0
- package/dist/source/components/dataDisplay/typography/index.js +6 -0
- package/dist/source/components/dataDisplay/typography/index.js.map +7 -0
- package/dist/source/components/dataDisplay/typography/typography.jsx +58 -0
- package/dist/source/components/dataDisplay/typography/typography.jsx.map +1 -0
- package/dist/source/components/feedBack/message/index.js +7 -0
- package/dist/source/components/feedBack/message/index.js.map +7 -0
- package/dist/source/components/feedBack/message/message.jsx +52 -0
- package/dist/source/components/feedBack/message/message.jsx.map +1 -0
- package/dist/source/components/feedBack/modal/index.js +6 -0
- package/dist/source/components/feedBack/modal/index.js.map +7 -0
- package/dist/source/components/feedBack/modal/modal.jsx +102 -0
- package/dist/source/components/feedBack/modal/modal.jsx.map +1 -0
- package/dist/source/components/feedBack/progressIndicator/index.js +7 -0
- package/dist/source/components/feedBack/progressIndicator/index.js.map +7 -0
- package/dist/source/components/feedBack/progressIndicator/progressIndicator.jsx +69 -0
- package/dist/source/components/feedBack/progressIndicator/progressIndicator.jsx.map +1 -0
- package/dist/source/components/feedBack/skeleton/index.js +6 -0
- package/dist/source/components/feedBack/skeleton/index.js.map +7 -0
- package/dist/source/components/feedBack/skeleton/skeleton.jsx +66 -0
- package/dist/source/components/feedBack/skeleton/skeleton.jsx.map +1 -0
- package/dist/source/components/feedBack/snackbar/index.js +10 -0
- package/dist/source/components/feedBack/snackbar/index.js.map +7 -0
- package/dist/source/components/feedBack/snackbar/snackbar.jsx +197 -0
- package/dist/source/components/feedBack/snackbar/snackbar.jsx.map +1 -0
- package/dist/source/components/feedBack/snackbar/useSnackbarsPortal.js +21 -0
- package/dist/source/components/feedBack/snackbar/useSnackbarsPortal.js.map +7 -0
- package/dist/source/components/feedBack/tooltip/index.js +6 -0
- package/dist/source/components/feedBack/tooltip/index.js.map +7 -0
- package/dist/source/components/feedBack/tooltip/tooltip.jsx +93 -0
- package/dist/source/components/feedBack/tooltip/tooltip.jsx.map +1 -0
- package/dist/source/components/inputs/button/button.jsx +102 -0
- package/dist/source/components/inputs/button/button.jsx.map +1 -0
- package/dist/source/components/inputs/button/index.js +6 -0
- package/dist/source/components/inputs/button/index.js.map +7 -0
- package/dist/source/components/inputs/buttonGroups/buttonGroup.jsx +73 -0
- package/dist/source/components/inputs/buttonGroups/buttonGroup.jsx.map +1 -0
- package/dist/source/components/inputs/buttonGroups/buttonGroupContext.js +8 -0
- package/dist/source/components/inputs/buttonGroups/buttonGroupContext.js.map +7 -0
- package/dist/source/components/inputs/buttonGroups/index.js +9 -0
- package/dist/source/components/inputs/buttonGroups/index.js.map +7 -0
- package/dist/source/components/inputs/checkbox/checkbox.jsx +87 -0
- package/dist/source/components/inputs/checkbox/checkbox.jsx.map +1 -0
- package/dist/source/components/inputs/checkbox/index.js +6 -0
- package/dist/source/components/inputs/checkbox/index.js.map +7 -0
- package/dist/source/components/inputs/datePicker/dataPickerDays.jsx +87 -0
- package/dist/source/components/inputs/datePicker/dataPickerDays.jsx.map +1 -0
- package/dist/source/components/inputs/datePicker/dataPickerHeader.jsx +40 -0
- package/dist/source/components/inputs/datePicker/dataPickerHeader.jsx.map +1 -0
- package/dist/source/components/inputs/datePicker/dataPickerInput.jsx +57 -0
- package/dist/source/components/inputs/datePicker/dataPickerInput.jsx.map +1 -0
- package/dist/source/components/inputs/datePicker/dateFormat.js +89 -0
- package/dist/source/components/inputs/datePicker/dateFormat.js.map +7 -0
- package/dist/source/components/inputs/datePicker/datePicker.jsx +242 -0
- package/dist/source/components/inputs/datePicker/datePicker.jsx.map +1 -0
- package/dist/source/components/inputs/datePicker/datePickerActionLabel.jsx +48 -0
- package/dist/source/components/inputs/datePicker/datePickerActionLabel.jsx.map +1 -0
- package/dist/source/components/inputs/datePicker/datePickerDay.jsx +52 -0
- package/dist/source/components/inputs/datePicker/datePickerDay.jsx.map +1 -0
- package/dist/source/components/inputs/datePicker/datePickerIconButton.jsx +36 -0
- package/dist/source/components/inputs/datePicker/datePickerIconButton.jsx.map +1 -0
- package/dist/source/components/inputs/datePicker/datePickerList.jsx +44 -0
- package/dist/source/components/inputs/datePicker/datePickerList.jsx.map +1 -0
- package/dist/source/components/inputs/datePicker/dateUtils.js +232 -0
- package/dist/source/components/inputs/datePicker/dateUtils.js.map +7 -0
- package/dist/source/components/inputs/datePicker/index.js +24 -0
- package/dist/source/components/inputs/datePicker/index.js.map +7 -0
- package/dist/source/components/inputs/datePicker/openView.js +10 -0
- package/dist/source/components/inputs/datePicker/openView.js.map +7 -0
- package/dist/source/components/inputs/datePicker/useDateInput.js +56 -0
- package/dist/source/components/inputs/datePicker/useDateInput.js.map +7 -0
- package/dist/source/components/inputs/dateTimePicker/dateTimeFormat.js +119 -0
- package/dist/source/components/inputs/dateTimePicker/dateTimeFormat.js.map +7 -0
- package/dist/source/components/inputs/dateTimePicker/dateTimePicker.jsx +200 -0
- package/dist/source/components/inputs/dateTimePicker/dateTimePicker.jsx.map +1 -0
- package/dist/source/components/inputs/dateTimePicker/dateTimePickerInput.jsx +57 -0
- package/dist/source/components/inputs/dateTimePicker/dateTimePickerInput.jsx.map +1 -0
- package/dist/source/components/inputs/dateTimePicker/index.js +20 -0
- package/dist/source/components/inputs/dateTimePicker/index.js.map +7 -0
- package/dist/source/components/inputs/dateTimePicker/useDateTimeInput.js +85 -0
- package/dist/source/components/inputs/dateTimePicker/useDateTimeInput.js.map +7 -0
- package/dist/source/components/inputs/fileDrop/countPreview.jsx +17 -0
- package/dist/source/components/inputs/fileDrop/countPreview.jsx.map +1 -0
- package/dist/source/components/inputs/fileDrop/fileDrop.jsx +73 -0
- package/dist/source/components/inputs/fileDrop/fileDrop.jsx.map +1 -0
- package/dist/source/components/inputs/fileDrop/index.js +14 -0
- package/dist/source/components/inputs/fileDrop/index.js.map +7 -0
- package/dist/source/components/inputs/fileDrop/preview.jsx +41 -0
- package/dist/source/components/inputs/fileDrop/preview.jsx.map +1 -0
- package/dist/source/components/inputs/fileDrop/previewWrapper.jsx +27 -0
- package/dist/source/components/inputs/fileDrop/previewWrapper.jsx.map +1 -0
- package/dist/source/components/inputs/fileDrop/utils.js +7 -0
- package/dist/source/components/inputs/fileDrop/utils.js.map +7 -0
- package/dist/source/components/inputs/fileInput/fileInput.jsx +47 -0
- package/dist/source/components/inputs/fileInput/fileInput.jsx.map +1 -0
- package/dist/source/components/inputs/fileInput/index.js +6 -0
- package/dist/source/components/inputs/fileInput/index.js.map +7 -0
- package/dist/source/components/inputs/floatingButton/floatingButton.jsx +31 -0
- package/dist/source/components/inputs/floatingButton/floatingButton.jsx.map +1 -0
- package/dist/source/components/inputs/floatingButton/index.js +6 -0
- package/dist/source/components/inputs/floatingButton/index.js.map +7 -0
- package/dist/source/components/inputs/radioButton/index.js +6 -0
- package/dist/source/components/inputs/radioButton/index.js.map +7 -0
- package/dist/source/components/inputs/radioButton/radioButton.jsx +76 -0
- package/dist/source/components/inputs/radioButton/radioButton.jsx.map +1 -0
- package/dist/source/components/inputs/rating/index.js +6 -0
- package/dist/source/components/inputs/rating/index.js.map +7 -0
- package/dist/source/components/inputs/rating/rating.jsx +125 -0
- package/dist/source/components/inputs/rating/rating.jsx.map +1 -0
- package/dist/source/components/inputs/selectField/dropdownMenu.jsx +141 -0
- package/dist/source/components/inputs/selectField/dropdownMenu.jsx.map +1 -0
- package/dist/source/components/inputs/selectField/index.js +8 -0
- package/dist/source/components/inputs/selectField/index.js.map +7 -0
- package/dist/source/components/inputs/selectField/selectField.jsx +273 -0
- package/dist/source/components/inputs/selectField/selectField.jsx.map +1 -0
- package/dist/source/components/inputs/slider/index.js +6 -0
- package/dist/source/components/inputs/slider/index.js.map +7 -0
- package/dist/source/components/inputs/slider/slider.jsx +405 -0
- package/dist/source/components/inputs/slider/slider.jsx.map +1 -0
- package/dist/source/components/inputs/slider/utils.js +49 -0
- package/dist/source/components/inputs/slider/utils.js.map +7 -0
- package/dist/source/components/inputs/textField/index.js +9 -0
- package/dist/source/components/inputs/textField/index.js.map +7 -0
- package/dist/source/components/inputs/textField/textField.jsx +138 -0
- package/dist/source/components/inputs/textField/textField.jsx.map +1 -0
- package/dist/source/components/inputs/textField/textFieldAdornment.jsx +31 -0
- package/dist/source/components/inputs/textField/textFieldAdornment.jsx.map +1 -0
- package/dist/source/components/inputs/textField/textFieldWrapper.jsx +83 -0
- package/dist/source/components/inputs/textField/textFieldWrapper.jsx.map +1 -0
- package/dist/source/components/inputs/textField/types.js +1 -0
- package/dist/source/components/inputs/textField/types.js.map +7 -0
- package/dist/source/components/inputs/textField/utils.js +13 -0
- package/dist/source/components/inputs/textField/utils.js.map +7 -0
- package/dist/source/components/inputs/timePicker/index.js +14 -0
- package/dist/source/components/inputs/timePicker/index.js.map +7 -0
- package/dist/source/components/inputs/timePicker/timeFormat.js +78 -0
- package/dist/source/components/inputs/timePicker/timeFormat.js.map +7 -0
- package/dist/source/components/inputs/timePicker/timePicker.jsx +115 -0
- package/dist/source/components/inputs/timePicker/timePicker.jsx.map +1 -0
- package/dist/source/components/inputs/timePicker/timePickerColumns.jsx +42 -0
- package/dist/source/components/inputs/timePicker/timePickerColumns.jsx.map +1 -0
- package/dist/source/components/inputs/timePicker/timePickerInput.jsx +57 -0
- package/dist/source/components/inputs/timePicker/timePickerInput.jsx.map +1 -0
- package/dist/source/components/inputs/timePicker/timePickerList.jsx +36 -0
- package/dist/source/components/inputs/timePicker/timePickerList.jsx.map +1 -0
- package/dist/source/components/inputs/timePicker/timeUtils.js +96 -0
- package/dist/source/components/inputs/timePicker/timeUtils.js.map +7 -0
- package/dist/source/components/inputs/timePicker/useTimeInput.js +57 -0
- package/dist/source/components/inputs/timePicker/useTimeInput.js.map +7 -0
- package/dist/source/components/inputs/toggle/index.js +6 -0
- package/dist/source/components/inputs/toggle/index.js.map +7 -0
- package/dist/source/components/inputs/toggle/toggle.jsx +78 -0
- package/dist/source/components/inputs/toggle/toggle.jsx.map +1 -0
- package/dist/source/components/layout/appLayout/appLayout.jsx +105 -0
- package/dist/source/components/layout/appLayout/appLayout.jsx.map +1 -0
- package/dist/source/components/layout/appLayout/index.js +6 -0
- package/dist/source/components/layout/appLayout/index.js.map +7 -0
- package/dist/source/components/layout/divider/divider.jsx +69 -0
- package/dist/source/components/layout/divider/divider.jsx.map +1 -0
- package/dist/source/components/layout/divider/index.js +6 -0
- package/dist/source/components/layout/divider/index.js.map +7 -0
- package/dist/source/components/layout/grid/grid.jsx +113 -0
- package/dist/source/components/layout/grid/grid.jsx.map +1 -0
- package/dist/source/components/layout/grid/index.js +8 -0
- package/dist/source/components/layout/grid/index.js.map +7 -0
- package/dist/source/components/layout/page/index.js +6 -0
- package/dist/source/components/layout/page/index.js.map +7 -0
- package/dist/source/components/layout/page/page.jsx +29 -0
- package/dist/source/components/layout/page/page.jsx.map +1 -0
- package/dist/source/components/layout/pageHeader/index.js +6 -0
- package/dist/source/components/layout/pageHeader/index.js.map +7 -0
- package/dist/source/components/layout/pageHeader/pageHeader.jsx +53 -0
- package/dist/source/components/layout/pageHeader/pageHeader.jsx.map +1 -0
- package/dist/source/components/layout/screenDivider/index.js +6 -0
- package/dist/source/components/layout/screenDivider/index.js.map +7 -0
- package/dist/source/components/layout/screenDivider/screenDivider.jsx +130 -0
- package/dist/source/components/layout/screenDivider/screenDivider.jsx.map +1 -0
- package/dist/source/components/layout/sheet/index.js +6 -0
- package/dist/source/components/layout/sheet/index.js.map +7 -0
- package/dist/source/components/layout/sheet/sheet.jsx +262 -0
- package/dist/source/components/layout/sheet/sheet.jsx.map +1 -0
- package/dist/source/components/layout/stack/index.js +6 -0
- package/dist/source/components/layout/stack/index.js.map +7 -0
- package/dist/source/components/layout/stack/stack.jsx +54 -0
- package/dist/source/components/layout/stack/stack.jsx.map +1 -0
- package/dist/source/components/navigation/appBar/appBar.jsx +66 -0
- package/dist/source/components/navigation/appBar/appBar.jsx.map +1 -0
- package/dist/source/components/navigation/appBar/index.js +6 -0
- package/dist/source/components/navigation/appBar/index.js.map +7 -0
- package/dist/source/components/navigation/bottomBar/bottomBar.jsx +136 -0
- package/dist/source/components/navigation/bottomBar/bottomBar.jsx.map +1 -0
- package/dist/source/components/navigation/bottomBar/index.js +6 -0
- package/dist/source/components/navigation/bottomBar/index.js.map +7 -0
- package/dist/source/components/navigation/breadcrumbs/breadcrumbs.jsx +63 -0
- package/dist/source/components/navigation/breadcrumbs/breadcrumbs.jsx.map +1 -0
- package/dist/source/components/navigation/breadcrumbs/index.js +6 -0
- package/dist/source/components/navigation/breadcrumbs/index.js.map +7 -0
- package/dist/source/components/navigation/menu/index.js +23 -0
- package/dist/source/components/navigation/menu/index.js.map +7 -0
- package/dist/source/components/navigation/menu/menu.jsx +28 -0
- package/dist/source/components/navigation/menu/menu.jsx.map +1 -0
- package/dist/source/components/navigation/menu/menuComponent.jsx +18 -0
- package/dist/source/components/navigation/menu/menuComponent.jsx.map +1 -0
- package/dist/source/components/navigation/menu/menuContext.js +14 -0
- package/dist/source/components/navigation/menu/menuContext.js.map +7 -0
- package/dist/source/components/navigation/menu/menuDivider.jsx +19 -0
- package/dist/source/components/navigation/menu/menuDivider.jsx.map +1 -0
- package/dist/source/components/navigation/menu/menuFloating.jsx +84 -0
- package/dist/source/components/navigation/menu/menuFloating.jsx.map +1 -0
- package/dist/source/components/navigation/menu/menuItem.jsx +68 -0
- package/dist/source/components/navigation/menu/menuItem.jsx.map +1 -0
- package/dist/source/components/navigation/menu/menuItemIcon.jsx +25 -0
- package/dist/source/components/navigation/menu/menuItemIcon.jsx.map +1 -0
- package/dist/source/components/navigation/menu/menuItemText.jsx +25 -0
- package/dist/source/components/navigation/menu/menuItemText.jsx.map +1 -0
- package/dist/source/components/navigation/menu/menuList.jsx +46 -0
- package/dist/source/components/navigation/menu/menuList.jsx.map +1 -0
- package/dist/source/components/navigation/menu/menuSubmenu.jsx +86 -0
- package/dist/source/components/navigation/menu/menuSubmenu.jsx.map +1 -0
- package/dist/source/components/navigation/pagination/index.js +6 -0
- package/dist/source/components/navigation/pagination/index.js.map +7 -0
- package/dist/source/components/navigation/pagination/pagination.jsx +143 -0
- package/dist/source/components/navigation/pagination/pagination.jsx.map +1 -0
- package/dist/source/components/navigation/sidebar/index.js +6 -0
- package/dist/source/components/navigation/sidebar/index.js.map +7 -0
- package/dist/source/components/navigation/sidebar/sidebar.jsx +116 -0
- package/dist/source/components/navigation/sidebar/sidebar.jsx.map +1 -0
- package/dist/source/components/navigation/stepper/index.js +6 -0
- package/dist/source/components/navigation/stepper/index.js.map +7 -0
- package/dist/source/components/navigation/stepper/stepper.jsx +83 -0
- package/dist/source/components/navigation/stepper/stepper.jsx.map +1 -0
- package/dist/source/components/navigation/tabs/index.js +10 -0
- package/dist/source/components/navigation/tabs/index.js.map +7 -0
- package/dist/source/components/navigation/tabs/tab/tab.jsx +76 -0
- package/dist/source/components/navigation/tabs/tab/tab.jsx.map +1 -0
- package/dist/source/components/navigation/tabs/tabs.jsx +142 -0
- package/dist/source/components/navigation/tabs/tabs.jsx.map +1 -0
- package/dist/source/components/navigation/tabs/tabsContext.js +8 -0
- package/dist/source/components/navigation/tabs/tabsContext.js.map +7 -0
- package/dist/source/index.js +309 -0
- package/dist/source/index.js.map +7 -0
- package/dist/source/primitives/callHandler.js +12 -0
- package/dist/source/primitives/callHandler.js.map +7 -0
- package/dist/source/primitives/createControllableState.js +19 -0
- package/dist/source/primitives/createControllableState.js.map +7 -0
- package/dist/source/primitives/createCssTransition.js +59 -0
- package/dist/source/primitives/createCssTransition.js.map +7 -0
- package/dist/source/primitives/createDropzone.js +46 -0
- package/dist/source/primitives/createDropzone.js.map +7 -0
- package/dist/source/primitives/createFloating.js +48 -0
- package/dist/source/primitives/createFloating.js.map +7 -0
- package/dist/source/primitives/createFocusTrap.js +50 -0
- package/dist/source/primitives/createFocusTrap.js.map +7 -0
- package/dist/source/primitives/createId.js +9 -0
- package/dist/source/primitives/createId.js.map +7 -0
- package/dist/source/primitives/createMaskedInput.js +35 -0
- package/dist/source/primitives/createMaskedInput.js.map +7 -0
- package/dist/source/primitives/createTheme.js +51 -0
- package/dist/source/primitives/createTheme.js.map +7 -0
- package/dist/source/primitives/createVirtualList.js +19 -0
- package/dist/source/primitives/createVirtualList.js.map +7 -0
- package/dist/source/primitives/mergeRefs.js +13 -0
- package/dist/source/primitives/mergeRefs.js.map +7 -0
- package/dist/source/utils/animate.js +35 -0
- package/dist/source/utils/animate.js.map +7 -0
- package/dist/source/utils/debounce.js +23 -0
- package/dist/source/utils/debounce.js.map +7 -0
- package/dist/source/utils/floating.js +42 -0
- package/dist/source/utils/floating.js.map +7 -0
- package/dist/source/utils/throttle.js +41 -0
- package/dist/source/utils/throttle.js.map +7 -0
- package/package.json +11 -5
- package/dist/ssr.ssr-spec.d.ts +0 -1
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { For, Show, createEffect, on } from "solid-js";
|
|
2
|
+
import { MenuItem, MenuItemIcon, MenuItemText } from "../../navigation/menu";
|
|
3
|
+
import { Icon } from "../../base/icon";
|
|
4
|
+
function DatePickerList(props) {
|
|
5
|
+
let overflowEl;
|
|
6
|
+
createEffect(
|
|
7
|
+
on(
|
|
8
|
+
[() => props.value, () => props.items],
|
|
9
|
+
() => {
|
|
10
|
+
if (!overflowEl) return;
|
|
11
|
+
const selected = overflowEl.querySelector(".smwb-menu__item--selected");
|
|
12
|
+
if (selected) {
|
|
13
|
+
const middle = (overflowEl.offsetHeight - selected.offsetHeight) / 2;
|
|
14
|
+
overflowEl.scrollTop = selected.offsetTop - middle;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
)
|
|
18
|
+
);
|
|
19
|
+
return <div class="smwb-date-picker__overflow" ref={(el) => overflowEl = el} data-testid="date-picker-list">
|
|
20
|
+
<ul class="smwb-date-picker__list">
|
|
21
|
+
<For each={props.items}>
|
|
22
|
+
{(item) => {
|
|
23
|
+
const isSelected = () => props.value === item.value;
|
|
24
|
+
return <MenuItem selected={isSelected()} onClick={() => props.onChange(item.value)}>
|
|
25
|
+
<Show when={isSelected()}>
|
|
26
|
+
<MenuItemIcon>
|
|
27
|
+
<Icon name="check" weight={500} size={24} />
|
|
28
|
+
</MenuItemIcon>
|
|
29
|
+
</Show>
|
|
30
|
+
<MenuItemText class="smwb-date-picker__list-item" inset={!isSelected()}>
|
|
31
|
+
{item.label}
|
|
32
|
+
</MenuItemText>
|
|
33
|
+
</MenuItem>;
|
|
34
|
+
}}
|
|
35
|
+
</For>
|
|
36
|
+
</ul>
|
|
37
|
+
</div>;
|
|
38
|
+
}
|
|
39
|
+
var datePickerList_default = DatePickerList;
|
|
40
|
+
export {
|
|
41
|
+
DatePickerList,
|
|
42
|
+
datePickerList_default as default
|
|
43
|
+
};
|
|
44
|
+
//# sourceMappingURL=datePickerList.jsx.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../src/components/inputs/datePicker/datePickerList.tsx"],"sourcesContent":["import { type JSX, For, Show, createEffect, on } from \"solid-js\";\nimport { MenuItem, MenuItemIcon, MenuItemText } from \"../../navigation/menu\";\nimport { Icon } from \"../../base/icon\";\n\nexport interface DatePickerListItem {\n label: string;\n value: number;\n}\n\nexport interface DatePickerListProps {\n value: number;\n items: DatePickerListItem[];\n onChange: (value: number) => void;\n}\n\nexport function DatePickerList(props: DatePickerListProps): JSX.Element {\n let overflowEl: HTMLDivElement | undefined;\n\n createEffect(\n on(\n [() => props.value, () => props.items],\n () => {\n if (!overflowEl) return;\n const selected = overflowEl.querySelector<HTMLElement>(\".smwb-menu__item--selected\");\n if (selected) {\n const middle = (overflowEl.offsetHeight - selected.offsetHeight) / 2;\n overflowEl.scrollTop = selected.offsetTop - middle;\n }\n }\n )\n );\n\n return (\n <div class=\"smwb-date-picker__overflow\" ref={(el) => (overflowEl = el)} data-testid=\"date-picker-list\">\n <ul class=\"smwb-date-picker__list\">\n <For each={props.items}>\n {(item) => {\n const isSelected = (): boolean => props.value === item.value;\n return (\n <MenuItem selected={isSelected()} onClick={() => props.onChange(item.value)}>\n <Show when={isSelected()}>\n <MenuItemIcon>\n <Icon name=\"check\" weight={500} size={24} />\n </MenuItemIcon>\n </Show>\n <MenuItemText class=\"smwb-date-picker__list-item\" inset={!isSelected()}>\n {item.label}\n </MenuItemText>\n </MenuItem>\n );\n }}\n </For>\n </ul>\n </div>\n );\n}\n\nexport default DatePickerList;\n"],"mappings":"AAAA,SAAmB,KAAK,MAAM,cAAc,UAAU;AACtD,SAAS,UAAU,cAAc,oBAAoB;AACrD,SAAS,YAAY;AAad,SAAS,eAAe,OAAyC;AACtE,MAAI;AAEJ;AAAA,IACE;AAAA,MACE,CAAC,MAAM,MAAM,OAAO,MAAM,MAAM,KAAK;AAAA,MACrC,MAAM;AACJ,YAAI,CAAC,WAAY;AACjB,cAAM,WAAW,WAAW,cAA2B,4BAA4B;AACnF,YAAI,UAAU;AACZ,gBAAM,UAAU,WAAW,eAAe,SAAS,gBAAgB;AACnE,qBAAW,YAAY,SAAS,YAAY;AAAA,QAC9C;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAEA,SACE,CAAC,IAAI,MAAM,6BAA6B,KAAK,CAAC,OAAQ,aAAa,IAAK,YAAY,mBAAmB;AAAA,MACrG,CAAC,GAAG,MAAM,yBAAyB;AAAA,QACjC,CAAC,IAAI,MAAM,MAAM,OAAO;AAAA,WACrB,CAAC,SAAS;AACT,UAAM,aAAa,MAAe,MAAM,UAAU,KAAK;AACvD,WACE,CAAC,SAAS,UAAU,WAAW,GAAG,SAAS,MAAM,MAAM,SAAS,KAAK,KAAK,GAAG;AAAA,gBAC3E,CAAC,KAAK,MAAM,WAAW,GAAG;AAAA,kBACxB,CAAC,aAAa;AAAA,oBACZ,CAAC,KAAK,KAAK,QAAQ,QAAQ,KAAK,MAAM,IAAI,EAAE;AAAA,kBAC9C,EAFC,aAEc;AAAA,gBACjB,EAJC,KAIM;AAAA,gBACP,CAAC,aAAa,MAAM,8BAA8B,OAAO,CAAC,WAAW,GAAG;AAAA,mBACrE,KAAK,MAAM;AAAA,gBACd,EAFC,aAEc;AAAA,cACjB,EATC;AAAA,EAWL,EAAE;AAAA,QACJ,EAhBC,IAgBK;AAAA,MACR,EAlBC,GAkBI;AAAA,IACP,EApBC;AAsBL;AAEA,IAAO,yBAAQ;","names":[],"file":"datePickerList.jsx"}
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
import { formatDateByPattern, isDatePatternMatch, parseDateByPattern } from "./dateFormat";
|
|
2
|
+
const MASK_DATE_REGEXP = /\d/gi;
|
|
3
|
+
const MASK_TOKEN_REGEXP = /[a-zA-Z]/g;
|
|
4
|
+
function startOfWeek(date, weekStart = 0) {
|
|
5
|
+
const normalizedStart = weekStart % 7;
|
|
6
|
+
const day = new Date(date);
|
|
7
|
+
const weekDay = day.getDay();
|
|
8
|
+
const diff = (weekDay < normalizedStart ? 7 : 0) + weekDay - normalizedStart;
|
|
9
|
+
return new Date(day.setDate(day.getDate() - diff));
|
|
10
|
+
}
|
|
11
|
+
function endOfWeek(date, weekStart = 0) {
|
|
12
|
+
const day = new Date(startOfWeek(date, weekStart));
|
|
13
|
+
return new Date(day.setDate(day.getDate() + 6));
|
|
14
|
+
}
|
|
15
|
+
function eachDayOfInterval(start, end) {
|
|
16
|
+
const dates = [];
|
|
17
|
+
const endDate = new Date(end);
|
|
18
|
+
const endTime = endDate.getTime();
|
|
19
|
+
const currentDate = new Date(start);
|
|
20
|
+
currentDate.setHours(0, 0, 0, 0);
|
|
21
|
+
while (currentDate.getTime() <= endTime) {
|
|
22
|
+
dates.push(new Date(currentDate.getTime()));
|
|
23
|
+
currentDate.setDate(currentDate.getDate() + 1);
|
|
24
|
+
currentDate.setHours(0, 0, 0, 0);
|
|
25
|
+
}
|
|
26
|
+
return dates;
|
|
27
|
+
}
|
|
28
|
+
function getDayNames(now, weekStartsOn, locale) {
|
|
29
|
+
const formatter = new Intl.DateTimeFormat(locale, { weekday: "narrow" });
|
|
30
|
+
return eachDayOfInterval(startOfWeek(now, weekStartsOn), endOfWeek(now, weekStartsOn)).map(
|
|
31
|
+
(day) => formatter.format(day)
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
function startOfMonth(date) {
|
|
35
|
+
const _date = new Date(date);
|
|
36
|
+
return new Date(_date.getFullYear(), _date.getMonth(), 1);
|
|
37
|
+
}
|
|
38
|
+
function endOfMonth(date) {
|
|
39
|
+
return setMaxTime(new Date(date.getFullYear(), date.getMonth() + 1, 0));
|
|
40
|
+
}
|
|
41
|
+
function isBefore(date1, date2) {
|
|
42
|
+
return new Date(date1) < new Date(date2);
|
|
43
|
+
}
|
|
44
|
+
function isAfter(date1, date2) {
|
|
45
|
+
return isBefore(date2, date1);
|
|
46
|
+
}
|
|
47
|
+
function addDays(date, days) {
|
|
48
|
+
const _date = new Date(date);
|
|
49
|
+
_date.setDate(_date.getDate() + days);
|
|
50
|
+
return _date;
|
|
51
|
+
}
|
|
52
|
+
function getWeeks(date, weekStartsOn) {
|
|
53
|
+
const start = startOfWeek(startOfMonth(date), weekStartsOn);
|
|
54
|
+
const end = endOfWeek(endOfMonth(date), weekStartsOn);
|
|
55
|
+
let count = 0;
|
|
56
|
+
let current = start;
|
|
57
|
+
const nestedWeeks = [];
|
|
58
|
+
let lastDay = null;
|
|
59
|
+
while (isBefore(current, end)) {
|
|
60
|
+
const weekNumber = Math.floor(count / 7);
|
|
61
|
+
let week = nestedWeeks[weekNumber];
|
|
62
|
+
if (!week) {
|
|
63
|
+
week = [];
|
|
64
|
+
nestedWeeks[weekNumber] = week;
|
|
65
|
+
}
|
|
66
|
+
const day = current.getDay();
|
|
67
|
+
if (lastDay !== day) {
|
|
68
|
+
lastDay = day;
|
|
69
|
+
week.push(current);
|
|
70
|
+
count += 1;
|
|
71
|
+
}
|
|
72
|
+
current = addDays(current, 1);
|
|
73
|
+
}
|
|
74
|
+
return nestedWeeks;
|
|
75
|
+
}
|
|
76
|
+
function isSameMonth(date1, date2) {
|
|
77
|
+
return startOfMonth(date2) <= date1 && date1 <= endOfMonth(date2);
|
|
78
|
+
}
|
|
79
|
+
function resetTime(date) {
|
|
80
|
+
return new Date(date.getFullYear(), date.getMonth(), date.getDate());
|
|
81
|
+
}
|
|
82
|
+
function setMaxTime(date) {
|
|
83
|
+
return new Date(date.getFullYear(), date.getMonth(), date.getDate(), 23, 59, 59, 999);
|
|
84
|
+
}
|
|
85
|
+
function isSameDay(date1, date2) {
|
|
86
|
+
return resetTime(date1).getTime() === resetTime(date2).getTime();
|
|
87
|
+
}
|
|
88
|
+
function addMonths(date, months) {
|
|
89
|
+
return setMonth(date, date.getMonth() + months);
|
|
90
|
+
}
|
|
91
|
+
function addYears(date, years) {
|
|
92
|
+
return setYear(date, date.getFullYear() + years);
|
|
93
|
+
}
|
|
94
|
+
function endOfDay(date) {
|
|
95
|
+
return setMaxTime(date);
|
|
96
|
+
}
|
|
97
|
+
function startOfDay(date) {
|
|
98
|
+
return resetTime(date);
|
|
99
|
+
}
|
|
100
|
+
function getMonths(locale) {
|
|
101
|
+
const months = [];
|
|
102
|
+
const formatter = new Intl.DateTimeFormat(locale, { month: "long" });
|
|
103
|
+
for (let i = 0; i < 12; i++) {
|
|
104
|
+
months.push({
|
|
105
|
+
label: formatter.format(addMonths(/* @__PURE__ */ new Date("1970-01-01"), i)),
|
|
106
|
+
value: i
|
|
107
|
+
});
|
|
108
|
+
}
|
|
109
|
+
return months;
|
|
110
|
+
}
|
|
111
|
+
function setMonth(date, month) {
|
|
112
|
+
const _date = new Date(date);
|
|
113
|
+
_date.setMonth(month);
|
|
114
|
+
return _date;
|
|
115
|
+
}
|
|
116
|
+
function getYears(currentYear, range) {
|
|
117
|
+
const years = [];
|
|
118
|
+
for (let i = currentYear - range; i <= currentYear + range; i++) {
|
|
119
|
+
years.push({ label: String(i).padStart(4, "0"), value: i });
|
|
120
|
+
}
|
|
121
|
+
return years;
|
|
122
|
+
}
|
|
123
|
+
function setYear(date, year) {
|
|
124
|
+
const _date = new Date(date);
|
|
125
|
+
_date.setFullYear(year);
|
|
126
|
+
return _date;
|
|
127
|
+
}
|
|
128
|
+
function getMonthLabel(date, locale) {
|
|
129
|
+
return new Intl.DateTimeFormat(locale, { month: "short" }).format(date);
|
|
130
|
+
}
|
|
131
|
+
function getYearLabel(date, locale) {
|
|
132
|
+
return new Intl.DateTimeFormat(locale, { year: "numeric" }).format(date);
|
|
133
|
+
}
|
|
134
|
+
function getDisplayDate(date, format) {
|
|
135
|
+
if (!isValidDate(date)) {
|
|
136
|
+
return "";
|
|
137
|
+
}
|
|
138
|
+
if (format) {
|
|
139
|
+
return formatDateByPattern(date, format);
|
|
140
|
+
}
|
|
141
|
+
return new Intl.DateTimeFormat(void 0, { day: "2-digit", month: "2-digit", year: "numeric" }).format(date);
|
|
142
|
+
}
|
|
143
|
+
function getCurrentFormatDate(format) {
|
|
144
|
+
if (format) {
|
|
145
|
+
return format;
|
|
146
|
+
}
|
|
147
|
+
const parts = {
|
|
148
|
+
year: "yyyy",
|
|
149
|
+
month: "MM",
|
|
150
|
+
day: "dd"
|
|
151
|
+
};
|
|
152
|
+
const formatter = new Intl.DateTimeFormat(void 0, { day: "2-digit", month: "2-digit", year: "numeric" });
|
|
153
|
+
const dateParts = formatter.formatToParts(/* @__PURE__ */ new Date("1970-01-01"));
|
|
154
|
+
return dateParts.map((element) => parts[element.type] ?? element.value).join("");
|
|
155
|
+
}
|
|
156
|
+
function getMaskFormat(format) {
|
|
157
|
+
if (format) {
|
|
158
|
+
return format.replace(MASK_TOKEN_REGEXP, "_");
|
|
159
|
+
}
|
|
160
|
+
const date = new Intl.DateTimeFormat(void 0, { day: "2-digit", month: "2-digit", year: "numeric" }).format(
|
|
161
|
+
/* @__PURE__ */ new Date("1970-01-01")
|
|
162
|
+
);
|
|
163
|
+
return date.replace(MASK_DATE_REGEXP, "_");
|
|
164
|
+
}
|
|
165
|
+
function maskedDateFormatter(mask) {
|
|
166
|
+
return (value) => {
|
|
167
|
+
let outputCharIndex = 0;
|
|
168
|
+
return value.split("").map((char, inputCharIndex) => {
|
|
169
|
+
MASK_DATE_REGEXP.lastIndex = 0;
|
|
170
|
+
if (outputCharIndex > mask.length - 1) {
|
|
171
|
+
return "";
|
|
172
|
+
}
|
|
173
|
+
const maskChar = mask[outputCharIndex];
|
|
174
|
+
const nextMaskChar = mask[outputCharIndex + 1];
|
|
175
|
+
const acceptedChar = MASK_DATE_REGEXP.test(char) ? char : "";
|
|
176
|
+
const formattedChar = maskChar === "_" ? acceptedChar : maskChar + acceptedChar;
|
|
177
|
+
outputCharIndex += formattedChar.length;
|
|
178
|
+
const isLastCharacter = inputCharIndex === value.length - 1;
|
|
179
|
+
if (isLastCharacter && nextMaskChar && nextMaskChar !== "_") {
|
|
180
|
+
return formattedChar ? formattedChar + nextMaskChar : "";
|
|
181
|
+
}
|
|
182
|
+
return formattedChar;
|
|
183
|
+
}).join("");
|
|
184
|
+
};
|
|
185
|
+
}
|
|
186
|
+
function isDateMatch(value, format) {
|
|
187
|
+
return isDatePatternMatch(value, format);
|
|
188
|
+
}
|
|
189
|
+
function getDateByFormat(value, format) {
|
|
190
|
+
const parsed = parseDateByPattern(value, format);
|
|
191
|
+
if (!parsed) {
|
|
192
|
+
return new Date(Number.NaN);
|
|
193
|
+
}
|
|
194
|
+
return parsed;
|
|
195
|
+
}
|
|
196
|
+
function isValidDate(value) {
|
|
197
|
+
return Object.prototype.toString.call(value) === "[object Date]" && !isNaN(value);
|
|
198
|
+
}
|
|
199
|
+
export {
|
|
200
|
+
addDays,
|
|
201
|
+
addMonths,
|
|
202
|
+
addYears,
|
|
203
|
+
eachDayOfInterval,
|
|
204
|
+
endOfDay,
|
|
205
|
+
endOfMonth,
|
|
206
|
+
endOfWeek,
|
|
207
|
+
getCurrentFormatDate,
|
|
208
|
+
getDateByFormat,
|
|
209
|
+
getDayNames,
|
|
210
|
+
getDisplayDate,
|
|
211
|
+
getMaskFormat,
|
|
212
|
+
getMonthLabel,
|
|
213
|
+
getMonths,
|
|
214
|
+
getWeeks,
|
|
215
|
+
getYearLabel,
|
|
216
|
+
getYears,
|
|
217
|
+
isAfter,
|
|
218
|
+
isBefore,
|
|
219
|
+
isDateMatch,
|
|
220
|
+
isSameDay,
|
|
221
|
+
isSameMonth,
|
|
222
|
+
isValidDate,
|
|
223
|
+
maskedDateFormatter,
|
|
224
|
+
resetTime,
|
|
225
|
+
setMaxTime,
|
|
226
|
+
setMonth,
|
|
227
|
+
setYear,
|
|
228
|
+
startOfDay,
|
|
229
|
+
startOfMonth,
|
|
230
|
+
startOfWeek
|
|
231
|
+
};
|
|
232
|
+
//# sourceMappingURL=dateUtils.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../src/components/inputs/datePicker/dateUtils.ts"],
|
|
4
|
+
"sourcesContent": ["import { formatDateByPattern, isDatePatternMatch, parseDateByPattern } from \"./dateFormat\";\n\nexport type WeekStart = 0 | 1 | 2 | 3 | 4 | 5 | 6;\n\nexport interface DatePickerListItem {\n value: number;\n label: string;\n}\n\nconst MASK_DATE_REGEXP = /\\d/gi;\nconst MASK_TOKEN_REGEXP = /[a-zA-Z]/g;\n\n/** Returns the start of the week, Sunday by default. */\nexport function startOfWeek(date: Date, weekStart: number = 0): Date {\n const normalizedStart = weekStart % 7;\n const day = new Date(date);\n const weekDay = day.getDay();\n const diff = (weekDay < normalizedStart ? 7 : 0) + weekDay - normalizedStart;\n\n return new Date(day.setDate(day.getDate() - diff));\n}\n\n/** Returns the end of the week, Saturday by default. */\nexport function endOfWeek(date: Date, weekStart: number = 0): Date {\n const day = new Date(startOfWeek(date, weekStart));\n\n return new Date(day.setDate(day.getDate() + 6));\n}\n\n/** Returns every day between start and end (inclusive). */\nexport function eachDayOfInterval(start: Date, end: Date): Date[] {\n const dates: Date[] = [];\n const endDate = new Date(end);\n const endTime = endDate.getTime();\n const currentDate = new Date(start);\n currentDate.setHours(0, 0, 0, 0);\n\n while (currentDate.getTime() <= endTime) {\n dates.push(new Date(currentDate.getTime()));\n currentDate.setDate(currentDate.getDate() + 1);\n currentDate.setHours(0, 0, 0, 0);\n }\n\n return dates;\n}\n\n/** Returns localized narrow week-day names. */\nexport function getDayNames(now: Date, weekStartsOn: WeekStart, locale?: string): string[] {\n const formatter = new Intl.DateTimeFormat(locale, { weekday: \"narrow\" });\n\n return eachDayOfInterval(startOfWeek(now, weekStartsOn), endOfWeek(now, weekStartsOn)).map((day) =>\n formatter.format(day)\n );\n}\n\nexport function startOfMonth(date: Date): Date {\n const _date = new Date(date);\n\n return new Date(_date.getFullYear(), _date.getMonth(), 1);\n}\n\nexport function endOfMonth(date: Date): Date {\n return setMaxTime(new Date(date.getFullYear(), date.getMonth() + 1, 0));\n}\n\nexport function isBefore(date1: Date, date2: Date): boolean {\n return new Date(date1) < new Date(date2);\n}\n\nexport function isAfter(date1: Date, date2: Date): boolean {\n return isBefore(date2, date1);\n}\n\nexport function addDays(date: Date, days: number): Date {\n const _date = new Date(date);\n _date.setDate(_date.getDate() + days);\n\n return _date;\n}\n\n/** Returns the weeks (including leading/trailing days) covering the month of `date`. */\nexport function getWeeks(date: Date, weekStartsOn: WeekStart): Date[][] {\n const start = startOfWeek(startOfMonth(date), weekStartsOn);\n const end = endOfWeek(endOfMonth(date), weekStartsOn);\n\n let count = 0;\n let current = start;\n const nestedWeeks: Date[][] = [];\n let lastDay: number | null = null;\n\n while (isBefore(current, end)) {\n const weekNumber = Math.floor(count / 7);\n let week = nestedWeeks[weekNumber];\n if (!week) {\n week = [];\n nestedWeeks[weekNumber] = week;\n }\n const day = current.getDay();\n\n if (lastDay !== day) {\n lastDay = day;\n week.push(current);\n count += 1;\n }\n\n current = addDays(current, 1);\n }\n\n return nestedWeeks;\n}\n\nexport function isSameMonth(date1: Date, date2: Date): boolean {\n return startOfMonth(date2) <= date1 && date1 <= endOfMonth(date2);\n}\n\nexport function resetTime(date: Date): Date {\n return new Date(date.getFullYear(), date.getMonth(), date.getDate());\n}\n\nexport function setMaxTime(date: Date): Date {\n return new Date(date.getFullYear(), date.getMonth(), date.getDate(), 23, 59, 59, 999);\n}\n\nexport function isSameDay(date1: Date, date2: Date): boolean {\n return resetTime(date1).getTime() === resetTime(date2).getTime();\n}\n\nexport function addMonths(date: Date, months: number): Date {\n return setMonth(date, date.getMonth() + months);\n}\n\nexport function addYears(date: Date, years: number): Date {\n return setYear(date, date.getFullYear() + years);\n}\n\nexport function endOfDay(date: Date): Date {\n return setMaxTime(date);\n}\n\nexport function startOfDay(date: Date): Date {\n return resetTime(date);\n}\n\nexport function getMonths(locale?: string): DatePickerListItem[] {\n const months: DatePickerListItem[] = [];\n const formatter = new Intl.DateTimeFormat(locale, { month: \"long\" });\n\n for (let i = 0; i < 12; i++) {\n months.push({\n label: formatter.format(addMonths(new Date(\"1970-01-01\"), i)),\n value: i,\n });\n }\n\n return months;\n}\n\nexport function setMonth(date: Date, month: number): Date {\n const _date = new Date(date);\n _date.setMonth(month);\n\n return _date;\n}\n\nexport function getYears(currentYear: number, range: number): DatePickerListItem[] {\n const years: DatePickerListItem[] = [];\n\n for (let i = currentYear - range; i <= currentYear + range; i++) {\n years.push({ label: String(i).padStart(4, \"0\"), value: i });\n }\n\n return years;\n}\n\nexport function setYear(date: Date, year: number): Date {\n const _date = new Date(date);\n _date.setFullYear(year);\n\n return _date;\n}\n\nexport function getMonthLabel(date: Date, locale?: string): string {\n return new Intl.DateTimeFormat(locale, { month: \"short\" }).format(date);\n}\n\nexport function getYearLabel(date: Date, locale?: string): string {\n return new Intl.DateTimeFormat(locale, { year: \"numeric\" }).format(date);\n}\n\nexport function getDisplayDate(date: unknown, format?: string): string {\n if (!isValidDate(date)) {\n return \"\";\n }\n\n if (format) {\n return formatDateByPattern(date, format);\n }\n\n return new Intl.DateTimeFormat(undefined, { day: \"2-digit\", month: \"2-digit\", year: \"numeric\" }).format(date);\n}\n\nexport function getCurrentFormatDate(format?: string): string {\n if (format) {\n return format;\n }\n\n const parts: Record<string, string> = {\n year: \"yyyy\",\n month: \"MM\",\n day: \"dd\",\n };\n const formatter = new Intl.DateTimeFormat(undefined, { day: \"2-digit\", month: \"2-digit\", year: \"numeric\" });\n const dateParts = formatter.formatToParts(new Date(\"1970-01-01\"));\n\n return dateParts.map((element) => parts[element.type] ?? element.value).join(\"\");\n}\n\nexport function getMaskFormat(format?: string): string {\n if (format) {\n return format.replace(MASK_TOKEN_REGEXP, \"_\");\n }\n\n const date = new Intl.DateTimeFormat(undefined, { day: \"2-digit\", month: \"2-digit\", year: \"numeric\" }).format(\n new Date(\"1970-01-01\")\n );\n\n return date.replace(MASK_DATE_REGEXP, \"_\");\n}\n\nexport function maskedDateFormatter(mask: string): (value: string) => string {\n return (value: string) => {\n let outputCharIndex = 0;\n\n return value\n .split(\"\")\n .map((char, inputCharIndex) => {\n MASK_DATE_REGEXP.lastIndex = 0;\n\n if (outputCharIndex > mask.length - 1) {\n return \"\";\n }\n\n const maskChar = mask[outputCharIndex] as string;\n const nextMaskChar = mask[outputCharIndex + 1];\n\n const acceptedChar = MASK_DATE_REGEXP.test(char) ? char : \"\";\n const formattedChar = maskChar === \"_\" ? acceptedChar : maskChar + acceptedChar;\n\n outputCharIndex += formattedChar.length;\n\n const isLastCharacter = inputCharIndex === value.length - 1;\n\n if (isLastCharacter && nextMaskChar && nextMaskChar !== \"_\") {\n return formattedChar ? formattedChar + nextMaskChar : \"\";\n }\n\n return formattedChar;\n })\n .join(\"\");\n };\n}\n\nexport function isDateMatch(value: string, format: string): boolean {\n return isDatePatternMatch(value, format);\n}\n\nexport function getDateByFormat(value: string, format: string): Date {\n const parsed = parseDateByPattern(value, format);\n\n if (!parsed) {\n return new Date(Number.NaN);\n }\n\n return parsed;\n}\n\nexport function isValidDate(value: unknown): value is Date {\n return Object.prototype.toString.call(value) === \"[object Date]\" && !isNaN(value as number);\n}\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { DatePicker, default as default2 } from "./datePicker";
|
|
2
|
+
import { OpenView } from "./openView";
|
|
3
|
+
import { DataPickerDays } from "./dataPickerDays";
|
|
4
|
+
import { DataPickerHeader } from "./dataPickerHeader";
|
|
5
|
+
import { DataPickerInput } from "./dataPickerInput";
|
|
6
|
+
import { DatePickerActionLabel } from "./datePickerActionLabel";
|
|
7
|
+
import { DatePickerDay } from "./datePickerDay";
|
|
8
|
+
import { DatePickerIconButton } from "./datePickerIconButton";
|
|
9
|
+
import { DatePickerList } from "./datePickerList";
|
|
10
|
+
import { createDateInput } from "./useDateInput";
|
|
11
|
+
export {
|
|
12
|
+
DataPickerDays,
|
|
13
|
+
DataPickerHeader,
|
|
14
|
+
DataPickerInput,
|
|
15
|
+
DatePicker,
|
|
16
|
+
DatePickerActionLabel,
|
|
17
|
+
DatePickerDay,
|
|
18
|
+
DatePickerIconButton,
|
|
19
|
+
DatePickerList,
|
|
20
|
+
OpenView,
|
|
21
|
+
createDateInput,
|
|
22
|
+
default2 as default
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../src/components/inputs/datePicker/index.ts"],
|
|
4
|
+
"sourcesContent": ["export { DatePicker, default } from \"./datePicker\";\nexport type { DatePickerProps } from \"./datePicker\";\nexport { OpenView } from \"./openView\";\nexport { DataPickerDays } from \"./dataPickerDays\";\nexport type { DataPickerDaysProps } from \"./dataPickerDays\";\nexport { DataPickerHeader } from \"./dataPickerHeader\";\nexport type { DataPickerHeaderProps } from \"./dataPickerHeader\";\nexport { DataPickerInput } from \"./dataPickerInput\";\nexport type { DataPickerInputProps } from \"./dataPickerInput\";\nexport { DatePickerActionLabel } from \"./datePickerActionLabel\";\nexport type { ActionLabelProps } from \"./datePickerActionLabel\";\nexport { DatePickerDay } from \"./datePickerDay\";\nexport type { DatePickerDayProps } from \"./datePickerDay\";\nexport { DatePickerIconButton } from \"./datePickerIconButton\";\nexport type { DataPickerIconButtonProps } from \"./datePickerIconButton\";\nexport { DatePickerList } from \"./datePickerList\";\nexport type { DatePickerListProps } from \"./datePickerList\";\nexport { createDateInput } from \"./useDateInput\";\nexport type { CreateDateInputProps, DateInputState } from \"./useDateInput\";\n"],
|
|
5
|
+
"mappings": "AAAA,SAAS,YAAY,WAAAA,gBAAe;AAEpC,SAAS,gBAAgB;AACzB,SAAS,sBAAsB;AAE/B,SAAS,wBAAwB;AAEjC,SAAS,uBAAuB;AAEhC,SAAS,6BAA6B;AAEtC,SAAS,qBAAqB;AAE9B,SAAS,4BAA4B;AAErC,SAAS,sBAAsB;AAE/B,SAAS,uBAAuB;",
|
|
6
|
+
"names": ["default"]
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../src/components/inputs/datePicker/openView.ts"],
|
|
4
|
+
"sourcesContent": ["export enum OpenView {\n days = \"days\",\n months = \"months\",\n years = \"years\",\n}\n"],
|
|
5
|
+
"mappings": "AAAO,IAAK,WAAL,kBAAKA,cAAL;AACL,EAAAA,UAAA,UAAO;AACP,EAAAA,UAAA,YAAS;AACT,EAAAA,UAAA,WAAQ;AAHE,SAAAA;AAAA,GAAA;",
|
|
6
|
+
"names": ["OpenView"]
|
|
7
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { createEffect, createSignal } from "solid-js";
|
|
2
|
+
import {
|
|
3
|
+
getCurrentFormatDate,
|
|
4
|
+
getDateByFormat,
|
|
5
|
+
getDisplayDate,
|
|
6
|
+
getMaskFormat,
|
|
7
|
+
isDateMatch,
|
|
8
|
+
maskedDateFormatter
|
|
9
|
+
} from "./dateUtils";
|
|
10
|
+
import { createMaskedInput } from "../../../primitives/createMaskedInput";
|
|
11
|
+
function createDateInput(props) {
|
|
12
|
+
const currentFormatDate = () => getCurrentFormatDate(props.format);
|
|
13
|
+
const [displayedValue, setDisplayedValue] = createSignal(getDisplayDate(props.value, props.format));
|
|
14
|
+
const formatter = () => maskedDateFormatter(getMaskFormat(props.format));
|
|
15
|
+
let prevValue;
|
|
16
|
+
createEffect(() => {
|
|
17
|
+
const v = props.value;
|
|
18
|
+
if (v !== prevValue) {
|
|
19
|
+
prevValue = v;
|
|
20
|
+
setDisplayedValue(getDisplayDate(v, props.format));
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
const onChange = (value) => {
|
|
24
|
+
setDisplayedValue(value);
|
|
25
|
+
if (!props.onChange) return;
|
|
26
|
+
if (isDateMatch(value, currentFormatDate())) {
|
|
27
|
+
props.onChange(void 0, getDateByFormat(value, currentFormatDate()));
|
|
28
|
+
} else if (value === "") {
|
|
29
|
+
props.onChange(void 0);
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
const masked = createMaskedInput({ value: displayedValue, onChange, format: (v) => formatter()(v) });
|
|
33
|
+
const onBlur = () => {
|
|
34
|
+
if (!props.onBlur) return;
|
|
35
|
+
const prev = prevValue;
|
|
36
|
+
if (prev instanceof Date && isDateMatch(getDisplayDate(prev, props.format), currentFormatDate())) {
|
|
37
|
+
props.onBlur(void 0, prev);
|
|
38
|
+
} else if (typeof prev === "string" && isDateMatch(prev, currentFormatDate())) {
|
|
39
|
+
props.onBlur(void 0, getDateByFormat(prev, currentFormatDate()));
|
|
40
|
+
} else if (prev === void 0 || prev === "") {
|
|
41
|
+
props.onBlur(void 0);
|
|
42
|
+
}
|
|
43
|
+
setDisplayedValue(getDisplayDate(props.value, props.format));
|
|
44
|
+
};
|
|
45
|
+
return {
|
|
46
|
+
value: displayedValue,
|
|
47
|
+
onInput: masked.onInput,
|
|
48
|
+
onBlur,
|
|
49
|
+
ref: masked.ref,
|
|
50
|
+
placeholder: () => currentFormatDate().toLowerCase()
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
export {
|
|
54
|
+
createDateInput
|
|
55
|
+
};
|
|
56
|
+
//# sourceMappingURL=useDateInput.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../src/components/inputs/datePicker/useDateInput.ts"],
|
|
4
|
+
"sourcesContent": ["import { type Accessor, createEffect, createSignal } from \"solid-js\";\nimport {\n getCurrentFormatDate,\n getDateByFormat,\n getDisplayDate,\n getMaskFormat,\n isDateMatch,\n maskedDateFormatter,\n} from \"./dateUtils\";\nimport { createMaskedInput } from \"../../../primitives/createMaskedInput\";\n\nexport interface CreateDateInputProps {\n value?: Date | string | undefined;\n onChange?: ((event?: Event, value?: Date) => void) | undefined;\n onBlur?: ((event?: FocusEvent, value?: Date) => void) | undefined;\n format?: string | undefined;\n}\n\nexport interface DateInputState {\n value: Accessor<string>;\n onInput: (event: InputEvent & { currentTarget: HTMLInputElement; target: Element }) => void;\n onBlur: () => void;\n ref: (el: HTMLInputElement) => void;\n placeholder: Accessor<string>;\n}\n\n/** Solid port of useDateInput \u2014 masked text input bound to a Date value. */\nexport function createDateInput(props: CreateDateInputProps): DateInputState {\n const currentFormatDate = (): string => getCurrentFormatDate(props.format);\n const [displayedValue, setDisplayedValue] = createSignal(getDisplayDate(props.value, props.format));\n const formatter = (): ((value: string) => string) => maskedDateFormatter(getMaskFormat(props.format));\n\n let prevValue: Date | string | undefined;\n\n createEffect(() => {\n const v = props.value;\n if (v !== prevValue) {\n prevValue = v;\n setDisplayedValue(getDisplayDate(v, props.format));\n }\n });\n\n const onChange = (value: string): void => {\n setDisplayedValue(value);\n if (!props.onChange) return;\n if (isDateMatch(value, currentFormatDate())) {\n props.onChange(undefined, getDateByFormat(value, currentFormatDate()));\n } else if (value === \"\") {\n props.onChange(undefined);\n }\n };\n\n const masked = createMaskedInput({ value: displayedValue, onChange, format: (v) => formatter()(v) });\n\n const onBlur = (): void => {\n if (!props.onBlur) return;\n const prev = prevValue;\n if (prev instanceof Date && isDateMatch(getDisplayDate(prev, props.format), currentFormatDate())) {\n props.onBlur(undefined, prev);\n } else if (typeof prev === \"string\" && isDateMatch(prev, currentFormatDate())) {\n props.onBlur(undefined, getDateByFormat(prev, currentFormatDate()));\n } else if (prev === undefined || prev === \"\") {\n props.onBlur(undefined);\n }\n setDisplayedValue(getDisplayDate(props.value, props.format));\n };\n\n return {\n value: displayedValue,\n onInput: masked.onInput,\n onBlur,\n ref: masked.ref,\n placeholder: () => currentFormatDate().toLowerCase(),\n };\n}\n"],
|
|
5
|
+
"mappings": "AAAA,SAAwB,cAAc,oBAAoB;AAC1D;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP,SAAS,yBAAyB;AAkB3B,SAAS,gBAAgB,OAA6C;AAC3E,QAAM,oBAAoB,MAAc,qBAAqB,MAAM,MAAM;AACzE,QAAM,CAAC,gBAAgB,iBAAiB,IAAI,aAAa,eAAe,MAAM,OAAO,MAAM,MAAM,CAAC;AAClG,QAAM,YAAY,MAAmC,oBAAoB,cAAc,MAAM,MAAM,CAAC;AAEpG,MAAI;AAEJ,eAAa,MAAM;AACjB,UAAM,IAAI,MAAM;AAChB,QAAI,MAAM,WAAW;AACnB,kBAAY;AACZ,wBAAkB,eAAe,GAAG,MAAM,MAAM,CAAC;AAAA,IACnD;AAAA,EACF,CAAC;AAED,QAAM,WAAW,CAAC,UAAwB;AACxC,sBAAkB,KAAK;AACvB,QAAI,CAAC,MAAM,SAAU;AACrB,QAAI,YAAY,OAAO,kBAAkB,CAAC,GAAG;AAC3C,YAAM,SAAS,QAAW,gBAAgB,OAAO,kBAAkB,CAAC,CAAC;AAAA,IACvE,WAAW,UAAU,IAAI;AACvB,YAAM,SAAS,MAAS;AAAA,IAC1B;AAAA,EACF;AAEA,QAAM,SAAS,kBAAkB,EAAE,OAAO,gBAAgB,UAAU,QAAQ,CAAC,MAAM,UAAU,EAAE,CAAC,EAAE,CAAC;AAEnG,QAAM,SAAS,MAAY;AACzB,QAAI,CAAC,MAAM,OAAQ;AACnB,UAAM,OAAO;AACb,QAAI,gBAAgB,QAAQ,YAAY,eAAe,MAAM,MAAM,MAAM,GAAG,kBAAkB,CAAC,GAAG;AAChG,YAAM,OAAO,QAAW,IAAI;AAAA,IAC9B,WAAW,OAAO,SAAS,YAAY,YAAY,MAAM,kBAAkB,CAAC,GAAG;AAC7E,YAAM,OAAO,QAAW,gBAAgB,MAAM,kBAAkB,CAAC,CAAC;AAAA,IACpE,WAAW,SAAS,UAAa,SAAS,IAAI;AAC5C,YAAM,OAAO,MAAS;AAAA,IACxB;AACA,sBAAkB,eAAe,MAAM,OAAO,MAAM,MAAM,CAAC;AAAA,EAC7D;AAEA,SAAO;AAAA,IACL,OAAO;AAAA,IACP,SAAS,OAAO;AAAA,IAChB;AAAA,IACA,KAAK,OAAO;AAAA,IACZ,aAAa,MAAM,kBAAkB,EAAE,YAAY;AAAA,EACrD;AACF;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
const DATETIME_TOKEN_REGEXP = /yyyy|MM|dd|HH|mm|ss/g;
|
|
2
|
+
function extractTokens(pattern) {
|
|
3
|
+
const tokens = [];
|
|
4
|
+
let match;
|
|
5
|
+
DATETIME_TOKEN_REGEXP.lastIndex = 0;
|
|
6
|
+
while ((match = DATETIME_TOKEN_REGEXP.exec(pattern)) !== null) {
|
|
7
|
+
tokens.push(match[0]);
|
|
8
|
+
}
|
|
9
|
+
return tokens;
|
|
10
|
+
}
|
|
11
|
+
function escapeRegExp(value) {
|
|
12
|
+
return value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
13
|
+
}
|
|
14
|
+
function patternToRegExp(pattern) {
|
|
15
|
+
let regex = "^";
|
|
16
|
+
let lastIndex = 0;
|
|
17
|
+
let match;
|
|
18
|
+
DATETIME_TOKEN_REGEXP.lastIndex = 0;
|
|
19
|
+
while ((match = DATETIME_TOKEN_REGEXP.exec(pattern)) !== null) {
|
|
20
|
+
regex += escapeRegExp(pattern.slice(lastIndex, match.index));
|
|
21
|
+
regex += match[0] === "yyyy" ? "(\\d{4})" : "(\\d{2})";
|
|
22
|
+
lastIndex = DATETIME_TOKEN_REGEXP.lastIndex;
|
|
23
|
+
}
|
|
24
|
+
regex += escapeRegExp(pattern.slice(lastIndex));
|
|
25
|
+
regex += "$";
|
|
26
|
+
return new RegExp(regex);
|
|
27
|
+
}
|
|
28
|
+
function isValidCalendarDate(year, month, day) {
|
|
29
|
+
if (month < 1 || month > 12 || day < 1) {
|
|
30
|
+
return false;
|
|
31
|
+
}
|
|
32
|
+
const date = new Date(year, month - 1, day);
|
|
33
|
+
return date.getFullYear() === year && date.getMonth() === month - 1 && date.getDate() === day;
|
|
34
|
+
}
|
|
35
|
+
function isValidTime(hours, minutes, seconds) {
|
|
36
|
+
return hours >= 0 && hours <= 23 && minutes >= 0 && minutes <= 59 && seconds >= 0 && seconds <= 59;
|
|
37
|
+
}
|
|
38
|
+
function formatDateTimeByPattern(date, pattern) {
|
|
39
|
+
const year = date.getFullYear();
|
|
40
|
+
const month = date.getMonth() + 1;
|
|
41
|
+
const day = date.getDate();
|
|
42
|
+
const hours = date.getHours();
|
|
43
|
+
const minutes = date.getMinutes();
|
|
44
|
+
const seconds = date.getSeconds();
|
|
45
|
+
return pattern.replace(DATETIME_TOKEN_REGEXP, (token) => {
|
|
46
|
+
if (token === "yyyy") {
|
|
47
|
+
return String(year).padStart(4, "0");
|
|
48
|
+
}
|
|
49
|
+
if (token === "MM") {
|
|
50
|
+
return String(month).padStart(2, "0");
|
|
51
|
+
}
|
|
52
|
+
if (token === "dd") {
|
|
53
|
+
return String(day).padStart(2, "0");
|
|
54
|
+
}
|
|
55
|
+
if (token === "HH") {
|
|
56
|
+
return String(hours).padStart(2, "0");
|
|
57
|
+
}
|
|
58
|
+
if (token === "mm") {
|
|
59
|
+
return String(minutes).padStart(2, "0");
|
|
60
|
+
}
|
|
61
|
+
return String(seconds).padStart(2, "0");
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
function parseDateTimeByPattern(value, pattern) {
|
|
65
|
+
const tokens = extractTokens(pattern);
|
|
66
|
+
if (!tokens.includes("yyyy") || !tokens.includes("MM") || !tokens.includes("dd") || !tokens.includes("HH") || !tokens.includes("mm")) {
|
|
67
|
+
return void 0;
|
|
68
|
+
}
|
|
69
|
+
const match = patternToRegExp(pattern).exec(value);
|
|
70
|
+
if (!match) {
|
|
71
|
+
return void 0;
|
|
72
|
+
}
|
|
73
|
+
let year;
|
|
74
|
+
let month;
|
|
75
|
+
let day;
|
|
76
|
+
let hours;
|
|
77
|
+
let minutes;
|
|
78
|
+
let seconds = 0;
|
|
79
|
+
tokens.forEach((token, index) => {
|
|
80
|
+
const part = Number(match[index + 1]);
|
|
81
|
+
if (token === "yyyy") {
|
|
82
|
+
year = part;
|
|
83
|
+
return;
|
|
84
|
+
}
|
|
85
|
+
if (token === "MM") {
|
|
86
|
+
month = part;
|
|
87
|
+
return;
|
|
88
|
+
}
|
|
89
|
+
if (token === "dd") {
|
|
90
|
+
day = part;
|
|
91
|
+
return;
|
|
92
|
+
}
|
|
93
|
+
if (token === "HH") {
|
|
94
|
+
hours = part;
|
|
95
|
+
return;
|
|
96
|
+
}
|
|
97
|
+
if (token === "mm") {
|
|
98
|
+
minutes = part;
|
|
99
|
+
return;
|
|
100
|
+
}
|
|
101
|
+
seconds = part;
|
|
102
|
+
});
|
|
103
|
+
if (year === void 0 || month === void 0 || day === void 0 || hours === void 0 || minutes === void 0) {
|
|
104
|
+
return void 0;
|
|
105
|
+
}
|
|
106
|
+
if (!isValidCalendarDate(year, month, day) || !isValidTime(hours, minutes, seconds)) {
|
|
107
|
+
return void 0;
|
|
108
|
+
}
|
|
109
|
+
return new Date(year, month - 1, day, hours, minutes, seconds);
|
|
110
|
+
}
|
|
111
|
+
function isDateTimePatternMatch(value, pattern) {
|
|
112
|
+
return parseDateTimeByPattern(value, pattern) !== void 0;
|
|
113
|
+
}
|
|
114
|
+
export {
|
|
115
|
+
formatDateTimeByPattern,
|
|
116
|
+
isDateTimePatternMatch,
|
|
117
|
+
parseDateTimeByPattern
|
|
118
|
+
};
|
|
119
|
+
//# sourceMappingURL=dateTimeFormat.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../src/components/inputs/dateTimePicker/dateTimeFormat.ts"],
|
|
4
|
+
"sourcesContent": ["const DATETIME_TOKEN_REGEXP = /yyyy|MM|dd|HH|mm|ss/g;\n\ntype DateTimeToken = \"yyyy\" | \"MM\" | \"dd\" | \"HH\" | \"mm\" | \"ss\";\n\nfunction extractTokens(pattern: string): DateTimeToken[] {\n const tokens: DateTimeToken[] = [];\n let match: RegExpExecArray | null;\n\n DATETIME_TOKEN_REGEXP.lastIndex = 0;\n while ((match = DATETIME_TOKEN_REGEXP.exec(pattern)) !== null) {\n tokens.push(match[0] as DateTimeToken);\n }\n\n return tokens;\n}\n\nfunction escapeRegExp(value: string): string {\n return value.replace(/[.*+?^${}()|[\\]\\\\]/g, \"\\\\$&\");\n}\n\nfunction patternToRegExp(pattern: string): RegExp {\n let regex = \"^\";\n let lastIndex = 0;\n let match: RegExpExecArray | null;\n\n DATETIME_TOKEN_REGEXP.lastIndex = 0;\n while ((match = DATETIME_TOKEN_REGEXP.exec(pattern)) !== null) {\n regex += escapeRegExp(pattern.slice(lastIndex, match.index));\n regex += match[0] === \"yyyy\" ? \"(\\\\d{4})\" : \"(\\\\d{2})\";\n lastIndex = DATETIME_TOKEN_REGEXP.lastIndex;\n }\n\n regex += escapeRegExp(pattern.slice(lastIndex));\n regex += \"$\";\n\n return new RegExp(regex);\n}\n\nfunction isValidCalendarDate(year: number, month: number, day: number): boolean {\n if (month < 1 || month > 12 || day < 1) {\n return false;\n }\n\n const date = new Date(year, month - 1, day);\n\n return date.getFullYear() === year && date.getMonth() === month - 1 && date.getDate() === day;\n}\n\nfunction isValidTime(hours: number, minutes: number, seconds: number): boolean {\n return hours >= 0 && hours <= 23 && minutes >= 0 && minutes <= 59 && seconds >= 0 && seconds <= 59;\n}\n\nexport function formatDateTimeByPattern(date: Date, pattern: string): string {\n const year = date.getFullYear();\n const month = date.getMonth() + 1;\n const day = date.getDate();\n const hours = date.getHours();\n const minutes = date.getMinutes();\n const seconds = date.getSeconds();\n\n return pattern.replace(DATETIME_TOKEN_REGEXP, (token) => {\n if (token === \"yyyy\") {\n return String(year).padStart(4, \"0\");\n }\n\n if (token === \"MM\") {\n return String(month).padStart(2, \"0\");\n }\n\n if (token === \"dd\") {\n return String(day).padStart(2, \"0\");\n }\n\n if (token === \"HH\") {\n return String(hours).padStart(2, \"0\");\n }\n\n if (token === \"mm\") {\n return String(minutes).padStart(2, \"0\");\n }\n\n return String(seconds).padStart(2, \"0\");\n });\n}\n\nexport function parseDateTimeByPattern(value: string, pattern: string): Date | undefined {\n const tokens = extractTokens(pattern);\n\n if (\n !tokens.includes(\"yyyy\") ||\n !tokens.includes(\"MM\") ||\n !tokens.includes(\"dd\") ||\n !tokens.includes(\"HH\") ||\n !tokens.includes(\"mm\")\n ) {\n return undefined;\n }\n\n const match = patternToRegExp(pattern).exec(value);\n\n if (!match) {\n return undefined;\n }\n\n let year: number | undefined;\n let month: number | undefined;\n let day: number | undefined;\n let hours: number | undefined;\n let minutes: number | undefined;\n let seconds = 0;\n\n tokens.forEach((token, index) => {\n const part = Number(match[index + 1]);\n\n if (token === \"yyyy\") {\n year = part;\n return;\n }\n\n if (token === \"MM\") {\n month = part;\n return;\n }\n\n if (token === \"dd\") {\n day = part;\n return;\n }\n\n if (token === \"HH\") {\n hours = part;\n return;\n }\n\n if (token === \"mm\") {\n minutes = part;\n return;\n }\n\n seconds = part;\n });\n\n if (year === undefined || month === undefined || day === undefined || hours === undefined || minutes === undefined) {\n return undefined;\n }\n\n if (!isValidCalendarDate(year, month, day) || !isValidTime(hours, minutes, seconds)) {\n return undefined;\n }\n\n return new Date(year, month - 1, day, hours, minutes, seconds);\n}\n\nexport function isDateTimePatternMatch(value: string, pattern: string): boolean {\n return parseDateTimeByPattern(value, pattern) !== undefined;\n}\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|