ab-ui-library 1.0.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/README.md +76 -0
- package/assets/images/ArCa.svg +3 -0
- package/assets/images/Avatar.png +0 -0
- package/assets/images/Mastercard.svg +5 -0
- package/assets/images/Visa.svg +3 -0
- package/assets/images/avatar.jpg +0 -0
- package/assets/images/cards-img.png +0 -0
- package/assets/images/illustrations.svg +15 -0
- package/assets/images/image-placeholder.png +0 -0
- package/assets/images/logo-closed.svg +8 -0
- package/assets/images/logo.svg +14 -0
- package/assets/images/no-result.svg +35 -0
- package/assets/styles/helpers/_mixin.scss +718 -0
- package/assets/styles/styles.css +9841 -0
- package/assets/styles/styles.scss +1 -0
- package/components/AdvancedTable/AdvancedPagination.d.ts +7 -0
- package/components/AdvancedTable/AdvancedPagination.js +221 -0
- package/components/AdvancedTable/ColumnHeader.d.ts +7 -0
- package/components/AdvancedTable/ColumnHeader.js +61 -0
- package/components/AdvancedTable/ColumnSettings.d.ts +6 -0
- package/components/AdvancedTable/ColumnSettings.js +93 -0
- package/components/AdvancedTable/IndeterminateCheckbox.d.ts +13 -0
- package/components/AdvancedTable/IndeterminateCheckbox.js +55 -0
- package/components/AdvancedTable/Table.d.ts +2 -0
- package/components/AdvancedTable/Table.js +129 -0
- package/components/AdvancedTable/index.d.ts +3 -0
- package/components/AdvancedTable/index.js +94 -0
- package/components/AdvancedTable/types.d.ts +37 -0
- package/components/AdvancedTable/types.js +1 -0
- package/components/AdvancedTable/useTable.d.ts +18 -0
- package/components/AdvancedTable/useTable.js +211 -0
- package/components/Alert/Alert.d.ts +3 -0
- package/components/Alert/Alert.js +86 -0
- package/components/Alert/consts.d.ts +7 -0
- package/components/Alert/consts.js +18 -0
- package/components/Alert/index.d.ts +1 -0
- package/components/Alert/index.js +33 -0
- package/components/Alert/types.d.ts +19 -0
- package/components/Alert/types.js +1 -0
- package/components/Avatar/Avatar.d.ts +3 -0
- package/components/Avatar/Avatar.js +100 -0
- package/components/Avatar/AvatarGroup.d.ts +3 -0
- package/components/Avatar/AvatarGroup.js +102 -0
- package/components/Avatar/index.d.ts +2 -0
- package/components/Avatar/index.js +46 -0
- package/components/Avatar/types.d.ts +25 -0
- package/components/Avatar/types.js +1 -0
- package/components/Badge/Badge.d.ts +3 -0
- package/components/Badge/Badge.js +25 -0
- package/components/Badge/consts.d.ts +7 -0
- package/components/Badge/consts.js +13 -0
- package/components/Badge/index.d.ts +1 -0
- package/components/Badge/index.js +7 -0
- package/components/Badge/types.d.ts +6 -0
- package/components/Badge/types.js +1 -0
- package/components/Breadcrumb/Breadcrumb.d.ts +3 -0
- package/components/Breadcrumb/Breadcrumb.js +24 -0
- package/components/Breadcrumb/index.d.ts +1 -0
- package/components/Breadcrumb/index.js +2 -0
- package/components/Breadcrumb/types.d.ts +12 -0
- package/components/Breadcrumb/types.js +1 -0
- package/components/Button/Button.d.ts +3 -0
- package/components/Button/Button.js +80 -0
- package/components/Button/consts.d.ts +8 -0
- package/components/Button/consts.js +15 -0
- package/components/Button/index.d.ts +1 -0
- package/components/Button/index.js +30 -0
- package/components/Button/types.d.ts +22 -0
- package/components/Button/types.js +1 -0
- package/components/ButtonIcon/ButtonIcon.d.ts +3 -0
- package/components/ButtonIcon/ButtonIcon.js +66 -0
- package/components/ButtonIcon/consts.d.ts +4 -0
- package/components/ButtonIcon/consts.js +7 -0
- package/components/ButtonIcon/index.d.ts +1 -0
- package/components/ButtonIcon/index.js +30 -0
- package/components/ButtonIcon/types.d.ts +16 -0
- package/components/ButtonIcon/types.js +1 -0
- package/components/CardBody/CardBody.d.ts +3 -0
- package/components/CardBody/CardBody.js +61 -0
- package/components/CardBody/index.d.ts +1 -0
- package/components/CardBody/index.js +32 -0
- package/components/CardBody/types.d.ts +11 -0
- package/components/CardBody/types.js +1 -0
- package/components/CardSelect/CardSelect.d.ts +3 -0
- package/components/CardSelect/CardSelect.js +122 -0
- package/components/CardSelect/CardSelectGroup.d.ts +3 -0
- package/components/CardSelect/CardSelectGroup.js +95 -0
- package/components/CardSelect/components/CardAdditionalInfo.d.ts +8 -0
- package/components/CardSelect/components/CardAdditionalInfo.js +35 -0
- package/components/CardSelect/components/CardChips.d.ts +8 -0
- package/components/CardSelect/components/CardChips.js +28 -0
- package/components/CardSelect/components/CardDescription.d.ts +7 -0
- package/components/CardSelect/components/CardDescription.js +16 -0
- package/components/CardSelect/components/CardInput.d.ts +8 -0
- package/components/CardSelect/components/CardInput.js +51 -0
- package/components/CardSelect/components/index.d.ts +4 -0
- package/components/CardSelect/components/index.js +47 -0
- package/components/CardSelect/index.d.ts +2 -0
- package/components/CardSelect/index.js +52 -0
- package/components/CardSelect/types.d.ts +37 -0
- package/components/CardSelect/types.js +1 -0
- package/components/Cards/CardItem.d.ts +3 -0
- package/components/Cards/CardItem.js +41 -0
- package/components/Cards/index.d.ts +1 -0
- package/components/Cards/index.js +8 -0
- package/components/Cards/types.d.ts +15 -0
- package/components/Cards/types.js +1 -0
- package/components/Checkbox/Checkbox.d.ts +3 -0
- package/components/Checkbox/Checkbox.js +137 -0
- package/components/Checkbox/index.d.ts +1 -0
- package/components/Checkbox/index.js +26 -0
- package/components/Checkbox/types.d.ts +19 -0
- package/components/Checkbox/types.js +1 -0
- package/components/Chips/Chips.d.ts +3 -0
- package/components/Chips/Chips.js +55 -0
- package/components/Chips/consts.d.ts +7 -0
- package/components/Chips/consts.js +14 -0
- package/components/Chips/index.d.ts +1 -0
- package/components/Chips/index.js +12 -0
- package/components/Chips/types.d.ts +20 -0
- package/components/Chips/types.js +7 -0
- package/components/Collapse/CollapseGroup/CollapseGroup.d.ts +3 -0
- package/components/Collapse/CollapseGroup/CollapseGroup.js +77 -0
- package/components/Collapse/CollapseItem/CollapseItem.d.ts +3 -0
- package/components/Collapse/CollapseItem/CollapseItem.js +87 -0
- package/components/Collapse/index.d.ts +2 -0
- package/components/Collapse/index.js +17 -0
- package/components/Collapse/types.d.ts +38 -0
- package/components/Collapse/types.js +1 -0
- package/components/Container/Container.d.ts +3 -0
- package/components/Container/Container.js +10 -0
- package/components/Container/index.d.ts +1 -0
- package/components/Container/index.js +2 -0
- package/components/Container/types.d.ts +4 -0
- package/components/Container/types.js +1 -0
- package/components/Copy/Copy.d.ts +3 -0
- package/components/Copy/Copy.js +72 -0
- package/components/Copy/index.d.ts +1 -0
- package/components/Copy/index.js +32 -0
- package/components/Copy/types.d.ts +6 -0
- package/components/Copy/types.js +1 -0
- package/components/Counter/Counter.d.ts +3 -0
- package/components/Counter/Counter.js +121 -0
- package/components/Counter/index.d.ts +1 -0
- package/components/Counter/index.js +43 -0
- package/components/Counter/types.d.ts +9 -0
- package/components/Counter/types.js +1 -0
- package/components/DatePicker/CustomHeader/CustomHeader.d.ts +11 -0
- package/components/DatePicker/CustomHeader/CustomHeader.js +154 -0
- package/components/DatePicker/RangeDatePicker.d.ts +3 -0
- package/components/DatePicker/RangeDatePicker.js +161 -0
- package/components/DatePicker/SimpleDatePicker.d.ts +3 -0
- package/components/DatePicker/SimpleDatePicker.js +171 -0
- package/components/DatePicker/TimePicker.d.ts +3 -0
- package/components/DatePicker/TimePicker.js +119 -0
- package/components/DatePicker/hooks.d.ts +4 -0
- package/components/DatePicker/hooks.js +1954 -0
- package/components/DatePicker/index.d.ts +3 -0
- package/components/DatePicker/index.js +88 -0
- package/components/DatePicker/types.d.ts +44 -0
- package/components/DatePicker/types.js +7 -0
- package/components/Divider/Divider.d.ts +3 -0
- package/components/Divider/Divider.js +19 -0
- package/components/Divider/index.d.ts +1 -0
- package/components/Divider/index.js +3 -0
- package/components/Divider/types.d.ts +6 -0
- package/components/Divider/types.js +1 -0
- package/components/Empty/Empty.d.ts +3 -0
- package/components/Empty/Empty.js +63 -0
- package/components/Empty/index.d.ts +1 -0
- package/components/Empty/index.js +32 -0
- package/components/Empty/types.d.ts +9 -0
- package/components/Empty/types.js +1 -0
- package/components/FileUpload/FileUpload.d.ts +3 -0
- package/components/FileUpload/FileUpload.js +174 -0
- package/components/FileUpload/UploadItems.d.ts +3 -0
- package/components/FileUpload/UploadItems.js +81 -0
- package/components/FileUpload/index.d.ts +2 -0
- package/components/FileUpload/index.js +42 -0
- package/components/FileUpload/types.d.ts +35 -0
- package/components/FileUpload/types.js +7 -0
- package/components/FormContainer/FormContainer.d.ts +3 -0
- package/components/FormContainer/FormContainer.js +112 -0
- package/components/FormContainer/index.d.ts +1 -0
- package/components/FormContainer/index.js +33 -0
- package/components/FormContainer/types.d.ts +21 -0
- package/components/FormContainer/types.js +1 -0
- package/components/FormField/FormField.d.ts +3 -0
- package/components/FormField/FormField.js +89 -0
- package/components/FormField/index.d.ts +1 -0
- package/components/FormField/index.js +30 -0
- package/components/FormField/types.d.ts +9 -0
- package/components/FormField/types.js +1 -0
- package/components/FramedIcon/FramedIcon.d.ts +3 -0
- package/components/FramedIcon/FramedIcon.js +19 -0
- package/components/FramedIcon/consts.d.ts +7 -0
- package/components/FramedIcon/consts.js +12 -0
- package/components/FramedIcon/index.d.ts +1 -0
- package/components/FramedIcon/index.js +4 -0
- package/components/FramedIcon/types.d.ts +6 -0
- package/components/FramedIcon/types.js +1 -0
- package/components/Heading/Heading.d.ts +3 -0
- package/components/Heading/Heading.js +29 -0
- package/components/Heading/index.d.ts +1 -0
- package/components/Heading/index.js +5 -0
- package/components/Heading/types.d.ts +11 -0
- package/components/Heading/types.js +1 -0
- package/components/Image/Image.d.ts +3 -0
- package/components/Image/Image.js +33 -0
- package/components/Image/index.d.ts +1 -0
- package/components/Image/index.js +2 -0
- package/components/Image/types.d.ts +10 -0
- package/components/Image/types.js +1 -0
- package/components/Input/Input.d.ts +3 -0
- package/components/Input/Input.js +208 -0
- package/components/Input/InputPassword.d.ts +3 -0
- package/components/Input/InputPassword.js +215 -0
- package/components/Input/index.d.ts +2 -0
- package/components/Input/index.js +40 -0
- package/components/Input/types.d.ts +56 -0
- package/components/Input/types.js +1 -0
- package/components/ItemSelect/ItemSelect.d.ts +3 -0
- package/components/ItemSelect/ItemSelect.js +82 -0
- package/components/ItemSelect/ItemSelectGroup.d.ts +3 -0
- package/components/ItemSelect/ItemSelectGroup.js +69 -0
- package/components/ItemSelect/index.d.ts +2 -0
- package/components/ItemSelect/index.js +32 -0
- package/components/ItemSelect/types.d.ts +25 -0
- package/components/ItemSelect/types.js +1 -0
- package/components/Link/Link.d.ts +3 -0
- package/components/Link/Link.js +52 -0
- package/components/Link/index.d.ts +1 -0
- package/components/Link/index.js +5 -0
- package/components/Link/types.d.ts +20 -0
- package/components/Link/types.js +1 -0
- package/components/Menu/Menu.d.ts +3 -0
- package/components/Menu/Menu.js +146 -0
- package/components/Menu/NestedMenu.d.ts +3 -0
- package/components/Menu/NestedMenu.js +162 -0
- package/components/Menu/index.d.ts +2 -0
- package/components/Menu/index.js +56 -0
- package/components/Menu/types.d.ts +33 -0
- package/components/Menu/types.js +1 -0
- package/components/Modal/Modal.d.ts +3 -0
- package/components/Modal/Modal.js +145 -0
- package/components/Modal/ModalConfirmation.d.ts +3 -0
- package/components/Modal/ModalConfirmation.js +126 -0
- package/components/Modal/index.d.ts +2 -0
- package/components/Modal/index.js +41 -0
- package/components/Modal/types.d.ts +38 -0
- package/components/Modal/types.js +1 -0
- package/components/More/More.d.ts +3 -0
- package/components/More/More.js +64 -0
- package/components/More/index.d.ts +1 -0
- package/components/More/index.js +31 -0
- package/components/More/types.d.ts +10 -0
- package/components/More/types.js +1 -0
- package/components/OneTimePassword/OneTimePassword.d.ts +3 -0
- package/components/OneTimePassword/OneTimePassword.js +151 -0
- package/components/OneTimePassword/index.d.ts +1 -0
- package/components/OneTimePassword/index.js +42 -0
- package/components/OneTimePassword/types.d.ts +22 -0
- package/components/OneTimePassword/types.js +1 -0
- package/components/Pagination/Pagination.d.ts +3 -0
- package/components/Pagination/Pagination.js +60 -0
- package/components/Pagination/consts.d.ts +5 -0
- package/components/Pagination/consts.js +8 -0
- package/components/Pagination/index.d.ts +1 -0
- package/components/Pagination/index.js +11 -0
- package/components/Pagination/types.d.ts +15 -0
- package/components/Pagination/types.js +1 -0
- package/components/Popover/Popover.d.ts +3 -0
- package/components/Popover/Popover.js +97 -0
- package/components/Popover/index.d.ts +1 -0
- package/components/Popover/index.js +20 -0
- package/components/Popover/types.d.ts +13 -0
- package/components/Popover/types.js +1 -0
- package/components/Progress/Progress.d.ts +3 -0
- package/components/Progress/Progress.js +71 -0
- package/components/Progress/ProgressBarWrapper.d.ts +3 -0
- package/components/Progress/ProgressBarWrapper.js +16 -0
- package/components/Progress/index.d.ts +2 -0
- package/components/Progress/index.js +6 -0
- package/components/Progress/types.d.ts +14 -0
- package/components/Progress/types.js +1 -0
- package/components/ProgressStep/ProgressStep.d.ts +3 -0
- package/components/ProgressStep/ProgressStep.js +40 -0
- package/components/ProgressStep/Step.d.ts +3 -0
- package/components/ProgressStep/Step.js +102 -0
- package/components/ProgressStep/consts.d.ts +6 -0
- package/components/ProgressStep/consts.js +9 -0
- package/components/ProgressStep/index.d.ts +1 -0
- package/components/ProgressStep/index.js +13 -0
- package/components/ProgressStep/types.d.ts +31 -0
- package/components/ProgressStep/types.js +7 -0
- package/components/Radio/Radio.d.ts +3 -0
- package/components/Radio/Radio.js +59 -0
- package/components/Radio/RadioGroup.d.ts +3 -0
- package/components/Radio/RadioGroup.js +88 -0
- package/components/Radio/index.d.ts +2 -0
- package/components/Radio/index.js +29 -0
- package/components/Radio/types.d.ts +28 -0
- package/components/Radio/types.js +1 -0
- package/components/SVGIcons/IconAdd.d.ts +4 -0
- package/components/SVGIcons/IconAdd.js +30 -0
- package/components/SVGIcons/IconAddCircle.d.ts +4 -0
- package/components/SVGIcons/IconAddCircle.js +33 -0
- package/components/SVGIcons/IconAddCircleFilled.d.ts +4 -0
- package/components/SVGIcons/IconAddCircleFilled.js +33 -0
- package/components/SVGIcons/IconAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconAddFilled.js +30 -0
- package/components/SVGIcons/IconAlert.d.ts +4 -0
- package/components/SVGIcons/IconAlert.js +33 -0
- package/components/SVGIcons/IconAlertBadge.d.ts +4 -0
- package/components/SVGIcons/IconAlertBadge.js +33 -0
- package/components/SVGIcons/IconAlertBadgeFilled.d.ts +4 -0
- package/components/SVGIcons/IconAlertBadgeFilled.js +33 -0
- package/components/SVGIcons/IconAlertFilled.d.ts +4 -0
- package/components/SVGIcons/IconAlertFilled.js +33 -0
- package/components/SVGIcons/IconAm.d.ts +4 -0
- package/components/SVGIcons/IconAm.js +59 -0
- package/components/SVGIcons/IconAmd.d.ts +4 -0
- package/components/SVGIcons/IconAmd.js +30 -0
- package/components/SVGIcons/IconAmdFilled.d.ts +4 -0
- package/components/SVGIcons/IconAmdFilled.js +30 -0
- package/components/SVGIcons/IconApple.d.ts +4 -0
- package/components/SVGIcons/IconApple.js +33 -0
- package/components/SVGIcons/IconAppsList.d.ts +4 -0
- package/components/SVGIcons/IconAppsList.js +30 -0
- package/components/SVGIcons/IconAppsListFilled.d.ts +4 -0
- package/components/SVGIcons/IconAppsListFilled.js +30 -0
- package/components/SVGIcons/IconArrowDown.d.ts +4 -0
- package/components/SVGIcons/IconArrowDown.js +33 -0
- package/components/SVGIcons/IconArrowDownFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowDownFilled.js +33 -0
- package/components/SVGIcons/IconArrowDownLeft.d.ts +4 -0
- package/components/SVGIcons/IconArrowDownLeft.js +33 -0
- package/components/SVGIcons/IconArrowDownLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowDownLeftFilled.js +33 -0
- package/components/SVGIcons/IconArrowDownload.d.ts +4 -0
- package/components/SVGIcons/IconArrowDownload.js +33 -0
- package/components/SVGIcons/IconArrowDownloadFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowDownloadFilled.js +33 -0
- package/components/SVGIcons/IconArrowEnter.d.ts +4 -0
- package/components/SVGIcons/IconArrowEnter.js +30 -0
- package/components/SVGIcons/IconArrowEnterFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowEnterFilled.js +30 -0
- package/components/SVGIcons/IconArrowExit.d.ts +4 -0
- package/components/SVGIcons/IconArrowExit.js +30 -0
- package/components/SVGIcons/IconArrowExitFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowExitFilled.js +30 -0
- package/components/SVGIcons/IconArrowExportLeftToRight.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportLeftToRight.js +33 -0
- package/components/SVGIcons/IconArrowExportLeftToRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportLeftToRightFilled.js +33 -0
- package/components/SVGIcons/IconArrowExportRightToLeft.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportRightToLeft.js +33 -0
- package/components/SVGIcons/IconArrowExportRightToLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportRightToLeftFilled.js +33 -0
- package/components/SVGIcons/IconArrowExportUp.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportUp.js +33 -0
- package/components/SVGIcons/IconArrowExportUpFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowExportUpFilled.js +33 -0
- package/components/SVGIcons/IconArrowImport.d.ts +4 -0
- package/components/SVGIcons/IconArrowImport.js +33 -0
- package/components/SVGIcons/IconArrowImportFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowImportFilled.js +33 -0
- package/components/SVGIcons/IconArrowLeft.d.ts +4 -0
- package/components/SVGIcons/IconArrowLeft.js +33 -0
- package/components/SVGIcons/IconArrowLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowLeftFilled.js +33 -0
- package/components/SVGIcons/IconArrowRepeatAll.d.ts +4 -0
- package/components/SVGIcons/IconArrowRepeatAll.js +33 -0
- package/components/SVGIcons/IconArrowRepeatAllFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowRepeatAllFilled.js +33 -0
- package/components/SVGIcons/IconArrowReset.d.ts +4 -0
- package/components/SVGIcons/IconArrowReset.js +33 -0
- package/components/SVGIcons/IconArrowResetFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowResetFilled.js +33 -0
- package/components/SVGIcons/IconArrowRight.d.ts +4 -0
- package/components/SVGIcons/IconArrowRight.js +33 -0
- package/components/SVGIcons/IconArrowRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowRightFilled.js +33 -0
- package/components/SVGIcons/IconArrowSort.d.ts +4 -0
- package/components/SVGIcons/IconArrowSort.js +30 -0
- package/components/SVGIcons/IconArrowSortFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowSortFilled.js +30 -0
- package/components/SVGIcons/IconArrowSync.d.ts +4 -0
- package/components/SVGIcons/IconArrowSync.js +30 -0
- package/components/SVGIcons/IconArrowSyncFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowSyncFilled.js +30 -0
- package/components/SVGIcons/IconArrowUp.d.ts +4 -0
- package/components/SVGIcons/IconArrowUp.js +33 -0
- package/components/SVGIcons/IconArrowUpFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowUpFilled.js +33 -0
- package/components/SVGIcons/IconArrowUpLeft.d.ts +4 -0
- package/components/SVGIcons/IconArrowUpLeft.js +33 -0
- package/components/SVGIcons/IconArrowUpLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowUpLeftFilled.js +33 -0
- package/components/SVGIcons/IconArrowUpRight.d.ts +4 -0
- package/components/SVGIcons/IconArrowUpRight.js +33 -0
- package/components/SVGIcons/IconArrowUpRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconArrowUpRightFilled.js +33 -0
- package/components/SVGIcons/IconAttach.d.ts +4 -0
- package/components/SVGIcons/IconAttach.js +33 -0
- package/components/SVGIcons/IconAttachFilled.d.ts +4 -0
- package/components/SVGIcons/IconAttachFilled.js +33 -0
- package/components/SVGIcons/IconBeach.d.ts +4 -0
- package/components/SVGIcons/IconBeach.js +30 -0
- package/components/SVGIcons/IconBeachFilled.d.ts +4 -0
- package/components/SVGIcons/IconBeachFilled.js +30 -0
- package/components/SVGIcons/IconBed.d.ts +4 -0
- package/components/SVGIcons/IconBed.js +30 -0
- package/components/SVGIcons/IconBedFilled.d.ts +4 -0
- package/components/SVGIcons/IconBedFilled.js +30 -0
- package/components/SVGIcons/IconBook.d.ts +4 -0
- package/components/SVGIcons/IconBook.js +33 -0
- package/components/SVGIcons/IconBookFilled.d.ts +4 -0
- package/components/SVGIcons/IconBookFilled.js +33 -0
- package/components/SVGIcons/IconBookmark.d.ts +4 -0
- package/components/SVGIcons/IconBookmark.js +33 -0
- package/components/SVGIcons/IconBookmarkFilled.d.ts +4 -0
- package/components/SVGIcons/IconBookmarkFilled.js +33 -0
- package/components/SVGIcons/IconBriefcase.d.ts +4 -0
- package/components/SVGIcons/IconBriefcase.js +33 -0
- package/components/SVGIcons/IconBriefcaseFilled.d.ts +4 -0
- package/components/SVGIcons/IconBriefcaseFilled.js +33 -0
- package/components/SVGIcons/IconBroom.d.ts +4 -0
- package/components/SVGIcons/IconBroom.js +30 -0
- package/components/SVGIcons/IconBroomFilled.d.ts +4 -0
- package/components/SVGIcons/IconBroomFilled.js +30 -0
- package/components/SVGIcons/IconBuilding.d.ts +4 -0
- package/components/SVGIcons/IconBuilding.js +56 -0
- package/components/SVGIcons/IconBuildingBank.d.ts +4 -0
- package/components/SVGIcons/IconBuildingBank.js +30 -0
- package/components/SVGIcons/IconBuildingBankFilled.d.ts +4 -0
- package/components/SVGIcons/IconBuildingBankFilled.js +30 -0
- package/components/SVGIcons/IconBuildingFilled.d.ts +4 -0
- package/components/SVGIcons/IconBuildingFilled.js +33 -0
- package/components/SVGIcons/IconBulletListAdd.d.ts +4 -0
- package/components/SVGIcons/IconBulletListAdd.js +33 -0
- package/components/SVGIcons/IconBulletListAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconBulletListAddFilled.js +33 -0
- package/components/SVGIcons/IconCalculator.d.ts +4 -0
- package/components/SVGIcons/IconCalculator.js +33 -0
- package/components/SVGIcons/IconCalculatorFilled.d.ts +4 -0
- package/components/SVGIcons/IconCalculatorFilled.js +33 -0
- package/components/SVGIcons/IconCalendarClock.d.ts +4 -0
- package/components/SVGIcons/IconCalendarClock.js +30 -0
- package/components/SVGIcons/IconCalendarClockFilled.d.ts +4 -0
- package/components/SVGIcons/IconCalendarClockFilled.js +30 -0
- package/components/SVGIcons/IconCalendarDay.d.ts +4 -0
- package/components/SVGIcons/IconCalendarDay.js +33 -0
- package/components/SVGIcons/IconCalendarDayFilled.d.ts +4 -0
- package/components/SVGIcons/IconCalendarDayFilled.js +33 -0
- package/components/SVGIcons/IconCalendarLeft.d.ts +4 -0
- package/components/SVGIcons/IconCalendarLeft.js +30 -0
- package/components/SVGIcons/IconCalendarLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconCalendarLeftFilled.js +30 -0
- package/components/SVGIcons/IconCalendarRight.d.ts +4 -0
- package/components/SVGIcons/IconCalendarRight.js +30 -0
- package/components/SVGIcons/IconCalendarRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconCalendarRightFilled.js +30 -0
- package/components/SVGIcons/IconCall.d.ts +4 -0
- package/components/SVGIcons/IconCall.js +33 -0
- package/components/SVGIcons/IconCallFilled.d.ts +4 -0
- package/components/SVGIcons/IconCallFilled.js +33 -0
- package/components/SVGIcons/IconCameraDome.d.ts +4 -0
- package/components/SVGIcons/IconCameraDome.js +30 -0
- package/components/SVGIcons/IconCameraDomeFilled.d.ts +4 -0
- package/components/SVGIcons/IconCameraDomeFilled.js +30 -0
- package/components/SVGIcons/IconCard.d.ts +4 -0
- package/components/SVGIcons/IconCard.js +30 -0
- package/components/SVGIcons/IconCardFilled.d.ts +4 -0
- package/components/SVGIcons/IconCardFilled.js +30 -0
- package/components/SVGIcons/IconCaretDown.d.ts +4 -0
- package/components/SVGIcons/IconCaretDown.js +30 -0
- package/components/SVGIcons/IconCaretDownFilled.d.ts +4 -0
- package/components/SVGIcons/IconCaretDownFilled.js +30 -0
- package/components/SVGIcons/IconCaretDownRight.d.ts +4 -0
- package/components/SVGIcons/IconCaretDownRight.js +30 -0
- package/components/SVGIcons/IconCaretDownRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconCaretDownRightFilled.js +30 -0
- package/components/SVGIcons/IconCaretLeft.d.ts +4 -0
- package/components/SVGIcons/IconCaretLeft.js +30 -0
- package/components/SVGIcons/IconCaretLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconCaretLeftFilled.js +30 -0
- package/components/SVGIcons/IconCaretRight.d.ts +4 -0
- package/components/SVGIcons/IconCaretRight.js +30 -0
- package/components/SVGIcons/IconCaretRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconCaretRightFilled.js +30 -0
- package/components/SVGIcons/IconCaretUp.d.ts +4 -0
- package/components/SVGIcons/IconCaretUp.js +30 -0
- package/components/SVGIcons/IconCaretUpFilled.d.ts +4 -0
- package/components/SVGIcons/IconCaretUpFilled.js +30 -0
- package/components/SVGIcons/IconChat.d.ts +4 -0
- package/components/SVGIcons/IconChat.js +30 -0
- package/components/SVGIcons/IconChatFilled.d.ts +4 -0
- package/components/SVGIcons/IconChatFilled.js +30 -0
- package/components/SVGIcons/IconChatMultiple.d.ts +4 -0
- package/components/SVGIcons/IconChatMultiple.js +30 -0
- package/components/SVGIcons/IconChatMultipleFilled.d.ts +4 -0
- package/components/SVGIcons/IconChatMultipleFilled.js +30 -0
- package/components/SVGIcons/IconCheckboxArrowRight.d.ts +4 -0
- package/components/SVGIcons/IconCheckboxArrowRight.js +33 -0
- package/components/SVGIcons/IconCheckboxArrowRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconCheckboxArrowRightFilled.js +33 -0
- package/components/SVGIcons/IconCheckmark.d.ts +4 -0
- package/components/SVGIcons/IconCheckmark.js +30 -0
- package/components/SVGIcons/IconCheckmarkCircle.d.ts +4 -0
- package/components/SVGIcons/IconCheckmarkCircle.js +30 -0
- package/components/SVGIcons/IconCheckmarkCircleFilled.d.ts +4 -0
- package/components/SVGIcons/IconCheckmarkCircleFilled.js +30 -0
- package/components/SVGIcons/IconCheckmarkFilled.d.ts +4 -0
- package/components/SVGIcons/IconCheckmarkFilled.js +30 -0
- package/components/SVGIcons/IconChevronDoubleLeft.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleLeft.js +30 -0
- package/components/SVGIcons/IconChevronDoubleLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleLeftFilled.js +30 -0
- package/components/SVGIcons/IconChevronDoubleRight.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleRight.js +30 -0
- package/components/SVGIcons/IconChevronDoubleRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronDoubleRightFilled.js +30 -0
- package/components/SVGIcons/IconChevronDown.d.ts +4 -0
- package/components/SVGIcons/IconChevronDown.js +30 -0
- package/components/SVGIcons/IconChevronDownFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronDownFilled.js +30 -0
- package/components/SVGIcons/IconChevronLeft.d.ts +4 -0
- package/components/SVGIcons/IconChevronLeft.js +30 -0
- package/components/SVGIcons/IconChevronLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronLeftFilled.js +30 -0
- package/components/SVGIcons/IconChevronRight.d.ts +4 -0
- package/components/SVGIcons/IconChevronRight.js +30 -0
- package/components/SVGIcons/IconChevronRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronRightFilled.js +30 -0
- package/components/SVGIcons/IconChevronUp.d.ts +4 -0
- package/components/SVGIcons/IconChevronUp.js +30 -0
- package/components/SVGIcons/IconChevronUpDown.d.ts +4 -0
- package/components/SVGIcons/IconChevronUpDown.js +33 -0
- package/components/SVGIcons/IconChevronUpDownFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronUpDownFilled.js +33 -0
- package/components/SVGIcons/IconChevronUpFilled.d.ts +4 -0
- package/components/SVGIcons/IconChevronUpFilled.js +30 -0
- package/components/SVGIcons/IconClock.d.ts +4 -0
- package/components/SVGIcons/IconClock.js +33 -0
- package/components/SVGIcons/IconClockDismiss.d.ts +4 -0
- package/components/SVGIcons/IconClockDismiss.js +30 -0
- package/components/SVGIcons/IconClockDismissFilled.d.ts +4 -0
- package/components/SVGIcons/IconClockDismissFilled.js +30 -0
- package/components/SVGIcons/IconClockFilled.d.ts +4 -0
- package/components/SVGIcons/IconClockFilled.js +33 -0
- package/components/SVGIcons/IconComment.d.ts +4 -0
- package/components/SVGIcons/IconComment.js +33 -0
- package/components/SVGIcons/IconCommentFilled.d.ts +4 -0
- package/components/SVGIcons/IconCommentFilled.js +33 -0
- package/components/SVGIcons/IconContractCard.d.ts +4 -0
- package/components/SVGIcons/IconContractCard.js +30 -0
- package/components/SVGIcons/IconContractCardFilled.d.ts +4 -0
- package/components/SVGIcons/IconContractCardFilled.js +30 -0
- package/components/SVGIcons/IconCopy.d.ts +4 -0
- package/components/SVGIcons/IconCopy.js +30 -0
- package/components/SVGIcons/IconCopyFilled.d.ts +4 -0
- package/components/SVGIcons/IconCopyFilled.js +30 -0
- package/components/SVGIcons/IconCubeTree.d.ts +4 -0
- package/components/SVGIcons/IconCubeTree.js +30 -0
- package/components/SVGIcons/IconCubeTreeFilled.d.ts +4 -0
- package/components/SVGIcons/IconCubeTreeFilled.js +33 -0
- package/components/SVGIcons/IconDatabase.d.ts +4 -0
- package/components/SVGIcons/IconDatabase.js +33 -0
- package/components/SVGIcons/IconDatabaseFilled.d.ts +4 -0
- package/components/SVGIcons/IconDatabaseFilled.js +33 -0
- package/components/SVGIcons/IconDelete.d.ts +4 -0
- package/components/SVGIcons/IconDelete.js +30 -0
- package/components/SVGIcons/IconDeleteFilled.d.ts +4 -0
- package/components/SVGIcons/IconDeleteFilled.js +30 -0
- package/components/SVGIcons/IconDesignIdeas.d.ts +4 -0
- package/components/SVGIcons/IconDesignIdeas.js +30 -0
- package/components/SVGIcons/IconDesignIdeasFilled.d.ts +4 -0
- package/components/SVGIcons/IconDesignIdeasFilled.js +30 -0
- package/components/SVGIcons/IconDeviceMeetingRoom.d.ts +4 -0
- package/components/SVGIcons/IconDeviceMeetingRoom.js +30 -0
- package/components/SVGIcons/IconDeviceMeetingRoomFilled.d.ts +4 -0
- package/components/SVGIcons/IconDeviceMeetingRoomFilled.js +30 -0
- package/components/SVGIcons/IconDismiss.d.ts +4 -0
- package/components/SVGIcons/IconDismiss.js +30 -0
- package/components/SVGIcons/IconDismissCircle.d.ts +4 -0
- package/components/SVGIcons/IconDismissCircle.js +33 -0
- package/components/SVGIcons/IconDismissCircleFilled.d.ts +4 -0
- package/components/SVGIcons/IconDismissCircleFilled.js +33 -0
- package/components/SVGIcons/IconDismissFilled.d.ts +4 -0
- package/components/SVGIcons/IconDismissFilled.js +30 -0
- package/components/SVGIcons/IconDocument.d.ts +4 -0
- package/components/SVGIcons/IconDocument.js +30 -0
- package/components/SVGIcons/IconDocumentBulletList.d.ts +4 -0
- package/components/SVGIcons/IconDocumentBulletList.js +33 -0
- package/components/SVGIcons/IconDocumentBulletListFilled.d.ts +4 -0
- package/components/SVGIcons/IconDocumentBulletListFilled.js +33 -0
- package/components/SVGIcons/IconDocumentEdit.d.ts +4 -0
- package/components/SVGIcons/IconDocumentEdit.js +30 -0
- package/components/SVGIcons/IconDocumentEditFilled.d.ts +4 -0
- package/components/SVGIcons/IconDocumentEditFilled.js +30 -0
- package/components/SVGIcons/IconDocumentFilled.d.ts +4 -0
- package/components/SVGIcons/IconDocumentFilled.js +30 -0
- package/components/SVGIcons/IconEdit.d.ts +4 -0
- package/components/SVGIcons/IconEdit.js +30 -0
- package/components/SVGIcons/IconEditFilled.d.ts +4 -0
- package/components/SVGIcons/IconEditFilled.js +30 -0
- package/components/SVGIcons/IconErrorCircle.d.ts +4 -0
- package/components/SVGIcons/IconErrorCircle.js +30 -0
- package/components/SVGIcons/IconErrorCircleFilled.d.ts +4 -0
- package/components/SVGIcons/IconErrorCircleFilled.js +30 -0
- package/components/SVGIcons/IconEur.d.ts +4 -0
- package/components/SVGIcons/IconEur.js +30 -0
- package/components/SVGIcons/IconEurFilled.d.ts +4 -0
- package/components/SVGIcons/IconEurFilled.js +30 -0
- package/components/SVGIcons/IconExpandUpLeft.d.ts +4 -0
- package/components/SVGIcons/IconExpandUpLeft.js +33 -0
- package/components/SVGIcons/IconExpandUpLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconExpandUpLeftFilled.js +33 -0
- package/components/SVGIcons/IconExpandUpRight.d.ts +4 -0
- package/components/SVGIcons/IconExpandUpRight.js +33 -0
- package/components/SVGIcons/IconExpandUpRightFilled.d.ts +4 -0
- package/components/SVGIcons/IconExpandUpRightFilled.js +33 -0
- package/components/SVGIcons/IconEyeOff.d.ts +4 -0
- package/components/SVGIcons/IconEyeOff.js +35 -0
- package/components/SVGIcons/IconEyeOffFilled.d.ts +4 -0
- package/components/SVGIcons/IconEyeOffFilled.js +33 -0
- package/components/SVGIcons/IconEyeOn.d.ts +4 -0
- package/components/SVGIcons/IconEyeOn.js +35 -0
- package/components/SVGIcons/IconEyeOnFilled.d.ts +4 -0
- package/components/SVGIcons/IconEyeOnFilled.js +33 -0
- package/components/SVGIcons/IconFacebook.d.ts +4 -0
- package/components/SVGIcons/IconFacebook.js +40 -0
- package/components/SVGIcons/IconFilter.d.ts +4 -0
- package/components/SVGIcons/IconFilter.js +30 -0
- package/components/SVGIcons/IconFilterFilled.d.ts +4 -0
- package/components/SVGIcons/IconFilterFilled.js +30 -0
- package/components/SVGIcons/IconFlag.d.ts +4 -0
- package/components/SVGIcons/IconFlag.js +33 -0
- package/components/SVGIcons/IconFlagFilled.d.ts +4 -0
- package/components/SVGIcons/IconFlagFilled.js +33 -0
- package/components/SVGIcons/IconFlash.d.ts +4 -0
- package/components/SVGIcons/IconFlash.js +30 -0
- package/components/SVGIcons/IconFlashFilled.d.ts +4 -0
- package/components/SVGIcons/IconFlashFilled.js +30 -0
- package/components/SVGIcons/IconFolderLink.d.ts +4 -0
- package/components/SVGIcons/IconFolderLink.js +30 -0
- package/components/SVGIcons/IconFolderLinkFilled.d.ts +4 -0
- package/components/SVGIcons/IconFolderLinkFilled.js +30 -0
- package/components/SVGIcons/IconGas.d.ts +4 -0
- package/components/SVGIcons/IconGas.js +33 -0
- package/components/SVGIcons/IconGb.d.ts +4 -0
- package/components/SVGIcons/IconGb.js +73 -0
- package/components/SVGIcons/IconGlobe.d.ts +4 -0
- package/components/SVGIcons/IconGlobe.js +30 -0
- package/components/SVGIcons/IconGlobeFilled.d.ts +4 -0
- package/components/SVGIcons/IconGlobeFilled.js +30 -0
- package/components/SVGIcons/IconGoogle.d.ts +4 -0
- package/components/SVGIcons/IconGoogle.js +42 -0
- package/components/SVGIcons/IconHandOpenHeart.d.ts +4 -0
- package/components/SVGIcons/IconHandOpenHeart.js +33 -0
- package/components/SVGIcons/IconHandOpenHeartFilled.d.ts +4 -0
- package/components/SVGIcons/IconHandOpenHeartFilled.js +33 -0
- package/components/SVGIcons/IconHandWave.d.ts +4 -0
- package/components/SVGIcons/IconHandWave.js +30 -0
- package/components/SVGIcons/IconHandWaveFilled.d.ts +4 -0
- package/components/SVGIcons/IconHandWaveFilled.js +30 -0
- package/components/SVGIcons/IconHeart.d.ts +4 -0
- package/components/SVGIcons/IconHeart.js +33 -0
- package/components/SVGIcons/IconHeartFilled.d.ts +4 -0
- package/components/SVGIcons/IconHeartFilled.js +33 -0
- package/components/SVGIcons/IconHistory.d.ts +4 -0
- package/components/SVGIcons/IconHistory.js +33 -0
- package/components/SVGIcons/IconHistoryFilled.d.ts +4 -0
- package/components/SVGIcons/IconHistoryFilled.js +33 -0
- package/components/SVGIcons/IconHome.d.ts +4 -0
- package/components/SVGIcons/IconHome.js +33 -0
- package/components/SVGIcons/IconHomeAdd.d.ts +4 -0
- package/components/SVGIcons/IconHomeAdd.js +30 -0
- package/components/SVGIcons/IconHomeAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconHomeAddFilled.js +30 -0
- package/components/SVGIcons/IconHomeFilled.d.ts +4 -0
- package/components/SVGIcons/IconHomeFilled.js +33 -0
- package/components/SVGIcons/IconImage.d.ts +4 -0
- package/components/SVGIcons/IconImage.js +33 -0
- package/components/SVGIcons/IconImageFilled.d.ts +4 -0
- package/components/SVGIcons/IconImageFilled.js +33 -0
- package/components/SVGIcons/IconInfo.d.ts +4 -0
- package/components/SVGIcons/IconInfo.js +30 -0
- package/components/SVGIcons/IconInfoFilled.d.ts +4 -0
- package/components/SVGIcons/IconInfoFilled.js +30 -0
- package/components/SVGIcons/IconInstagram.d.ts +4 -0
- package/components/SVGIcons/IconInstagram.js +41 -0
- package/components/SVGIcons/IconKey.d.ts +4 -0
- package/components/SVGIcons/IconKey.js +30 -0
- package/components/SVGIcons/IconKeyFilled.d.ts +4 -0
- package/components/SVGIcons/IconKeyFilled.js +30 -0
- package/components/SVGIcons/IconKeyReset.d.ts +4 -0
- package/components/SVGIcons/IconKeyReset.js +33 -0
- package/components/SVGIcons/IconKeyResetFilled.d.ts +4 -0
- package/components/SVGIcons/IconKeyResetFilled.js +33 -0
- package/components/SVGIcons/IconLaptop.d.ts +4 -0
- package/components/SVGIcons/IconLaptop.js +30 -0
- package/components/SVGIcons/IconLaptopFilled.d.ts +4 -0
- package/components/SVGIcons/IconLaptopFilled.js +30 -0
- package/components/SVGIcons/IconLeaf.d.ts +4 -0
- package/components/SVGIcons/IconLeaf.js +30 -0
- package/components/SVGIcons/IconLeafFilled.d.ts +4 -0
- package/components/SVGIcons/IconLeafFilled.js +30 -0
- package/components/SVGIcons/IconLightbulb.d.ts +4 -0
- package/components/SVGIcons/IconLightbulb.js +30 -0
- package/components/SVGIcons/IconLightbulbFilled.d.ts +4 -0
- package/components/SVGIcons/IconLightbulbFilled.js +30 -0
- package/components/SVGIcons/IconLink.d.ts +4 -0
- package/components/SVGIcons/IconLink.js +33 -0
- package/components/SVGIcons/IconLinkFilled.d.ts +4 -0
- package/components/SVGIcons/IconLinkFilled.js +33 -0
- package/components/SVGIcons/IconLinkedin.d.ts +4 -0
- package/components/SVGIcons/IconLinkedin.js +33 -0
- package/components/SVGIcons/IconList.d.ts +4 -0
- package/components/SVGIcons/IconList.js +30 -0
- package/components/SVGIcons/IconListFilled.d.ts +4 -0
- package/components/SVGIcons/IconListFilled.js +33 -0
- package/components/SVGIcons/IconLoan.d.ts +4 -0
- package/components/SVGIcons/IconLoan.js +39 -0
- package/components/SVGIcons/IconLoanFilled.d.ts +4 -0
- package/components/SVGIcons/IconLoanFilled.js +30 -0
- package/components/SVGIcons/IconLocation.d.ts +4 -0
- package/components/SVGIcons/IconLocation.js +33 -0
- package/components/SVGIcons/IconLocationFilled.d.ts +4 -0
- package/components/SVGIcons/IconLocationFilled.js +33 -0
- package/components/SVGIcons/IconLockClosed.d.ts +4 -0
- package/components/SVGIcons/IconLockClosed.js +33 -0
- package/components/SVGIcons/IconLockClosedFilled.d.ts +4 -0
- package/components/SVGIcons/IconLockClosedFilled.js +33 -0
- package/components/SVGIcons/IconLockOpen.d.ts +4 -0
- package/components/SVGIcons/IconLockOpen.js +33 -0
- package/components/SVGIcons/IconLockOpenFilled.d.ts +4 -0
- package/components/SVGIcons/IconLockOpenFilled.js +33 -0
- package/components/SVGIcons/IconMail.d.ts +4 -0
- package/components/SVGIcons/IconMail.js +33 -0
- package/components/SVGIcons/IconMailAdd.d.ts +4 -0
- package/components/SVGIcons/IconMailAdd.js +33 -0
- package/components/SVGIcons/IconMailAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconMailAddFilled.js +33 -0
- package/components/SVGIcons/IconMailArrowForward.d.ts +4 -0
- package/components/SVGIcons/IconMailArrowForward.js +33 -0
- package/components/SVGIcons/IconMailArrowForwardFilled.d.ts +4 -0
- package/components/SVGIcons/IconMailArrowForwardFilled.js +33 -0
- package/components/SVGIcons/IconMailFilled.d.ts +4 -0
- package/components/SVGIcons/IconMailFilled.js +33 -0
- package/components/SVGIcons/IconMailLink.d.ts +4 -0
- package/components/SVGIcons/IconMailLink.js +33 -0
- package/components/SVGIcons/IconMailLinkFilled.d.ts +4 -0
- package/components/SVGIcons/IconMailLinkFilled.js +33 -0
- package/components/SVGIcons/IconMedium.d.ts +4 -0
- package/components/SVGIcons/IconMedium.js +33 -0
- package/components/SVGIcons/IconMore.d.ts +4 -0
- package/components/SVGIcons/IconMore.js +33 -0
- package/components/SVGIcons/IconMoreFilled.d.ts +4 -0
- package/components/SVGIcons/IconMoreFilled.js +33 -0
- package/components/SVGIcons/IconMoreVertical.d.ts +4 -0
- package/components/SVGIcons/IconMoreVertical.js +33 -0
- package/components/SVGIcons/IconMoreVerticalFilled.d.ts +4 -0
- package/components/SVGIcons/IconMoreVerticalFilled.js +33 -0
- package/components/SVGIcons/IconNavigation.d.ts +4 -0
- package/components/SVGIcons/IconNavigation.js +33 -0
- package/components/SVGIcons/IconNavigationFilled.d.ts +4 -0
- package/components/SVGIcons/IconNavigationFilled.js +33 -0
- package/components/SVGIcons/IconNotebook.d.ts +4 -0
- package/components/SVGIcons/IconNotebook.js +33 -0
- package/components/SVGIcons/IconNotebookAdd.d.ts +4 -0
- package/components/SVGIcons/IconNotebookAdd.js +49 -0
- package/components/SVGIcons/IconNotebookAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconNotebookAddFilled.js +46 -0
- package/components/SVGIcons/IconNotebookFilled.d.ts +4 -0
- package/components/SVGIcons/IconNotebookFilled.js +33 -0
- package/components/SVGIcons/IconOnlyEmployee.d.ts +4 -0
- package/components/SVGIcons/IconOnlyEmployee.js +30 -0
- package/components/SVGIcons/IconOpen.d.ts +4 -0
- package/components/SVGIcons/IconOpen.js +33 -0
- package/components/SVGIcons/IconOpenFilled.d.ts +4 -0
- package/components/SVGIcons/IconOpenFilled.js +33 -0
- package/components/SVGIcons/IconPaintBrush.d.ts +4 -0
- package/components/SVGIcons/IconPaintBrush.js +30 -0
- package/components/SVGIcons/IconPaintBrushFilled.d.ts +4 -0
- package/components/SVGIcons/IconPaintBrushFilled.js +30 -0
- package/components/SVGIcons/IconPatient.d.ts +4 -0
- package/components/SVGIcons/IconPatient.js +30 -0
- package/components/SVGIcons/IconPatientFilled.d.ts +4 -0
- package/components/SVGIcons/IconPatientFilled.js +30 -0
- package/components/SVGIcons/IconPeople.d.ts +4 -0
- package/components/SVGIcons/IconPeople.js +30 -0
- package/components/SVGIcons/IconPeopleAdd.d.ts +4 -0
- package/components/SVGIcons/IconPeopleAdd.js +33 -0
- package/components/SVGIcons/IconPeopleAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconPeopleAddFilled.js +33 -0
- package/components/SVGIcons/IconPeopleFilled.d.ts +4 -0
- package/components/SVGIcons/IconPeopleFilled.js +33 -0
- package/components/SVGIcons/IconPercent.d.ts +4 -0
- package/components/SVGIcons/IconPercent.js +35 -0
- package/components/SVGIcons/IconPerson.d.ts +4 -0
- package/components/SVGIcons/IconPerson.js +33 -0
- package/components/SVGIcons/IconPersonAccount.d.ts +4 -0
- package/components/SVGIcons/IconPersonAccount.js +30 -0
- package/components/SVGIcons/IconPersonAccountFilled.d.ts +4 -0
- package/components/SVGIcons/IconPersonAccountFilled.js +30 -0
- package/components/SVGIcons/IconPersonAdd.d.ts +4 -0
- package/components/SVGIcons/IconPersonAdd.js +33 -0
- package/components/SVGIcons/IconPersonAddFilled.d.ts +4 -0
- package/components/SVGIcons/IconPersonAddFilled.js +33 -0
- package/components/SVGIcons/IconPersonFilled.d.ts +4 -0
- package/components/SVGIcons/IconPersonFilled.js +33 -0
- package/components/SVGIcons/IconPersonStar.d.ts +4 -0
- package/components/SVGIcons/IconPersonStar.js +33 -0
- package/components/SVGIcons/IconPersonStarFilled.d.ts +4 -0
- package/components/SVGIcons/IconPersonStarFilled.js +33 -0
- package/components/SVGIcons/IconPersonSubtract.d.ts +4 -0
- package/components/SVGIcons/IconPersonSubtract.js +33 -0
- package/components/SVGIcons/IconPersonSubtractFilled.d.ts +4 -0
- package/components/SVGIcons/IconPersonSubtractFilled.js +33 -0
- package/components/SVGIcons/IconPhone.d.ts +4 -0
- package/components/SVGIcons/IconPhone.js +33 -0
- package/components/SVGIcons/IconPhoneFilled.d.ts +4 -0
- package/components/SVGIcons/IconPhoneFilled.js +33 -0
- package/components/SVGIcons/IconPos.d.ts +4 -0
- package/components/SVGIcons/IconPos.js +35 -0
- package/components/SVGIcons/IconPosFilled.d.ts +4 -0
- package/components/SVGIcons/IconPosFilled.js +35 -0
- package/components/SVGIcons/IconProhibited.d.ts +4 -0
- package/components/SVGIcons/IconProhibited.js +33 -0
- package/components/SVGIcons/IconProhibitedFilled.d.ts +4 -0
- package/components/SVGIcons/IconProhibitedFilled.js +33 -0
- package/components/SVGIcons/IconProjectProduct.d.ts +4 -0
- package/components/SVGIcons/IconProjectProduct.js +30 -0
- package/components/SVGIcons/IconQuestion.d.ts +4 -0
- package/components/SVGIcons/IconQuestion.js +33 -0
- package/components/SVGIcons/IconQuestionFilled.d.ts +4 -0
- package/components/SVGIcons/IconQuestionFilled.js +33 -0
- package/components/SVGIcons/IconRedo.d.ts +4 -0
- package/components/SVGIcons/IconRedo.js +33 -0
- package/components/SVGIcons/IconRedoFilled.d.ts +4 -0
- package/components/SVGIcons/IconRedoFilled.js +33 -0
- package/components/SVGIcons/IconRu.d.ts +4 -0
- package/components/SVGIcons/IconRu.js +62 -0
- package/components/SVGIcons/IconRub.d.ts +4 -0
- package/components/SVGIcons/IconRub.js +30 -0
- package/components/SVGIcons/IconRubFilled.d.ts +4 -0
- package/components/SVGIcons/IconRubFilled.js +30 -0
- package/components/SVGIcons/IconSave.d.ts +4 -0
- package/components/SVGIcons/IconSave.js +33 -0
- package/components/SVGIcons/IconSaveFilled.d.ts +4 -0
- package/components/SVGIcons/IconSaveFilled.js +33 -0
- package/components/SVGIcons/IconSavings.d.ts +4 -0
- package/components/SVGIcons/IconSavings.js +33 -0
- package/components/SVGIcons/IconSavingsFilled.d.ts +4 -0
- package/components/SVGIcons/IconSavingsFilled.js +33 -0
- package/components/SVGIcons/IconSearch.d.ts +4 -0
- package/components/SVGIcons/IconSearch.js +33 -0
- package/components/SVGIcons/IconSearchFilled.d.ts +4 -0
- package/components/SVGIcons/IconSearchFilled.js +33 -0
- package/components/SVGIcons/IconSelectAllOff.d.ts +4 -0
- package/components/SVGIcons/IconSelectAllOff.js +33 -0
- package/components/SVGIcons/IconSelectAllOffFilled.d.ts +4 -0
- package/components/SVGIcons/IconSelectAllOffFilled.js +33 -0
- package/components/SVGIcons/IconSelectAllOn.d.ts +4 -0
- package/components/SVGIcons/IconSelectAllOn.js +33 -0
- package/components/SVGIcons/IconSelectAllOnFilled.d.ts +4 -0
- package/components/SVGIcons/IconSelectAllOnFilled.js +33 -0
- package/components/SVGIcons/IconSend.d.ts +4 -0
- package/components/SVGIcons/IconSend.js +33 -0
- package/components/SVGIcons/IconSendFilled.d.ts +4 -0
- package/components/SVGIcons/IconSendFilled.js +33 -0
- package/components/SVGIcons/IconSettings.d.ts +4 -0
- package/components/SVGIcons/IconSettings.js +30 -0
- package/components/SVGIcons/IconSettingsFilled.d.ts +4 -0
- package/components/SVGIcons/IconSettingsFilled.js +33 -0
- package/components/SVGIcons/IconShare.d.ts +4 -0
- package/components/SVGIcons/IconShare.js +33 -0
- package/components/SVGIcons/IconShareAndroid.d.ts +4 -0
- package/components/SVGIcons/IconShareAndroid.js +33 -0
- package/components/SVGIcons/IconShareAndroidFilled.d.ts +4 -0
- package/components/SVGIcons/IconShareAndroidFilled.js +33 -0
- package/components/SVGIcons/IconShareFilled.d.ts +4 -0
- package/components/SVGIcons/IconShareFilled.js +33 -0
- package/components/SVGIcons/IconShower.d.ts +4 -0
- package/components/SVGIcons/IconShower.js +30 -0
- package/components/SVGIcons/IconSignOut.d.ts +4 -0
- package/components/SVGIcons/IconSignOut.js +33 -0
- package/components/SVGIcons/IconSignOutFilled.d.ts +4 -0
- package/components/SVGIcons/IconSignOutFilled.js +33 -0
- package/components/SVGIcons/IconSpinner.d.ts +4 -0
- package/components/SVGIcons/IconSpinner.js +33 -0
- package/components/SVGIcons/IconSpinnerFilled.d.ts +4 -0
- package/components/SVGIcons/IconSpinnerFilled.js +33 -0
- package/components/SVGIcons/IconStar.d.ts +4 -0
- package/components/SVGIcons/IconStar.js +30 -0
- package/components/SVGIcons/IconStarFilled.d.ts +4 -0
- package/components/SVGIcons/IconStarFilled.js +30 -0
- package/components/SVGIcons/IconStatus.d.ts +4 -0
- package/components/SVGIcons/IconStatus.js +33 -0
- package/components/SVGIcons/IconStatusFilled.d.ts +4 -0
- package/components/SVGIcons/IconStatusFilled.js +33 -0
- package/components/SVGIcons/IconSubtract.d.ts +4 -0
- package/components/SVGIcons/IconSubtract.js +33 -0
- package/components/SVGIcons/IconSubtractCircle.d.ts +4 -0
- package/components/SVGIcons/IconSubtractCircle.js +33 -0
- package/components/SVGIcons/IconSubtractCircleFilled.d.ts +4 -0
- package/components/SVGIcons/IconSubtractCircleFilled.js +33 -0
- package/components/SVGIcons/IconSubtractFilled.d.ts +4 -0
- package/components/SVGIcons/IconSubtractFilled.js +33 -0
- package/components/SVGIcons/IconTableCellEdit.d.ts +4 -0
- package/components/SVGIcons/IconTableCellEdit.js +37 -0
- package/components/SVGIcons/IconTableCellEditFilled.d.ts +4 -0
- package/components/SVGIcons/IconTableCellEditFilled.js +43 -0
- package/components/SVGIcons/IconTelegram.d.ts +4 -0
- package/components/SVGIcons/IconTelegram.js +42 -0
- package/components/SVGIcons/IconTextBulletListSquarePerson.d.ts +4 -0
- package/components/SVGIcons/IconTextBulletListSquarePerson.js +30 -0
- package/components/SVGIcons/IconTextBulletListSquarePersonFilled.d.ts +4 -0
- package/components/SVGIcons/IconTextBulletListSquarePersonFilled.js +30 -0
- package/components/SVGIcons/IconTextboxSettings.d.ts +4 -0
- package/components/SVGIcons/IconTextboxSettings.js +30 -0
- package/components/SVGIcons/IconTextboxSettingsFilled.d.ts +4 -0
- package/components/SVGIcons/IconTextboxSettingsFilled.js +30 -0
- package/components/SVGIcons/IconTimer.d.ts +4 -0
- package/components/SVGIcons/IconTimer.js +33 -0
- package/components/SVGIcons/IconTimerFilled.d.ts +4 -0
- package/components/SVGIcons/IconTimerFilled.js +33 -0
- package/components/SVGIcons/IconTin.d.ts +4 -0
- package/components/SVGIcons/IconTin.js +39 -0
- package/components/SVGIcons/IconTinFilled.d.ts +4 -0
- package/components/SVGIcons/IconTinFilled.js +42 -0
- package/components/SVGIcons/IconTv.d.ts +4 -0
- package/components/SVGIcons/IconTv.js +30 -0
- package/components/SVGIcons/IconTvFilled.d.ts +4 -0
- package/components/SVGIcons/IconTvFilled.js +30 -0
- package/components/SVGIcons/IconTwitter.d.ts +4 -0
- package/components/SVGIcons/IconTwitter.js +33 -0
- package/components/SVGIcons/IconUndo.d.ts +4 -0
- package/components/SVGIcons/IconUndo.js +33 -0
- package/components/SVGIcons/IconUndoFilled.d.ts +4 -0
- package/components/SVGIcons/IconUndoFilled.js +33 -0
- package/components/SVGIcons/IconUnitsEmployee.d.ts +4 -0
- package/components/SVGIcons/IconUnitsEmployee.js +30 -0
- package/components/SVGIcons/IconUsd.d.ts +4 -0
- package/components/SVGIcons/IconUsd.js +30 -0
- package/components/SVGIcons/IconUsdFilled.d.ts +4 -0
- package/components/SVGIcons/IconUsdFilled.js +30 -0
- package/components/SVGIcons/IconVehicleTruckProfile.d.ts +4 -0
- package/components/SVGIcons/IconVehicleTruckProfile.js +30 -0
- package/components/SVGIcons/IconVehicleTruckProfileFilled.d.ts +4 -0
- package/components/SVGIcons/IconVehicleTruckProfileFilled.js +30 -0
- package/components/SVGIcons/IconVideo.d.ts +4 -0
- package/components/SVGIcons/IconVideo.js +30 -0
- package/components/SVGIcons/IconVideoFilled.d.ts +4 -0
- package/components/SVGIcons/IconVideoFilled.js +30 -0
- package/components/SVGIcons/IconWallet.d.ts +4 -0
- package/components/SVGIcons/IconWallet.js +33 -0
- package/components/SVGIcons/IconWalletFilled.d.ts +4 -0
- package/components/SVGIcons/IconWalletFilled.js +33 -0
- package/components/SVGIcons/IconWarning.d.ts +4 -0
- package/components/SVGIcons/IconWarning.js +30 -0
- package/components/SVGIcons/IconWarningFilled.d.ts +4 -0
- package/components/SVGIcons/IconWarningFilled.js +30 -0
- package/components/SVGIcons/IconWrenchScrewdriver.d.ts +4 -0
- package/components/SVGIcons/IconWrenchScrewdriver.js +30 -0
- package/components/SVGIcons/IconWrenchScrewdriverFilled.d.ts +4 -0
- package/components/SVGIcons/IconWrenchScrewdriverFilled.js +30 -0
- package/components/SVGIcons/IconYoutube.d.ts +4 -0
- package/components/SVGIcons/IconYoutube.js +33 -0
- package/components/SVGIcons/IconZoomIn.d.ts +4 -0
- package/components/SVGIcons/IconZoomIn.js +30 -0
- package/components/SVGIcons/IconZoomInFilled.d.ts +4 -0
- package/components/SVGIcons/IconZoomInFilled.js +30 -0
- package/components/SVGIcons/IconZoomOut.d.ts +4 -0
- package/components/SVGIcons/IconZoomOut.js +30 -0
- package/components/SVGIcons/IconZoomOutFilled.d.ts +4 -0
- package/components/SVGIcons/IconZoomOutFilled.js +30 -0
- package/components/SVGIcons/index.d.ts +338 -0
- package/components/SVGIcons/index.js +342 -0
- package/components/SVGIcons/types.d.ts +18 -0
- package/components/SVGIcons/types.js +1 -0
- package/components/Select/ButtonSelect/ButtonSelect.d.ts +3 -0
- package/components/Select/ButtonSelect/ButtonSelect.js +180 -0
- package/components/Select/FilterSelect/FilterDropdown.d.ts +3 -0
- package/components/Select/FilterSelect/FilterDropdown.js +80 -0
- package/components/Select/FilterSelect/FilterGroupDropdown.d.ts +3 -0
- package/components/Select/FilterSelect/FilterGroupDropdown.js +65 -0
- package/components/Select/FilterSelect/FilterSelect.d.ts +3 -0
- package/components/Select/FilterSelect/FilterSelect.js +195 -0
- package/components/Select/MultiSelect/MultiBase/MultiBase.d.ts +3 -0
- package/components/Select/MultiSelect/MultiBase/MultiBase.js +207 -0
- package/components/Select/MultiSelect/MultiSelect.d.ts +3 -0
- package/components/Select/MultiSelect/MultiSelect.js +227 -0
- package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.d.ts +3 -0
- package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.js +256 -0
- package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.d.ts +3 -0
- package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.js +244 -0
- package/components/Select/MultiSelect/OptionsWrapper.d.ts +17 -0
- package/components/Select/MultiSelect/OptionsWrapper.js +176 -0
- package/components/Select/NestedSelect/NestedSelect.d.ts +3 -0
- package/components/Select/NestedSelect/NestedSelect.js +190 -0
- package/components/Select/ProfileDropdown/index.d.ts +4 -0
- package/components/Select/ProfileDropdown/index.js +83 -0
- package/components/Select/Select/Select.d.ts +3 -0
- package/components/Select/Select/Select.js +331 -0
- package/components/Select/SharedComponents/Actions.d.ts +8 -0
- package/components/Select/SharedComponents/Actions.js +100 -0
- package/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.d.ts +15 -0
- package/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.js +45 -0
- package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.d.ts +3 -0
- package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.js +102 -0
- package/components/Select/SharedComponents/ContentTop.d.ts +19 -0
- package/components/Select/SharedComponents/ContentTop.js +158 -0
- package/components/Select/SharedComponents/Footer.d.ts +3 -0
- package/components/Select/SharedComponents/Footer.js +67 -0
- package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.d.ts +3 -0
- package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.js +154 -0
- package/components/Select/SharedComponents/Loading.d.ts +6 -0
- package/components/Select/SharedComponents/Loading.js +17 -0
- package/components/Select/SharedComponents/index.d.ts +6 -0
- package/components/Select/SharedComponents/index.js +79 -0
- package/components/Select/constants.d.ts +7 -0
- package/components/Select/constants.js +9 -0
- package/components/Select/index.d.ts +5 -0
- package/components/Select/index.js +96 -0
- package/components/Select/types.d.ts +240 -0
- package/components/Select/types.js +1 -0
- package/components/SideNavigation/Block.d.ts +3 -0
- package/components/SideNavigation/Block.js +28 -0
- package/components/SideNavigation/NavigationItem/index.d.ts +3 -0
- package/components/SideNavigation/NavigationItem/index.js +73 -0
- package/components/SideNavigation/NavigationItem/types.d.ts +25 -0
- package/components/SideNavigation/NavigationItem/types.js +11 -0
- package/components/SideNavigation/SideNavigation.d.ts +3 -0
- package/components/SideNavigation/SideNavigation.js +57 -0
- package/components/SideNavigation/index.d.ts +2 -0
- package/components/SideNavigation/index.js +37 -0
- package/components/SideNavigation/types.d.ts +18 -0
- package/components/SideNavigation/types.js +1 -0
- package/components/SideSheet/Footer/Footer.d.ts +16 -0
- package/components/SideSheet/Footer/Footer.js +79 -0
- package/components/SideSheet/SideSheet.d.ts +3 -0
- package/components/SideSheet/SideSheet.js +193 -0
- package/components/SideSheet/index.d.ts +1 -0
- package/components/SideSheet/index.js +38 -0
- package/components/SideSheet/types.d.ts +34 -0
- package/components/SideSheet/types.js +1 -0
- package/components/Snackbar/Snackbar.d.ts +5 -0
- package/components/Snackbar/Snackbar.js +105 -0
- package/components/Snackbar/consts.d.ts +8 -0
- package/components/Snackbar/consts.js +15 -0
- package/components/Snackbar/index.d.ts +1 -0
- package/components/Snackbar/index.js +33 -0
- package/components/Snackbar/types.d.ts +15 -0
- package/components/Snackbar/types.js +1 -0
- package/components/Status/Status.d.ts +3 -0
- package/components/Status/Status.js +48 -0
- package/components/Status/index.d.ts +1 -0
- package/components/Status/index.js +9 -0
- package/components/Status/types.d.ts +14 -0
- package/components/Status/types.js +1 -0
- package/components/Stepper/Stepper.d.ts +3 -0
- package/components/Stepper/Stepper.js +45 -0
- package/components/Stepper/index.d.ts +1 -0
- package/components/Stepper/index.js +3 -0
- package/components/Stepper/types.d.ts +16 -0
- package/components/Stepper/types.js +1 -0
- package/components/Switcher/Switcher.d.ts +3 -0
- package/components/Switcher/Switcher.js +91 -0
- package/components/Switcher/index.d.ts +1 -0
- package/components/Switcher/index.js +29 -0
- package/components/Switcher/types.d.ts +12 -0
- package/components/Switcher/types.js +1 -0
- package/components/Tab/Tab.d.ts +3 -0
- package/components/Tab/Tab.js +45 -0
- package/components/Tab/TabItem.d.ts +3 -0
- package/components/Tab/TabItem.js +58 -0
- package/components/Tab/consts.d.ts +7 -0
- package/components/Tab/consts.js +12 -0
- package/components/Tab/index.d.ts +1 -0
- package/components/Tab/index.js +12 -0
- package/components/Tab/types.d.ts +51 -0
- package/components/Tab/types.js +1 -0
- package/components/Table/Header.d.ts +16 -0
- package/components/Table/Header.js +100 -0
- package/components/Table/IndeterminateCheckbox.d.ts +12 -0
- package/components/Table/IndeterminateCheckbox.js +53 -0
- package/components/Table/Row.d.ts +10 -0
- package/components/Table/Row.js +69 -0
- package/components/Table/Table.d.ts +3 -0
- package/components/Table/Table.js +149 -0
- package/components/Table/index.d.ts +1 -0
- package/components/Table/index.js +42 -0
- package/components/Table/types.d.ts +44 -0
- package/components/Table/types.js +1 -0
- package/components/Table/utils.d.ts +5 -0
- package/components/Table/utils.js +53 -0
- package/components/Text/Text.d.ts +3 -0
- package/components/Text/Text.js +36 -0
- package/components/Text/index.d.ts +1 -0
- package/components/Text/index.js +5 -0
- package/components/Text/types.d.ts +19 -0
- package/components/Text/types.js +1 -0
- package/components/Textarea/Textarea.d.ts +3 -0
- package/components/Textarea/Textarea.js +115 -0
- package/components/Textarea/index.d.ts +1 -0
- package/components/Textarea/index.js +31 -0
- package/components/Textarea/types.d.ts +18 -0
- package/components/Textarea/types.js +1 -0
- package/components/Tooltip/Tooltip.d.ts +3 -0
- package/components/Tooltip/Tooltip.js +103 -0
- package/components/Tooltip/index.d.ts +1 -0
- package/components/Tooltip/index.js +16 -0
- package/components/Tooltip/types.d.ts +21 -0
- package/components/Tooltip/types.js +13 -0
- package/consts/index.d.ts +23 -0
- package/consts/index.js +62 -0
- package/context/FormContextProvider.d.ts +5 -0
- package/context/FormContextProvider.js +12 -0
- package/context/index.d.ts +2 -0
- package/context/index.js +5 -0
- package/context/types.d.ts +21 -0
- package/context/types.js +12 -0
- package/defineProperty-7db32082.js +28 -0
- package/extends-e8ef956f.js +11 -0
- package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.d.ts +6 -0
- package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.js +15 -0
- package/helperComponents/AnimatePresenceWrapper/index.d.ts +1 -0
- package/helperComponents/AnimatePresenceWrapper/index.js +3 -0
- package/helperComponents/CodeBlock/CodeBlock.d.ts +8 -0
- package/helperComponents/CodeBlock/CodeBlock.js +178 -0
- package/helperComponents/CodeBlock/index.d.ts +2 -0
- package/helperComponents/CodeBlock/index.js +3 -0
- package/helperComponents/ErrorMessage/ErrorMessage.d.ts +3 -0
- package/helperComponents/ErrorMessage/ErrorMessage.js +27 -0
- package/helperComponents/ErrorMessage/index.d.ts +1 -0
- package/helperComponents/ErrorMessage/index.js +8 -0
- package/helperComponents/ErrorMessage/types.d.ts +7 -0
- package/helperComponents/ErrorMessage/types.js +1 -0
- package/helperComponents/IconDynamicComponent/IconDynamicComponent.d.ts +9 -0
- package/helperComponents/IconDynamicComponent/IconDynamicComponent.js +26 -0
- package/helperComponents/IconDynamicComponent/constants.d.ts +3 -0
- package/helperComponents/IconDynamicComponent/constants.js +34 -0
- package/helperComponents/IconDynamicComponent/index.d.ts +1 -0
- package/helperComponents/IconDynamicComponent/index.js +3 -0
- package/helperComponents/Label/Label.d.ts +3 -0
- package/helperComponents/Label/Label.js +29 -0
- package/helperComponents/Label/index.d.ts +1 -0
- package/helperComponents/Label/index.js +6 -0
- package/helperComponents/Label/types.d.ts +11 -0
- package/helperComponents/Label/types.js +1 -0
- package/helperComponents/Loader/Loader.d.ts +3 -0
- package/helperComponents/Loader/Loader.js +15 -0
- package/helperComponents/Loader/index.d.ts +1 -0
- package/helperComponents/Loader/index.js +2 -0
- package/helperComponents/Loader/types.d.ts +4 -0
- package/helperComponents/Loader/types.js +1 -0
- package/helperComponents/OptionItem/OptionItem.d.ts +3 -0
- package/helperComponents/OptionItem/OptionItem.js +119 -0
- package/helperComponents/OptionItem/index.d.ts +1 -0
- package/helperComponents/OptionItem/index.js +46 -0
- package/helperComponents/OptionItem/types.d.ts +17 -0
- package/helperComponents/OptionItem/types.js +1 -0
- package/helperComponents/index.d.ts +6 -0
- package/helperComponents/index.js +47 -0
- package/hooks/index.d.ts +12 -0
- package/hooks/index.js +19 -0
- package/hooks/useChangePositionsOnScroll.d.ts +6 -0
- package/hooks/useChangePositionsOnScroll.js +42 -0
- package/hooks/useDispatchEventOnScroll.d.ts +1 -0
- package/hooks/useDispatchEventOnScroll.js +12 -0
- package/hooks/useFieldArray.d.ts +1 -0
- package/hooks/useFieldArray.js +1 -0
- package/hooks/useFormContext.d.ts +9 -0
- package/hooks/useFormContext.js +10 -0
- package/hooks/useFormProps.d.ts +2 -0
- package/hooks/useFormProps.js +10 -0
- package/hooks/useGetElemPositions.d.ts +10 -0
- package/hooks/useGetElemPositions.js +19 -0
- package/hooks/useGetElemSizes.d.ts +13 -0
- package/hooks/useGetElemSizes.js +16 -0
- package/hooks/useGetHasBottomSpace.d.ts +11 -0
- package/hooks/useGetHasBottomSpace.js +26 -0
- package/hooks/useGetTooltipPosition.d.ts +1 -0
- package/hooks/useGetTooltipPosition.js +85 -0
- package/hooks/useGetTooltipStyles.d.ts +14 -0
- package/hooks/useGetTooltipStyles.js +89 -0
- package/hooks/useHideBodyScroll.d.ts +1 -0
- package/hooks/useHideBodyScroll.js +35 -0
- package/hooks/useHideOnScroll.d.ts +1 -0
- package/hooks/useHideOnScroll.js +24 -0
- package/hooks/useOnOutsideClick.d.ts +3 -0
- package/hooks/useOnOutsideClick.js +65 -0
- package/hooks/useScreenSize.d.ts +3 -0
- package/hooks/useScreenSize.js +36 -0
- package/index.d.ts +54 -0
- package/index.js +495 -0
- package/objectWithoutProperties-fcd64cc7.js +23 -0
- package/package.json +39 -0
- package/slicedToArray-0c706912.js +55 -0
- package/stories/AdvancedTable.stories.d.ts +8 -0
- package/stories/Alert.stories.d.ts +22 -0
- package/stories/Avatar.stories.d.ts +29 -0
- package/stories/Badge.stories.d.ts +22 -0
- package/stories/Breadcrumb.stories.d.ts +8 -0
- package/stories/Button.stories.d.ts +22 -0
- package/stories/ButtonIcon.stories.d.ts +16 -0
- package/stories/CardBody.stories.d.ts +8 -0
- package/stories/CardSelect.stories.d.ts +24 -0
- package/stories/Cards.stories.d.ts +8 -0
- package/stories/Checkbox.stories.d.ts +9 -0
- package/stories/Chips.stories.d.ts +28 -0
- package/stories/Collapse.stories.d.ts +12 -0
- package/stories/Container.stories.d.ts +8 -0
- package/stories/Copy.stories.d.ts +9 -0
- package/stories/Counter.stories.d.ts +8 -0
- package/stories/DatePicker.stories.d.ts +17 -0
- package/stories/Divider.stories.d.ts +4 -0
- package/stories/Empty.stories.d.ts +16 -0
- package/stories/FileUpload.stories.d.ts +8 -0
- package/stories/Form.stories.d.ts +7 -0
- package/stories/FramedIcon.stories.d.ts +16 -0
- package/stories/Heading.stories.d.ts +36 -0
- package/stories/Image.stories.d.ts +4 -0
- package/stories/Input.stories.d.ts +18 -0
- package/stories/ItemSelect.stories.d.ts +9 -0
- package/stories/Link.stories.d.ts +22 -0
- package/stories/Menu.stories.d.ts +17 -0
- package/stories/Modal.stories.d.ts +23 -0
- package/stories/More.stories.d.ts +7 -0
- package/stories/NavigationItem.stories.d.ts +13 -0
- package/stories/OneTimePassword.stories.d.ts +34 -0
- package/stories/Pagination.stories.d.ts +16 -0
- package/stories/Popover.stories.d.ts +16 -0
- package/stories/Progress.stories.d.ts +23 -0
- package/stories/ProgressStep.stories.d.ts +28 -0
- package/stories/Radio.stories.d.ts +10 -0
- package/stories/SVGIcons.stories.d.ts +29 -0
- package/stories/Select.stories.d.ts +21 -0
- package/stories/SideNavigation.stories.d.ts +9 -0
- package/stories/SideSheet.stories.d.ts +16 -0
- package/stories/Snackbar.stories.d.ts +17 -0
- package/stories/Status.stories.d.ts +22 -0
- package/stories/Stepper.stories.d.ts +7 -0
- package/stories/Switcher.stories.d.ts +16 -0
- package/stories/Tab.stories.d.ts +28 -0
- package/stories/Table.stories.d.ts +8 -0
- package/stories/Text.stories.d.ts +42 -0
- package/stories/Textarea.stories.d.ts +8 -0
- package/stories/Tooltip.stories.d.ts +22 -0
- package/toConsumableArray-e0031ed3.js +19 -0
- package/typeof-ecd92d7f.js +11 -0
- package/types.d.js +1 -0
- package/utils/helpers.d.ts +15 -0
- package/utils/helpers.js +86 -0
|
@@ -0,0 +1,1954 @@
|
|
|
1
|
+
import { _ as _slicedToArray } from '../../slicedToArray-0c706912.js';
|
|
2
|
+
import { useState, useEffect } from 'react';
|
|
3
|
+
import { registerLocale } from 'react-datepicker';
|
|
4
|
+
import dayjs, { locale as locale$3 } from 'dayjs';
|
|
5
|
+
import { _ as _typeof$1 } from '../../typeof-ecd92d7f.js';
|
|
6
|
+
|
|
7
|
+
function asyncGeneratorStep(n, t, e, r, o, a, c) {
|
|
8
|
+
try {
|
|
9
|
+
var i = n[a](c),
|
|
10
|
+
u = i.value;
|
|
11
|
+
} catch (n) {
|
|
12
|
+
return void e(n);
|
|
13
|
+
}
|
|
14
|
+
i.done ? t(u) : Promise.resolve(u).then(r, o);
|
|
15
|
+
}
|
|
16
|
+
function _asyncToGenerator(n) {
|
|
17
|
+
return function () {
|
|
18
|
+
var t = this,
|
|
19
|
+
e = arguments;
|
|
20
|
+
return new Promise(function (r, o) {
|
|
21
|
+
var a = n.apply(t, e);
|
|
22
|
+
function _next(n) {
|
|
23
|
+
asyncGeneratorStep(a, r, o, _next, _throw, "next", n);
|
|
24
|
+
}
|
|
25
|
+
function _throw(n) {
|
|
26
|
+
asyncGeneratorStep(a, r, o, _next, _throw, "throw", n);
|
|
27
|
+
}
|
|
28
|
+
_next(void 0);
|
|
29
|
+
});
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
34
|
+
|
|
35
|
+
var regeneratorRuntime$1 = {exports: {}};
|
|
36
|
+
|
|
37
|
+
var _typeof = {exports: {}};
|
|
38
|
+
|
|
39
|
+
(function (module) {
|
|
40
|
+
function _typeof(o) {
|
|
41
|
+
"@babel/helpers - typeof";
|
|
42
|
+
|
|
43
|
+
return module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
|
|
44
|
+
return typeof o;
|
|
45
|
+
} : function (o) {
|
|
46
|
+
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
47
|
+
}, module.exports.__esModule = true, module.exports["default"] = module.exports, _typeof(o);
|
|
48
|
+
}
|
|
49
|
+
module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
50
|
+
} (_typeof));
|
|
51
|
+
|
|
52
|
+
(function (module) {
|
|
53
|
+
var _typeof$1 = _typeof.exports["default"];
|
|
54
|
+
function _regeneratorRuntime() {
|
|
55
|
+
module.exports = _regeneratorRuntime = function _regeneratorRuntime() {
|
|
56
|
+
return e;
|
|
57
|
+
}, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
58
|
+
var t,
|
|
59
|
+
e = {},
|
|
60
|
+
r = Object.prototype,
|
|
61
|
+
n = r.hasOwnProperty,
|
|
62
|
+
o = Object.defineProperty || function (t, e, r) {
|
|
63
|
+
t[e] = r.value;
|
|
64
|
+
},
|
|
65
|
+
i = "function" == typeof Symbol ? Symbol : {},
|
|
66
|
+
a = i.iterator || "@@iterator",
|
|
67
|
+
c = i.asyncIterator || "@@asyncIterator",
|
|
68
|
+
u = i.toStringTag || "@@toStringTag";
|
|
69
|
+
function define(t, e, r) {
|
|
70
|
+
return Object.defineProperty(t, e, {
|
|
71
|
+
value: r,
|
|
72
|
+
enumerable: !0,
|
|
73
|
+
configurable: !0,
|
|
74
|
+
writable: !0
|
|
75
|
+
}), t[e];
|
|
76
|
+
}
|
|
77
|
+
try {
|
|
78
|
+
define({}, "");
|
|
79
|
+
} catch (t) {
|
|
80
|
+
define = function define(t, e, r) {
|
|
81
|
+
return t[e] = r;
|
|
82
|
+
};
|
|
83
|
+
}
|
|
84
|
+
function wrap(t, e, r, n) {
|
|
85
|
+
var i = e && e.prototype instanceof Generator ? e : Generator,
|
|
86
|
+
a = Object.create(i.prototype),
|
|
87
|
+
c = new Context(n || []);
|
|
88
|
+
return o(a, "_invoke", {
|
|
89
|
+
value: makeInvokeMethod(t, r, c)
|
|
90
|
+
}), a;
|
|
91
|
+
}
|
|
92
|
+
function tryCatch(t, e, r) {
|
|
93
|
+
try {
|
|
94
|
+
return {
|
|
95
|
+
type: "normal",
|
|
96
|
+
arg: t.call(e, r)
|
|
97
|
+
};
|
|
98
|
+
} catch (t) {
|
|
99
|
+
return {
|
|
100
|
+
type: "throw",
|
|
101
|
+
arg: t
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
e.wrap = wrap;
|
|
106
|
+
var h = "suspendedStart",
|
|
107
|
+
l = "suspendedYield",
|
|
108
|
+
f = "executing",
|
|
109
|
+
s = "completed",
|
|
110
|
+
y = {};
|
|
111
|
+
function Generator() {}
|
|
112
|
+
function GeneratorFunction() {}
|
|
113
|
+
function GeneratorFunctionPrototype() {}
|
|
114
|
+
var p = {};
|
|
115
|
+
define(p, a, function () {
|
|
116
|
+
return this;
|
|
117
|
+
});
|
|
118
|
+
var d = Object.getPrototypeOf,
|
|
119
|
+
v = d && d(d(values([])));
|
|
120
|
+
v && v !== r && n.call(v, a) && (p = v);
|
|
121
|
+
var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p);
|
|
122
|
+
function defineIteratorMethods(t) {
|
|
123
|
+
["next", "throw", "return"].forEach(function (e) {
|
|
124
|
+
define(t, e, function (t) {
|
|
125
|
+
return this._invoke(e, t);
|
|
126
|
+
});
|
|
127
|
+
});
|
|
128
|
+
}
|
|
129
|
+
function AsyncIterator(t, e) {
|
|
130
|
+
function invoke(r, o, i, a) {
|
|
131
|
+
var c = tryCatch(t[r], t, o);
|
|
132
|
+
if ("throw" !== c.type) {
|
|
133
|
+
var u = c.arg,
|
|
134
|
+
h = u.value;
|
|
135
|
+
return h && "object" == _typeof$1(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) {
|
|
136
|
+
invoke("next", t, i, a);
|
|
137
|
+
}, function (t) {
|
|
138
|
+
invoke("throw", t, i, a);
|
|
139
|
+
}) : e.resolve(h).then(function (t) {
|
|
140
|
+
u.value = t, i(u);
|
|
141
|
+
}, function (t) {
|
|
142
|
+
return invoke("throw", t, i, a);
|
|
143
|
+
});
|
|
144
|
+
}
|
|
145
|
+
a(c.arg);
|
|
146
|
+
}
|
|
147
|
+
var r;
|
|
148
|
+
o(this, "_invoke", {
|
|
149
|
+
value: function value(t, n) {
|
|
150
|
+
function callInvokeWithMethodAndArg() {
|
|
151
|
+
return new e(function (e, r) {
|
|
152
|
+
invoke(t, n, e, r);
|
|
153
|
+
});
|
|
154
|
+
}
|
|
155
|
+
return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
|
|
156
|
+
}
|
|
157
|
+
});
|
|
158
|
+
}
|
|
159
|
+
function makeInvokeMethod(e, r, n) {
|
|
160
|
+
var o = h;
|
|
161
|
+
return function (i, a) {
|
|
162
|
+
if (o === f) throw Error("Generator is already running");
|
|
163
|
+
if (o === s) {
|
|
164
|
+
if ("throw" === i) throw a;
|
|
165
|
+
return {
|
|
166
|
+
value: t,
|
|
167
|
+
done: !0
|
|
168
|
+
};
|
|
169
|
+
}
|
|
170
|
+
for (n.method = i, n.arg = a;;) {
|
|
171
|
+
var c = n.delegate;
|
|
172
|
+
if (c) {
|
|
173
|
+
var u = maybeInvokeDelegate(c, n);
|
|
174
|
+
if (u) {
|
|
175
|
+
if (u === y) continue;
|
|
176
|
+
return u;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) {
|
|
180
|
+
if (o === h) throw o = s, n.arg;
|
|
181
|
+
n.dispatchException(n.arg);
|
|
182
|
+
} else "return" === n.method && n.abrupt("return", n.arg);
|
|
183
|
+
o = f;
|
|
184
|
+
var p = tryCatch(e, r, n);
|
|
185
|
+
if ("normal" === p.type) {
|
|
186
|
+
if (o = n.done ? s : l, p.arg === y) continue;
|
|
187
|
+
return {
|
|
188
|
+
value: p.arg,
|
|
189
|
+
done: n.done
|
|
190
|
+
};
|
|
191
|
+
}
|
|
192
|
+
"throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg);
|
|
193
|
+
}
|
|
194
|
+
};
|
|
195
|
+
}
|
|
196
|
+
function maybeInvokeDelegate(e, r) {
|
|
197
|
+
var n = r.method,
|
|
198
|
+
o = e.iterator[n];
|
|
199
|
+
if (o === t) return r.delegate = null, "throw" === n && e.iterator["return"] && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y;
|
|
200
|
+
var i = tryCatch(o, e.iterator, r.arg);
|
|
201
|
+
if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y;
|
|
202
|
+
var a = i.arg;
|
|
203
|
+
return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y);
|
|
204
|
+
}
|
|
205
|
+
function pushTryEntry(t) {
|
|
206
|
+
var e = {
|
|
207
|
+
tryLoc: t[0]
|
|
208
|
+
};
|
|
209
|
+
1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e);
|
|
210
|
+
}
|
|
211
|
+
function resetTryEntry(t) {
|
|
212
|
+
var e = t.completion || {};
|
|
213
|
+
e.type = "normal", delete e.arg, t.completion = e;
|
|
214
|
+
}
|
|
215
|
+
function Context(t) {
|
|
216
|
+
this.tryEntries = [{
|
|
217
|
+
tryLoc: "root"
|
|
218
|
+
}], t.forEach(pushTryEntry, this), this.reset(!0);
|
|
219
|
+
}
|
|
220
|
+
function values(e) {
|
|
221
|
+
if (e || "" === e) {
|
|
222
|
+
var r = e[a];
|
|
223
|
+
if (r) return r.call(e);
|
|
224
|
+
if ("function" == typeof e.next) return e;
|
|
225
|
+
if (!isNaN(e.length)) {
|
|
226
|
+
var o = -1,
|
|
227
|
+
i = function next() {
|
|
228
|
+
for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next;
|
|
229
|
+
return next.value = t, next.done = !0, next;
|
|
230
|
+
};
|
|
231
|
+
return i.next = i;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
throw new TypeError(_typeof$1(e) + " is not iterable");
|
|
235
|
+
}
|
|
236
|
+
return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", {
|
|
237
|
+
value: GeneratorFunctionPrototype,
|
|
238
|
+
configurable: !0
|
|
239
|
+
}), o(GeneratorFunctionPrototype, "constructor", {
|
|
240
|
+
value: GeneratorFunction,
|
|
241
|
+
configurable: !0
|
|
242
|
+
}), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) {
|
|
243
|
+
var e = "function" == typeof t && t.constructor;
|
|
244
|
+
return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name));
|
|
245
|
+
}, e.mark = function (t) {
|
|
246
|
+
return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t;
|
|
247
|
+
}, e.awrap = function (t) {
|
|
248
|
+
return {
|
|
249
|
+
__await: t
|
|
250
|
+
};
|
|
251
|
+
}, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () {
|
|
252
|
+
return this;
|
|
253
|
+
}), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) {
|
|
254
|
+
void 0 === i && (i = Promise);
|
|
255
|
+
var a = new AsyncIterator(wrap(t, r, n, o), i);
|
|
256
|
+
return e.isGeneratorFunction(r) ? a : a.next().then(function (t) {
|
|
257
|
+
return t.done ? t.value : a.next();
|
|
258
|
+
});
|
|
259
|
+
}, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () {
|
|
260
|
+
return this;
|
|
261
|
+
}), define(g, "toString", function () {
|
|
262
|
+
return "[object Generator]";
|
|
263
|
+
}), e.keys = function (t) {
|
|
264
|
+
var e = Object(t),
|
|
265
|
+
r = [];
|
|
266
|
+
for (var n in e) r.push(n);
|
|
267
|
+
return r.reverse(), function next() {
|
|
268
|
+
for (; r.length;) {
|
|
269
|
+
var t = r.pop();
|
|
270
|
+
if (t in e) return next.value = t, next.done = !1, next;
|
|
271
|
+
}
|
|
272
|
+
return next.done = !0, next;
|
|
273
|
+
};
|
|
274
|
+
}, e.values = values, Context.prototype = {
|
|
275
|
+
constructor: Context,
|
|
276
|
+
reset: function reset(e) {
|
|
277
|
+
if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t);
|
|
278
|
+
},
|
|
279
|
+
stop: function stop() {
|
|
280
|
+
this.done = !0;
|
|
281
|
+
var t = this.tryEntries[0].completion;
|
|
282
|
+
if ("throw" === t.type) throw t.arg;
|
|
283
|
+
return this.rval;
|
|
284
|
+
},
|
|
285
|
+
dispatchException: function dispatchException(e) {
|
|
286
|
+
if (this.done) throw e;
|
|
287
|
+
var r = this;
|
|
288
|
+
function handle(n, o) {
|
|
289
|
+
return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o;
|
|
290
|
+
}
|
|
291
|
+
for (var o = this.tryEntries.length - 1; o >= 0; --o) {
|
|
292
|
+
var i = this.tryEntries[o],
|
|
293
|
+
a = i.completion;
|
|
294
|
+
if ("root" === i.tryLoc) return handle("end");
|
|
295
|
+
if (i.tryLoc <= this.prev) {
|
|
296
|
+
var c = n.call(i, "catchLoc"),
|
|
297
|
+
u = n.call(i, "finallyLoc");
|
|
298
|
+
if (c && u) {
|
|
299
|
+
if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
|
|
300
|
+
if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
|
|
301
|
+
} else if (c) {
|
|
302
|
+
if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
|
|
303
|
+
} else {
|
|
304
|
+
if (!u) throw Error("try statement without catch or finally");
|
|
305
|
+
if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
abrupt: function abrupt(t, e) {
|
|
311
|
+
for (var r = this.tryEntries.length - 1; r >= 0; --r) {
|
|
312
|
+
var o = this.tryEntries[r];
|
|
313
|
+
if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) {
|
|
314
|
+
var i = o;
|
|
315
|
+
break;
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null);
|
|
319
|
+
var a = i ? i.completion : {};
|
|
320
|
+
return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a);
|
|
321
|
+
},
|
|
322
|
+
complete: function complete(t, e) {
|
|
323
|
+
if ("throw" === t.type) throw t.arg;
|
|
324
|
+
return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y;
|
|
325
|
+
},
|
|
326
|
+
finish: function finish(t) {
|
|
327
|
+
for (var e = this.tryEntries.length - 1; e >= 0; --e) {
|
|
328
|
+
var r = this.tryEntries[e];
|
|
329
|
+
if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y;
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
"catch": function _catch(t) {
|
|
333
|
+
for (var e = this.tryEntries.length - 1; e >= 0; --e) {
|
|
334
|
+
var r = this.tryEntries[e];
|
|
335
|
+
if (r.tryLoc === t) {
|
|
336
|
+
var n = r.completion;
|
|
337
|
+
if ("throw" === n.type) {
|
|
338
|
+
var o = n.arg;
|
|
339
|
+
resetTryEntry(r);
|
|
340
|
+
}
|
|
341
|
+
return o;
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
throw Error("illegal catch attempt");
|
|
345
|
+
},
|
|
346
|
+
delegateYield: function delegateYield(e, r, n) {
|
|
347
|
+
return this.delegate = {
|
|
348
|
+
iterator: values(e),
|
|
349
|
+
resultName: r,
|
|
350
|
+
nextLoc: n
|
|
351
|
+
}, "next" === this.method && (this.arg = t), y;
|
|
352
|
+
}
|
|
353
|
+
}, e;
|
|
354
|
+
}
|
|
355
|
+
module.exports = _regeneratorRuntime, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
356
|
+
} (regeneratorRuntime$1));
|
|
357
|
+
|
|
358
|
+
// TODO(Babel 8): Remove this file.
|
|
359
|
+
|
|
360
|
+
var runtime = regeneratorRuntime$1.exports();
|
|
361
|
+
var regenerator = runtime;
|
|
362
|
+
|
|
363
|
+
// Copied from https://github.com/facebook/regenerator/blob/main/packages/runtime/runtime.js#L736=
|
|
364
|
+
try {
|
|
365
|
+
regeneratorRuntime = runtime;
|
|
366
|
+
} catch (accidentalStrictMode) {
|
|
367
|
+
if (typeof globalThis === "object") {
|
|
368
|
+
globalThis.regeneratorRuntime = runtime;
|
|
369
|
+
} else {
|
|
370
|
+
Function("r", "regeneratorRuntime = r")(runtime);
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
var formatDistanceLocale$2 = {
|
|
375
|
+
lessThanXSeconds: {
|
|
376
|
+
one: 'ավելի քիչ քան 1 վայրկյան',
|
|
377
|
+
other: 'ավելի քիչ քան {{count}} վայրկյան'
|
|
378
|
+
},
|
|
379
|
+
xSeconds: {
|
|
380
|
+
one: '1 վայրկյան',
|
|
381
|
+
other: '{{count}} վայրկյան'
|
|
382
|
+
},
|
|
383
|
+
halfAMinute: 'կես րոպե',
|
|
384
|
+
lessThanXMinutes: {
|
|
385
|
+
one: 'ավելի քիչ քան 1 րոպե',
|
|
386
|
+
other: 'ավելի քիչ քան {{count}} րոպե'
|
|
387
|
+
},
|
|
388
|
+
xMinutes: {
|
|
389
|
+
one: '1 րոպե',
|
|
390
|
+
other: '{{count}} րոպե'
|
|
391
|
+
},
|
|
392
|
+
aboutXHours: {
|
|
393
|
+
one: 'մոտ 1 ժամ',
|
|
394
|
+
other: 'մոտ {{count}} ժամ'
|
|
395
|
+
},
|
|
396
|
+
xHours: {
|
|
397
|
+
one: '1 ժամ',
|
|
398
|
+
other: '{{count}} ժամ'
|
|
399
|
+
},
|
|
400
|
+
xDays: {
|
|
401
|
+
one: '1 օր',
|
|
402
|
+
other: '{{count}} օր'
|
|
403
|
+
},
|
|
404
|
+
aboutXWeeks: {
|
|
405
|
+
one: 'մոտ 1 շաբաթ',
|
|
406
|
+
other: 'մոտ {{count}} շաբաթ'
|
|
407
|
+
},
|
|
408
|
+
xWeeks: {
|
|
409
|
+
one: '1 շաբաթ',
|
|
410
|
+
other: '{{count}} շաբաթ'
|
|
411
|
+
},
|
|
412
|
+
aboutXMonths: {
|
|
413
|
+
one: 'մոտ 1 ամիս',
|
|
414
|
+
other: 'մոտ {{count}} ամիս'
|
|
415
|
+
},
|
|
416
|
+
xMonths: {
|
|
417
|
+
one: '1 ամիս',
|
|
418
|
+
other: '{{count}} ամիս'
|
|
419
|
+
},
|
|
420
|
+
aboutXYears: {
|
|
421
|
+
one: 'մոտ 1 տարի',
|
|
422
|
+
other: 'մոտ {{count}} տարի'
|
|
423
|
+
},
|
|
424
|
+
xYears: {
|
|
425
|
+
one: '1 տարի',
|
|
426
|
+
other: '{{count}} տարի'
|
|
427
|
+
},
|
|
428
|
+
overXYears: {
|
|
429
|
+
one: 'ավելի քան 1 տարի',
|
|
430
|
+
other: 'ավելի քան {{count}} տարի'
|
|
431
|
+
},
|
|
432
|
+
almostXYears: {
|
|
433
|
+
one: 'համարյա 1 տարի',
|
|
434
|
+
other: 'համարյա {{count}} տարի'
|
|
435
|
+
}
|
|
436
|
+
};
|
|
437
|
+
var formatDistance$2 = function formatDistance(token, count, options) {
|
|
438
|
+
var result;
|
|
439
|
+
var tokenValue = formatDistanceLocale$2[token];
|
|
440
|
+
if (typeof tokenValue === 'string') {
|
|
441
|
+
result = tokenValue;
|
|
442
|
+
} else if (count === 1) {
|
|
443
|
+
result = tokenValue.one;
|
|
444
|
+
} else {
|
|
445
|
+
result = tokenValue.other.replace('{{count}}', String(count));
|
|
446
|
+
}
|
|
447
|
+
if (options !== null && options !== void 0 && options.addSuffix) {
|
|
448
|
+
if (options.comparison && options.comparison > 0) {
|
|
449
|
+
return result + ' հետո';
|
|
450
|
+
} else {
|
|
451
|
+
return result + ' առաջ';
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
return result;
|
|
455
|
+
};
|
|
456
|
+
|
|
457
|
+
function buildFormatLongFn(args) {
|
|
458
|
+
return function () {
|
|
459
|
+
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
460
|
+
// TODO: Remove String()
|
|
461
|
+
var width = options.width ? String(options.width) : args.defaultWidth;
|
|
462
|
+
var format = args.formats[width] || args.formats[args.defaultWidth];
|
|
463
|
+
return format;
|
|
464
|
+
};
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
var dateFormats$2 = {
|
|
468
|
+
full: 'd MMMM, y, EEEE',
|
|
469
|
+
long: 'd MMMM, y',
|
|
470
|
+
medium: 'd MMM, y',
|
|
471
|
+
short: 'dd.MM.yyyy'
|
|
472
|
+
};
|
|
473
|
+
var timeFormats$2 = {
|
|
474
|
+
full: 'HH:mm:ss zzzz',
|
|
475
|
+
long: 'HH:mm:ss z',
|
|
476
|
+
medium: 'HH:mm:ss',
|
|
477
|
+
short: 'HH:mm'
|
|
478
|
+
};
|
|
479
|
+
var dateTimeFormats$2 = {
|
|
480
|
+
full: "{{date}} 'ժ․'{{time}}",
|
|
481
|
+
long: "{{date}} 'ժ․'{{time}}",
|
|
482
|
+
medium: '{{date}}, {{time}}',
|
|
483
|
+
short: '{{date}}, {{time}}'
|
|
484
|
+
};
|
|
485
|
+
var formatLong$2 = {
|
|
486
|
+
date: buildFormatLongFn({
|
|
487
|
+
formats: dateFormats$2,
|
|
488
|
+
defaultWidth: 'full'
|
|
489
|
+
}),
|
|
490
|
+
time: buildFormatLongFn({
|
|
491
|
+
formats: timeFormats$2,
|
|
492
|
+
defaultWidth: 'full'
|
|
493
|
+
}),
|
|
494
|
+
dateTime: buildFormatLongFn({
|
|
495
|
+
formats: dateTimeFormats$2,
|
|
496
|
+
defaultWidth: 'full'
|
|
497
|
+
})
|
|
498
|
+
};
|
|
499
|
+
|
|
500
|
+
var formatRelativeLocale$2 = {
|
|
501
|
+
lastWeek: "'նախորդ' eeee p'֊ին'",
|
|
502
|
+
yesterday: "'երեկ' p'֊ին'",
|
|
503
|
+
today: "'այսօր' p'֊ին'",
|
|
504
|
+
tomorrow: "'վաղը' p'֊ին'",
|
|
505
|
+
nextWeek: "'հաջորդ' eeee p'֊ին'",
|
|
506
|
+
other: 'P'
|
|
507
|
+
};
|
|
508
|
+
var formatRelative$2 = function formatRelative(token, _date, _baseDate, _options) {
|
|
509
|
+
return formatRelativeLocale$2[token];
|
|
510
|
+
};
|
|
511
|
+
|
|
512
|
+
function buildLocalizeFn(args) {
|
|
513
|
+
return function (dirtyIndex, options) {
|
|
514
|
+
var context = options !== null && options !== void 0 && options.context ? String(options.context) : 'standalone';
|
|
515
|
+
var valuesArray;
|
|
516
|
+
if (context === 'formatting' && args.formattingValues) {
|
|
517
|
+
var defaultWidth = args.defaultFormattingWidth || args.defaultWidth;
|
|
518
|
+
var width = options !== null && options !== void 0 && options.width ? String(options.width) : defaultWidth;
|
|
519
|
+
valuesArray = args.formattingValues[width] || args.formattingValues[defaultWidth];
|
|
520
|
+
} else {
|
|
521
|
+
var _defaultWidth = args.defaultWidth;
|
|
522
|
+
var _width = options !== null && options !== void 0 && options.width ? String(options.width) : args.defaultWidth;
|
|
523
|
+
valuesArray = args.values[_width] || args.values[_defaultWidth];
|
|
524
|
+
}
|
|
525
|
+
var index = args.argumentCallback ? args.argumentCallback(dirtyIndex) : dirtyIndex;
|
|
526
|
+
// @ts-ignore: For some reason TypeScript just don't want to match it, no matter how hard we try. I challenge you to try to remove it!
|
|
527
|
+
return valuesArray[index];
|
|
528
|
+
};
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
var eraValues$2 = {
|
|
532
|
+
narrow: ['Ք', 'Մ'],
|
|
533
|
+
abbreviated: ['ՔԱ', 'ՄԹ'],
|
|
534
|
+
wide: ['Քրիստոսից առաջ', 'Մեր թվարկության']
|
|
535
|
+
};
|
|
536
|
+
var quarterValues$2 = {
|
|
537
|
+
narrow: ['1', '2', '3', '4'],
|
|
538
|
+
abbreviated: ['Ք1', 'Ք2', 'Ք3', 'Ք4'],
|
|
539
|
+
wide: ['1֊ին քառորդ', '2֊րդ քառորդ', '3֊րդ քառորդ', '4֊րդ քառորդ']
|
|
540
|
+
};
|
|
541
|
+
var monthValues$2 = {
|
|
542
|
+
narrow: ['Հ', 'Փ', 'Մ', 'Ա', 'Մ', 'Հ', 'Հ', 'Օ', 'Ս', 'Հ', 'Ն', 'Դ'],
|
|
543
|
+
abbreviated: ['հուն', 'փետ', 'մար', 'ապր', 'մայ', 'հուն', 'հուլ', 'օգս', 'սեպ', 'հոկ', 'նոյ', 'դեկ'],
|
|
544
|
+
wide: ['հունվար', 'փետրվար', 'մարտ', 'ապրիլ', 'մայիս', 'հունիս', 'հուլիս', 'օգոստոս', 'սեպտեմբեր', 'հոկտեմբեր', 'նոյեմբեր', 'դեկտեմբեր']
|
|
545
|
+
};
|
|
546
|
+
var dayValues$2 = {
|
|
547
|
+
narrow: ['Կ', 'Ե', 'Ե', 'Չ', 'Հ', 'Ո', 'Շ'],
|
|
548
|
+
short: ['կր', 'եր', 'եք', 'չք', 'հգ', 'ուր', 'շբ'],
|
|
549
|
+
abbreviated: ['կիր', 'երկ', 'երք', 'չոր', 'հնգ', 'ուրբ', 'շաբ'],
|
|
550
|
+
wide: ['կիրակի', 'երկուշաբթի', 'երեքշաբթի', 'չորեքշաբթի', 'հինգշաբթի', 'ուրբաթ', 'շաբաթ']
|
|
551
|
+
};
|
|
552
|
+
var dayPeriodValues$2 = {
|
|
553
|
+
narrow: {
|
|
554
|
+
am: 'a',
|
|
555
|
+
pm: 'p',
|
|
556
|
+
midnight: 'կեսգշ',
|
|
557
|
+
noon: 'կեսօր',
|
|
558
|
+
morning: 'առավոտ',
|
|
559
|
+
afternoon: 'ցերեկ',
|
|
560
|
+
evening: 'երեկո',
|
|
561
|
+
night: 'գիշեր'
|
|
562
|
+
},
|
|
563
|
+
abbreviated: {
|
|
564
|
+
am: 'AM',
|
|
565
|
+
pm: 'PM',
|
|
566
|
+
midnight: 'կեսգիշեր',
|
|
567
|
+
noon: 'կեսօր',
|
|
568
|
+
morning: 'առավոտ',
|
|
569
|
+
afternoon: 'ցերեկ',
|
|
570
|
+
evening: 'երեկո',
|
|
571
|
+
night: 'գիշեր'
|
|
572
|
+
},
|
|
573
|
+
wide: {
|
|
574
|
+
am: 'a.m.',
|
|
575
|
+
pm: 'p.m.',
|
|
576
|
+
midnight: 'կեսգիշեր',
|
|
577
|
+
noon: 'կեսօր',
|
|
578
|
+
morning: 'առավոտ',
|
|
579
|
+
afternoon: 'ցերեկ',
|
|
580
|
+
evening: 'երեկո',
|
|
581
|
+
night: 'գիշեր'
|
|
582
|
+
}
|
|
583
|
+
};
|
|
584
|
+
var formattingDayPeriodValues$2 = {
|
|
585
|
+
narrow: {
|
|
586
|
+
am: 'a',
|
|
587
|
+
pm: 'p',
|
|
588
|
+
midnight: 'կեսգշ',
|
|
589
|
+
noon: 'կեսօր',
|
|
590
|
+
morning: 'առավոտը',
|
|
591
|
+
afternoon: 'ցերեկը',
|
|
592
|
+
evening: 'երեկոյան',
|
|
593
|
+
night: 'գիշերը'
|
|
594
|
+
},
|
|
595
|
+
abbreviated: {
|
|
596
|
+
am: 'AM',
|
|
597
|
+
pm: 'PM',
|
|
598
|
+
midnight: 'կեսգիշերին',
|
|
599
|
+
noon: 'կեսօրին',
|
|
600
|
+
morning: 'առավոտը',
|
|
601
|
+
afternoon: 'ցերեկը',
|
|
602
|
+
evening: 'երեկոյան',
|
|
603
|
+
night: 'գիշերը'
|
|
604
|
+
},
|
|
605
|
+
wide: {
|
|
606
|
+
am: 'a.m.',
|
|
607
|
+
pm: 'p.m.',
|
|
608
|
+
midnight: 'կեսգիշերին',
|
|
609
|
+
noon: 'կեսօրին',
|
|
610
|
+
morning: 'առավոտը',
|
|
611
|
+
afternoon: 'ցերեկը',
|
|
612
|
+
evening: 'երեկոյան',
|
|
613
|
+
night: 'գիշերը'
|
|
614
|
+
}
|
|
615
|
+
};
|
|
616
|
+
var ordinalNumber$2 = function ordinalNumber(dirtyNumber, _options) {
|
|
617
|
+
var number = Number(dirtyNumber);
|
|
618
|
+
|
|
619
|
+
// If ordinal numbers depend on context, for example,
|
|
620
|
+
// if they are different for different grammatical genders,
|
|
621
|
+
// use `options.unit`.
|
|
622
|
+
//
|
|
623
|
+
// `unit` can be 'year', 'quarter', 'month', 'week', 'date', 'dayOfYear',
|
|
624
|
+
// 'day', 'hour', 'minute', 'second'.
|
|
625
|
+
|
|
626
|
+
var rem100 = number % 100;
|
|
627
|
+
if (rem100 < 10) {
|
|
628
|
+
if (rem100 % 10 === 1) {
|
|
629
|
+
return number + '֊ին';
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
return number + '֊րդ';
|
|
633
|
+
};
|
|
634
|
+
var localize$2 = {
|
|
635
|
+
ordinalNumber: ordinalNumber$2,
|
|
636
|
+
era: buildLocalizeFn({
|
|
637
|
+
values: eraValues$2,
|
|
638
|
+
defaultWidth: 'wide'
|
|
639
|
+
}),
|
|
640
|
+
quarter: buildLocalizeFn({
|
|
641
|
+
values: quarterValues$2,
|
|
642
|
+
defaultWidth: 'wide',
|
|
643
|
+
argumentCallback: function argumentCallback(quarter) {
|
|
644
|
+
return quarter - 1;
|
|
645
|
+
}
|
|
646
|
+
}),
|
|
647
|
+
month: buildLocalizeFn({
|
|
648
|
+
values: monthValues$2,
|
|
649
|
+
defaultWidth: 'wide'
|
|
650
|
+
}),
|
|
651
|
+
day: buildLocalizeFn({
|
|
652
|
+
values: dayValues$2,
|
|
653
|
+
defaultWidth: 'wide'
|
|
654
|
+
}),
|
|
655
|
+
dayPeriod: buildLocalizeFn({
|
|
656
|
+
values: dayPeriodValues$2,
|
|
657
|
+
defaultWidth: 'wide',
|
|
658
|
+
formattingValues: formattingDayPeriodValues$2,
|
|
659
|
+
defaultFormattingWidth: 'wide'
|
|
660
|
+
})
|
|
661
|
+
};
|
|
662
|
+
|
|
663
|
+
function buildMatchFn(args) {
|
|
664
|
+
return function (string) {
|
|
665
|
+
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
666
|
+
var width = options.width;
|
|
667
|
+
var matchPattern = width && args.matchPatterns[width] || args.matchPatterns[args.defaultMatchWidth];
|
|
668
|
+
var matchResult = string.match(matchPattern);
|
|
669
|
+
if (!matchResult) {
|
|
670
|
+
return null;
|
|
671
|
+
}
|
|
672
|
+
var matchedString = matchResult[0];
|
|
673
|
+
var parsePatterns = width && args.parsePatterns[width] || args.parsePatterns[args.defaultParseWidth];
|
|
674
|
+
var key = Array.isArray(parsePatterns) ? findIndex(parsePatterns, function (pattern) {
|
|
675
|
+
return pattern.test(matchedString);
|
|
676
|
+
}) : findKey(parsePatterns, function (pattern) {
|
|
677
|
+
return pattern.test(matchedString);
|
|
678
|
+
});
|
|
679
|
+
var value;
|
|
680
|
+
value = args.valueCallback ? args.valueCallback(key) : key;
|
|
681
|
+
value = options.valueCallback ? options.valueCallback(value) : value;
|
|
682
|
+
var rest = string.slice(matchedString.length);
|
|
683
|
+
return {
|
|
684
|
+
value: value,
|
|
685
|
+
rest: rest
|
|
686
|
+
};
|
|
687
|
+
};
|
|
688
|
+
}
|
|
689
|
+
function findKey(object, predicate) {
|
|
690
|
+
for (var key in object) {
|
|
691
|
+
if (object.hasOwnProperty(key) && predicate(object[key])) {
|
|
692
|
+
return key;
|
|
693
|
+
}
|
|
694
|
+
}
|
|
695
|
+
return undefined;
|
|
696
|
+
}
|
|
697
|
+
function findIndex(array, predicate) {
|
|
698
|
+
for (var key = 0; key < array.length; key++) {
|
|
699
|
+
if (predicate(array[key])) {
|
|
700
|
+
return key;
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
return undefined;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
function buildMatchPatternFn(args) {
|
|
707
|
+
return function (string) {
|
|
708
|
+
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
709
|
+
var matchResult = string.match(args.matchPattern);
|
|
710
|
+
if (!matchResult) return null;
|
|
711
|
+
var matchedString = matchResult[0];
|
|
712
|
+
var parseResult = string.match(args.parsePattern);
|
|
713
|
+
if (!parseResult) return null;
|
|
714
|
+
var value = args.valueCallback ? args.valueCallback(parseResult[0]) : parseResult[0];
|
|
715
|
+
value = options.valueCallback ? options.valueCallback(value) : value;
|
|
716
|
+
var rest = string.slice(matchedString.length);
|
|
717
|
+
return {
|
|
718
|
+
value: value,
|
|
719
|
+
rest: rest
|
|
720
|
+
};
|
|
721
|
+
};
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
var matchOrdinalNumberPattern$2 = /^(\d+)((-|֊)?(ին|րդ))?/i;
|
|
725
|
+
var parseOrdinalNumberPattern$2 = /\d+/i;
|
|
726
|
+
var matchEraPatterns$2 = {
|
|
727
|
+
narrow: /^(Ք|Մ)/i,
|
|
728
|
+
abbreviated: /^(Ք\.?\s?Ա\.?|Մ\.?\s?Թ\.?\s?Ա\.?|Մ\.?\s?Թ\.?|Ք\.?\s?Հ\.?)/i,
|
|
729
|
+
wide: /^(քրիստոսից առաջ|մեր թվարկությունից առաջ|մեր թվարկության|քրիստոսից հետո)/i
|
|
730
|
+
};
|
|
731
|
+
var parseEraPatterns$2 = {
|
|
732
|
+
any: [/^ք/i, /^մ/i]
|
|
733
|
+
};
|
|
734
|
+
var matchQuarterPatterns$2 = {
|
|
735
|
+
narrow: /^[1234]/i,
|
|
736
|
+
abbreviated: /^ք[1234]/i,
|
|
737
|
+
wide: /^[1234]((-|֊)?(ին|րդ)) քառորդ/i
|
|
738
|
+
};
|
|
739
|
+
var parseQuarterPatterns$2 = {
|
|
740
|
+
any: [/1/i, /2/i, /3/i, /4/i]
|
|
741
|
+
};
|
|
742
|
+
var matchMonthPatterns$2 = {
|
|
743
|
+
narrow: /^[հփմաօսնդ]/i,
|
|
744
|
+
abbreviated: /^(հուն|փետ|մար|ապր|մայ|հուն|հուլ|օգս|սեպ|հոկ|նոյ|դեկ)/i,
|
|
745
|
+
wide: /^(հունվար|փետրվար|մարտ|ապրիլ|մայիս|հունիս|հուլիս|օգոստոս|սեպտեմբեր|հոկտեմբեր|նոյեմբեր|դեկտեմբեր)/i
|
|
746
|
+
};
|
|
747
|
+
var parseMonthPatterns$2 = {
|
|
748
|
+
narrow: [/^հ/i, /^փ/i, /^մ/i, /^ա/i, /^մ/i, /^հ/i, /^հ/i, /^օ/i, /^ս/i, /^հ/i, /^ն/i, /^դ/i],
|
|
749
|
+
any: [/^հու/i, /^փ/i, /^մար/i, /^ա/i, /^մայ/i, /^հուն/i, /^հուլ/i, /^օ/i, /^ս/i, /^հոկ/i, /^ն/i, /^դ/i]
|
|
750
|
+
};
|
|
751
|
+
var matchDayPatterns$2 = {
|
|
752
|
+
narrow: /^[եչհոշկ]/i,
|
|
753
|
+
short: /^(կր|եր|եք|չք|հգ|ուր|շբ)/i,
|
|
754
|
+
abbreviated: /^(կիր|երկ|երք|չոր|հնգ|ուրբ|շաբ)/i,
|
|
755
|
+
wide: /^(կիրակի|երկուշաբթի|երեքշաբթի|չորեքշաբթի|հինգշաբթի|ուրբաթ|շաբաթ)/i
|
|
756
|
+
};
|
|
757
|
+
var parseDayPatterns$2 = {
|
|
758
|
+
narrow: [/^կ/i, /^ե/i, /^ե/i, /^չ/i, /^հ/i, /^(ո|Ո)/, /^շ/i],
|
|
759
|
+
short: [/^կ/i, /^եր/i, /^եք/i, /^չ/i, /^հ/i, /^(ո|Ո)/, /^շ/i],
|
|
760
|
+
abbreviated: [/^կ/i, /^երկ/i, /^երք/i, /^չ/i, /^հ/i, /^(ո|Ո)/, /^շ/i],
|
|
761
|
+
wide: [/^կ/i, /^երկ/i, /^երե/i, /^չ/i, /^հ/i, /^(ո|Ո)/, /^շ/i]
|
|
762
|
+
};
|
|
763
|
+
var matchDayPeriodPatterns$2 = {
|
|
764
|
+
narrow: /^([ap]|կեսգշ|կեսօր|(առավոտը?|ցերեկը?|երեկո(յան)?|գիշերը?))/i,
|
|
765
|
+
any: /^([ap]\.?\s?m\.?|կեսգիշեր(ին)?|կեսօր(ին)?|(առավոտը?|ցերեկը?|երեկո(յան)?|գիշերը?))/i
|
|
766
|
+
};
|
|
767
|
+
var parseDayPeriodPatterns$2 = {
|
|
768
|
+
any: {
|
|
769
|
+
am: /^a/i,
|
|
770
|
+
pm: /^p/i,
|
|
771
|
+
midnight: /կեսգիշեր/i,
|
|
772
|
+
noon: /կեսօր/i,
|
|
773
|
+
morning: /առավոտ/i,
|
|
774
|
+
afternoon: /ցերեկ/i,
|
|
775
|
+
evening: /երեկո/i,
|
|
776
|
+
night: /գիշեր/i
|
|
777
|
+
}
|
|
778
|
+
};
|
|
779
|
+
var match$2 = {
|
|
780
|
+
ordinalNumber: buildMatchPatternFn({
|
|
781
|
+
matchPattern: matchOrdinalNumberPattern$2,
|
|
782
|
+
parsePattern: parseOrdinalNumberPattern$2,
|
|
783
|
+
valueCallback: function valueCallback(value) {
|
|
784
|
+
return parseInt(value, 10);
|
|
785
|
+
}
|
|
786
|
+
}),
|
|
787
|
+
era: buildMatchFn({
|
|
788
|
+
matchPatterns: matchEraPatterns$2,
|
|
789
|
+
defaultMatchWidth: 'wide',
|
|
790
|
+
parsePatterns: parseEraPatterns$2,
|
|
791
|
+
defaultParseWidth: 'any'
|
|
792
|
+
}),
|
|
793
|
+
quarter: buildMatchFn({
|
|
794
|
+
matchPatterns: matchQuarterPatterns$2,
|
|
795
|
+
defaultMatchWidth: 'wide',
|
|
796
|
+
parsePatterns: parseQuarterPatterns$2,
|
|
797
|
+
defaultParseWidth: 'any',
|
|
798
|
+
valueCallback: function valueCallback(index) {
|
|
799
|
+
return index + 1;
|
|
800
|
+
}
|
|
801
|
+
}),
|
|
802
|
+
month: buildMatchFn({
|
|
803
|
+
matchPatterns: matchMonthPatterns$2,
|
|
804
|
+
defaultMatchWidth: 'wide',
|
|
805
|
+
parsePatterns: parseMonthPatterns$2,
|
|
806
|
+
defaultParseWidth: 'any'
|
|
807
|
+
}),
|
|
808
|
+
day: buildMatchFn({
|
|
809
|
+
matchPatterns: matchDayPatterns$2,
|
|
810
|
+
defaultMatchWidth: 'wide',
|
|
811
|
+
parsePatterns: parseDayPatterns$2,
|
|
812
|
+
defaultParseWidth: 'wide'
|
|
813
|
+
}),
|
|
814
|
+
dayPeriod: buildMatchFn({
|
|
815
|
+
matchPatterns: matchDayPeriodPatterns$2,
|
|
816
|
+
defaultMatchWidth: 'any',
|
|
817
|
+
parsePatterns: parseDayPeriodPatterns$2,
|
|
818
|
+
defaultParseWidth: 'any'
|
|
819
|
+
})
|
|
820
|
+
};
|
|
821
|
+
|
|
822
|
+
/**
|
|
823
|
+
* @type {Locale}
|
|
824
|
+
* @category Locales
|
|
825
|
+
* @summary Armenian locale
|
|
826
|
+
* @language Armenian
|
|
827
|
+
* @iso-639-2 arm
|
|
828
|
+
* @author Alex Igityan [@alexigityan]{@link https://github.com/alexigityan}
|
|
829
|
+
*/
|
|
830
|
+
var locale$2 = {
|
|
831
|
+
code: 'hy',
|
|
832
|
+
formatDistance: formatDistance$2,
|
|
833
|
+
formatLong: formatLong$2,
|
|
834
|
+
formatRelative: formatRelative$2,
|
|
835
|
+
localize: localize$2,
|
|
836
|
+
match: match$2,
|
|
837
|
+
options: {
|
|
838
|
+
weekStartsOn: 1 /* Monday */,
|
|
839
|
+
firstWeekContainsDate: 1
|
|
840
|
+
}
|
|
841
|
+
};
|
|
842
|
+
|
|
843
|
+
var formatDistanceLocale$1 = {
|
|
844
|
+
lessThanXSeconds: {
|
|
845
|
+
one: 'less than a second',
|
|
846
|
+
other: 'less than {{count}} seconds'
|
|
847
|
+
},
|
|
848
|
+
xSeconds: {
|
|
849
|
+
one: '1 second',
|
|
850
|
+
other: '{{count}} seconds'
|
|
851
|
+
},
|
|
852
|
+
halfAMinute: 'half a minute',
|
|
853
|
+
lessThanXMinutes: {
|
|
854
|
+
one: 'less than a minute',
|
|
855
|
+
other: 'less than {{count}} minutes'
|
|
856
|
+
},
|
|
857
|
+
xMinutes: {
|
|
858
|
+
one: '1 minute',
|
|
859
|
+
other: '{{count}} minutes'
|
|
860
|
+
},
|
|
861
|
+
aboutXHours: {
|
|
862
|
+
one: 'about 1 hour',
|
|
863
|
+
other: 'about {{count}} hours'
|
|
864
|
+
},
|
|
865
|
+
xHours: {
|
|
866
|
+
one: '1 hour',
|
|
867
|
+
other: '{{count}} hours'
|
|
868
|
+
},
|
|
869
|
+
xDays: {
|
|
870
|
+
one: '1 day',
|
|
871
|
+
other: '{{count}} days'
|
|
872
|
+
},
|
|
873
|
+
aboutXWeeks: {
|
|
874
|
+
one: 'about 1 week',
|
|
875
|
+
other: 'about {{count}} weeks'
|
|
876
|
+
},
|
|
877
|
+
xWeeks: {
|
|
878
|
+
one: '1 week',
|
|
879
|
+
other: '{{count}} weeks'
|
|
880
|
+
},
|
|
881
|
+
aboutXMonths: {
|
|
882
|
+
one: 'about 1 month',
|
|
883
|
+
other: 'about {{count}} months'
|
|
884
|
+
},
|
|
885
|
+
xMonths: {
|
|
886
|
+
one: '1 month',
|
|
887
|
+
other: '{{count}} months'
|
|
888
|
+
},
|
|
889
|
+
aboutXYears: {
|
|
890
|
+
one: 'about 1 year',
|
|
891
|
+
other: 'about {{count}} years'
|
|
892
|
+
},
|
|
893
|
+
xYears: {
|
|
894
|
+
one: '1 year',
|
|
895
|
+
other: '{{count}} years'
|
|
896
|
+
},
|
|
897
|
+
overXYears: {
|
|
898
|
+
one: 'over 1 year',
|
|
899
|
+
other: 'over {{count}} years'
|
|
900
|
+
},
|
|
901
|
+
almostXYears: {
|
|
902
|
+
one: 'almost 1 year',
|
|
903
|
+
other: 'almost {{count}} years'
|
|
904
|
+
}
|
|
905
|
+
};
|
|
906
|
+
var formatDistance$1 = function formatDistance(token, count, options) {
|
|
907
|
+
var result;
|
|
908
|
+
var tokenValue = formatDistanceLocale$1[token];
|
|
909
|
+
if (typeof tokenValue === 'string') {
|
|
910
|
+
result = tokenValue;
|
|
911
|
+
} else if (count === 1) {
|
|
912
|
+
result = tokenValue.one;
|
|
913
|
+
} else {
|
|
914
|
+
result = tokenValue.other.replace('{{count}}', count.toString());
|
|
915
|
+
}
|
|
916
|
+
if (options !== null && options !== void 0 && options.addSuffix) {
|
|
917
|
+
if (options.comparison && options.comparison > 0) {
|
|
918
|
+
return 'in ' + result;
|
|
919
|
+
} else {
|
|
920
|
+
return result + ' ago';
|
|
921
|
+
}
|
|
922
|
+
}
|
|
923
|
+
return result;
|
|
924
|
+
};
|
|
925
|
+
|
|
926
|
+
var formatRelativeLocale$1 = {
|
|
927
|
+
lastWeek: "'last' eeee 'at' p",
|
|
928
|
+
yesterday: "'yesterday at' p",
|
|
929
|
+
today: "'today at' p",
|
|
930
|
+
tomorrow: "'tomorrow at' p",
|
|
931
|
+
nextWeek: "eeee 'at' p",
|
|
932
|
+
other: 'P'
|
|
933
|
+
};
|
|
934
|
+
var formatRelative$1 = function formatRelative(token, _date, _baseDate, _options) {
|
|
935
|
+
return formatRelativeLocale$1[token];
|
|
936
|
+
};
|
|
937
|
+
|
|
938
|
+
var eraValues$1 = {
|
|
939
|
+
narrow: ['B', 'A'],
|
|
940
|
+
abbreviated: ['BC', 'AD'],
|
|
941
|
+
wide: ['Before Christ', 'Anno Domini']
|
|
942
|
+
};
|
|
943
|
+
var quarterValues$1 = {
|
|
944
|
+
narrow: ['1', '2', '3', '4'],
|
|
945
|
+
abbreviated: ['Q1', 'Q2', 'Q3', 'Q4'],
|
|
946
|
+
wide: ['1st quarter', '2nd quarter', '3rd quarter', '4th quarter']
|
|
947
|
+
};
|
|
948
|
+
|
|
949
|
+
// Note: in English, the names of days of the week and months are capitalized.
|
|
950
|
+
// If you are making a new locale based on this one, check if the same is true for the language you're working on.
|
|
951
|
+
// Generally, formatted dates should look like they are in the middle of a sentence,
|
|
952
|
+
// e.g. in Spanish language the weekdays and months should be in the lowercase.
|
|
953
|
+
var monthValues$1 = {
|
|
954
|
+
narrow: ['J', 'F', 'M', 'A', 'M', 'J', 'J', 'A', 'S', 'O', 'N', 'D'],
|
|
955
|
+
abbreviated: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
|
|
956
|
+
wide: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']
|
|
957
|
+
};
|
|
958
|
+
var dayValues$1 = {
|
|
959
|
+
narrow: ['S', 'M', 'T', 'W', 'T', 'F', 'S'],
|
|
960
|
+
short: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
|
|
961
|
+
abbreviated: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
|
|
962
|
+
wide: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']
|
|
963
|
+
};
|
|
964
|
+
var dayPeriodValues$1 = {
|
|
965
|
+
narrow: {
|
|
966
|
+
am: 'a',
|
|
967
|
+
pm: 'p',
|
|
968
|
+
midnight: 'mi',
|
|
969
|
+
noon: 'n',
|
|
970
|
+
morning: 'morning',
|
|
971
|
+
afternoon: 'afternoon',
|
|
972
|
+
evening: 'evening',
|
|
973
|
+
night: 'night'
|
|
974
|
+
},
|
|
975
|
+
abbreviated: {
|
|
976
|
+
am: 'AM',
|
|
977
|
+
pm: 'PM',
|
|
978
|
+
midnight: 'midnight',
|
|
979
|
+
noon: 'noon',
|
|
980
|
+
morning: 'morning',
|
|
981
|
+
afternoon: 'afternoon',
|
|
982
|
+
evening: 'evening',
|
|
983
|
+
night: 'night'
|
|
984
|
+
},
|
|
985
|
+
wide: {
|
|
986
|
+
am: 'a.m.',
|
|
987
|
+
pm: 'p.m.',
|
|
988
|
+
midnight: 'midnight',
|
|
989
|
+
noon: 'noon',
|
|
990
|
+
morning: 'morning',
|
|
991
|
+
afternoon: 'afternoon',
|
|
992
|
+
evening: 'evening',
|
|
993
|
+
night: 'night'
|
|
994
|
+
}
|
|
995
|
+
};
|
|
996
|
+
var formattingDayPeriodValues$1 = {
|
|
997
|
+
narrow: {
|
|
998
|
+
am: 'a',
|
|
999
|
+
pm: 'p',
|
|
1000
|
+
midnight: 'mi',
|
|
1001
|
+
noon: 'n',
|
|
1002
|
+
morning: 'in the morning',
|
|
1003
|
+
afternoon: 'in the afternoon',
|
|
1004
|
+
evening: 'in the evening',
|
|
1005
|
+
night: 'at night'
|
|
1006
|
+
},
|
|
1007
|
+
abbreviated: {
|
|
1008
|
+
am: 'AM',
|
|
1009
|
+
pm: 'PM',
|
|
1010
|
+
midnight: 'midnight',
|
|
1011
|
+
noon: 'noon',
|
|
1012
|
+
morning: 'in the morning',
|
|
1013
|
+
afternoon: 'in the afternoon',
|
|
1014
|
+
evening: 'in the evening',
|
|
1015
|
+
night: 'at night'
|
|
1016
|
+
},
|
|
1017
|
+
wide: {
|
|
1018
|
+
am: 'a.m.',
|
|
1019
|
+
pm: 'p.m.',
|
|
1020
|
+
midnight: 'midnight',
|
|
1021
|
+
noon: 'noon',
|
|
1022
|
+
morning: 'in the morning',
|
|
1023
|
+
afternoon: 'in the afternoon',
|
|
1024
|
+
evening: 'in the evening',
|
|
1025
|
+
night: 'at night'
|
|
1026
|
+
}
|
|
1027
|
+
};
|
|
1028
|
+
var ordinalNumber$1 = function ordinalNumber(dirtyNumber, _options) {
|
|
1029
|
+
var number = Number(dirtyNumber);
|
|
1030
|
+
|
|
1031
|
+
// If ordinal numbers depend on context, for example,
|
|
1032
|
+
// if they are different for different grammatical genders,
|
|
1033
|
+
// use `options.unit`.
|
|
1034
|
+
//
|
|
1035
|
+
// `unit` can be 'year', 'quarter', 'month', 'week', 'date', 'dayOfYear',
|
|
1036
|
+
// 'day', 'hour', 'minute', 'second'.
|
|
1037
|
+
|
|
1038
|
+
var rem100 = number % 100;
|
|
1039
|
+
if (rem100 > 20 || rem100 < 10) {
|
|
1040
|
+
switch (rem100 % 10) {
|
|
1041
|
+
case 1:
|
|
1042
|
+
return number + 'st';
|
|
1043
|
+
case 2:
|
|
1044
|
+
return number + 'nd';
|
|
1045
|
+
case 3:
|
|
1046
|
+
return number + 'rd';
|
|
1047
|
+
}
|
|
1048
|
+
}
|
|
1049
|
+
return number + 'th';
|
|
1050
|
+
};
|
|
1051
|
+
var localize$1 = {
|
|
1052
|
+
ordinalNumber: ordinalNumber$1,
|
|
1053
|
+
era: buildLocalizeFn({
|
|
1054
|
+
values: eraValues$1,
|
|
1055
|
+
defaultWidth: 'wide'
|
|
1056
|
+
}),
|
|
1057
|
+
quarter: buildLocalizeFn({
|
|
1058
|
+
values: quarterValues$1,
|
|
1059
|
+
defaultWidth: 'wide',
|
|
1060
|
+
argumentCallback: function argumentCallback(quarter) {
|
|
1061
|
+
return quarter - 1;
|
|
1062
|
+
}
|
|
1063
|
+
}),
|
|
1064
|
+
month: buildLocalizeFn({
|
|
1065
|
+
values: monthValues$1,
|
|
1066
|
+
defaultWidth: 'wide'
|
|
1067
|
+
}),
|
|
1068
|
+
day: buildLocalizeFn({
|
|
1069
|
+
values: dayValues$1,
|
|
1070
|
+
defaultWidth: 'wide'
|
|
1071
|
+
}),
|
|
1072
|
+
dayPeriod: buildLocalizeFn({
|
|
1073
|
+
values: dayPeriodValues$1,
|
|
1074
|
+
defaultWidth: 'wide',
|
|
1075
|
+
formattingValues: formattingDayPeriodValues$1,
|
|
1076
|
+
defaultFormattingWidth: 'wide'
|
|
1077
|
+
})
|
|
1078
|
+
};
|
|
1079
|
+
|
|
1080
|
+
var matchOrdinalNumberPattern$1 = /^(\d+)(th|st|nd|rd)?/i;
|
|
1081
|
+
var parseOrdinalNumberPattern$1 = /\d+/i;
|
|
1082
|
+
var matchEraPatterns$1 = {
|
|
1083
|
+
narrow: /^(b|a)/i,
|
|
1084
|
+
abbreviated: /^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,
|
|
1085
|
+
wide: /^(before christ|before common era|anno domini|common era)/i
|
|
1086
|
+
};
|
|
1087
|
+
var parseEraPatterns$1 = {
|
|
1088
|
+
any: [/^b/i, /^(a|c)/i]
|
|
1089
|
+
};
|
|
1090
|
+
var matchQuarterPatterns$1 = {
|
|
1091
|
+
narrow: /^[1234]/i,
|
|
1092
|
+
abbreviated: /^q[1234]/i,
|
|
1093
|
+
wide: /^[1234](th|st|nd|rd)? quarter/i
|
|
1094
|
+
};
|
|
1095
|
+
var parseQuarterPatterns$1 = {
|
|
1096
|
+
any: [/1/i, /2/i, /3/i, /4/i]
|
|
1097
|
+
};
|
|
1098
|
+
var matchMonthPatterns$1 = {
|
|
1099
|
+
narrow: /^[jfmasond]/i,
|
|
1100
|
+
abbreviated: /^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,
|
|
1101
|
+
wide: /^(january|february|march|april|may|june|july|august|september|october|november|december)/i
|
|
1102
|
+
};
|
|
1103
|
+
var parseMonthPatterns$1 = {
|
|
1104
|
+
narrow: [/^j/i, /^f/i, /^m/i, /^a/i, /^m/i, /^j/i, /^j/i, /^a/i, /^s/i, /^o/i, /^n/i, /^d/i],
|
|
1105
|
+
any: [/^ja/i, /^f/i, /^mar/i, /^ap/i, /^may/i, /^jun/i, /^jul/i, /^au/i, /^s/i, /^o/i, /^n/i, /^d/i]
|
|
1106
|
+
};
|
|
1107
|
+
var matchDayPatterns$1 = {
|
|
1108
|
+
narrow: /^[smtwf]/i,
|
|
1109
|
+
short: /^(su|mo|tu|we|th|fr|sa)/i,
|
|
1110
|
+
abbreviated: /^(sun|mon|tue|wed|thu|fri|sat)/i,
|
|
1111
|
+
wide: /^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i
|
|
1112
|
+
};
|
|
1113
|
+
var parseDayPatterns$1 = {
|
|
1114
|
+
narrow: [/^s/i, /^m/i, /^t/i, /^w/i, /^t/i, /^f/i, /^s/i],
|
|
1115
|
+
any: [/^su/i, /^m/i, /^tu/i, /^w/i, /^th/i, /^f/i, /^sa/i]
|
|
1116
|
+
};
|
|
1117
|
+
var matchDayPeriodPatterns$1 = {
|
|
1118
|
+
narrow: /^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,
|
|
1119
|
+
any: /^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i
|
|
1120
|
+
};
|
|
1121
|
+
var parseDayPeriodPatterns$1 = {
|
|
1122
|
+
any: {
|
|
1123
|
+
am: /^a/i,
|
|
1124
|
+
pm: /^p/i,
|
|
1125
|
+
midnight: /^mi/i,
|
|
1126
|
+
noon: /^no/i,
|
|
1127
|
+
morning: /morning/i,
|
|
1128
|
+
afternoon: /afternoon/i,
|
|
1129
|
+
evening: /evening/i,
|
|
1130
|
+
night: /night/i
|
|
1131
|
+
}
|
|
1132
|
+
};
|
|
1133
|
+
var match$1 = {
|
|
1134
|
+
ordinalNumber: buildMatchPatternFn({
|
|
1135
|
+
matchPattern: matchOrdinalNumberPattern$1,
|
|
1136
|
+
parsePattern: parseOrdinalNumberPattern$1,
|
|
1137
|
+
valueCallback: function valueCallback(value) {
|
|
1138
|
+
return parseInt(value, 10);
|
|
1139
|
+
}
|
|
1140
|
+
}),
|
|
1141
|
+
era: buildMatchFn({
|
|
1142
|
+
matchPatterns: matchEraPatterns$1,
|
|
1143
|
+
defaultMatchWidth: 'wide',
|
|
1144
|
+
parsePatterns: parseEraPatterns$1,
|
|
1145
|
+
defaultParseWidth: 'any'
|
|
1146
|
+
}),
|
|
1147
|
+
quarter: buildMatchFn({
|
|
1148
|
+
matchPatterns: matchQuarterPatterns$1,
|
|
1149
|
+
defaultMatchWidth: 'wide',
|
|
1150
|
+
parsePatterns: parseQuarterPatterns$1,
|
|
1151
|
+
defaultParseWidth: 'any',
|
|
1152
|
+
valueCallback: function valueCallback(index) {
|
|
1153
|
+
return index + 1;
|
|
1154
|
+
}
|
|
1155
|
+
}),
|
|
1156
|
+
month: buildMatchFn({
|
|
1157
|
+
matchPatterns: matchMonthPatterns$1,
|
|
1158
|
+
defaultMatchWidth: 'wide',
|
|
1159
|
+
parsePatterns: parseMonthPatterns$1,
|
|
1160
|
+
defaultParseWidth: 'any'
|
|
1161
|
+
}),
|
|
1162
|
+
day: buildMatchFn({
|
|
1163
|
+
matchPatterns: matchDayPatterns$1,
|
|
1164
|
+
defaultMatchWidth: 'wide',
|
|
1165
|
+
parsePatterns: parseDayPatterns$1,
|
|
1166
|
+
defaultParseWidth: 'any'
|
|
1167
|
+
}),
|
|
1168
|
+
dayPeriod: buildMatchFn({
|
|
1169
|
+
matchPatterns: matchDayPeriodPatterns$1,
|
|
1170
|
+
defaultMatchWidth: 'any',
|
|
1171
|
+
parsePatterns: parseDayPeriodPatterns$1,
|
|
1172
|
+
defaultParseWidth: 'any'
|
|
1173
|
+
})
|
|
1174
|
+
};
|
|
1175
|
+
|
|
1176
|
+
var dateFormats$1 = {
|
|
1177
|
+
full: 'EEEE, d MMMM yyyy',
|
|
1178
|
+
long: 'd MMMM yyyy',
|
|
1179
|
+
medium: 'd MMM yyyy',
|
|
1180
|
+
short: 'dd/MM/yyyy'
|
|
1181
|
+
};
|
|
1182
|
+
var timeFormats$1 = {
|
|
1183
|
+
full: 'HH:mm:ss zzzz',
|
|
1184
|
+
long: 'HH:mm:ss z',
|
|
1185
|
+
medium: 'HH:mm:ss',
|
|
1186
|
+
short: 'HH:mm'
|
|
1187
|
+
};
|
|
1188
|
+
var dateTimeFormats$1 = {
|
|
1189
|
+
full: "{{date}} 'at' {{time}}",
|
|
1190
|
+
long: "{{date}} 'at' {{time}}",
|
|
1191
|
+
medium: '{{date}}, {{time}}',
|
|
1192
|
+
short: '{{date}}, {{time}}'
|
|
1193
|
+
};
|
|
1194
|
+
var formatLong$1 = {
|
|
1195
|
+
date: buildFormatLongFn({
|
|
1196
|
+
formats: dateFormats$1,
|
|
1197
|
+
defaultWidth: 'full'
|
|
1198
|
+
}),
|
|
1199
|
+
time: buildFormatLongFn({
|
|
1200
|
+
formats: timeFormats$1,
|
|
1201
|
+
defaultWidth: 'full'
|
|
1202
|
+
}),
|
|
1203
|
+
dateTime: buildFormatLongFn({
|
|
1204
|
+
formats: dateTimeFormats$1,
|
|
1205
|
+
defaultWidth: 'full'
|
|
1206
|
+
})
|
|
1207
|
+
};
|
|
1208
|
+
|
|
1209
|
+
/**
|
|
1210
|
+
* @type {Locale}
|
|
1211
|
+
* @category Locales
|
|
1212
|
+
* @summary English locale (United Kingdom).
|
|
1213
|
+
* @language English
|
|
1214
|
+
* @iso-639-2 eng
|
|
1215
|
+
* @author Alex [@glintik]{@link https://github.com/glintik}
|
|
1216
|
+
*/
|
|
1217
|
+
var locale$1 = {
|
|
1218
|
+
code: 'en-GB',
|
|
1219
|
+
formatDistance: formatDistance$1,
|
|
1220
|
+
formatLong: formatLong$1,
|
|
1221
|
+
formatRelative: formatRelative$1,
|
|
1222
|
+
localize: localize$1,
|
|
1223
|
+
match: match$1,
|
|
1224
|
+
options: {
|
|
1225
|
+
weekStartsOn: 1 /* Monday */,
|
|
1226
|
+
firstWeekContainsDate: 4
|
|
1227
|
+
}
|
|
1228
|
+
};
|
|
1229
|
+
|
|
1230
|
+
function declension(scheme, count) {
|
|
1231
|
+
// scheme for count=1 exists
|
|
1232
|
+
if (scheme.one !== undefined && count === 1) {
|
|
1233
|
+
return scheme.one;
|
|
1234
|
+
}
|
|
1235
|
+
var rem10 = count % 10;
|
|
1236
|
+
var rem100 = count % 100;
|
|
1237
|
+
|
|
1238
|
+
// 1, 21, 31, ...
|
|
1239
|
+
if (rem10 === 1 && rem100 !== 11) {
|
|
1240
|
+
return scheme.singularNominative.replace('{{count}}', String(count));
|
|
1241
|
+
|
|
1242
|
+
// 2, 3, 4, 22, 23, 24, 32 ...
|
|
1243
|
+
} else if (rem10 >= 2 && rem10 <= 4 && (rem100 < 10 || rem100 > 20)) {
|
|
1244
|
+
return scheme.singularGenitive.replace('{{count}}', String(count));
|
|
1245
|
+
|
|
1246
|
+
// 5, 6, 7, 8, 9, 10, 11, ...
|
|
1247
|
+
} else {
|
|
1248
|
+
return scheme.pluralGenitive.replace('{{count}}', String(count));
|
|
1249
|
+
}
|
|
1250
|
+
}
|
|
1251
|
+
function buildLocalizeTokenFn(scheme) {
|
|
1252
|
+
return function (count, options) {
|
|
1253
|
+
if (options !== null && options !== void 0 && options.addSuffix) {
|
|
1254
|
+
if (options.comparison && options.comparison > 0) {
|
|
1255
|
+
if (scheme.future) {
|
|
1256
|
+
return declension(scheme.future, count);
|
|
1257
|
+
} else {
|
|
1258
|
+
return 'через ' + declension(scheme.regular, count);
|
|
1259
|
+
}
|
|
1260
|
+
} else {
|
|
1261
|
+
if (scheme.past) {
|
|
1262
|
+
return declension(scheme.past, count);
|
|
1263
|
+
} else {
|
|
1264
|
+
return declension(scheme.regular, count) + ' назад';
|
|
1265
|
+
}
|
|
1266
|
+
}
|
|
1267
|
+
} else {
|
|
1268
|
+
return declension(scheme.regular, count);
|
|
1269
|
+
}
|
|
1270
|
+
};
|
|
1271
|
+
}
|
|
1272
|
+
var formatDistanceLocale = {
|
|
1273
|
+
lessThanXSeconds: buildLocalizeTokenFn({
|
|
1274
|
+
regular: {
|
|
1275
|
+
one: 'меньше секунды',
|
|
1276
|
+
singularNominative: 'меньше {{count}} секунды',
|
|
1277
|
+
singularGenitive: 'меньше {{count}} секунд',
|
|
1278
|
+
pluralGenitive: 'меньше {{count}} секунд'
|
|
1279
|
+
},
|
|
1280
|
+
future: {
|
|
1281
|
+
one: 'меньше, чем через секунду',
|
|
1282
|
+
singularNominative: 'меньше, чем через {{count}} секунду',
|
|
1283
|
+
singularGenitive: 'меньше, чем через {{count}} секунды',
|
|
1284
|
+
pluralGenitive: 'меньше, чем через {{count}} секунд'
|
|
1285
|
+
}
|
|
1286
|
+
}),
|
|
1287
|
+
xSeconds: buildLocalizeTokenFn({
|
|
1288
|
+
regular: {
|
|
1289
|
+
singularNominative: '{{count}} секунда',
|
|
1290
|
+
singularGenitive: '{{count}} секунды',
|
|
1291
|
+
pluralGenitive: '{{count}} секунд'
|
|
1292
|
+
},
|
|
1293
|
+
past: {
|
|
1294
|
+
singularNominative: '{{count}} секунду назад',
|
|
1295
|
+
singularGenitive: '{{count}} секунды назад',
|
|
1296
|
+
pluralGenitive: '{{count}} секунд назад'
|
|
1297
|
+
},
|
|
1298
|
+
future: {
|
|
1299
|
+
singularNominative: 'через {{count}} секунду',
|
|
1300
|
+
singularGenitive: 'через {{count}} секунды',
|
|
1301
|
+
pluralGenitive: 'через {{count}} секунд'
|
|
1302
|
+
}
|
|
1303
|
+
}),
|
|
1304
|
+
halfAMinute: function halfAMinute(_count, options) {
|
|
1305
|
+
if (options !== null && options !== void 0 && options.addSuffix) {
|
|
1306
|
+
if (options.comparison && options.comparison > 0) {
|
|
1307
|
+
return 'через полминуты';
|
|
1308
|
+
} else {
|
|
1309
|
+
return 'полминуты назад';
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1312
|
+
return 'полминуты';
|
|
1313
|
+
},
|
|
1314
|
+
lessThanXMinutes: buildLocalizeTokenFn({
|
|
1315
|
+
regular: {
|
|
1316
|
+
one: 'меньше минуты',
|
|
1317
|
+
singularNominative: 'меньше {{count}} минуты',
|
|
1318
|
+
singularGenitive: 'меньше {{count}} минут',
|
|
1319
|
+
pluralGenitive: 'меньше {{count}} минут'
|
|
1320
|
+
},
|
|
1321
|
+
future: {
|
|
1322
|
+
one: 'меньше, чем через минуту',
|
|
1323
|
+
singularNominative: 'меньше, чем через {{count}} минуту',
|
|
1324
|
+
singularGenitive: 'меньше, чем через {{count}} минуты',
|
|
1325
|
+
pluralGenitive: 'меньше, чем через {{count}} минут'
|
|
1326
|
+
}
|
|
1327
|
+
}),
|
|
1328
|
+
xMinutes: buildLocalizeTokenFn({
|
|
1329
|
+
regular: {
|
|
1330
|
+
singularNominative: '{{count}} минута',
|
|
1331
|
+
singularGenitive: '{{count}} минуты',
|
|
1332
|
+
pluralGenitive: '{{count}} минут'
|
|
1333
|
+
},
|
|
1334
|
+
past: {
|
|
1335
|
+
singularNominative: '{{count}} минуту назад',
|
|
1336
|
+
singularGenitive: '{{count}} минуты назад',
|
|
1337
|
+
pluralGenitive: '{{count}} минут назад'
|
|
1338
|
+
},
|
|
1339
|
+
future: {
|
|
1340
|
+
singularNominative: 'через {{count}} минуту',
|
|
1341
|
+
singularGenitive: 'через {{count}} минуты',
|
|
1342
|
+
pluralGenitive: 'через {{count}} минут'
|
|
1343
|
+
}
|
|
1344
|
+
}),
|
|
1345
|
+
aboutXHours: buildLocalizeTokenFn({
|
|
1346
|
+
regular: {
|
|
1347
|
+
singularNominative: 'около {{count}} часа',
|
|
1348
|
+
singularGenitive: 'около {{count}} часов',
|
|
1349
|
+
pluralGenitive: 'около {{count}} часов'
|
|
1350
|
+
},
|
|
1351
|
+
future: {
|
|
1352
|
+
singularNominative: 'приблизительно через {{count}} час',
|
|
1353
|
+
singularGenitive: 'приблизительно через {{count}} часа',
|
|
1354
|
+
pluralGenitive: 'приблизительно через {{count}} часов'
|
|
1355
|
+
}
|
|
1356
|
+
}),
|
|
1357
|
+
xHours: buildLocalizeTokenFn({
|
|
1358
|
+
regular: {
|
|
1359
|
+
singularNominative: '{{count}} час',
|
|
1360
|
+
singularGenitive: '{{count}} часа',
|
|
1361
|
+
pluralGenitive: '{{count}} часов'
|
|
1362
|
+
}
|
|
1363
|
+
}),
|
|
1364
|
+
xDays: buildLocalizeTokenFn({
|
|
1365
|
+
regular: {
|
|
1366
|
+
singularNominative: '{{count}} день',
|
|
1367
|
+
singularGenitive: '{{count}} дня',
|
|
1368
|
+
pluralGenitive: '{{count}} дней'
|
|
1369
|
+
}
|
|
1370
|
+
}),
|
|
1371
|
+
aboutXWeeks: buildLocalizeTokenFn({
|
|
1372
|
+
regular: {
|
|
1373
|
+
singularNominative: 'около {{count}} недели',
|
|
1374
|
+
singularGenitive: 'около {{count}} недель',
|
|
1375
|
+
pluralGenitive: 'около {{count}} недель'
|
|
1376
|
+
},
|
|
1377
|
+
future: {
|
|
1378
|
+
singularNominative: 'приблизительно через {{count}} неделю',
|
|
1379
|
+
singularGenitive: 'приблизительно через {{count}} недели',
|
|
1380
|
+
pluralGenitive: 'приблизительно через {{count}} недель'
|
|
1381
|
+
}
|
|
1382
|
+
}),
|
|
1383
|
+
xWeeks: buildLocalizeTokenFn({
|
|
1384
|
+
regular: {
|
|
1385
|
+
singularNominative: '{{count}} неделя',
|
|
1386
|
+
singularGenitive: '{{count}} недели',
|
|
1387
|
+
pluralGenitive: '{{count}} недель'
|
|
1388
|
+
}
|
|
1389
|
+
}),
|
|
1390
|
+
aboutXMonths: buildLocalizeTokenFn({
|
|
1391
|
+
regular: {
|
|
1392
|
+
singularNominative: 'около {{count}} месяца',
|
|
1393
|
+
singularGenitive: 'около {{count}} месяцев',
|
|
1394
|
+
pluralGenitive: 'около {{count}} месяцев'
|
|
1395
|
+
},
|
|
1396
|
+
future: {
|
|
1397
|
+
singularNominative: 'приблизительно через {{count}} месяц',
|
|
1398
|
+
singularGenitive: 'приблизительно через {{count}} месяца',
|
|
1399
|
+
pluralGenitive: 'приблизительно через {{count}} месяцев'
|
|
1400
|
+
}
|
|
1401
|
+
}),
|
|
1402
|
+
xMonths: buildLocalizeTokenFn({
|
|
1403
|
+
regular: {
|
|
1404
|
+
singularNominative: '{{count}} месяц',
|
|
1405
|
+
singularGenitive: '{{count}} месяца',
|
|
1406
|
+
pluralGenitive: '{{count}} месяцев'
|
|
1407
|
+
}
|
|
1408
|
+
}),
|
|
1409
|
+
aboutXYears: buildLocalizeTokenFn({
|
|
1410
|
+
regular: {
|
|
1411
|
+
singularNominative: 'около {{count}} года',
|
|
1412
|
+
singularGenitive: 'около {{count}} лет',
|
|
1413
|
+
pluralGenitive: 'около {{count}} лет'
|
|
1414
|
+
},
|
|
1415
|
+
future: {
|
|
1416
|
+
singularNominative: 'приблизительно через {{count}} год',
|
|
1417
|
+
singularGenitive: 'приблизительно через {{count}} года',
|
|
1418
|
+
pluralGenitive: 'приблизительно через {{count}} лет'
|
|
1419
|
+
}
|
|
1420
|
+
}),
|
|
1421
|
+
xYears: buildLocalizeTokenFn({
|
|
1422
|
+
regular: {
|
|
1423
|
+
singularNominative: '{{count}} год',
|
|
1424
|
+
singularGenitive: '{{count}} года',
|
|
1425
|
+
pluralGenitive: '{{count}} лет'
|
|
1426
|
+
}
|
|
1427
|
+
}),
|
|
1428
|
+
overXYears: buildLocalizeTokenFn({
|
|
1429
|
+
regular: {
|
|
1430
|
+
singularNominative: 'больше {{count}} года',
|
|
1431
|
+
singularGenitive: 'больше {{count}} лет',
|
|
1432
|
+
pluralGenitive: 'больше {{count}} лет'
|
|
1433
|
+
},
|
|
1434
|
+
future: {
|
|
1435
|
+
singularNominative: 'больше, чем через {{count}} год',
|
|
1436
|
+
singularGenitive: 'больше, чем через {{count}} года',
|
|
1437
|
+
pluralGenitive: 'больше, чем через {{count}} лет'
|
|
1438
|
+
}
|
|
1439
|
+
}),
|
|
1440
|
+
almostXYears: buildLocalizeTokenFn({
|
|
1441
|
+
regular: {
|
|
1442
|
+
singularNominative: 'почти {{count}} год',
|
|
1443
|
+
singularGenitive: 'почти {{count}} года',
|
|
1444
|
+
pluralGenitive: 'почти {{count}} лет'
|
|
1445
|
+
},
|
|
1446
|
+
future: {
|
|
1447
|
+
singularNominative: 'почти через {{count}} год',
|
|
1448
|
+
singularGenitive: 'почти через {{count}} года',
|
|
1449
|
+
pluralGenitive: 'почти через {{count}} лет'
|
|
1450
|
+
}
|
|
1451
|
+
})
|
|
1452
|
+
};
|
|
1453
|
+
var formatDistance = function formatDistance(token, count, options) {
|
|
1454
|
+
return formatDistanceLocale[token](count, options);
|
|
1455
|
+
};
|
|
1456
|
+
|
|
1457
|
+
var dateFormats = {
|
|
1458
|
+
full: "EEEE, d MMMM y 'г.'",
|
|
1459
|
+
long: "d MMMM y 'г.'",
|
|
1460
|
+
medium: "d MMM y 'г.'",
|
|
1461
|
+
short: 'dd.MM.y'
|
|
1462
|
+
};
|
|
1463
|
+
var timeFormats = {
|
|
1464
|
+
full: 'H:mm:ss zzzz',
|
|
1465
|
+
long: 'H:mm:ss z',
|
|
1466
|
+
medium: 'H:mm:ss',
|
|
1467
|
+
short: 'H:mm'
|
|
1468
|
+
};
|
|
1469
|
+
var dateTimeFormats = {
|
|
1470
|
+
any: '{{date}}, {{time}}'
|
|
1471
|
+
};
|
|
1472
|
+
var formatLong = {
|
|
1473
|
+
date: buildFormatLongFn({
|
|
1474
|
+
formats: dateFormats,
|
|
1475
|
+
defaultWidth: 'full'
|
|
1476
|
+
}),
|
|
1477
|
+
time: buildFormatLongFn({
|
|
1478
|
+
formats: timeFormats,
|
|
1479
|
+
defaultWidth: 'full'
|
|
1480
|
+
}),
|
|
1481
|
+
dateTime: buildFormatLongFn({
|
|
1482
|
+
formats: dateTimeFormats,
|
|
1483
|
+
defaultWidth: 'any'
|
|
1484
|
+
})
|
|
1485
|
+
};
|
|
1486
|
+
|
|
1487
|
+
function requiredArgs(required, args) {
|
|
1488
|
+
if (args.length < required) {
|
|
1489
|
+
throw new TypeError(required + ' argument' + (required > 1 ? 's' : '') + ' required, but only ' + args.length + ' present');
|
|
1490
|
+
}
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
/**
|
|
1494
|
+
* @name toDate
|
|
1495
|
+
* @category Common Helpers
|
|
1496
|
+
* @summary Convert the given argument to an instance of Date.
|
|
1497
|
+
*
|
|
1498
|
+
* @description
|
|
1499
|
+
* Convert the given argument to an instance of Date.
|
|
1500
|
+
*
|
|
1501
|
+
* If the argument is an instance of Date, the function returns its clone.
|
|
1502
|
+
*
|
|
1503
|
+
* If the argument is a number, it is treated as a timestamp.
|
|
1504
|
+
*
|
|
1505
|
+
* If the argument is none of the above, the function returns Invalid Date.
|
|
1506
|
+
*
|
|
1507
|
+
* **Note**: *all* Date arguments passed to any *date-fns* function is processed by `toDate`.
|
|
1508
|
+
*
|
|
1509
|
+
* @param {Date|Number} argument - the value to convert
|
|
1510
|
+
* @returns {Date} the parsed date in the local time zone
|
|
1511
|
+
* @throws {TypeError} 1 argument required
|
|
1512
|
+
*
|
|
1513
|
+
* @example
|
|
1514
|
+
* // Clone the date:
|
|
1515
|
+
* const result = toDate(new Date(2014, 1, 11, 11, 30, 30))
|
|
1516
|
+
* //=> Tue Feb 11 2014 11:30:30
|
|
1517
|
+
*
|
|
1518
|
+
* @example
|
|
1519
|
+
* // Convert the timestamp to date:
|
|
1520
|
+
* const result = toDate(1392098430000)
|
|
1521
|
+
* //=> Tue Feb 11 2014 11:30:30
|
|
1522
|
+
*/
|
|
1523
|
+
function toDate(argument) {
|
|
1524
|
+
requiredArgs(1, arguments);
|
|
1525
|
+
var argStr = Object.prototype.toString.call(argument);
|
|
1526
|
+
|
|
1527
|
+
// Clone the date
|
|
1528
|
+
if (argument instanceof Date || _typeof$1(argument) === 'object' && argStr === '[object Date]') {
|
|
1529
|
+
// Prevent the date to lose the milliseconds when passed to new Date() in IE10
|
|
1530
|
+
return new Date(argument.getTime());
|
|
1531
|
+
} else if (typeof argument === 'number' || argStr === '[object Number]') {
|
|
1532
|
+
return new Date(argument);
|
|
1533
|
+
} else {
|
|
1534
|
+
if ((typeof argument === 'string' || argStr === '[object String]') && typeof console !== 'undefined') {
|
|
1535
|
+
// eslint-disable-next-line no-console
|
|
1536
|
+
console.warn("Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments");
|
|
1537
|
+
// eslint-disable-next-line no-console
|
|
1538
|
+
console.warn(new Error().stack);
|
|
1539
|
+
}
|
|
1540
|
+
return new Date(NaN);
|
|
1541
|
+
}
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
function toInteger(dirtyNumber) {
|
|
1545
|
+
if (dirtyNumber === null || dirtyNumber === true || dirtyNumber === false) {
|
|
1546
|
+
return NaN;
|
|
1547
|
+
}
|
|
1548
|
+
var number = Number(dirtyNumber);
|
|
1549
|
+
if (isNaN(number)) {
|
|
1550
|
+
return number;
|
|
1551
|
+
}
|
|
1552
|
+
return number < 0 ? Math.ceil(number) : Math.floor(number);
|
|
1553
|
+
}
|
|
1554
|
+
|
|
1555
|
+
var defaultOptions = {};
|
|
1556
|
+
function getDefaultOptions() {
|
|
1557
|
+
return defaultOptions;
|
|
1558
|
+
}
|
|
1559
|
+
|
|
1560
|
+
function startOfUTCWeek(dirtyDate, options) {
|
|
1561
|
+
var _ref, _ref2, _ref3, _options$weekStartsOn, _options$locale, _options$locale$optio, _defaultOptions$local, _defaultOptions$local2;
|
|
1562
|
+
requiredArgs(1, arguments);
|
|
1563
|
+
var defaultOptions = getDefaultOptions();
|
|
1564
|
+
var weekStartsOn = toInteger((_ref = (_ref2 = (_ref3 = (_options$weekStartsOn = options === null || options === void 0 ? void 0 : options.weekStartsOn) !== null && _options$weekStartsOn !== void 0 ? _options$weekStartsOn : options === null || options === void 0 ? void 0 : (_options$locale = options.locale) === null || _options$locale === void 0 ? void 0 : (_options$locale$optio = _options$locale.options) === null || _options$locale$optio === void 0 ? void 0 : _options$locale$optio.weekStartsOn) !== null && _ref3 !== void 0 ? _ref3 : defaultOptions.weekStartsOn) !== null && _ref2 !== void 0 ? _ref2 : (_defaultOptions$local = defaultOptions.locale) === null || _defaultOptions$local === void 0 ? void 0 : (_defaultOptions$local2 = _defaultOptions$local.options) === null || _defaultOptions$local2 === void 0 ? void 0 : _defaultOptions$local2.weekStartsOn) !== null && _ref !== void 0 ? _ref : 0);
|
|
1565
|
+
|
|
1566
|
+
// Test if weekStartsOn is between 0 and 6 _and_ is not NaN
|
|
1567
|
+
if (!(weekStartsOn >= 0 && weekStartsOn <= 6)) {
|
|
1568
|
+
throw new RangeError('weekStartsOn must be between 0 and 6 inclusively');
|
|
1569
|
+
}
|
|
1570
|
+
var date = toDate(dirtyDate);
|
|
1571
|
+
var day = date.getUTCDay();
|
|
1572
|
+
var diff = (day < weekStartsOn ? 7 : 0) + day - weekStartsOn;
|
|
1573
|
+
date.setUTCDate(date.getUTCDate() - diff);
|
|
1574
|
+
date.setUTCHours(0, 0, 0, 0);
|
|
1575
|
+
return date;
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
function isSameUTCWeek(dirtyDateLeft, dirtyDateRight, options) {
|
|
1579
|
+
requiredArgs(2, arguments);
|
|
1580
|
+
var dateLeftStartOfWeek = startOfUTCWeek(dirtyDateLeft, options);
|
|
1581
|
+
var dateRightStartOfWeek = startOfUTCWeek(dirtyDateRight, options);
|
|
1582
|
+
return dateLeftStartOfWeek.getTime() === dateRightStartOfWeek.getTime();
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
var accusativeWeekdays = ['воскресенье', 'понедельник', 'вторник', 'среду', 'четверг', 'пятницу', 'субботу'];
|
|
1586
|
+
function _lastWeek(day) {
|
|
1587
|
+
var weekday = accusativeWeekdays[day];
|
|
1588
|
+
switch (day) {
|
|
1589
|
+
case 0:
|
|
1590
|
+
return "'в прошлое " + weekday + " в' p";
|
|
1591
|
+
case 1:
|
|
1592
|
+
case 2:
|
|
1593
|
+
case 4:
|
|
1594
|
+
return "'в прошлый " + weekday + " в' p";
|
|
1595
|
+
case 3:
|
|
1596
|
+
case 5:
|
|
1597
|
+
case 6:
|
|
1598
|
+
return "'в прошлую " + weekday + " в' p";
|
|
1599
|
+
}
|
|
1600
|
+
}
|
|
1601
|
+
function thisWeek(day) {
|
|
1602
|
+
var weekday = accusativeWeekdays[day];
|
|
1603
|
+
if (day === 2 /* Tue */) {
|
|
1604
|
+
return "'во " + weekday + " в' p";
|
|
1605
|
+
} else {
|
|
1606
|
+
return "'в " + weekday + " в' p";
|
|
1607
|
+
}
|
|
1608
|
+
}
|
|
1609
|
+
function _nextWeek(day) {
|
|
1610
|
+
var weekday = accusativeWeekdays[day];
|
|
1611
|
+
switch (day) {
|
|
1612
|
+
case 0:
|
|
1613
|
+
return "'в следующее " + weekday + " в' p";
|
|
1614
|
+
case 1:
|
|
1615
|
+
case 2:
|
|
1616
|
+
case 4:
|
|
1617
|
+
return "'в следующий " + weekday + " в' p";
|
|
1618
|
+
case 3:
|
|
1619
|
+
case 5:
|
|
1620
|
+
case 6:
|
|
1621
|
+
return "'в следующую " + weekday + " в' p";
|
|
1622
|
+
}
|
|
1623
|
+
}
|
|
1624
|
+
var formatRelativeLocale = {
|
|
1625
|
+
lastWeek: function lastWeek(date, baseDate, options) {
|
|
1626
|
+
var day = date.getUTCDay();
|
|
1627
|
+
if (isSameUTCWeek(date, baseDate, options)) {
|
|
1628
|
+
return thisWeek(day);
|
|
1629
|
+
} else {
|
|
1630
|
+
return _lastWeek(day);
|
|
1631
|
+
}
|
|
1632
|
+
},
|
|
1633
|
+
yesterday: "'вчера в' p",
|
|
1634
|
+
today: "'сегодня в' p",
|
|
1635
|
+
tomorrow: "'завтра в' p",
|
|
1636
|
+
nextWeek: function nextWeek(date, baseDate, options) {
|
|
1637
|
+
var day = date.getUTCDay();
|
|
1638
|
+
if (isSameUTCWeek(date, baseDate, options)) {
|
|
1639
|
+
return thisWeek(day);
|
|
1640
|
+
} else {
|
|
1641
|
+
return _nextWeek(day);
|
|
1642
|
+
}
|
|
1643
|
+
},
|
|
1644
|
+
other: 'P'
|
|
1645
|
+
};
|
|
1646
|
+
var formatRelative = function formatRelative(token, date, baseDate, options) {
|
|
1647
|
+
var format = formatRelativeLocale[token];
|
|
1648
|
+
if (typeof format === 'function') {
|
|
1649
|
+
return format(date, baseDate, options);
|
|
1650
|
+
}
|
|
1651
|
+
return format;
|
|
1652
|
+
};
|
|
1653
|
+
|
|
1654
|
+
var eraValues = {
|
|
1655
|
+
narrow: ['до н.э.', 'н.э.'],
|
|
1656
|
+
abbreviated: ['до н. э.', 'н. э.'],
|
|
1657
|
+
wide: ['до нашей эры', 'нашей эры']
|
|
1658
|
+
};
|
|
1659
|
+
var quarterValues = {
|
|
1660
|
+
narrow: ['1', '2', '3', '4'],
|
|
1661
|
+
abbreviated: ['1-й кв.', '2-й кв.', '3-й кв.', '4-й кв.'],
|
|
1662
|
+
wide: ['1-й квартал', '2-й квартал', '3-й квартал', '4-й квартал']
|
|
1663
|
+
};
|
|
1664
|
+
var monthValues = {
|
|
1665
|
+
narrow: ['Я', 'Ф', 'М', 'А', 'М', 'И', 'И', 'А', 'С', 'О', 'Н', 'Д'],
|
|
1666
|
+
abbreviated: ['янв.', 'фев.', 'март', 'апр.', 'май', 'июнь', 'июль', 'авг.', 'сент.', 'окт.', 'нояб.', 'дек.'],
|
|
1667
|
+
wide: ['январь', 'февраль', 'март', 'апрель', 'май', 'июнь', 'июль', 'август', 'сентябрь', 'октябрь', 'ноябрь', 'декабрь']
|
|
1668
|
+
};
|
|
1669
|
+
var formattingMonthValues = {
|
|
1670
|
+
narrow: ['Я', 'Ф', 'М', 'А', 'М', 'И', 'И', 'А', 'С', 'О', 'Н', 'Д'],
|
|
1671
|
+
abbreviated: ['янв.', 'фев.', 'мар.', 'апр.', 'мая', 'июн.', 'июл.', 'авг.', 'сент.', 'окт.', 'нояб.', 'дек.'],
|
|
1672
|
+
wide: ['января', 'февраля', 'марта', 'апреля', 'мая', 'июня', 'июля', 'августа', 'сентября', 'октября', 'ноября', 'декабря']
|
|
1673
|
+
};
|
|
1674
|
+
var dayValues = {
|
|
1675
|
+
narrow: ['В', 'П', 'В', 'С', 'Ч', 'П', 'С'],
|
|
1676
|
+
short: ['вс', 'пн', 'вт', 'ср', 'чт', 'пт', 'сб'],
|
|
1677
|
+
abbreviated: ['вск', 'пнд', 'втр', 'срд', 'чтв', 'птн', 'суб'],
|
|
1678
|
+
wide: ['воскресенье', 'понедельник', 'вторник', 'среда', 'четверг', 'пятница', 'суббота']
|
|
1679
|
+
};
|
|
1680
|
+
var dayPeriodValues = {
|
|
1681
|
+
narrow: {
|
|
1682
|
+
am: 'ДП',
|
|
1683
|
+
pm: 'ПП',
|
|
1684
|
+
midnight: 'полн.',
|
|
1685
|
+
noon: 'полд.',
|
|
1686
|
+
morning: 'утро',
|
|
1687
|
+
afternoon: 'день',
|
|
1688
|
+
evening: 'веч.',
|
|
1689
|
+
night: 'ночь'
|
|
1690
|
+
},
|
|
1691
|
+
abbreviated: {
|
|
1692
|
+
am: 'ДП',
|
|
1693
|
+
pm: 'ПП',
|
|
1694
|
+
midnight: 'полн.',
|
|
1695
|
+
noon: 'полд.',
|
|
1696
|
+
morning: 'утро',
|
|
1697
|
+
afternoon: 'день',
|
|
1698
|
+
evening: 'веч.',
|
|
1699
|
+
night: 'ночь'
|
|
1700
|
+
},
|
|
1701
|
+
wide: {
|
|
1702
|
+
am: 'ДП',
|
|
1703
|
+
pm: 'ПП',
|
|
1704
|
+
midnight: 'полночь',
|
|
1705
|
+
noon: 'полдень',
|
|
1706
|
+
morning: 'утро',
|
|
1707
|
+
afternoon: 'день',
|
|
1708
|
+
evening: 'вечер',
|
|
1709
|
+
night: 'ночь'
|
|
1710
|
+
}
|
|
1711
|
+
};
|
|
1712
|
+
var formattingDayPeriodValues = {
|
|
1713
|
+
narrow: {
|
|
1714
|
+
am: 'ДП',
|
|
1715
|
+
pm: 'ПП',
|
|
1716
|
+
midnight: 'полн.',
|
|
1717
|
+
noon: 'полд.',
|
|
1718
|
+
morning: 'утра',
|
|
1719
|
+
afternoon: 'дня',
|
|
1720
|
+
evening: 'веч.',
|
|
1721
|
+
night: 'ночи'
|
|
1722
|
+
},
|
|
1723
|
+
abbreviated: {
|
|
1724
|
+
am: 'ДП',
|
|
1725
|
+
pm: 'ПП',
|
|
1726
|
+
midnight: 'полн.',
|
|
1727
|
+
noon: 'полд.',
|
|
1728
|
+
morning: 'утра',
|
|
1729
|
+
afternoon: 'дня',
|
|
1730
|
+
evening: 'веч.',
|
|
1731
|
+
night: 'ночи'
|
|
1732
|
+
},
|
|
1733
|
+
wide: {
|
|
1734
|
+
am: 'ДП',
|
|
1735
|
+
pm: 'ПП',
|
|
1736
|
+
midnight: 'полночь',
|
|
1737
|
+
noon: 'полдень',
|
|
1738
|
+
morning: 'утра',
|
|
1739
|
+
afternoon: 'дня',
|
|
1740
|
+
evening: 'вечера',
|
|
1741
|
+
night: 'ночи'
|
|
1742
|
+
}
|
|
1743
|
+
};
|
|
1744
|
+
var ordinalNumber = function ordinalNumber(dirtyNumber, options) {
|
|
1745
|
+
var number = Number(dirtyNumber);
|
|
1746
|
+
var unit = options === null || options === void 0 ? void 0 : options.unit;
|
|
1747
|
+
var suffix;
|
|
1748
|
+
if (unit === 'date') {
|
|
1749
|
+
suffix = '-е';
|
|
1750
|
+
} else if (unit === 'week' || unit === 'minute' || unit === 'second') {
|
|
1751
|
+
suffix = '-я';
|
|
1752
|
+
} else {
|
|
1753
|
+
suffix = '-й';
|
|
1754
|
+
}
|
|
1755
|
+
return number + suffix;
|
|
1756
|
+
};
|
|
1757
|
+
var localize = {
|
|
1758
|
+
ordinalNumber: ordinalNumber,
|
|
1759
|
+
era: buildLocalizeFn({
|
|
1760
|
+
values: eraValues,
|
|
1761
|
+
defaultWidth: 'wide'
|
|
1762
|
+
}),
|
|
1763
|
+
quarter: buildLocalizeFn({
|
|
1764
|
+
values: quarterValues,
|
|
1765
|
+
defaultWidth: 'wide',
|
|
1766
|
+
argumentCallback: function argumentCallback(quarter) {
|
|
1767
|
+
return quarter - 1;
|
|
1768
|
+
}
|
|
1769
|
+
}),
|
|
1770
|
+
month: buildLocalizeFn({
|
|
1771
|
+
values: monthValues,
|
|
1772
|
+
defaultWidth: 'wide',
|
|
1773
|
+
formattingValues: formattingMonthValues,
|
|
1774
|
+
defaultFormattingWidth: 'wide'
|
|
1775
|
+
}),
|
|
1776
|
+
day: buildLocalizeFn({
|
|
1777
|
+
values: dayValues,
|
|
1778
|
+
defaultWidth: 'wide'
|
|
1779
|
+
}),
|
|
1780
|
+
dayPeriod: buildLocalizeFn({
|
|
1781
|
+
values: dayPeriodValues,
|
|
1782
|
+
defaultWidth: 'any',
|
|
1783
|
+
formattingValues: formattingDayPeriodValues,
|
|
1784
|
+
defaultFormattingWidth: 'wide'
|
|
1785
|
+
})
|
|
1786
|
+
};
|
|
1787
|
+
|
|
1788
|
+
var matchOrdinalNumberPattern = /^(\d+)(-?(е|я|й|ое|ье|ая|ья|ый|ой|ий|ый))?/i;
|
|
1789
|
+
var parseOrdinalNumberPattern = /\d+/i;
|
|
1790
|
+
var matchEraPatterns = {
|
|
1791
|
+
narrow: /^((до )?н\.?\s?э\.?)/i,
|
|
1792
|
+
abbreviated: /^((до )?н\.?\s?э\.?)/i,
|
|
1793
|
+
wide: /^(до нашей эры|нашей эры|наша эра)/i
|
|
1794
|
+
};
|
|
1795
|
+
var parseEraPatterns = {
|
|
1796
|
+
any: [/^д/i, /^н/i]
|
|
1797
|
+
};
|
|
1798
|
+
var matchQuarterPatterns = {
|
|
1799
|
+
narrow: /^[1234]/i,
|
|
1800
|
+
abbreviated: /^[1234](-?[ыои]?й?)? кв.?/i,
|
|
1801
|
+
wide: /^[1234](-?[ыои]?й?)? квартал/i
|
|
1802
|
+
};
|
|
1803
|
+
var parseQuarterPatterns = {
|
|
1804
|
+
any: [/1/i, /2/i, /3/i, /4/i]
|
|
1805
|
+
};
|
|
1806
|
+
var matchMonthPatterns = {
|
|
1807
|
+
narrow: /^[яфмаисонд]/i,
|
|
1808
|
+
abbreviated: /^(янв|фев|март?|апр|ма[йя]|июн[ья]?|июл[ья]?|авг|сент?|окт|нояб?|дек)\.?/i,
|
|
1809
|
+
wide: /^(январ[ья]|феврал[ья]|марта?|апрел[ья]|ма[йя]|июн[ья]|июл[ья]|августа?|сентябр[ья]|октябр[ья]|октябр[ья]|ноябр[ья]|декабр[ья])/i
|
|
1810
|
+
};
|
|
1811
|
+
var parseMonthPatterns = {
|
|
1812
|
+
narrow: [/^я/i, /^ф/i, /^м/i, /^а/i, /^м/i, /^и/i, /^и/i, /^а/i, /^с/i, /^о/i, /^н/i, /^я/i],
|
|
1813
|
+
any: [/^я/i, /^ф/i, /^мар/i, /^ап/i, /^ма[йя]/i, /^июн/i, /^июл/i, /^ав/i, /^с/i, /^о/i, /^н/i, /^д/i]
|
|
1814
|
+
};
|
|
1815
|
+
var matchDayPatterns = {
|
|
1816
|
+
narrow: /^[впсч]/i,
|
|
1817
|
+
short: /^(вс|во|пн|по|вт|ср|чт|че|пт|пя|сб|су)\.?/i,
|
|
1818
|
+
abbreviated: /^(вск|вос|пнд|пон|втр|вто|срд|сре|чтв|чет|птн|пят|суб).?/i,
|
|
1819
|
+
wide: /^(воскресень[ея]|понедельника?|вторника?|сред[аы]|четверга?|пятниц[аы]|суббот[аы])/i
|
|
1820
|
+
};
|
|
1821
|
+
var parseDayPatterns = {
|
|
1822
|
+
narrow: [/^в/i, /^п/i, /^в/i, /^с/i, /^ч/i, /^п/i, /^с/i],
|
|
1823
|
+
any: [/^в[ос]/i, /^п[он]/i, /^в/i, /^ср/i, /^ч/i, /^п[ят]/i, /^с[уб]/i]
|
|
1824
|
+
};
|
|
1825
|
+
var matchDayPeriodPatterns = {
|
|
1826
|
+
narrow: /^([дп]п|полн\.?|полд\.?|утр[оа]|день|дня|веч\.?|ноч[ьи])/i,
|
|
1827
|
+
abbreviated: /^([дп]п|полн\.?|полд\.?|утр[оа]|день|дня|веч\.?|ноч[ьи])/i,
|
|
1828
|
+
wide: /^([дп]п|полночь|полдень|утр[оа]|день|дня|вечера?|ноч[ьи])/i
|
|
1829
|
+
};
|
|
1830
|
+
var parseDayPeriodPatterns = {
|
|
1831
|
+
any: {
|
|
1832
|
+
am: /^дп/i,
|
|
1833
|
+
pm: /^пп/i,
|
|
1834
|
+
midnight: /^полн/i,
|
|
1835
|
+
noon: /^полд/i,
|
|
1836
|
+
morning: /^у/i,
|
|
1837
|
+
afternoon: /^д[ен]/i,
|
|
1838
|
+
evening: /^в/i,
|
|
1839
|
+
night: /^н/i
|
|
1840
|
+
}
|
|
1841
|
+
};
|
|
1842
|
+
var match = {
|
|
1843
|
+
ordinalNumber: buildMatchPatternFn({
|
|
1844
|
+
matchPattern: matchOrdinalNumberPattern,
|
|
1845
|
+
parsePattern: parseOrdinalNumberPattern,
|
|
1846
|
+
valueCallback: function valueCallback(value) {
|
|
1847
|
+
return parseInt(value, 10);
|
|
1848
|
+
}
|
|
1849
|
+
}),
|
|
1850
|
+
era: buildMatchFn({
|
|
1851
|
+
matchPatterns: matchEraPatterns,
|
|
1852
|
+
defaultMatchWidth: 'wide',
|
|
1853
|
+
parsePatterns: parseEraPatterns,
|
|
1854
|
+
defaultParseWidth: 'any'
|
|
1855
|
+
}),
|
|
1856
|
+
quarter: buildMatchFn({
|
|
1857
|
+
matchPatterns: matchQuarterPatterns,
|
|
1858
|
+
defaultMatchWidth: 'wide',
|
|
1859
|
+
parsePatterns: parseQuarterPatterns,
|
|
1860
|
+
defaultParseWidth: 'any',
|
|
1861
|
+
valueCallback: function valueCallback(index) {
|
|
1862
|
+
return index + 1;
|
|
1863
|
+
}
|
|
1864
|
+
}),
|
|
1865
|
+
month: buildMatchFn({
|
|
1866
|
+
matchPatterns: matchMonthPatterns,
|
|
1867
|
+
defaultMatchWidth: 'wide',
|
|
1868
|
+
parsePatterns: parseMonthPatterns,
|
|
1869
|
+
defaultParseWidth: 'any'
|
|
1870
|
+
}),
|
|
1871
|
+
day: buildMatchFn({
|
|
1872
|
+
matchPatterns: matchDayPatterns,
|
|
1873
|
+
defaultMatchWidth: 'wide',
|
|
1874
|
+
parsePatterns: parseDayPatterns,
|
|
1875
|
+
defaultParseWidth: 'any'
|
|
1876
|
+
}),
|
|
1877
|
+
dayPeriod: buildMatchFn({
|
|
1878
|
+
matchPatterns: matchDayPeriodPatterns,
|
|
1879
|
+
defaultMatchWidth: 'wide',
|
|
1880
|
+
parsePatterns: parseDayPeriodPatterns,
|
|
1881
|
+
defaultParseWidth: 'any'
|
|
1882
|
+
})
|
|
1883
|
+
};
|
|
1884
|
+
|
|
1885
|
+
/**
|
|
1886
|
+
* @type {Locale}
|
|
1887
|
+
* @category Locales
|
|
1888
|
+
* @summary Russian locale.
|
|
1889
|
+
* @language Russian
|
|
1890
|
+
* @iso-639-2 rus
|
|
1891
|
+
* @author Sasha Koss [@kossnocorp]{@link https://github.com/kossnocorp}
|
|
1892
|
+
* @author Lesha Koss [@leshakoss]{@link https://github.com/leshakoss}
|
|
1893
|
+
*/
|
|
1894
|
+
var locale = {
|
|
1895
|
+
code: 'ru',
|
|
1896
|
+
formatDistance: formatDistance,
|
|
1897
|
+
formatLong: formatLong,
|
|
1898
|
+
formatRelative: formatRelative,
|
|
1899
|
+
localize: localize,
|
|
1900
|
+
match: match,
|
|
1901
|
+
options: {
|
|
1902
|
+
weekStartsOn: 1 /* Monday */,
|
|
1903
|
+
firstWeekContainsDate: 1
|
|
1904
|
+
}
|
|
1905
|
+
};
|
|
1906
|
+
|
|
1907
|
+
var hyAm = {exports: {}};
|
|
1908
|
+
|
|
1909
|
+
(function (module, exports) {
|
|
1910
|
+
!function(_,e){module.exports=e(dayjs);}(commonjsGlobal,(function(_){function e(_){return _&&"object"==typeof _&&"default"in _?_:{default:_}}var t=e(_),d={name:"hy-am",weekdays:"կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ".split("_"),months:"հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի".split("_"),weekStart:1,weekdaysShort:"կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ".split("_"),monthsShort:"հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ".split("_"),weekdaysMin:"կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ".split("_"),ordinal:function(_){return _},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY թ.",LLL:"D MMMM YYYY թ., HH:mm",LLLL:"dddd, D MMMM YYYY թ., HH:mm"},relativeTime:{future:"%s հետո",past:"%s առաջ",s:"մի քանի վայրկյան",m:"րոպե",mm:"%d րոպե",h:"ժամ",hh:"%d ժամ",d:"օր",dd:"%d օր",M:"ամիս",MM:"%d ամիս",y:"տարի",yy:"%d տարի"}};return t.default.locale(d,null,!0),d}));
|
|
1911
|
+
} (hyAm));
|
|
1912
|
+
|
|
1913
|
+
var ru = {exports: {}};
|
|
1914
|
+
|
|
1915
|
+
(function (module, exports) {
|
|
1916
|
+
!function(_,t){module.exports=t(dayjs);}(commonjsGlobal,(function(_){function t(_){return _&&"object"==typeof _&&"default"in _?_:{default:_}}var e=t(_),n="января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_"),s="январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_"),r="янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.".split("_"),o="янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.".split("_"),i=/D[oD]?(\[[^[\]]*\]|\s)+MMMM?/;function d(_,t,e){var n,s;return "m"===e?t?"минута":"минуту":_+" "+(n=+_,s={mm:t?"минута_минуты_минут":"минуту_минуты_минут",hh:"час_часа_часов",dd:"день_дня_дней",MM:"месяц_месяца_месяцев",yy:"год_года_лет"}[e].split("_"),n%10==1&&n%100!=11?s[0]:n%10>=2&&n%10<=4&&(n%100<10||n%100>=20)?s[1]:s[2])}var u=function(_,t){return i.test(t)?n[_.month()]:s[_.month()]};u.s=s,u.f=n;var a=function(_,t){return i.test(t)?r[_.month()]:o[_.month()]};a.s=o,a.f=r;var m={name:"ru",weekdays:"воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"),weekdaysShort:"вск_пнд_втр_срд_чтв_птн_сбт".split("_"),weekdaysMin:"вс_пн_вт_ср_чт_пт_сб".split("_"),months:u,monthsShort:a,weekStart:1,yearStart:4,formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., H:mm",LLLL:"dddd, D MMMM YYYY г., H:mm"},relativeTime:{future:"через %s",past:"%s назад",s:"несколько секунд",m:d,mm:d,h:"час",hh:d,d:"день",dd:d,M:"месяц",MM:d,y:"год",yy:d},ordinal:function(_){return _},meridiem:function(_){return _<4?"ночи":_<12?"утра":_<17?"дня":"вечера"}};return e.default.locale(m,null,!0),m}));
|
|
1917
|
+
} (ru));
|
|
1918
|
+
|
|
1919
|
+
var en = {exports: {}};
|
|
1920
|
+
|
|
1921
|
+
(function (module, exports) {
|
|
1922
|
+
!function(e,n){module.exports=n();}(commonjsGlobal,(function(){return {name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(e){var n=["th","st","nd","rd"],t=e%100;return "["+e+(n[(t-20)%10]||n[t]||n[0])+"]"}}}));
|
|
1923
|
+
} (en));
|
|
1924
|
+
|
|
1925
|
+
registerLocale('hy', locale$2);
|
|
1926
|
+
registerLocale('en', locale$1);
|
|
1927
|
+
registerLocale('ru', locale);
|
|
1928
|
+
function useImportFilesDynamically(dayjsLocale) {
|
|
1929
|
+
var _useState = useState(false),
|
|
1930
|
+
_useState2 = _slicedToArray(_useState, 2);
|
|
1931
|
+
_useState2[0];
|
|
1932
|
+
var setIsFilesLoaded = _useState2[1];
|
|
1933
|
+
useEffect(function () {
|
|
1934
|
+
if (dayjsLocale) {
|
|
1935
|
+
_asyncToGenerator(/*#__PURE__*/regenerator.mark(function _callee() {
|
|
1936
|
+
return regenerator.wrap(function _callee$(_context) {
|
|
1937
|
+
while (1) switch (_context.prev = _context.next) {
|
|
1938
|
+
case 0:
|
|
1939
|
+
setIsFilesLoaded(false);
|
|
1940
|
+
locale$3(dayjsLocale);
|
|
1941
|
+
setTimeout(function () {
|
|
1942
|
+
setIsFilesLoaded(true);
|
|
1943
|
+
}, 0);
|
|
1944
|
+
case 3:
|
|
1945
|
+
case "end":
|
|
1946
|
+
return _context.stop();
|
|
1947
|
+
}
|
|
1948
|
+
}, _callee);
|
|
1949
|
+
}))();
|
|
1950
|
+
}
|
|
1951
|
+
}, [dayjsLocale]);
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1954
|
+
export { useImportFilesDynamically };
|