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,93 @@
|
|
|
1
|
+
import { forwardRef, memo, ButtonHTMLAttributes } from 'react';
|
|
2
|
+
import { css, cx } from '@emotion/css';
|
|
3
|
+
import { useTheme } from '../../theme';
|
|
4
|
+
import Handle from './ToggleHandle';
|
|
5
|
+
|
|
6
|
+
export const NAME = 'ucl-uikit-toggle';
|
|
7
|
+
|
|
8
|
+
export interface ToggleProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
9
|
+
checked?: boolean;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export type Ref = HTMLButtonElement;
|
|
13
|
+
|
|
14
|
+
const Toggle = forwardRef<Ref, ToggleProps>(
|
|
15
|
+
(
|
|
16
|
+
{
|
|
17
|
+
checked = false,
|
|
18
|
+
disabled = false,
|
|
19
|
+
className,
|
|
20
|
+
onClick,
|
|
21
|
+
...props
|
|
22
|
+
}: ToggleProps,
|
|
23
|
+
ref
|
|
24
|
+
) => {
|
|
25
|
+
const [theme] = useTheme();
|
|
26
|
+
|
|
27
|
+
const baseStyle = css`
|
|
28
|
+
border: none;
|
|
29
|
+
outline: none;
|
|
30
|
+
padding: 0;
|
|
31
|
+
box-sizing: border-box;
|
|
32
|
+
position: relative;
|
|
33
|
+
width: 48px;
|
|
34
|
+
height: 24px;
|
|
35
|
+
border-radius: 12px;
|
|
36
|
+
background-color: ${theme.color.neutral.grey40};
|
|
37
|
+
cursor: pointer;
|
|
38
|
+
transition: background-color 0.2s ease-in-out;
|
|
39
|
+
&:focus-visible {
|
|
40
|
+
outline: none;
|
|
41
|
+
box-shadow: ${theme.boxShadow.focus};
|
|
42
|
+
}
|
|
43
|
+
`;
|
|
44
|
+
|
|
45
|
+
const checkedStyle = css`
|
|
46
|
+
background-color: ${theme.color.interaction.blue70};
|
|
47
|
+
`;
|
|
48
|
+
|
|
49
|
+
const disabledStyle = css`
|
|
50
|
+
background-color: ${theme.color.neutral.grey20};
|
|
51
|
+
cursor: not-allowed;
|
|
52
|
+
`;
|
|
53
|
+
|
|
54
|
+
const hoverStyle =
|
|
55
|
+
!disabled &&
|
|
56
|
+
css`
|
|
57
|
+
&:hover {
|
|
58
|
+
background-color: ${checked
|
|
59
|
+
? theme.color.interaction.blue80
|
|
60
|
+
: theme.color.neutral.grey60};
|
|
61
|
+
}
|
|
62
|
+
`;
|
|
63
|
+
|
|
64
|
+
const style = cx(
|
|
65
|
+
NAME,
|
|
66
|
+
baseStyle,
|
|
67
|
+
checked && !disabled && checkedStyle,
|
|
68
|
+
disabled && disabledStyle,
|
|
69
|
+
!disabled && hoverStyle,
|
|
70
|
+
className
|
|
71
|
+
);
|
|
72
|
+
|
|
73
|
+
return (
|
|
74
|
+
<button
|
|
75
|
+
data-test-id={NAME}
|
|
76
|
+
ref={ref}
|
|
77
|
+
role='toggle'
|
|
78
|
+
aria-checked={checked}
|
|
79
|
+
aria-disabled={disabled}
|
|
80
|
+
className={style}
|
|
81
|
+
onClick={!disabled ? onClick : undefined}
|
|
82
|
+
{...props}
|
|
83
|
+
>
|
|
84
|
+
<Handle
|
|
85
|
+
checked={checked}
|
|
86
|
+
disabled={disabled}
|
|
87
|
+
/>
|
|
88
|
+
</button>
|
|
89
|
+
);
|
|
90
|
+
}
|
|
91
|
+
);
|
|
92
|
+
|
|
93
|
+
export default memo(Toggle);
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import React, { memo } from 'react';
|
|
2
|
+
import { css, cx } from '@emotion/css';
|
|
3
|
+
import { useTheme } from '../../theme';
|
|
4
|
+
|
|
5
|
+
export const NAME = 'ucl-uikit-toggle__handle';
|
|
6
|
+
|
|
7
|
+
export interface ToggleHandleProps
|
|
8
|
+
extends React.HTMLAttributes<HTMLDivElement> {
|
|
9
|
+
checked: boolean;
|
|
10
|
+
disabled: boolean;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const ToggleHandle = ({ checked, className }: ToggleHandleProps) => {
|
|
14
|
+
const [theme] = useTheme();
|
|
15
|
+
|
|
16
|
+
const baseStyle = css`
|
|
17
|
+
box-sizing: border-box;
|
|
18
|
+
width: 20px;
|
|
19
|
+
height: 20px;
|
|
20
|
+
border-radius: 50%;
|
|
21
|
+
background-color: ${theme.color.neutral.white};
|
|
22
|
+
position: absolute;
|
|
23
|
+
top: 2px;
|
|
24
|
+
left: 2px;
|
|
25
|
+
pointer-events: none;
|
|
26
|
+
transition:
|
|
27
|
+
left 0.15s ease-in-out,
|
|
28
|
+
width 0.15s ease-in-out,
|
|
29
|
+
margin-left 0.15s ease-in-out;
|
|
30
|
+
`;
|
|
31
|
+
|
|
32
|
+
const checkedStyle = css`
|
|
33
|
+
left: 26px;
|
|
34
|
+
`;
|
|
35
|
+
|
|
36
|
+
const style = cx(NAME, baseStyle, checked && checkedStyle, className);
|
|
37
|
+
|
|
38
|
+
return (
|
|
39
|
+
<div
|
|
40
|
+
data-test-id={NAME}
|
|
41
|
+
className={style}
|
|
42
|
+
/>
|
|
43
|
+
);
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
export default memo(ToggleHandle);
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
|
|
3
|
+
import Tooltip from './Tooltip';
|
|
4
|
+
|
|
5
|
+
const meta = {
|
|
6
|
+
title: 'Components/Ready to use/Tooltip',
|
|
7
|
+
component: Tooltip,
|
|
8
|
+
args: {
|
|
9
|
+
children: 'Default tooltip text',
|
|
10
|
+
},
|
|
11
|
+
} satisfies Meta<typeof Tooltip>;
|
|
12
|
+
|
|
13
|
+
export default meta;
|
|
14
|
+
|
|
15
|
+
type Story = StoryObj<typeof meta>;
|
|
16
|
+
|
|
17
|
+
export const Default: Story = {};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { memo, forwardRef, HTMLAttributes } from 'react';
|
|
2
|
+
import { css, cx } from '@emotion/css';
|
|
3
|
+
import { useTheme } from '../../theme';
|
|
4
|
+
|
|
5
|
+
export const NAME = 'ucl-uikit-tooltip';
|
|
6
|
+
|
|
7
|
+
export interface TooltipProps extends HTMLAttributes<HTMLSpanElement> {
|
|
8
|
+
testId?: string;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export type Ref = HTMLSpanElement;
|
|
12
|
+
|
|
13
|
+
const Tooltip = forwardRef<Ref, TooltipProps>(
|
|
14
|
+
({ testId = NAME, className, children, ...props }, ref) => {
|
|
15
|
+
const [theme] = useTheme();
|
|
16
|
+
|
|
17
|
+
const baseStyle = css`
|
|
18
|
+
background-color: ${theme.color.neutral.grey90};
|
|
19
|
+
color: ${theme.color.text.inverted};
|
|
20
|
+
font-family: ${theme.font.family.primary};
|
|
21
|
+
height: 32px;
|
|
22
|
+
padding: 4px 8px 4px 8px;
|
|
23
|
+
border-radius: ${theme.border.b2};
|
|
24
|
+
font-size: 16px;
|
|
25
|
+
display: inline;
|
|
26
|
+
white-space: nowrap;
|
|
27
|
+
`;
|
|
28
|
+
|
|
29
|
+
const style = cx(NAME, baseStyle, className);
|
|
30
|
+
|
|
31
|
+
return (
|
|
32
|
+
<span
|
|
33
|
+
ref={ref}
|
|
34
|
+
className={style}
|
|
35
|
+
data-testid={testId}
|
|
36
|
+
{...props}
|
|
37
|
+
>
|
|
38
|
+
{children}
|
|
39
|
+
</span>
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
);
|
|
43
|
+
|
|
44
|
+
export default memo(Tooltip);
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
2
|
+
|
|
3
|
+
exports[`Tooltip > snapshot: no props 1`] = `
|
|
4
|
+
<span
|
|
5
|
+
class="ucl-uikit-tooltip css-h4sax9"
|
|
6
|
+
data-testid="ucl-uikit-tooltip"
|
|
7
|
+
>
|
|
8
|
+
test
|
|
9
|
+
</span>
|
|
10
|
+
`;
|
|
11
|
+
|
|
12
|
+
exports[`Tooltip > snapshot: testId prop 1`] = `
|
|
13
|
+
<span
|
|
14
|
+
class="ucl-uikit-tooltip css-h4sax9"
|
|
15
|
+
data-testid="test123"
|
|
16
|
+
>
|
|
17
|
+
Info Tooltip
|
|
18
|
+
</span>
|
|
19
|
+
`;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { describe, expect, test } from 'vitest';
|
|
2
|
+
import { render, screen } from '@testing-library/react';
|
|
3
|
+
import Tooltip from '../Tooltip';
|
|
4
|
+
import { ThemeContextProvider } from '../../../theme/useTheme';
|
|
5
|
+
|
|
6
|
+
describe('Tooltip', () => {
|
|
7
|
+
// Snapshot tests
|
|
8
|
+
|
|
9
|
+
test('snapshot: no props', () => {
|
|
10
|
+
const renderResult = render(
|
|
11
|
+
<ThemeContextProvider>
|
|
12
|
+
<Tooltip>test</Tooltip>
|
|
13
|
+
</ThemeContextProvider>
|
|
14
|
+
);
|
|
15
|
+
expect(renderResult.container.firstChild).toMatchSnapshot();
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
test('snapshot: testId prop', () => {
|
|
19
|
+
const renderResult = render(
|
|
20
|
+
<ThemeContextProvider>
|
|
21
|
+
<Tooltip testId='test123'> Info Tooltip </Tooltip>
|
|
22
|
+
</ThemeContextProvider>
|
|
23
|
+
);
|
|
24
|
+
expect(renderResult.container.firstChild).toMatchSnapshot();
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
// // Interaction tests
|
|
28
|
+
|
|
29
|
+
test('test ID: default', () => {
|
|
30
|
+
render(
|
|
31
|
+
<ThemeContextProvider>
|
|
32
|
+
<Tooltip> Info Tooltip </Tooltip>
|
|
33
|
+
</ThemeContextProvider>
|
|
34
|
+
);
|
|
35
|
+
const tooltip = screen.getByTestId('ucl-uikit-tooltip');
|
|
36
|
+
expect(tooltip).toBeDefined();
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
test('test ID: custom', () => {
|
|
40
|
+
render(
|
|
41
|
+
<ThemeContextProvider>
|
|
42
|
+
<Tooltip testId='custom-test-id'> Info Tooltip </Tooltip>
|
|
43
|
+
</ThemeContextProvider>
|
|
44
|
+
);
|
|
45
|
+
const tooltip = screen.getByTestId('custom-test-id');
|
|
46
|
+
expect(tooltip).toBeDefined();
|
|
47
|
+
});
|
|
48
|
+
});
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import UclLogo from './UclLogo';
|
|
3
|
+
|
|
4
|
+
// Need this because the `UclLogo` component will default to 0 size :(
|
|
5
|
+
|
|
6
|
+
type UclLogoPropsAndCustomArgs = React.ComponentProps<typeof UclLogo> & {
|
|
7
|
+
size?: number;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const meta: Meta<UclLogoPropsAndCustomArgs> = {
|
|
11
|
+
title: 'Components/Deprecated/UclLogo',
|
|
12
|
+
component: UclLogo,
|
|
13
|
+
argTypes: {
|
|
14
|
+
fill: {
|
|
15
|
+
control: 'color',
|
|
16
|
+
},
|
|
17
|
+
size: {
|
|
18
|
+
name: 'CSS `height` property',
|
|
19
|
+
control: {
|
|
20
|
+
type: 'number',
|
|
21
|
+
min: 0,
|
|
22
|
+
step: 1,
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export default meta;
|
|
29
|
+
|
|
30
|
+
type Story = StoryObj<UclLogoPropsAndCustomArgs>;
|
|
31
|
+
|
|
32
|
+
export const Default: Story = {};
|
|
33
|
+
|
|
34
|
+
export const ManualCSS: Story = {
|
|
35
|
+
args: {
|
|
36
|
+
size: 56,
|
|
37
|
+
},
|
|
38
|
+
render: (args) => (
|
|
39
|
+
<UclLogo
|
|
40
|
+
{...args}
|
|
41
|
+
style={{ height: args.size }}
|
|
42
|
+
/>
|
|
43
|
+
),
|
|
44
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { SVGAttributes, memo } from 'react';
|
|
2
|
+
|
|
3
|
+
export const NAME = 'ucl-uikit-logo';
|
|
4
|
+
|
|
5
|
+
export interface UclLogoProps extends SVGAttributes<SVGElement> {
|
|
6
|
+
testId?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const UclLogo = ({ testId, ...props }: UclLogoProps) => {
|
|
10
|
+
return (
|
|
11
|
+
<svg
|
|
12
|
+
xmlns='http://www.w3.org/2000/svg'
|
|
13
|
+
width='157'
|
|
14
|
+
height='40'
|
|
15
|
+
viewBox='0 0 157 40'
|
|
16
|
+
fill='currentColor'
|
|
17
|
+
data-testid={testId}
|
|
18
|
+
{...props}
|
|
19
|
+
>
|
|
20
|
+
<desc>Logo of University College London</desc>
|
|
21
|
+
<path d='m 60.405678,1.52 v 25.62 c 0,1.74 -0.06,3.55 -1.6,5 -0.76,0.69 -2.12,1.45 -4.19,1.45 -1.53,0 -3.12,-0.4 -4.18,-1.51 -1.48,-1.39 -1.548529,-3.190021 -1.54,-4.94 V 1.52 h -13.22 v 24.63 c 0.13,4.22 0.25,8.72 4.31,12.6 0.47,0.45 0.841814,1.24 1.53,1.24 v 0 h 25.72 v 0 c 0,0 1.07,-0.8 1.54,-1.24 4.91,-4.59 4.88306,-10.690077 4.91,-15.4 V 1.52 Z m 48.710002,25.09 c -0.47,1.39 -2.3,6.73 -8.44,6.73 -6.500002,0 -8.800002,-5.75 -8.800002,-11.85 0,-1.64 0,-6.29 3.13,-9.24 0.88,-0.87 2.71,-2.21 5.610002,-2.21 5.54,0 7.54,4.36 8.61,6.8 l 11.03,-5.4 c -0.89,-1.62 -1.71,-3.01 -3.48,-4.82 -4.37,-4.41 -10.39,-6.62 -16.7,-6.62 -14.120002,0 -21.610002,11.21 -21.610002,22.25 0,6.71 2.74,13.61 8.56,17.74 h 26.450002 c 0.98,-0.65 1.92,-1.4 2.79,-2.23 1.99,-1.97 3,-3.83 4.06,-5.81 z M 11.167848,7.86 h -0.11 l -0.03,-0.03 V 7.71 l -0.03,-0.03 h -0.11 l -0.03,-0.03 V 7.54 c 0,0 0,-0.02 -0.03,-0.02 h -0.07 c 0,0 -0.04,-0.02 -0.05,-0.05 V 7.39 c 0,-0.29 0,-1.21 -0.52,-1.89 -0.44,-0.65 -1.05,-0.99 -1.39,-1.15 0,-0.12 -0.16,-0.17 -0.26,-0.21 -0.02,0 -0.03,0 -0.04,-0.02 -0.05,0 -0.09,-0.04 -0.09,-0.07 V 3.99 c 0,0 0.03,-0.06 0.1,-0.06 0.02,0 0.03,0 0.03,-0.03 V 3.78 c 0,0 0,-0.04 -0.04,-0.04 h -0.12 c 0,0 -0.05,-0.02 -0.05,-0.05 V 3.63 c 0,0 -0.03,-0.06 -0.05,-0.07 V 2.77 l 0.03,-0.02 v 0 c 0,0 0.02,0 0.02,-0.02 V 2.65 c 0,0 0,-0.02 -0.02,-0.02 h -0.04 c 0,0 -0.02,-0.02 -0.02,-0.06 0,-0.04 0,-0.05 0.02,-0.06 h 0.03 0.03 V 2.43 h -0.03 -0.03 c 0,0 -0.03,0 -0.06,-0.03 -0.13,-0.1 -0.27,-0.26 -0.27,-0.28 V 2.09 c 0,0 0,-0.05 -0.05,-0.05 -0.05,0 -0.03,-0.03 0,-0.03 V 1.98 1.93 l -0.06,-0.12 v 0 c 0,0 -0.07,0.1 -0.07,0.12 v 0.05 c 0,0 0,0.03 0.02,0.03 0.02,0 0.02,0.03 0,0.03 -0.04,0 -0.05,0.03 -0.05,0.05 v 0.03 c 0,0 -0.14,0.18 -0.28,0.28 0,0.02 -0.05,0.03 -0.04,0.03 h -0.04 -0.02 v 0.08 h 0.02 0.03 c 0,0 0.02,0.02 0.02,0.06 0,0.04 0,0.05 -0.02,0.06 h -0.04 c 0,0 -0.02,0 -0.02,0.02 v 0.08 c 0,0 0,0.02 0.02,0.02 h 0.02 c 0,0 0.026878,2.452e-4 0.03,0.02 v 0.79 0 c 0,0 -0.05,0.03 -0.05,0.07 v 0.06 c 0,0 0,0.05 -0.04,0.05 h -0.12 c 0,0 -0.05,0.02 -0.05,0.04 V 3.9 c 0,0 0.02,0.03 0.03,0.03 0.06,0 0.11,0.02 0.11,0.06 v 0.06 c 0,0 -0.05,0.06 -0.09,0.07 h -0.03 c -0.1,0.04 -0.27,0.1 -0.28,0.23 -0.34,0.16 -0.95,0.5 -1.39,1.15 -0.51,0.69 -0.52,1.62 -0.52,1.9 v 0.07 c 0,0 -0.09,0.05 -0.06,0.05 h -0.07 l -0.03,0.02 v 0.11 c 0,0 0,0.03 -0.03,0.03 h -0.11 c 0,0 -0.03,0 -0.03,0.03 v 0.12 c 0,0 0,0.03 -0.03,0.03 h -0.11 c 0,0 -0.03,0 -0.03,0.03 v 0.12 c 0,0 0,0.02 0.02,0.02 0.06,0 0.13,0.03 0.13,0.1 0,0.12 0.07,0.13 0.1,0.13 v 0.47 c 0,0.1 -0.08,0.15 -0.13,0.16 l -0.02,0.02 v 0.48 l 3.26,-0.71 v 0 l 3.26,0.71 V 8.91 c 0,0 0,-0.02 -0.02,-0.02 -0.05,0 -0.13,-0.05 -0.13,-0.16 V 8.27 c 0,0 0.1,-0.02 0.1,-0.14 0,-0.07 0.07,-0.1 0.1,-0.1 0.02,0 0.02,-1.35e-5 0.02,-0.02 V 7.89 l -0.03,-0.03 z m 3.62,10.3 v -0.94 h -0.56 v -0.52 0 h -0.07 v -0.03 -0.06 -0.02 l -0.06,-0.06 v -3.95 -0.02 0 c 0,0 0.0026,-0.01024 0.02,-0.02 v -0.07 -0.09 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 c 0,0 0.0082,-0.0039 0.02,-0.02 v -0.17 h 0.31 l 0.03,-0.03 0.11,-0.57 c 0.06,-0.12 0.18,-0.1 0.18,-0.1 h 0.02 l 0.11,-0.37 c 0,0 0.02,-0.03 -0.02,-0.04 -0.02,0 -7.13,-1.51 -7.13,-1.51 0,0 -7.10999996,1.51 -7.11999996,1.51 -0.04,0 -0.03,0.04 -0.03,0.04 l 0.1,0.36 v 0 c 0,0 0.12,0 0.18,0.09 l 0.1,0.58 c 0,0 0,0.03 0.05,0.03 h 0.31 v 0.18 h 0.02 0.04 c 0,0 0.02,0.02 0.02,0.05 0,0.03 0.02,0.16 0.12,0.25 0,0.02 0,0.05 -0.03,0.05 h -0.03 c 0,0 -0.03,0 -0.02,0.03 v 0.09 0.07 0.02 h 0.02 v 0.02 3.95 l -0.06,0.06 v 0.1 h -0.02 -0.05 -0.02 V 17.2 H 0.87784804 v 0.94 h -0.55 v 0.95 H 15.297848 v -0.95 h -0.56 z m -10.86,-5.69 v 0.08 l 0.02,0.02 v 0 c 0,0 0.019368,10e-6 0.02,0.02 v 3.95 l -0.06,0.06 v 0 0.07 0.02 h -0.06 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 0 c 0,0 -0.04,-0.04 -0.05,-0.06 v -3.95 -0.02 0 c 0,0 0.00259,-0.01024 0.02,-0.02 v -0.07 -0.09 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.1,-0.22 0.1,-0.25 0,-0.02 0,-0.04 0.03,-0.04 h 0.04 c 0,0 0.00816,-0.0039 0.02,-0.02 v -0.17 h 1.25 V 12 12.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.11,0.26 0.02,0 0,0.04 -0.02,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 v 0.09 z m 2.34,0 v 0.08 0.02 h 0.02 v 0.02 3.95 l -0.07,0.07 v 0.09 h -0.07 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.05 v 0 0 -0.08 0 l -0.07,-0.08 V 12.6 12.58 h 0.02 v -0.02 -0.07 c 0,0 0,-0.07 0.02,-0.09 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.03,-0.04 -0.03,-0.05 0.1,-0.08 0.12,-0.22 0.12,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.04 c 0,0 0.00818,-0.0039 0.02,-0.02 v -0.17 h 1.22 v 0.17 0.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.34,0 v 0.08 0.02 h 0.02 v 0.02 3.95 l -0.06,0.06 v 0 0.09 h -0.07 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 v -3.95 -0.02 h 0.02 v -0.02 -0.07 c 0,0 0,-0.07 0.02,-0.09 0,-0.02 0,-0.03 -0.03,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.03,-0.04 h 0.04 c 0,0 0.00818,-0.0039 0.02,-0.02 v -0.17 h 1.24 V 12 12.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.32,0 v 0.08 0.02 h 0.02 c 0,0 0.01937,10e-6 0.02,0.02 v 3.95 l -0.07,0.06 v 0.08 0.02 h -0.07 v 0.02 0.1 h -1.28 V 16.7 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 v -3.95 l 0.02,-0.02 v 0 c 0,0 0.02,-4e-5 0.02,-0.02 v -0.07 -0.09 -0.03 h -0.04 c 0,0 -0.03,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 V 12 11.83 h 1.22 V 12 c 0,0 0,0.02 0.02,0.02 h 0.04 c 0,0 0.03,0.02 0.03,0.04 0,0.03 0,0.17 0.11,0.26 0.02,0 0,0.04 -0.02,0.04 h -0.03 c 0,0 -0.03,0.02 -0.03,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.35,0 v 0.08 c 0,0 0,0.02 0.02,0.02 v 0 0.02 3.95 l -0.07,0.07 v 0.09 h -0.07 c 0,0 -0.03561,0.0075 -0.02,0.02 v 0.1 h -1.27 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 V 12.6 l 0.02,-0.02 v 0 c 0,0 0.0026,-0.01022 0.02,-0.02 V 12.49 12.4 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 v -0.02 -0.17 h 1.22 v 0.17 c 0,0 0.02,0.02 0.03,0.02 h 0.04 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.02,0.02 0,0.03 v 0.09 z M 67.235678,40 h -25.72 M 125.60568,39.99 V 1.46 h 13.16 v 30.29 h 17.08 v 8.24 h -30.25 z M 87.045678,40 v 0' />
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export default memo(UclLogo);
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { SVGAttributes, memo } from 'react';
|
|
2
|
+
|
|
3
|
+
export const NAME = 'ucl-uikit-logo--negative-space';
|
|
4
|
+
|
|
5
|
+
export interface UclLogoNegativeSpaceProps extends SVGAttributes<SVGElement> {
|
|
6
|
+
buildingFill?: string;
|
|
7
|
+
testId?: string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const UclLogoNegativeSpace = ({
|
|
11
|
+
buildingFill = '#FFFFFF',
|
|
12
|
+
testId,
|
|
13
|
+
...props
|
|
14
|
+
}: UclLogoNegativeSpaceProps) => {
|
|
15
|
+
return (
|
|
16
|
+
<svg
|
|
17
|
+
xmlns='http://www.w3.org/2000/svg'
|
|
18
|
+
width='200'
|
|
19
|
+
height='57'
|
|
20
|
+
viewBox='0 0 200 57'
|
|
21
|
+
fill='currentColor'
|
|
22
|
+
data-testid={testId}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
<desc>Logo of University College London</desc>
|
|
26
|
+
<path d='M0 0V57.4776H72.0838C71.5223 57.0837 70.9988 56.6749 70.5284 56.2363C66.3556 52.2895 66.3025 47.6961 66.1811 43.3999V19.0056H79.519V44.6189C79.519 46.3582 79.5797 48.1643 81.0667 49.5543C82.1365 50.6618 83.7449 51.0631 85.2927 51.0631C87.3791 51.0631 88.7447 50.305 89.5186 49.6137C91.0663 48.1643 91.127 46.3582 91.127 44.6189V19.0056H104.526V40.8431C104.526 45.548 104.526 51.6429 99.5789 56.2363C99.1085 56.6674 98.585 57.0837 98.0236 57.4776H118C112.12 53.345 109.359 46.4399 109.359 39.7356C109.359 28.6979 116.923 17.4893 131.156 17.4893C137.529 17.4893 143.599 19.6968 148.007 24.1119C149.797 25.9106 150.624 27.308 151.519 28.9283L140.389 34.332C139.312 31.8866 137.294 27.531 131.695 27.531C128.774 27.531 126.93 28.8689 126.035 29.7385C122.879 32.6968 122.879 37.3422 122.879 38.9774C122.879 45.0723 125.2 50.8253 131.755 50.8253C137.946 50.8253 139.797 45.4811 140.268 44.0912L151.58 49.4353C150.51 51.4125 149.494 53.2706 147.475 55.2403C146.611 56.0728 145.662 56.8161 144.668 57.4702H156.898V18.9461H170.176V49.2347H187.406V57.485H200V0H0Z' />
|
|
27
|
+
<path
|
|
28
|
+
d='M35.2775 25.5545C35.2775 25.6805 35.3532 25.6879 35.3835 25.6879V26.1477C35.3835 26.2515 35.3002 26.296 35.2548 26.3109C35.2472 26.3109 35.2321 26.3257 35.2321 26.3331V26.8077L38.5172 26.0958H38.5248L41.8099 26.8077V26.3331C41.8099 26.3183 41.7948 26.3109 41.7872 26.3109C41.7343 26.3034 41.651 26.2589 41.651 26.1551V25.6954C41.6813 25.6954 41.757 25.6805 41.757 25.5619C41.757 25.4877 41.8251 25.4581 41.8554 25.4581C41.8705 25.4581 41.8781 25.4506 41.8781 25.4432V25.3172C41.8781 25.2875 41.8478 25.2875 41.8478 25.2875H41.7343C41.704 25.2875 41.704 25.2652 41.704 25.2652V25.1466C41.704 25.1169 41.6737 25.1169 41.6737 25.1169H41.5677C41.5374 25.1169 41.5374 25.0873 41.5374 25.0873V24.976C41.5374 24.976 41.5374 24.9538 41.5072 24.9538H41.439C41.4163 24.9538 41.3936 24.9315 41.3861 24.9019C41.3785 24.7536 41.439 23.7006 40.8713 22.9367C40.4247 22.2842 39.8116 21.9505 39.471 21.7947C39.4634 21.6538 39.259 21.6019 39.1682 21.5648C39.1228 21.55 39.0774 21.5278 39.0774 21.4907C39.0774 21.4907 39.0774 21.4462 39.0774 21.4388C39.0774 21.3943 39.1152 21.3795 39.1833 21.3795C39.1985 21.3795 39.2136 21.3646 39.2136 21.3498V21.2237C39.2136 21.2089 39.1985 21.1866 39.1682 21.1866C39.1228 21.1866 39.0698 21.1866 39.0471 21.1866C39.0168 21.1866 39.0017 21.1644 39.0017 21.1422V21.0754C39.0017 21.0383 38.9714 21.0161 38.9487 21.0087V20.2226C38.9487 20.193 38.9714 20.2004 38.9865 20.2004H38.9941C39.0017 20.2004 39.0168 20.193 39.0168 20.1781V20.104C39.0168 20.0966 39.0092 20.0817 38.9941 20.0817H38.9563C38.9411 20.0743 38.9335 20.0595 38.9335 20.0224C38.9335 19.9853 38.9411 19.9705 38.9563 19.9631H38.9865C38.9941 19.9631 39.0092 19.9557 39.0092 19.9482V19.8741C39.0092 19.8667 39.0017 19.8593 38.9865 19.8593H38.9487C38.9335 19.8593 38.9184 19.8518 38.8957 19.837C38.7594 19.7332 38.6232 19.5775 38.6232 19.5552V19.5255C38.6232 19.5107 38.6081 19.4811 38.5702 19.4811C38.5324 19.4811 38.5399 19.444 38.5626 19.444C38.5778 19.444 38.5778 19.4366 38.5778 19.4217V19.3698C38.5778 19.3476 38.5097 19.2512 38.5097 19.2512H38.5021C38.5021 19.2512 38.434 19.3476 38.434 19.3698V19.4217C38.434 19.4366 38.4415 19.444 38.4491 19.444C38.4718 19.444 38.4718 19.4811 38.4415 19.4811C38.4037 19.4811 38.3885 19.5107 38.3885 19.5255C38.3885 19.5404 38.3885 19.5404 38.3885 19.5552C38.3885 19.5775 38.2523 19.7332 38.116 19.837C38.1009 19.8518 38.0858 19.8593 38.0706 19.8593H38.0328C38.0252 19.8593 38.0101 19.8667 38.0101 19.8741V19.9482C38.0101 19.9557 38.0176 19.9631 38.0328 19.9631H38.0631C38.0782 19.9631 38.0858 19.9853 38.0858 20.0224C38.0858 20.0595 38.0782 20.0743 38.0631 20.0817H38.0252C38.0176 20.0817 38.0025 20.0891 38.0025 20.104V20.1781C38.0025 20.1855 38.0101 20.2004 38.0252 20.2004C38.0328 20.2004 38.0328 20.2004 38.0328 20.2004C38.0479 20.2004 38.0706 20.193 38.0706 20.2226V21.0087C38.0479 21.0235 38.0176 21.0383 38.0176 21.0754V21.1422C38.0176 21.157 38.0025 21.1866 37.9722 21.1866C37.9495 21.1866 37.8965 21.1866 37.8511 21.1866C37.8284 21.1866 37.8057 21.2089 37.8057 21.2237V21.3498C37.8057 21.3646 37.8208 21.3795 37.836 21.3795C37.8965 21.3795 37.9419 21.3943 37.9419 21.4388C37.9419 21.4388 37.9419 21.4833 37.9419 21.4907C37.9419 21.5278 37.8965 21.55 37.8511 21.5648C37.7603 21.5945 37.5559 21.6464 37.5483 21.7947C37.2077 21.9505 36.587 22.2842 36.148 22.9367C35.5803 23.7006 35.6333 24.7536 35.6257 24.9019C35.6257 24.9315 35.603 24.9538 35.5727 24.9538H35.5046C35.4743 24.9538 35.4743 24.976 35.4743 24.976V25.0873C35.4743 25.0873 35.4743 25.1169 35.444 25.1169H35.3305C35.3305 25.1169 35.3002 25.1169 35.3002 25.1466V25.2652C35.3002 25.2652 35.3002 25.2875 35.2699 25.2875H35.1564C35.1564 25.2875 35.1261 25.2875 35.1261 25.3172V25.4432C35.1261 25.4581 35.1337 25.4581 35.1488 25.4581C35.2094 25.4581 35.2775 25.4877 35.2775 25.5545Z'
|
|
29
|
+
fill={buildingFill}
|
|
30
|
+
/>
|
|
31
|
+
<path
|
|
32
|
+
d='M45.4887 35.5656V34.6238H44.9286V34.1121C44.9286 34.1047 44.921 34.0973 44.9134 34.0973H44.8604C44.8529 34.0973 44.8529 34.0973 44.8453 34.0899C44.8453 34.0899 44.8377 34.0824 44.8377 34.075V34.0083C44.8377 34.0009 44.8377 34.0009 44.8302 33.9935C44.8226 33.986 44.7923 33.9564 44.7696 33.9341V29.9964C44.7696 29.9816 44.7772 29.9816 44.7772 29.9816H44.7923C44.8075 29.9816 44.8075 29.9668 44.8075 29.9594V29.8852C44.8075 29.8629 44.815 29.8185 44.8226 29.7962C44.8302 29.7814 44.8302 29.7665 44.7999 29.7665H44.7696C44.7393 29.7665 44.7318 29.7295 44.7469 29.7221C44.8453 29.6405 44.8604 29.4996 44.8604 29.4773C44.8604 29.4551 44.8604 29.4328 44.8832 29.4328H44.9286C44.9361 29.4328 44.9437 29.4254 44.9437 29.418V29.2474H45.2541C45.2919 29.2474 45.2919 29.2178 45.2919 29.2178L45.3979 28.6394C45.4584 28.5281 45.5796 28.543 45.5796 28.543H45.5947L45.7082 28.1796C45.7082 28.1796 45.7234 28.1499 45.6855 28.1425C45.6628 28.1351 38.5172 26.6371 38.5172 26.6371C38.5172 26.6371 31.3641 28.1425 31.3489 28.1425C31.3111 28.1499 31.3187 28.1796 31.3187 28.1796L31.4171 28.5356H31.4322C31.4322 28.5356 31.5457 28.5207 31.6063 28.6245L31.7123 29.203C31.7123 29.203 31.7123 29.24 31.7577 29.24H32.068V29.4106C32.068 29.418 32.0756 29.4254 32.0832 29.4254H32.1286C32.1513 29.4254 32.1513 29.4477 32.1513 29.4699C32.1513 29.4996 32.1664 29.6331 32.2648 29.7221C32.28 29.7369 32.2724 29.7665 32.2421 29.7665H32.2043C32.1816 29.7665 32.1816 29.7814 32.1891 29.7962C32.1967 29.811 32.1967 29.8629 32.1967 29.8852V29.9594C32.1967 29.9742 32.1967 29.9816 32.2119 29.9816H32.227C32.227 29.9816 32.2421 29.9816 32.2421 29.9964V33.9341C32.227 33.949 32.1891 33.986 32.1816 33.9935C32.174 33.9935 32.174 34.0009 32.174 34.0083V34.075C32.174 34.0824 32.174 34.0824 32.174 34.0899C32.1664 34.0899 32.1664 34.0973 32.1589 34.0973H32.1059C32.0983 34.0973 32.0907 34.1047 32.0907 34.1121V34.6238H31.5306V35.5656H30.978V36.5148H46.0489V35.5656H45.4887ZM43.8461 29.4328H43.8916C43.9143 29.4328 43.9143 29.4551 43.9143 29.4773C43.9143 29.507 43.9294 29.6405 44.0278 29.7295C44.0429 29.7443 44.0354 29.774 44.0051 29.774H43.9748C43.9521 29.774 43.9521 29.7888 43.9597 29.8036C43.9673 29.8185 43.9748 29.8704 43.9748 29.8926V29.9668C43.9748 29.9816 43.9748 29.989 43.99 29.989H44.0051C44.0051 29.989 44.0127 29.989 44.0127 30.0038V33.9415C43.9975 33.9564 43.9597 33.9935 43.9521 34.0009C43.9521 34.0009 43.9445 34.0083 43.9445 34.0157V34.0824C43.9445 34.0899 43.9445 34.0899 43.937 34.0973C43.937 34.0973 43.9294 34.1047 43.9218 34.1047H43.8688C43.8613 34.1047 43.8537 34.1121 43.8537 34.1195V34.2233H42.5745V34.1121C42.5745 34.1047 42.5669 34.0973 42.5593 34.0973H42.5063C42.4988 34.0973 42.4912 34.0973 42.4912 34.0899C42.4836 34.0899 42.4836 34.0824 42.4836 34.075V34.0083C42.4836 34.0009 42.4836 34.0009 42.4761 33.9935C42.4685 33.986 42.4382 33.9564 42.4155 33.9341V29.9964C42.4155 29.9816 42.4306 29.9816 42.4306 29.9816H42.4458C42.4609 29.9816 42.4609 29.9668 42.4609 29.9594V29.8852C42.4609 29.8629 42.4685 29.8185 42.4761 29.7962C42.4836 29.7814 42.4836 29.7665 42.4534 29.7665H42.4231C42.3928 29.7665 42.3852 29.7295 42.4004 29.7221C42.4988 29.6405 42.5139 29.4996 42.5139 29.4773C42.5139 29.4551 42.5139 29.4328 42.5366 29.4328H42.582C42.5896 29.4328 42.5972 29.4254 42.5972 29.418V29.2474H43.8234V29.418C43.831 29.4254 43.8386 29.4328 43.8461 29.4328ZM40.2052 34.0973H40.1522C40.1447 34.0973 40.1371 34.0973 40.1371 34.0899C40.1371 34.0899 40.1295 34.0824 40.1295 34.075V34.0083C40.1295 34.0009 40.1295 34.0009 40.122 33.9935C40.1144 33.986 40.0841 33.9564 40.0614 33.9341V29.9964C40.0614 29.9816 40.0765 29.9816 40.0765 29.9816H40.0917C40.1068 29.9816 40.1068 29.9668 40.1068 29.9594V29.8852C40.1068 29.8629 40.1144 29.8185 40.122 29.7962C40.1295 29.7814 40.1295 29.7665 40.1068 29.7665H40.069C40.0387 29.7665 40.0387 29.7295 40.0538 29.7221C40.1522 29.6405 40.1598 29.4996 40.1598 29.4773C40.1598 29.4551 40.1598 29.4328 40.1825 29.4328H40.2279C40.2355 29.4328 40.2431 29.4254 40.2431 29.418V29.2474H41.4693V29.418C41.4693 29.4254 41.4769 29.4328 41.4845 29.4328H41.5299C41.5526 29.4328 41.5526 29.4551 41.5526 29.4773C41.5526 29.507 41.5677 29.6405 41.6661 29.7295C41.6813 29.7443 41.6737 29.774 41.6434 29.774H41.6131C41.5904 29.774 41.5829 29.7888 41.5904 29.8036C41.598 29.8185 41.6056 29.8704 41.6056 29.8926V29.9668C41.6056 29.9816 41.6056 29.989 41.6207 29.989H41.6359C41.6359 29.989 41.651 29.989 41.651 30.0038C41.651 30.0113 41.651 30.0187 41.651 30.0187V33.9415C41.6359 33.9564 41.598 33.9935 41.5904 34.0009C41.5829 34.0009 41.5829 34.0083 41.5829 34.0157V34.0824C41.5829 34.0899 41.5829 34.0899 41.5753 34.0973C41.5753 34.0973 41.5677 34.1047 41.5602 34.1047H41.5072C41.4996 34.1047 41.492 34.1121 41.492 34.1195V34.2233H40.2052V34.1121C40.2204 34.1047 40.2128 34.0973 40.2052 34.0973ZM39.1304 29.2474V29.418C39.1304 29.4254 39.1379 29.4328 39.1455 29.4328H39.1909C39.2136 29.4328 39.2136 29.4551 39.2136 29.4773C39.2136 29.507 39.2288 29.6405 39.3272 29.7295C39.3423 29.7443 39.3347 29.774 39.3045 29.774H39.2742C39.2515 29.774 39.2439 29.7888 39.2515 29.8036C39.259 29.8185 39.2666 29.8704 39.2666 29.8926V29.9668C39.2666 29.9816 39.2666 29.989 39.2817 29.989H39.2969C39.2969 29.989 39.312 29.989 39.312 30.0038V33.9415C39.2969 33.9564 39.259 33.9935 39.2515 34.0009C39.2439 34.0009 39.2439 34.0083 39.2439 34.0157V34.0824C39.2439 34.0899 39.2439 34.0899 39.2363 34.0973C39.2288 34.0973 39.2288 34.1047 39.2212 34.1047H39.1682C39.1606 34.1047 39.1531 34.1121 39.1531 34.1195V34.2233H37.8663V34.1121C37.8663 34.1047 37.8587 34.0973 37.8511 34.0973H37.7981C37.7906 34.0973 37.783 34.0973 37.783 34.0899C37.783 34.0899 37.7754 34.0824 37.7754 34.075V34.0083C37.7754 34.0009 37.7754 34.0009 37.7679 33.9935C37.7603 33.986 37.73 33.9564 37.7073 33.9341V30.0113C37.7073 30.0113 37.7073 30.0038 37.7073 29.9964C37.7073 29.9816 37.7149 29.9816 37.7149 29.9816H37.73C37.7451 29.9816 37.7451 29.9668 37.7451 29.9594V29.8852C37.7451 29.8629 37.7527 29.8185 37.7603 29.7962C37.7678 29.7814 37.7678 29.7665 37.7376 29.7665H37.7073C37.677 29.7665 37.6694 29.7295 37.6846 29.7221C37.783 29.6405 37.7981 29.4996 37.7981 29.4773C37.7981 29.4551 37.7981 29.4328 37.8208 29.4328H37.8663C37.8738 29.4328 37.8814 29.4254 37.8814 29.418V29.2474H39.1304ZM35.5121 34.0973H35.4592C35.4516 34.0973 35.4516 34.0973 35.444 34.0899C35.4365 34.0899 35.4364 34.0824 35.4364 34.075V34.0083C35.4364 34.0009 35.4364 34.0009 35.4289 33.9935C35.4213 33.986 35.391 33.9564 35.3683 33.9341V29.9964C35.3683 29.9816 35.3835 29.9816 35.3835 29.9816H35.3986C35.4137 29.9816 35.4137 29.9668 35.4137 29.9594V29.8852C35.4137 29.8629 35.4213 29.8185 35.4289 29.7962C35.4364 29.7814 35.4365 29.7665 35.4137 29.7665H35.3759C35.3456 29.7665 35.3456 29.7295 35.3532 29.7221C35.4516 29.6405 35.4667 29.4996 35.4667 29.4773C35.4667 29.4551 35.4667 29.4328 35.4894 29.4328H35.5349C35.5424 29.4328 35.55 29.4254 35.55 29.418V29.2474H36.7762V29.418C36.7762 29.4254 36.7838 29.4328 36.7914 29.4328H36.8368C36.8595 29.4328 36.8595 29.4551 36.8595 29.4773C36.8595 29.507 36.8747 29.6405 36.9731 29.7295C36.9882 29.7443 36.9806 29.774 36.9503 29.774H36.9201C36.8974 29.774 36.8898 29.7888 36.8974 29.8036C36.9049 29.8185 36.9125 29.8704 36.9125 29.8926V29.9668C36.9125 29.9816 36.9125 29.989 36.9276 29.989H36.9428C36.9428 29.989 36.9579 29.989 36.9579 30.0038V33.9415C36.9428 33.9564 36.9049 33.9935 36.8974 34.0009C36.8974 34.0009 36.8898 34.0083 36.8898 34.0157V34.0824C36.8898 34.0899 36.8898 34.0899 36.8822 34.0973C36.8746 34.1047 36.8747 34.1047 36.8671 34.1047H36.8141C36.8065 34.1047 36.799 34.1121 36.799 34.1195V34.2233H35.5121V34.1121C35.5197 34.1047 35.5197 34.0973 35.5121 34.0973ZM34.4297 29.2474V29.418C34.4297 29.4254 34.4373 29.4328 34.4448 29.4328H34.4903C34.513 29.4328 34.513 29.4551 34.513 29.4773C34.513 29.507 34.5281 29.6405 34.6265 29.7295C34.6417 29.7443 34.6341 29.774 34.6038 29.774H34.5735C34.5508 29.774 34.5432 29.7888 34.5508 29.8036C34.5584 29.8185 34.566 29.8704 34.566 29.8926V29.9668C34.566 29.9816 34.566 29.989 34.5811 29.989H34.5962C34.5962 29.989 34.6114 29.989 34.6114 30.0038V33.9415C34.5962 33.9564 34.5584 33.9935 34.5508 34.0009C34.5432 34.0009 34.5433 34.0083 34.5433 34.0157V34.0824C34.5433 34.0899 34.5432 34.0899 34.5357 34.0973C34.5357 34.0973 34.5281 34.1047 34.5205 34.1047H34.4676C34.46 34.1047 34.4524 34.1121 34.4524 34.1195V34.2233H33.1656V34.1121C33.1656 34.1047 33.158 34.0973 33.1505 34.0973H33.0975C33.0899 34.0973 33.0823 34.0973 33.0823 34.0899C33.0748 34.0899 33.0748 34.0824 33.0748 34.075V34.0083C33.0748 34.0009 33.0748 34.0009 33.0672 33.9935C33.0596 33.986 33.0218 33.9564 33.0066 33.9341V29.9964C33.0066 29.9816 33.0142 29.9816 33.0142 29.9816H33.0294C33.0445 29.9816 33.0445 29.9668 33.0445 29.9594V29.8852C33.0445 29.8629 33.0445 29.8185 33.0596 29.7962C33.0672 29.7814 33.0672 29.7665 33.0369 29.7665H33.0066C32.9764 29.7665 32.9688 29.7295 32.9839 29.7221C33.0823 29.6405 33.0899 29.4996 33.0899 29.4773C33.0899 29.4551 33.0899 29.4328 33.1126 29.4328H33.158C33.1656 29.4328 33.1732 29.4254 33.1732 29.418V29.2474H34.4297Z'
|
|
33
|
+
fill={buildingFill}
|
|
34
|
+
/>
|
|
35
|
+
</svg>
|
|
36
|
+
);
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
export default memo(UclLogoNegativeSpace);
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { describe, expect, test } from 'vitest';
|
|
2
|
+
import { render } from '@testing-library/react';
|
|
3
|
+
import UclLogo from '../UclLogo';
|
|
4
|
+
import { ThemeContextProvider } from '../../../theme/useTheme';
|
|
5
|
+
|
|
6
|
+
describe('UclLogo', () => {
|
|
7
|
+
// Snapshot tests
|
|
8
|
+
|
|
9
|
+
test('snapshot: no props', () => {
|
|
10
|
+
const renderResult = render(
|
|
11
|
+
<ThemeContextProvider>
|
|
12
|
+
<UclLogo />
|
|
13
|
+
</ThemeContextProvider>
|
|
14
|
+
);
|
|
15
|
+
expect(renderResult.container.firstChild).toMatchSnapshot();
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
test('snapshot: testId prop', () => {
|
|
19
|
+
const renderResult = render(
|
|
20
|
+
<ThemeContextProvider>
|
|
21
|
+
<UclLogo testId='test123' />
|
|
22
|
+
</ThemeContextProvider>
|
|
23
|
+
);
|
|
24
|
+
expect(renderResult.container.firstChild).toMatchSnapshot();
|
|
25
|
+
});
|
|
26
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
2
|
+
|
|
3
|
+
exports[`UclLogo > snapshot: no props 1`] = `
|
|
4
|
+
<svg
|
|
5
|
+
fill="currentColor"
|
|
6
|
+
height="40"
|
|
7
|
+
viewBox="0 0 157 40"
|
|
8
|
+
width="157"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
>
|
|
11
|
+
<desc>
|
|
12
|
+
Logo of University College London
|
|
13
|
+
</desc>
|
|
14
|
+
<path
|
|
15
|
+
d="m 60.405678,1.52 v 25.62 c 0,1.74 -0.06,3.55 -1.6,5 -0.76,0.69 -2.12,1.45 -4.19,1.45 -1.53,0 -3.12,-0.4 -4.18,-1.51 -1.48,-1.39 -1.548529,-3.190021 -1.54,-4.94 V 1.52 h -13.22 v 24.63 c 0.13,4.22 0.25,8.72 4.31,12.6 0.47,0.45 0.841814,1.24 1.53,1.24 v 0 h 25.72 v 0 c 0,0 1.07,-0.8 1.54,-1.24 4.91,-4.59 4.88306,-10.690077 4.91,-15.4 V 1.52 Z m 48.710002,25.09 c -0.47,1.39 -2.3,6.73 -8.44,6.73 -6.500002,0 -8.800002,-5.75 -8.800002,-11.85 0,-1.64 0,-6.29 3.13,-9.24 0.88,-0.87 2.71,-2.21 5.610002,-2.21 5.54,0 7.54,4.36 8.61,6.8 l 11.03,-5.4 c -0.89,-1.62 -1.71,-3.01 -3.48,-4.82 -4.37,-4.41 -10.39,-6.62 -16.7,-6.62 -14.120002,0 -21.610002,11.21 -21.610002,22.25 0,6.71 2.74,13.61 8.56,17.74 h 26.450002 c 0.98,-0.65 1.92,-1.4 2.79,-2.23 1.99,-1.97 3,-3.83 4.06,-5.81 z M 11.167848,7.86 h -0.11 l -0.03,-0.03 V 7.71 l -0.03,-0.03 h -0.11 l -0.03,-0.03 V 7.54 c 0,0 0,-0.02 -0.03,-0.02 h -0.07 c 0,0 -0.04,-0.02 -0.05,-0.05 V 7.39 c 0,-0.29 0,-1.21 -0.52,-1.89 -0.44,-0.65 -1.05,-0.99 -1.39,-1.15 0,-0.12 -0.16,-0.17 -0.26,-0.21 -0.02,0 -0.03,0 -0.04,-0.02 -0.05,0 -0.09,-0.04 -0.09,-0.07 V 3.99 c 0,0 0.03,-0.06 0.1,-0.06 0.02,0 0.03,0 0.03,-0.03 V 3.78 c 0,0 0,-0.04 -0.04,-0.04 h -0.12 c 0,0 -0.05,-0.02 -0.05,-0.05 V 3.63 c 0,0 -0.03,-0.06 -0.05,-0.07 V 2.77 l 0.03,-0.02 v 0 c 0,0 0.02,0 0.02,-0.02 V 2.65 c 0,0 0,-0.02 -0.02,-0.02 h -0.04 c 0,0 -0.02,-0.02 -0.02,-0.06 0,-0.04 0,-0.05 0.02,-0.06 h 0.03 0.03 V 2.43 h -0.03 -0.03 c 0,0 -0.03,0 -0.06,-0.03 -0.13,-0.1 -0.27,-0.26 -0.27,-0.28 V 2.09 c 0,0 0,-0.05 -0.05,-0.05 -0.05,0 -0.03,-0.03 0,-0.03 V 1.98 1.93 l -0.06,-0.12 v 0 c 0,0 -0.07,0.1 -0.07,0.12 v 0.05 c 0,0 0,0.03 0.02,0.03 0.02,0 0.02,0.03 0,0.03 -0.04,0 -0.05,0.03 -0.05,0.05 v 0.03 c 0,0 -0.14,0.18 -0.28,0.28 0,0.02 -0.05,0.03 -0.04,0.03 h -0.04 -0.02 v 0.08 h 0.02 0.03 c 0,0 0.02,0.02 0.02,0.06 0,0.04 0,0.05 -0.02,0.06 h -0.04 c 0,0 -0.02,0 -0.02,0.02 v 0.08 c 0,0 0,0.02 0.02,0.02 h 0.02 c 0,0 0.026878,2.452e-4 0.03,0.02 v 0.79 0 c 0,0 -0.05,0.03 -0.05,0.07 v 0.06 c 0,0 0,0.05 -0.04,0.05 h -0.12 c 0,0 -0.05,0.02 -0.05,0.04 V 3.9 c 0,0 0.02,0.03 0.03,0.03 0.06,0 0.11,0.02 0.11,0.06 v 0.06 c 0,0 -0.05,0.06 -0.09,0.07 h -0.03 c -0.1,0.04 -0.27,0.1 -0.28,0.23 -0.34,0.16 -0.95,0.5 -1.39,1.15 -0.51,0.69 -0.52,1.62 -0.52,1.9 v 0.07 c 0,0 -0.09,0.05 -0.06,0.05 h -0.07 l -0.03,0.02 v 0.11 c 0,0 0,0.03 -0.03,0.03 h -0.11 c 0,0 -0.03,0 -0.03,0.03 v 0.12 c 0,0 0,0.03 -0.03,0.03 h -0.11 c 0,0 -0.03,0 -0.03,0.03 v 0.12 c 0,0 0,0.02 0.02,0.02 0.06,0 0.13,0.03 0.13,0.1 0,0.12 0.07,0.13 0.1,0.13 v 0.47 c 0,0.1 -0.08,0.15 -0.13,0.16 l -0.02,0.02 v 0.48 l 3.26,-0.71 v 0 l 3.26,0.71 V 8.91 c 0,0 0,-0.02 -0.02,-0.02 -0.05,0 -0.13,-0.05 -0.13,-0.16 V 8.27 c 0,0 0.1,-0.02 0.1,-0.14 0,-0.07 0.07,-0.1 0.1,-0.1 0.02,0 0.02,-1.35e-5 0.02,-0.02 V 7.89 l -0.03,-0.03 z m 3.62,10.3 v -0.94 h -0.56 v -0.52 0 h -0.07 v -0.03 -0.06 -0.02 l -0.06,-0.06 v -3.95 -0.02 0 c 0,0 0.0026,-0.01024 0.02,-0.02 v -0.07 -0.09 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 c 0,0 0.0082,-0.0039 0.02,-0.02 v -0.17 h 0.31 l 0.03,-0.03 0.11,-0.57 c 0.06,-0.12 0.18,-0.1 0.18,-0.1 h 0.02 l 0.11,-0.37 c 0,0 0.02,-0.03 -0.02,-0.04 -0.02,0 -7.13,-1.51 -7.13,-1.51 0,0 -7.10999996,1.51 -7.11999996,1.51 -0.04,0 -0.03,0.04 -0.03,0.04 l 0.1,0.36 v 0 c 0,0 0.12,0 0.18,0.09 l 0.1,0.58 c 0,0 0,0.03 0.05,0.03 h 0.31 v 0.18 h 0.02 0.04 c 0,0 0.02,0.02 0.02,0.05 0,0.03 0.02,0.16 0.12,0.25 0,0.02 0,0.05 -0.03,0.05 h -0.03 c 0,0 -0.03,0 -0.02,0.03 v 0.09 0.07 0.02 h 0.02 v 0.02 3.95 l -0.06,0.06 v 0.1 h -0.02 -0.05 -0.02 V 17.2 H 0.87784804 v 0.94 h -0.55 v 0.95 H 15.297848 v -0.95 h -0.56 z m -10.86,-5.69 v 0.08 l 0.02,0.02 v 0 c 0,0 0.019368,10e-6 0.02,0.02 v 3.95 l -0.06,0.06 v 0 0.07 0.02 h -0.06 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 0 c 0,0 -0.04,-0.04 -0.05,-0.06 v -3.95 -0.02 0 c 0,0 0.00259,-0.01024 0.02,-0.02 v -0.07 -0.09 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.1,-0.22 0.1,-0.25 0,-0.02 0,-0.04 0.03,-0.04 h 0.04 c 0,0 0.00816,-0.0039 0.02,-0.02 v -0.17 h 1.25 V 12 12.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.11,0.26 0.02,0 0,0.04 -0.02,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 v 0.09 z m 2.34,0 v 0.08 0.02 h 0.02 v 0.02 3.95 l -0.07,0.07 v 0.09 h -0.07 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.05 v 0 0 -0.08 0 l -0.07,-0.08 V 12.6 12.58 h 0.02 v -0.02 -0.07 c 0,0 0,-0.07 0.02,-0.09 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.03,-0.04 -0.03,-0.05 0.1,-0.08 0.12,-0.22 0.12,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.04 c 0,0 0.00818,-0.0039 0.02,-0.02 v -0.17 h 1.22 v 0.17 0.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.34,0 v 0.08 0.02 h 0.02 v 0.02 3.95 l -0.06,0.06 v 0 0.09 h -0.07 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 v -3.95 -0.02 h 0.02 v -0.02 -0.07 c 0,0 0,-0.07 0.02,-0.09 0,-0.02 0,-0.03 -0.03,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.03,-0.04 h 0.04 c 0,0 0.00818,-0.0039 0.02,-0.02 v -0.17 h 1.24 V 12 12.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.32,0 v 0.08 0.02 h 0.02 c 0,0 0.01937,10e-6 0.02,0.02 v 3.95 l -0.07,0.06 v 0.08 0.02 h -0.07 v 0.02 0.1 h -1.28 V 16.7 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 v -3.95 l 0.02,-0.02 v 0 c 0,0 0.02,-4e-5 0.02,-0.02 v -0.07 -0.09 -0.03 h -0.04 c 0,0 -0.03,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 V 12 11.83 h 1.22 V 12 c 0,0 0,0.02 0.02,0.02 h 0.04 c 0,0 0.03,0.02 0.03,0.04 0,0.03 0,0.17 0.11,0.26 0.02,0 0,0.04 -0.02,0.04 h -0.03 c 0,0 -0.03,0.02 -0.03,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.35,0 v 0.08 c 0,0 0,0.02 0.02,0.02 v 0 0.02 3.95 l -0.07,0.07 v 0.09 h -0.07 c 0,0 -0.03561,0.0075 -0.02,0.02 v 0.1 h -1.27 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 V 12.6 l 0.02,-0.02 v 0 c 0,0 0.0026,-0.01022 0.02,-0.02 V 12.49 12.4 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 v -0.02 -0.17 h 1.22 v 0.17 c 0,0 0.02,0.02 0.03,0.02 h 0.04 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.02,0.02 0,0.03 v 0.09 z M 67.235678,40 h -25.72 M 125.60568,39.99 V 1.46 h 13.16 v 30.29 h 17.08 v 8.24 h -30.25 z M 87.045678,40 v 0"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
18
|
+
`;
|
|
19
|
+
|
|
20
|
+
exports[`UclLogo > snapshot: testId prop 1`] = `
|
|
21
|
+
<svg
|
|
22
|
+
data-testid="test123"
|
|
23
|
+
fill="currentColor"
|
|
24
|
+
height="40"
|
|
25
|
+
viewBox="0 0 157 40"
|
|
26
|
+
width="157"
|
|
27
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
28
|
+
>
|
|
29
|
+
<desc>
|
|
30
|
+
Logo of University College London
|
|
31
|
+
</desc>
|
|
32
|
+
<path
|
|
33
|
+
d="m 60.405678,1.52 v 25.62 c 0,1.74 -0.06,3.55 -1.6,5 -0.76,0.69 -2.12,1.45 -4.19,1.45 -1.53,0 -3.12,-0.4 -4.18,-1.51 -1.48,-1.39 -1.548529,-3.190021 -1.54,-4.94 V 1.52 h -13.22 v 24.63 c 0.13,4.22 0.25,8.72 4.31,12.6 0.47,0.45 0.841814,1.24 1.53,1.24 v 0 h 25.72 v 0 c 0,0 1.07,-0.8 1.54,-1.24 4.91,-4.59 4.88306,-10.690077 4.91,-15.4 V 1.52 Z m 48.710002,25.09 c -0.47,1.39 -2.3,6.73 -8.44,6.73 -6.500002,0 -8.800002,-5.75 -8.800002,-11.85 0,-1.64 0,-6.29 3.13,-9.24 0.88,-0.87 2.71,-2.21 5.610002,-2.21 5.54,0 7.54,4.36 8.61,6.8 l 11.03,-5.4 c -0.89,-1.62 -1.71,-3.01 -3.48,-4.82 -4.37,-4.41 -10.39,-6.62 -16.7,-6.62 -14.120002,0 -21.610002,11.21 -21.610002,22.25 0,6.71 2.74,13.61 8.56,17.74 h 26.450002 c 0.98,-0.65 1.92,-1.4 2.79,-2.23 1.99,-1.97 3,-3.83 4.06,-5.81 z M 11.167848,7.86 h -0.11 l -0.03,-0.03 V 7.71 l -0.03,-0.03 h -0.11 l -0.03,-0.03 V 7.54 c 0,0 0,-0.02 -0.03,-0.02 h -0.07 c 0,0 -0.04,-0.02 -0.05,-0.05 V 7.39 c 0,-0.29 0,-1.21 -0.52,-1.89 -0.44,-0.65 -1.05,-0.99 -1.39,-1.15 0,-0.12 -0.16,-0.17 -0.26,-0.21 -0.02,0 -0.03,0 -0.04,-0.02 -0.05,0 -0.09,-0.04 -0.09,-0.07 V 3.99 c 0,0 0.03,-0.06 0.1,-0.06 0.02,0 0.03,0 0.03,-0.03 V 3.78 c 0,0 0,-0.04 -0.04,-0.04 h -0.12 c 0,0 -0.05,-0.02 -0.05,-0.05 V 3.63 c 0,0 -0.03,-0.06 -0.05,-0.07 V 2.77 l 0.03,-0.02 v 0 c 0,0 0.02,0 0.02,-0.02 V 2.65 c 0,0 0,-0.02 -0.02,-0.02 h -0.04 c 0,0 -0.02,-0.02 -0.02,-0.06 0,-0.04 0,-0.05 0.02,-0.06 h 0.03 0.03 V 2.43 h -0.03 -0.03 c 0,0 -0.03,0 -0.06,-0.03 -0.13,-0.1 -0.27,-0.26 -0.27,-0.28 V 2.09 c 0,0 0,-0.05 -0.05,-0.05 -0.05,0 -0.03,-0.03 0,-0.03 V 1.98 1.93 l -0.06,-0.12 v 0 c 0,0 -0.07,0.1 -0.07,0.12 v 0.05 c 0,0 0,0.03 0.02,0.03 0.02,0 0.02,0.03 0,0.03 -0.04,0 -0.05,0.03 -0.05,0.05 v 0.03 c 0,0 -0.14,0.18 -0.28,0.28 0,0.02 -0.05,0.03 -0.04,0.03 h -0.04 -0.02 v 0.08 h 0.02 0.03 c 0,0 0.02,0.02 0.02,0.06 0,0.04 0,0.05 -0.02,0.06 h -0.04 c 0,0 -0.02,0 -0.02,0.02 v 0.08 c 0,0 0,0.02 0.02,0.02 h 0.02 c 0,0 0.026878,2.452e-4 0.03,0.02 v 0.79 0 c 0,0 -0.05,0.03 -0.05,0.07 v 0.06 c 0,0 0,0.05 -0.04,0.05 h -0.12 c 0,0 -0.05,0.02 -0.05,0.04 V 3.9 c 0,0 0.02,0.03 0.03,0.03 0.06,0 0.11,0.02 0.11,0.06 v 0.06 c 0,0 -0.05,0.06 -0.09,0.07 h -0.03 c -0.1,0.04 -0.27,0.1 -0.28,0.23 -0.34,0.16 -0.95,0.5 -1.39,1.15 -0.51,0.69 -0.52,1.62 -0.52,1.9 v 0.07 c 0,0 -0.09,0.05 -0.06,0.05 h -0.07 l -0.03,0.02 v 0.11 c 0,0 0,0.03 -0.03,0.03 h -0.11 c 0,0 -0.03,0 -0.03,0.03 v 0.12 c 0,0 0,0.03 -0.03,0.03 h -0.11 c 0,0 -0.03,0 -0.03,0.03 v 0.12 c 0,0 0,0.02 0.02,0.02 0.06,0 0.13,0.03 0.13,0.1 0,0.12 0.07,0.13 0.1,0.13 v 0.47 c 0,0.1 -0.08,0.15 -0.13,0.16 l -0.02,0.02 v 0.48 l 3.26,-0.71 v 0 l 3.26,0.71 V 8.91 c 0,0 0,-0.02 -0.02,-0.02 -0.05,0 -0.13,-0.05 -0.13,-0.16 V 8.27 c 0,0 0.1,-0.02 0.1,-0.14 0,-0.07 0.07,-0.1 0.1,-0.1 0.02,0 0.02,-1.35e-5 0.02,-0.02 V 7.89 l -0.03,-0.03 z m 3.62,10.3 v -0.94 h -0.56 v -0.52 0 h -0.07 v -0.03 -0.06 -0.02 l -0.06,-0.06 v -3.95 -0.02 0 c 0,0 0.0026,-0.01024 0.02,-0.02 v -0.07 -0.09 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 c 0,0 0.0082,-0.0039 0.02,-0.02 v -0.17 h 0.31 l 0.03,-0.03 0.11,-0.57 c 0.06,-0.12 0.18,-0.1 0.18,-0.1 h 0.02 l 0.11,-0.37 c 0,0 0.02,-0.03 -0.02,-0.04 -0.02,0 -7.13,-1.51 -7.13,-1.51 0,0 -7.10999996,1.51 -7.11999996,1.51 -0.04,0 -0.03,0.04 -0.03,0.04 l 0.1,0.36 v 0 c 0,0 0.12,0 0.18,0.09 l 0.1,0.58 c 0,0 0,0.03 0.05,0.03 h 0.31 v 0.18 h 0.02 0.04 c 0,0 0.02,0.02 0.02,0.05 0,0.03 0.02,0.16 0.12,0.25 0,0.02 0,0.05 -0.03,0.05 h -0.03 c 0,0 -0.03,0 -0.02,0.03 v 0.09 0.07 0.02 h 0.02 v 0.02 3.95 l -0.06,0.06 v 0.1 h -0.02 -0.05 -0.02 V 17.2 H 0.87784804 v 0.94 h -0.55 v 0.95 H 15.297848 v -0.95 h -0.56 z m -10.86,-5.69 v 0.08 l 0.02,0.02 v 0 c 0,0 0.019368,10e-6 0.02,0.02 v 3.95 l -0.06,0.06 v 0 0.07 0.02 h -0.06 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 0 c 0,0 -0.04,-0.04 -0.05,-0.06 v -3.95 -0.02 0 c 0,0 0.00259,-0.01024 0.02,-0.02 v -0.07 -0.09 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.1,-0.22 0.1,-0.25 0,-0.02 0,-0.04 0.03,-0.04 h 0.04 c 0,0 0.00816,-0.0039 0.02,-0.02 v -0.17 h 1.25 V 12 12.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.11,0.26 0.02,0 0,0.04 -0.02,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 v 0.09 z m 2.34,0 v 0.08 0.02 h 0.02 v 0.02 3.95 l -0.07,0.07 v 0.09 h -0.07 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.05 v 0 0 -0.08 0 l -0.07,-0.08 V 12.6 12.58 h 0.02 v -0.02 -0.07 c 0,0 0,-0.07 0.02,-0.09 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.03,-0.04 -0.03,-0.05 0.1,-0.08 0.12,-0.22 0.12,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.04 c 0,0 0.00818,-0.0039 0.02,-0.02 v -0.17 h 1.22 v 0.17 0.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.34,0 v 0.08 0.02 h 0.02 v 0.02 3.95 l -0.06,0.06 v 0 0.09 h -0.07 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 v -3.95 -0.02 h 0.02 v -0.02 -0.07 c 0,0 0,-0.07 0.02,-0.09 0,-0.02 0,-0.03 -0.03,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.03,-0.04 h 0.04 c 0,0 0.00818,-0.0039 0.02,-0.02 v -0.17 h 1.24 V 12 12.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.32,0 v 0.08 0.02 h 0.02 c 0,0 0.01937,10e-6 0.02,0.02 v 3.95 l -0.07,0.06 v 0.08 0.02 h -0.07 v 0.02 0.1 h -1.28 V 16.7 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 v -3.95 l 0.02,-0.02 v 0 c 0,0 0.02,-4e-5 0.02,-0.02 v -0.07 -0.09 -0.03 h -0.04 c 0,0 -0.03,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 V 12 11.83 h 1.22 V 12 c 0,0 0,0.02 0.02,0.02 h 0.04 c 0,0 0.03,0.02 0.03,0.04 0,0.03 0,0.17 0.11,0.26 0.02,0 0,0.04 -0.02,0.04 h -0.03 c 0,0 -0.03,0.02 -0.03,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.35,0 v 0.08 c 0,0 0,0.02 0.02,0.02 v 0 0.02 3.95 l -0.07,0.07 v 0.09 h -0.07 c 0,0 -0.03561,0.0075 -0.02,0.02 v 0.1 h -1.27 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 V 12.6 l 0.02,-0.02 v 0 c 0,0 0.0026,-0.01022 0.02,-0.02 V 12.49 12.4 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 v -0.02 -0.17 h 1.22 v 0.17 c 0,0 0.02,0.02 0.03,0.02 h 0.04 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.02,0.02 0,0.03 v 0.09 z M 67.235678,40 h -25.72 M 125.60568,39.99 V 1.46 h 13.16 v 30.29 h 17.08 v 8.24 h -30.25 z M 87.045678,40 v 0"
|
|
34
|
+
/>
|
|
35
|
+
</svg>
|
|
36
|
+
`;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
id="Layer_1"
|
|
4
|
+
data-name="Layer 1"
|
|
5
|
+
viewBox="0 0 157 40"
|
|
6
|
+
version="1.1"
|
|
7
|
+
sodipodi:docname="Logo_UCL-edit.svg"
|
|
8
|
+
width="157"
|
|
9
|
+
height="40"
|
|
10
|
+
inkscape:version="1.1.2 (b8e25be8, 2022-02-05)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<sodipodi:namedview
|
|
16
|
+
id="namedview831"
|
|
17
|
+
pagecolor="#ffffff"
|
|
18
|
+
bordercolor="#666666"
|
|
19
|
+
borderopacity="1.0"
|
|
20
|
+
inkscape:pageshadow="2"
|
|
21
|
+
inkscape:pageopacity="0.0"
|
|
22
|
+
inkscape:pagecheckerboard="true"
|
|
23
|
+
showgrid="false"
|
|
24
|
+
inkscape:zoom="7.1974522"
|
|
25
|
+
inkscape:cx="80.445133"
|
|
26
|
+
inkscape:cy="31.330531"
|
|
27
|
+
inkscape:window-width="1904"
|
|
28
|
+
inkscape:window-height="985"
|
|
29
|
+
inkscape:window-x="16"
|
|
30
|
+
inkscape:window-y="25"
|
|
31
|
+
inkscape:window-maximized="0"
|
|
32
|
+
inkscape:current-layer="Layer_1" />
|
|
33
|
+
<defs
|
|
34
|
+
id="defs826">
|
|
35
|
+
<style
|
|
36
|
+
id="style824">
|
|
37
|
+
.cls-1 {
|
|
38
|
+
fill: #fff;
|
|
39
|
+
}
|
|
40
|
+
</style>
|
|
41
|
+
</defs>
|
|
42
|
+
<path
|
|
43
|
+
class="cls-1"
|
|
44
|
+
d="m 60.405678,1.52 v 25.62 c 0,1.74 -0.06,3.55 -1.6,5 -0.76,0.69 -2.12,1.45 -4.19,1.45 -1.53,0 -3.12,-0.4 -4.18,-1.51 -1.48,-1.39 -1.548529,-3.190021 -1.54,-4.94 V 1.52 h -13.22 v 24.63 c 0.13,4.22 0.25,8.72 4.31,12.6 0.47,0.45 0.841814,1.24 1.53,1.24 v 0 h 25.72 v 0 c 0,0 1.07,-0.8 1.54,-1.24 4.91,-4.59 4.88306,-10.690077 4.91,-15.4 V 1.52 Z m 48.710002,25.09 c -0.47,1.39 -2.3,6.73 -8.44,6.73 -6.500002,0 -8.800002,-5.75 -8.800002,-11.85 0,-1.64 0,-6.29 3.13,-9.24 0.88,-0.87 2.71,-2.21 5.610002,-2.21 5.54,0 7.54,4.36 8.61,6.8 l 11.03,-5.4 c -0.89,-1.62 -1.71,-3.01 -3.48,-4.82 -4.37,-4.41 -10.39,-6.62 -16.7,-6.62 -14.120002,0 -21.610002,11.21 -21.610002,22.25 0,6.71 2.74,13.61 8.56,17.74 h 26.450002 c 0.98,-0.65 1.92,-1.4 2.79,-2.23 1.99,-1.97 3,-3.83 4.06,-5.81 z M 11.167848,7.86 h -0.11 l -0.03,-0.03 V 7.71 l -0.03,-0.03 h -0.11 l -0.03,-0.03 V 7.54 c 0,0 0,-0.02 -0.03,-0.02 h -0.07 c 0,0 -0.04,-0.02 -0.05,-0.05 V 7.39 c 0,-0.29 0,-1.21 -0.52,-1.89 -0.44,-0.65 -1.05,-0.99 -1.39,-1.15 0,-0.12 -0.16,-0.17 -0.26,-0.21 -0.02,0 -0.03,0 -0.04,-0.02 -0.05,0 -0.09,-0.04 -0.09,-0.07 V 3.99 c 0,0 0.03,-0.06 0.1,-0.06 0.02,0 0.03,0 0.03,-0.03 V 3.78 c 0,0 0,-0.04 -0.04,-0.04 h -0.12 c 0,0 -0.05,-0.02 -0.05,-0.05 V 3.63 c 0,0 -0.03,-0.06 -0.05,-0.07 V 2.77 l 0.03,-0.02 v 0 c 0,0 0.02,0 0.02,-0.02 V 2.65 c 0,0 0,-0.02 -0.02,-0.02 h -0.04 c 0,0 -0.02,-0.02 -0.02,-0.06 0,-0.04 0,-0.05 0.02,-0.06 h 0.03 0.03 V 2.43 h -0.03 -0.03 c 0,0 -0.03,0 -0.06,-0.03 -0.13,-0.1 -0.27,-0.26 -0.27,-0.28 V 2.09 c 0,0 0,-0.05 -0.05,-0.05 -0.05,0 -0.03,-0.03 0,-0.03 V 1.98 1.93 l -0.06,-0.12 v 0 c 0,0 -0.07,0.1 -0.07,0.12 v 0.05 c 0,0 0,0.03 0.02,0.03 0.02,0 0.02,0.03 0,0.03 -0.04,0 -0.05,0.03 -0.05,0.05 v 0.03 c 0,0 -0.14,0.18 -0.28,0.28 0,0.02 -0.05,0.03 -0.04,0.03 h -0.04 -0.02 v 0.08 h 0.02 0.03 c 0,0 0.02,0.02 0.02,0.06 0,0.04 0,0.05 -0.02,0.06 h -0.04 c 0,0 -0.02,0 -0.02,0.02 v 0.08 c 0,0 0,0.02 0.02,0.02 h 0.02 c 0,0 0.026878,2.452e-4 0.03,0.02 v 0.79 0 c 0,0 -0.05,0.03 -0.05,0.07 v 0.06 c 0,0 0,0.05 -0.04,0.05 h -0.12 c 0,0 -0.05,0.02 -0.05,0.04 V 3.9 c 0,0 0.02,0.03 0.03,0.03 0.06,0 0.11,0.02 0.11,0.06 v 0.06 c 0,0 -0.05,0.06 -0.09,0.07 h -0.03 c -0.1,0.04 -0.27,0.1 -0.28,0.23 -0.34,0.16 -0.95,0.5 -1.39,1.15 -0.51,0.69 -0.52,1.62 -0.52,1.9 v 0.07 c 0,0 -0.09,0.05 -0.06,0.05 h -0.07 l -0.03,0.02 v 0.11 c 0,0 0,0.03 -0.03,0.03 h -0.11 c 0,0 -0.03,0 -0.03,0.03 v 0.12 c 0,0 0,0.03 -0.03,0.03 h -0.11 c 0,0 -0.03,0 -0.03,0.03 v 0.12 c 0,0 0,0.02 0.02,0.02 0.06,0 0.13,0.03 0.13,0.1 0,0.12 0.07,0.13 0.1,0.13 v 0.47 c 0,0.1 -0.08,0.15 -0.13,0.16 l -0.02,0.02 v 0.48 l 3.26,-0.71 v 0 l 3.26,0.71 V 8.91 c 0,0 0,-0.02 -0.02,-0.02 -0.05,0 -0.13,-0.05 -0.13,-0.16 V 8.27 c 0,0 0.1,-0.02 0.1,-0.14 0,-0.07 0.07,-0.1 0.1,-0.1 0.02,0 0.02,-1.35e-5 0.02,-0.02 V 7.89 l -0.03,-0.03 z m 3.62,10.3 v -0.94 h -0.56 v -0.52 0 h -0.07 v -0.03 -0.06 -0.02 l -0.06,-0.06 v -3.95 -0.02 0 c 0,0 0.0026,-0.01024 0.02,-0.02 v -0.07 -0.09 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 c 0,0 0.0082,-0.0039 0.02,-0.02 v -0.17 h 0.31 l 0.03,-0.03 0.11,-0.57 c 0.06,-0.12 0.18,-0.1 0.18,-0.1 h 0.02 l 0.11,-0.37 c 0,0 0.02,-0.03 -0.02,-0.04 -0.02,0 -7.13,-1.51 -7.13,-1.51 0,0 -7.10999996,1.51 -7.11999996,1.51 -0.04,0 -0.03,0.04 -0.03,0.04 l 0.1,0.36 v 0 c 0,0 0.12,0 0.18,0.09 l 0.1,0.58 c 0,0 0,0.03 0.05,0.03 h 0.31 v 0.18 h 0.02 0.04 c 0,0 0.02,0.02 0.02,0.05 0,0.03 0.02,0.16 0.12,0.25 0,0.02 0,0.05 -0.03,0.05 h -0.03 c 0,0 -0.03,0 -0.02,0.03 v 0.09 0.07 0.02 h 0.02 v 0.02 3.95 l -0.06,0.06 v 0.1 h -0.02 -0.05 -0.02 V 17.2 H 0.87784804 v 0.94 h -0.55 v 0.95 H 15.297848 v -0.95 h -0.56 z m -10.86,-5.69 v 0.08 l 0.02,0.02 v 0 c 0,0 0.019368,10e-6 0.02,0.02 v 3.95 l -0.06,0.06 v 0 0.07 0.02 h -0.06 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 0 c 0,0 -0.04,-0.04 -0.05,-0.06 v -3.95 -0.02 0 c 0,0 0.00259,-0.01024 0.02,-0.02 v -0.07 -0.09 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.1,-0.22 0.1,-0.25 0,-0.02 0,-0.04 0.03,-0.04 h 0.04 c 0,0 0.00816,-0.0039 0.02,-0.02 v -0.17 h 1.25 V 12 12.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.11,0.26 0.02,0 0,0.04 -0.02,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 v 0.09 z m 2.34,0 v 0.08 0.02 h 0.02 v 0.02 3.95 l -0.07,0.07 v 0.09 h -0.07 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.05 v 0 0 -0.08 0 l -0.07,-0.08 V 12.6 12.58 h 0.02 v -0.02 -0.07 c 0,0 0,-0.07 0.02,-0.09 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.03,-0.04 -0.03,-0.05 0.1,-0.08 0.12,-0.22 0.12,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.04 c 0,0 0.00818,-0.0039 0.02,-0.02 v -0.17 h 1.22 v 0.17 0.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.34,0 v 0.08 0.02 h 0.02 v 0.02 3.95 l -0.06,0.06 v 0 0.09 h -0.07 c 0,0 -0.035609,0.0075 -0.02,0.02 v 0.1 h -1.28 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 v -3.95 -0.02 h 0.02 v -0.02 -0.07 c 0,0 0,-0.07 0.02,-0.09 0,-0.02 0,-0.03 -0.03,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.03,-0.04 h 0.04 c 0,0 0.00818,-0.0039 0.02,-0.02 v -0.17 h 1.24 V 12 12.02 h 0.05 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.03,0.02 -0.02,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.32,0 v 0.08 0.02 h 0.02 c 0,0 0.01937,10e-6 0.02,0.02 v 3.95 l -0.07,0.06 v 0.08 0.02 h -0.07 v 0.02 0.1 h -1.28 V 16.7 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 v -3.95 l 0.02,-0.02 v 0 c 0,0 0.02,-4e-5 0.02,-0.02 v -0.07 -0.09 -0.03 h -0.04 c 0,0 -0.03,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 V 12 11.83 h 1.22 V 12 c 0,0 0,0.02 0.02,0.02 h 0.04 c 0,0 0.03,0.02 0.03,0.04 0,0.03 0,0.17 0.11,0.26 0.02,0 0,0.04 -0.02,0.04 h -0.03 c 0,0 -0.03,0.02 -0.03,0.03 0,0.02 0.02,0.07 0.02,0.09 z m 2.35,0 v 0.08 c 0,0 0,0.02 0.02,0.02 v 0 0.02 3.95 l -0.07,0.07 v 0.09 h -0.07 c 0,0 -0.03561,0.0075 -0.02,0.02 v 0.1 h -1.27 v -0.11 0 h -0.06 v 0 -0.02 -0.06 -0.02 l -0.06,-0.06 V 12.6 l 0.02,-0.02 v 0 c 0,0 0.0026,-0.01022 0.02,-0.02 V 12.49 12.4 c 0,-0.02 0,-0.03 -0.02,-0.03 h -0.03 c 0,0 -0.04,-0.04 -0.02,-0.05 0.1,-0.08 0.11,-0.22 0.11,-0.25 0,-0.02 0,-0.04 0.02,-0.04 h 0.05 v -0.02 -0.17 h 1.22 v 0.17 c 0,0 0.02,0.02 0.03,0.02 h 0.04 c 0,0 0.02,0.02 0.02,0.04 0,0.03 0.02,0.17 0.12,0.26 0,0 0,0.04 -0.03,0.04 h -0.03 c 0,0 -0.02,0.02 0,0.03 v 0.09 z M 67.235678,40 h -25.72 M 125.60568,39.99 V 1.46 h 13.16 v 30.29 h 17.08 v 8.24 h -30.25 z M 87.045678,40 v 0"
|
|
45
|
+
id="path828"
|
|
46
|
+
sodipodi:nodetypes="cscscsccccsccscscccsscscccsscccccccccccccsccsccccscsscscscccscscscscccccccscscccccscsssccscccccsccscscsccscscscsscccccscscccscscscscsscscccccccsscsssccccccccccccccccscssccsscscccccccccscccccsccccscsccccccccccccccccccccccccscsccccccsccccccccccccccscssccsscscccccscscccccccccccccsccccccccccccccccsccsscscccccscsccccccccccccccsccccccccccccccccsccsscscccccscsccccccccsccccccccccccccccccscccccsscccccscscscsccccsccccccscccccccccccccscssccsscccccscscscccccccccccccccc" />
|
|
47
|
+
</svg>
|