uikit-react-public 0.11.13
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/LICENSE +9 -0
- package/README.md +3 -0
- package/dist/components/Accordion/Accordion.Heading.d.ts +8 -0
- package/dist/components/Accordion/Accordion.Panel.d.ts +7 -0
- package/dist/components/Accordion/Accordion.d.ts +22 -0
- package/dist/components/Accordion/__tests__/Accordion.test.d.ts +1 -0
- package/dist/components/Accordion/index.d.ts +2 -0
- package/dist/components/Alert/Alert.d.ts +27 -0
- package/dist/components/Alert/Alert.stories.d.ts +146 -0
- package/dist/components/Alert/AlertMessage.d.ts +7 -0
- package/dist/components/Alert/AlertTitle.d.ts +7 -0
- package/dist/components/Alert/__tests__/Alert.test.d.ts +1 -0
- package/dist/components/Alert/index.d.ts +6 -0
- package/dist/components/AppHeader/AppHeader.d.ts +20 -0
- package/dist/components/AppHeader/AppHeader.stories.d.ts +16 -0
- package/dist/components/AppHeader/AppHeaderBottom.d.ts +8 -0
- package/dist/components/AppHeader/AppHeaderNav.d.ts +7 -0
- package/dist/components/AppHeader/AppHeaderTop.d.ts +10 -0
- package/dist/components/AppHeader/__tests__/AppHeader.test.d.ts +1 -0
- package/dist/components/AppHeader/index.d.ts +3 -0
- package/dist/components/AppMenu/AppMenu.context.d.ts +14 -0
- package/dist/components/AppMenu/AppMenu.d.ts +19 -0
- package/dist/components/AppMenu/AppMenu.stories.d.ts +13 -0
- package/dist/components/AppMenu/AppMenuContent.d.ts +7 -0
- package/dist/components/AppMenu/AppMenuDivider.d.ts +7 -0
- package/dist/components/AppMenu/AppMenuItem.d.ts +12 -0
- package/dist/components/AppMenu/AppMenuTrigger.d.ts +7 -0
- package/dist/components/AppMenu/__tests__/AppMenu.test.d.ts +0 -0
- package/dist/components/AppMenu/index.d.ts +2 -0
- package/dist/components/Avatar/Avatar.d.ts +13 -0
- package/dist/components/Avatar/Avatar.stories.d.ts +11 -0
- package/dist/components/Avatar/__tests__/Avatar.test.d.ts +1 -0
- package/dist/components/Avatar/index.d.ts +2 -0
- package/dist/components/Avatar/utils/extractInitials.d.ts +2 -0
- package/dist/components/Avatar/utils/extractInitials.test.d.ts +1 -0
- package/dist/components/Blanket/Blanket.d.ts +8 -0
- package/dist/components/Blanket/Blanket.stories.d.ts +14 -0
- package/dist/components/Blanket/__tests__/Blanket.test.d.ts +0 -0
- package/dist/components/Blanket/index.d.ts +2 -0
- package/dist/components/Breadcrumbs/Breadcrumb.d.ts +8 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.d.ts +9 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.stories.d.ts +15 -0
- package/dist/components/Breadcrumbs/__tests__/Breadcrumbs.test.d.ts +1 -0
- package/dist/components/Breadcrumbs/index.d.ts +2 -0
- package/dist/components/Button/Button.d.ts +4 -0
- package/dist/components/Button/Button.stories.d.ts +257 -0
- package/dist/components/Button/Button.types.d.ts +26 -0
- package/dist/components/Button/__tests__/Button.test.d.ts +1 -0
- package/dist/components/Button/buttonPrimaryStyle.d.ts +4 -0
- package/dist/components/Button/buttonSecondaryStyle.d.ts +4 -0
- package/dist/components/Button/buttonTertiaryStyle.d.ts +4 -0
- package/dist/components/Button/index.d.ts +2 -0
- package/dist/components/Checkbox/Checkbox.d.ts +11 -0
- package/dist/components/Checkbox/Checkbox.stories.d.ts +25 -0
- package/dist/components/Checkbox/LabelledCheckbox.d.ts +14 -0
- package/dist/components/Checkbox/__tests__/Checkbox.test.d.ts +1 -0
- package/dist/components/Checkbox/index.d.ts +4 -0
- package/dist/components/Datepicker/Datepicker.d.ts +12 -0
- package/dist/components/Datepicker/Datepicker.stories.d.ts +35 -0
- package/dist/components/Datepicker/__tests__/Datepicker.test.d.ts +1 -0
- package/dist/components/Datepicker/index.d.ts +2 -0
- package/dist/components/Datepicker/subcomponents/CalendarGrid/CalendarGrid.d.ts +6 -0
- package/dist/components/Datepicker/subcomponents/CalendarGrid/index.d.ts +1 -0
- package/dist/components/Datepicker/subcomponents/CalendarMenu/CalendarMenu.d.ts +8 -0
- package/dist/components/Datepicker/subcomponents/CalendarMenu/index.d.ts +1 -0
- package/dist/components/Datepicker/subcomponents/ColumnHeadings/ColumnHeadings.d.ts +2 -0
- package/dist/components/Datepicker/subcomponents/ColumnHeadings/index.d.ts +1 -0
- package/dist/components/Datepicker/subcomponents/DateField/DateField.d.ts +7 -0
- package/dist/components/Datepicker/subcomponents/DateField/__tests__/DateField.test.d.ts +1 -0
- package/dist/components/Datepicker/subcomponents/DateField/index.d.ts +1 -0
- package/dist/components/Datepicker/subcomponents/Day/Day.d.ts +10 -0
- package/dist/components/Datepicker/subcomponents/Day/Day.stories.d.ts +13 -0
- package/dist/components/Datepicker/subcomponents/Day/index.d.ts +1 -0
- package/dist/components/Datepicker/subcomponents/MonthSelector/MonthSelector.d.ts +6 -0
- package/dist/components/Datepicker/subcomponents/MonthSelector/index.d.ts +1 -0
- package/dist/components/Datepicker/subcomponents/Native/Native.d.ts +9 -0
- package/dist/components/Datepicker/subcomponents/Native/index.d.ts +1 -0
- package/dist/components/Datepicker/subcomponents/index.d.ts +7 -0
- package/dist/components/Datepicker/utils/getDatesForCalendarGrid/getDatesForCalendarGrid.d.ts +20 -0
- package/dist/components/Datepicker/utils/getDatesForCalendarGrid/getDatesForCalendarGrid.test.d.ts +1 -0
- package/dist/components/Datepicker/utils/index.d.ts +2 -0
- package/dist/components/Datepicker/utils/parseDateForDateField/parseDateForDateField.d.ts +20 -0
- package/dist/components/Datepicker/utils/parseDateForDateField/parseDateForDateField.test.d.ts +1 -0
- package/dist/components/Dialog/BaseDialog.d.ts +16 -0
- package/dist/components/Dialog/Dialog.d.ts +23 -0
- package/dist/components/Dialog/Dialog.stories.d.ts +16 -0
- package/dist/components/Dialog/DialogBody.d.ts +7 -0
- package/dist/components/Dialog/DialogFooter.d.ts +12 -0
- package/dist/components/Dialog/DialogHeader.d.ts +11 -0
- package/dist/components/Dialog/index.d.ts +10 -0
- package/dist/components/Divider/Divider.d.ts +9 -0
- package/dist/components/Divider/Divider.stories.d.ts +11 -0
- package/dist/components/Divider/__tests__/Divider.test.d.ts +1 -0
- package/dist/components/Divider/index.d.ts +2 -0
- package/dist/components/FeedbackDialog/FeedbackDialog.d.ts +15 -0
- package/dist/components/FeedbackDialog/FeedbackDialog.stories.d.ts +15 -0
- package/dist/components/FeedbackDialog/index.d.ts +2 -0
- package/dist/components/Field/CharacterCount.d.ts +7 -0
- package/dist/components/Field/ErrorText.d.ts +6 -0
- package/dist/components/Field/Field.d.ts +30 -0
- package/dist/components/Field/Field.stories.d.ts +84 -0
- package/dist/components/Field/HelperText.d.ts +6 -0
- package/dist/components/Field/__tests__/Field.test.d.ts +1 -0
- package/dist/components/Field/index.d.ts +6 -0
- package/dist/components/Footer/Footer.d.ts +20 -0
- package/dist/components/Footer/Footer.stories.d.ts +14 -0
- package/dist/components/Footer/FooterColumn.d.ts +8 -0
- package/dist/components/Footer/FooterNavLink.d.ts +8 -0
- package/dist/components/Footer/SocialLink.d.ts +8 -0
- package/dist/components/Footer/__tests__/Footer.test.d.ts +1 -0
- package/dist/components/Footer/index.d.ts +2 -0
- package/dist/components/Header/Header.d.ts +16 -0
- package/dist/components/Header/HeaderMenu.d.ts +7 -0
- package/dist/components/Header/__tests__/Header.test.d.ts +1 -0
- package/dist/components/Header/index.d.ts +3 -0
- package/dist/components/HeaderDraft/HeaderBottomBreadcrumbs.d.ts +7 -0
- package/dist/components/HeaderDraft/HeaderBottomHeadingAndAvatar.d.ts +16 -0
- package/dist/components/HeaderDraft/HeaderBreadcrumb.d.ts +8 -0
- package/dist/components/HeaderDraft/HeaderDraft.d.ts +26 -0
- package/dist/components/HeaderDraft/HeaderMenu.d.ts +7 -0
- package/dist/components/HeaderDraft/__tests__/Header.test.d.ts +1 -0
- package/dist/components/HeaderDraft/index.d.ts +4 -0
- package/dist/components/Heading/Heading.d.ts +12 -0
- package/dist/components/Heading/Heading.stories.d.ts +18 -0
- package/dist/components/Heading/__tests__/Heading.test.d.ts +1 -0
- package/dist/components/Heading/index.d.ts +2 -0
- package/dist/components/Icon/BaseIcon.d.ts +13 -0
- package/dist/components/Icon/Icon.d.ts +16 -0
- package/dist/components/Icon/Icon.stories.d.ts +5 -0
- package/dist/components/Icon/__tests__/Icon.test.d.ts +1 -0
- package/dist/components/Icon/index.d.ts +2 -0
- package/dist/components/Icon/svgImports.d.ts +882 -0
- package/dist/components/Icon/svgs/ActivitySvg.d.ts +4 -0
- package/dist/components/Icon/svgs/AirplaySvg.d.ts +4 -0
- package/dist/components/Icon/svgs/AlertCircleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/AlertOctagonSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/AlertTriangleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/AlignCenterSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/AlignJustifySvg.d.ts +4 -0
- package/dist/components/Icon/svgs/AlignLeftSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/AlignRightSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/AnchorSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ApertureSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ArchiveSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ArrowDownCircleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ArrowDownLeftSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ArrowDownRightSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ArrowDownSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ArrowLeftCircleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ArrowLeftSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ArrowRightCircleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ArrowRightSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ArrowUpCircleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ArrowUpLeftSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ArrowUpRightSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ArrowUpSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/AtSignSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/AvatarSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/AwardSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/BarChart2Svg.d.ts +4 -0
- package/dist/components/Icon/svgs/BarChartSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/BatteryChargingSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/BatterySvg.d.ts +4 -0
- package/dist/components/Icon/svgs/BellOffSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/BellSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/BluetoothSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/BoldSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/BookOpenSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/BookSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/BookmarkSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/BoxSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/BriefcaseSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CalendarSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CameraOffSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CameraSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CastSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CheckCircleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CheckSquareSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CheckSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ChevronDownSvg.d.ts +5 -0
- package/dist/components/Icon/svgs/ChevronLeftSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ChevronRightSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ChevronUpSvg.d.ts +5 -0
- package/dist/components/Icon/svgs/ChevronsDownSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ChevronsLeftSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ChevronsRightSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ChevronsUpSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ChromeSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CircleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ClipboardSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ClockSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CloudDrizzleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CloudLightningSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CloudOffSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CloudRainSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CloudSnowSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CloudSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CodeSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CodepenSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CodesandboxSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CoffeeSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ColumnsSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CommandSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CompassSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CopySvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CornerDownLeftSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CornerDownRightSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CornerLeftDownSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CornerLeftUpSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CornerRightDownSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CornerRightUpSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CornerUpLeftSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CornerUpRightSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CpuSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CreditCardSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CropSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/CrosshairSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/DatabaseSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/DeleteSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/DiscSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/DivideCircleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/DivideSquareSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/DivideSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/DollarSignSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/DownloadCloudSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/DownloadSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/DribbbleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/DropletSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/Edit2Svg.d.ts +4 -0
- package/dist/components/Icon/svgs/Edit3Svg.d.ts +4 -0
- package/dist/components/Icon/svgs/EditSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ExternalLinkSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/EyeOffSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/EyeSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/FastForwardSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/FeatherSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/FigmaSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/FileMinusSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/FilePlusSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/FileSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/FileTextSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/FilmSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/FilterSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/FlagSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/FolderMinusSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/FolderPlusSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/FolderSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/FramerSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/FrownSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/GiftSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/GitBranchSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/GitCommitSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/GitMergeSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/GitPullRequestSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/GithubSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/GitlabSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/GlobeSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/GridSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/HardDriveSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/HashSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/HeadphonesSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/HeartSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/HelpCircleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/HexagonSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/HomeSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ImageSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/InboxSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/InfoSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ItalicSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/KeySvg.d.ts +4 -0
- package/dist/components/Icon/svgs/LayersSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/LayoutSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/LifeBuoySvg.d.ts +4 -0
- package/dist/components/Icon/svgs/Link2Svg.d.ts +4 -0
- package/dist/components/Icon/svgs/LinkSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/LinkedinSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ListSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/LoaderSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/LockSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/LogInSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/LogOutSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MailSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MapPinSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MapSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/Maximize2Svg.d.ts +4 -0
- package/dist/components/Icon/svgs/MaximizeSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MehSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MenuSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MessageCircleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MessageSquareSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MicOffSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MicSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/Minimize2Svg.d.ts +4 -0
- package/dist/components/Icon/svgs/MinimizeSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MinusCircleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MinusSquareSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MinusSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MonitorSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MoonSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MoreHorizontalSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MoreVerticalSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MousePointerSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MoveSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/MusicSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/Navigation2Svg.d.ts +4 -0
- package/dist/components/Icon/svgs/NavigationSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/OctagonSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PackageSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PaperclipSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PauseCircleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PauseSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PenToolSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PercentSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PhoneCallSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PhoneForwardedSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PhoneIncomingSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PhoneMissedSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PhoneOffSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PhoneOutgoingSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PhoneSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PieChartSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PlayCircleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PlaySvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PlusCircleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PlusSquareSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PlusSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PocketSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PowerSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/PrinterSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/RadioSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/RefreshCcwSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/RefreshCwSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/RepeatSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/RewindSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/RotateCcwSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/RotateCwSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/RssSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SaveSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ScissorsSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SearchSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SendSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ServerSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SettingsSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/Share2Svg.d.ts +4 -0
- package/dist/components/Icon/svgs/ShareSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ShieldOffSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ShieldSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ShoppingBagSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ShoppingCartSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ShuffleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SidebarSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SkipBackSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SkipForwardSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SlackSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SlashSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SlidersSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SmartphoneSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SmileSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SpeakerSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SquareSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/StarSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/StopCircleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SunSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SunriseSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/SunsetSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/TableSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/TabletSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/TagSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/TargetSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/TerminalSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ThermometerSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ThumbsDownSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ThumbsUpSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ToggleLeftSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ToggleRightSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ToolSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/Trash2Svg.d.ts +4 -0
- package/dist/components/Icon/svgs/TrashSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/TrelloSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/TrendingDownSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/TrendingUpSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/TriangleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/TruckSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/TvSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/TwitchSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/TwitterSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/TypeSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/UmbrellaSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/UnderlineSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/UnlockSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/UploadCloudSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/UploadSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/UserCheckSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/UserMinusSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/UserPlusSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/UserSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/UserXSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/UsersSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/VideoOffSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/VideoSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/VoicemailSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/Volume1Svg.d.ts +4 -0
- package/dist/components/Icon/svgs/Volume2Svg.d.ts +4 -0
- package/dist/components/Icon/svgs/VolumeSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/VolumeXSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/WatchSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/WifiOffSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/WifiSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/WindSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/XCircleSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/XOctagonSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/XSquareSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/XSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ZapOffSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ZapSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ZoomInSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/ZoomOutSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/internal/EmptySvg.d.ts +4 -0
- package/dist/components/Icon/svgs/social/FacebookSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/social/FlickrSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/social/InstagramSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/social/SoundcloudSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/social/TiktokSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/social/XSvg.d.ts +4 -0
- package/dist/components/Icon/svgs/social/YoutubeSvg.d.ts +4 -0
- package/dist/components/IconButton/IconButton.d.ts +10 -0
- package/dist/components/IconButton/IconButton.stories.d.ts +6 -0
- package/dist/components/IconButton/__tests__/IconButton.test.d.ts +1 -0
- package/dist/components/IconButton/index.d.ts +2 -0
- package/dist/components/Input/Input.d.ts +17 -0
- package/dist/components/Input/Input.stories.d.ts +12 -0
- package/dist/components/Input/__tests__/Input.test.d.ts +1 -0
- package/dist/components/Input/index.d.ts +2 -0
- package/dist/components/Label/Label.d.ts +13 -0
- package/dist/components/Label/Label.stories.d.ts +12 -0
- package/dist/components/Label/__tests__/Label.test.d.ts +1 -0
- package/dist/components/Label/index.d.ts +2 -0
- package/dist/components/Layout/Layout.d.ts +7 -0
- package/dist/components/Layout/Layout.stories.d.ts +15 -0
- package/dist/components/Layout/__tests__/Layout.test.d.ts +1 -0
- package/dist/components/Layout/index.d.ts +2 -0
- package/dist/components/Link/Link.d.ts +11 -0
- package/dist/components/Link/Link.stories.d.ts +13 -0
- package/dist/components/Link/__tests__/link.test.d.ts +1 -0
- package/dist/components/Link/index.d.ts +2 -0
- package/dist/components/Menu/Menu.context.d.ts +14 -0
- package/dist/components/Menu/Menu.d.ts +17 -0
- package/dist/components/Menu/MenuContent.d.ts +8 -0
- package/dist/components/Menu/MenuItem.d.ts +8 -0
- package/dist/components/Menu/MenuSection.d.ts +7 -0
- package/dist/components/Menu/MenuTrigger.d.ts +7 -0
- package/dist/components/Menu/index.d.ts +6 -0
- package/dist/components/Modal/Modal.d.ts +11 -0
- package/dist/components/Modal/Modal.stories.d.ts +16 -0
- package/dist/components/Modal/__tests__/Modal.test.d.ts +1 -0
- package/dist/components/Modal/index.d.ts +2 -0
- package/dist/components/Overlay/Overlay.d.ts +17 -0
- package/dist/components/Overlay/Overlay.stories.d.ts +341 -0
- package/dist/components/Overlay/index.d.ts +2 -0
- package/dist/components/Pagination/Pagination.d.ts +27 -0
- package/dist/components/Pagination/Pagination.stories.d.ts +15 -0
- package/dist/components/Pagination/PaginationControls.d.ts +9 -0
- package/dist/components/Pagination/PaginationInfo.d.ts +8 -0
- package/dist/components/Pagination/__tests__/getPaginationButtons.test.d.ts +1 -0
- package/dist/components/Pagination/getPaginationButtons.d.ts +3 -0
- package/dist/components/Pagination/index.d.ts +6 -0
- package/dist/components/Paragraph/Paragraph.d.ts +13 -0
- package/dist/components/Paragraph/Paragraph.stories.d.ts +19 -0
- package/dist/components/Paragraph/__tests__/Paragraph.test.d.ts +1 -0
- package/dist/components/Paragraph/index.d.ts +4 -0
- package/dist/components/Radio/LabelledRadio.d.ts +14 -0
- package/dist/components/Radio/Radio.d.ts +10 -0
- package/dist/components/Radio/Radio.stories.d.ts +20 -0
- package/dist/components/Radio/__tests__/Radio.test.d.ts +1 -0
- package/dist/components/Radio/index.d.ts +4 -0
- package/dist/components/Select/Select.d.ts +8 -0
- package/dist/components/Select/Select.stories.d.ts +9 -0
- package/dist/components/Select/__tests__/Select.test.d.ts +1 -0
- package/dist/components/Select/index.d.ts +2 -0
- package/dist/components/Snackbar/Snackbar.d.ts +13 -0
- package/dist/components/Snackbar/Snackbar.stories.d.ts +29 -0
- package/dist/components/Snackbar/__tests__/Snackbar.test.d.ts +1 -0
- package/dist/components/Snackbar/index.d.ts +2 -0
- package/dist/components/Spinner/Spinner.d.ts +8 -0
- package/dist/components/Spinner/Spinner.stories.d.ts +15 -0
- package/dist/components/Spinner/__tests__/Spinner.test.d.ts +1 -0
- package/dist/components/Spinner/index.d.ts +2 -0
- package/dist/components/Table/Table.d.ts +8 -0
- package/dist/components/Table/index.d.ts +2 -0
- package/dist/components/Tabs/Tab.d.ts +11 -0
- package/dist/components/Tabs/TabContext.d.ts +9 -0
- package/dist/components/Tabs/Tabs.d.ts +16 -0
- package/dist/components/Tabs/Tabs.stories.d.ts +15 -0
- package/dist/components/Tabs/__tests__/Tabs.test.d.ts +1 -0
- package/dist/components/Tabs/index.d.ts +2 -0
- package/dist/components/Textarea/Textarea.d.ts +11 -0
- package/dist/components/Textarea/Textarea.stories.d.ts +16 -0
- package/dist/components/Textarea/__tests__/Textarea.test.d.ts +1 -0
- package/dist/components/Textarea/index.d.ts +2 -0
- package/dist/components/Toggle/Toggle.d.ts +8 -0
- package/dist/components/Toggle/Toggle.stories.d.ts +16 -0
- package/dist/components/Toggle/ToggleHandle.d.ts +8 -0
- package/dist/components/Toggle/index.d.ts +2 -0
- package/dist/components/Tooltip/Tooltip.d.ts +8 -0
- package/dist/components/Tooltip/Tooltip.stories.d.ts +11 -0
- package/dist/components/Tooltip/__tests__/tooltip.test.d.ts +1 -0
- package/dist/components/Tooltip/index.d.ts +2 -0
- package/dist/components/UclLogo/UclLogo.d.ts +7 -0
- package/dist/components/UclLogo/UclLogo.stories.d.ts +10 -0
- package/dist/components/UclLogo/UclLogoNegativeSpace.d.ts +8 -0
- package/dist/components/UclLogo/__tests__/UclLogo.test.d.ts +1 -0
- package/dist/components/UclLogo/index.d.ts +4 -0
- package/dist/components/common/marginsStyle.d.ts +48 -0
- package/dist/components/index.d.ts +79 -0
- package/dist/hooks/useMediaQuery.d.ts +2 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +17289 -0
- package/dist/theme/defaultTheme.d.ts +267 -0
- package/dist/theme/index.d.ts +3 -0
- package/dist/theme/useTheme.d.ts +488 -0
- package/lib/Welcome.mdx +31 -0
- package/lib/components/Accordion/Accordion.Heading.tsx +75 -0
- package/lib/components/Accordion/Accordion.Panel.tsx +47 -0
- package/lib/components/Accordion/Accordion.stories.tsx.NOT_READY +93 -0
- package/lib/components/Accordion/Accordion.tsx +114 -0
- package/lib/components/Accordion/__tests__/Accordion.test.tsx +64 -0
- package/lib/components/Accordion/__tests__/__snapshots__/Accordion.test.tsx.snap +71 -0
- package/lib/components/Accordion/__tests__/__snapshots__/IconButton.test.tsx.snap +74 -0
- package/lib/components/Accordion/index.ts +2 -0
- package/lib/components/Alert/Alert.mdx +43 -0
- package/lib/components/Alert/Alert.stories.tsx +111 -0
- package/lib/components/Alert/Alert.tsx +137 -0
- package/lib/components/Alert/AlertMessage.tsx +35 -0
- package/lib/components/Alert/AlertTitle.tsx +34 -0
- package/lib/components/Alert/__tests__/Alert.test.tsx +71 -0
- package/lib/components/Alert/__tests__/__snapshots__/Alert.test.tsx.snap +198 -0
- package/lib/components/Alert/index.ts +6 -0
- package/lib/components/AppHeader/AppHeader.stories.tsx +135 -0
- package/lib/components/AppHeader/AppHeader.tsx +90 -0
- package/lib/components/AppHeader/AppHeaderBottom.tsx +46 -0
- package/lib/components/AppHeader/AppHeaderNav.tsx +39 -0
- package/lib/components/AppHeader/AppHeaderTop.tsx +56 -0
- package/lib/components/AppHeader/__tests__/AppHeader.test.tsx +19 -0
- package/lib/components/AppHeader/__tests__/__snapshots__/AppHeader.test.tsx.snap +8 -0
- package/lib/components/AppHeader/index.ts +3 -0
- package/lib/components/AppMenu/AppMenu.context.tsx +162 -0
- package/lib/components/AppMenu/AppMenu.stories.tsx +177 -0
- package/lib/components/AppMenu/AppMenu.tsx +62 -0
- package/lib/components/AppMenu/AppMenuContent.tsx +121 -0
- package/lib/components/AppMenu/AppMenuDivider.tsx +40 -0
- package/lib/components/AppMenu/AppMenuItem.tsx +173 -0
- package/lib/components/AppMenu/AppMenuTrigger.tsx +50 -0
- package/lib/components/AppMenu/__tests__/AppMenu.test.tsx +100 -0
- package/lib/components/AppMenu/__tests__/__snapshots__/AppMenu.test.tsx.snap +128 -0
- package/lib/components/AppMenu/index.ts +2 -0
- package/lib/components/Avatar/Avatar.stories.tsx +33 -0
- package/lib/components/Avatar/Avatar.tsx +152 -0
- package/lib/components/Avatar/__tests__/Avatar.test.tsx +264 -0
- package/lib/components/Avatar/__tests__/__snapshots__/Avatar.test.tsx.snap +260 -0
- package/lib/components/Avatar/index.ts +2 -0
- package/lib/components/Avatar/utils/extractInitials.test.ts +65 -0
- package/lib/components/Avatar/utils/extractInitials.ts +24 -0
- package/lib/components/Blanket/Blanket.stories.tsx +67 -0
- package/lib/components/Blanket/Blanket.tsx +66 -0
- package/lib/components/Blanket/__tests__/Blanket.test.tsx +54 -0
- package/lib/components/Blanket/__tests__/__snapshots__/Blanket.test.tsx.snap +10 -0
- package/lib/components/Blanket/index.ts +2 -0
- package/lib/components/Breadcrumbs/Breadcrumb.tsx +78 -0
- package/lib/components/Breadcrumbs/Breadcrumbs.stories.tsx +35 -0
- package/lib/components/Breadcrumbs/Breadcrumbs.tsx +64 -0
- package/lib/components/Breadcrumbs/__tests__/Breadcrumbs.test.tsx +128 -0
- package/lib/components/Breadcrumbs/__tests__/__snapshots__/Breadcrumbs.test.tsx.snap +149 -0
- package/lib/components/Breadcrumbs/index.ts +2 -0
- package/lib/components/Button/Button.mdx +325 -0
- package/lib/components/Button/Button.stories.tsx +420 -0
- package/lib/components/Button/Button.tsx +146 -0
- package/lib/components/Button/Button.types.ts +46 -0
- package/lib/components/Button/__tests__/Button.test.tsx +244 -0
- package/lib/components/Button/__tests__/__snapshots__/Button.test.tsx.snap +139 -0
- package/lib/components/Button/buttonPrimaryStyle.ts +62 -0
- package/lib/components/Button/buttonSecondaryStyle.ts +65 -0
- package/lib/components/Button/buttonTertiaryStyle.ts +54 -0
- package/lib/components/Button/index.ts +2 -0
- package/lib/components/Checkbox/Checkbox.stories.tsx +31 -0
- package/lib/components/Checkbox/Checkbox.tsx +177 -0
- package/lib/components/Checkbox/LabelledCheckbox.tsx +111 -0
- package/lib/components/Checkbox/__tests__/Checkbox.test.tsx +99 -0
- package/lib/components/Checkbox/__tests__/__snapshots__/Checkbox.test.tsx.snap +87 -0
- package/lib/components/Checkbox/index.ts +4 -0
- package/lib/components/Datepicker/Datepicker.stories.tsx +70 -0
- package/lib/components/Datepicker/Datepicker.tsx +153 -0
- package/lib/components/Datepicker/__tests__/Datepicker.test.tsx +147 -0
- package/lib/components/Datepicker/__tests__/__snapshots__/Datepicker.test.tsx.snap +679 -0
- package/lib/components/Datepicker/index.ts +2 -0
- package/lib/components/Datepicker/subcomponents/CalendarGrid/CalendarGrid.tsx +59 -0
- package/lib/components/Datepicker/subcomponents/CalendarGrid/index.ts +1 -0
- package/lib/components/Datepicker/subcomponents/CalendarMenu/CalendarMenu.tsx +64 -0
- package/lib/components/Datepicker/subcomponents/CalendarMenu/index.ts +1 -0
- package/lib/components/Datepicker/subcomponents/ColumnHeadings/ColumnHeadings.tsx +35 -0
- package/lib/components/Datepicker/subcomponents/ColumnHeadings/index.ts +1 -0
- package/lib/components/Datepicker/subcomponents/DateField/DateField.tsx +155 -0
- package/lib/components/Datepicker/subcomponents/DateField/__tests__/DateField.test.tsx +191 -0
- package/lib/components/Datepicker/subcomponents/DateField/index.ts +1 -0
- package/lib/components/Datepicker/subcomponents/Day/Day.stories.tsx +81 -0
- package/lib/components/Datepicker/subcomponents/Day/Day.tsx +94 -0
- package/lib/components/Datepicker/subcomponents/Day/index.ts +1 -0
- package/lib/components/Datepicker/subcomponents/MonthSelector/MonthSelector.tsx +70 -0
- package/lib/components/Datepicker/subcomponents/MonthSelector/index.ts +1 -0
- package/lib/components/Datepicker/subcomponents/Native/Native.tsx +59 -0
- package/lib/components/Datepicker/subcomponents/Native/index.ts +1 -0
- package/lib/components/Datepicker/subcomponents/index.ts +7 -0
- package/lib/components/Datepicker/utils/getDatesForCalendarGrid/getDatesForCalendarGrid.test.ts +166 -0
- package/lib/components/Datepicker/utils/getDatesForCalendarGrid/getDatesForCalendarGrid.ts +109 -0
- package/lib/components/Datepicker/utils/index.ts +2 -0
- package/lib/components/Datepicker/utils/parseDateForDateField/parseDateForDateField.test.ts +41 -0
- package/lib/components/Datepicker/utils/parseDateForDateField/parseDateForDateField.ts +48 -0
- package/lib/components/Dialog/BaseDialog.tsx +163 -0
- package/lib/components/Dialog/Dialog.stories.tsx +107 -0
- package/lib/components/Dialog/Dialog.tsx +73 -0
- package/lib/components/Dialog/DialogBody.tsx +35 -0
- package/lib/components/Dialog/DialogFooter.tsx +90 -0
- package/lib/components/Dialog/DialogHeader.tsx +83 -0
- package/lib/components/Dialog/index.tsx +10 -0
- package/lib/components/Divider/Divider.stories.tsx +29 -0
- package/lib/components/Divider/Divider.tsx +37 -0
- package/lib/components/Divider/__tests__/Divider.test.tsx +33 -0
- package/lib/components/Divider/__tests__/__snapshots__/Breadcrumbs.test.tsx.snap +145 -0
- package/lib/components/Divider/index.ts +2 -0
- package/lib/components/FeedbackDialog/FeedbackDialog.stories.tsx +67 -0
- package/lib/components/FeedbackDialog/FeedbackDialog.tsx +131 -0
- package/lib/components/FeedbackDialog/index.tsx +2 -0
- package/lib/components/Field/CharacterCount.tsx +48 -0
- package/lib/components/Field/ErrorText.tsx +55 -0
- package/lib/components/Field/Field.stories.tsx +426 -0
- package/lib/components/Field/Field.tsx +108 -0
- package/lib/components/Field/HelperText.tsx +42 -0
- package/lib/components/Field/__tests__/Field.test.tsx +510 -0
- package/lib/components/Field/__tests__/__snapshots__/Field.test.tsx.snap +300 -0
- package/lib/components/Field/index.ts +6 -0
- package/lib/components/Footer/Footer.stories.tsx +50 -0
- package/lib/components/Footer/Footer.tsx +261 -0
- package/lib/components/Footer/FooterColumn.tsx +54 -0
- package/lib/components/Footer/FooterNavLink.tsx +56 -0
- package/lib/components/Footer/SocialLink.tsx +104 -0
- package/lib/components/Footer/__tests__/Footer.test.tsx +57 -0
- package/lib/components/Footer/__tests__/__snapshots__/Footer.test.tsx.snap +935 -0
- package/lib/components/Footer/index.ts +2 -0
- package/lib/components/Header/Header.tsx +109 -0
- package/lib/components/Header/HeaderMenu.tsx +34 -0
- package/lib/components/Header/__tests__/Header.test.tsx +26 -0
- package/lib/components/Header/__tests__/__snapshots__/Header.test.tsx.snap +65 -0
- package/lib/components/Header/index.ts +3 -0
- package/lib/components/HeaderDraft/HeaderBottomBreadcrumbs.tsx +50 -0
- package/lib/components/HeaderDraft/HeaderBottomHeadingAndAvatar.tsx +141 -0
- package/lib/components/HeaderDraft/HeaderBreadcrumb.tsx +74 -0
- package/lib/components/HeaderDraft/HeaderDraft.tsx +178 -0
- package/lib/components/HeaderDraft/HeaderMenu.tsx +24 -0
- package/lib/components/HeaderDraft/__tests__/Header.test.tsx +40 -0
- package/lib/components/HeaderDraft/__tests__/__snapshots__/Header.test.tsx.snap +126 -0
- package/lib/components/HeaderDraft/index.ts +4 -0
- package/lib/components/Heading/Documentation.mdx +118 -0
- package/lib/components/Heading/Heading.stories.tsx +107 -0
- package/lib/components/Heading/Heading.tsx +94 -0
- package/lib/components/Heading/__tests__/Heading.test.tsx +79 -0
- package/lib/components/Heading/__tests__/__snapshots__/Heading.test.tsx.snap +37 -0
- package/lib/components/Heading/index.ts +2 -0
- package/lib/components/Icon/BaseIcon.tsx +47 -0
- package/lib/components/Icon/Icon.stories.tsx +44 -0
- package/lib/components/Icon/Icon.tsx +52 -0
- package/lib/components/Icon/__tests__/Icon.test.tsx +94 -0
- package/lib/components/Icon/__tests__/__snapshots__/Icon.test.tsx.snap +84 -0
- package/lib/components/Icon/index.ts +2 -0
- package/lib/components/Icon/svgImports.ts +599 -0
- package/lib/components/Icon/svgs/ActivitySvg.tsx +23 -0
- package/lib/components/Icon/svgs/AirplaySvg.tsx +24 -0
- package/lib/components/Icon/svgs/AlertCircleSvg.tsx +39 -0
- package/lib/components/Icon/svgs/AlertOctagonSvg.tsx +35 -0
- package/lib/components/Icon/svgs/AlertTriangleSvg.tsx +35 -0
- package/lib/components/Icon/svgs/AlignCenterSvg.tsx +46 -0
- package/lib/components/Icon/svgs/AlignJustifySvg.tsx +46 -0
- package/lib/components/Icon/svgs/AlignLeftSvg.tsx +46 -0
- package/lib/components/Icon/svgs/AlignRightSvg.tsx +46 -0
- package/lib/components/Icon/svgs/AnchorSvg.tsx +34 -0
- package/lib/components/Icon/svgs/ApertureSvg.tsx +63 -0
- package/lib/components/Icon/svgs/ArchiveSvg.tsx +35 -0
- package/lib/components/Icon/svgs/ArrowDownCircleSvg.tsx +34 -0
- package/lib/components/Icon/svgs/ArrowDownLeftSvg.tsx +29 -0
- package/lib/components/Icon/svgs/ArrowDownRightSvg.tsx +29 -0
- package/lib/components/Icon/svgs/ArrowDownSvg.tsx +29 -0
- package/lib/components/Icon/svgs/ArrowLeftCircleSvg.tsx +34 -0
- package/lib/components/Icon/svgs/ArrowLeftSvg.tsx +29 -0
- package/lib/components/Icon/svgs/ArrowRightCircleSvg.tsx +34 -0
- package/lib/components/Icon/svgs/ArrowRightSvg.tsx +29 -0
- package/lib/components/Icon/svgs/ArrowUpCircleSvg.tsx +34 -0
- package/lib/components/Icon/svgs/ArrowUpLeftSvg.tsx +29 -0
- package/lib/components/Icon/svgs/ArrowUpRightSvg.tsx +29 -0
- package/lib/components/Icon/svgs/ArrowUpSvg.tsx +29 -0
- package/lib/components/Icon/svgs/AtSignSvg.tsx +28 -0
- package/lib/components/Icon/svgs/AvatarSvg.tsx +29 -0
- package/lib/components/Icon/svgs/AwardSvg.tsx +28 -0
- package/lib/components/Icon/svgs/BarChart2Svg.tsx +40 -0
- package/lib/components/Icon/svgs/BarChartSvg.tsx +40 -0
- package/lib/components/Icon/svgs/BatteryChargingSvg.tsx +30 -0
- package/lib/components/Icon/svgs/BatterySvg.tsx +36 -0
- package/lib/components/Icon/svgs/BellOffSvg.tsx +32 -0
- package/lib/components/Icon/svgs/BellSvg.tsx +24 -0
- package/lib/components/Icon/svgs/BluetoothSvg.tsx +23 -0
- package/lib/components/Icon/svgs/BoldSvg.tsx +24 -0
- package/lib/components/Icon/svgs/BookOpenSvg.tsx +24 -0
- package/lib/components/Icon/svgs/BookSvg.tsx +24 -0
- package/lib/components/Icon/svgs/BookmarkSvg.tsx +23 -0
- package/lib/components/Icon/svgs/BoxSvg.tsx +30 -0
- package/lib/components/Icon/svgs/BriefcaseSvg.tsx +31 -0
- package/lib/components/Icon/svgs/CalendarSvg.tsx +48 -0
- package/lib/components/Icon/svgs/CameraOffSvg.tsx +29 -0
- package/lib/components/Icon/svgs/CameraSvg.tsx +28 -0
- package/lib/components/Icon/svgs/CastSvg.tsx +29 -0
- package/lib/components/Icon/svgs/CheckCircleSvg.tsx +24 -0
- package/lib/components/Icon/svgs/CheckSquareSvg.tsx +24 -0
- package/lib/components/Icon/svgs/CheckSvg.tsx +23 -0
- package/lib/components/Icon/svgs/ChevronDownSvg.tsx +32 -0
- package/lib/components/Icon/svgs/ChevronLeftSvg.tsx +23 -0
- package/lib/components/Icon/svgs/ChevronRightSvg.tsx +23 -0
- package/lib/components/Icon/svgs/ChevronUpSvg.tsx +25 -0
- package/lib/components/Icon/svgs/ChevronsDownSvg.tsx +24 -0
- package/lib/components/Icon/svgs/ChevronsLeftSvg.tsx +24 -0
- package/lib/components/Icon/svgs/ChevronsRightSvg.tsx +24 -0
- package/lib/components/Icon/svgs/ChevronsUpSvg.tsx +24 -0
- package/lib/components/Icon/svgs/ChromeSvg.tsx +50 -0
- package/lib/components/Icon/svgs/CircleSvg.tsx +27 -0
- package/lib/components/Icon/svgs/ClipboardSvg.tsx +31 -0
- package/lib/components/Icon/svgs/ClockSvg.tsx +28 -0
- package/lib/components/Icon/svgs/CloudDrizzleSvg.tsx +59 -0
- package/lib/components/Icon/svgs/CloudLightningSvg.tsx +24 -0
- package/lib/components/Icon/svgs/CloudOffSvg.tsx +29 -0
- package/lib/components/Icon/svgs/CloudRainSvg.tsx +41 -0
- package/lib/components/Icon/svgs/CloudSnowSvg.tsx +59 -0
- package/lib/components/Icon/svgs/CloudSvg.tsx +23 -0
- package/lib/components/Icon/svgs/CodeSvg.tsx +24 -0
- package/lib/components/Icon/svgs/CodepenSvg.tsx +37 -0
- package/lib/components/Icon/svgs/CodesandboxSvg.tsx +33 -0
- package/lib/components/Icon/svgs/CoffeeSvg.tsx +42 -0
- package/lib/components/Icon/svgs/ColumnsSvg.tsx +23 -0
- package/lib/components/Icon/svgs/CommandSvg.tsx +23 -0
- package/lib/components/Icon/svgs/CompassSvg.tsx +28 -0
- package/lib/components/Icon/svgs/CopySvg.tsx +31 -0
- package/lib/components/Icon/svgs/CornerDownLeftSvg.tsx +24 -0
- package/lib/components/Icon/svgs/CornerDownRightSvg.tsx +24 -0
- package/lib/components/Icon/svgs/CornerLeftDownSvg.tsx +24 -0
- package/lib/components/Icon/svgs/CornerLeftUpSvg.tsx +24 -0
- package/lib/components/Icon/svgs/CornerRightDownSvg.tsx +24 -0
- package/lib/components/Icon/svgs/CornerRightUpSvg.tsx +24 -0
- package/lib/components/Icon/svgs/CornerUpLeftSvg.tsx +24 -0
- package/lib/components/Icon/svgs/CornerUpRightSvg.tsx +24 -0
- package/lib/components/Icon/svgs/CpuSvg.tsx +84 -0
- package/lib/components/Icon/svgs/CreditCardSvg.tsx +36 -0
- package/lib/components/Icon/svgs/CropSvg.tsx +24 -0
- package/lib/components/Icon/svgs/CrosshairSvg.tsx +51 -0
- package/lib/components/Icon/svgs/DatabaseSvg.tsx +30 -0
- package/lib/components/Icon/svgs/DeleteSvg.tsx +35 -0
- package/lib/components/Icon/svgs/DiscSvg.tsx +32 -0
- package/lib/components/Icon/svgs/DivideCircleSvg.tsx +45 -0
- package/lib/components/Icon/svgs/DivideSquareSvg.tsx +48 -0
- package/lib/components/Icon/svgs/DivideSvg.tsx +38 -0
- package/lib/components/Icon/svgs/DollarSignSvg.tsx +29 -0
- package/lib/components/Icon/svgs/DownloadCloudSvg.tsx +30 -0
- package/lib/components/Icon/svgs/DownloadSvg.tsx +30 -0
- package/lib/components/Icon/svgs/DribbbleSvg.tsx +28 -0
- package/lib/components/Icon/svgs/DropletSvg.tsx +23 -0
- package/lib/components/Icon/svgs/Edit2Svg.tsx +23 -0
- package/lib/components/Icon/svgs/Edit3Svg.tsx +24 -0
- package/lib/components/Icon/svgs/EditSvg.tsx +24 -0
- package/lib/components/Icon/svgs/ExternalLinkSvg.tsx +30 -0
- package/lib/components/Icon/svgs/EyeOffSvg.tsx +29 -0
- package/lib/components/Icon/svgs/EyeSvg.tsx +28 -0
- package/lib/components/Icon/svgs/FastForwardSvg.tsx +24 -0
- package/lib/components/Icon/svgs/FeatherSvg.tsx +35 -0
- package/lib/components/Icon/svgs/FigmaSvg.tsx +27 -0
- package/lib/components/Icon/svgs/FileMinusSvg.tsx +30 -0
- package/lib/components/Icon/svgs/FilePlusSvg.tsx +36 -0
- package/lib/components/Icon/svgs/FileSvg.tsx +24 -0
- package/lib/components/Icon/svgs/FileTextSvg.tsx +37 -0
- package/lib/components/Icon/svgs/FilmSvg.tsx +72 -0
- package/lib/components/Icon/svgs/FilterSvg.tsx +23 -0
- package/lib/components/Icon/svgs/FlagSvg.tsx +29 -0
- package/lib/components/Icon/svgs/FolderMinusSvg.tsx +29 -0
- package/lib/components/Icon/svgs/FolderPlusSvg.tsx +35 -0
- package/lib/components/Icon/svgs/FolderSvg.tsx +23 -0
- package/lib/components/Icon/svgs/FramerSvg.tsx +23 -0
- package/lib/components/Icon/svgs/FrownSvg.tsx +40 -0
- package/lib/components/Icon/svgs/GiftSvg.tsx +37 -0
- package/lib/components/Icon/svgs/GitBranchSvg.tsx +39 -0
- package/lib/components/Icon/svgs/GitCommitSvg.tsx +39 -0
- package/lib/components/Icon/svgs/GitMergeSvg.tsx +33 -0
- package/lib/components/Icon/svgs/GitPullRequestSvg.tsx +39 -0
- package/lib/components/Icon/svgs/GithubSvg.tsx +23 -0
- package/lib/components/Icon/svgs/GitlabSvg.tsx +23 -0
- package/lib/components/Icon/svgs/GlobeSvg.tsx +34 -0
- package/lib/components/Icon/svgs/GridSvg.tsx +46 -0
- package/lib/components/Icon/svgs/HardDriveSvg.tsx +41 -0
- package/lib/components/Icon/svgs/HashSvg.tsx +46 -0
- package/lib/components/Icon/svgs/HeadphonesSvg.tsx +24 -0
- package/lib/components/Icon/svgs/HeartSvg.tsx +23 -0
- package/lib/components/Icon/svgs/HelpCircleSvg.tsx +34 -0
- package/lib/components/Icon/svgs/HexagonSvg.tsx +23 -0
- package/lib/components/Icon/svgs/HomeSvg.tsx +24 -0
- package/lib/components/Icon/svgs/ImageSvg.tsx +36 -0
- package/lib/components/Icon/svgs/InboxSvg.tsx +24 -0
- package/lib/components/Icon/svgs/InfoSvg.tsx +39 -0
- package/lib/components/Icon/svgs/ItalicSvg.tsx +40 -0
- package/lib/components/Icon/svgs/KeySvg.tsx +23 -0
- package/lib/components/Icon/svgs/LayersSvg.tsx +25 -0
- package/lib/components/Icon/svgs/LayoutSvg.tsx +42 -0
- package/lib/components/Icon/svgs/LifeBuoySvg.tsx +62 -0
- package/lib/components/Icon/svgs/Link2Svg.tsx +29 -0
- package/lib/components/Icon/svgs/LinkSvg.tsx +24 -0
- package/lib/components/Icon/svgs/LinkedinSvg.tsx +34 -0
- package/lib/components/Icon/svgs/ListSvg.tsx +58 -0
- package/lib/components/Icon/svgs/LoaderSvg.tsx +70 -0
- package/lib/components/Icon/svgs/LockSvg.tsx +31 -0
- package/lib/components/Icon/svgs/LogInSvg.tsx +30 -0
- package/lib/components/Icon/svgs/LogOutSvg.tsx +30 -0
- package/lib/components/Icon/svgs/MailSvg.tsx +24 -0
- package/lib/components/Icon/svgs/MapPinSvg.tsx +28 -0
- package/lib/components/Icon/svgs/MapSvg.tsx +35 -0
- package/lib/components/Icon/svgs/Maximize2Svg.tsx +36 -0
- package/lib/components/Icon/svgs/MaximizeSvg.tsx +23 -0
- package/lib/components/Icon/svgs/MehSvg.tsx +45 -0
- package/lib/components/Icon/svgs/MenuSvg.tsx +40 -0
- package/lib/components/Icon/svgs/MessageCircleSvg.tsx +23 -0
- package/lib/components/Icon/svgs/MessageSquareSvg.tsx +23 -0
- package/lib/components/Icon/svgs/MicOffSvg.tsx +42 -0
- package/lib/components/Icon/svgs/MicSvg.tsx +36 -0
- package/lib/components/Icon/svgs/Minimize2Svg.tsx +36 -0
- package/lib/components/Icon/svgs/MinimizeSvg.tsx +23 -0
- package/lib/components/Icon/svgs/MinusCircleSvg.tsx +33 -0
- package/lib/components/Icon/svgs/MinusSquareSvg.tsx +36 -0
- package/lib/components/Icon/svgs/MinusSvg.tsx +29 -0
- package/lib/components/Icon/svgs/MonitorSvg.tsx +42 -0
- package/lib/components/Icon/svgs/MoonSvg.tsx +23 -0
- package/lib/components/Icon/svgs/MoreHorizontalSvg.tsx +37 -0
- package/lib/components/Icon/svgs/MoreVerticalSvg.tsx +37 -0
- package/lib/components/Icon/svgs/MousePointerSvg.tsx +24 -0
- package/lib/components/Icon/svgs/MoveSvg.tsx +38 -0
- package/lib/components/Icon/svgs/MusicSvg.tsx +33 -0
- package/lib/components/Icon/svgs/Navigation2Svg.tsx +23 -0
- package/lib/components/Icon/svgs/NavigationSvg.tsx +23 -0
- package/lib/components/Icon/svgs/OctagonSvg.tsx +23 -0
- package/lib/components/Icon/svgs/PackageSvg.tsx +36 -0
- package/lib/components/Icon/svgs/PaperclipSvg.tsx +23 -0
- package/lib/components/Icon/svgs/PauseCircleSvg.tsx +39 -0
- package/lib/components/Icon/svgs/PauseSvg.tsx +34 -0
- package/lib/components/Icon/svgs/PenToolSvg.tsx +30 -0
- package/lib/components/Icon/svgs/PercentSvg.tsx +38 -0
- package/lib/components/Icon/svgs/PhoneCallSvg.tsx +23 -0
- package/lib/components/Icon/svgs/PhoneForwardedSvg.tsx +30 -0
- package/lib/components/Icon/svgs/PhoneIncomingSvg.tsx +30 -0
- package/lib/components/Icon/svgs/PhoneMissedSvg.tsx +35 -0
- package/lib/components/Icon/svgs/PhoneOffSvg.tsx +29 -0
- package/lib/components/Icon/svgs/PhoneOutgoingSvg.tsx +30 -0
- package/lib/components/Icon/svgs/PhoneSvg.tsx +23 -0
- package/lib/components/Icon/svgs/PieChartSvg.tsx +24 -0
- package/lib/components/Icon/svgs/PlayCircleSvg.tsx +28 -0
- package/lib/components/Icon/svgs/PlaySvg.tsx +23 -0
- package/lib/components/Icon/svgs/PlusCircleSvg.tsx +39 -0
- package/lib/components/Icon/svgs/PlusSquareSvg.tsx +42 -0
- package/lib/components/Icon/svgs/PlusSvg.tsx +34 -0
- package/lib/components/Icon/svgs/PocketSvg.tsx +24 -0
- package/lib/components/Icon/svgs/PowerSvg.tsx +29 -0
- package/lib/components/Icon/svgs/PrinterSvg.tsx +30 -0
- package/lib/components/Icon/svgs/RadioSvg.tsx +28 -0
- package/lib/components/Icon/svgs/RefreshCcwSvg.tsx +25 -0
- package/lib/components/Icon/svgs/RefreshCwSvg.tsx +25 -0
- package/lib/components/Icon/svgs/RepeatSvg.tsx +26 -0
- package/lib/components/Icon/svgs/RewindSvg.tsx +24 -0
- package/lib/components/Icon/svgs/RotateCcwSvg.tsx +24 -0
- package/lib/components/Icon/svgs/RotateCwSvg.tsx +24 -0
- package/lib/components/Icon/svgs/RssSvg.tsx +29 -0
- package/lib/components/Icon/svgs/SaveSvg.tsx +25 -0
- package/lib/components/Icon/svgs/ScissorsSvg.tsx +50 -0
- package/lib/components/Icon/svgs/SearchSvg.tsx +33 -0
- package/lib/components/Icon/svgs/SendSvg.tsx +29 -0
- package/lib/components/Icon/svgs/ServerSvg.tsx +50 -0
- package/lib/components/Icon/svgs/SettingsSvg.tsx +28 -0
- package/lib/components/Icon/svgs/Share2Svg.tsx +49 -0
- package/lib/components/Icon/svgs/ShareSvg.tsx +30 -0
- package/lib/components/Icon/svgs/ShieldOffSvg.tsx +30 -0
- package/lib/components/Icon/svgs/ShieldSvg.tsx +23 -0
- package/lib/components/Icon/svgs/ShoppingBagSvg.tsx +30 -0
- package/lib/components/Icon/svgs/ShoppingCartSvg.tsx +33 -0
- package/lib/components/Icon/svgs/ShuffleSvg.tsx +42 -0
- package/lib/components/Icon/svgs/SidebarSvg.tsx +36 -0
- package/lib/components/Icon/svgs/SkipBackSvg.tsx +29 -0
- package/lib/components/Icon/svgs/SkipForwardSvg.tsx +29 -0
- package/lib/components/Icon/svgs/SlackSvg.tsx +30 -0
- package/lib/components/Icon/svgs/SlashSvg.tsx +33 -0
- package/lib/components/Icon/svgs/SlidersSvg.tsx +76 -0
- package/lib/components/Icon/svgs/SmartphoneSvg.tsx +36 -0
- package/lib/components/Icon/svgs/SmileSvg.tsx +40 -0
- package/lib/components/Icon/svgs/SpeakerSvg.tsx +41 -0
- package/lib/components/Icon/svgs/SquareSvg.tsx +30 -0
- package/lib/components/Icon/svgs/StarSvg.tsx +23 -0
- package/lib/components/Icon/svgs/StopCircleSvg.tsx +33 -0
- package/lib/components/Icon/svgs/SunSvg.tsx +75 -0
- package/lib/components/Icon/svgs/SunriseSvg.tsx +60 -0
- package/lib/components/Icon/svgs/SunsetSvg.tsx +60 -0
- package/lib/components/Icon/svgs/TableSvg.tsx +23 -0
- package/lib/components/Icon/svgs/TabletSvg.tsx +36 -0
- package/lib/components/Icon/svgs/TagSvg.tsx +29 -0
- package/lib/components/Icon/svgs/TargetSvg.tsx +37 -0
- package/lib/components/Icon/svgs/TerminalSvg.tsx +29 -0
- package/lib/components/Icon/svgs/ThermometerSvg.tsx +23 -0
- package/lib/components/Icon/svgs/ThumbsDownSvg.tsx +23 -0
- package/lib/components/Icon/svgs/ThumbsUpSvg.tsx +23 -0
- package/lib/components/Icon/svgs/ToggleLeftSvg.tsx +35 -0
- package/lib/components/Icon/svgs/ToggleRightSvg.tsx +35 -0
- package/lib/components/Icon/svgs/ToolSvg.tsx +23 -0
- package/lib/components/Icon/svgs/Trash2Svg.tsx +36 -0
- package/lib/components/Icon/svgs/TrashSvg.tsx +24 -0
- package/lib/components/Icon/svgs/TrelloSvg.tsx +42 -0
- package/lib/components/Icon/svgs/TrendingDownSvg.tsx +24 -0
- package/lib/components/Icon/svgs/TrendingUpSvg.tsx +24 -0
- package/lib/components/Icon/svgs/TriangleSvg.tsx +23 -0
- package/lib/components/Icon/svgs/TruckSvg.tsx +39 -0
- package/lib/components/Icon/svgs/TvSvg.tsx +31 -0
- package/lib/components/Icon/svgs/TwitchSvg.tsx +23 -0
- package/lib/components/Icon/svgs/TwitterSvg.tsx +23 -0
- package/lib/components/Icon/svgs/TypeSvg.tsx +35 -0
- package/lib/components/Icon/svgs/UmbrellaSvg.tsx +23 -0
- package/lib/components/Icon/svgs/UnderlineSvg.tsx +29 -0
- package/lib/components/Icon/svgs/UnlockSvg.tsx +31 -0
- package/lib/components/Icon/svgs/UploadCloudSvg.tsx +31 -0
- package/lib/components/Icon/svgs/UploadSvg.tsx +30 -0
- package/lib/components/Icon/svgs/UserCheckSvg.tsx +29 -0
- package/lib/components/Icon/svgs/UserMinusSvg.tsx +34 -0
- package/lib/components/Icon/svgs/UserPlusSvg.tsx +40 -0
- package/lib/components/Icon/svgs/UserSvg.tsx +30 -0
- package/lib/components/Icon/svgs/UserXSvg.tsx +40 -0
- package/lib/components/Icon/svgs/UsersSvg.tsx +30 -0
- package/lib/components/Icon/svgs/VideoOffSvg.tsx +29 -0
- package/lib/components/Icon/svgs/VideoSvg.tsx +31 -0
- package/lib/components/Icon/svgs/VoicemailSvg.tsx +38 -0
- package/lib/components/Icon/svgs/Volume1Svg.tsx +24 -0
- package/lib/components/Icon/svgs/Volume2Svg.tsx +24 -0
- package/lib/components/Icon/svgs/VolumeSvg.tsx +23 -0
- package/lib/components/Icon/svgs/VolumeXSvg.tsx +35 -0
- package/lib/components/Icon/svgs/WatchSvg.tsx +29 -0
- package/lib/components/Icon/svgs/WifiOffSvg.tsx +39 -0
- package/lib/components/Icon/svgs/WifiSvg.tsx +31 -0
- package/lib/components/Icon/svgs/WindSvg.tsx +23 -0
- package/lib/components/Icon/svgs/XCircleSvg.tsx +39 -0
- package/lib/components/Icon/svgs/XOctagonSvg.tsx +35 -0
- package/lib/components/Icon/svgs/XSquareSvg.tsx +42 -0
- package/lib/components/Icon/svgs/XSvg.tsx +34 -0
- package/lib/components/Icon/svgs/ZapOffSvg.tsx +31 -0
- package/lib/components/Icon/svgs/ZapSvg.tsx +23 -0
- package/lib/components/Icon/svgs/ZoomInSvg.tsx +45 -0
- package/lib/components/Icon/svgs/ZoomOutSvg.tsx +39 -0
- package/lib/components/Icon/svgs/internal/EmptySvg.tsx +23 -0
- package/lib/components/Icon/svgs/social/FacebookSvg.tsx +18 -0
- package/lib/components/Icon/svgs/social/FlickrSvg.tsx +19 -0
- package/lib/components/Icon/svgs/social/InstagramSvg.tsx +19 -0
- package/lib/components/Icon/svgs/social/SoundcloudSvg.tsx +22 -0
- package/lib/components/Icon/svgs/social/TiktokSvg.tsx +18 -0
- package/lib/components/Icon/svgs/social/XSvg.tsx +18 -0
- package/lib/components/Icon/svgs/social/YoutubeSvg.tsx +18 -0
- package/lib/components/Icon/svgs/social/reference-from-figma/Facebook-full.svg +10 -0
- package/lib/components/Icon/svgs/social/reference-from-figma/Facebook-line.svg +3 -0
- package/lib/components/Icon/svgs/social/reference-from-figma/Flickr.svg +4 -0
- package/lib/components/Icon/svgs/social/reference-from-figma/Git-line.svg +10 -0
- package/lib/components/Icon/svgs/social/reference-from-figma/Instagram-full.svg +4 -0
- package/lib/components/Icon/svgs/social/reference-from-figma/Instagram-line.svg +11 -0
- package/lib/components/Icon/svgs/social/reference-from-figma/Linkedin-full.svg +3 -0
- package/lib/components/Icon/svgs/social/reference-from-figma/Linkeding-line.svg +5 -0
- package/lib/components/Icon/svgs/social/reference-from-figma/Slack-line.svg +10 -0
- package/lib/components/Icon/svgs/social/reference-from-figma/Soundcloud.svg +3 -0
- package/lib/components/Icon/svgs/social/reference-from-figma/X.svg +3 -0
- package/lib/components/Icon/svgs/social/reference-from-figma/tok-tok.svg +3 -0
- package/lib/components/Icon/svgs/social/reference-from-figma/you-tube.svg +3 -0
- package/lib/components/IconButton/IconButton.stories.tsx +59 -0
- package/lib/components/IconButton/IconButton.tsx +71 -0
- package/lib/components/IconButton/__tests__/IconButton.test.tsx +110 -0
- package/lib/components/IconButton/__tests__/__snapshots__/IconButton.test.tsx.snap +77 -0
- package/lib/components/IconButton/index.ts +2 -0
- package/lib/components/Input/Documentation.mdx +94 -0
- package/lib/components/Input/Input.stories.tsx +60 -0
- package/lib/components/Input/Input.tsx +150 -0
- package/lib/components/Input/__tests__/Input.test.tsx +108 -0
- package/lib/components/Input/__tests__/__snapshots__/Input.test.tsx.snap +51 -0
- package/lib/components/Input/index.ts +2 -0
- package/lib/components/Label/Label.stories.tsx +47 -0
- package/lib/components/Label/Label.tsx +99 -0
- package/lib/components/Label/__tests__/Label.test.tsx +121 -0
- package/lib/components/Label/__tests__/__snapshots__/Label.test.tsx.snap +76 -0
- package/lib/components/Label/index.ts +2 -0
- package/lib/components/Layout/Layout.stories.tsx +461 -0
- package/lib/components/Layout/Layout.tsx +78 -0
- package/lib/components/Layout/__tests__/Layout.test.tsx +51 -0
- package/lib/components/Layout/__tests__/__snapshots__/Layout.test.tsx.snap +25 -0
- package/lib/components/Layout/index.ts +2 -0
- package/lib/components/Link/Link.stories.tsx +32 -0
- package/lib/components/Link/Link.tsx +86 -0
- package/lib/components/Link/__tests__/__snapshots__/link.test.tsx.snap +19 -0
- package/lib/components/Link/__tests__/link.test.tsx +67 -0
- package/lib/components/Link/index.ts +2 -0
- package/lib/components/Menu/Menu.context.tsx +147 -0
- package/lib/components/Menu/Menu.tsx +68 -0
- package/lib/components/Menu/MenuContent.tsx +137 -0
- package/lib/components/Menu/MenuItem.tsx +84 -0
- package/lib/components/Menu/MenuSection.tsx +46 -0
- package/lib/components/Menu/MenuTrigger.tsx +32 -0
- package/lib/components/Menu/index.ts +8 -0
- package/lib/components/Modal/Modal.stories.tsx +48 -0
- package/lib/components/Modal/Modal.tsx +107 -0
- package/lib/components/Modal/__tests__/Modal.test.tsx +17 -0
- package/lib/components/Modal/__tests__/__snapshots__/Modal.test.tsx.snap +21 -0
- package/lib/components/Modal/index.ts +2 -0
- package/lib/components/Overlay/Overlay.stories.tsx +218 -0
- package/lib/components/Overlay/Overlay.tsx +197 -0
- package/lib/components/Overlay/index.ts +2 -0
- package/lib/components/Pagination/Pagination.stories.tsx +62 -0
- package/lib/components/Pagination/Pagination.tsx +81 -0
- package/lib/components/Pagination/PaginationControls.tsx +172 -0
- package/lib/components/Pagination/PaginationInfo.tsx +65 -0
- package/lib/components/Pagination/__tests__/getPaginationButtons.test.ts +96 -0
- package/lib/components/Pagination/getPaginationButtons.ts +51 -0
- package/lib/components/Pagination/index.tsx +6 -0
- package/lib/components/Paragraph/Paragraph.stories.tsx +134 -0
- package/lib/components/Paragraph/Paragraph.tsx +95 -0
- package/lib/components/Paragraph/__tests__/Paragraph.test.tsx +76 -0
- package/lib/components/Paragraph/__tests__/__snapshots__/Paragraph.test.tsx.snap +46 -0
- package/lib/components/Paragraph/index.ts +6 -0
- package/lib/components/Radio/LabelledRadio.tsx +111 -0
- package/lib/components/Radio/Radio.stories.tsx +30 -0
- package/lib/components/Radio/Radio.tsx +138 -0
- package/lib/components/Radio/__tests__/Radio.test.tsx +87 -0
- package/lib/components/Radio/__tests__/__snapshots__/Radio.test.tsx.snap +41 -0
- package/lib/components/Radio/index.ts +4 -0
- package/lib/components/Select/Select.stories.tsx +27 -0
- package/lib/components/Select/Select.tsx +82 -0
- package/lib/components/Select/__tests__/Select.test.tsx +40 -0
- package/lib/components/Select/__tests__/__snapshots__/Select.test.tsx.snap +42 -0
- package/lib/components/Select/index.ts +2 -0
- package/lib/components/Snackbar/Snackbar.stories.tsx +93 -0
- package/lib/components/Snackbar/Snackbar.tsx +136 -0
- package/lib/components/Snackbar/__tests__/Snackbar.test.tsx +134 -0
- package/lib/components/Snackbar/__tests__/__snapshots__/Snackbar.test.tsx.snap +108 -0
- package/lib/components/Snackbar/index.ts +2 -0
- package/lib/components/Spinner/Spinner.stories.tsx +53 -0
- package/lib/components/Spinner/Spinner.tsx +75 -0
- package/lib/components/Spinner/__tests__/Spinner.test.tsx +41 -0
- package/lib/components/Spinner/__tests__/__snapshots__/Spinner.test.tsx.snap +73 -0
- package/lib/components/Spinner/index.tsx +2 -0
- package/lib/components/Table/Table.tsx +68 -0
- package/lib/components/Table/index.ts +2 -0
- package/lib/components/Tabs/Tab.tsx +83 -0
- package/lib/components/Tabs/TabContext.tsx +20 -0
- package/lib/components/Tabs/Tabs.stories.tsx +89 -0
- package/lib/components/Tabs/Tabs.tsx +98 -0
- package/lib/components/Tabs/__tests__/Tabs.test.tsx +116 -0
- package/lib/components/Tabs/__tests__/__snapshots__/Tabs.test.tsx.snap +185 -0
- package/lib/components/Tabs/index.ts +2 -0
- package/lib/components/Textarea/Textarea.stories.tsx +55 -0
- package/lib/components/Textarea/Textarea.tsx +107 -0
- package/lib/components/Textarea/__tests__/Textarea.test.tsx +125 -0
- package/lib/components/Textarea/__tests__/__snapshots__/Textarea.test.tsx.snap +35 -0
- package/lib/components/Textarea/index.ts +2 -0
- package/lib/components/Toggle/Documentation.mdx +114 -0
- package/lib/components/Toggle/Toggle.stories.tsx +56 -0
- package/lib/components/Toggle/Toggle.tsx +93 -0
- package/lib/components/Toggle/ToggleHandle.tsx +46 -0
- package/lib/components/Toggle/index.ts +2 -0
- package/lib/components/Tooltip/Tooltip.stories.tsx +17 -0
- package/lib/components/Tooltip/Tooltip.tsx +44 -0
- package/lib/components/Tooltip/__tests__/__snapshots__/tooltip.test.tsx.snap +19 -0
- package/lib/components/Tooltip/__tests__/tooltip.test.tsx +48 -0
- package/lib/components/Tooltip/index.ts +2 -0
- package/lib/components/UclLogo/UclLogo.stories.tsx +44 -0
- package/lib/components/UclLogo/UclLogo.tsx +26 -0
- package/lib/components/UclLogo/UclLogoNegativeSpace.tsx +39 -0
- package/lib/components/UclLogo/__tests__/UclLogo.test.tsx +26 -0
- package/lib/components/UclLogo/__tests__/__snapshots__/UclLogo.test.tsx.snap +36 -0
- package/lib/components/UclLogo/index.ts +5 -0
- package/lib/components/UclLogo/ucl-logo.svg +47 -0
- package/lib/components/common/Common.mdx +82 -0
- package/lib/components/common/marginsStyle.ts +103 -0
- package/lib/components/index.ts +132 -0
- package/lib/hooks/useMediaQuery.ts +25 -0
- package/lib/index.ts +3 -0
- package/lib/theme/Colours.mdx +44 -0
- package/lib/theme/Icons.mdx +30 -0
- package/lib/theme/Theme.mdx +25 -0
- package/lib/theme/Typography.mdx +79 -0
- package/lib/theme/defaultTheme.ts +423 -0
- package/lib/theme/index.ts +10 -0
- package/lib/theme/useTheme.tsx +34 -0
- package/lib/types/image.d.ts +19 -0
- package/package.json +100 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { css } from '@emotion/css';
|
|
2
|
+
import { ColumnHeadings, Day } from '../';
|
|
3
|
+
import useTheme from '../../../../theme/useTheme';
|
|
4
|
+
import { getDatesForCalendarGrid } from '../../utils';
|
|
5
|
+
|
|
6
|
+
interface CalendarGridProps {
|
|
7
|
+
date: Date | null | undefined;
|
|
8
|
+
onDatePick: (date: Date) => void;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
const CalendarGrid = ({
|
|
12
|
+
date,
|
|
13
|
+
onDatePick,
|
|
14
|
+
}: CalendarGridProps) => {
|
|
15
|
+
const [theme] = useTheme();
|
|
16
|
+
|
|
17
|
+
const dates = date
|
|
18
|
+
? getDatesForCalendarGrid(date)
|
|
19
|
+
: getDatesForCalendarGrid(new Date());
|
|
20
|
+
|
|
21
|
+
const gridStyle = css`
|
|
22
|
+
display: grid;
|
|
23
|
+
grid-template-columns: repeat(7, 1fr);
|
|
24
|
+
gap: 0;
|
|
25
|
+
text-align: center;
|
|
26
|
+
font-family: ${theme.font.family.primary};
|
|
27
|
+
font-weight: 400;
|
|
28
|
+
user-select: none;
|
|
29
|
+
`;
|
|
30
|
+
|
|
31
|
+
return (
|
|
32
|
+
<div className={gridStyle}>
|
|
33
|
+
<ColumnHeadings />
|
|
34
|
+
{dates.map((mappedDate) => (
|
|
35
|
+
<Day
|
|
36
|
+
key={mappedDate.toISOString()}
|
|
37
|
+
date={mappedDate}
|
|
38
|
+
isSelected={
|
|
39
|
+
date?.toDateString() ===
|
|
40
|
+
mappedDate.toDateString()
|
|
41
|
+
}
|
|
42
|
+
isToday={
|
|
43
|
+
mappedDate.toDateString() ===
|
|
44
|
+
new Date().toDateString()
|
|
45
|
+
}
|
|
46
|
+
isInCurrentMonth={
|
|
47
|
+
date
|
|
48
|
+
? mappedDate.getMonth() === date?.getMonth()
|
|
49
|
+
: mappedDate.getMonth() ===
|
|
50
|
+
new Date().getMonth()
|
|
51
|
+
}
|
|
52
|
+
onPick={onDatePick}
|
|
53
|
+
/>
|
|
54
|
+
))}
|
|
55
|
+
</div>
|
|
56
|
+
);
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
export default CalendarGrid;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './CalendarGrid';
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { css } from '@emotion/css';
|
|
2
|
+
import MonthSelector from '../MonthSelector';
|
|
3
|
+
import CalendarGrid from '../CalendarGrid';
|
|
4
|
+
import useTheme from '../../../../theme/useTheme';
|
|
5
|
+
|
|
6
|
+
interface CalendarMenuProps {
|
|
7
|
+
date: Date | null | undefined;
|
|
8
|
+
setDate: (date: Date) => void;
|
|
9
|
+
onDatePick: () => void;
|
|
10
|
+
testId?: string;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const CalendarMenu = ({
|
|
14
|
+
date,
|
|
15
|
+
setDate,
|
|
16
|
+
onDatePick,
|
|
17
|
+
testId = 'ucl',
|
|
18
|
+
}: CalendarMenuProps) => {
|
|
19
|
+
const [theme] = useTheme();
|
|
20
|
+
|
|
21
|
+
const onMonthChange = (change: number) => {
|
|
22
|
+
const newDate = date ? new Date(date) : new Date();
|
|
23
|
+
newDate.setMonth(newDate.getMonth() + change);
|
|
24
|
+
setDate(newDate);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
const style = css`
|
|
28
|
+
display: flex;
|
|
29
|
+
flex-direction: column;
|
|
30
|
+
align-items: center;
|
|
31
|
+
gap: 16px;
|
|
32
|
+
width: 280px;
|
|
33
|
+
height: 320px;
|
|
34
|
+
z-index: 10;
|
|
35
|
+
position: absolute;
|
|
36
|
+
top: 60px;
|
|
37
|
+
border: 1px solid ${theme.color.neutral.grey20};
|
|
38
|
+
padding: 16px;
|
|
39
|
+
background-color: ${theme.color.neutral.white};
|
|
40
|
+
`;
|
|
41
|
+
|
|
42
|
+
const handlePick = (pickedDate: Date) => {
|
|
43
|
+
setDate(pickedDate);
|
|
44
|
+
onDatePick();
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
return (
|
|
48
|
+
<div
|
|
49
|
+
className={style}
|
|
50
|
+
data-testid={testId + '-calendar-menu'}
|
|
51
|
+
>
|
|
52
|
+
<MonthSelector
|
|
53
|
+
date={date}
|
|
54
|
+
changeMonth={onMonthChange}
|
|
55
|
+
/>
|
|
56
|
+
<CalendarGrid
|
|
57
|
+
date={date}
|
|
58
|
+
onDatePick={handlePick}
|
|
59
|
+
/>
|
|
60
|
+
</div>
|
|
61
|
+
);
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
export default CalendarMenu;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './CalendarMenu';
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { css } from '@emotion/css';
|
|
2
|
+
import { useTheme } from '../../../../theme';
|
|
3
|
+
|
|
4
|
+
const ColumnHeadings = () => {
|
|
5
|
+
const [theme] = useTheme();
|
|
6
|
+
|
|
7
|
+
const days = ['M', 'T', 'W', 'T', 'F', 'S', 'S'];
|
|
8
|
+
|
|
9
|
+
const headingStyle = (isWeekend: boolean) => css`
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
justify-content: center;
|
|
13
|
+
width: 40px;
|
|
14
|
+
height: 32px;
|
|
15
|
+
color: ${isWeekend
|
|
16
|
+
? theme.color.system.orange100
|
|
17
|
+
: theme.color.neutral.grey60};
|
|
18
|
+
font-weight: 700;
|
|
19
|
+
`;
|
|
20
|
+
|
|
21
|
+
return (
|
|
22
|
+
<>
|
|
23
|
+
{days.map((day, index) => (
|
|
24
|
+
<div
|
|
25
|
+
key={index}
|
|
26
|
+
className={headingStyle(index >= 5)}
|
|
27
|
+
>
|
|
28
|
+
{day}
|
|
29
|
+
</div>
|
|
30
|
+
))}
|
|
31
|
+
</>
|
|
32
|
+
);
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
export default ColumnHeadings;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './ColumnHeadings';
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
import { css } from '@emotion/css';
|
|
2
|
+
import { Icon } from '../../..';
|
|
3
|
+
import { useTheme } from '../../../../theme';
|
|
4
|
+
import { useState, useRef, useEffect } from 'react';
|
|
5
|
+
import { parseDate } from '../../utils';
|
|
6
|
+
|
|
7
|
+
interface DateFieldProps {
|
|
8
|
+
date: Date | null | undefined;
|
|
9
|
+
onChange: (date: Date | null | undefined) => void;
|
|
10
|
+
testId?: string;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const DateField = ({
|
|
14
|
+
date,
|
|
15
|
+
onChange,
|
|
16
|
+
testId,
|
|
17
|
+
}: DateFieldProps) => {
|
|
18
|
+
const [theme] = useTheme();
|
|
19
|
+
|
|
20
|
+
// Derived props (tidier than using `date?.getDate()`, etc, everywhere.)
|
|
21
|
+
const day =
|
|
22
|
+
date?.getDate().toString().padStart(2, '0') ?? '';
|
|
23
|
+
const month = date
|
|
24
|
+
? (date.getMonth() + 1).toString().padStart(2, '0')
|
|
25
|
+
: '';
|
|
26
|
+
const year = date?.getFullYear().toString() ?? '';
|
|
27
|
+
|
|
28
|
+
const [displayDate, setDisplayDate] = useState('');
|
|
29
|
+
const inputRef = useRef<HTMLInputElement>(null);
|
|
30
|
+
|
|
31
|
+
useEffect(() => {
|
|
32
|
+
// Format: DD/MM/YYYY
|
|
33
|
+
setDisplayDate(date ? `${day}/${month}/${year}` : '');
|
|
34
|
+
}, [date, day, month, year]);
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Handles the change event for the date input field.
|
|
38
|
+
*
|
|
39
|
+
* This function ensures that only valid characters for a date are accepted
|
|
40
|
+
* in the input field. The accepted characters include digits (0-9), slashes (/),
|
|
41
|
+
* spaces, and hyphens (-). If the input contains any other characters, the function
|
|
42
|
+
* will not update the display date.
|
|
43
|
+
*
|
|
44
|
+
* @param event - The change event triggered by the input field.
|
|
45
|
+
*/
|
|
46
|
+
const handleInputChange = (
|
|
47
|
+
event: React.ChangeEvent<HTMLInputElement>
|
|
48
|
+
) => {
|
|
49
|
+
// Accepted characters: 0-9, /, space, hyphen
|
|
50
|
+
const regex = new RegExp('^[0123456789\\/ \\-]*$');
|
|
51
|
+
if (!regex.test(event.target.value)) return;
|
|
52
|
+
|
|
53
|
+
setDisplayDate(event.target.value);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
const resetDate = () => {
|
|
57
|
+
setDisplayDate(date ? `${day}/${month}/${year}` : '');
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
const handleParseDate = () => {
|
|
61
|
+
const parsedDate = parseDate(displayDate);
|
|
62
|
+
if (parsedDate) onChange(parsedDate);
|
|
63
|
+
else resetDate();
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
const handleInputKeyDown = (
|
|
67
|
+
event: React.KeyboardEvent<HTMLDivElement>
|
|
68
|
+
) => {
|
|
69
|
+
if (event.key === 'Enter') handleParseDate();
|
|
70
|
+
else if (event.key === 'Escape') resetDate();
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
const handleKeyDownEventPropagation = (
|
|
74
|
+
event: React.KeyboardEvent<HTMLDivElement>
|
|
75
|
+
) => {
|
|
76
|
+
// Prevent event bubbling any further, so arrow keys presses don't affect `<CalendarGrid>`
|
|
77
|
+
event.stopPropagation();
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
const containerStyle = css`
|
|
81
|
+
display: flex;
|
|
82
|
+
align-items: center;
|
|
83
|
+
justify-content: space-between;
|
|
84
|
+
width: 200px;
|
|
85
|
+
height: 48px;
|
|
86
|
+
padding: 0 16px;
|
|
87
|
+
border: 1px solid ${theme.color.neutral.grey60};
|
|
88
|
+
color: ${theme.color.neutral.black};
|
|
89
|
+
background-color: ${theme.color.neutral.white};
|
|
90
|
+
cursor: pointer;
|
|
91
|
+
|
|
92
|
+
&:focus-visible {
|
|
93
|
+
outline: none;
|
|
94
|
+
box-shadow: ${theme.boxShadow.focus};
|
|
95
|
+
}
|
|
96
|
+
`;
|
|
97
|
+
|
|
98
|
+
const inputStyle = css`
|
|
99
|
+
width: 150px;
|
|
100
|
+
font-family: ${theme.font.family.primary};
|
|
101
|
+
font-size: 16px;
|
|
102
|
+
text-align: left;
|
|
103
|
+
border: none;
|
|
104
|
+
padding: 6px;
|
|
105
|
+
letter-spacing: 1px;
|
|
106
|
+
color: ${theme.color.text.primary};
|
|
107
|
+
caret-color: ${theme.color.text.primary};
|
|
108
|
+
|
|
109
|
+
&::placeholder {
|
|
110
|
+
color: ${theme.color.neutral.grey40};
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
&::selection {
|
|
114
|
+
background-color: ${theme.color.neutral.grey60};
|
|
115
|
+
color: ${theme.color.neutral.white};
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
&:focus {
|
|
119
|
+
outline: none;
|
|
120
|
+
background-color: ${theme.color.interaction.blue10};
|
|
121
|
+
}
|
|
122
|
+
`;
|
|
123
|
+
|
|
124
|
+
return (
|
|
125
|
+
<div
|
|
126
|
+
className={containerStyle}
|
|
127
|
+
role='group'
|
|
128
|
+
aria-label='Date input'
|
|
129
|
+
onBlur={handleParseDate}
|
|
130
|
+
onClick={() => inputRef.current?.focus()}
|
|
131
|
+
data-testid={testId + '-date-field'}
|
|
132
|
+
>
|
|
133
|
+
<div onKeyDown={handleKeyDownEventPropagation}>
|
|
134
|
+
<input
|
|
135
|
+
className={inputStyle}
|
|
136
|
+
value={displayDate}
|
|
137
|
+
placeholder='DD/MM/YYYY'
|
|
138
|
+
onChange={handleInputChange}
|
|
139
|
+
onKeyDown={handleInputKeyDown}
|
|
140
|
+
type='text'
|
|
141
|
+
inputMode='numeric'
|
|
142
|
+
ref={inputRef}
|
|
143
|
+
aria-label='Date'
|
|
144
|
+
data-testid={testId + '-input'}
|
|
145
|
+
/>
|
|
146
|
+
</div>
|
|
147
|
+
<Icon.Calendar
|
|
148
|
+
onClick={handleParseDate}
|
|
149
|
+
data-testid={testId + '-calendar-icon'}
|
|
150
|
+
/>
|
|
151
|
+
</div>
|
|
152
|
+
);
|
|
153
|
+
};
|
|
154
|
+
|
|
155
|
+
export default DateField;
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
import {
|
|
2
|
+
describe,
|
|
3
|
+
test,
|
|
4
|
+
expect,
|
|
5
|
+
vi,
|
|
6
|
+
afterEach,
|
|
7
|
+
} from 'vitest';
|
|
8
|
+
import {
|
|
9
|
+
render,
|
|
10
|
+
screen,
|
|
11
|
+
fireEvent,
|
|
12
|
+
cleanup,
|
|
13
|
+
} from '@testing-library/react';
|
|
14
|
+
import { ThemeContextProvider } from '../../../../../theme';
|
|
15
|
+
import DateField from '../DateField';
|
|
16
|
+
|
|
17
|
+
const customRender = (ui: React.ReactElement) => {
|
|
18
|
+
return render(ui, {
|
|
19
|
+
wrapper: ({ children }) => (
|
|
20
|
+
<ThemeContextProvider>
|
|
21
|
+
{children}
|
|
22
|
+
</ThemeContextProvider>
|
|
23
|
+
),
|
|
24
|
+
});
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
describe('DateField', () => {
|
|
28
|
+
// Run cleanup after each test
|
|
29
|
+
afterEach(() => {
|
|
30
|
+
cleanup();
|
|
31
|
+
vi.resetAllMocks();
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
test('Renders without crashing', () => {
|
|
35
|
+
const testId = 'abc';
|
|
36
|
+
customRender(
|
|
37
|
+
<DateField
|
|
38
|
+
date={null}
|
|
39
|
+
onChange={vi.fn()}
|
|
40
|
+
testId={testId}
|
|
41
|
+
/>
|
|
42
|
+
);
|
|
43
|
+
const dateField = screen.getByTestId(
|
|
44
|
+
testId + '-date-field'
|
|
45
|
+
);
|
|
46
|
+
expect(dateField).toBeInTheDocument();
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
test('Displays placeholder text when `date` prop is null', () => {
|
|
50
|
+
const testId = 'abc';
|
|
51
|
+
customRender(
|
|
52
|
+
<DateField
|
|
53
|
+
date={null}
|
|
54
|
+
onChange={vi.fn()}
|
|
55
|
+
testId={testId}
|
|
56
|
+
/>
|
|
57
|
+
);
|
|
58
|
+
const inputField = screen.getByTestId(
|
|
59
|
+
testId + '-input'
|
|
60
|
+
) as HTMLInputElement;
|
|
61
|
+
expect(inputField.placeholder).toBe('DD/MM/YYYY');
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
test('Displays the correct date values when a date is present', () => {
|
|
65
|
+
const testId = 'abc';
|
|
66
|
+
const date = new Date('2025-02-01');
|
|
67
|
+
customRender(
|
|
68
|
+
<DateField
|
|
69
|
+
date={date}
|
|
70
|
+
onChange={vi.fn()}
|
|
71
|
+
testId={testId}
|
|
72
|
+
/>
|
|
73
|
+
);
|
|
74
|
+
const inputField = screen.getByTestId(
|
|
75
|
+
testId + '-input'
|
|
76
|
+
) as HTMLInputElement;
|
|
77
|
+
expect(inputField.value).toBe('01/02/2025');
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
test('Updates date value (from null)', () => {
|
|
81
|
+
const testId = 'abc';
|
|
82
|
+
const date = new Date('2025-02-01');
|
|
83
|
+
const onChange = vi.fn();
|
|
84
|
+
customRender(
|
|
85
|
+
<DateField
|
|
86
|
+
date={null}
|
|
87
|
+
onChange={onChange}
|
|
88
|
+
testId={testId}
|
|
89
|
+
/>
|
|
90
|
+
);
|
|
91
|
+
const inputField = screen.getByTestId(
|
|
92
|
+
testId + '-input'
|
|
93
|
+
) as HTMLInputElement;
|
|
94
|
+
|
|
95
|
+
fireEvent.change(inputField, {
|
|
96
|
+
target: { value: '01/02/2025' },
|
|
97
|
+
});
|
|
98
|
+
fireEvent.keyDown(inputField, { key: 'Enter' });
|
|
99
|
+
expect(onChange).toHaveBeenCalledWith(date);
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
test('Updates date value (from existing date)', () => {
|
|
103
|
+
const testId = 'abc';
|
|
104
|
+
const date = new Date('2025-01-01');
|
|
105
|
+
const onChange = vi.fn();
|
|
106
|
+
customRender(
|
|
107
|
+
<DateField
|
|
108
|
+
date={date}
|
|
109
|
+
onChange={onChange}
|
|
110
|
+
testId={testId}
|
|
111
|
+
/>
|
|
112
|
+
);
|
|
113
|
+
const inputField = screen.getByTestId(
|
|
114
|
+
testId + '-input'
|
|
115
|
+
) as HTMLInputElement;
|
|
116
|
+
|
|
117
|
+
fireEvent.change(inputField, {
|
|
118
|
+
target: { value: '01/02/2025' },
|
|
119
|
+
});
|
|
120
|
+
fireEvent.keyDown(inputField, { key: 'Enter' });
|
|
121
|
+
expect(onChange).toHaveBeenCalledWith(
|
|
122
|
+
new Date('2025-02-01')
|
|
123
|
+
);
|
|
124
|
+
});
|
|
125
|
+
|
|
126
|
+
test('Handles alternative date formats', () => {
|
|
127
|
+
const testId = 'abc';
|
|
128
|
+
const onChange = vi.fn();
|
|
129
|
+
customRender(
|
|
130
|
+
<DateField
|
|
131
|
+
date={null}
|
|
132
|
+
onChange={onChange}
|
|
133
|
+
testId={testId}
|
|
134
|
+
/>
|
|
135
|
+
);
|
|
136
|
+
const inputField = screen.getByTestId(
|
|
137
|
+
testId + '-input'
|
|
138
|
+
) as HTMLInputElement;
|
|
139
|
+
|
|
140
|
+
// With 1 digit for day and month, and 2 digits for year
|
|
141
|
+
fireEvent.change(inputField, {
|
|
142
|
+
target: { value: '3/2/25' },
|
|
143
|
+
});
|
|
144
|
+
fireEvent.keyDown(inputField, { key: 'Enter' });
|
|
145
|
+
expect(onChange).toHaveBeenCalledWith(
|
|
146
|
+
new Date('2025-02-03')
|
|
147
|
+
);
|
|
148
|
+
|
|
149
|
+
// With hyphens
|
|
150
|
+
fireEvent.change(inputField, {
|
|
151
|
+
target: { value: '20-03-2026' },
|
|
152
|
+
});
|
|
153
|
+
fireEvent.keyDown(inputField, { key: 'Enter' });
|
|
154
|
+
expect(onChange).toHaveBeenCalledWith(
|
|
155
|
+
new Date('2026-03-20')
|
|
156
|
+
);
|
|
157
|
+
|
|
158
|
+
// With spaces
|
|
159
|
+
fireEvent.change(inputField, {
|
|
160
|
+
target: { value: '10 11 27' },
|
|
161
|
+
});
|
|
162
|
+
fireEvent.keyDown(inputField, { key: 'Enter' });
|
|
163
|
+
expect(onChange).toHaveBeenCalledWith(
|
|
164
|
+
new Date('2027-11-10')
|
|
165
|
+
);
|
|
166
|
+
});
|
|
167
|
+
|
|
168
|
+
test('Resets date value on ESCAPE key press', () => {
|
|
169
|
+
const testId = 'abc';
|
|
170
|
+
const date = new Date('2025-01-01');
|
|
171
|
+
const onChange = vi.fn();
|
|
172
|
+
customRender(
|
|
173
|
+
<DateField
|
|
174
|
+
date={date}
|
|
175
|
+
onChange={onChange}
|
|
176
|
+
testId={testId}
|
|
177
|
+
/>
|
|
178
|
+
);
|
|
179
|
+
const inputField = screen.getByTestId(
|
|
180
|
+
testId + '-input'
|
|
181
|
+
) as HTMLInputElement;
|
|
182
|
+
|
|
183
|
+
fireEvent.change(inputField, {
|
|
184
|
+
target: { value: '10/10/2026' },
|
|
185
|
+
});
|
|
186
|
+
fireEvent.keyDown(inputField, { key: 'Escape' });
|
|
187
|
+
expect(inputField.value).toBe('01/01/2025');
|
|
188
|
+
});
|
|
189
|
+
|
|
190
|
+
// Any further tests can be added here
|
|
191
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './DateField';
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import Day from './Day';
|
|
3
|
+
|
|
4
|
+
const meta = {
|
|
5
|
+
title: 'Components/Work in progress/Datepicker/Day',
|
|
6
|
+
component: Day,
|
|
7
|
+
} satisfies Meta<typeof Day>;
|
|
8
|
+
|
|
9
|
+
export default meta;
|
|
10
|
+
type Story = StoryObj<typeof meta>;
|
|
11
|
+
|
|
12
|
+
export const Default: Story = {
|
|
13
|
+
args: {
|
|
14
|
+
date: new Date(),
|
|
15
|
+
},
|
|
16
|
+
render: (args) => {
|
|
17
|
+
args.date = args.date ? new Date(args.date) : null;
|
|
18
|
+
return <Day {...args} />;
|
|
19
|
+
},
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
export const Selected: Story = {
|
|
23
|
+
args: {
|
|
24
|
+
date: new Date(),
|
|
25
|
+
isSelected: true,
|
|
26
|
+
},
|
|
27
|
+
render: (args) => {
|
|
28
|
+
args.date = args.date ? new Date(args.date) : null;
|
|
29
|
+
return <Day {...args} />;
|
|
30
|
+
},
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export const Today: Story = {
|
|
34
|
+
args: {
|
|
35
|
+
date: new Date(),
|
|
36
|
+
isToday: true,
|
|
37
|
+
},
|
|
38
|
+
render: (args) => {
|
|
39
|
+
args.date = args.date ? new Date(args.date) : null;
|
|
40
|
+
return <Day {...args} />;
|
|
41
|
+
},
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
export const Disabled: Story = {
|
|
45
|
+
args: {
|
|
46
|
+
date: new Date(),
|
|
47
|
+
isDisabled: true,
|
|
48
|
+
},
|
|
49
|
+
render: (args) => {
|
|
50
|
+
args.date = args.date ? new Date(args.date) : null;
|
|
51
|
+
return <Day {...args} />;
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export const NotInCurrentMonth: Story = {
|
|
56
|
+
args: {
|
|
57
|
+
date: new Date(),
|
|
58
|
+
isInCurrentMonth: false,
|
|
59
|
+
},
|
|
60
|
+
render: (args) => {
|
|
61
|
+
args.date = args.date ? new Date(args.date) : null;
|
|
62
|
+
return <Day {...args} />;
|
|
63
|
+
},
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
export const AlertOnPick: Story = {
|
|
67
|
+
name: '(Trigger alert on pick)',
|
|
68
|
+
args: {
|
|
69
|
+
date: new Date(),
|
|
70
|
+
},
|
|
71
|
+
render: (args) => {
|
|
72
|
+
args.date = args.date ? new Date(args.date) : null;
|
|
73
|
+
const onPick = (date: Date) => alert(`Picked date: ${date.toDateString()}`);
|
|
74
|
+
return (
|
|
75
|
+
<Day
|
|
76
|
+
{...args}
|
|
77
|
+
onPick={onPick}
|
|
78
|
+
/>
|
|
79
|
+
);
|
|
80
|
+
},
|
|
81
|
+
};
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { css } from '@emotion/css';
|
|
2
|
+
import { useTheme } from '../../../../theme/';
|
|
3
|
+
|
|
4
|
+
export interface DayProps {
|
|
5
|
+
date: Date | null | undefined;
|
|
6
|
+
isSelected?: boolean;
|
|
7
|
+
isToday?: boolean;
|
|
8
|
+
isInCurrentMonth?: boolean;
|
|
9
|
+
isDisabled?: boolean;
|
|
10
|
+
onPick?: (date: Date) => void;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const Day = ({
|
|
14
|
+
date,
|
|
15
|
+
isSelected,
|
|
16
|
+
isToday = false,
|
|
17
|
+
isInCurrentMonth = true,
|
|
18
|
+
isDisabled = false,
|
|
19
|
+
onPick,
|
|
20
|
+
}: DayProps) => {
|
|
21
|
+
const [theme] = useTheme();
|
|
22
|
+
|
|
23
|
+
const onClick = () => {
|
|
24
|
+
if (date && onPick) onPick(date);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
const backgroundStyle = css`
|
|
28
|
+
display: flex;
|
|
29
|
+
justify-content: center;
|
|
30
|
+
align-items: center;
|
|
31
|
+
width: 40px;
|
|
32
|
+
height: 40px;
|
|
33
|
+
background-color: ${theme.color.neutral.white};
|
|
34
|
+
cursor: pointer;
|
|
35
|
+
outline: none;
|
|
36
|
+
|
|
37
|
+
&:hover {
|
|
38
|
+
background-color: ${theme.color.neutral.grey10};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
${isSelected &&
|
|
42
|
+
css`
|
|
43
|
+
background-color: ${theme.color.interaction.blue70};
|
|
44
|
+
color: ${theme.color.text.inverted};
|
|
45
|
+
|
|
46
|
+
&:hover {
|
|
47
|
+
background-color: ${theme.color.interaction
|
|
48
|
+
.blue100};
|
|
49
|
+
}
|
|
50
|
+
`}
|
|
51
|
+
${isDisabled &&
|
|
52
|
+
css`
|
|
53
|
+
cursor: not-allowed;
|
|
54
|
+
|
|
55
|
+
&:hover {
|
|
56
|
+
background-color: ${theme.color.neutral.white};
|
|
57
|
+
}
|
|
58
|
+
`}
|
|
59
|
+
`;
|
|
60
|
+
|
|
61
|
+
const foregroundStyle = css`
|
|
62
|
+
font-family: ${theme.font.family.primary};
|
|
63
|
+
user-select: none;
|
|
64
|
+
font-size: 16px;
|
|
65
|
+
|
|
66
|
+
${!isInCurrentMonth &&
|
|
67
|
+
css`
|
|
68
|
+
color: ${theme.color.neutral.grey40};
|
|
69
|
+
`}
|
|
70
|
+
${isToday &&
|
|
71
|
+
css`
|
|
72
|
+
font-weight: 700;
|
|
73
|
+
`}
|
|
74
|
+
${isDisabled &&
|
|
75
|
+
css`
|
|
76
|
+
color: ${theme.color.neutral.grey40};
|
|
77
|
+
`}
|
|
78
|
+
`;
|
|
79
|
+
|
|
80
|
+
return (
|
|
81
|
+
<div
|
|
82
|
+
className={backgroundStyle}
|
|
83
|
+
role='button'
|
|
84
|
+
aria-label={`Select ${date?.toDateString()}`}
|
|
85
|
+
onClick={onClick}
|
|
86
|
+
>
|
|
87
|
+
<div className={foregroundStyle}>
|
|
88
|
+
{date?.getDate()}
|
|
89
|
+
</div>
|
|
90
|
+
</div>
|
|
91
|
+
);
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
export default Day;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './Day';
|