@bitrise/bitkit-v2 0.3.296 → 0.3.297
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.
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
type BitkitLightboxSize = 'sm' | 'md' | 'lg' | 'full';
|
|
3
|
+
export interface BitkitLightboxProps {
|
|
4
|
+
/** Accessible name for the dialog. Set this (or `aria-labelledby`) so the modal isn't announced unnamed. */
|
|
5
|
+
'aria-label'?: string;
|
|
6
|
+
/** ID of an element in `children` that names the dialog (alternative to `aria-label`). */
|
|
7
|
+
'aria-labelledby'?: string;
|
|
8
|
+
/** Content rendered on the overlay. The lightbox adds no chrome — the caller brings its own look. */
|
|
9
|
+
children?: ReactNode;
|
|
10
|
+
onOpenChange?: (details: {
|
|
11
|
+
open: boolean;
|
|
12
|
+
}) => void;
|
|
13
|
+
open?: boolean;
|
|
14
|
+
/** Caps how wide the dialog can grow; below the cap it's fluid. `full` spans the viewport width (keeping a side gutter). Defaults to `md`. */
|
|
15
|
+
size?: BitkitLightboxSize;
|
|
16
|
+
/** Optional element that opens the lightbox (rendered as the dialog trigger). */
|
|
17
|
+
trigger?: ReactNode;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* A bare, chrome-less dialog: a dimmed overlay with the caller's children on top, and nothing else —
|
|
21
|
+
* the `Dialog.Content` card (background, radius, shadow) is stripped, so only the children show. No
|
|
22
|
+
* header, footer or close button. Unlike `BitkitDialog`'s fixed widths, the dialog is fluid up to a
|
|
23
|
+
* `size` cap, so the child (e.g. an image/video in an AspectRatio) drives the height. Escape and an
|
|
24
|
+
* overlay (outside) click both dismiss it — Chakra's `Dialog.Root` default, so it isn't overridden.
|
|
25
|
+
*/
|
|
26
|
+
declare const BitkitLightbox: {
|
|
27
|
+
({ "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, children, onOpenChange, open, size, trigger, }: BitkitLightboxProps): import("react").JSX.Element;
|
|
28
|
+
displayName: string;
|
|
29
|
+
};
|
|
30
|
+
export default BitkitLightbox;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { rem } from "../../theme/themeUtils.js";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { Portal } from "@chakra-ui/react/portal";
|
|
4
|
+
import { Dialog } from "@chakra-ui/react/dialog";
|
|
5
|
+
//#region lib/components/BitkitLightbox/BitkitLightbox.tsx
|
|
6
|
+
var MAX_WIDTH = {
|
|
7
|
+
sm: rem(480),
|
|
8
|
+
md: rem(640),
|
|
9
|
+
lg: rem(800),
|
|
10
|
+
full: "full"
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* A bare, chrome-less dialog: a dimmed overlay with the caller's children on top, and nothing else —
|
|
14
|
+
* the `Dialog.Content` card (background, radius, shadow) is stripped, so only the children show. No
|
|
15
|
+
* header, footer or close button. Unlike `BitkitDialog`'s fixed widths, the dialog is fluid up to a
|
|
16
|
+
* `size` cap, so the child (e.g. an image/video in an AspectRatio) drives the height. Escape and an
|
|
17
|
+
* overlay (outside) click both dismiss it — Chakra's `Dialog.Root` default, so it isn't overridden.
|
|
18
|
+
*/
|
|
19
|
+
var BitkitLightbox = ({ "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, children, onOpenChange, open, size = "md", trigger }) => /* @__PURE__ */ jsxs(Dialog.Root, {
|
|
20
|
+
onOpenChange,
|
|
21
|
+
open,
|
|
22
|
+
children: [trigger && /* @__PURE__ */ jsx(Dialog.Trigger, {
|
|
23
|
+
asChild: true,
|
|
24
|
+
children: trigger
|
|
25
|
+
}), /* @__PURE__ */ jsxs(Portal, { children: [/* @__PURE__ */ jsx(Dialog.Backdrop, {}), /* @__PURE__ */ jsx(Dialog.Positioner, {
|
|
26
|
+
paddingInline: size === "full" ? "32" : void 0,
|
|
27
|
+
children: /* @__PURE__ */ jsx(Dialog.Content, {
|
|
28
|
+
"aria-label": ariaLabel,
|
|
29
|
+
"aria-labelledby": ariaLabelledBy,
|
|
30
|
+
background: "transparent",
|
|
31
|
+
borderRadius: "0",
|
|
32
|
+
boxShadow: "none",
|
|
33
|
+
maxWidth: MAX_WIDTH[size],
|
|
34
|
+
width: "full",
|
|
35
|
+
children
|
|
36
|
+
})
|
|
37
|
+
})] })]
|
|
38
|
+
});
|
|
39
|
+
BitkitLightbox.displayName = "BitkitLightbox";
|
|
40
|
+
//#endregion
|
|
41
|
+
export { BitkitLightbox as default };
|
|
42
|
+
|
|
43
|
+
//# sourceMappingURL=BitkitLightbox.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BitkitLightbox.js","names":[],"sources":["../../../lib/components/BitkitLightbox/BitkitLightbox.tsx"],"sourcesContent":["import { Dialog } from '@chakra-ui/react/dialog';\nimport { Portal } from '@chakra-ui/react/portal';\nimport { type ReactNode } from 'react';\n\nimport { rem } from '../../theme/themeUtils';\n\ntype BitkitLightboxSize = 'sm' | 'md' | 'lg' | 'full';\n\n// The Dialog recipe's `size` sets a fixed `width`; a lightbox instead stays fluid and only caps how\n// wide it can grow, so we map size → maxWidth here and keep `width=\"full\"`. The sm/md/lg caps mirror\n// the Dialog recipe's widths; `full` lifts the cap so the dialog spans the viewport width, minus a\n// side gutter added on the positioner below (like BitkitDialog's full). Height stays content-driven.\nconst MAX_WIDTH: Record<BitkitLightboxSize, string> = {\n sm: rem(480),\n md: rem(640),\n lg: rem(800),\n full: 'full',\n};\n\nexport interface BitkitLightboxProps {\n /** Accessible name for the dialog. Set this (or `aria-labelledby`) so the modal isn't announced unnamed. */\n 'aria-label'?: string;\n /** ID of an element in `children` that names the dialog (alternative to `aria-label`). */\n 'aria-labelledby'?: string;\n /** Content rendered on the overlay. The lightbox adds no chrome — the caller brings its own look. */\n children?: ReactNode;\n onOpenChange?: (details: { open: boolean }) => void;\n open?: boolean;\n /** Caps how wide the dialog can grow; below the cap it's fluid. `full` spans the viewport width (keeping a side gutter). Defaults to `md`. */\n size?: BitkitLightboxSize;\n /** Optional element that opens the lightbox (rendered as the dialog trigger). */\n trigger?: ReactNode;\n}\n\n/**\n * A bare, chrome-less dialog: a dimmed overlay with the caller's children on top, and nothing else —\n * the `Dialog.Content` card (background, radius, shadow) is stripped, so only the children show. No\n * header, footer or close button. Unlike `BitkitDialog`'s fixed widths, the dialog is fluid up to a\n * `size` cap, so the child (e.g. an image/video in an AspectRatio) drives the height. Escape and an\n * overlay (outside) click both dismiss it — Chakra's `Dialog.Root` default, so it isn't overridden.\n */\nconst BitkitLightbox = ({\n 'aria-label': ariaLabel,\n 'aria-labelledby': ariaLabelledBy,\n children,\n onOpenChange,\n open,\n size = 'md',\n trigger,\n}: BitkitLightboxProps) => (\n <Dialog.Root onOpenChange={onOpenChange} open={open}>\n {trigger && <Dialog.Trigger asChild>{trigger}</Dialog.Trigger>}\n <Portal>\n <Dialog.Backdrop />\n {/* `full` keeps a side gutter (like BitkitDialog's full) instead of running edge to edge. */}\n <Dialog.Positioner paddingInline={size === 'full' ? '32' : undefined}>\n {/* Strip the Dialog card so only the children show; fluid width capped by `size` (no fixed\n width). Kept on Dialog.Content to keep focus trap, role and open/close animation. */}\n <Dialog.Content\n aria-label={ariaLabel}\n aria-labelledby={ariaLabelledBy}\n background=\"transparent\"\n borderRadius=\"0\"\n boxShadow=\"none\"\n maxWidth={MAX_WIDTH[size]}\n width=\"full\"\n >\n {children}\n </Dialog.Content>\n </Dialog.Positioner>\n </Portal>\n </Dialog.Root>\n);\n\nBitkitLightbox.displayName = 'BitkitLightbox';\n\nexport default BitkitLightbox;\n"],"mappings":";;;;;AAYA,IAAM,YAAgD;CACpD,IAAI,IAAI,GAAG;CACX,IAAI,IAAI,GAAG;CACX,IAAI,IAAI,GAAG;CACX,MAAM;AACR;;;;;;;;AAwBA,IAAM,kBAAkB,EACtB,cAAc,WACd,mBAAmB,gBACnB,UACA,cACA,MACA,OAAO,MACP,cAEA,qBAAC,OAAO,MAAR;CAA2B;CAAoB;WAA/C,CACG,WAAW,oBAAC,OAAO,SAAR;EAAgB,SAAA;YAAS;CAAwB,CAAA,GAC7D,qBAAC,QAAD,EAAA,UAAA,CACE,oBAAC,OAAO,UAAR,CAAkB,CAAA,GAElB,oBAAC,OAAO,YAAR;EAAmB,eAAe,SAAS,SAAS,OAAO,KAAA;YAGzD,oBAAC,OAAO,SAAR;GACE,cAAY;GACZ,mBAAiB;GACjB,YAAW;GACX,cAAa;GACb,WAAU;GACV,UAAU,UAAU;GACpB,OAAM;GAEL;EACa,CAAA;CACC,CAAA,CACb,EAAA,CAAA,CACG;;AAGf,eAAe,cAAc"}
|
|
@@ -33,6 +33,7 @@ export { default as BitkitInlineLoading, type BitkitInlineLoadingProps, } from '
|
|
|
33
33
|
export { default as BitkitLabel, type BitkitLabelProps } from './BitkitLabel/BitkitLabel';
|
|
34
34
|
export { default as BitkitLabeledData, type BitkitLabeledDataProps } from './BitkitLabeledData/BitkitLabeledData';
|
|
35
35
|
export { default as BitkitLabelTooltip, type BitkitLabelTooltipProps } from './BitkitLabelTooltip/BitkitLabelTooltip';
|
|
36
|
+
export { default as BitkitLightbox, type BitkitLightboxProps } from './BitkitLightbox/BitkitLightbox';
|
|
36
37
|
export { default as BitkitLink, type BitkitLinkProps } from './BitkitLink/BitkitLink';
|
|
37
38
|
export { default as BitkitLinkButton, type BitkitLinkButtonProps } from './BitkitLinkButton/BitkitLinkButton';
|
|
38
39
|
export { default as BitkitList, type BitkitListItemProps, type BitkitListProps } from './BitkitList';
|
package/dist/main.js
CHANGED
|
@@ -322,6 +322,7 @@ import BitkitFileInput from "./components/BitkitFileInput/BitkitFileInput.js";
|
|
|
322
322
|
import BitkitIconButton from "./components/BitkitIconButton/BitkitIconButton.js";
|
|
323
323
|
import BitkitInlineLoading from "./components/BitkitInlineLoading/BitkitInlineLoading.js";
|
|
324
324
|
import BitkitLabeledData from "./components/BitkitLabeledData/BitkitLabeledData.js";
|
|
325
|
+
import BitkitLightbox from "./components/BitkitLightbox/BitkitLightbox.js";
|
|
325
326
|
import BitkitLink from "./components/BitkitLink/BitkitLink.js";
|
|
326
327
|
import BitkitLinkButton from "./components/BitkitLinkButton/BitkitLinkButton.js";
|
|
327
328
|
import BitkitList_default from "./components/BitkitList/BitkitList.js";
|
|
@@ -368,4 +369,4 @@ import BitkitTreeView, { createTreeCollection } from "./components/BitkitTreeVie
|
|
|
368
369
|
import useResponsive, { ResponsiveProvider } from "./hooks/useResponsive.js";
|
|
369
370
|
import bitkitTheme from "./theme/index.js";
|
|
370
371
|
import Provider from "./providers/BitkitProvider.js";
|
|
371
|
-
export { BitkitAccordion, BitkitActionBar, BitkitActionMenu, BitkitAlert, BitkitAvatar, BitkitBadge, BitkitBreadcrumb, BitkitButton, BitkitCalendar, BitkitCheckbox, BitkitCheckboxGroup, BitkitCloseButton, BitkitCodeSnippet, BitkitCollapsible, BitkitColorButton, BitkitCombobox_default as BitkitCombobox, BitkitControlButton, BitkitDataWidget, BitkitDefinitionTooltip, BitkitDialog_default as BitkitDialog, BitkitDraggableCard, BitkitDrawer, BitkitEmptyState, BitkitExpandableCard, BitkitExpandableRow, BitkitField, BitkitFileInput, BitkitFormDialog_default as BitkitFormDialog, BitkitGroupHeading, BitkitIconButton, BitkitInlineLoading, BitkitLabel, BitkitLabelTooltip, BitkitLabeledData, BitkitLink, BitkitLinkButton, BitkitList_default as BitkitList, BitkitMarkdown, BitkitMarkdownCard, BitkitMultiselect_default as BitkitMultiselect, BitkitMultiselectMenu, BitkitNativeSelect, BitkitNoteCard, BitkitNumberInput, BitkitOverflowContent, BitkitOverflowTooltip, BitkitPageFooter_default as BitkitPageFooter, BitkitPagination, BitkitPaginationLoadMore, BitkitPopover, BitkitPromoBanner, Provider as BitkitProvider, BitkitRadio, BitkitRadioGroup, BitkitRibbon, BitkitSearchInput, BitkitSectionHeading, BitkitSegmentedControl_default as BitkitSegmentedControl, BitkitSelect_default as BitkitSelect, BitkitSelectMenu, BitkitSelectMenuAction, BitkitSelectableTag_default as BitkitSelectableTag, BitkitSettingsCard_default as BitkitSettingsCard, BitkitSidebar_default as BitkitSidebar, BitkitSkeletonGroup, BitkitSortableColumnHeader, BitkitSpinner, BitkitSplitButton_default as BitkitSplitButton, BitkitStat, BitkitStepperDialog_default as BitkitStepperDialog, BitkitSteps_default as BitkitSteps, BitkitStepsCard_default as BitkitStepsCard, BitkitSwitch, BitkitTabs, BitkitTag, BitkitTagsInput, BitkitTextArea, BitkitTextInput, BitkitToggleButton, BitkitTooltip, BitkitTreeView, IconAbortCircle, IconAbortCircleFilled, IconAddons, IconAgent, IconAnchor, IconAndroid, IconApp, IconAppSettings, IconAppStore, IconAppStoreColor, IconApple, IconArchive, IconArchiveDelete, IconArchiveRestore, IconArrowBackAndDown, IconArrowBackAndUp, IconArrowDown, IconArrowForwardAndDown, IconArrowForwardAndUp, IconArrowLeft, IconArrowNortheast, IconArrowNorthwest, IconArrowRight, IconArrowUp, IconArrowsHorizontal, IconArrowsVertical, IconAutomation, IconAws, IconAwsColor, IconBadge3RdParty, IconBadgeBitrise, IconBadgeUpgrade, IconBadgeVersionOk, IconBazel, IconBell, IconBitbot, IconBitbotError, IconBitbucket, IconBitbucketColor, IconBitbucketNeutral, IconBitbucketWhite, IconBlockCircle, IconBook, IconBoxArrowDown, IconBoxDot, IconBoxLinesOverflow, IconBoxLinesWrap, IconBranch, IconBrowserstackColor, IconBug, IconBuild, IconBuildCache, IconBuildCacheFilled, IconBuildEnvSetup, IconBuildHub, IconBuildHubFilled, IconCalendar, IconChangePlan, IconChat, IconCheck, IconCheckCircle, IconCheckCircleFilled, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCi, IconCiFilled, IconCircle, IconCircleDashed, IconCircleHalfFilled, IconClaude, IconClaudeColor, IconClock, IconCode, IconCodePush, IconCodeSigning, IconCoffee, IconCommit, IconConfigure, IconConnectedAccounts, IconContainer, IconCopy, IconCordova, IconCpu, IconCreditcard, IconCredits, IconCross, IconCrossCircle, IconCrossCircleFilled, IconCrown, IconCycle, IconDashboard, IconDashboardFilled, IconDeployment, IconDetails, IconDoc, IconDollar, IconDot, IconDotnet, IconDotnetColor, IconDotnetText, IconDotnetTextColor, IconDoubleCircle, IconDownload, IconDragHandle, IconEc2Ami, IconEnterprise, IconErrorCircle, IconErrorCircleFilled, IconExpand, IconExtraBuildCapacity, IconEye, IconEyeSlash, IconFastlane, IconFileDoc, IconFilePdf, IconFilePlist, IconFileYml, IconFileZip, IconFilter, IconFlag, IconFlutter, IconFolder, IconFullscreen, IconFullscreenExit, IconGauge, IconGit, IconGithub, IconGitlab, IconGitlabColor, IconGitlabWhite, IconGlobe, IconGo, IconGoogleColor, IconGooglePlay, IconGooglePlayColor, IconGradle, IconGroup, IconHashtag, IconHeadset, IconHeart, IconHistory, IconHourglass, IconImage, IconInfoCircle, IconInfoCircleFilled, IconInsights, IconInsightsFilled, IconInstall, IconInteraction, IconInvoice, IconIonic, IconJapanese, IconJava, IconJavaColor, IconJavaDuke, IconJavaDukeColor, IconKey, IconKotlin, IconKotlinColor, IconKotlinWhite, IconLaptop, IconLaunchdarkly, IconLegacyApp, IconLightbulb, IconLink, IconLinux, IconLock, IconLockOpen, IconLogin, IconLogout, IconMacos, IconMagicWand, IconMagnifier, IconMail, IconMedal, IconMemory, IconMenuGrid, IconMenuHamburger, IconMessage, IconMessageAlert, IconMessageQuestion, IconMicrophone, IconMinus, IconMinusCircle, IconMinusCircleFilled, IconMobile, IconMobileLandscape, IconMonitorChart, IconMoreHorizontal, IconMoreVertical, IconNews, IconNextjs, IconNodejs, IconOpenInNew, IconOther, IconOutsideContributor, IconOverview, IconPause, IconPencil, IconPeople, IconPercent, IconPerson, IconPersonWithDesk, IconPlay, IconPlus, IconPlusCircle, IconPlusCircleFilled, IconPower, IconProject, IconProjectSettings, IconPull, IconPush, IconPuzzle, IconPython, IconPythonColor, IconQuestionCircle, IconQuestionCircleFilled, IconReact, IconRefresh, IconRegex, IconRelease, IconReleaseFilled, IconRemoteAccess, IconReplace, IconResponsiveness, IconReviewerApproved, IconReviewerAssigned, IconReviewerRejected, IconRuby, IconRubyColor, IconSave, IconSecurityShield, IconSettings, IconSettingsFilled, IconShuffle, IconSiren, IconSkip, IconSkipCircle, IconSkipCircleFilled, IconSlack, IconSlackColor, IconSparkle, IconSparkleFilled, IconSpinnerOnDisabled, IconSpinnerPurple, IconSpinnerPurpleDouble, IconSpinnerWhite, IconStability, IconStack, IconStar, IconStep, IconStop, IconStopwatch, IconTag, IconTasks, IconTeams, IconTeamsColor, IconTemplateCode, IconTerminal, IconTestQuarantine, IconThemeDarkToggle, IconThumbDown, IconThumbUp, IconTools, IconTrash, IconTrigger, IconUbuntu, IconUbuntuColor, IconUnity3D, IconUpload, IconValidateShield, IconVideo, IconWarning, IconWarningYellow, IconWebUi, IconWebhooks, IconWorkflow, IconWorkflowFlow, IconXTwitter, IconXamarin, IconXcode, ResponsiveProvider, bitkitIcon, bitkitTheme as bitriseTheme, createBitkitToast, createTreeCollection, rem, useResponsive, useStepperDialog };
|
|
372
|
+
export { BitkitAccordion, BitkitActionBar, BitkitActionMenu, BitkitAlert, BitkitAvatar, BitkitBadge, BitkitBreadcrumb, BitkitButton, BitkitCalendar, BitkitCheckbox, BitkitCheckboxGroup, BitkitCloseButton, BitkitCodeSnippet, BitkitCollapsible, BitkitColorButton, BitkitCombobox_default as BitkitCombobox, BitkitControlButton, BitkitDataWidget, BitkitDefinitionTooltip, BitkitDialog_default as BitkitDialog, BitkitDraggableCard, BitkitDrawer, BitkitEmptyState, BitkitExpandableCard, BitkitExpandableRow, BitkitField, BitkitFileInput, BitkitFormDialog_default as BitkitFormDialog, BitkitGroupHeading, BitkitIconButton, BitkitInlineLoading, BitkitLabel, BitkitLabelTooltip, BitkitLabeledData, BitkitLightbox, BitkitLink, BitkitLinkButton, BitkitList_default as BitkitList, BitkitMarkdown, BitkitMarkdownCard, BitkitMultiselect_default as BitkitMultiselect, BitkitMultiselectMenu, BitkitNativeSelect, BitkitNoteCard, BitkitNumberInput, BitkitOverflowContent, BitkitOverflowTooltip, BitkitPageFooter_default as BitkitPageFooter, BitkitPagination, BitkitPaginationLoadMore, BitkitPopover, BitkitPromoBanner, Provider as BitkitProvider, BitkitRadio, BitkitRadioGroup, BitkitRibbon, BitkitSearchInput, BitkitSectionHeading, BitkitSegmentedControl_default as BitkitSegmentedControl, BitkitSelect_default as BitkitSelect, BitkitSelectMenu, BitkitSelectMenuAction, BitkitSelectableTag_default as BitkitSelectableTag, BitkitSettingsCard_default as BitkitSettingsCard, BitkitSidebar_default as BitkitSidebar, BitkitSkeletonGroup, BitkitSortableColumnHeader, BitkitSpinner, BitkitSplitButton_default as BitkitSplitButton, BitkitStat, BitkitStepperDialog_default as BitkitStepperDialog, BitkitSteps_default as BitkitSteps, BitkitStepsCard_default as BitkitStepsCard, BitkitSwitch, BitkitTabs, BitkitTag, BitkitTagsInput, BitkitTextArea, BitkitTextInput, BitkitToggleButton, BitkitTooltip, BitkitTreeView, IconAbortCircle, IconAbortCircleFilled, IconAddons, IconAgent, IconAnchor, IconAndroid, IconApp, IconAppSettings, IconAppStore, IconAppStoreColor, IconApple, IconArchive, IconArchiveDelete, IconArchiveRestore, IconArrowBackAndDown, IconArrowBackAndUp, IconArrowDown, IconArrowForwardAndDown, IconArrowForwardAndUp, IconArrowLeft, IconArrowNortheast, IconArrowNorthwest, IconArrowRight, IconArrowUp, IconArrowsHorizontal, IconArrowsVertical, IconAutomation, IconAws, IconAwsColor, IconBadge3RdParty, IconBadgeBitrise, IconBadgeUpgrade, IconBadgeVersionOk, IconBazel, IconBell, IconBitbot, IconBitbotError, IconBitbucket, IconBitbucketColor, IconBitbucketNeutral, IconBitbucketWhite, IconBlockCircle, IconBook, IconBoxArrowDown, IconBoxDot, IconBoxLinesOverflow, IconBoxLinesWrap, IconBranch, IconBrowserstackColor, IconBug, IconBuild, IconBuildCache, IconBuildCacheFilled, IconBuildEnvSetup, IconBuildHub, IconBuildHubFilled, IconCalendar, IconChangePlan, IconChat, IconCheck, IconCheckCircle, IconCheckCircleFilled, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCi, IconCiFilled, IconCircle, IconCircleDashed, IconCircleHalfFilled, IconClaude, IconClaudeColor, IconClock, IconCode, IconCodePush, IconCodeSigning, IconCoffee, IconCommit, IconConfigure, IconConnectedAccounts, IconContainer, IconCopy, IconCordova, IconCpu, IconCreditcard, IconCredits, IconCross, IconCrossCircle, IconCrossCircleFilled, IconCrown, IconCycle, IconDashboard, IconDashboardFilled, IconDeployment, IconDetails, IconDoc, IconDollar, IconDot, IconDotnet, IconDotnetColor, IconDotnetText, IconDotnetTextColor, IconDoubleCircle, IconDownload, IconDragHandle, IconEc2Ami, IconEnterprise, IconErrorCircle, IconErrorCircleFilled, IconExpand, IconExtraBuildCapacity, IconEye, IconEyeSlash, IconFastlane, IconFileDoc, IconFilePdf, IconFilePlist, IconFileYml, IconFileZip, IconFilter, IconFlag, IconFlutter, IconFolder, IconFullscreen, IconFullscreenExit, IconGauge, IconGit, IconGithub, IconGitlab, IconGitlabColor, IconGitlabWhite, IconGlobe, IconGo, IconGoogleColor, IconGooglePlay, IconGooglePlayColor, IconGradle, IconGroup, IconHashtag, IconHeadset, IconHeart, IconHistory, IconHourglass, IconImage, IconInfoCircle, IconInfoCircleFilled, IconInsights, IconInsightsFilled, IconInstall, IconInteraction, IconInvoice, IconIonic, IconJapanese, IconJava, IconJavaColor, IconJavaDuke, IconJavaDukeColor, IconKey, IconKotlin, IconKotlinColor, IconKotlinWhite, IconLaptop, IconLaunchdarkly, IconLegacyApp, IconLightbulb, IconLink, IconLinux, IconLock, IconLockOpen, IconLogin, IconLogout, IconMacos, IconMagicWand, IconMagnifier, IconMail, IconMedal, IconMemory, IconMenuGrid, IconMenuHamburger, IconMessage, IconMessageAlert, IconMessageQuestion, IconMicrophone, IconMinus, IconMinusCircle, IconMinusCircleFilled, IconMobile, IconMobileLandscape, IconMonitorChart, IconMoreHorizontal, IconMoreVertical, IconNews, IconNextjs, IconNodejs, IconOpenInNew, IconOther, IconOutsideContributor, IconOverview, IconPause, IconPencil, IconPeople, IconPercent, IconPerson, IconPersonWithDesk, IconPlay, IconPlus, IconPlusCircle, IconPlusCircleFilled, IconPower, IconProject, IconProjectSettings, IconPull, IconPush, IconPuzzle, IconPython, IconPythonColor, IconQuestionCircle, IconQuestionCircleFilled, IconReact, IconRefresh, IconRegex, IconRelease, IconReleaseFilled, IconRemoteAccess, IconReplace, IconResponsiveness, IconReviewerApproved, IconReviewerAssigned, IconReviewerRejected, IconRuby, IconRubyColor, IconSave, IconSecurityShield, IconSettings, IconSettingsFilled, IconShuffle, IconSiren, IconSkip, IconSkipCircle, IconSkipCircleFilled, IconSlack, IconSlackColor, IconSparkle, IconSparkleFilled, IconSpinnerOnDisabled, IconSpinnerPurple, IconSpinnerPurpleDouble, IconSpinnerWhite, IconStability, IconStack, IconStar, IconStep, IconStop, IconStopwatch, IconTag, IconTasks, IconTeams, IconTeamsColor, IconTemplateCode, IconTerminal, IconTestQuarantine, IconThemeDarkToggle, IconThumbDown, IconThumbUp, IconTools, IconTrash, IconTrigger, IconUbuntu, IconUbuntuColor, IconUnity3D, IconUpload, IconValidateShield, IconVideo, IconWarning, IconWarningYellow, IconWebUi, IconWebhooks, IconWorkflow, IconWorkflowFlow, IconXTwitter, IconXamarin, IconXcode, ResponsiveProvider, bitkitIcon, bitkitTheme as bitriseTheme, createBitkitToast, createTreeCollection, rem, useResponsive, useStepperDialog };
|