@orfium/ictinus 5.43.7 → 5.43.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Avatar/UserAvatar.js +5 -6
- package/dist/components/Breadcrumb/BreadcrumbItem/BreadcrumbItem.js +7 -8
- package/dist/components/Button/Button.js +21 -22
- package/dist/components/ButtonBase/constants.js +1 -7
- package/dist/components/Controls/CheckBox/CheckBox.js +28 -27
- package/dist/components/IconButton/IconButton.js +11 -10
- package/dist/index.js +233 -239
- package/dist/package.json.d.ts +8 -5
- package/dist/package.json.js +1 -1
- package/dist/src/actions/ActionsContent.d.ts +281 -281
- package/dist/src/actions/ActionsRoot.d.ts +281 -281
- package/dist/src/components/Avatar/UserAvatar.d.ts +1 -2
- package/dist/src/components/IconButton/IconButton.d.ts +5 -6
- package/dist/src/data-table/DataTable.d.ts +281 -281
- package/dist/src/data-table/DataTableBody.d.ts +281 -281
- package/dist/src/data-table/DataTableHeader.d.ts +281 -281
- package/dist/src/data-table/DataTableRow.d.ts +563 -563
- package/dist/src/index.d.ts +0 -2
- package/dist/src/skeleton/Skeleton.d.ts +281 -281
- package/dist/src/sprinkles/properties.css.d.ts +369 -369
- package/dist/src/sprinkles/sprinkles.d.ts +625 -625
- package/dist/src/vanilla/Box/Box.d.ts +281 -281
- package/dist/src/vanilla/Box/extractBoxProps.d.ts +2 -2
- package/dist/src/vanilla/Table/Table.d.ts +281 -281
- package/dist/src/vanilla/Table/TableBody.d.ts +281 -281
- package/dist/src/vanilla/Table/TableCell.d.ts +282 -282
- package/dist/src/vanilla/Table/TableFooter.d.ts +281 -281
- package/dist/src/vanilla/Table/TableHeader.d.ts +281 -281
- package/dist/src/vanilla/Table/TableHeaderCell.d.ts +282 -282
- package/dist/src/vanilla/Table/TableRow.d.ts +281 -281
- package/dist/src/vanilla/Text/Text.d.ts +281 -281
- package/dist/src/vanilla/index.d.ts +2 -0
- package/dist/vanilla/Dropdown/Dropdown-css.js +3 -4
- package/dist/vanilla/Menu/Menu-css.js +5 -6
- package/dist/vanilla/Popover/Popover-css.js +4 -5
- package/dist/vanilla/Table/Table-css.js +5 -6
- package/dist/vanilla/Table/TableBody-css.js +3 -3
- package/dist/vanilla/Table/TableCell-css.js +5 -6
- package/dist/vanilla/Table/TableFooter-css.js +3 -3
- package/dist/vanilla/Table/TableHeader-css.js +3 -3
- package/dist/vanilla/Table/TableHeaderCell-css.js +7 -8
- package/dist/vanilla/Table/TableRow-css.js +4 -5
- package/dist/vanilla/Text/Text-css.js +3 -3
- package/dist/vanilla/ThemeProvider/ThemeProvider.js +2 -0
- package/dist/vanilla/Tooltip/Tooltip-css.js +7 -8
- package/dist/vanilla/assets/src/actions/ActionsContent.css.ts.vanilla-CY_zQdRt.css +22 -0
- package/dist/vanilla/assets/src/actions/ActionsRoot.css.ts.vanilla-Sfxv3QTp.css +4 -0
- package/dist/vanilla/assets/src/data-table/DataTableBody.css.ts.vanilla-C5CLCAO-.css +70 -0
- package/dist/vanilla/assets/src/data-table/DataTableHeaderCell.css.ts.vanilla-CJ7qRgCp.css +36 -0
- package/dist/vanilla/assets/src/layers/layers.css.ts.vanilla-DOIEZBDT.css +1 -0
- package/dist/vanilla/assets/src/skeleton/Skeleton.css.ts.vanilla-DdlGEtT6.css +6 -0
- package/dist/vanilla/assets/src/sprinkles/properties.css.ts.vanilla-DunamBlA.css +10127 -0
- package/dist/vanilla/assets/src/vanilla/Menu/Menu.css.ts.vanilla-CCuBBcIY.css +15 -0
- package/dist/vanilla/assets/src/vanilla/Popover/Popover.css.ts.vanilla-D_hJVnXG.css +10 -0
- package/dist/vanilla/assets/src/vanilla/Table/Table.css.ts.vanilla-CtMyXgp5.css +21 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableBody.css.ts.vanilla-NM1bg9yo.css +6 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableCell.css.ts.vanilla-C9lOnXw3.css +28 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableFooter.css.ts.vanilla-DdPLAnn2.css +11 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableHeader.css.ts.vanilla-BFZehdGr.css +8 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableHeaderCell.css.ts.vanilla-BKqTSx1s.css +25 -0
- package/dist/vanilla/assets/src/vanilla/Table/TableRow.css.ts.vanilla-ConQ39lM.css +18 -0
- package/dist/vanilla/assets/src/vanilla/Text/Text.css.ts.vanilla-yQfwZHu2.css +38 -0
- package/dist/vanilla/assets/src/vanilla/Tooltip/Tooltip.css.ts.vanilla-CgAdIrpn.css +39 -0
- package/dist/vanilla/index.d.ts +9735 -2
- package/dist/vanilla/index.js +3 -0
- package/dist/vanilla/package.json.js +1 -1
- package/dist/vanilla/src/actions/ActionsContent-css.js +5 -6
- package/dist/vanilla/src/actions/ActionsRoot-css.js +3 -3
- package/dist/vanilla/src/components/Avatar/UserAvatar.js +4 -6
- package/dist/vanilla/src/components/Button/Button.js +5 -8
- package/dist/vanilla/src/components/ButtonBase/constants.js +1 -7
- package/dist/vanilla/src/components/Controls/CheckBox/CheckBox.js +7 -6
- package/dist/vanilla/src/components/Icon/Icon.js +44 -0
- package/dist/vanilla/src/components/Icon/Icon.style.js +42 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/forward.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/next.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/pause.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/play.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/previous.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/resume.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/rewind.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/audioControls/stop.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/check.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/close.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/columnChooser.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/convert.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/copy.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/delete.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/download.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/edit.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/login.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/logout.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/mediaFile.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/minus.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/plus.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/redo.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/refresh.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/restore.svg.js +19 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/review.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/search.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/share.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/sort.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/sortAscending.svg.js +24 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/sortDescending.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/thumbsDown.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/thumbsUp.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/undo.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/update.svg.js +19 -0
- package/dist/vanilla/src/components/Icon/assets/basicActions/upload.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/analytics.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/dashboard.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/dataset.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/earnings.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/income.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/insight.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/invoice.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/trendingDown.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/dataAndFinance/trendingUp.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/calendar.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/chat.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/delivery.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/details.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/externalLink.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/file.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/filter.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/issue.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/keyword.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/generic/language.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/legal.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/location.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/mail.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/manual.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/moreOptions.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/notification.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/policy.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/report.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/search filled.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/generic/settings.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/generic/tag.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/iconSelector.js +301 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/album.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/artist.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/asset.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/broadcast.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/catalog.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/channel.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/cinema.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/claim.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/composition.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/concert.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/conflict.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/cueSheet.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/digital.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/distribution.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/license.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/playcount.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/publicPerformance.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/publisher.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/radio.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/recordLabel.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/recording.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/television.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/usage.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/work.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/writer.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/musicBusiness/youTube.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/apps.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/arrowDown.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/arrowLeft.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/arrowRight.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/arrowUp.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/chevronDown.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/chevronLeft.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/chevronRight.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/chevronUp.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/menu.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/pageFirst.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/pageLast.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/triangleDown.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/triangleLeft.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/triangleRight.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/navigation/triangleUp.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/audio.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/audioOff.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/bookmark.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/bookmarkOff.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/eye.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/eyeOff.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/favorite.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/favoriteOff.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/flag.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/flagOff.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/freeze.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/image.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/imageOff.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/link.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/lock.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/pair.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/unfreeze.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/unlink.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/unlock.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/unpair.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/video.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/toggledActions/videoOff.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/account.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/entities.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/error.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/help.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/informational.svg.js +18 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/organization.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/pending.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/role.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/statusIndicator.svg.js +20 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/success.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/unverified.svg.js +21 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/user.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/users.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/verified.svg.js +16 -0
- package/dist/vanilla/src/components/Icon/assets/usersAndStatus/warning.svg.js +18 -0
- package/dist/vanilla/src/components/IconButton/IconButton.js +5 -4
- package/dist/vanilla/src/data-table/DataTableBody-css.js +11 -12
- package/dist/vanilla/src/data-table/DataTableCheckbox.js +1 -1
- package/dist/vanilla/src/data-table/DataTableHeaderCell-css.js +9 -10
- package/dist/vanilla/src/data-table/DataTableHeaderCell.js +1 -1
- package/dist/vanilla/src/layers/layers-css.js +9 -0
- package/dist/vanilla/src/skeleton/Skeleton-css.js +4 -5
- package/dist/vanilla/src/sprinkles/properties-css.js +5 -6
- package/dist/vanilla/src/sprinkles/sprinkles.js +3 -3
- package/package.json +8 -5
- package/.turbo/turbo-build.log +0 -660
- package/CHANGELOG.md +0 -169
- package/codemods/avatarCodemod.ts +0 -53
- package/codemods/buttonCodemod.ts +0 -52
- package/codemods/checkboxCodemod.ts +0 -42
- package/codemods/chipCodemode.ts +0 -45
- package/codemods/drawerCodemod.ts +0 -73
- package/codemods/filterCodemod.ts +0 -29
- package/codemods/globalsCodemod.ts +0 -145
- package/codemods/iconButtonCodemod.ts +0 -54
- package/codemods/iconCodemod.ts +0 -24
- package/codemods/loaderCodemod.ts +0 -47
- package/codemods/menuCodemod.ts +0 -43
- package/codemods/notificationsCodemod.ts +0 -21
- package/codemods/paginationCodemod.ts +0 -36
- package/codemods/radioCodemod.ts +0 -27
- package/codemods/radioGroupCodemod.ts +0 -23
- package/codemods/searchCodemod.ts +0 -38
- package/codemods/selectCodemod.ts +0 -88
- package/codemods/switchCodemod.ts +0 -40
- package/codemods/tableCodemod.ts +0 -24
- package/codemods/textareaCodemod.ts +0 -58
- package/codemods/textfieldCodemod.ts +0 -55
- package/codemods/tooltipCodemod.ts +0 -35
- package/codemods/unchangedIconsCodemod.ts +0 -62
- package/dist/icon/Icon.js +0 -309
- package/dist/icons/AccountIcon.js +0 -8
- package/dist/icons/AlbumIcon.js +0 -8
- package/dist/icons/AnalyticsIcon.js +0 -8
- package/dist/icons/AppsIcon.js +0 -8
- package/dist/icons/ArrowDownIcon.js +0 -8
- package/dist/icons/ArrowLeftIcon.js +0 -8
- package/dist/icons/ArrowRightIcon.js +0 -8
- package/dist/icons/ArrowUpIcon.js +0 -8
- package/dist/icons/ArtistIcon.js +0 -8
- package/dist/icons/AssetIcon.js +0 -8
- package/dist/icons/AudioIcon.js +0 -8
- package/dist/icons/AudioOffIcon.js +0 -13
- package/dist/icons/BookmarkIcon.js +0 -8
- package/dist/icons/BookmarkOffIcon.js +0 -8
- package/dist/icons/BroadcastIcon.js +0 -8
- package/dist/icons/CalendarIcon.js +0 -8
- package/dist/icons/CatalogIcon.js +0 -8
- package/dist/icons/ChannelIcon.js +0 -12
- package/dist/icons/ChatIcon.js +0 -8
- package/dist/icons/CheckIcon.js +0 -8
- package/dist/icons/ChevronDownIcon.js +0 -8
- package/dist/icons/ChevronLeftIcon.js +0 -8
- package/dist/icons/ChevronRightIcon.js +0 -8
- package/dist/icons/ChevronUpIcon.js +0 -8
- package/dist/icons/CinemaIcon.js +0 -8
- package/dist/icons/ClaimIcon.js +0 -8
- package/dist/icons/CloseIcon.js +0 -8
- package/dist/icons/ColumnChooserIcon.js +0 -8
- package/dist/icons/CompositionIcon.js +0 -8
- package/dist/icons/ConcertIcon.js +0 -8
- package/dist/icons/ConflictIcon.js +0 -8
- package/dist/icons/ConvertIcon.js +0 -8
- package/dist/icons/CopyIcon.js +0 -8
- package/dist/icons/CueSheetIcon.js +0 -8
- package/dist/icons/DashboardIcon.js +0 -8
- package/dist/icons/DatasetIcon.js +0 -8
- package/dist/icons/DeleteIcon.js +0 -8
- package/dist/icons/DeliveryIcon.js +0 -8
- package/dist/icons/DetailsIcon.js +0 -8
- package/dist/icons/DigitalIcon.js +0 -8
- package/dist/icons/DistributionIcon.js +0 -8
- package/dist/icons/DownloadIcon.js +0 -8
- package/dist/icons/EarningsIcon.js +0 -8
- package/dist/icons/EditIcon.js +0 -8
- package/dist/icons/EntitiesIcon.js +0 -8
- package/dist/icons/ErrorIcon.js +0 -8
- package/dist/icons/ExternalLinkIcon.js +0 -8
- package/dist/icons/EyeIcon.js +0 -8
- package/dist/icons/EyeOffIcon.js +0 -8
- package/dist/icons/FavoriteIcon.js +0 -8
- package/dist/icons/FavoriteOffIcon.js +0 -8
- package/dist/icons/FileIcon.js +0 -8
- package/dist/icons/FilterIcon.js +0 -8
- package/dist/icons/FlagIcon.js +0 -8
- package/dist/icons/FlagOffIcon.js +0 -8
- package/dist/icons/ForwardIcon.js +0 -8
- package/dist/icons/FreezeIcon.js +0 -8
- package/dist/icons/HelpIcon.js +0 -8
- package/dist/icons/ImageIcon.js +0 -8
- package/dist/icons/ImageOffIcon.js +0 -11
- package/dist/icons/IncomeIcon.js +0 -8
- package/dist/icons/InformationalIcon.js +0 -8
- package/dist/icons/InsightIcon.js +0 -8
- package/dist/icons/InvoiceIcon.js +0 -8
- package/dist/icons/IssueIcon.js +0 -8
- package/dist/icons/KeywordIcon.js +0 -8
- package/dist/icons/LanguageIcon.js +0 -8
- package/dist/icons/LegalIcon.js +0 -8
- package/dist/icons/LicenseIcon.js +0 -8
- package/dist/icons/LinkIcon.js +0 -8
- package/dist/icons/LocationIcon.js +0 -8
- package/dist/icons/LockIcon.js +0 -8
- package/dist/icons/LoginIcon.js +0 -8
- package/dist/icons/LogoutIcon.js +0 -8
- package/dist/icons/MailIcon.js +0 -8
- package/dist/icons/ManualIcon.js +0 -8
- package/dist/icons/MediaFileIcon.js +0 -8
- package/dist/icons/MenuIcon.js +0 -8
- package/dist/icons/MinusIcon.js +0 -8
- package/dist/icons/MoreOptionsIcon.js +0 -12
- package/dist/icons/NextIcon.js +0 -8
- package/dist/icons/NotificationIcon.js +0 -8
- package/dist/icons/OrganizationIcon.js +0 -8
- package/dist/icons/PageFirstIcon.js +0 -8
- package/dist/icons/PageLastIcon.js +0 -8
- package/dist/icons/PairIcon.js +0 -8
- package/dist/icons/PauseIcon.js +0 -8
- package/dist/icons/PendingIcon.js +0 -8
- package/dist/icons/PlayIcon.js +0 -8
- package/dist/icons/PlaycountIcon.js +0 -8
- package/dist/icons/PlusIcon.js +0 -8
- package/dist/icons/PolicyIcon.js +0 -8
- package/dist/icons/PreviousIcon.js +0 -8
- package/dist/icons/PublicPerformanceIcon.js +0 -8
- package/dist/icons/PublisherIcon.js +0 -11
- package/dist/icons/RadioIcon.js +0 -8
- package/dist/icons/RecordLabelIcon.js +0 -8
- package/dist/icons/RecordingIcon.js +0 -8
- package/dist/icons/RedoIcon.js +0 -8
- package/dist/icons/RefreshIcon.js +0 -8
- package/dist/icons/ReportIcon.js +0 -8
- package/dist/icons/RestoreIcon.js +0 -11
- package/dist/icons/ResumeIcon.js +0 -11
- package/dist/icons/ReviewIcon.js +0 -8
- package/dist/icons/RewindIcon.js +0 -8
- package/dist/icons/RoleIcon.js +0 -8
- package/dist/icons/SearchFilledIcon.js +0 -8
- package/dist/icons/SearchIcon.js +0 -8
- package/dist/icons/SettingsIcon.js +0 -8
- package/dist/icons/ShareIcon.js +0 -8
- package/dist/icons/SortAscendingIcon.js +0 -12
- package/dist/icons/SortDescendingIcon.js +0 -12
- package/dist/icons/SortIcon.js +0 -11
- package/dist/icons/StatusIndicatorIcon.js +0 -8
- package/dist/icons/StopIcon.js +0 -8
- package/dist/icons/SuccessIcon.js +0 -8
- package/dist/icons/TagIcon.js +0 -8
- package/dist/icons/TelevisionIcon.js +0 -8
- package/dist/icons/ThumbsDownIcon.js +0 -8
- package/dist/icons/ThumbsUpIcon.js +0 -8
- package/dist/icons/TrendingDownIcon.js +0 -8
- package/dist/icons/TrendingUpIcon.js +0 -8
- package/dist/icons/TriangleDownIcon.js +0 -8
- package/dist/icons/TriangleLeftIcon.js +0 -8
- package/dist/icons/TriangleRightIcon.js +0 -8
- package/dist/icons/TriangleUpIcon.js +0 -8
- package/dist/icons/UndoIcon.js +0 -8
- package/dist/icons/UnfreezeIcon.js +0 -11
- package/dist/icons/UnlinkIcon.js +0 -8
- package/dist/icons/UnlockIcon.js +0 -8
- package/dist/icons/UnpairIcon.js +0 -8
- package/dist/icons/UnverifiedIcon.js +0 -11
- package/dist/icons/UpdateIcon.js +0 -11
- package/dist/icons/UploadIcon.js +0 -8
- package/dist/icons/UsageIcon.js +0 -8
- package/dist/icons/UserIcon.js +0 -8
- package/dist/icons/UsersIcon.js +0 -13
- package/dist/icons/VerifiedIcon.js +0 -8
- package/dist/icons/VideoIcon.js +0 -8
- package/dist/icons/VideoOffIcon.js +0 -11
- package/dist/icons/WarningIcon.js +0 -8
- package/dist/icons/WorkIcon.js +0 -8
- package/dist/icons/WriterIcon.js +0 -12
- package/dist/icons/YouTubeIcon.js +0 -8
- package/dist/layers/layers.css.js +0 -9
- package/dist/layers/layers.css.ts.vanilla.css +0 -1
- package/dist/sprinkles/createSprinklesMerge.js +0 -27
- package/dist/sprinkles/properties.css.js +0 -9
- package/dist/sprinkles/properties.css.ts.vanilla.css +0 -1
- package/dist/sprinkles/sprinkles.js +0 -8
- package/dist/sprinkles/sprinklesMerge.js +0 -6
- package/dist/utils/cn.js +0 -7
- package/dist/vanilla/assets/src/actions/ActionsContent.css.ts.vanilla-BVxWvGVF.css +0 -22
- package/dist/vanilla/assets/src/actions/ActionsRoot.css.ts.vanilla-B5JvX1-v.css +0 -4
- package/dist/vanilla/assets/src/data-table/DataTableBody.css.ts.vanilla-B8JRxzQ8.css +0 -70
- package/dist/vanilla/assets/src/data-table/DataTableHeaderCell.css.ts.vanilla-B2HJ86a7.css +0 -36
- package/dist/vanilla/assets/src/layers/layers.css.ts.vanilla-CBkaYCBT.css +0 -1
- package/dist/vanilla/assets/src/skeleton/Skeleton.css.ts.vanilla-CNzX69JK.css +0 -6
- package/dist/vanilla/assets/src/sprinkles/properties.css.ts.vanilla-CRlOneec.css +0 -10127
- package/dist/vanilla/assets/src/vanilla/Menu/Menu.css.ts.vanilla-C4DzWzim.css +0 -15
- package/dist/vanilla/assets/src/vanilla/Popover/Popover.css.ts.vanilla-CVYpB1bf.css +0 -10
- package/dist/vanilla/assets/src/vanilla/Table/Table.css.ts.vanilla-D8zK7RSt.css +0 -21
- package/dist/vanilla/assets/src/vanilla/Table/TableBody.css.ts.vanilla-BWkZ_Hqu.css +0 -6
- package/dist/vanilla/assets/src/vanilla/Table/TableCell.css.ts.vanilla-BmF3z2D_.css +0 -28
- package/dist/vanilla/assets/src/vanilla/Table/TableFooter.css.ts.vanilla-CpsnDIuH.css +0 -11
- package/dist/vanilla/assets/src/vanilla/Table/TableHeader.css.ts.vanilla-2yw_MsU1.css +0 -8
- package/dist/vanilla/assets/src/vanilla/Table/TableHeaderCell.css.ts.vanilla-CZtubUTB.css +0 -25
- package/dist/vanilla/assets/src/vanilla/Table/TableRow.css.ts.vanilla-B1NNK8v8.css +0 -18
- package/dist/vanilla/assets/src/vanilla/Text/Text.css.ts.vanilla-cv9I-28W.css +0 -38
- package/dist/vanilla/assets/src/vanilla/Tooltip/Tooltip.css.ts.vanilla-nRPDcOsw.css +0 -39
- package/dist/vanilla-extract/global.css.ts.vanilla.css +0 -1
- package/eslint.config.mjs +0 -176
- package/postcss.config.mjs +0 -13
- package/rollup.config.mjs +0 -66
- package/src/actions/ActionsContent.css.ts +0 -52
- package/src/actions/ActionsContent.tsx +0 -19
- package/src/actions/ActionsRoot.css.ts +0 -8
- package/src/actions/ActionsRoot.tsx +0 -19
- package/src/actions/index.ts +0 -2
- package/src/components/Avatar/Avatar.style.ts +0 -124
- package/src/components/Avatar/Avatar.tsx +0 -38
- package/src/components/Avatar/Avatar.types.ts +0 -24
- package/src/components/Avatar/AvatarStack/AvatarStack.style.ts +0 -25
- package/src/components/Avatar/AvatarStack/AvatarStack.tsx +0 -49
- package/src/components/Avatar/AvatarStack/AvatarStack.types.ts +0 -12
- package/src/components/Avatar/AvatarStack/index.ts +0 -2
- package/src/components/Avatar/AvatarStack/utils.ts +0 -10
- package/src/components/Avatar/UserAvatar.tsx +0 -18
- package/src/components/Avatar/index.ts +0 -3
- package/src/components/Box/Box.style.ts +0 -3
- package/src/components/Box/Box.test.ts +0 -98
- package/src/components/Box/Box.tsx +0 -57
- package/src/components/Box/Box.types.ts +0 -336
- package/src/components/Box/Box.utilities.ts +0 -171
- package/src/components/Box/index.ts +0 -3
- package/src/components/Breadcrumb/BackToItem/BackToItem.tsx +0 -25
- package/src/components/Breadcrumb/BackToItem/index.ts +0 -1
- package/src/components/Breadcrumb/Breadcrumb.style.ts +0 -16
- package/src/components/Breadcrumb/Breadcrumb.tsx +0 -79
- package/src/components/Breadcrumb/Breadcrumb.types.ts +0 -16
- package/src/components/Breadcrumb/BreadcrumbItem/BreadcrumbItem.style.ts +0 -25
- package/src/components/Breadcrumb/BreadcrumbItem/BreadcrumbItem.tsx +0 -35
- package/src/components/Breadcrumb/BreadcrumbItem/index.ts +0 -1
- package/src/components/Breadcrumb/index.ts +0 -3
- package/src/components/Broadcast/Broadcast.style.ts +0 -132
- package/src/components/Broadcast/Broadcast.tsx +0 -89
- package/src/components/Broadcast/Broadcast.types.ts +0 -43
- package/src/components/Broadcast/index.ts +0 -1
- package/src/components/Broadcast/tests/Broadcast.test.tsx +0 -71
- package/src/components/Button/Button.tsx +0 -57
- package/src/components/Button/Button.types.ts +0 -5
- package/src/components/Button/ButtonLoader/ButtonLoader.style.ts +0 -49
- package/src/components/Button/ButtonLoader/ButtonLoader.tsx +0 -20
- package/src/components/Button/ButtonLoader/index.ts +0 -2
- package/src/components/Button/index.ts +0 -2
- package/src/components/ButtonBase/ButtonBase.style.ts +0 -94
- package/src/components/ButtonBase/ButtonBase.tsx +0 -102
- package/src/components/ButtonBase/constants.ts +0 -43
- package/src/components/ButtonBase/index.ts +0 -2
- package/src/components/Card/Card.style.ts +0 -17
- package/src/components/Card/Card.tsx +0 -25
- package/src/components/Card/index.ts +0 -2
- package/src/components/Chart/BarChart/BarChart.tsx +0 -154
- package/src/components/Chart/BarChart/components/CustomLabel/CustomLabel.tsx +0 -35
- package/src/components/Chart/BarChart/components/CustomLabel/index.ts +0 -1
- package/src/components/Chart/BarChart/components/CustomTooltip/CustomTooltip.style.ts +0 -36
- package/src/components/Chart/BarChart/components/CustomTooltip/CustomTooltip.tsx +0 -47
- package/src/components/Chart/BarChart/components/CustomTooltip/index.ts +0 -1
- package/src/components/Chart/BarChart/components/CustomTooltipContent/CustomTooltipContent.style.ts +0 -45
- package/src/components/Chart/BarChart/components/CustomTooltipContent/CustomTooltipContent.tsx +0 -31
- package/src/components/Chart/BarChart/components/CustomTooltipContent/index.ts +0 -1
- package/src/components/Chart/BarChart/index.ts +0 -1
- package/src/components/Chart/BarChart/utils.ts +0 -69
- package/src/components/Chart/DonutChart/DonutChart.tsx +0 -50
- package/src/components/Chart/DonutChart/components/CustomLabel/CustomLabel.style.ts +0 -16
- package/src/components/Chart/DonutChart/components/CustomLabel/CustomLabel.tsx +0 -45
- package/src/components/Chart/DonutChart/components/CustomLabel/index.ts +0 -1
- package/src/components/Chart/DonutChart/index.ts +0 -1
- package/src/components/Chart/LineChart/LineChart.test.ts +0 -33
- package/src/components/Chart/LineChart/LineChart.tsx +0 -103
- package/src/components/Chart/LineChart/components/CustomTooltip/CustomTooltip.style.ts +0 -40
- package/src/components/Chart/LineChart/components/CustomTooltip/CustomTooltip.tsx +0 -32
- package/src/components/Chart/LineChart/components/CustomTooltip/index.ts +0 -1
- package/src/components/Chart/LineChart/components/GradientLine/GradientLine.tsx +0 -17
- package/src/components/Chart/LineChart/components/GradientLine/index.ts +0 -1
- package/src/components/Chart/LineChart/index.ts +0 -1
- package/src/components/Chart/LineChart/mockedData.ts +0 -43
- package/src/components/Chart/LineChart/story.utils.ts +0 -13
- package/src/components/Chart/LineChart/utils.ts +0 -33
- package/src/components/Chart/Wrapper.tsx +0 -31
- package/src/components/Controls/CheckBox/CheckBox.style.ts +0 -84
- package/src/components/Controls/CheckBox/CheckBox.test.tsx +0 -86
- package/src/components/Controls/CheckBox/CheckBox.tsx +0 -98
- package/src/components/Controls/CheckBox/__snapshots__/CheckBox.stories.storyshot +0 -2410
- package/src/components/Controls/CheckBox/__snapshots__/CheckBox.test.tsx.snap +0 -145
- package/src/components/Controls/CheckBox/index.ts +0 -2
- package/src/components/Controls/ControlLabel/ControlHelpText.tsx +0 -16
- package/src/components/Controls/ControlLabel/ControlLabel.style.ts +0 -39
- package/src/components/Controls/ControlLabel/ControlLabelText.tsx +0 -18
- package/src/components/Controls/ControlLabel/index.ts +0 -2
- package/src/components/Controls/Controls.types.ts +0 -12
- package/src/components/Controls/Radio/Radio.style.ts +0 -96
- package/src/components/Controls/Radio/Radio.test.tsx +0 -62
- package/src/components/Controls/Radio/Radio.tsx +0 -73
- package/src/components/Controls/Radio/__snapshots__/Radio.stories.storyshot +0 -2659
- package/src/components/Controls/Radio/__snapshots__/Radio.test.tsx.snap +0 -122
- package/src/components/Controls/Radio/components/RadioGroup/RadioGroup.tsx +0 -42
- package/src/components/Controls/Radio/components/RadioGroup/RadioGroupContext.ts +0 -6
- package/src/components/Controls/Radio/components/RadioGroup/index.ts +0 -2
- package/src/components/Controls/Radio/index.ts +0 -2
- package/src/components/Controls/Switch/Switch.style.ts +0 -91
- package/src/components/Controls/Switch/Switch.test.tsx +0 -53
- package/src/components/Controls/Switch/Switch.tsx +0 -84
- package/src/components/Controls/Switch/__snapshots__/Switch.test.tsx.snap +0 -141
- package/src/components/Controls/Switch/index.ts +0 -2
- package/src/components/Controls/index.ts +0 -5
- package/src/components/DatePicker/DatePickInput/DatePickInput.style.ts +0 -47
- package/src/components/DatePicker/DatePickInput/DatePickInput.tsx +0 -165
- package/src/components/DatePicker/DatePickInput/index.ts +0 -2
- package/src/components/DatePicker/DatePicker.style.ts +0 -15
- package/src/components/DatePicker/DatePicker.test.tsx +0 -346
- package/src/components/DatePicker/DatePicker.tsx +0 -231
- package/src/components/DatePicker/DatePicker.types.ts +0 -57
- package/src/components/DatePicker/Day/Day.style.ts +0 -111
- package/src/components/DatePicker/Day/Day.test.tsx +0 -97
- package/src/components/DatePicker/Day/Day.tsx +0 -100
- package/src/components/DatePicker/Day/__snapshots__/Day.test.tsx.snap +0 -320
- package/src/components/DatePicker/Day/index.ts +0 -2
- package/src/components/DatePicker/Month/Month.style.ts +0 -32
- package/src/components/DatePicker/Month/Month.test.tsx +0 -96
- package/src/components/DatePicker/Month/Month.tsx +0 -154
- package/src/components/DatePicker/Month/Month.utils.ts +0 -107
- package/src/components/DatePicker/Month/__snapshots__/Month.test.tsx.snap +0 -803
- package/src/components/DatePicker/Month/hooks/useMonthKeyboardNavigation.ts +0 -84
- package/src/components/DatePicker/Month/index.ts +0 -2
- package/src/components/DatePicker/OverlayComponent/OverlayComponent.style.ts +0 -71
- package/src/components/DatePicker/OverlayComponent/OverlayComponent.test.tsx +0 -109
- package/src/components/DatePicker/OverlayComponent/OverlayComponent.tsx +0 -118
- package/src/components/DatePicker/OverlayComponent/__snapshots__/OverlayComponent.test.tsx.snap +0 -3183
- package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/MonthWrapper.style.ts +0 -55
- package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/MonthWrapper.test.tsx +0 -52
- package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/MonthWrapper.tsx +0 -154
- package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/__snapshots__/MonthWrapper.test.tsx.snap +0 -1098
- package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/index.ts +0 -0
- package/src/components/DatePicker/OverlayComponent/index.ts +0 -2
- package/src/components/DatePicker/OverlayComponent/utils.ts +0 -15
- package/src/components/DatePicker/constants.ts +0 -28
- package/src/components/DatePicker/index.ts +0 -4
- package/src/components/DatePicker/utils.ts +0 -17
- package/src/components/Drawer/Drawer.style.ts +0 -204
- package/src/components/Drawer/Drawer.test.tsx +0 -127
- package/src/components/Drawer/Drawer.tsx +0 -80
- package/src/components/Drawer/Drawer.types.ts +0 -20
- package/src/components/Drawer/DrawerContext.tsx +0 -103
- package/src/components/Drawer/components/DrawerContent/DrawerContent.tsx +0 -26
- package/src/components/Drawer/components/DrawerContent/hooks/useDrawerContentObserver.ts +0 -52
- package/src/components/Drawer/components/DrawerContent/index.ts +0 -1
- package/src/components/Drawer/components/DrawerFooter/DrawerFooter.tsx +0 -20
- package/src/components/Drawer/components/DrawerFooter/index.ts +0 -1
- package/src/components/Drawer/components/DrawerHeader/DrawerHeader.tsx +0 -22
- package/src/components/Drawer/components/DrawerHeader/index.ts +0 -1
- package/src/components/Drawer/components/index.ts +0 -3
- package/src/components/Drawer/index.ts +0 -5
- package/src/components/DropdownButton/DropdownButton.style.ts +0 -90
- package/src/components/DropdownButton/DropdownButton.test.tsx +0 -57
- package/src/components/DropdownButton/DropdownButton.tsx +0 -159
- package/src/components/DropdownButton/index.ts +0 -1
- package/src/components/ExpandCollapse/ExpandCollapse.style.ts +0 -9
- package/src/components/ExpandCollapse/ExpandCollapse.tsx +0 -56
- package/src/components/ExpandCollapse/ExpandCollapse.types.ts +0 -68
- package/src/components/ExpandCollapse/index.ts +0 -3
- package/src/components/ExpandCollapse/useManageContentRef.ts +0 -45
- package/src/components/ExpandCollapse/utils.ts +0 -21
- package/src/components/Filter/Filter.test.tsx +0 -218
- package/src/components/Filter/Filter.tsx +0 -162
- package/src/components/Filter/Filter.types.ts +0 -77
- package/src/components/Filter/StatefulFilter.tsx +0 -37
- package/src/components/Filter/components/FilterButton/FilterButton.style.ts +0 -74
- package/src/components/Filter/components/FilterButton/FilterButton.tsx +0 -101
- package/src/components/Filter/components/FilterButton/index.ts +0 -1
- package/src/components/Filter/components/FilterMenu/FilterMenu.style.ts +0 -15
- package/src/components/Filter/components/FilterMenu/FilterMenu.tsx +0 -78
- package/src/components/Filter/components/FilterMenu/components/FilterSearchField/FilterSearchField.style.ts +0 -31
- package/src/components/Filter/components/FilterMenu/components/FilterSearchField/FilterSearchField.tsx +0 -106
- package/src/components/Filter/components/FilterMenu/components/FilterSearchField/index.ts +0 -1
- package/src/components/Filter/components/FilterMenu/components/Options/Options.style.ts +0 -40
- package/src/components/Filter/components/FilterMenu/components/Options/Options.tsx +0 -94
- package/src/components/Filter/components/FilterMenu/components/Options/index.ts +0 -1
- package/src/components/Filter/components/FilterMenu/index.ts +0 -1
- package/src/components/Filter/constants.ts +0 -39
- package/src/components/Filter/hooks/index.ts +0 -1
- package/src/components/Filter/hooks/useFilterWithSelectionUtils.ts +0 -122
- package/src/components/Filter/index.ts +0 -3
- package/src/components/Icon/Icon.style.ts +0 -52
- package/src/components/Icon/Icon.tsx +0 -68
- package/src/components/Icon/Icon.types.ts +0 -169
- package/src/components/Icon/assets/audioControls/forward.svg +0 -3
- package/src/components/Icon/assets/audioControls/next.svg +0 -3
- package/src/components/Icon/assets/audioControls/pause.svg +0 -3
- package/src/components/Icon/assets/audioControls/play.svg +0 -3
- package/src/components/Icon/assets/audioControls/previous.svg +0 -3
- package/src/components/Icon/assets/audioControls/resume.svg +0 -4
- package/src/components/Icon/assets/audioControls/rewind.svg +0 -3
- package/src/components/Icon/assets/audioControls/stop.svg +0 -3
- package/src/components/Icon/assets/basicActions/check.svg +0 -3
- package/src/components/Icon/assets/basicActions/close.svg +0 -3
- package/src/components/Icon/assets/basicActions/columnChooser.svg +0 -3
- package/src/components/Icon/assets/basicActions/convert.svg +0 -3
- package/src/components/Icon/assets/basicActions/copy.svg +0 -3
- package/src/components/Icon/assets/basicActions/delete.svg +0 -3
- package/src/components/Icon/assets/basicActions/download.svg +0 -3
- package/src/components/Icon/assets/basicActions/edit.svg +0 -3
- package/src/components/Icon/assets/basicActions/login.svg +0 -3
- package/src/components/Icon/assets/basicActions/logout.svg +0 -3
- package/src/components/Icon/assets/basicActions/mediaFile.svg +0 -3
- package/src/components/Icon/assets/basicActions/minus.svg +0 -3
- package/src/components/Icon/assets/basicActions/plus.svg +0 -3
- package/src/components/Icon/assets/basicActions/redo.svg +0 -3
- package/src/components/Icon/assets/basicActions/refresh.svg +0 -3
- package/src/components/Icon/assets/basicActions/restore.svg +0 -4
- package/src/components/Icon/assets/basicActions/review.svg +0 -3
- package/src/components/Icon/assets/basicActions/search.svg +0 -3
- package/src/components/Icon/assets/basicActions/share.svg +0 -3
- package/src/components/Icon/assets/basicActions/sort.svg +0 -4
- package/src/components/Icon/assets/basicActions/sortAscending.svg +0 -5
- package/src/components/Icon/assets/basicActions/sortDescending.svg +0 -5
- package/src/components/Icon/assets/basicActions/thumbsDown.svg +0 -3
- package/src/components/Icon/assets/basicActions/thumbsUp.svg +0 -3
- package/src/components/Icon/assets/basicActions/undo.svg +0 -3
- package/src/components/Icon/assets/basicActions/update.svg +0 -4
- package/src/components/Icon/assets/basicActions/upload.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/analytics.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/dashboard.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/dataset.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/earnings.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/income.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/insight.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/invoice.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/trendingDown.svg +0 -3
- package/src/components/Icon/assets/dataAndFinance/trendingUp.svg +0 -3
- package/src/components/Icon/assets/generic/calendar.svg +0 -3
- package/src/components/Icon/assets/generic/chat.svg +0 -3
- package/src/components/Icon/assets/generic/delivery.svg +0 -3
- package/src/components/Icon/assets/generic/details.svg +0 -3
- package/src/components/Icon/assets/generic/externalLink.svg +0 -3
- package/src/components/Icon/assets/generic/file.svg +0 -3
- package/src/components/Icon/assets/generic/filter.svg +0 -3
- package/src/components/Icon/assets/generic/issue.svg +0 -3
- package/src/components/Icon/assets/generic/keyword.svg +0 -3
- package/src/components/Icon/assets/generic/language.svg +0 -3
- package/src/components/Icon/assets/generic/legal.svg +0 -3
- package/src/components/Icon/assets/generic/location.svg +0 -3
- package/src/components/Icon/assets/generic/mail.svg +0 -3
- package/src/components/Icon/assets/generic/manual.svg +0 -3
- package/src/components/Icon/assets/generic/moreOptions.svg +0 -5
- package/src/components/Icon/assets/generic/notification.svg +0 -3
- package/src/components/Icon/assets/generic/policy.svg +0 -3
- package/src/components/Icon/assets/generic/report.svg +0 -3
- package/src/components/Icon/assets/generic/search filled.svg +0 -3
- package/src/components/Icon/assets/generic/settings.svg +0 -3
- package/src/components/Icon/assets/generic/tag.svg +0 -3
- package/src/components/Icon/assets/iconSelector.ts +0 -312
- package/src/components/Icon/assets/musicBusiness/album.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/artist.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/asset.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/broadcast.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/catalog.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/channel.svg +0 -5
- package/src/components/Icon/assets/musicBusiness/cinema.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/claim.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/composition.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/concert.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/conflict.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/cueSheet.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/digital.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/distribution.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/license.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/playcount.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/publicPerformance.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/publisher.svg +0 -4
- package/src/components/Icon/assets/musicBusiness/radio.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/recordLabel.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/recording.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/television.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/usage.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/work.svg +0 -3
- package/src/components/Icon/assets/musicBusiness/writer.svg +0 -5
- package/src/components/Icon/assets/musicBusiness/youTube.svg +0 -3
- package/src/components/Icon/assets/navigation/apps.svg +0 -3
- package/src/components/Icon/assets/navigation/arrowDown.svg +0 -3
- package/src/components/Icon/assets/navigation/arrowLeft.svg +0 -3
- package/src/components/Icon/assets/navigation/arrowRight.svg +0 -3
- package/src/components/Icon/assets/navigation/arrowUp.svg +0 -3
- package/src/components/Icon/assets/navigation/chevronDown.svg +0 -3
- package/src/components/Icon/assets/navigation/chevronLeft.svg +0 -3
- package/src/components/Icon/assets/navigation/chevronRight.svg +0 -3
- package/src/components/Icon/assets/navigation/chevronUp.svg +0 -3
- package/src/components/Icon/assets/navigation/menu.svg +0 -3
- package/src/components/Icon/assets/navigation/pageFirst.svg +0 -3
- package/src/components/Icon/assets/navigation/pageLast.svg +0 -3
- package/src/components/Icon/assets/navigation/triangleDown.svg +0 -3
- package/src/components/Icon/assets/navigation/triangleLeft.svg +0 -3
- package/src/components/Icon/assets/navigation/triangleRight.svg +0 -3
- package/src/components/Icon/assets/navigation/triangleUp.svg +0 -3
- package/src/components/Icon/assets/toggledActions/audio.svg +0 -3
- package/src/components/Icon/assets/toggledActions/audioOff.svg +0 -6
- package/src/components/Icon/assets/toggledActions/bookmark.svg +0 -3
- package/src/components/Icon/assets/toggledActions/bookmarkOff.svg +0 -3
- package/src/components/Icon/assets/toggledActions/eye.svg +0 -3
- package/src/components/Icon/assets/toggledActions/eyeOff.svg +0 -3
- package/src/components/Icon/assets/toggledActions/favorite.svg +0 -3
- package/src/components/Icon/assets/toggledActions/favoriteOff.svg +0 -3
- package/src/components/Icon/assets/toggledActions/flag.svg +0 -3
- package/src/components/Icon/assets/toggledActions/flagOff.svg +0 -3
- package/src/components/Icon/assets/toggledActions/freeze.svg +0 -3
- package/src/components/Icon/assets/toggledActions/image.svg +0 -3
- package/src/components/Icon/assets/toggledActions/imageOff.svg +0 -4
- package/src/components/Icon/assets/toggledActions/link.svg +0 -3
- package/src/components/Icon/assets/toggledActions/lock.svg +0 -3
- package/src/components/Icon/assets/toggledActions/pair.svg +0 -3
- package/src/components/Icon/assets/toggledActions/unfreeze.svg +0 -4
- package/src/components/Icon/assets/toggledActions/unlink.svg +0 -3
- package/src/components/Icon/assets/toggledActions/unlock.svg +0 -3
- package/src/components/Icon/assets/toggledActions/unpair.svg +0 -3
- package/src/components/Icon/assets/toggledActions/video.svg +0 -3
- package/src/components/Icon/assets/toggledActions/videoOff.svg +0 -4
- package/src/components/Icon/assets/usersAndStatus/account.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/entities.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/error.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/help.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/informational.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/organization.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/pending.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/role.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/statusIndicator.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/success.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/unverified.svg +0 -4
- package/src/components/Icon/assets/usersAndStatus/user.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/users.svg +0 -6
- package/src/components/Icon/assets/usersAndStatus/verified.svg +0 -3
- package/src/components/Icon/assets/usersAndStatus/warning.svg +0 -3
- package/src/components/Icon/constants.ts +0 -199
- package/src/components/Icon/index.ts +0 -5
- package/src/components/IconButton/IconButton.tsx +0 -59
- package/src/components/IconButton/index.ts +0 -2
- package/src/components/InlineAlert/InlineAlert.style.ts +0 -117
- package/src/components/InlineAlert/InlineAlert.tsx +0 -89
- package/src/components/InlineAlert/InlineAlert.types.ts +0 -48
- package/src/components/InlineAlert/index.ts +0 -2
- package/src/components/InlineAlert/tests/InlineAlert.test.tsx +0 -71
- package/src/components/Label/Label.style.ts +0 -42
- package/src/components/Label/Label.tsx +0 -36
- package/src/components/Label/index.ts +0 -2
- package/src/components/Link/Link.style.ts +0 -90
- package/src/components/Link/Link.tsx +0 -58
- package/src/components/Link/Link.types.ts +0 -23
- package/src/components/Link/index.ts +0 -1
- package/src/components/List/List.style.ts +0 -50
- package/src/components/List/List.tsx +0 -168
- package/src/components/List/ListItem.tsx +0 -28
- package/src/components/List/ListSection.tsx +0 -22
- package/src/components/List/Window.tsx +0 -86
- package/src/components/List/components/ListItemAction/ListItemAction.style.ts +0 -10
- package/src/components/List/components/ListItemAction/ListItemAction.tsx +0 -12
- package/src/components/List/components/ListItemAction/index.ts +0 -2
- package/src/components/List/components/ListItemText/ListItemText.style.ts +0 -45
- package/src/components/List/components/ListItemText/ListItemText.tsx +0 -19
- package/src/components/List/components/ListItemText/index.ts +0 -2
- package/src/components/List/components/ListItemWrapper/ListItemWrapper.style.ts +0 -65
- package/src/components/List/components/ListItemWrapper/ListItemWrapper.tsx +0 -49
- package/src/components/List/components/ListItemWrapper/README.md +0 -1
- package/src/components/List/components/ListItemWrapper/index.ts +0 -2
- package/src/components/List/index.ts +0 -7
- package/src/components/List/types.ts +0 -13
- package/src/components/List/utils.tsx +0 -13
- package/src/components/Menu/Menu.style.ts +0 -83
- package/src/components/Menu/Menu.tsx +0 -91
- package/src/components/Menu/MenuItemDivider.tsx +0 -31
- package/src/components/Menu/index.ts +0 -4
- package/src/components/Modal/Modal.style.ts +0 -45
- package/src/components/Modal/Modal.test.tsx +0 -93
- package/src/components/Modal/Modal.tsx +0 -87
- package/src/components/Modal/ModalContent/ModalContent.style.ts +0 -47
- package/src/components/Modal/ModalContent/ModalContent.tsx +0 -78
- package/src/components/Modal/ModalContent/index.ts +0 -1
- package/src/components/Modal/index.ts +0 -1
- package/src/components/MultiTextFieldBase/MultiTextFieldBase.style.ts +0 -111
- package/src/components/MultiTextFieldBase/MultiTextFieldBase.tsx +0 -181
- package/src/components/MultiTextFieldBase/hooks.tsx +0 -97
- package/src/components/MultiTextFieldBase/index.ts +0 -1
- package/src/components/Notification/Banner/Banner.tsx +0 -63
- package/src/components/Notification/Banner/index.tsx +0 -2
- package/src/components/Notification/InlineNotification/InlineNotification.tsx +0 -59
- package/src/components/Notification/InlineNotification/index.tsx +0 -2
- package/src/components/Notification/Notification.style.ts +0 -59
- package/src/components/Notification/Notification.test.tsx +0 -293
- package/src/components/Notification/Notification.tsx +0 -16
- package/src/components/Notification/NotificationVisual/NotificationVisual.style.tsx +0 -14
- package/src/components/Notification/NotificationVisual/NotificationVisual.tsx +0 -58
- package/src/components/Notification/NotificationVisual/index.tsx +0 -2
- package/src/components/Notification/NotificationsContainer/NotificationsContainer.style.tsx +0 -54
- package/src/components/Notification/NotificationsContainer/NotificationsContainer.tsx +0 -31
- package/src/components/Notification/NotificationsContainer/index.ts +0 -2
- package/src/components/Notification/Snackbar/Snackbar.style.ts +0 -55
- package/src/components/Notification/Snackbar/Snackbar.tsx +0 -94
- package/src/components/Notification/Snackbar/index.tsx +0 -2
- package/src/components/Notification/subcomponents/CompactNotification/CompactNotification.style.ts +0 -48
- package/src/components/Notification/subcomponents/CompactNotification/CompactNotification.tsx +0 -118
- package/src/components/Notification/subcomponents/CompactNotification/index.tsx +0 -2
- package/src/components/Notification/subcomponents/NotificationActionsArea/NotificationActionsArea.tsx +0 -43
- package/src/components/Notification/subcomponents/NotificationActionsArea/index.ts +0 -1
- package/src/components/NumberField/NumberField.style.ts +0 -10
- package/src/components/NumberField/NumberField.test.tsx +0 -83
- package/src/components/NumberField/NumberField.tsx +0 -135
- package/src/components/NumberField/components/Stepper/Stepper.style.ts +0 -37
- package/src/components/NumberField/components/Stepper/Stepper.tsx +0 -46
- package/src/components/NumberField/components/Stepper/index.ts +0 -1
- package/src/components/NumberField/index.ts +0 -2
- package/src/components/Pagination/Pagination.tsx +0 -86
- package/src/components/Pagination/index.ts +0 -2
- package/src/components/ProgressIndicator/ProgressIndicator.tsx +0 -25
- package/src/components/ProgressIndicator/ProgressIndicator.types.ts +0 -12
- package/src/components/ProgressIndicator/__snapshots__/ProgressIndicator.stories.storyshot +0 -883
- package/src/components/ProgressIndicator/components/ProgressBar/ProgressBar.style.ts +0 -85
- package/src/components/ProgressIndicator/components/ProgressBar/ProgressBar.tsx +0 -37
- package/src/components/ProgressIndicator/components/ProgressBar/index.ts +0 -1
- package/src/components/ProgressIndicator/components/ProgressCircle/ProgressCircle.style.ts +0 -24
- package/src/components/ProgressIndicator/components/ProgressCircle/ProgressCircle.tsx +0 -60
- package/src/components/ProgressIndicator/components/ProgressCircle/index.ts +0 -1
- package/src/components/ProgressIndicator/index.ts +0 -1
- package/src/components/Search/Search.style.ts +0 -104
- package/src/components/Search/Search.test.tsx +0 -87
- package/src/components/Search/Search.tsx +0 -86
- package/src/components/Search/Search.types.ts +0 -33
- package/src/components/Search/StatefulSearch.tsx +0 -66
- package/src/components/Search/constants.ts +0 -10
- package/src/components/Search/index.ts +0 -3
- package/src/components/Select/Select.style.ts +0 -21
- package/src/components/Select/Select.test.tsx +0 -413
- package/src/components/Select/Select.tsx +0 -406
- package/src/components/Select/StatefulSelect.tsx +0 -36
- package/src/components/Select/components/SelectMenu/SelectMenu.style.tsx +0 -66
- package/src/components/Select/components/SelectMenu/SelectMenu.tsx +0 -119
- package/src/components/Select/components/SelectMenu/index.ts +0 -2
- package/src/components/Select/constants.ts +0 -58
- package/src/components/Select/index.ts +0 -4
- package/src/components/Select/types.ts +0 -74
- package/src/components/Slider/Slider.style.tsx +0 -23
- package/src/components/Slider/Slider.tsx +0 -208
- package/src/components/Slider/components/SliderMark/SliderMark.style.tsx +0 -74
- package/src/components/Slider/components/SliderMark/SliderMark.tsx +0 -54
- package/src/components/Slider/components/SliderMark/index.ts +0 -2
- package/src/components/Slider/components/SliderThumb/SliderThumb.style.tsx +0 -44
- package/src/components/Slider/components/SliderThumb/SliderThumb.tsx +0 -36
- package/src/components/Slider/components/SliderThumb/index.ts +0 -2
- package/src/components/Slider/components/SliderTrack/SliderTrack.style.tsx +0 -14
- package/src/components/Slider/components/SliderTrack/SliderTrack.tsx +0 -58
- package/src/components/Slider/components/SliderTrack/index.ts +0 -2
- package/src/components/Slider/index.ts +0 -2
- package/src/components/TabStepper/TabStepper.tsx +0 -44
- package/src/components/TabStepper/components/TabStep/TabStep.style.ts +0 -29
- package/src/components/TabStepper/components/TabStep/TabStep.tsx +0 -75
- package/src/components/TabStepper/components/TabStep/index.ts +0 -1
- package/src/components/TabStepper/components/TabStepList/TabStepList.style.ts +0 -126
- package/src/components/TabStepper/components/TabStepList/TabStepList.tsx +0 -19
- package/src/components/TabStepper/components/TabStepList/index.ts +0 -1
- package/src/components/TabStepper/components/index.ts +0 -2
- package/src/components/TabStepper/index.ts +0 -3
- package/src/components/TabStepper/types.ts +0 -48
- package/src/components/TabStepper/utils/TabStepperStoryComponents.tsx +0 -8
- package/src/components/Table/Table.style.ts +0 -30
- package/src/components/Table/Table.tsx +0 -167
- package/src/components/Table/components/OptimizedTableRow.tsx +0 -121
- package/src/components/Table/components/TBody/TBody.style.ts +0 -22
- package/src/components/Table/components/TBody/TBody.tsx +0 -25
- package/src/components/Table/components/TBody/index.ts +0 -1
- package/src/components/Table/components/TD/TD.style.ts +0 -64
- package/src/components/Table/components/TD/TD.tsx +0 -64
- package/src/components/Table/components/TD/index.ts +0 -1
- package/src/components/Table/components/TH/TH.style.ts +0 -88
- package/src/components/Table/components/TH/TH.tsx +0 -120
- package/src/components/Table/components/TH/components/SortingButton/SortingButton.style.ts +0 -14
- package/src/components/Table/components/TH/components/SortingButton/SortingButton.tsx +0 -48
- package/src/components/Table/components/TH/components/SortingButton/index.ts +0 -1
- package/src/components/Table/components/TH/components/THOptions/THOptions.style.ts +0 -8
- package/src/components/Table/components/TH/components/THOptions/THOptions.tsx +0 -106
- package/src/components/Table/components/TH/components/THOptions/components/SortingOption.tsx +0 -40
- package/src/components/Table/components/TH/components/THOptions/components/index.ts +0 -1
- package/src/components/Table/components/TH/components/THOptions/index.ts +0 -1
- package/src/components/Table/components/TH/components/index.ts +0 -1
- package/src/components/Table/components/TH/index.ts +0 -1
- package/src/components/Table/components/THead/THead.style.ts +0 -34
- package/src/components/Table/components/THead/THead.tsx +0 -18
- package/src/components/Table/components/THead/index.ts +0 -1
- package/src/components/Table/components/TPagination/TPagination.style.ts +0 -59
- package/src/components/Table/components/TPagination/TPagination.tsx +0 -106
- package/src/components/Table/components/TPagination/index.ts +0 -1
- package/src/components/Table/components/TR/TR.style.ts +0 -33
- package/src/components/Table/components/TR/TR.tsx +0 -39
- package/src/components/Table/components/TR/index.ts +0 -1
- package/src/components/Table/components/TTitle/TTitle.style.ts +0 -33
- package/src/components/Table/components/TTitle/TTitle.tsx +0 -86
- package/src/components/Table/components/TTitle/components/ColumnChooser/ColumnChooser.style.ts +0 -8
- package/src/components/Table/components/TTitle/components/ColumnChooser/ColumnChooser.tsx +0 -152
- package/src/components/Table/components/TTitle/components/ColumnChooser/index.ts +0 -1
- package/src/components/Table/components/TTitle/components/utils.ts +0 -9
- package/src/components/Table/components/TTitle/index.ts +0 -1
- package/src/components/Table/components/index.ts +0 -7
- package/src/components/Table/constants.tsx +0 -8
- package/src/components/Table/hooks/index.ts +0 -1
- package/src/components/Table/hooks/useTable.tsx +0 -243
- package/src/components/Table/index.ts +0 -7
- package/src/components/Table/types.ts +0 -152
- package/src/components/Table/utils/TableStoryComponents.tsx +0 -21
- package/src/components/TableV4/TableRowContext.ts +0 -37
- package/src/components/TableV4/TableV4.style.ts +0 -40
- package/src/components/TableV4/TableV4.test.tsx +0 -232
- package/src/components/TableV4/TableV4.tsx +0 -294
- package/src/components/TableV4/components/ExtendedColumnItem/ExtendedColumnItem.style.tsx +0 -15
- package/src/components/TableV4/components/ExtendedColumnItem/ExtendedColumnItem.tsx +0 -99
- package/src/components/TableV4/components/ExtendedColumnItem/index.ts +0 -2
- package/src/components/TableV4/components/RenderRowOrNestedRow/RenderRowOrNestedRow.style.ts +0 -41
- package/src/components/TableV4/components/RenderRowOrNestedRow/RenderRowOrNestedRow.tsx +0 -178
- package/src/components/TableV4/components/RenderRowOrNestedRow/components/ContentCell/ContentCell.style.ts +0 -11
- package/src/components/TableV4/components/RenderRowOrNestedRow/components/ContentCell/ContentCell.tsx +0 -71
- package/src/components/TableV4/components/RenderRowOrNestedRow/components/ContentCell/index.ts +0 -1
- package/src/components/TableV4/components/RenderRowOrNestedRow/components/ExpandedButtonCell/ExpandedButtonCell.tsx +0 -67
- package/src/components/TableV4/components/RenderRowOrNestedRow/components/ExpandedButtonCell/index.ts +0 -1
- package/src/components/TableV4/components/RenderRowOrNestedRow/index.ts +0 -1
- package/src/components/TableV4/components/TableCell/TableCell.style.tsx +0 -23
- package/src/components/TableV4/components/TableCell/TableCell.tsx +0 -89
- package/src/components/TableV4/components/TableCell/index.ts +0 -2
- package/src/components/TableV4/components/TableCell/utils.tsx +0 -27
- package/src/components/TableV4/components/TableRow/TableRow.tsx +0 -47
- package/src/components/TableV4/components/TableRow/index.ts +0 -2
- package/src/components/TableV4/components/TableRowWrapper/TableRowWrapper.tsx +0 -75
- package/src/components/TableV4/components/TableRowWrapper/index.ts +0 -2
- package/src/components/TableV4/index.ts +0 -3
- package/src/components/TableV4/types.ts +0 -94
- package/src/components/TableV4/utils/TableStoryComponents.tsx +0 -12
- package/src/components/TableV4/utils/index.ts +0 -1
- package/src/components/TableV4/utils/utils.ts +0 -10
- package/src/components/Tabs/Tabs.style.ts +0 -19
- package/src/components/Tabs/Tabs.test.tsx +0 -81
- package/src/components/Tabs/Tabs.tsx +0 -54
- package/src/components/Tabs/components/Tab/Tab.style.ts +0 -12
- package/src/components/Tabs/components/Tab/Tab.tsx +0 -19
- package/src/components/Tabs/components/Tab/index.ts +0 -1
- package/src/components/Tabs/components/TabList/TabList.style.ts +0 -85
- package/src/components/Tabs/components/TabList/TabList.tsx +0 -19
- package/src/components/Tabs/components/TabList/index.ts +0 -1
- package/src/components/Tabs/components/TabPanel/TabPanel.tsx +0 -18
- package/src/components/Tabs/components/TabPanel/index.ts +0 -1
- package/src/components/Tabs/components/TabsContainer/TabsContainer.style.ts +0 -12
- package/src/components/Tabs/components/TabsContainer/TabsContainer.tsx +0 -25
- package/src/components/Tabs/components/TabsContainer/index.ts +0 -1
- package/src/components/Tabs/components/index.ts +0 -4
- package/src/components/Tabs/index.ts +0 -3
- package/src/components/Tabs/types.ts +0 -74
- package/src/components/Tabs/utils/TabsStoryComponents.tsx +0 -8
- package/src/components/Tag/Tag.style.ts +0 -106
- package/src/components/Tag/Tag.test.tsx +0 -94
- package/src/components/Tag/Tag.tsx +0 -53
- package/src/components/Tag/Tag.types.ts +0 -30
- package/src/components/Tag/constants.ts +0 -36
- package/src/components/Tag/hooks/useGetTagUtils.tsx +0 -79
- package/src/components/Tag/index.ts +0 -2
- package/src/components/TextArea/TextArea.style.ts +0 -54
- package/src/components/TextArea/TextArea.tsx +0 -115
- package/src/components/TextArea/index.ts +0 -2
- package/src/components/TextField/TextField.style.ts +0 -34
- package/src/components/TextField/TextField.test.tsx +0 -145
- package/src/components/TextField/TextField.tsx +0 -152
- package/src/components/TextField/components/commons.tsx +0 -13
- package/src/components/TextField/index.ts +0 -2
- package/src/components/TextInputBase/TextInputBase.style.ts +0 -219
- package/src/components/TextInputBase/TextInputBase.tsx +0 -96
- package/src/components/TextInputBase/index.ts +0 -2
- package/src/components/ThemeProvider/Test.tsx +0 -14
- package/src/components/ThemeProvider/ThemeProvider.style.ts +0 -31
- package/src/components/ThemeProvider/ThemeProvider.test.tsx +0 -46
- package/src/components/ThemeProvider/ThemeProvider.tsx +0 -48
- package/src/components/ThemeProvider/index.ts +0 -2
- package/src/components/Toast/Toast.style.ts +0 -127
- package/src/components/Toast/Toast.test.tsx +0 -114
- package/src/components/Toast/Toast.tsx +0 -168
- package/src/components/Toast/Toast.types.ts +0 -51
- package/src/components/Toast/index.ts +0 -2
- package/src/components/ToastV4/ToastV4.style.ts +0 -96
- package/src/components/ToastV4/ToastV4.test.tsx +0 -68
- package/src/components/ToastV4/ToastV4.tsx +0 -112
- package/src/components/ToastV4/index.tsx +0 -2
- package/src/components/Tooltip/Tooltip.style.ts +0 -43
- package/src/components/Tooltip/Tooltip.tsx +0 -49
- package/src/components/Tooltip/Tooltip.types.ts +0 -36
- package/src/components/Tooltip/index.ts +0 -3
- package/src/components/TopAppBar/TopAppBar.style.ts +0 -47
- package/src/components/TopAppBar/TopAppBar.test.tsx +0 -59
- package/src/components/TopAppBar/TopAppBar.tsx +0 -48
- package/src/components/TopAppBar/TopAppBar.types.ts +0 -25
- package/src/components/TopAppBar/__snapshots__/TopAppBar.test.tsx.snap +0 -769
- package/src/components/TopAppBar/components/Logo/Logo.style.ts +0 -27
- package/src/components/TopAppBar/components/Logo/Logo.wrapper.tsx +0 -20
- package/src/components/TopAppBar/components/Logo/index.ts +0 -2
- package/src/components/TopAppBar/components/Search/Search.style.ts +0 -71
- package/src/components/TopAppBar/components/Search/Search.tsx +0 -49
- package/src/components/TopAppBar/components/Search/index.ts +0 -2
- package/src/components/TopAppBar/components/SidebarMenuIcon/SidebarMenuIcon.style.ts +0 -13
- package/src/components/TopAppBar/components/SidebarMenuIcon/SidebarMenuIcon.tsx +0 -21
- package/src/components/TopAppBar/components/SidebarMenuIcon/index.ts +0 -2
- package/src/components/TopAppBar/components/UserMenu/UserMenu.style.ts +0 -12
- package/src/components/TopAppBar/components/UserMenu/UserMenu.tsx +0 -59
- package/src/components/TopAppBar/components/UserMenu/index.ts +0 -2
- package/src/components/TopAppBar/components/index.ts +0 -6
- package/src/components/TopAppBar/index.ts +0 -3
- package/src/components/TruncatedContent/TruncatedContent.style.tsx +0 -7
- package/src/components/TruncatedContent/TruncatedContent.test.tsx +0 -58
- package/src/components/TruncatedContent/TruncatedContent.tsx +0 -75
- package/src/components/TruncatedContent/index.ts +0 -2
- package/src/components/Typography/Typography.config.styles.ts +0 -87
- package/src/components/Typography/Typography.style.ts +0 -75
- package/src/components/Typography/Typography.tsx +0 -108
- package/src/components/Typography/index.ts +0 -4
- package/src/components/Typography/utils.ts +0 -13
- package/src/components/utils/ClickAwayListener/ClickAwayListener.tsx +0 -45
- package/src/components/utils/ClickAwayListener/index.tsx +0 -1
- package/src/components/utils/DropdownOptions/index.tsx +0 -31
- package/src/components/utils/Overlay/Overlay.tsx +0 -196
- package/src/components/utils/Overlay/index.ts +0 -1
- package/src/components/utils/PositionInScreen/PositionInScreen.tsx +0 -58
- package/src/components/utils/PositionInScreen/hooks.ts +0 -158
- package/src/components/utils/PositionInScreen/index.tsx +0 -1
- package/src/components/utils/Slots.tsx +0 -109
- package/src/components/utils/handleSearch.ts +0 -36
- package/src/components/utils/tests/Slots.test.tsx +0 -94
- package/src/components/utils/useDOMRef.ts +0 -49
- package/src/data-table/DataTable.test.tsx +0 -425
- package/src/data-table/DataTable.tsx +0 -52
- package/src/data-table/DataTableBody.css.ts +0 -127
- package/src/data-table/DataTableBody.tsx +0 -330
- package/src/data-table/DataTableBulkActions.tsx +0 -17
- package/src/data-table/DataTableCheckbox.tsx +0 -68
- package/src/data-table/DataTableContext.tsx +0 -27
- package/src/data-table/DataTableCounter.tsx +0 -46
- package/src/data-table/DataTableEditColumns.tsx +0 -90
- package/src/data-table/DataTableHeader.tsx +0 -32
- package/src/data-table/DataTableHeaderCell.css.ts +0 -90
- package/src/data-table/DataTableHeaderCell.tsx +0 -220
- package/src/data-table/DataTableRow.tsx +0 -226
- package/src/data-table/DataTableRowContext.tsx +0 -67
- package/src/data-table/index.ts +0 -7
- package/src/hooks/useBreakpoints.test.ts +0 -40
- package/src/hooks/useBreakpoints.tsx +0 -47
- package/src/hooks/useCheck.ts +0 -25
- package/src/hooks/useCombinedRefs.ts +0 -23
- package/src/hooks/useElementSize.ts +0 -47
- package/src/hooks/useEscape.ts +0 -18
- package/src/hooks/useEventListener.ts +0 -43
- package/src/hooks/useFieldUtils.tsx +0 -55
- package/src/hooks/useIsoMorphicLayoutEffect.ts +0 -5
- package/src/hooks/useKeyboardEvents.ts +0 -78
- package/src/hooks/useLoading.ts +0 -29
- package/src/hooks/useOverlayStack.ts +0 -92
- package/src/hooks/usePagination.ts +0 -62
- package/src/hooks/useTheme.ts +0 -7
- package/src/hooks/useThemeSwitch.tsx +0 -32
- package/src/hooks/useToggle.ts +0 -16
- package/src/hooks/useTypeColorToColorMatch.tsx +0 -101
- package/src/icon/Icon.tsx +0 -312
- package/src/icon/index.ts +0 -1
- package/src/icons/AccountIcon.tsx +0 -14
- package/src/icons/AlbumIcon.tsx +0 -16
- package/src/icons/AnalyticsIcon.tsx +0 -14
- package/src/icons/AppsIcon.tsx +0 -14
- package/src/icons/ArrowDownIcon.tsx +0 -14
- package/src/icons/ArrowLeftIcon.tsx +0 -14
- package/src/icons/ArrowRightIcon.tsx +0 -14
- package/src/icons/ArrowUpIcon.tsx +0 -14
- package/src/icons/ArtistIcon.tsx +0 -14
- package/src/icons/AssetIcon.tsx +0 -14
- package/src/icons/AudioIcon.tsx +0 -14
- package/src/icons/AudioOffIcon.tsx +0 -26
- package/src/icons/BookmarkIcon.tsx +0 -16
- package/src/icons/BookmarkOffIcon.tsx +0 -16
- package/src/icons/BroadcastIcon.tsx +0 -14
- package/src/icons/CalendarIcon.tsx +0 -14
- package/src/icons/CatalogIcon.tsx +0 -14
- package/src/icons/ChannelIcon.tsx +0 -24
- package/src/icons/ChatIcon.tsx +0 -14
- package/src/icons/CheckIcon.tsx +0 -14
- package/src/icons/ChevronDownIcon.tsx +0 -14
- package/src/icons/ChevronLeftIcon.tsx +0 -14
- package/src/icons/ChevronRightIcon.tsx +0 -14
- package/src/icons/ChevronUpIcon.tsx +0 -14
- package/src/icons/CinemaIcon.tsx +0 -14
- package/src/icons/ClaimIcon.tsx +0 -14
- package/src/icons/CloseIcon.tsx +0 -14
- package/src/icons/ColumnChooserIcon.tsx +0 -14
- package/src/icons/CompositionIcon.tsx +0 -14
- package/src/icons/ConcertIcon.tsx +0 -14
- package/src/icons/ConflictIcon.tsx +0 -14
- package/src/icons/ConvertIcon.tsx +0 -14
- package/src/icons/CopyIcon.tsx +0 -14
- package/src/icons/CueSheetIcon.tsx +0 -14
- package/src/icons/DashboardIcon.tsx +0 -14
- package/src/icons/DatasetIcon.tsx +0 -14
- package/src/icons/DeleteIcon.tsx +0 -14
- package/src/icons/DeliveryIcon.tsx +0 -14
- package/src/icons/DetailsIcon.tsx +0 -14
- package/src/icons/DigitalIcon.tsx +0 -16
- package/src/icons/DistributionIcon.tsx +0 -14
- package/src/icons/DownloadIcon.tsx +0 -14
- package/src/icons/EarningsIcon.tsx +0 -14
- package/src/icons/EditIcon.tsx +0 -14
- package/src/icons/EntitiesIcon.tsx +0 -14
- package/src/icons/ErrorIcon.tsx +0 -14
- package/src/icons/ExternalLinkIcon.tsx +0 -14
- package/src/icons/EyeIcon.tsx +0 -14
- package/src/icons/EyeOffIcon.tsx +0 -14
- package/src/icons/FavoriteIcon.tsx +0 -14
- package/src/icons/FavoriteOffIcon.tsx +0 -14
- package/src/icons/FileIcon.tsx +0 -14
- package/src/icons/FilterIcon.tsx +0 -14
- package/src/icons/FlagIcon.tsx +0 -14
- package/src/icons/FlagOffIcon.tsx +0 -14
- package/src/icons/ForwardIcon.tsx +0 -14
- package/src/icons/FreezeIcon.tsx +0 -16
- package/src/icons/HelpIcon.tsx +0 -14
- package/src/icons/ImageIcon.tsx +0 -14
- package/src/icons/ImageOffIcon.tsx +0 -20
- package/src/icons/IncomeIcon.tsx +0 -14
- package/src/icons/InformationalIcon.tsx +0 -16
- package/src/icons/InsightIcon.tsx +0 -14
- package/src/icons/InvoiceIcon.tsx +0 -16
- package/src/icons/IssueIcon.tsx +0 -14
- package/src/icons/KeywordIcon.tsx +0 -16
- package/src/icons/LanguageIcon.tsx +0 -14
- package/src/icons/LegalIcon.tsx +0 -14
- package/src/icons/LicenseIcon.tsx +0 -16
- package/src/icons/LinkIcon.tsx +0 -14
- package/src/icons/LocationIcon.tsx +0 -14
- package/src/icons/LockIcon.tsx +0 -14
- package/src/icons/LoginIcon.tsx +0 -14
- package/src/icons/LogoutIcon.tsx +0 -14
- package/src/icons/MailIcon.tsx +0 -14
- package/src/icons/ManualIcon.tsx +0 -14
- package/src/icons/MediaFileIcon.tsx +0 -14
- package/src/icons/MenuIcon.tsx +0 -14
- package/src/icons/MinusIcon.tsx +0 -14
- package/src/icons/MoreOptionsIcon.tsx +0 -22
- package/src/icons/NextIcon.tsx +0 -14
- package/src/icons/NotificationIcon.tsx +0 -14
- package/src/icons/OrganizationIcon.tsx +0 -14
- package/src/icons/PageFirstIcon.tsx +0 -14
- package/src/icons/PageLastIcon.tsx +0 -14
- package/src/icons/PairIcon.tsx +0 -14
- package/src/icons/PauseIcon.tsx +0 -14
- package/src/icons/PendingIcon.tsx +0 -14
- package/src/icons/PlayIcon.tsx +0 -14
- package/src/icons/PlaycountIcon.tsx +0 -14
- package/src/icons/PlusIcon.tsx +0 -14
- package/src/icons/PolicyIcon.tsx +0 -14
- package/src/icons/PreviousIcon.tsx +0 -14
- package/src/icons/PublicPerformanceIcon.tsx +0 -14
- package/src/icons/PublisherIcon.tsx +0 -20
- package/src/icons/RadioIcon.tsx +0 -14
- package/src/icons/RecordLabelIcon.tsx +0 -16
- package/src/icons/RecordingIcon.tsx +0 -14
- package/src/icons/RedoIcon.tsx +0 -14
- package/src/icons/RefreshIcon.tsx +0 -14
- package/src/icons/ReportIcon.tsx +0 -14
- package/src/icons/RestoreIcon.tsx +0 -18
- package/src/icons/ResumeIcon.tsx +0 -18
- package/src/icons/ReviewIcon.tsx +0 -14
- package/src/icons/RewindIcon.tsx +0 -14
- package/src/icons/RoleIcon.tsx +0 -14
- package/src/icons/SearchFilledIcon.tsx +0 -16
- package/src/icons/SearchIcon.tsx +0 -14
- package/src/icons/SettingsIcon.tsx +0 -14
- package/src/icons/ShareIcon.tsx +0 -14
- package/src/icons/SortAscendingIcon.tsx +0 -24
- package/src/icons/SortDescendingIcon.tsx +0 -24
- package/src/icons/SortIcon.tsx +0 -22
- package/src/icons/StatusIndicatorIcon.tsx +0 -11
- package/src/icons/StopIcon.tsx +0 -14
- package/src/icons/SuccessIcon.tsx +0 -14
- package/src/icons/TagIcon.tsx +0 -14
- package/src/icons/TelevisionIcon.tsx +0 -14
- package/src/icons/ThumbsDownIcon.tsx +0 -14
- package/src/icons/ThumbsUpIcon.tsx +0 -14
- package/src/icons/TrendingDownIcon.tsx +0 -14
- package/src/icons/TrendingUpIcon.tsx +0 -14
- package/src/icons/TriangleDownIcon.tsx +0 -16
- package/src/icons/TriangleLeftIcon.tsx +0 -16
- package/src/icons/TriangleRightIcon.tsx +0 -16
- package/src/icons/TriangleUpIcon.tsx +0 -16
- package/src/icons/UndoIcon.tsx +0 -14
- package/src/icons/UnfreezeIcon.tsx +0 -20
- package/src/icons/UnlinkIcon.tsx +0 -14
- package/src/icons/UnlockIcon.tsx +0 -14
- package/src/icons/UnpairIcon.tsx +0 -14
- package/src/icons/UnverifiedIcon.tsx +0 -20
- package/src/icons/UpdateIcon.tsx +0 -18
- package/src/icons/UploadIcon.tsx +0 -14
- package/src/icons/UsageIcon.tsx +0 -16
- package/src/icons/UserIcon.tsx +0 -14
- package/src/icons/UsersIcon.tsx +0 -26
- package/src/icons/VerifiedIcon.tsx +0 -14
- package/src/icons/VideoIcon.tsx +0 -14
- package/src/icons/VideoOffIcon.tsx +0 -18
- package/src/icons/WarningIcon.tsx +0 -16
- package/src/icons/WorkIcon.tsx +0 -16
- package/src/icons/WriterIcon.tsx +0 -22
- package/src/icons/YouTubeIcon.tsx +0 -16
- package/src/icons/index.ts +0 -144
- package/src/index.ts +0 -290
- package/src/layers/index.ts +0 -1
- package/src/layers/layers.css.ts +0 -10
- package/src/skeleton/Skeleton.css.ts +0 -19
- package/src/skeleton/Skeleton.tsx +0 -34
- package/src/skeleton/index.ts +0 -1
- package/src/sprinkles/createSprinklesMerge.ts +0 -61
- package/src/sprinkles/index.ts +0 -1
- package/src/sprinkles/properties.css.ts +0 -504
- package/src/sprinkles/sprinkles.ts +0 -18
- package/src/sprinkles/sprinklesMerge.ts +0 -4
- package/src/test/index.ts +0 -1
- package/src/test/setup.ts +0 -61
- package/src/test/utils.tsx +0 -25
- package/src/theme/emotion.d.ts +0 -7
- package/src/theme/functions.ts +0 -77
- package/src/theme/index.ts +0 -44
- package/src/theme/overrides.ts +0 -5
- package/src/theme/types.ts +0 -93
- package/src/types.d.ts +0 -21
- package/src/utils/ExtendProps.ts +0 -5
- package/src/utils/cn.ts +0 -5
- package/src/utils/common.ts +0 -36
- package/src/utils/date.ts +0 -19
- package/src/utils/errors.ts +0 -13
- package/src/utils/helpers.ts +0 -51
- package/src/utils/storyshots.ts +0 -37
- package/src/utils/tests/helpers.test.ts +0 -21
- package/src/utils/types.ts +0 -12
- package/src/vanilla/Box/Box.tsx +0 -37
- package/src/vanilla/Box/extractBoxProps.ts +0 -19
- package/src/vanilla/Box/index.ts +0 -2
- package/src/vanilla/Dialog/Dialog.tsx +0 -130
- package/src/vanilla/Dialog/index.ts +0 -1
- package/src/vanilla/Dropdown/Dropdown.css.ts +0 -11
- package/src/vanilla/Dropdown/Dropdown.tsx +0 -78
- package/src/vanilla/Dropdown/index.ts +0 -1
- package/src/vanilla/Menu/Menu.css.ts +0 -42
- package/src/vanilla/Menu/Menu.tsx +0 -136
- package/src/vanilla/Menu/index.ts +0 -1
- package/src/vanilla/Popover/Popover.css.ts +0 -24
- package/src/vanilla/Popover/Popover.tsx +0 -89
- package/src/vanilla/Popover/index.ts +0 -1
- package/src/vanilla/Table/Table.css.ts +0 -61
- package/src/vanilla/Table/Table.tsx +0 -21
- package/src/vanilla/Table/TableBody.css.ts +0 -5
- package/src/vanilla/Table/TableBody.tsx +0 -17
- package/src/vanilla/Table/TableCell.css.ts +0 -81
- package/src/vanilla/Table/TableCell.tsx +0 -53
- package/src/vanilla/Table/TableFooter.css.ts +0 -20
- package/src/vanilla/Table/TableFooter.tsx +0 -17
- package/src/vanilla/Table/TableHeader.css.ts +0 -21
- package/src/vanilla/Table/TableHeader.tsx +0 -22
- package/src/vanilla/Table/TableHeaderCell.css.ts +0 -85
- package/src/vanilla/Table/TableHeaderCell.tsx +0 -53
- package/src/vanilla/Table/TableRow.css.ts +0 -34
- package/src/vanilla/Table/TableRow.tsx +0 -17
- package/src/vanilla/Table/index.ts +0 -7
- package/src/vanilla/Text/Text.css.ts +0 -38
- package/src/vanilla/Text/Text.tsx +0 -33
- package/src/vanilla/Text/index.ts +0 -1
- package/src/vanilla/ThemeProvider/ThemeProvider.tsx +0 -91
- package/src/vanilla/ThemeProvider/index.ts +0 -1
- package/src/vanilla/Tooltip/Tooltip.css.ts +0 -93
- package/src/vanilla/Tooltip/Tooltip.tsx +0 -147
- package/src/vanilla/Tooltip/index.ts +0 -1
- package/src/vanilla/index.ts +0 -13
- package/src/vanilla-extract/global.css.ts +0 -184
- package/src/vanilla-extract/index.ts +0 -12
- package/src/vanilla-extract/style.ts +0 -13
- package/src/version/index.ts +0 -1
- package/src/version/version.ts +0 -1
- package/src/vite-env.d.ts +0 -5
- package/tsconfig.codemods.json +0 -4
- package/tsconfig.json +0 -37
- package/tsconfig.node.json +0 -15
- package/tsconfig.vanilla.json +0 -9
- package/vite.codemods.config.ts +0 -40
- package/vite.config.ts +0 -101
package/src/components/Notification/subcomponents/CompactNotification/CompactNotification.tsx
DELETED
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
import { vars } from '@orfium/tokens';
|
|
2
|
-
import * as React from 'react';
|
|
3
|
-
import { generateTestDataId } from 'utils/helpers';
|
|
4
|
-
import type { TestId } from 'utils/types';
|
|
5
|
-
|
|
6
|
-
import type { AcceptedIconNames } from 'components/Icon';
|
|
7
|
-
import Button from '../../../Button';
|
|
8
|
-
import Icon from '../../../Icon';
|
|
9
|
-
import type {
|
|
10
|
-
NotificationActions,
|
|
11
|
-
NotificationStyleType,
|
|
12
|
-
NotificationTypes,
|
|
13
|
-
} from '../../Notification';
|
|
14
|
-
import { actionContainer, iconContainer, typeToColorStyle } from '../../Notification.style';
|
|
15
|
-
import {
|
|
16
|
-
actionsContainer,
|
|
17
|
-
headContainer,
|
|
18
|
-
infoContainer,
|
|
19
|
-
messageContainer,
|
|
20
|
-
notificationsContainer,
|
|
21
|
-
primaryActionContainer,
|
|
22
|
-
} from './CompactNotification.style';
|
|
23
|
-
|
|
24
|
-
export type CompactNotificationVariants = 'inline' | 'banner' | 'card';
|
|
25
|
-
|
|
26
|
-
export type CompactNotificationProps = {
|
|
27
|
-
/** Show notification icon based on the type */
|
|
28
|
-
hasIcon?: boolean;
|
|
29
|
-
/** The informative message of the Notification */
|
|
30
|
-
message: string | React.ReactNode;
|
|
31
|
-
/** The variant of the Notification */
|
|
32
|
-
variant: CompactNotificationVariants;
|
|
33
|
-
/** The type of the Notification */
|
|
34
|
-
type: NotificationTypes;
|
|
35
|
-
/** The style type of the Notification. Defaults to elevated */
|
|
36
|
-
styleType: NotificationStyleType;
|
|
37
|
-
/** The description of the Notification (only for toast) */
|
|
38
|
-
description?: string;
|
|
39
|
-
/** The closing call-to-action of the Notification */
|
|
40
|
-
closeCTA?: () => void;
|
|
41
|
-
/** The title (message heading) of the Notification */
|
|
42
|
-
title?: string;
|
|
43
|
-
/** The data test id if needed */
|
|
44
|
-
dataTestId?: TestId;
|
|
45
|
-
} & NotificationActions;
|
|
46
|
-
|
|
47
|
-
export const typeToIconName = (type: NotificationTypes): AcceptedIconNames =>
|
|
48
|
-
type === 'info' ? 'informational' : type;
|
|
49
|
-
|
|
50
|
-
const CompactNotification: React.FCC<CompactNotificationProps> = ({
|
|
51
|
-
hasIcon = false,
|
|
52
|
-
message,
|
|
53
|
-
variant,
|
|
54
|
-
type,
|
|
55
|
-
styleType = 'elevated',
|
|
56
|
-
primaryCTALabel,
|
|
57
|
-
primaryCTA,
|
|
58
|
-
closeCTA,
|
|
59
|
-
title,
|
|
60
|
-
dataTestId,
|
|
61
|
-
}) => {
|
|
62
|
-
return (
|
|
63
|
-
<div
|
|
64
|
-
css={notificationsContainer(type, styleType)}
|
|
65
|
-
data-testid={generateTestDataId(variant, dataTestId)}
|
|
66
|
-
{...(variant == 'banner' && { 'notification-type': 'banner' })}
|
|
67
|
-
>
|
|
68
|
-
<div css={infoContainer()}>
|
|
69
|
-
{hasIcon && (
|
|
70
|
-
<div css={iconContainer()}>
|
|
71
|
-
<Icon
|
|
72
|
-
name={typeToIconName(type)}
|
|
73
|
-
color={vars.color.text.default[typeToColorStyle(type)]}
|
|
74
|
-
size={24}
|
|
75
|
-
/>
|
|
76
|
-
</div>
|
|
77
|
-
)}
|
|
78
|
-
{variant === 'banner' && (
|
|
79
|
-
<div
|
|
80
|
-
css={headContainer()}
|
|
81
|
-
data-testid={generateTestDataId(`${variant}-title`, dataTestId)}
|
|
82
|
-
>
|
|
83
|
-
{title}
|
|
84
|
-
</div>
|
|
85
|
-
)}
|
|
86
|
-
<div
|
|
87
|
-
css={messageContainer()}
|
|
88
|
-
data-testid={generateTestDataId(`${variant}-message`, dataTestId)}
|
|
89
|
-
>
|
|
90
|
-
{message}
|
|
91
|
-
</div>
|
|
92
|
-
</div>
|
|
93
|
-
<div css={actionsContainer()}>
|
|
94
|
-
{primaryCTA && primaryCTALabel && (
|
|
95
|
-
<Button
|
|
96
|
-
type="tertiary"
|
|
97
|
-
css={primaryActionContainer()}
|
|
98
|
-
onClick={primaryCTA}
|
|
99
|
-
data-testid={generateTestDataId('notification-primary', dataTestId)}
|
|
100
|
-
>
|
|
101
|
-
{primaryCTALabel}
|
|
102
|
-
</Button>
|
|
103
|
-
)}
|
|
104
|
-
{closeCTA && (
|
|
105
|
-
<span
|
|
106
|
-
css={actionContainer()}
|
|
107
|
-
onClick={closeCTA}
|
|
108
|
-
data-testid={generateTestDataId('notification-close', dataTestId)}
|
|
109
|
-
>
|
|
110
|
-
<Icon name="close" color={vars.color.text.default.secondary} size={16} />
|
|
111
|
-
</span>
|
|
112
|
-
)}
|
|
113
|
-
</div>
|
|
114
|
-
</div>
|
|
115
|
-
);
|
|
116
|
-
};
|
|
117
|
-
|
|
118
|
-
export default CompactNotification;
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { generateTestDataId } from 'utils/helpers';
|
|
3
|
-
import type { TestProps } from 'utils/types';
|
|
4
|
-
|
|
5
|
-
import Button from '../../../Button';
|
|
6
|
-
import type { NotificationActions } from '../../Notification';
|
|
7
|
-
import { actionContainer, actionsContainer } from '../../Notification.style';
|
|
8
|
-
|
|
9
|
-
type Props = NotificationActions & TestProps;
|
|
10
|
-
|
|
11
|
-
const NotificationActionsArea: React.FCC<Props> = ({
|
|
12
|
-
primaryCTA,
|
|
13
|
-
primaryCTALabel,
|
|
14
|
-
secondaryCTA,
|
|
15
|
-
secondaryCTALabel,
|
|
16
|
-
dataTestPrefixId,
|
|
17
|
-
dataTestId,
|
|
18
|
-
}) => {
|
|
19
|
-
return (
|
|
20
|
-
<div css={actionsContainer()}>
|
|
21
|
-
{secondaryCTA && secondaryCTALabel && (
|
|
22
|
-
<div
|
|
23
|
-
css={actionContainer()}
|
|
24
|
-
data-testid={generateTestDataId(`${dataTestPrefixId}-secondary`, dataTestId)}
|
|
25
|
-
>
|
|
26
|
-
<Button type="tertiary" onClick={secondaryCTA}>
|
|
27
|
-
{secondaryCTALabel}
|
|
28
|
-
</Button>
|
|
29
|
-
</div>
|
|
30
|
-
)}
|
|
31
|
-
{primaryCTA && primaryCTALabel && (
|
|
32
|
-
<div
|
|
33
|
-
css={actionContainer()}
|
|
34
|
-
data-testid={generateTestDataId(`${dataTestPrefixId}-primary`, dataTestId)}
|
|
35
|
-
>
|
|
36
|
-
<Button onClick={primaryCTA}>{primaryCTALabel}</Button>
|
|
37
|
-
</div>
|
|
38
|
-
)}
|
|
39
|
-
</div>
|
|
40
|
-
);
|
|
41
|
-
};
|
|
42
|
-
|
|
43
|
-
export default NotificationActionsArea;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from './NotificationActionsArea';
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { SerializedStyles } from '@emotion/react';
|
|
2
|
-
import { css } from '@emotion/react';
|
|
3
|
-
import { rem } from '@orfium/tokens';
|
|
4
|
-
|
|
5
|
-
export const groupStyles = ({ size }: { size: 'compact' | 'normal' }): SerializedStyles => {
|
|
6
|
-
return css`
|
|
7
|
-
/** @TODO: add tokens instead of rem */
|
|
8
|
-
width: ${`calc(100% - ${size === 'normal' ? rem(44) : rem(20)})`};
|
|
9
|
-
`;
|
|
10
|
-
};
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
import userEvent from '@testing-library/user-event';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import type { NumberFieldProps as Props } from './NumberField';
|
|
4
|
-
import NumberField from './NumberField';
|
|
5
|
-
import { render, screen } from '../../test';
|
|
6
|
-
|
|
7
|
-
const renderNumberField = (props: Partial<Props> = {}) => {
|
|
8
|
-
const defaultProps = {
|
|
9
|
-
label: 'Label',
|
|
10
|
-
formatOptions: { minimumFractionDigits: 2, maximumFractionDigits: 2 },
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
return render(<NumberField {...{ ...defaultProps, ...props }} />);
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
describe('NumberField', () => {
|
|
17
|
-
let input: HTMLInputElement;
|
|
18
|
-
let increase: HTMLButtonElement;
|
|
19
|
-
let decrease: HTMLButtonElement;
|
|
20
|
-
|
|
21
|
-
it('formats the number input based on the given format', async () => {
|
|
22
|
-
renderNumberField();
|
|
23
|
-
input = screen.getByTestId('input') as HTMLInputElement;
|
|
24
|
-
|
|
25
|
-
await userEvent.type(input, '12.3456');
|
|
26
|
-
await userEvent.click(document.body);
|
|
27
|
-
expect(input).toHaveValue('12.35');
|
|
28
|
-
});
|
|
29
|
-
|
|
30
|
-
it('it rounds number input based on step', async () => {
|
|
31
|
-
renderNumberField({ step: 0.5 });
|
|
32
|
-
input = screen.getByTestId('input') as HTMLInputElement;
|
|
33
|
-
|
|
34
|
-
await userEvent.type(input, '12.21');
|
|
35
|
-
await userEvent.click(document.body);
|
|
36
|
-
expect(input).toHaveValue('12.00');
|
|
37
|
-
});
|
|
38
|
-
|
|
39
|
-
it('increases and decreases the number through stepper', async () => {
|
|
40
|
-
renderNumberField({ step: 0.5, hasStepper: true });
|
|
41
|
-
input = screen.getByTestId('input') as HTMLInputElement;
|
|
42
|
-
increase = screen.getByTestId('number_increment') as HTMLButtonElement;
|
|
43
|
-
decrease = screen.getByTestId('number_decrement') as HTMLButtonElement;
|
|
44
|
-
|
|
45
|
-
await userEvent.type(input, '12.00');
|
|
46
|
-
await userEvent.click(document.body);
|
|
47
|
-
await userEvent.click(increase);
|
|
48
|
-
expect(input).toHaveValue('12.50');
|
|
49
|
-
await userEvent.click(decrease);
|
|
50
|
-
expect(input).toHaveValue('12.00');
|
|
51
|
-
});
|
|
52
|
-
|
|
53
|
-
it('increases and decreases the number through keyboard', async () => {
|
|
54
|
-
renderNumberField({ step: 0.5, hasStepper: true });
|
|
55
|
-
input = screen.getByTestId('input') as HTMLInputElement;
|
|
56
|
-
|
|
57
|
-
await userEvent.type(input, '12.00');
|
|
58
|
-
await userEvent.click(document.body);
|
|
59
|
-
|
|
60
|
-
await userEvent.click(input);
|
|
61
|
-
|
|
62
|
-
await userEvent.type(input, '{arrowup}');
|
|
63
|
-
expect(input).toHaveValue('12.50');
|
|
64
|
-
|
|
65
|
-
await userEvent.type(input, '{arrowdown}');
|
|
66
|
-
expect(input).toHaveValue('12.00');
|
|
67
|
-
});
|
|
68
|
-
|
|
69
|
-
it('it rejects number input outside min and max given', async () => {
|
|
70
|
-
renderNumberField({ minValue: 10, maxValue: 20 });
|
|
71
|
-
input = screen.getByTestId('input') as HTMLInputElement;
|
|
72
|
-
|
|
73
|
-
await userEvent.type(input, '5');
|
|
74
|
-
await userEvent.click(document.body);
|
|
75
|
-
expect(input).toHaveValue('10.00');
|
|
76
|
-
|
|
77
|
-
await userEvent.clear(input);
|
|
78
|
-
|
|
79
|
-
await userEvent.type(input, '25');
|
|
80
|
-
await userEvent.click(document.body);
|
|
81
|
-
expect(input).toHaveValue('20.00');
|
|
82
|
-
});
|
|
83
|
-
});
|
|
@@ -1,135 +0,0 @@
|
|
|
1
|
-
import Label from 'components/Label';
|
|
2
|
-
import { suffixContainerStyle } from 'components/TextField/TextField.style';
|
|
3
|
-
import TextInputBase from 'components/TextInputBase/TextInputBase';
|
|
4
|
-
import { inputStyle } from 'components/TextInputBase/TextInputBase.style';
|
|
5
|
-
import useFieldUtils from 'hooks/useFieldUtils';
|
|
6
|
-
import { omit } from 'lodash-es';
|
|
7
|
-
import { rem } from 'polished';
|
|
8
|
-
import React from 'react';
|
|
9
|
-
import { Group, Input, NumberField as ReactAriaNumberField } from 'react-aria-components';
|
|
10
|
-
import { generateUniqueID } from 'utils/helpers';
|
|
11
|
-
import type { TextFieldProps } from '../TextField/TextField';
|
|
12
|
-
import Stepper from './components/Stepper/Stepper';
|
|
13
|
-
import { groupStyles } from './NumberField.style';
|
|
14
|
-
|
|
15
|
-
export type NumberFieldProps = Omit<
|
|
16
|
-
TextFieldProps,
|
|
17
|
-
| 'mask'
|
|
18
|
-
| 'maskChar'
|
|
19
|
-
| 'value'
|
|
20
|
-
| 'onChange'
|
|
21
|
-
| 'isMulti'
|
|
22
|
-
| 'onMultiValueClearAll'
|
|
23
|
-
| 'onMultiValueDelete'
|
|
24
|
-
> & {
|
|
25
|
-
/** Callback fired when the `input` is changed. */
|
|
26
|
-
onChange?: (value: number) => void;
|
|
27
|
-
/** The value of the `input` element. */
|
|
28
|
-
value?: number;
|
|
29
|
-
/** Formatting options for the value displayed in the number field, following the Intl.NumberFormatOptions type */
|
|
30
|
-
formatOptions?: Intl.NumberFormatOptions;
|
|
31
|
-
/** Whether the numberInput has a stepper */
|
|
32
|
-
hasStepper?: boolean;
|
|
33
|
-
/** The amount that the input value changes with each increment or decrement "tick". Defaults to 1 */
|
|
34
|
-
step?: number;
|
|
35
|
-
/** The smallest value allowed for the input. */
|
|
36
|
-
minValue?: number;
|
|
37
|
-
/** The largest value allowed for the input. */
|
|
38
|
-
maxValue?: number;
|
|
39
|
-
};
|
|
40
|
-
|
|
41
|
-
const NumberField = React.forwardRef<HTMLInputElement, NumberFieldProps>((props, ref) => {
|
|
42
|
-
const {
|
|
43
|
-
id = generateUniqueID('numberfield_'),
|
|
44
|
-
suffix = null,
|
|
45
|
-
hasStepper = false,
|
|
46
|
-
label,
|
|
47
|
-
placeholder = '',
|
|
48
|
-
size = 'normal',
|
|
49
|
-
isRequired = false,
|
|
50
|
-
isDisabled,
|
|
51
|
-
isReadOnly,
|
|
52
|
-
step,
|
|
53
|
-
onChange,
|
|
54
|
-
formatOptions,
|
|
55
|
-
value,
|
|
56
|
-
minValue,
|
|
57
|
-
maxValue,
|
|
58
|
-
status = { type: 'normal' },
|
|
59
|
-
dataTestPrefixId,
|
|
60
|
-
sx,
|
|
61
|
-
...rest
|
|
62
|
-
} = props;
|
|
63
|
-
|
|
64
|
-
const { isLocked, hintMessageId, handleContainerClick, suffixContent, combinedRefs } =
|
|
65
|
-
useFieldUtils({
|
|
66
|
-
id,
|
|
67
|
-
suffix,
|
|
68
|
-
status,
|
|
69
|
-
size,
|
|
70
|
-
isDisabled,
|
|
71
|
-
ref,
|
|
72
|
-
});
|
|
73
|
-
|
|
74
|
-
const inputPlaceholder =
|
|
75
|
-
size === 'normal' ? (placeholder ? `${placeholder} ${isRequired ? '*' : ''}` : label) : ' ';
|
|
76
|
-
const customStyles =
|
|
77
|
-
size === 'compact' ? { wrapper: { minWidth: rem(90), ...sx?.wrapper }, ...sx } : sx;
|
|
78
|
-
|
|
79
|
-
return (
|
|
80
|
-
<div onClick={handleContainerClick}>
|
|
81
|
-
<TextInputBase {...props} status={{ ...status, id: hintMessageId }} sx={customStyles}>
|
|
82
|
-
<div css={{ width: '100%' }}>
|
|
83
|
-
<ReactAriaNumberField
|
|
84
|
-
value={value}
|
|
85
|
-
step={step}
|
|
86
|
-
onChange={onChange}
|
|
87
|
-
formatOptions={formatOptions}
|
|
88
|
-
minValue={minValue}
|
|
89
|
-
maxValue={maxValue}
|
|
90
|
-
>
|
|
91
|
-
<Group css={hasStepper ? groupStyles({ size }) : {}}>
|
|
92
|
-
<Input
|
|
93
|
-
id={id}
|
|
94
|
-
readOnly={isLocked || isReadOnly}
|
|
95
|
-
disabled={isDisabled || isLocked}
|
|
96
|
-
required={isRequired}
|
|
97
|
-
placeholder={inputPlaceholder}
|
|
98
|
-
css={inputStyle({ label, placeholder, isLocked, isDisabled, size })}
|
|
99
|
-
aria-invalid={status?.type === 'error'}
|
|
100
|
-
aria-describedby={hintMessageId}
|
|
101
|
-
data-testid={props.dataTestId ? `input_${props.dataTestId}` : 'input'}
|
|
102
|
-
ref={combinedRefs}
|
|
103
|
-
{...omit(rest, ['value', 'onChange', 'dataTestId'])}
|
|
104
|
-
/>
|
|
105
|
-
<Label
|
|
106
|
-
htmlFor={id}
|
|
107
|
-
label={label}
|
|
108
|
-
size={size}
|
|
109
|
-
isRequired={isRequired}
|
|
110
|
-
isAnimated={Boolean(value)}
|
|
111
|
-
hasError={!isDisabled && status?.type === 'error'}
|
|
112
|
-
/>
|
|
113
|
-
{hasStepper && (
|
|
114
|
-
<Stepper
|
|
115
|
-
size={size}
|
|
116
|
-
isDisabled={isLocked || isReadOnly || isDisabled}
|
|
117
|
-
dataTestIdPrefix={dataTestPrefixId}
|
|
118
|
-
/>
|
|
119
|
-
)}
|
|
120
|
-
</Group>
|
|
121
|
-
</ReactAriaNumberField>
|
|
122
|
-
</div>
|
|
123
|
-
{suffixContent && !hasStepper && (
|
|
124
|
-
<div aria-hidden={!suffixContent} css={suffixContainerStyle({ size })}>
|
|
125
|
-
{suffixContent}
|
|
126
|
-
</div>
|
|
127
|
-
)}
|
|
128
|
-
</TextInputBase>
|
|
129
|
-
</div>
|
|
130
|
-
);
|
|
131
|
-
});
|
|
132
|
-
|
|
133
|
-
NumberField.displayName = 'NumberField';
|
|
134
|
-
|
|
135
|
-
export default NumberField;
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import type { SerializedStyles } from '@emotion/react';
|
|
2
|
-
import { css } from '@emotion/react';
|
|
3
|
-
import { rem } from '@orfium/tokens';
|
|
4
|
-
import type { Theme } from 'theme';
|
|
5
|
-
|
|
6
|
-
import { FIELD_TOKENS } from '~/components/DatePicker/DatePickInput/DatePickInput.style';
|
|
7
|
-
|
|
8
|
-
export const stepperContainerStyle = (size: 'normal' | 'compact'): SerializedStyles => {
|
|
9
|
-
return css`
|
|
10
|
-
display: flex;
|
|
11
|
-
flex-direction: column;
|
|
12
|
-
position: absolute;
|
|
13
|
-
right: 0;
|
|
14
|
-
/** @TODO add tokens instead of rem */
|
|
15
|
-
width: ${size === 'normal' ? rem(44) : rem(20)};
|
|
16
|
-
top: ${size === 'normal' ? `-${rem(15)}` : `-${rem(8)}`};
|
|
17
|
-
z-index: 1;
|
|
18
|
-
`;
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
export const buttonWrapperStyle =
|
|
22
|
-
() =>
|
|
23
|
-
(theme: Theme): SerializedStyles => {
|
|
24
|
-
return css`
|
|
25
|
-
display: flex;
|
|
26
|
-
justify-content: center;
|
|
27
|
-
align-items: center;
|
|
28
|
-
background: transparent;
|
|
29
|
-
border: none;
|
|
30
|
-
height: calc(${FIELD_TOKENS.container.normal} / 2);
|
|
31
|
-
|
|
32
|
-
&:hover {
|
|
33
|
-
cursor: pointer;
|
|
34
|
-
background: ${theme.tokens.state.get('backgroundColor.hover')};
|
|
35
|
-
}
|
|
36
|
-
`;
|
|
37
|
-
};
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { vars } from '@orfium/tokens';
|
|
2
|
-
import Icon from 'components/Icon';
|
|
3
|
-
import { rem } from 'polished';
|
|
4
|
-
import React from 'react';
|
|
5
|
-
import { Button } from 'react-aria-components';
|
|
6
|
-
import { buttonWrapperStyle, stepperContainerStyle } from './Stepper.style';
|
|
7
|
-
|
|
8
|
-
type Props = {
|
|
9
|
-
size?: 'normal' | 'compact';
|
|
10
|
-
isDisabled?: boolean;
|
|
11
|
-
dataTestIdPrefix?: string;
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
const Stepper: React.FCC<Props> = ({ size, isDisabled, dataTestIdPrefix }) => {
|
|
15
|
-
const dataTestId = dataTestIdPrefix ? `${dataTestIdPrefix}_number` : 'number';
|
|
16
|
-
const compactSizeBtnStyles = size === 'compact' ? { height: rem(15) } : {};
|
|
17
|
-
|
|
18
|
-
return (
|
|
19
|
-
<div css={stepperContainerStyle(size)}>
|
|
20
|
-
<Button
|
|
21
|
-
isDisabled={isDisabled}
|
|
22
|
-
slot="increment"
|
|
23
|
-
css={buttonWrapperStyle()}
|
|
24
|
-
data-testid={`${dataTestId}_increment`}
|
|
25
|
-
style={compactSizeBtnStyles}
|
|
26
|
-
>
|
|
27
|
-
<Icon name="triangleUp" color={vars.color.text.default.secondary} size={vars.sizing['5']} />
|
|
28
|
-
</Button>
|
|
29
|
-
<Button
|
|
30
|
-
isDisabled={isDisabled}
|
|
31
|
-
slot="decrement"
|
|
32
|
-
css={buttonWrapperStyle()}
|
|
33
|
-
data-testid={`${dataTestId}_decrement`}
|
|
34
|
-
style={compactSizeBtnStyles}
|
|
35
|
-
>
|
|
36
|
-
<Icon
|
|
37
|
-
name="triangleDown"
|
|
38
|
-
color={vars.color.text.default.secondary}
|
|
39
|
-
size={vars.sizing['5']}
|
|
40
|
-
/>
|
|
41
|
-
</Button>
|
|
42
|
-
</div>
|
|
43
|
-
);
|
|
44
|
-
};
|
|
45
|
-
|
|
46
|
-
export default Stepper;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from './Stepper';
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
import { vars } from '@orfium/tokens';
|
|
2
|
-
import usePagination from '../../hooks/usePagination';
|
|
3
|
-
import IconButton from '../IconButton';
|
|
4
|
-
|
|
5
|
-
export type PaginationProps = {
|
|
6
|
-
/** The current page you are on if you need to control it, defaults to 1 **/
|
|
7
|
-
page: number;
|
|
8
|
-
/** The total pages **/
|
|
9
|
-
count: number;
|
|
10
|
-
/** An onChange callback that will return the page on navigation **/
|
|
11
|
-
onChange?: (page: number) => void;
|
|
12
|
-
/** Show enhanced button functionality, this way the jump to first and last page will be shown. Default to false **/
|
|
13
|
-
isEnhancedPaginationVisible?: boolean;
|
|
14
|
-
/** Manually disable next page buttons **/
|
|
15
|
-
isNextPageDisabled?: boolean;
|
|
16
|
-
/** Manually disable previous page buttons **/
|
|
17
|
-
isPrevPageDisabled?: boolean;
|
|
18
|
-
};
|
|
19
|
-
|
|
20
|
-
const Pagination = ({
|
|
21
|
-
page = 1,
|
|
22
|
-
count,
|
|
23
|
-
onChange = () => {},
|
|
24
|
-
isEnhancedPaginationVisible = false,
|
|
25
|
-
isNextPageDisabled,
|
|
26
|
-
isPrevPageDisabled,
|
|
27
|
-
}: PaginationProps) => {
|
|
28
|
-
const {
|
|
29
|
-
currentPage,
|
|
30
|
-
hasNextPage,
|
|
31
|
-
hasPrevPage,
|
|
32
|
-
navigateToFirstPage,
|
|
33
|
-
navigateToLastPage,
|
|
34
|
-
navigateToNextPage,
|
|
35
|
-
navigateToPrevPage,
|
|
36
|
-
} = usePagination({ page, count, onChange });
|
|
37
|
-
|
|
38
|
-
return (
|
|
39
|
-
<div
|
|
40
|
-
css={{
|
|
41
|
-
flex: 1,
|
|
42
|
-
display: 'flex',
|
|
43
|
-
alignItems: 'center',
|
|
44
|
-
justifyContent: 'space-between',
|
|
45
|
-
color: vars.color.text.default.primary,
|
|
46
|
-
'> *': { padding: vars.spacing['4'] },
|
|
47
|
-
}}
|
|
48
|
-
>
|
|
49
|
-
{isEnhancedPaginationVisible && (
|
|
50
|
-
<IconButton
|
|
51
|
-
iconName="pageFirst"
|
|
52
|
-
onClick={navigateToFirstPage}
|
|
53
|
-
type="tertiary"
|
|
54
|
-
isDisabled={isPrevPageDisabled || !hasPrevPage}
|
|
55
|
-
/>
|
|
56
|
-
)}
|
|
57
|
-
<IconButton
|
|
58
|
-
iconName="chevronLeft"
|
|
59
|
-
type="tertiary"
|
|
60
|
-
onClick={navigateToPrevPage}
|
|
61
|
-
isDisabled={isPrevPageDisabled || !hasPrevPage}
|
|
62
|
-
/>
|
|
63
|
-
|
|
64
|
-
<div>
|
|
65
|
-
Page {currentPage} of {count}
|
|
66
|
-
</div>
|
|
67
|
-
|
|
68
|
-
<IconButton
|
|
69
|
-
iconName="chevronRight"
|
|
70
|
-
type="tertiary"
|
|
71
|
-
onClick={navigateToNextPage}
|
|
72
|
-
isDisabled={isNextPageDisabled || !hasNextPage}
|
|
73
|
-
/>
|
|
74
|
-
{isEnhancedPaginationVisible && (
|
|
75
|
-
<IconButton
|
|
76
|
-
iconName="pageLast"
|
|
77
|
-
type="tertiary"
|
|
78
|
-
onClick={navigateToLastPage}
|
|
79
|
-
isDisabled={isNextPageDisabled || !hasNextPage}
|
|
80
|
-
/>
|
|
81
|
-
)}
|
|
82
|
-
</div>
|
|
83
|
-
);
|
|
84
|
-
};
|
|
85
|
-
|
|
86
|
-
export default Pagination;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
|
|
3
|
-
import ProgressBar from './components/ProgressBar';
|
|
4
|
-
import ProgressCircle from './components/ProgressCircle';
|
|
5
|
-
import type { ProgressIndicatorProps } from './ProgressIndicator.types';
|
|
6
|
-
|
|
7
|
-
const ProgressIndicator = React.forwardRef<HTMLDivElement, ProgressIndicatorProps>(
|
|
8
|
-
({ type = 'linear', value, status = 'normal', isBlock = false, dataTestPrefixId }, ref) => {
|
|
9
|
-
return type === 'linear' ? (
|
|
10
|
-
<ProgressBar
|
|
11
|
-
value={value}
|
|
12
|
-
isBlock={isBlock}
|
|
13
|
-
status={status}
|
|
14
|
-
ref={ref}
|
|
15
|
-
dataTestPrefixId={dataTestPrefixId}
|
|
16
|
-
/>
|
|
17
|
-
) : (
|
|
18
|
-
<ProgressCircle value={value} status={status} ref={ref} dataTestPrefixId={dataTestPrefixId} />
|
|
19
|
-
);
|
|
20
|
-
}
|
|
21
|
-
);
|
|
22
|
-
|
|
23
|
-
ProgressIndicator.displayName = 'ProgressIndicator';
|
|
24
|
-
|
|
25
|
-
export default ProgressIndicator;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import type { TestProps } from 'utils/types';
|
|
2
|
-
|
|
3
|
-
export type ProgressIndicatorProps = {
|
|
4
|
-
/** The type of the progress indicator in terms of shape */
|
|
5
|
-
type?: 'linear' | 'circular';
|
|
6
|
-
/** The value (%) of the progress indicator. If not provided, the progress indicator is indeterminate */
|
|
7
|
-
value?: number;
|
|
8
|
-
/** The status of the progress indicator */
|
|
9
|
-
status?: 'normal' | 'error';
|
|
10
|
-
/** Whether the progress indicator is block-positioned. Only applies for the linear variation */
|
|
11
|
-
isBlock?: boolean;
|
|
12
|
-
} & TestProps;
|