prlg-ui 1.8.350 → 1.8.351
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/app/blocks/BonusSummary/BonusSummary.d.ts +2 -0
- package/dist/app/blocks/BonusSummary/BonusSummary.stories.d.ts +6 -0
- package/dist/app/blocks/BonusSummary/index.d.ts +3 -0
- package/dist/app/blocks/Chat/ChatField/ChatField.d.ts +25 -0
- package/dist/app/blocks/Chat/ChatField/ChatField.stories.d.ts +6 -0
- package/dist/app/blocks/Chat/ChatField/ChatFieldActions.d.ts +17 -0
- package/dist/app/blocks/Chat/ChatField/ChatFile.d.ts +9 -0
- package/dist/app/blocks/Chat/ChatField/index.d.ts +2 -0
- package/dist/app/blocks/Chat/ChatField/uploadFile.d.ts +25 -0
- package/dist/app/blocks/index.d.ts +2 -0
- package/dist/app/components/Buttons/Button/Button.d.ts +18 -0
- package/dist/app/components/Buttons/Button/Button.stories.d.ts +16 -0
- package/dist/app/components/Buttons/Button/Button.types.d.ts +15 -0
- package/dist/app/components/Buttons/Button/index.d.ts +3 -0
- package/dist/app/components/Buttons/SleedDeal/SleedDeal.d.ts +67 -0
- package/dist/app/components/Buttons/SleedDeal/SleedDeal.stories.d.ts +6 -0
- package/dist/app/components/Buttons/SleedDeal/index.d.ts +3 -0
- package/dist/app/components/ColorPalette/ColorPalette.d.ts +7 -0
- package/dist/app/components/ColorPalette/ColorPalette.stories.d.ts +9 -0
- package/dist/app/components/ColorPalette/ColorSwatch.d.ts +11 -0
- package/dist/app/components/Data/DataTable/Column.d.ts +18 -0
- package/dist/app/components/Data/DataTable/DataTable.d.ts +112 -0
- package/dist/app/components/Data/DataTable/Table.stories.d.ts +11 -0
- package/dist/app/components/Data/DataTable/entities/TableBody.d.ts +21 -0
- package/dist/app/components/Data/DataTable/entities/TableCell.d.ts +18 -0
- package/dist/app/components/Data/DataTable/entities/TableFooter.d.ts +19 -0
- package/dist/app/components/Data/DataTable/entities/TableHeader.d.ts +10 -0
- package/dist/app/components/Data/DataTable/entities/TableRow.d.ts +29 -0
- package/dist/app/components/Data/DataTable/feature/DescriptionColumn.d.ts +5 -0
- package/dist/app/components/Data/DataTable/feature/SortButton.d.ts +10 -0
- package/dist/app/components/Data/DataTable/index.d.ts +3 -0
- package/dist/app/components/Data/DataTable/shared/composables/rowGrouping.d.ts +5 -0
- package/dist/app/components/Data/DataTable/shared/composables/setupColumn.d.ts +6436 -0
- package/dist/app/components/Data/DataTable/shared/types/Column.types.d.ts +52 -0
- package/dist/app/components/Data/DataTable/shared/types/Options.types.d.ts +11 -0
- package/dist/app/components/Data/DataTable/shared/types/Table.types.d.ts +58 -0
- package/dist/app/components/Data/DataTable/shared/types/TableBody.types.d.ts +22 -0
- package/dist/app/components/Data/DataTable/shared/types/TableHeader.types.d.ts +10 -0
- package/dist/app/components/Data/Paginator/Paginator.d.ts +14 -0
- package/dist/app/components/Data/Paginator/Paginator.stories.d.ts +6 -0
- package/dist/app/components/Data/Paginator/Paginator.types.d.ts +7 -0
- package/dist/app/components/Data/Paginator/index.d.ts +3 -0
- package/dist/app/components/Data/Table/Table.d.ts +56 -0
- package/dist/app/components/Data/Table/Table.stories.d.ts +41 -0
- package/dist/app/components/Data/Table/index.d.ts +4 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/OrderStatus.d.ts +6 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/constants.d.ts +9 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/accepted.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/approval.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/assembled.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/awaitingPayment.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/cancelled.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/complaint.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/confirmation.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/dedlineChanged.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/delayDelivery.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/documentsIssued.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/error.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/handedShipment.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/index.d.ts +26 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/orderSupplier.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/orderedSupplier.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/paid.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/readyPickup.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/readyShipment.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/receivedClient.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/reservedPayment.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/reservedShipment.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/returned.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/sentSupplier.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/transferAvailability.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/transferCustom.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/OrderStatus/icons/warning.d.ts +2 -0
- package/dist/app/components/Data/Table/shared/mock/mock-data.d.ts +101 -0
- package/dist/app/components/Form/Autocomplete/Autocomplete.d.ts +35 -0
- package/dist/app/components/Form/Autocomplete/Autocomplete.stories.d.ts +11 -0
- package/dist/app/components/Form/Autocomplete/Autocomplete.types.d.ts +31 -0
- package/dist/app/components/Form/Autocomplete/index.d.ts +2 -0
- package/dist/app/components/Form/Calendar/Calendar.composible.d.ts +13 -0
- package/dist/app/components/Form/Calendar/Calendar.d.ts +11 -0
- package/dist/app/components/Form/Calendar/Calendar.stories.d.ts +68 -0
- package/dist/app/components/Form/Calendar/Calendar.types.d.ts +97 -0
- package/dist/app/components/Form/Calendar/TimePicker.d.ts +14 -0
- package/dist/app/components/Form/Calendar/index.d.ts +2 -0
- package/dist/app/components/Form/Checkbox/Checkbox.d.ts +46 -0
- package/dist/app/components/Form/Checkbox/Checkbox.stories.d.ts +6 -0
- package/dist/app/components/Form/Checkbox/index.d.ts +3 -0
- package/dist/app/components/Form/ChipCheckbox/ChipCheckbox.d.ts +14 -0
- package/dist/app/components/Form/ChipCheckbox/ChipCheckbox.stories.d.ts +6 -0
- package/dist/app/components/Form/ChipCheckbox/index.d.ts +3 -0
- package/dist/app/components/Form/DatePicker/DatePicker.d.ts +38 -0
- package/dist/app/components/Form/DatePicker/DatePicker.stories.d.ts +67 -0
- package/dist/app/components/Form/DatePicker/DatePicker.types.d.ts +50 -0
- package/dist/app/components/Form/DatePicker/DatePicker.utils.d.ts +18 -0
- package/dist/app/components/Form/DatePicker/index.d.ts +2 -0
- package/dist/app/components/Form/Dropdown/Dropdown.d.ts +60 -0
- package/dist/app/components/Form/Dropdown/Dropdown.stories.d.ts +18 -0
- package/dist/app/components/Form/Dropdown/Dropdown.types.d.ts +30 -0
- package/dist/app/components/Form/Dropdown/index.d.ts +3 -0
- package/dist/app/components/Form/FormItem/FormItem.d.ts +29 -0
- package/dist/app/components/Form/FormItem/FormItem.stories.d.ts +9 -0
- package/dist/app/components/Form/FormItem/index.d.ts +1 -0
- package/dist/app/components/Form/IconField/IconField.d.ts +23 -0
- package/dist/app/components/Form/IconField/IconField.stories.d.ts +6 -0
- package/dist/app/components/Form/IconField/index.d.ts +3 -0
- package/dist/app/components/Form/InputMask/InputMask.d.ts +22 -0
- package/dist/app/components/Form/InputMask/InputMask.stories.d.ts +15 -0
- package/dist/app/components/Form/InputMask/index.d.ts +3 -0
- package/dist/app/components/Form/InputMask/useInputMask.d.ts +15 -0
- package/dist/app/components/Form/InputNumber/InputNumber.d.ts +22 -0
- package/dist/app/components/Form/InputNumber/InputNumber.stories.d.ts +6 -0
- package/dist/app/components/Form/InputNumber/index.d.ts +3 -0
- package/dist/app/components/Form/InputPhone/InputPhone.d.ts +9 -0
- package/dist/app/components/Form/InputPhone/InputPhone.stories.d.ts +6 -0
- package/dist/app/components/Form/InputPhone/InputPhone.types.d.ts +4 -0
- package/dist/app/components/Form/InputPhone/index.d.ts +3 -0
- package/dist/app/components/Form/InputText/InputText.d.ts +22 -0
- package/dist/app/components/Form/InputText/InputText.stories.d.ts +10 -0
- package/dist/app/components/Form/InputText/InputText.types.d.ts +19 -0
- package/dist/app/components/Form/InputText/index.d.ts +3 -0
- package/dist/app/components/Form/OTPCode/OTPCode.d.ts +33 -0
- package/dist/app/components/Form/OTPCode/OTPCode.stories.d.ts +15 -0
- package/dist/app/components/Form/OTPCode/OTPCode.types.d.ts +12 -0
- package/dist/app/components/Form/OTPCode/index.d.ts +2 -0
- package/dist/app/components/Form/RadioButton/Radio.d.ts +36 -0
- package/dist/app/components/Form/RadioButton/Radio.stories.d.ts +6 -0
- package/dist/app/components/Form/RadioButton/index.d.ts +3 -0
- package/dist/app/components/Form/Schedule/Schedule.d.ts +49 -0
- package/dist/app/components/Form/Schedule/Schedule.stories.d.ts +10 -0
- package/dist/app/components/Form/Schedule/Schedule.types.d.ts +32 -0
- package/dist/app/components/Form/Schedule/SheduleTimePick.d.ts +21 -0
- package/dist/app/components/Form/Schedule/index.d.ts +2 -0
- package/dist/app/components/Form/SelectButton/SelectButton.d.ts +28 -0
- package/dist/app/components/Form/SelectButton/SelectButton.stories.d.ts +9 -0
- package/dist/app/components/Form/SelectButton/SelectButton.types.d.ts +7 -0
- package/dist/app/components/Form/SelectButton/index.d.ts +3 -0
- package/dist/app/components/Form/StarRating/StarRating.d.ts +19 -0
- package/dist/app/components/Form/StarRating/StarRating.stories.d.ts +12 -0
- package/dist/app/components/Form/StarRating/index.d.ts +1 -0
- package/dist/app/components/Form/SwitchInput/Switch.d.ts +16 -0
- package/dist/app/components/Form/SwitchInput/Switch.stories.d.ts +6 -0
- package/dist/app/components/Form/SwitchInput/index.d.ts +3 -0
- package/dist/app/components/Form/Textarea/Textarea.d.ts +37 -0
- package/dist/app/components/Form/Textarea/Textarea.stories.d.ts +7 -0
- package/dist/app/components/Form/Textarea/index.d.ts +3 -0
- package/dist/app/components/Form/TimePicker/TimePicker.d.ts +48 -0
- package/dist/app/components/Form/TimePicker/TimePicker.stories.d.ts +11 -0
- package/dist/app/components/Form/TimePicker/TimePicker.types.d.ts +22 -0
- package/dist/app/components/Form/TimePicker/index.d.ts +2 -0
- package/dist/app/components/Form/TimeSelect/TimeSelect.d.ts +26 -0
- package/dist/app/components/Form/TimeSelect/TimeSelect.stories.d.ts +8 -0
- package/dist/app/components/Form/TimeSelect/index.d.ts +1 -0
- package/dist/app/components/Media/File/File.d.ts +19 -0
- package/dist/app/components/Media/File/File.stories.d.ts +8 -0
- package/dist/app/components/Media/File/index.d.ts +2 -0
- package/dist/app/components/Media/Image/Image.d.ts +37 -0
- package/dist/app/components/Media/Image/Image.stories.d.ts +9 -0
- package/dist/app/components/Media/Image/ImageFullModal.d.ts +9 -0
- package/dist/app/components/Media/Image/index.d.ts +2 -0
- package/dist/app/components/Menu/Breadcrumb/Breadcrumb.d.ts +6 -0
- package/dist/app/components/Menu/Breadcrumb/Breadcrumb.stories.d.ts +7 -0
- package/dist/app/components/Menu/Breadcrumb/index.d.ts +3 -0
- package/dist/app/components/Messages/Message/Message.d.ts +35 -0
- package/dist/app/components/Messages/Message/Message.stories.d.ts +8 -0
- package/dist/app/components/Messages/Message/index.d.ts +2 -0
- package/dist/app/components/Messages/Toast/Toast.d.ts +3 -0
- package/dist/app/components/Messages/Toast/ToastMessage.d.ts +10 -0
- package/dist/app/components/Messages/Toast/index.d.ts +5 -0
- package/dist/app/components/Messages/Toast/toast.stories.d.ts +6 -0
- package/dist/app/components/Messages/Toast/toast.types.d.ts +89 -0
- package/dist/app/components/Messages/Toast/toastEventBus/toastEventBus.d.ts +1 -0
- package/dist/app/components/Messages/Toast/toastService/toastService.d.ts +5 -0
- package/dist/app/components/Messages/Toast/toastService/toastService.types.d.ts +22 -0
- package/dist/app/components/Messages/Toast/useToast/useToast.d.ts +3 -0
- package/dist/app/components/Mics/Badge/Badge.d.ts +7 -0
- package/dist/app/components/Mics/Badge/Badge.stories.d.ts +10 -0
- package/dist/app/components/Mics/Badge/index.d.ts +3 -0
- package/dist/app/components/Mics/OverlayBadge/OverlayBadge.d.ts +27 -0
- package/dist/app/components/Mics/OverlayBadge/OverlayBadge.stories.d.ts +6 -0
- package/dist/app/components/Mics/OverlayBadge/index.d.ts +3 -0
- package/dist/app/components/Mics/Skeleton/Skeleton.d.ts +9 -0
- package/dist/app/components/Mics/Skeleton/Skeleton.stories.d.ts +6 -0
- package/dist/app/components/Mics/Skeleton/index.d.ts +3 -0
- package/dist/app/components/Mics/Spinner/Spinner.d.ts +8 -0
- package/dist/app/components/Mics/Spinner/Spinner.stories.d.ts +6 -0
- package/dist/app/components/Mics/Spinner/index.d.ts +4 -0
- package/dist/app/components/Mics/Spinner/spinner.directive.d.ts +10 -0
- package/dist/app/components/Mics/Tag/Tag.d.ts +29 -0
- package/dist/app/components/Mics/Tag/Tag.stories.d.ts +8 -0
- package/dist/app/components/Mics/Tag/index.d.ts +3 -0
- package/dist/app/components/Overlays/BottomSheet/BottomSheet.d.ts +30 -0
- package/dist/app/components/Overlays/BottomSheet/BottomSheet.stories.d.ts +9 -0
- package/dist/app/components/Overlays/BottomSheet/index.d.ts +1 -0
- package/dist/app/components/Overlays/ConfirmDialog/ConfirmDialog.d.ts +4 -0
- package/dist/app/components/Overlays/ConfirmDialog/ConfirmDialog.stories.d.ts +11 -0
- package/dist/app/components/Overlays/ConfirmDialog/index.d.ts +3 -0
- package/dist/app/components/Overlays/ConfirmDialog/useConfirmDialog.d.ts +8 -0
- package/dist/app/components/Overlays/ConfirmPopup/ConfirmPopup.d.ts +4 -0
- package/dist/app/components/Overlays/ConfirmPopup/ConfirmPopup.stories.d.ts +13 -0
- package/dist/app/components/Overlays/ConfirmPopup/index.d.ts +3 -0
- package/dist/app/components/Overlays/ConfirmPopup/useConfirmPopup.d.ts +8 -0
- package/dist/app/components/Overlays/ConfirmService/index.d.ts +3 -0
- package/dist/app/components/Overlays/ConfirmService/plugins/confirmService.d.ts +585 -0
- package/dist/app/components/Overlays/ConfirmService/types/index.d.ts +26 -0
- package/dist/app/components/Overlays/Drawer/Drawer.d.ts +34 -0
- package/dist/app/components/Overlays/Drawer/Drawer.stories.d.ts +15 -0
- package/dist/app/components/Overlays/Drawer/Drawer.types.d.ts +7 -0
- package/dist/app/components/Overlays/Drawer/index.d.ts +3 -0
- package/dist/app/components/Overlays/Modal/Modal.d.ts +39 -0
- package/dist/app/components/Overlays/Modal/Modal.stories.d.ts +8 -0
- package/dist/app/components/Overlays/Modal/index.d.ts +3 -0
- package/dist/app/components/Overlays/NewPopover/Popover.d.ts +29 -0
- package/dist/app/components/Overlays/NewPopover/Popover.stories.d.ts +6 -0
- package/dist/app/components/Overlays/NewPopover/index.d.ts +2 -0
- package/dist/app/components/Overlays/Popover/Popover.d.ts +109 -0
- package/dist/app/components/Overlays/Popover/index.d.ts +2 -0
- package/dist/app/components/Overlays/Popover/popover.stories.d.ts +12 -0
- package/dist/app/components/Overlays/Popover/popover.types.d.ts +15 -0
- package/dist/app/components/Overlays/Tooltip/Tooltip.d.ts +15 -0
- package/dist/app/components/Overlays/Tooltip/Tooltip.stories.d.ts +11 -0
- package/dist/app/components/Overlays/Tooltip/Tooltip.types.d.ts +10 -0
- package/dist/app/components/Overlays/Tooltip/index.d.ts +5 -0
- package/dist/app/components/Overlays/Tooltip/tooltipDirective.d.ts +15 -0
- package/dist/app/components/Panel/Accordion/Accordion.d.ts +26 -0
- package/dist/app/components/Panel/Accordion/Accordion.stories.d.ts +8 -0
- package/dist/app/components/Panel/Accordion/AccordionContent.d.ts +21 -0
- package/dist/app/components/Panel/Accordion/AccordionHeader.d.ts +17 -0
- package/dist/app/components/Panel/Accordion/AccordionPanel.d.ts +20 -0
- package/dist/app/components/Panel/Accordion/index.d.ts +5 -0
- package/dist/app/components/Panel/Divider/Divider.d.ts +23 -0
- package/dist/app/components/Panel/Divider/Divider.stories.d.ts +8 -0
- package/dist/app/components/Panel/Divider/index.d.ts +3 -0
- package/dist/app/components/Panel/Stepper/Step.d.ts +3 -0
- package/dist/app/components/Panel/Stepper/Step.types.d.ts +10 -0
- package/dist/app/components/Panel/Stepper/Stepper.d.ts +7 -0
- package/dist/app/components/Panel/Stepper/Stepper.stories.d.ts +6 -0
- package/dist/app/components/Panel/Stepper/Stepper.types.d.ts +21 -0
- package/dist/app/components/Panel/Stepper/index.d.ts +5 -0
- package/dist/app/components/Panel/Tabs/Tab.d.ts +20 -0
- package/dist/app/components/Panel/Tabs/TabList.d.ts +17 -0
- package/dist/app/components/Panel/Tabs/TabPanel.d.ts +20 -0
- package/dist/app/components/Panel/Tabs/TabPanels.d.ts +17 -0
- package/dist/app/components/Panel/Tabs/Tabs.d.ts +24 -0
- package/dist/app/components/Panel/Tabs/Tabs.stories.d.ts +6 -0
- package/dist/app/components/Panel/Tabs/index.d.ts +6 -0
- package/dist/app/components/index.d.ts +46 -0
- package/dist/app/icons/colored/BonusIcon.d.ts +2 -0
- package/dist/app/icons/colored/CashbackIcon.d.ts +2 -0
- package/dist/app/icons/colored/CertificateIcon.d.ts +2 -0
- package/dist/app/icons/colored/Colored.stories.d.ts +7 -0
- package/dist/app/icons/colored/DiscountIcon.d.ts +2 -0
- package/dist/app/icons/colored/ExcelIcon.d.ts +2 -0
- package/dist/app/icons/colored/FaviconIcon.d.ts +2 -0
- package/dist/app/icons/colored/GiftColorIcon.d.ts +2 -0
- package/dist/app/icons/colored/PdfIcon.d.ts +2 -0
- package/dist/app/icons/colored/SberPayColorIcon.d.ts +2 -0
- package/dist/app/icons/colored/SpbIcon.d.ts +2 -0
- package/dist/app/icons/colored/TruesignIcon.d.ts +2 -0
- package/dist/app/icons/colored/WarehousePointIcon.d.ts +2 -0
- package/dist/app/icons/colored/WordIcon.d.ts +2 -0
- package/dist/app/icons/colored/index.d.ts +14 -0
- package/dist/app/icons/index.d.ts +2 -0
- package/dist/app/icons/monochrome/AngleBottomIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/AngleDoubleLeftIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/AngleDoubleRightIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/AngleLeftIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/AngleRightIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/AngleTopIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/ArrowRightTopIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/AtIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/AvatarIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/BagIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/BanIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/BankIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/BarsIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/BellIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/BookIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/BoxIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/BriefcaseIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/BuildingIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CalendarIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CameraIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CarIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CarSearchIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CartCrossedIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CartIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CatalogToIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CevronBottomIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CevronLeftIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CevronRightIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CevronTopIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CheckFilledIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CheckIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CheckRoundedIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/ClockIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/ClockPayIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CloseIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CloseRoundedIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CogIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CommentIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CommentsIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CopyIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CreditCardIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/CubeIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/DeliveryIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/DeliveryTimeIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/DownloadIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/ErrorFillIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/ErrorIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/EyeCloseIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/EyeIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/FileEditIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/FileExportIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/FileIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/FileUploadIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/FilterFillIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/FilterIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/FilterSlashIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/GiftIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/GuardIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/HeadSetIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/HeartFillIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/HeartOutlinedIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/HomeIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/ImageIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/InfoFillIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/InfoIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/LikeIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/ListIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/LocationIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/LockIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/MailBoxIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/MapIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/MapPointFilledIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/MapPointIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/MessageIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/MinusIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/MoneyBillIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/Monochrome.stories.d.ts +7 -0
- package/dist/app/icons/monochrome/NewIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/PackageIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/PencelLineIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/PlusIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/PlusRoundedIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/PrintIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/ProcentIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/QuestionIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/QuestionRoundedIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/ReplaceIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/ReplayIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/ReturnIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/RubIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/SberPayIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/SearchIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/SearchMinusIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/SearchPlusIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/SendIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/SettingsIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/ShieldErrorIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/ShopIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/ShoppingCartIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/SortDownFillIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/SortDownIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/SortUpFillIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/SortUpIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/StarFillIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/StarIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/SyncIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/TelegramIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/TimerIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/TrashIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/TruckFillIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/TruckIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/UploadIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/UserIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/UsersIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/Wallet2Icon.d.ts +2 -0
- package/dist/app/icons/monochrome/WalletIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/WarehouseIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/WarnRoundedIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/WarningFillIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/WarningIcon.d.ts +2 -0
- package/dist/app/icons/monochrome/index.d.ts +120 -0
- package/dist/app/overlay/OverlayManager.d.ts +18 -0
- package/dist/app/overlay/types.d.ts +7 -0
- package/dist/app/overlay/useOverlay.d.ts +15 -0
- package/dist/app/reka-ui/components/Accordion/Accordion.stories.d.ts +10 -0
- package/dist/app/reka-ui/components/Accordion/AccordionContent.d.ts +18 -0
- package/dist/app/reka-ui/components/Accordion/AccordionContent.stories.d.ts +8 -0
- package/dist/app/reka-ui/components/Accordion/AccordionHeader.d.ts +18 -0
- package/dist/app/reka-ui/components/Accordion/AccordionHeader.stories.d.ts +7 -0
- package/dist/app/reka-ui/components/Accordion/AccordionItem.d.ts +20 -0
- package/dist/app/reka-ui/components/Accordion/AccordionItem.stories.d.ts +8 -0
- package/dist/app/reka-ui/components/Accordion/AccordionRoot.d.ts +22 -0
- package/dist/app/reka-ui/components/Accordion/AccordionTrigger.d.ts +24 -0
- package/dist/app/reka-ui/components/Accordion/AccordionTrigger.stories.d.ts +8 -0
- package/dist/app/reka-ui/components/Accordion/index.d.ts +6 -0
- package/dist/app/reka-ui/components/Accordion/types.d.ts +37 -0
- package/dist/app/reka-ui/components/Alert/Alert.d.ts +7 -0
- package/dist/app/reka-ui/components/Alert/Alert.stories.d.ts +13 -0
- package/dist/app/reka-ui/components/Alert/index.d.ts +3 -0
- package/dist/app/reka-ui/components/Alert/types.d.ts +16 -0
- package/dist/app/reka-ui/components/AlertDialog/AlertDialogAction.d.ts +27 -0
- package/dist/app/reka-ui/components/AlertDialog/AlertDialogCancel.d.ts +27 -0
- package/dist/app/reka-ui/components/AlertDialog/AlertDialogContent.d.ts +23 -0
- package/dist/app/reka-ui/components/AlertDialog/AlertDialogDescription.d.ts +18 -0
- package/dist/app/reka-ui/components/AlertDialog/AlertDialogOverlay.d.ts +3 -0
- package/dist/app/reka-ui/components/AlertDialog/AlertDialogTitle.d.ts +18 -0
- package/dist/app/reka-ui/components/AlertDialog/AlertDialogTrigger.d.ts +21 -0
- package/dist/app/reka-ui/components/AlertDialog/index.d.ts +9 -0
- package/dist/app/reka-ui/components/Badge/Badge.d.ts +7 -0
- package/dist/app/reka-ui/components/Badge/Badge.stories.d.ts +10 -0
- package/dist/app/reka-ui/components/Badge/index.d.ts +2 -0
- package/dist/app/reka-ui/components/BottomSheet/BottomSheet.d.ts +30 -0
- package/dist/app/reka-ui/components/BottomSheet/BottomSheet.stories.d.ts +9 -0
- package/dist/app/reka-ui/components/BottomSheet/index.d.ts +2 -0
- package/dist/app/reka-ui/components/Breadcrumb/Breadcrumb.d.ts +6 -0
- package/dist/app/reka-ui/components/Breadcrumb/Breadcrumb.stories.d.ts +7 -0
- package/dist/app/reka-ui/components/Breadcrumb/index.d.ts +2 -0
- package/dist/app/reka-ui/components/Button/Button.d.ts +18 -0
- package/dist/app/reka-ui/components/Button/Button.stories.d.ts +6 -0
- package/dist/app/reka-ui/components/Button/Button.types.d.ts +20 -0
- package/dist/app/reka-ui/components/Button/index.d.ts +4 -0
- package/dist/app/reka-ui/components/Calendar/Calendar.stories.d.ts +6 -0
- package/dist/app/reka-ui/components/Calendar/CalendarCellTrigger.d.ts +18 -0
- package/dist/app/reka-ui/components/Calendar/CalendarGrid.d.ts +18 -0
- package/dist/app/reka-ui/components/Calendar/CalendarGridBody.d.ts +18 -0
- package/dist/app/reka-ui/components/Calendar/CalendarGridRow.d.ts +18 -0
- package/dist/app/reka-ui/components/Calendar/CalendarHeadCell.d.ts +18 -0
- package/dist/app/reka-ui/components/Calendar/CalendarHeader.d.ts +18 -0
- package/dist/app/reka-ui/components/Calendar/CalendarHeading.d.ts +3 -0
- package/dist/app/reka-ui/components/Calendar/CalendarNext.d.ts +12 -0
- package/dist/app/reka-ui/components/Calendar/CalendarPrev.d.ts +12 -0
- package/dist/app/reka-ui/components/Calendar/index.d.ts +12 -0
- package/dist/app/reka-ui/components/Checkbox/Checkbox.d.ts +46 -0
- package/dist/app/reka-ui/components/Checkbox/Checkbox.stories.d.ts +6 -0
- package/dist/app/reka-ui/components/Checkbox/index.d.ts +3 -0
- package/dist/app/reka-ui/components/Combobox/Combobox.stories.d.ts +6 -0
- package/dist/app/reka-ui/components/Combobox/ComboboxAnchor.d.ts +23 -0
- package/dist/app/reka-ui/components/Combobox/ComboboxClear.d.ts +6 -0
- package/dist/app/reka-ui/components/Combobox/ComboboxContent.d.ts +18 -0
- package/dist/app/reka-ui/components/Combobox/ComboboxInput.d.ts +7 -0
- package/dist/app/reka-ui/components/Combobox/ComboboxItem.d.ts +21 -0
- package/dist/app/reka-ui/components/Combobox/ComboboxRoot.d.ts +33 -0
- package/dist/app/reka-ui/components/Combobox/ComboboxTrigger.d.ts +2 -0
- package/dist/app/reka-ui/components/Combobox/ComboboxViewport.d.ts +18 -0
- package/dist/app/reka-ui/components/Combobox/index.d.ts +10 -0
- package/dist/app/reka-ui/components/DataTable/DataTable.d.ts +29 -0
- package/dist/app/reka-ui/components/DataTable/DataTable.stories.d.ts +107 -0
- package/dist/app/reka-ui/components/DataTable/DataTable.types.d.ts +44 -0
- package/dist/app/reka-ui/components/DataTable/components/DataTableBody.d.ts +7 -0
- package/dist/app/reka-ui/components/DataTable/components/DataTableBodyEmpty.d.ts +7 -0
- package/dist/app/reka-ui/components/DataTable/components/DataTableFooter.d.ts +7 -0
- package/dist/app/reka-ui/components/DataTable/components/DataTableHead.d.ts +8 -0
- package/dist/app/reka-ui/components/DataTable/components/DataTablePagination.d.ts +25 -0
- package/dist/app/reka-ui/components/DataTable/index.d.ts +4 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/OrderStatus.d.ts +6 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/constants.d.ts +9 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/accepted.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/approval.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/assembled.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/awaitingPayment.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/cancelled.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/complaint.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/confirmation.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/dedlineChanged.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/delayDelivery.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/documentsIssued.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/error.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/handedShipment.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/index.d.ts +26 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/orderSupplier.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/orderedSupplier.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/paid.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/readyPickup.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/readyShipment.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/receivedClient.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/reservedPayment.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/reservedShipment.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/returned.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/sentSupplier.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/transferAvailability.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/transferCustom.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/OrderStatus/icons/warning.d.ts +2 -0
- package/dist/app/reka-ui/components/DataTable/shared/mock/mock-data.d.ts +101 -0
- package/dist/app/reka-ui/components/DatePicker/DatePicker.stories.d.ts +6 -0
- package/dist/app/reka-ui/components/DatePicker/DatePickerArrow.d.ts +7 -0
- package/dist/app/reka-ui/components/DatePicker/DatePickerCellTrigger.d.ts +18 -0
- package/dist/app/reka-ui/components/DatePicker/DatePickerContent.d.ts +18 -0
- package/dist/app/reka-ui/components/DatePicker/DatePickerField.d.ts +25 -0
- package/dist/app/reka-ui/components/DatePicker/DatePickerGridBody.d.ts +18 -0
- package/dist/app/reka-ui/components/DatePicker/DatePickerGridRow.d.ts +18 -0
- package/dist/app/reka-ui/components/DatePicker/DatePickerHeadCell.d.ts +18 -0
- package/dist/app/reka-ui/components/DatePicker/DatePickerHeader.d.ts +18 -0
- package/dist/app/reka-ui/components/DatePicker/DatePickerHeading.d.ts +3 -0
- package/dist/app/reka-ui/components/DatePicker/DatePickerInput.d.ts +18 -0
- package/dist/app/reka-ui/components/DatePicker/DatePickerNext.d.ts +12 -0
- package/dist/app/reka-ui/components/DatePicker/DatePickerPrev.d.ts +12 -0
- package/dist/app/reka-ui/components/DatePicker/DatePickerTrigger.d.ts +18 -0
- package/dist/app/reka-ui/components/DatePicker/index.d.ts +16 -0
- package/dist/app/reka-ui/components/DateRangePicker/DateRangePicker.stories.d.ts +6 -0
- package/dist/app/reka-ui/components/DateRangePicker/DateRangePickerArrow.d.ts +7 -0
- package/dist/app/reka-ui/components/DateRangePicker/DateRangePickerCellTrigger.d.ts +18 -0
- package/dist/app/reka-ui/components/DateRangePicker/DateRangePickerContent.d.ts +18 -0
- package/dist/app/reka-ui/components/DateRangePicker/DateRangePickerField.d.ts +12 -0
- package/dist/app/reka-ui/components/DateRangePicker/DateRangePickerGridBody.d.ts +18 -0
- package/dist/app/reka-ui/components/DateRangePicker/DateRangePickerGridRow.d.ts +18 -0
- package/dist/app/reka-ui/components/DateRangePicker/DateRangePickerHeadCell.d.ts +18 -0
- package/dist/app/reka-ui/components/DateRangePicker/DateRangePickerHeader.d.ts +18 -0
- package/dist/app/reka-ui/components/DateRangePicker/DateRangePickerHeading.d.ts +3 -0
- package/dist/app/reka-ui/components/DateRangePicker/DateRangePickerInput.d.ts +18 -0
- package/dist/app/reka-ui/components/DateRangePicker/DateRangePickerNext.d.ts +12 -0
- package/dist/app/reka-ui/components/DateRangePicker/DateRangePickerPrev.d.ts +12 -0
- package/dist/app/reka-ui/components/DateRangePicker/DateRangePickerTrigger.d.ts +18 -0
- package/dist/app/reka-ui/components/DateRangePicker/index.d.ts +15 -0
- package/dist/app/reka-ui/components/Dialog/DialogActions.d.ts +19 -0
- package/dist/app/reka-ui/components/Dialog/DialogClose.d.ts +2 -0
- package/dist/app/reka-ui/components/Dialog/DialogContent.d.ts +49 -0
- package/dist/app/reka-ui/components/Dialog/DialogDescription.d.ts +18 -0
- package/dist/app/reka-ui/components/Dialog/DialogOverlay.d.ts +3 -0
- package/dist/app/reka-ui/components/Dialog/DialogTitle.d.ts +18 -0
- package/dist/app/reka-ui/components/Dialog/index.d.ts +6 -0
- package/dist/app/reka-ui/components/Divider/Divider.d.ts +23 -0
- package/dist/app/reka-ui/components/Divider/Divider.stories.d.ts +8 -0
- package/dist/app/reka-ui/components/Divider/index.d.ts +2 -0
- package/dist/app/reka-ui/components/Drawer/DrawerContent.d.ts +46 -0
- package/dist/app/reka-ui/components/Drawer/DrawerOverlay.d.ts +17 -0
- package/dist/app/reka-ui/components/Drawer/DrawerPortal.d.ts +17 -0
- package/dist/app/reka-ui/components/Drawer/DrawerRoot.d.ts +22 -0
- package/dist/app/reka-ui/components/Drawer/DrawerTrigger.d.ts +18 -0
- package/dist/app/reka-ui/components/Drawer/index.d.ts +6 -0
- package/dist/app/reka-ui/components/DropdownMenu/DropdownMenuArrow.d.ts +7 -0
- package/dist/app/reka-ui/components/DropdownMenu/DropdownMenuContent.d.ts +35 -0
- package/dist/app/reka-ui/components/DropdownMenu/DropdownMenuItem.d.ts +22 -0
- package/dist/app/reka-ui/components/DropdownMenu/DropdownMenuSeparator.d.ts +3 -0
- package/dist/app/reka-ui/components/DropdownMenu/DropdownMenuSubContent.d.ts +39 -0
- package/dist/app/reka-ui/components/DropdownMenu/DropdownMenuSubTrigger.d.ts +18 -0
- package/dist/app/reka-ui/components/DropdownMenu/index.d.ts +8 -0
- package/dist/app/reka-ui/components/File/File.d.ts +22 -0
- package/dist/app/reka-ui/components/File/File.stories.d.ts +8 -0
- package/dist/app/reka-ui/components/File/index.d.ts +2 -0
- package/dist/app/reka-ui/components/FormField/FormField.d.ts +25 -0
- package/dist/app/reka-ui/components/FormField/FormField.stories.d.ts +6 -0
- package/dist/app/reka-ui/components/FormField/index.d.ts +2 -0
- package/dist/app/reka-ui/components/Image/Image.d.ts +41 -0
- package/dist/app/reka-ui/components/Image/Image.stories.d.ts +6 -0
- package/dist/app/reka-ui/components/Image/ImageFullModal.d.ts +9 -0
- package/dist/app/reka-ui/components/Image/index.d.ts +2 -0
- package/dist/app/reka-ui/components/InputIcon/InputIcon.d.ts +2 -0
- package/dist/app/reka-ui/components/InputIcon/index.d.ts +2 -0
- package/dist/app/reka-ui/components/InputNumber/InputNumber.d.ts +26 -0
- package/dist/app/reka-ui/components/InputNumber/InputNumber.stories.d.ts +6 -0
- package/dist/app/reka-ui/components/InputNumber/index.d.ts +2 -0
- package/dist/app/reka-ui/components/InputText/InputText.d.ts +38 -0
- package/dist/app/reka-ui/components/InputText/InputText.stories.d.ts +11 -0
- package/dist/app/reka-ui/components/InputText/InputText.types.d.ts +15 -0
- package/dist/app/reka-ui/components/InputText/index.d.ts +3 -0
- package/dist/app/reka-ui/components/Label/Label.d.ts +18 -0
- package/dist/app/reka-ui/components/Label/index.d.ts +2 -0
- package/dist/app/reka-ui/components/ListBox/index.d.ts +2 -0
- package/dist/app/reka-ui/components/Message/Message.d.ts +35 -0
- package/dist/app/reka-ui/components/Message/Message.stories.d.ts +8 -0
- package/dist/app/reka-ui/components/Message/index.d.ts +2 -0
- package/dist/app/reka-ui/components/OTPCode/OTPCode.d.ts +31 -0
- package/dist/app/reka-ui/components/OTPCode/OTPCode.stories.d.ts +15 -0
- package/dist/app/reka-ui/components/OTPCode/OTPCode.types.d.ts +9 -0
- package/dist/app/reka-ui/components/OTPCode/index.d.ts +2 -0
- package/dist/app/reka-ui/components/Pagination/PaginationEllipsis.d.ts +3 -0
- package/dist/app/reka-ui/components/Pagination/PaginationFirst.d.ts +3 -0
- package/dist/app/reka-ui/components/Pagination/PaginationLast.d.ts +3 -0
- package/dist/app/reka-ui/components/Pagination/PaginationList.d.ts +18 -0
- package/dist/app/reka-ui/components/Pagination/PaginationListItem.d.ts +18 -0
- package/dist/app/reka-ui/components/Pagination/PaginationNext.d.ts +3 -0
- package/dist/app/reka-ui/components/Pagination/PaginationPrev.d.ts +3 -0
- package/dist/app/reka-ui/components/Pagination/index.d.ts +9 -0
- package/dist/app/reka-ui/components/Popover/PopoverArrow.d.ts +7 -0
- package/dist/app/reka-ui/components/Popover/PopoverContent.d.ts +38 -0
- package/dist/app/reka-ui/components/Popover/index.d.ts +4 -0
- package/dist/app/reka-ui/components/Radio/Radio.d.ts +36 -0
- package/dist/app/reka-ui/components/Radio/Radio.stories.d.ts +6 -0
- package/dist/app/reka-ui/components/Radio/index.d.ts +2 -0
- package/dist/app/reka-ui/components/RadioGroup/RadioGroupItem.d.ts +8 -0
- package/dist/app/reka-ui/components/RadioGroup/index.d.ts +3 -0
- package/dist/app/reka-ui/components/RangeCalendar/RangeCalendar.stories.d.ts +6 -0
- package/dist/app/reka-ui/components/RangeCalendar/RangeCalendarCellTrigger.d.ts +18 -0
- package/dist/app/reka-ui/components/RangeCalendar/RangeCalendarGridBody.d.ts +18 -0
- package/dist/app/reka-ui/components/RangeCalendar/RangeCalendarGridRow.d.ts +18 -0
- package/dist/app/reka-ui/components/RangeCalendar/RangeCalendarHeadCell.d.ts +18 -0
- package/dist/app/reka-ui/components/RangeCalendar/RangeCalendarHeader.d.ts +18 -0
- package/dist/app/reka-ui/components/RangeCalendar/RangeCalendarHeading.d.ts +3 -0
- package/dist/app/reka-ui/components/RangeCalendar/RangeCalendarNext.d.ts +12 -0
- package/dist/app/reka-ui/components/RangeCalendar/RangeCalendarPrev.d.ts +12 -0
- package/dist/app/reka-ui/components/RangeCalendar/index.d.ts +11 -0
- package/dist/app/reka-ui/components/Schedule/Schedule.d.ts +14 -0
- package/dist/app/reka-ui/components/Schedule/Schedule.stories.d.ts +6 -0
- package/dist/app/reka-ui/components/Schedule/Schedule.types.d.ts +8 -0
- package/dist/app/reka-ui/components/Schedule/index.d.ts +3 -0
- package/dist/app/reka-ui/components/Schedule/timeUtils.d.ts +30 -0
- package/dist/app/reka-ui/components/ScrollArea/ScrollAreaRoot.d.ts +282 -0
- package/dist/app/reka-ui/components/ScrollArea/ScrollAreaScrollbar.d.ts +3 -0
- package/dist/app/reka-ui/components/ScrollArea/ScrollAreaViewport.d.ts +18 -0
- package/dist/app/reka-ui/components/ScrollArea/index.d.ts +4 -0
- package/dist/app/reka-ui/components/Select/Select.stories.d.ts +8 -0
- package/dist/app/reka-ui/components/Select/SelectContent.d.ts +26 -0
- package/dist/app/reka-ui/components/Select/SelectItem.d.ts +21 -0
- package/dist/app/reka-ui/components/Select/SelectRoot.d.ts +25 -0
- package/dist/app/reka-ui/components/Select/SelectSeparator.d.ts +3 -0
- package/dist/app/reka-ui/components/Select/SelectTrigger.d.ts +23 -0
- package/dist/app/reka-ui/components/Select/SelectValue.d.ts +23 -0
- package/dist/app/reka-ui/components/Select/SelectViewport.d.ts +18 -0
- package/dist/app/reka-ui/components/Select/index.d.ts +9 -0
- package/dist/app/reka-ui/components/Spinner/Spinner.d.ts +6 -0
- package/dist/app/reka-ui/components/Spinner/Spinner.directive.d.ts +11 -0
- package/dist/app/reka-ui/components/Spinner/index.d.ts +3 -0
- package/dist/app/reka-ui/components/Stepper/Stepper.stories.d.ts +7 -0
- package/dist/app/reka-ui/components/Stepper/StepperIndicator.d.ts +3 -0
- package/dist/app/reka-ui/components/Stepper/StepperItem.d.ts +18 -0
- package/dist/app/reka-ui/components/Stepper/StepperRoot.d.ts +446 -0
- package/dist/app/reka-ui/components/Stepper/StepperSeparator.d.ts +3 -0
- package/dist/app/reka-ui/components/Stepper/index.d.ts +3 -0
- package/dist/app/reka-ui/components/Switch/SwitchRoot.d.ts +22 -0
- package/dist/app/reka-ui/components/Switch/SwitchThumb.d.ts +3 -0
- package/dist/app/reka-ui/components/Switch/index.d.ts +3 -0
- package/dist/app/reka-ui/components/Tabs/TabsList.d.ts +18 -0
- package/dist/app/reka-ui/components/Tabs/TabsRoot.d.ts +17 -0
- package/dist/app/reka-ui/components/Tabs/TabsTrigger.d.ts +18 -0
- package/dist/app/reka-ui/components/Tabs/index.d.ts +5 -0
- package/dist/app/reka-ui/components/Tag/Tag.d.ts +28 -0
- package/dist/app/reka-ui/components/Tag/index.d.ts +2 -0
- package/dist/app/reka-ui/components/Textarea/Textarea.d.ts +37 -0
- package/dist/app/reka-ui/components/Textarea/Textarea.stories.d.ts +7 -0
- package/dist/app/reka-ui/components/Textarea/index.d.ts +2 -0
- package/dist/app/reka-ui/components/TimeField/TimeField.d.ts +22 -0
- package/dist/app/reka-ui/components/TimeField/TimeField.stories.d.ts +6 -0
- package/dist/app/reka-ui/components/TimeField/index.d.ts +2 -0
- package/dist/app/reka-ui/components/Toast/ToastClose.d.ts +3 -0
- package/dist/app/reka-ui/components/Toast/ToastDescription.d.ts +20 -0
- package/dist/app/reka-ui/components/Toast/ToastProvider.d.ts +20 -0
- package/dist/app/reka-ui/components/Toast/ToastRoot.d.ts +107 -0
- package/dist/app/reka-ui/components/Toast/ToastTitle.d.ts +20 -0
- package/dist/app/reka-ui/components/Toast/ToastViewport.d.ts +3 -0
- package/dist/app/reka-ui/components/Toast/Toaster.d.ts +2 -0
- package/dist/app/reka-ui/components/Toast/index.d.ts +10 -0
- package/dist/app/reka-ui/components/Toast/toast.constants.d.ts +8 -0
- package/dist/app/reka-ui/components/Toast/use-toast.d.ts +277 -0
- package/dist/app/reka-ui/components/Tooltip/TooltipArrow.d.ts +8 -0
- package/dist/app/reka-ui/components/Tooltip/TooltipContent.d.ts +29 -0
- package/dist/app/reka-ui/components/Tooltip/index.d.ts +3 -0
- package/dist/app/reka-ui/index.d.ts +46 -0
- package/dist/app/reka-ui/shared/libs/breakpoints.utils.d.ts +14 -0
- package/dist/app/reka-ui/shared/libs/dayjs.utils.d.ts +25 -0
- package/dist/app/reka-ui/shared/libs/priceFormat.util.d.ts +9 -0
- package/dist/app/types/global.types.d.ts +11 -0
- package/dist/app/types/index.d.ts +1 -0
- package/dist/app/utils/Portal/Portal.d.ts +31 -0
- package/dist/app/utils/Portal/index.d.ts +2 -0
- package/dist/app/utils/date.util.d.ts +16 -0
- package/dist/app/utils/dayjs.util.d.ts +2 -0
- package/dist/app/utils/eventBus.util.d.ts +8 -0
- package/dist/app/utils/index.d.ts +10 -0
- package/dist/app/utils/internationalized.utils.d.ts +1 -0
- package/dist/app/utils/isClient.util.d.ts +1 -0
- package/dist/app/utils/maskUtil/mask.util.d.ts +11 -0
- package/dist/app/utils/onClickOutside.util.d.ts +9 -0
- package/dist/app/utils/parseDate.util.d.ts +11 -0
- package/dist/app/utils/parseFileSize.util.d.ts +18 -0
- package/dist/app/utils/phoneMask.util.d.ts +6 -0
- package/dist/app/utils/price.util.d.ts +15 -0
- package/dist/app/utils/typeFile.util.d.ts +10 -0
- package/dist/app/utils/uploadFile.util.d.ts +23 -0
- package/dist/app/utils/useBodyScroll.util.d.ts +4 -0
- package/dist/blocks/index.cjs.js +1 -1
- package/dist/blocks/index.es.js +7 -6
- package/dist/index.d.ts +1 -2210
- package/dist/prlg-ui.css +1 -1
- package/dist/reka-ui/index.cjs.js +2 -2
- package/dist/reka-ui/index.es.js +74 -65
- package/dist/vite-env.d.ts +6 -0
- package/package.json +17 -16
- package/dist/blocks.d.ts +0 -54
- package/dist/icons.d.ts +0 -289
- package/dist/rekaUI.d.ts +0 -4297
- package/dist/types.d.ts +0 -33
- package/dist/utils.d.ts +0 -174
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export interface TTimeValue {
|
|
2
|
+
hour: number;
|
|
3
|
+
minute: number;
|
|
4
|
+
}
|
|
5
|
+
interface Props {
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
hourCycle?: 12 | 24;
|
|
8
|
+
locale?: string;
|
|
9
|
+
}
|
|
10
|
+
type __VLS_Props = Props;
|
|
11
|
+
type __VLS_PublicProps = {
|
|
12
|
+
modelValue?: TTimeValue | null;
|
|
13
|
+
} & __VLS_Props;
|
|
14
|
+
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
|
+
"update:modelValue": (value: TTimeValue | null) => any;
|
|
16
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
17
|
+
"onUpdate:modelValue"?: ((value: TTimeValue | null) => any) | undefined;
|
|
18
|
+
}>, {
|
|
19
|
+
locale: string;
|
|
20
|
+
hourCycle: 12 | 24;
|
|
21
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
22
|
+
export default _default;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ToastCloseProps } from 'reka-ui';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<ToastCloseProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ToastCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ToastDescriptionProps } from 'reka-ui';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {};
|
|
8
|
+
rootEl: any;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
+
declare const __VLS_component: import('vue').DefineComponent<ToastDescriptionProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ToastDescriptionProps> & Readonly<{}>, {
|
|
12
|
+
as: import('reka-ui').AsTag | import('vue').Component;
|
|
13
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
17
|
+
new (): {
|
|
18
|
+
$slots: S;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ToastProviderProps } from 'reka-ui';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {};
|
|
8
|
+
rootEl: any;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
+
declare const __VLS_component: import('vue').DefineComponent<ToastProviderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ToastProviderProps> & Readonly<{}>, {
|
|
12
|
+
swipeDirection: "left" | "right" | "up" | "down";
|
|
13
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
17
|
+
new (): {
|
|
18
|
+
$slots: S;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { ToastRootProps } from 'reka-ui';
|
|
2
|
+
import { ToastVariant } from './toast.constants';
|
|
3
|
+
export interface IToastRootProps extends ToastRootProps {
|
|
4
|
+
variant?: ToastVariant;
|
|
5
|
+
onOpenChange?: ((value: boolean) => void) | undefined;
|
|
6
|
+
}
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: {
|
|
10
|
+
default?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
refs: {};
|
|
13
|
+
rootEl: any;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
+
declare const __VLS_component: import('vue').DefineComponent<IToastRootProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
|
+
pause: () => any;
|
|
18
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
19
|
+
"update:open": (value: boolean) => any;
|
|
20
|
+
resume: () => any;
|
|
21
|
+
swipeStart: (event: {
|
|
22
|
+
currentTarget: EventTarget & HTMLElement;
|
|
23
|
+
} & Omit<CustomEvent<{
|
|
24
|
+
originalEvent: PointerEvent;
|
|
25
|
+
delta: {
|
|
26
|
+
x: number;
|
|
27
|
+
y: number;
|
|
28
|
+
};
|
|
29
|
+
}>, "currentTarget">) => any;
|
|
30
|
+
swipeMove: (event: {
|
|
31
|
+
currentTarget: EventTarget & HTMLElement;
|
|
32
|
+
} & Omit<CustomEvent<{
|
|
33
|
+
originalEvent: PointerEvent;
|
|
34
|
+
delta: {
|
|
35
|
+
x: number;
|
|
36
|
+
y: number;
|
|
37
|
+
};
|
|
38
|
+
}>, "currentTarget">) => any;
|
|
39
|
+
swipeCancel: (event: {
|
|
40
|
+
currentTarget: EventTarget & HTMLElement;
|
|
41
|
+
} & Omit<CustomEvent<{
|
|
42
|
+
originalEvent: PointerEvent;
|
|
43
|
+
delta: {
|
|
44
|
+
x: number;
|
|
45
|
+
y: number;
|
|
46
|
+
};
|
|
47
|
+
}>, "currentTarget">) => any;
|
|
48
|
+
swipeEnd: (event: {
|
|
49
|
+
currentTarget: EventTarget & HTMLElement;
|
|
50
|
+
} & Omit<CustomEvent<{
|
|
51
|
+
originalEvent: PointerEvent;
|
|
52
|
+
delta: {
|
|
53
|
+
x: number;
|
|
54
|
+
y: number;
|
|
55
|
+
};
|
|
56
|
+
}>, "currentTarget">) => any;
|
|
57
|
+
}, string, import('vue').PublicProps, Readonly<IToastRootProps> & Readonly<{
|
|
58
|
+
onPause?: (() => any) | undefined;
|
|
59
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
60
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
61
|
+
onResume?: (() => any) | undefined;
|
|
62
|
+
onSwipeStart?: ((event: {
|
|
63
|
+
currentTarget: EventTarget & HTMLElement;
|
|
64
|
+
} & Omit<CustomEvent<{
|
|
65
|
+
originalEvent: PointerEvent;
|
|
66
|
+
delta: {
|
|
67
|
+
x: number;
|
|
68
|
+
y: number;
|
|
69
|
+
};
|
|
70
|
+
}>, "currentTarget">) => any) | undefined;
|
|
71
|
+
onSwipeMove?: ((event: {
|
|
72
|
+
currentTarget: EventTarget & HTMLElement;
|
|
73
|
+
} & Omit<CustomEvent<{
|
|
74
|
+
originalEvent: PointerEvent;
|
|
75
|
+
delta: {
|
|
76
|
+
x: number;
|
|
77
|
+
y: number;
|
|
78
|
+
};
|
|
79
|
+
}>, "currentTarget">) => any) | undefined;
|
|
80
|
+
onSwipeCancel?: ((event: {
|
|
81
|
+
currentTarget: EventTarget & HTMLElement;
|
|
82
|
+
} & Omit<CustomEvent<{
|
|
83
|
+
originalEvent: PointerEvent;
|
|
84
|
+
delta: {
|
|
85
|
+
x: number;
|
|
86
|
+
y: number;
|
|
87
|
+
};
|
|
88
|
+
}>, "currentTarget">) => any) | undefined;
|
|
89
|
+
onSwipeEnd?: ((event: {
|
|
90
|
+
currentTarget: EventTarget & HTMLElement;
|
|
91
|
+
} & Omit<CustomEvent<{
|
|
92
|
+
originalEvent: PointerEvent;
|
|
93
|
+
delta: {
|
|
94
|
+
x: number;
|
|
95
|
+
y: number;
|
|
96
|
+
};
|
|
97
|
+
}>, "currentTarget">) => any) | undefined;
|
|
98
|
+
}>, {
|
|
99
|
+
variant: ToastVariant;
|
|
100
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
101
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
102
|
+
export default _default;
|
|
103
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
104
|
+
new (): {
|
|
105
|
+
$slots: S;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ToastTitleProps } from 'reka-ui';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {};
|
|
8
|
+
rootEl: any;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
+
declare const __VLS_component: import('vue').DefineComponent<ToastTitleProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ToastTitleProps> & Readonly<{}>, {
|
|
12
|
+
as: import('reka-ui').AsTag | import('vue').Component;
|
|
13
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
17
|
+
new (): {
|
|
18
|
+
$slots: S;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ToastViewportProps } from 'reka-ui';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<ToastViewportProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ToastViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ToastAction, ToastPortal } from 'reka-ui';
|
|
2
|
+
import { default as ToastProvider } from './ToastProvider';
|
|
3
|
+
import { default as ToastRoot, IToastRootProps } from './ToastRoot';
|
|
4
|
+
import { default as ToastViewport } from './ToastViewport';
|
|
5
|
+
import { default as ToastDescription } from './ToastDescription';
|
|
6
|
+
import { default as ToastClose } from './ToastClose';
|
|
7
|
+
import { default as ToastTitle } from './ToastTitle';
|
|
8
|
+
import { default as Toaster } from './Toaster';
|
|
9
|
+
import { useToast } from './use-toast';
|
|
10
|
+
export { useToast, Toaster, ToastAction, ToastClose, ToastDescription, ToastProvider, ToastRoot, ToastTitle, ToastViewport, ToastPortal, type IToastRootProps, };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Component } from 'vue';
|
|
2
|
+
export type ToastVariant = "warn" | "success" | "error" | "info";
|
|
3
|
+
export type TToastColor = {
|
|
4
|
+
bg: string;
|
|
5
|
+
icon: string;
|
|
6
|
+
};
|
|
7
|
+
export declare const ToastIcons: Record<ToastVariant, Component>;
|
|
8
|
+
export declare const ToastColors: Record<ToastVariant, TToastColor>;
|
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
import { Component, VNode } from 'vue';
|
|
2
|
+
import { IToastRootProps } from '.';
|
|
3
|
+
export type StringOrVNode = string | VNode | (() => VNode);
|
|
4
|
+
type ToasterToast = IToastRootProps & {
|
|
5
|
+
id: string;
|
|
6
|
+
title?: string;
|
|
7
|
+
description?: StringOrVNode;
|
|
8
|
+
action?: Component;
|
|
9
|
+
};
|
|
10
|
+
declare function useToast(): {
|
|
11
|
+
toasts: import('vue').ComputedRef<{
|
|
12
|
+
variant?: import('./toast.constants').ToastVariant | undefined;
|
|
13
|
+
onOpenChange?: ((value: boolean) => void) | undefined | undefined;
|
|
14
|
+
defaultOpen?: boolean | undefined;
|
|
15
|
+
forceMount?: boolean | undefined;
|
|
16
|
+
type?: "foreground" | "background" | undefined;
|
|
17
|
+
open?: boolean | undefined;
|
|
18
|
+
duration?: number | undefined;
|
|
19
|
+
asChild?: boolean | undefined;
|
|
20
|
+
as?: import('vue').FunctionalComponent<any, {}, any, {}> | {
|
|
21
|
+
new (...args: any[]): any;
|
|
22
|
+
__isFragment?: never;
|
|
23
|
+
__isTeleport?: never;
|
|
24
|
+
__isSuspense?: never;
|
|
25
|
+
} | import('reka-ui').AsTag | {
|
|
26
|
+
[x: string]: any;
|
|
27
|
+
setup?: ((this: void, props: import('@vue/shared').LooseRequired<any>, ctx: {
|
|
28
|
+
attrs: {
|
|
29
|
+
[x: string]: unknown;
|
|
30
|
+
};
|
|
31
|
+
slots: Readonly<{
|
|
32
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
33
|
+
}>;
|
|
34
|
+
emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
|
|
35
|
+
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
36
|
+
}) => any) | undefined;
|
|
37
|
+
name?: string | undefined;
|
|
38
|
+
template?: string | object | undefined;
|
|
39
|
+
render?: Function | undefined;
|
|
40
|
+
components?: Record<string, Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions, {}, any>> | undefined;
|
|
41
|
+
directives?: Record<string, import('vue').Directive<any, any, string, string>> | undefined;
|
|
42
|
+
inheritAttrs?: boolean | undefined;
|
|
43
|
+
emits?: any;
|
|
44
|
+
slots?: {} | undefined;
|
|
45
|
+
expose?: string[] | undefined;
|
|
46
|
+
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
47
|
+
compilerOptions?: {
|
|
48
|
+
isCustomElement?: ((tag: string) => boolean) | undefined;
|
|
49
|
+
whitespace?: "preserve" | "condense" | undefined;
|
|
50
|
+
comments?: boolean | undefined;
|
|
51
|
+
delimiters?: [string, string] | undefined;
|
|
52
|
+
} | undefined;
|
|
53
|
+
call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
|
|
54
|
+
__isFragment?: never | undefined;
|
|
55
|
+
__isTeleport?: never | undefined;
|
|
56
|
+
__isSuspense?: never | undefined;
|
|
57
|
+
__defaults?: {} | undefined;
|
|
58
|
+
compatConfig?: {
|
|
59
|
+
GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
|
|
60
|
+
GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
|
|
61
|
+
GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
|
|
62
|
+
GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
|
|
63
|
+
GLOBAL_SET?: boolean | "suppress-warning" | undefined;
|
|
64
|
+
GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
|
|
65
|
+
GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
|
|
66
|
+
GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
|
|
67
|
+
CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
|
|
68
|
+
CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
|
|
69
|
+
CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
|
|
70
|
+
CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
|
|
71
|
+
CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
|
|
72
|
+
CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
|
|
73
|
+
CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
|
|
74
|
+
INSTANCE_SET?: boolean | "suppress-warning" | undefined;
|
|
75
|
+
INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
|
|
76
|
+
INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
77
|
+
INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
|
|
78
|
+
INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
|
|
79
|
+
INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
|
|
80
|
+
INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
|
|
81
|
+
INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
|
|
82
|
+
INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
|
|
83
|
+
OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
|
|
84
|
+
OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
|
|
85
|
+
OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
86
|
+
OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
|
|
87
|
+
WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
|
|
88
|
+
PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
|
|
89
|
+
V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
|
|
90
|
+
CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
|
|
91
|
+
ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
|
|
92
|
+
ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
|
|
93
|
+
TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
|
|
94
|
+
TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
|
|
95
|
+
COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
|
|
96
|
+
COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
|
|
97
|
+
COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
|
|
98
|
+
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
99
|
+
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
100
|
+
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
101
|
+
MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3) | undefined;
|
|
102
|
+
} | undefined;
|
|
103
|
+
data?: ((this: any, vm: any) => any) | undefined;
|
|
104
|
+
computed?: import('vue').ComputedOptions | undefined;
|
|
105
|
+
methods?: import('vue').MethodOptions | undefined;
|
|
106
|
+
watch?: {
|
|
107
|
+
[x: string]: (string | import('vue').WatchCallback | ({
|
|
108
|
+
handler: import('vue').WatchCallback | string;
|
|
109
|
+
} & import('vue').WatchOptions<boolean>)) | (string | import('vue').WatchCallback | ({
|
|
110
|
+
handler: import('vue').WatchCallback | string;
|
|
111
|
+
} & import('vue').WatchOptions<boolean>))[];
|
|
112
|
+
} | undefined;
|
|
113
|
+
provide?: import('vue').ComponentProvideOptions | undefined;
|
|
114
|
+
inject?: {} | string[] | undefined;
|
|
115
|
+
filters?: Record<string, Function> | undefined;
|
|
116
|
+
mixins?: any[] | undefined;
|
|
117
|
+
extends?: any;
|
|
118
|
+
beforeCreate?: (() => any) | undefined;
|
|
119
|
+
created?: (() => any) | undefined;
|
|
120
|
+
beforeMount?: (() => any) | undefined;
|
|
121
|
+
mounted?: (() => any) | undefined;
|
|
122
|
+
beforeUpdate?: (() => any) | undefined;
|
|
123
|
+
updated?: (() => any) | undefined;
|
|
124
|
+
activated?: (() => any) | undefined;
|
|
125
|
+
deactivated?: (() => any) | undefined;
|
|
126
|
+
beforeDestroy?: (() => any) | undefined;
|
|
127
|
+
beforeUnmount?: (() => any) | undefined;
|
|
128
|
+
destroyed?: (() => any) | undefined;
|
|
129
|
+
unmounted?: (() => any) | undefined;
|
|
130
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | undefined;
|
|
131
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | undefined;
|
|
132
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
|
|
133
|
+
delimiters?: [string, string] | undefined;
|
|
134
|
+
__differentiator?: string | number | symbol | undefined;
|
|
135
|
+
__isBuiltIn?: boolean | undefined;
|
|
136
|
+
__file?: string | undefined;
|
|
137
|
+
__name?: string | undefined;
|
|
138
|
+
beforeRouteEnter?: (import('vue-router').TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : import('vue-router').NavigationGuardWithThis<undefined>) | undefined;
|
|
139
|
+
beforeRouteUpdate?: (import('vue-router').TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
|
|
140
|
+
beforeRouteLeave?: (import('vue-router').TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
|
|
141
|
+
} | undefined;
|
|
142
|
+
id: string;
|
|
143
|
+
title?: string | undefined;
|
|
144
|
+
description?: StringOrVNode | undefined;
|
|
145
|
+
action?: import('vue').FunctionalComponent<any, {}, any, {}> | {
|
|
146
|
+
new (...args: any[]): any;
|
|
147
|
+
__isFragment?: never;
|
|
148
|
+
__isTeleport?: never;
|
|
149
|
+
__isSuspense?: never;
|
|
150
|
+
} | {
|
|
151
|
+
[x: string]: any;
|
|
152
|
+
setup?: ((this: void, props: import('@vue/shared').LooseRequired<any>, ctx: {
|
|
153
|
+
attrs: {
|
|
154
|
+
[x: string]: unknown;
|
|
155
|
+
};
|
|
156
|
+
slots: Readonly<{
|
|
157
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
158
|
+
}>;
|
|
159
|
+
emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
|
|
160
|
+
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
161
|
+
}) => any) | undefined;
|
|
162
|
+
name?: string | undefined;
|
|
163
|
+
template?: string | object | undefined;
|
|
164
|
+
render?: Function | undefined;
|
|
165
|
+
components?: Record<string, Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions, {}, any>> | undefined;
|
|
166
|
+
directives?: Record<string, import('vue').Directive<any, any, string, string>> | undefined;
|
|
167
|
+
inheritAttrs?: boolean | undefined;
|
|
168
|
+
emits?: any;
|
|
169
|
+
slots?: {} | undefined;
|
|
170
|
+
expose?: string[] | undefined;
|
|
171
|
+
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
172
|
+
compilerOptions?: {
|
|
173
|
+
isCustomElement?: ((tag: string) => boolean) | undefined;
|
|
174
|
+
whitespace?: "preserve" | "condense" | undefined;
|
|
175
|
+
comments?: boolean | undefined;
|
|
176
|
+
delimiters?: [string, string] | undefined;
|
|
177
|
+
} | undefined;
|
|
178
|
+
call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
|
|
179
|
+
__isFragment?: never | undefined;
|
|
180
|
+
__isTeleport?: never | undefined;
|
|
181
|
+
__isSuspense?: never | undefined;
|
|
182
|
+
__defaults?: {} | undefined;
|
|
183
|
+
compatConfig?: {
|
|
184
|
+
GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
|
|
185
|
+
GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
|
|
186
|
+
GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
|
|
187
|
+
GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
|
|
188
|
+
GLOBAL_SET?: boolean | "suppress-warning" | undefined;
|
|
189
|
+
GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
|
|
190
|
+
GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
|
|
191
|
+
GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
|
|
192
|
+
CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
|
|
193
|
+
CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
|
|
194
|
+
CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
|
|
195
|
+
CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
|
|
196
|
+
CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
|
|
197
|
+
CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
|
|
198
|
+
CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
|
|
199
|
+
INSTANCE_SET?: boolean | "suppress-warning" | undefined;
|
|
200
|
+
INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
|
|
201
|
+
INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
202
|
+
INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
|
|
203
|
+
INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
|
|
204
|
+
INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
|
|
205
|
+
INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
|
|
206
|
+
INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
|
|
207
|
+
INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
|
|
208
|
+
OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
|
|
209
|
+
OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
|
|
210
|
+
OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
211
|
+
OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
|
|
212
|
+
WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
|
|
213
|
+
PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
|
|
214
|
+
V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
|
|
215
|
+
CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
|
|
216
|
+
ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
|
|
217
|
+
ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
|
|
218
|
+
TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
|
|
219
|
+
TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
|
|
220
|
+
COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
|
|
221
|
+
COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
|
|
222
|
+
COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
|
|
223
|
+
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
224
|
+
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
225
|
+
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
226
|
+
MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3) | undefined;
|
|
227
|
+
} | undefined;
|
|
228
|
+
data?: ((this: any, vm: any) => any) | undefined;
|
|
229
|
+
computed?: import('vue').ComputedOptions | undefined;
|
|
230
|
+
methods?: import('vue').MethodOptions | undefined;
|
|
231
|
+
watch?: {
|
|
232
|
+
[x: string]: (string | import('vue').WatchCallback | ({
|
|
233
|
+
handler: import('vue').WatchCallback | string;
|
|
234
|
+
} & import('vue').WatchOptions<boolean>)) | (string | import('vue').WatchCallback | ({
|
|
235
|
+
handler: import('vue').WatchCallback | string;
|
|
236
|
+
} & import('vue').WatchOptions<boolean>))[];
|
|
237
|
+
} | undefined;
|
|
238
|
+
provide?: import('vue').ComponentProvideOptions | undefined;
|
|
239
|
+
inject?: {} | string[] | undefined;
|
|
240
|
+
filters?: Record<string, Function> | undefined;
|
|
241
|
+
mixins?: any[] | undefined;
|
|
242
|
+
extends?: any;
|
|
243
|
+
beforeCreate?: (() => any) | undefined;
|
|
244
|
+
created?: (() => any) | undefined;
|
|
245
|
+
beforeMount?: (() => any) | undefined;
|
|
246
|
+
mounted?: (() => any) | undefined;
|
|
247
|
+
beforeUpdate?: (() => any) | undefined;
|
|
248
|
+
updated?: (() => any) | undefined;
|
|
249
|
+
activated?: (() => any) | undefined;
|
|
250
|
+
deactivated?: (() => any) | undefined;
|
|
251
|
+
beforeDestroy?: (() => any) | undefined;
|
|
252
|
+
beforeUnmount?: (() => any) | undefined;
|
|
253
|
+
destroyed?: (() => any) | undefined;
|
|
254
|
+
unmounted?: (() => any) | undefined;
|
|
255
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | undefined;
|
|
256
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | undefined;
|
|
257
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
|
|
258
|
+
delimiters?: [string, string] | undefined;
|
|
259
|
+
__differentiator?: string | number | symbol | undefined;
|
|
260
|
+
__isBuiltIn?: boolean | undefined;
|
|
261
|
+
__file?: string | undefined;
|
|
262
|
+
__name?: string | undefined;
|
|
263
|
+
beforeRouteEnter?: (import('vue-router').TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : import('vue-router').NavigationGuardWithThis<undefined>) | undefined;
|
|
264
|
+
beforeRouteUpdate?: (import('vue-router').TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
|
|
265
|
+
beforeRouteLeave?: (import('vue-router').TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
|
|
266
|
+
} | undefined;
|
|
267
|
+
}[]>;
|
|
268
|
+
toast: typeof toast;
|
|
269
|
+
dismiss: (toastId?: string) => void;
|
|
270
|
+
};
|
|
271
|
+
type Toast = Omit<ToasterToast, "id">;
|
|
272
|
+
declare function toast(props: Toast): {
|
|
273
|
+
id: string;
|
|
274
|
+
dismiss: () => void;
|
|
275
|
+
update: (props: ToasterToast) => void;
|
|
276
|
+
};
|
|
277
|
+
export { toast, useToast };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TooltipArrowProps } from 'reka-ui';
|
|
2
|
+
interface ITooltipArrowProps extends TooltipArrowProps {
|
|
3
|
+
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import('vue').DefineComponent<ITooltipArrowProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ITooltipArrowProps> & Readonly<{}>, {
|
|
6
|
+
side: "top" | "right" | "bottom" | "left";
|
|
7
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { TooltipContentProps } from 'reka-ui';
|
|
2
|
+
interface ITooltipContentProps extends TooltipContentProps {
|
|
3
|
+
viewArrow?: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare function __VLS_template(): {
|
|
6
|
+
attrs: Partial<{}>;
|
|
7
|
+
slots: {
|
|
8
|
+
default?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
refs: {};
|
|
11
|
+
rootEl: any;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
+
declare const __VLS_component: import('vue').DefineComponent<ITooltipContentProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
16
|
+
pointerDownOutside: (event: Event) => any;
|
|
17
|
+
}, string, import('vue').PublicProps, Readonly<ITooltipContentProps> & Readonly<{
|
|
18
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
19
|
+
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
20
|
+
}>, {
|
|
21
|
+
viewArrow: boolean;
|
|
22
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
23
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
|
+
export default _default;
|
|
25
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
26
|
+
new (): {
|
|
27
|
+
$slots: S;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
export { breakpoints } from './shared/libs/breakpoints.utils';
|
|
2
|
+
export { default as priceFormat } from './shared/libs/priceFormat.util';
|
|
3
|
+
export { default as dayjs } from './shared/libs/dayjs.utils';
|
|
4
|
+
export type { ConfigType, Dayjs } from './shared/libs/dayjs.utils';
|
|
5
|
+
export * from './components/Accordion';
|
|
6
|
+
export * from './components/Alert';
|
|
7
|
+
export * from './components/AlertDialog';
|
|
8
|
+
export * from './components/Badge';
|
|
9
|
+
export * from './components/Breadcrumb';
|
|
10
|
+
export * from './components/BottomSheet';
|
|
11
|
+
export * from './components/Button';
|
|
12
|
+
export * from './components/Calendar';
|
|
13
|
+
export * from './components/Checkbox';
|
|
14
|
+
export * from './components/Combobox';
|
|
15
|
+
export * from './components/DataTable';
|
|
16
|
+
export * from './components/DatePicker';
|
|
17
|
+
export * from './components/DateRangePicker';
|
|
18
|
+
export * from './components/Dialog';
|
|
19
|
+
export * from './components/Divider';
|
|
20
|
+
export * from './components/DropdownMenu';
|
|
21
|
+
export * from './components/Drawer';
|
|
22
|
+
export * from './components/FormField';
|
|
23
|
+
export * from './components/File';
|
|
24
|
+
export * from './components/Label';
|
|
25
|
+
export * from './components/ListBox';
|
|
26
|
+
export * from './components/Message';
|
|
27
|
+
export * from './components/InputNumber';
|
|
28
|
+
export * from './components/InputText';
|
|
29
|
+
export * from './components/Image';
|
|
30
|
+
export * from './components/OTPCode';
|
|
31
|
+
export * from './components/Pagination';
|
|
32
|
+
export * from './components/Popover';
|
|
33
|
+
export * from './components/RadioGroup';
|
|
34
|
+
export * from './components/RangeCalendar';
|
|
35
|
+
export * from './components/Tabs';
|
|
36
|
+
export * from './components/Tag';
|
|
37
|
+
export * from './components/Textarea';
|
|
38
|
+
export * from './components/Toast';
|
|
39
|
+
export * from './components/Tooltip';
|
|
40
|
+
export * from './components/TimeField';
|
|
41
|
+
export * from './components/ScrollArea';
|
|
42
|
+
export * from './components/Schedule';
|
|
43
|
+
export * from './components/Spinner';
|
|
44
|
+
export * from './components/Select';
|
|
45
|
+
export * from './components/Stepper';
|
|
46
|
+
export * from './components/Switch';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const breakpoints: Record<"mobile" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl", import('vue').ComputedRef<boolean>> & {
|
|
2
|
+
greaterOrEqual: (k: import('vue').MaybeRefOrGetter<"mobile" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl">) => import('vue').ComputedRef<boolean>;
|
|
3
|
+
smallerOrEqual: (k: import('vue').MaybeRefOrGetter<"mobile" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl">) => import('vue').ComputedRef<boolean>;
|
|
4
|
+
greater(k: import('vue').MaybeRefOrGetter<"mobile" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl">): import('vue').ComputedRef<boolean>;
|
|
5
|
+
smaller(k: import('vue').MaybeRefOrGetter<"mobile" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl">): import('vue').ComputedRef<boolean>;
|
|
6
|
+
between(a: import('vue').MaybeRefOrGetter<"mobile" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl">, b: import('vue').MaybeRefOrGetter<"mobile" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl">): import('vue').ComputedRef<boolean>;
|
|
7
|
+
isGreater(k: import('vue').MaybeRefOrGetter<"mobile" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl">): boolean;
|
|
8
|
+
isGreaterOrEqual(k: import('vue').MaybeRefOrGetter<"mobile" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl">): boolean;
|
|
9
|
+
isSmaller(k: import('vue').MaybeRefOrGetter<"mobile" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl">): boolean;
|
|
10
|
+
isSmallerOrEqual(k: import('vue').MaybeRefOrGetter<"mobile" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl">): boolean;
|
|
11
|
+
isInBetween(a: import('vue').MaybeRefOrGetter<"mobile" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl">, b: import('vue').MaybeRefOrGetter<"mobile" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl">): boolean;
|
|
12
|
+
current: () => import('vue').ComputedRef<("mobile" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl")[]>;
|
|
13
|
+
active(): import('vue').ComputedRef<"" | "mobile" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl">;
|
|
14
|
+
};
|