@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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { BoxProps } from '../vanilla/Box';
|
|
2
2
|
export type ActionsRootProps = BoxProps<'div'>;
|
|
3
3
|
export declare const ActionsRoot: import('react').ForwardRefExoticComponent<Omit<NonNullable<{
|
|
4
|
-
borderColor?: "decorative.
|
|
4
|
+
borderColor?: "decorative.default" | "decorative.transparent" | "decorative.inverted" | "interactive.success" | "interactive.error" | "interactive.warning" | "interactive.active" | "interactive.default" | "interactive.upsell" | "interactive.focused";
|
|
5
5
|
borderStyle?: "dashed" | "solid";
|
|
6
6
|
borderRadius?: "inherit" | "0" | "1" | "3" | "4" | "6" | "5" | "2" | "7";
|
|
7
7
|
borderTopLeftRadius?: "0" | "1" | "3" | "4" | "6" | "5" | "2" | "7";
|
|
@@ -14,7 +14,7 @@ export declare const ActionsRoot: import('react').ForwardRefExoticComponent<Omit
|
|
|
14
14
|
overflowY?: "hidden" | "auto" | "visible";
|
|
15
15
|
userSelect?: "all" | "none";
|
|
16
16
|
touchAction?: "none" | "manipulation";
|
|
17
|
-
fontFamily?: "
|
|
17
|
+
fontFamily?: "mono" | "sans";
|
|
18
18
|
fontSize?: "1" | "3" | "9" | "4" | "6" | "5" | "8" | "2" | "10" | "7";
|
|
19
19
|
typography?: "headline01" | "headline02" | "headline03" | "headline04" | "headline05" | "title01" | "title02" | "title03" | "label01" | "label02" | "label03" | "label04" | "body01" | "body02" | "body03" | "body04";
|
|
20
20
|
fontWeight?: "bold" | "medium" | "regular";
|
|
@@ -32,10 +32,10 @@ export declare const ActionsRoot: import('react').ForwardRefExoticComponent<Omit
|
|
|
32
32
|
textAlign?: "center" | "start" | "end" | "justify";
|
|
33
33
|
animation?: "ping" | "pulse";
|
|
34
34
|
transitionProperty?: "all" | "none" | "default" | "opacity" | "transform" | "colors" | "shadow";
|
|
35
|
-
transitionTimingFunction?: "
|
|
35
|
+
transitionTimingFunction?: "in" | "ease" | "linear" | "out" | "inOut";
|
|
36
36
|
transitionDuration?: "150ms" | "200ms";
|
|
37
37
|
whiteSpace?: "nowrap";
|
|
38
|
-
zIndex?: "0" | "10" | "
|
|
38
|
+
zIndex?: "0" | "10" | "20" | "auto" | "30" | "40" | "50" | "100" | "75";
|
|
39
39
|
overflow?: "hidden" | "auto" | "visible";
|
|
40
40
|
shadow?: "0" | "1" | "3" | "4" | "5" | "2";
|
|
41
41
|
rounded?: "inherit" | "0" | "1" | "3" | "4" | "6" | "5" | "2" | "7";
|
|
@@ -43,19 +43,19 @@ export declare const ActionsRoot: import('react').ForwardRefExoticComponent<Omit
|
|
|
43
43
|
roundedB?: "0" | "1" | "3" | "4" | "6" | "5" | "2" | "7";
|
|
44
44
|
roundedL?: "0" | "1" | "3" | "4" | "6" | "5" | "2" | "7";
|
|
45
45
|
roundedR?: "0" | "1" | "3" | "4" | "6" | "5" | "2" | "7";
|
|
46
|
-
z?: "0" | "10" | "
|
|
46
|
+
z?: "0" | "10" | "20" | "auto" | "30" | "40" | "50" | "100" | "75";
|
|
47
47
|
} & {
|
|
48
|
-
alignItems?: "center" | "
|
|
49
|
-
base?: "center" | "
|
|
50
|
-
md?: "center" | "
|
|
51
|
-
lg?: "center" | "
|
|
52
|
-
xl?: "center" | "
|
|
53
|
-
};
|
|
54
|
-
alignSelf?: "center" | "
|
|
55
|
-
base?: "center" | "
|
|
56
|
-
md?: "center" | "
|
|
57
|
-
lg?: "center" | "
|
|
58
|
-
xl?: "center" | "
|
|
48
|
+
alignItems?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch" | {
|
|
49
|
+
base?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
50
|
+
md?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
51
|
+
lg?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
52
|
+
xl?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
53
|
+
};
|
|
54
|
+
alignSelf?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch" | {
|
|
55
|
+
base?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
56
|
+
md?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
57
|
+
lg?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
58
|
+
xl?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
59
59
|
};
|
|
60
60
|
placeItems?: "center" | {
|
|
61
61
|
base?: "center";
|
|
@@ -63,11 +63,11 @@ export declare const ActionsRoot: import('react').ForwardRefExoticComponent<Omit
|
|
|
63
63
|
lg?: "center";
|
|
64
64
|
xl?: "center";
|
|
65
65
|
};
|
|
66
|
-
justifyContent?: "center" | "unset" | "
|
|
67
|
-
base?: "center" | "unset" | "
|
|
68
|
-
md?: "center" | "unset" | "
|
|
69
|
-
lg?: "center" | "unset" | "
|
|
70
|
-
xl?: "center" | "unset" | "
|
|
66
|
+
justifyContent?: "center" | "unset" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | {
|
|
67
|
+
base?: "center" | "unset" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly";
|
|
68
|
+
md?: "center" | "unset" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly";
|
|
69
|
+
lg?: "center" | "unset" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly";
|
|
70
|
+
xl?: "center" | "unset" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly";
|
|
71
71
|
};
|
|
72
72
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | {
|
|
73
73
|
base?: "wrap" | "nowrap" | "wrap-reverse";
|
|
@@ -75,53 +75,53 @@ export declare const ActionsRoot: import('react').ForwardRefExoticComponent<Omit
|
|
|
75
75
|
lg?: "wrap" | "nowrap" | "wrap-reverse";
|
|
76
76
|
xl?: "wrap" | "nowrap" | "wrap-reverse";
|
|
77
77
|
};
|
|
78
|
-
display?: "grid" | "none" | "
|
|
79
|
-
base?: "grid" | "none" | "
|
|
80
|
-
md?: "grid" | "none" | "
|
|
81
|
-
lg?: "grid" | "none" | "
|
|
82
|
-
xl?: "grid" | "none" | "
|
|
83
|
-
};
|
|
84
|
-
flex?: "none" | "1" | "
|
|
85
|
-
base?: "none" | "1" | "
|
|
86
|
-
md?: "none" | "1" | "
|
|
87
|
-
lg?: "none" | "1" | "
|
|
88
|
-
xl?: "none" | "1" | "
|
|
89
|
-
};
|
|
90
|
-
width?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
91
|
-
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
92
|
-
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
93
|
-
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
94
|
-
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
95
|
-
};
|
|
96
|
-
height?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
97
|
-
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
98
|
-
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
99
|
-
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
100
|
-
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
101
|
-
};
|
|
102
|
-
minWidth?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
103
|
-
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
104
|
-
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
105
|
-
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
106
|
-
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
107
|
-
};
|
|
108
|
-
minHeight?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
109
|
-
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
110
|
-
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
111
|
-
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
112
|
-
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
113
|
-
};
|
|
114
|
-
maxWidth?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
115
|
-
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
116
|
-
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
117
|
-
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
118
|
-
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
119
|
-
};
|
|
120
|
-
maxHeight?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
121
|
-
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
122
|
-
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
123
|
-
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
124
|
-
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
78
|
+
display?: "grid" | "none" | "flex" | "inline" | "block" | "inline-block" | "inline-flex" | "inline-grid" | "contents" | {
|
|
79
|
+
base?: "grid" | "none" | "flex" | "inline" | "block" | "inline-block" | "inline-flex" | "inline-grid" | "contents";
|
|
80
|
+
md?: "grid" | "none" | "flex" | "inline" | "block" | "inline-block" | "inline-flex" | "inline-grid" | "contents";
|
|
81
|
+
lg?: "grid" | "none" | "flex" | "inline" | "block" | "inline-block" | "inline-flex" | "inline-grid" | "contents";
|
|
82
|
+
xl?: "grid" | "none" | "flex" | "inline" | "block" | "inline-block" | "inline-flex" | "inline-grid" | "contents";
|
|
83
|
+
};
|
|
84
|
+
flex?: "none" | "1" | "initial" | "auto" | {
|
|
85
|
+
base?: "none" | "1" | "initial" | "auto";
|
|
86
|
+
md?: "none" | "1" | "initial" | "auto";
|
|
87
|
+
lg?: "none" | "1" | "initial" | "auto";
|
|
88
|
+
xl?: "none" | "1" | "initial" | "auto";
|
|
89
|
+
};
|
|
90
|
+
width?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | {
|
|
91
|
+
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
92
|
+
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
93
|
+
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
94
|
+
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
95
|
+
};
|
|
96
|
+
height?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | {
|
|
97
|
+
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
98
|
+
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
99
|
+
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
100
|
+
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
101
|
+
};
|
|
102
|
+
minWidth?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | {
|
|
103
|
+
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
104
|
+
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
105
|
+
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
106
|
+
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
107
|
+
};
|
|
108
|
+
minHeight?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | {
|
|
109
|
+
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
110
|
+
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
111
|
+
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
112
|
+
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
113
|
+
};
|
|
114
|
+
maxWidth?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | {
|
|
115
|
+
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
116
|
+
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
117
|
+
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
118
|
+
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
119
|
+
};
|
|
120
|
+
maxHeight?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | {
|
|
121
|
+
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
122
|
+
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
123
|
+
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
124
|
+
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
125
125
|
};
|
|
126
126
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | {
|
|
127
127
|
base?: "row" | "column" | "row-reverse" | "column-reverse";
|
|
@@ -141,77 +141,77 @@ export declare const ActionsRoot: import('react').ForwardRefExoticComponent<Omit
|
|
|
141
141
|
lg?: "absolute" | "fixed" | "relative" | "sticky";
|
|
142
142
|
xl?: "absolute" | "fixed" | "relative" | "sticky";
|
|
143
143
|
};
|
|
144
|
-
gap?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
145
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
146
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
147
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
148
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
149
|
-
};
|
|
150
|
-
gridGap?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
151
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
152
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
153
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
154
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
155
|
-
};
|
|
156
|
-
margin?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
157
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
158
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
159
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
160
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
161
|
-
};
|
|
162
|
-
marginBottom?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
163
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
164
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
165
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
166
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
167
|
-
};
|
|
168
|
-
marginLeft?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
169
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
170
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
171
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
172
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
173
|
-
};
|
|
174
|
-
marginRight?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
175
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
176
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
177
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
178
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
179
|
-
};
|
|
180
|
-
marginTop?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
181
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
182
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
183
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
184
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
185
|
-
};
|
|
186
|
-
padding?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
187
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
188
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
189
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
190
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
191
|
-
};
|
|
192
|
-
paddingBottom?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
193
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
194
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
195
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
196
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
197
|
-
};
|
|
198
|
-
paddingLeft?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
199
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
200
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
201
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
202
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
203
|
-
};
|
|
204
|
-
paddingRight?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
205
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
206
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
207
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
208
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
209
|
-
};
|
|
210
|
-
paddingTop?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
211
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
212
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
213
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
214
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
144
|
+
gap?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
145
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
146
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
147
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
148
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
149
|
+
};
|
|
150
|
+
gridGap?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
151
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
152
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
153
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
154
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
155
|
+
};
|
|
156
|
+
margin?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
157
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
158
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
159
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
160
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
161
|
+
};
|
|
162
|
+
marginBottom?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
163
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
164
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
165
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
166
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
167
|
+
};
|
|
168
|
+
marginLeft?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
169
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
170
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
171
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
172
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
173
|
+
};
|
|
174
|
+
marginRight?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
175
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
176
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
177
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
178
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
179
|
+
};
|
|
180
|
+
marginTop?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
181
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
182
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
183
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
184
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
185
|
+
};
|
|
186
|
+
padding?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
187
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
188
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
189
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
190
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
191
|
+
};
|
|
192
|
+
paddingBottom?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
193
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
194
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
195
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
196
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
197
|
+
};
|
|
198
|
+
paddingLeft?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
199
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
200
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
201
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
202
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
203
|
+
};
|
|
204
|
+
paddingRight?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
205
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
206
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
207
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
208
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
209
|
+
};
|
|
210
|
+
paddingTop?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
211
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
212
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
213
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
214
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
215
215
|
};
|
|
216
216
|
borderTopWidth?: "0" | "1" | "3" | "2" | {
|
|
217
217
|
base?: "0" | "1" | "3" | "2";
|
|
@@ -237,119 +237,119 @@ export declare const ActionsRoot: import('react').ForwardRefExoticComponent<Omit
|
|
|
237
237
|
lg?: "0" | "1" | "3" | "2";
|
|
238
238
|
xl?: "0" | "1" | "3" | "2";
|
|
239
239
|
};
|
|
240
|
-
maxH?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
241
|
-
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
242
|
-
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
243
|
-
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
244
|
-
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
245
|
-
};
|
|
246
|
-
maxW?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
247
|
-
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
248
|
-
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
249
|
-
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
250
|
-
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
251
|
-
};
|
|
252
|
-
size?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
253
|
-
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
254
|
-
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
255
|
-
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
256
|
-
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
257
|
-
};
|
|
258
|
-
w?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
259
|
-
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
260
|
-
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
261
|
-
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
262
|
-
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
263
|
-
};
|
|
264
|
-
h?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
265
|
-
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
266
|
-
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
267
|
-
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
268
|
-
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "
|
|
269
|
-
};
|
|
270
|
-
p?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
271
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
272
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
273
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
274
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
275
|
-
};
|
|
276
|
-
pt?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
277
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
278
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
279
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
280
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
281
|
-
};
|
|
282
|
-
pb?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
283
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
284
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
285
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
286
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
287
|
-
};
|
|
288
|
-
pl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
289
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
290
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
291
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
292
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
293
|
-
};
|
|
294
|
-
pr?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
295
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
296
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
297
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
298
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
299
|
-
};
|
|
300
|
-
px?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
301
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
302
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
303
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
304
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
305
|
-
};
|
|
306
|
-
py?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
307
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
308
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
309
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
310
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
311
|
-
};
|
|
312
|
-
m?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
313
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
314
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
315
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
316
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
317
|
-
};
|
|
318
|
-
mt?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
319
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
320
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
321
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
322
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
323
|
-
};
|
|
324
|
-
mb?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
325
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
326
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
327
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
328
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
329
|
-
};
|
|
330
|
-
ml?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
331
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
332
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
333
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
334
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
335
|
-
};
|
|
336
|
-
mr?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
337
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
338
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
339
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
340
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
341
|
-
};
|
|
342
|
-
mx?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
343
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
344
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
345
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
346
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
347
|
-
};
|
|
348
|
-
my?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
349
|
-
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
350
|
-
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
351
|
-
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
352
|
-
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "
|
|
240
|
+
maxH?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | {
|
|
241
|
+
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
242
|
+
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
243
|
+
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
244
|
+
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
245
|
+
};
|
|
246
|
+
maxW?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | {
|
|
247
|
+
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
248
|
+
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
249
|
+
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
250
|
+
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
251
|
+
};
|
|
252
|
+
size?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | {
|
|
253
|
+
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
254
|
+
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
255
|
+
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
256
|
+
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
257
|
+
};
|
|
258
|
+
w?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | {
|
|
259
|
+
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
260
|
+
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
261
|
+
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
262
|
+
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
263
|
+
};
|
|
264
|
+
h?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | {
|
|
265
|
+
base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
266
|
+
md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
267
|
+
lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
268
|
+
xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4";
|
|
269
|
+
};
|
|
270
|
+
p?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
271
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
272
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
273
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
274
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
275
|
+
};
|
|
276
|
+
pt?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
277
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
278
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
279
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
280
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
281
|
+
};
|
|
282
|
+
pb?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
283
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
284
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
285
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
286
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
287
|
+
};
|
|
288
|
+
pl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
289
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
290
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
291
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
292
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
293
|
+
};
|
|
294
|
+
pr?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
295
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
296
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
297
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
298
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
299
|
+
};
|
|
300
|
+
px?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
301
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
302
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
303
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
304
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
305
|
+
};
|
|
306
|
+
py?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
307
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
308
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
309
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
310
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
311
|
+
};
|
|
312
|
+
m?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
313
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
314
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
315
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
316
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
317
|
+
};
|
|
318
|
+
mt?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
319
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
320
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
321
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
322
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
323
|
+
};
|
|
324
|
+
mb?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
325
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
326
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
327
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
328
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
329
|
+
};
|
|
330
|
+
ml?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
331
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
332
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
333
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
334
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
335
|
+
};
|
|
336
|
+
mr?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
337
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
338
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
339
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
340
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
341
|
+
};
|
|
342
|
+
mx?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
343
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
344
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
345
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
346
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
347
|
+
};
|
|
348
|
+
my?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | {
|
|
349
|
+
base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
350
|
+
md?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
351
|
+
lg?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
352
|
+
xl?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "11" | "sm" | "md" | "lg" | "xl" | "2xs" | "xs" | "2xl" | "3xl" | "4xl";
|
|
353
353
|
};
|
|
354
354
|
border?: "0" | "1" | "3" | "2" | {
|
|
355
355
|
base?: "0" | "1" | "3" | "2";
|
|
@@ -382,35 +382,35 @@ export declare const ActionsRoot: import('react').ForwardRefExoticComponent<Omit
|
|
|
382
382
|
xl?: "0" | "1" | "3" | "2";
|
|
383
383
|
};
|
|
384
384
|
} & {
|
|
385
|
-
backgroundColor?: "alt" | "default" | "transparent" | "
|
|
386
|
-
base?: "alt" | "default" | "transparent" | "
|
|
387
|
-
active?: "alt" | "default" | "transparent" | "
|
|
388
|
-
focus?: "alt" | "default" | "transparent" | "
|
|
389
|
-
hover?: "alt" | "default" | "transparent" | "
|
|
390
|
-
};
|
|
391
|
-
borderColor?: "decorative.
|
|
392
|
-
base?: "decorative.
|
|
393
|
-
active?: "decorative.
|
|
394
|
-
focus?: "decorative.
|
|
395
|
-
hover?: "decorative.
|
|
396
|
-
};
|
|
397
|
-
color?: "primary" | "secondary" | "success" | "error" | "warning" | "active" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" |
|
|
398
|
-
base?: "primary" | "secondary" | "success" | "error" | "warning" | "active" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive"
|
|
399
|
-
active?: "primary" | "secondary" | "success" | "error" | "warning" | "active" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive"
|
|
400
|
-
focus?: "primary" | "secondary" | "success" | "error" | "warning" | "active" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive"
|
|
401
|
-
hover?: "primary" | "secondary" | "success" | "error" | "warning" | "active" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive"
|
|
402
|
-
};
|
|
403
|
-
outlineColor?: "decorative.
|
|
404
|
-
base?: "decorative.
|
|
405
|
-
active?: "decorative.
|
|
406
|
-
focus?: "decorative.
|
|
407
|
-
hover?: "decorative.
|
|
408
|
-
};
|
|
409
|
-
bg?: "alt" | "default" | "transparent" | "
|
|
410
|
-
base?: "alt" | "default" | "transparent" | "
|
|
411
|
-
active?: "alt" | "default" | "transparent" | "
|
|
412
|
-
focus?: "alt" | "default" | "transparent" | "
|
|
413
|
-
hover?: "alt" | "default" | "transparent" | "
|
|
385
|
+
backgroundColor?: "alt" | "default" | "transparent" | "inverted" | "invertedAlt" | "backdrop.default" | "palette.primary.muted" | "palette.primary.contrast" | "palette.secondary.muted" | "palette.secondary.contrast" | "palette.success.muted" | "palette.success.contrast" | "palette.error.muted" | "palette.error.contrast" | "palette.warning.muted" | "palette.warning.contrast" | "palette.tertiary.muted" | "palette.tertiary.contrast" | "palette.upsell.muted" | "palette.upsell.contrast" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" | "palette.primary" | "palette.secondary" | "palette.tertiary" | "palette.error" | "palette.warning" | "palette.success" | "palette.upsell" | "palette.primary-alt" | "palette.primary-alt.muted" | "palette.primary-alt.contrast" | "backdrop.alt" | {
|
|
386
|
+
base?: "alt" | "default" | "transparent" | "inverted" | "invertedAlt" | "backdrop.default" | "palette.primary.muted" | "palette.primary.contrast" | "palette.secondary.muted" | "palette.secondary.contrast" | "palette.success.muted" | "palette.success.contrast" | "palette.error.muted" | "palette.error.contrast" | "palette.warning.muted" | "palette.warning.contrast" | "palette.tertiary.muted" | "palette.tertiary.contrast" | "palette.upsell.muted" | "palette.upsell.contrast" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" | "palette.primary" | "palette.secondary" | "palette.tertiary" | "palette.error" | "palette.warning" | "palette.success" | "palette.upsell" | "palette.primary-alt" | "palette.primary-alt.muted" | "palette.primary-alt.contrast" | "backdrop.alt";
|
|
387
|
+
active?: "alt" | "default" | "transparent" | "inverted" | "invertedAlt" | "backdrop.default" | "palette.primary.muted" | "palette.primary.contrast" | "palette.secondary.muted" | "palette.secondary.contrast" | "palette.success.muted" | "palette.success.contrast" | "palette.error.muted" | "palette.error.contrast" | "palette.warning.muted" | "palette.warning.contrast" | "palette.tertiary.muted" | "palette.tertiary.contrast" | "palette.upsell.muted" | "palette.upsell.contrast" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" | "palette.primary" | "palette.secondary" | "palette.tertiary" | "palette.error" | "palette.warning" | "palette.success" | "palette.upsell" | "palette.primary-alt" | "palette.primary-alt.muted" | "palette.primary-alt.contrast" | "backdrop.alt";
|
|
388
|
+
focus?: "alt" | "default" | "transparent" | "inverted" | "invertedAlt" | "backdrop.default" | "palette.primary.muted" | "palette.primary.contrast" | "palette.secondary.muted" | "palette.secondary.contrast" | "palette.success.muted" | "palette.success.contrast" | "palette.error.muted" | "palette.error.contrast" | "palette.warning.muted" | "palette.warning.contrast" | "palette.tertiary.muted" | "palette.tertiary.contrast" | "palette.upsell.muted" | "palette.upsell.contrast" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" | "palette.primary" | "palette.secondary" | "palette.tertiary" | "palette.error" | "palette.warning" | "palette.success" | "palette.upsell" | "palette.primary-alt" | "palette.primary-alt.muted" | "palette.primary-alt.contrast" | "backdrop.alt";
|
|
389
|
+
hover?: "alt" | "default" | "transparent" | "inverted" | "invertedAlt" | "backdrop.default" | "palette.primary.muted" | "palette.primary.contrast" | "palette.secondary.muted" | "palette.secondary.contrast" | "palette.success.muted" | "palette.success.contrast" | "palette.error.muted" | "palette.error.contrast" | "palette.warning.muted" | "palette.warning.contrast" | "palette.tertiary.muted" | "palette.tertiary.contrast" | "palette.upsell.muted" | "palette.upsell.contrast" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" | "palette.primary" | "palette.secondary" | "palette.tertiary" | "palette.error" | "palette.warning" | "palette.success" | "palette.upsell" | "palette.primary-alt" | "palette.primary-alt.muted" | "palette.primary-alt.contrast" | "backdrop.alt";
|
|
390
|
+
};
|
|
391
|
+
borderColor?: "decorative.default" | "decorative.transparent" | "decorative.inverted" | "interactive.success" | "interactive.error" | "interactive.warning" | "interactive.active" | "interactive.default" | "interactive.upsell" | "interactive.focused" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" | {
|
|
392
|
+
base?: "decorative.default" | "decorative.transparent" | "decorative.inverted" | "interactive.success" | "interactive.error" | "interactive.warning" | "interactive.active" | "interactive.default" | "interactive.upsell" | "interactive.focused" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive";
|
|
393
|
+
active?: "decorative.default" | "decorative.transparent" | "decorative.inverted" | "interactive.success" | "interactive.error" | "interactive.warning" | "interactive.active" | "interactive.default" | "interactive.upsell" | "interactive.focused" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive";
|
|
394
|
+
focus?: "decorative.default" | "decorative.transparent" | "decorative.inverted" | "interactive.success" | "interactive.error" | "interactive.warning" | "interactive.active" | "interactive.default" | "interactive.upsell" | "interactive.focused" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive";
|
|
395
|
+
hover?: "decorative.default" | "decorative.transparent" | "decorative.inverted" | "interactive.success" | "interactive.error" | "interactive.warning" | "interactive.active" | "interactive.default" | "interactive.upsell" | "interactive.focused" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive";
|
|
396
|
+
};
|
|
397
|
+
color?: "primary" | "secondary" | "success" | "error" | "warning" | "inverted.primary" | "active" | "visited" | "inverted.secondary" | "inverted.success" | "inverted.error" | "inverted.warning" | "inverted.active" | "inverted.visited" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" | {
|
|
398
|
+
base?: "primary" | "secondary" | "success" | "error" | "warning" | "inverted.primary" | "active" | "visited" | "inverted.secondary" | "inverted.success" | "inverted.error" | "inverted.warning" | "inverted.active" | "inverted.visited" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive";
|
|
399
|
+
active?: "primary" | "secondary" | "success" | "error" | "warning" | "inverted.primary" | "active" | "visited" | "inverted.secondary" | "inverted.success" | "inverted.error" | "inverted.warning" | "inverted.active" | "inverted.visited" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive";
|
|
400
|
+
focus?: "primary" | "secondary" | "success" | "error" | "warning" | "inverted.primary" | "active" | "visited" | "inverted.secondary" | "inverted.success" | "inverted.error" | "inverted.warning" | "inverted.active" | "inverted.visited" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive";
|
|
401
|
+
hover?: "primary" | "secondary" | "success" | "error" | "warning" | "inverted.primary" | "active" | "visited" | "inverted.secondary" | "inverted.success" | "inverted.error" | "inverted.warning" | "inverted.active" | "inverted.visited" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive";
|
|
402
|
+
};
|
|
403
|
+
outlineColor?: "decorative.default" | "decorative.transparent" | "decorative.inverted" | "interactive.success" | "interactive.error" | "interactive.warning" | "interactive.active" | "interactive.default" | "interactive.upsell" | "interactive.focused" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" | {
|
|
404
|
+
base?: "decorative.default" | "decorative.transparent" | "decorative.inverted" | "interactive.success" | "interactive.error" | "interactive.warning" | "interactive.active" | "interactive.default" | "interactive.upsell" | "interactive.focused" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive";
|
|
405
|
+
active?: "decorative.default" | "decorative.transparent" | "decorative.inverted" | "interactive.success" | "interactive.error" | "interactive.warning" | "interactive.active" | "interactive.default" | "interactive.upsell" | "interactive.focused" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive";
|
|
406
|
+
focus?: "decorative.default" | "decorative.transparent" | "decorative.inverted" | "interactive.success" | "interactive.error" | "interactive.warning" | "interactive.active" | "interactive.default" | "interactive.upsell" | "interactive.focused" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive";
|
|
407
|
+
hover?: "decorative.default" | "decorative.transparent" | "decorative.inverted" | "interactive.success" | "interactive.error" | "interactive.warning" | "interactive.active" | "interactive.default" | "interactive.upsell" | "interactive.focused" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive";
|
|
408
|
+
};
|
|
409
|
+
bg?: "alt" | "default" | "transparent" | "inverted" | "invertedAlt" | "backdrop.default" | "palette.primary.muted" | "palette.primary.contrast" | "palette.secondary.muted" | "palette.secondary.contrast" | "palette.success.muted" | "palette.success.contrast" | "palette.error.muted" | "palette.error.contrast" | "palette.warning.muted" | "palette.warning.contrast" | "palette.tertiary.muted" | "palette.tertiary.contrast" | "palette.upsell.muted" | "palette.upsell.contrast" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" | "palette.primary" | "palette.secondary" | "palette.tertiary" | "palette.error" | "palette.warning" | "palette.success" | "palette.upsell" | "palette.primary-alt" | "palette.primary-alt.muted" | "palette.primary-alt.contrast" | "backdrop.alt" | {
|
|
410
|
+
base?: "alt" | "default" | "transparent" | "inverted" | "invertedAlt" | "backdrop.default" | "palette.primary.muted" | "palette.primary.contrast" | "palette.secondary.muted" | "palette.secondary.contrast" | "palette.success.muted" | "palette.success.contrast" | "palette.error.muted" | "palette.error.contrast" | "palette.warning.muted" | "palette.warning.contrast" | "palette.tertiary.muted" | "palette.tertiary.contrast" | "palette.upsell.muted" | "palette.upsell.contrast" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" | "palette.primary" | "palette.secondary" | "palette.tertiary" | "palette.error" | "palette.warning" | "palette.success" | "palette.upsell" | "palette.primary-alt" | "palette.primary-alt.muted" | "palette.primary-alt.contrast" | "backdrop.alt";
|
|
411
|
+
active?: "alt" | "default" | "transparent" | "inverted" | "invertedAlt" | "backdrop.default" | "palette.primary.muted" | "palette.primary.contrast" | "palette.secondary.muted" | "palette.secondary.contrast" | "palette.success.muted" | "palette.success.contrast" | "palette.error.muted" | "palette.error.contrast" | "palette.warning.muted" | "palette.warning.contrast" | "palette.tertiary.muted" | "palette.tertiary.contrast" | "palette.upsell.muted" | "palette.upsell.contrast" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" | "palette.primary" | "palette.secondary" | "palette.tertiary" | "palette.error" | "palette.warning" | "palette.success" | "palette.upsell" | "palette.primary-alt" | "palette.primary-alt.muted" | "palette.primary-alt.contrast" | "backdrop.alt";
|
|
412
|
+
focus?: "alt" | "default" | "transparent" | "inverted" | "invertedAlt" | "backdrop.default" | "palette.primary.muted" | "palette.primary.contrast" | "palette.secondary.muted" | "palette.secondary.contrast" | "palette.success.muted" | "palette.success.contrast" | "palette.error.muted" | "palette.error.contrast" | "palette.warning.muted" | "palette.warning.contrast" | "palette.tertiary.muted" | "palette.tertiary.contrast" | "palette.upsell.muted" | "palette.upsell.contrast" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" | "palette.primary" | "palette.secondary" | "palette.tertiary" | "palette.error" | "palette.warning" | "palette.success" | "palette.upsell" | "palette.primary-alt" | "palette.primary-alt.muted" | "palette.primary-alt.contrast" | "backdrop.alt";
|
|
413
|
+
hover?: "alt" | "default" | "transparent" | "inverted" | "invertedAlt" | "backdrop.default" | "palette.primary.muted" | "palette.primary.contrast" | "palette.secondary.muted" | "palette.secondary.contrast" | "palette.success.muted" | "palette.success.contrast" | "palette.error.muted" | "palette.error.contrast" | "palette.warning.muted" | "palette.warning.contrast" | "palette.tertiary.muted" | "palette.tertiary.contrast" | "palette.upsell.muted" | "palette.upsell.contrast" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" | "palette.primary" | "palette.secondary" | "palette.tertiary" | "palette.error" | "palette.warning" | "palette.success" | "palette.upsell" | "palette.primary-alt" | "palette.primary-alt.muted" | "palette.primary-alt.contrast" | "backdrop.alt";
|
|
414
414
|
};
|
|
415
415
|
} & {
|
|
416
416
|
asChild?: boolean;
|