braid-design-system 34.5.0 → 34.6.1
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/CHANGELOG.md +26 -0
- package/README.md +4 -2
- package/dist/_virtual/_rolldown/runtime.cjs +1 -1
- package/dist/index.cjs +2 -0
- package/dist/index.d.cts +2 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.mjs +2 -1
- package/dist/lib/components/Autosuggest/Autosuggest.cjs +2 -1
- package/dist/lib/components/Autosuggest/Autosuggest.mjs +2 -1
- package/dist/lib/components/BraidProvider/BraidProvider.cjs +3 -2
- package/dist/lib/components/BraidProvider/BraidProvider.mjs +3 -2
- package/dist/lib/components/Button/ButtonLoader.css.mjs +2 -1
- package/dist/lib/components/ButtonLink/ButtonLink.playroom.cjs +2 -1
- package/dist/lib/components/ButtonLink/ButtonLink.playroom.mjs +2 -1
- package/dist/lib/components/FieldMessage/FieldMessage.playroom.cjs +2 -1
- package/dist/lib/components/FieldMessage/FieldMessage.playroom.mjs +2 -1
- package/dist/lib/components/Link/Link.cjs +2 -1
- package/dist/lib/components/Link/Link.mjs +2 -1
- package/dist/lib/components/Loader/Loader.css.cjs +6 -5
- package/dist/lib/components/Loader/Loader.css.mjs +11 -9
- package/dist/lib/components/PageBlock/PageBlock.cjs +2 -1
- package/dist/lib/components/PageBlock/PageBlock.mjs +2 -1
- package/dist/lib/components/Stepper/Stepper.css.cjs +1 -1
- package/dist/lib/components/Stepper/Stepper.css.mjs +1 -1
- package/dist/lib/components/Table/TableBody.cjs +2 -1
- package/dist/lib/components/Table/TableBody.mjs +2 -1
- package/dist/lib/components/Table/TableCell.cjs +2 -1
- package/dist/lib/components/Table/TableCell.mjs +2 -1
- package/dist/lib/components/Table/TableFooter.cjs +2 -1
- package/dist/lib/components/Table/TableFooter.mjs +2 -1
- package/dist/lib/components/Table/TableHeader.cjs +2 -1
- package/dist/lib/components/Table/TableHeader.mjs +2 -1
- package/dist/lib/components/TextLink/TextLink.mjs +2 -1
- package/dist/lib/components/Textarea/formatRanges.cjs +3 -2
- package/dist/lib/components/Textarea/formatRanges.mjs +3 -2
- package/dist/lib/components/TooltipRenderer/TooltipRenderer.cjs +2 -1
- package/dist/lib/components/TooltipRenderer/TooltipRenderer.mjs +2 -1
- package/dist/lib/components/icons/IconCompanyVerified/IconCompanyVerified.cjs +14 -0
- package/dist/lib/components/icons/IconCompanyVerified/IconCompanyVerified.d.cts +7 -0
- package/dist/lib/components/icons/IconCompanyVerified/IconCompanyVerified.d.mts +7 -0
- package/dist/lib/components/icons/IconCompanyVerified/IconCompanyVerified.mjs +14 -0
- package/dist/lib/components/icons/IconCompanyVerified/IconCompanyVerifiedSvg.cjs +23 -0
- package/dist/lib/components/icons/IconCompanyVerified/IconCompanyVerifiedSvg.mjs +23 -0
- package/dist/lib/components/icons/IconPersonVerified/IconPersonVerifiedSvg.cjs +2 -3
- package/dist/lib/components/icons/IconPersonVerified/IconPersonVerifiedSvg.mjs +2 -3
- package/dist/lib/components/icons/index.d.cts +2 -1
- package/dist/lib/components/icons/index.d.mts +2 -1
- package/dist/lib/components/index.d.cts +2 -1
- package/dist/lib/components/index.d.mts +2 -1
- package/dist/lib/components/private/Modal/Modal.cjs +2 -1
- package/dist/lib/components/private/Modal/Modal.mjs +2 -1
- package/dist/lib/components/private/Popover/Popover.cjs +11 -9
- package/dist/lib/components/private/Popover/Popover.css.mjs +5 -4
- package/dist/lib/components/private/Popover/Popover.mjs +11 -9
- package/dist/lib/components/useToast/Toast.cjs +7 -6
- package/dist/lib/components/useToast/Toast.mjs +7 -6
- package/dist/lib/components/useToast/useFlipList.cjs +20 -22
- package/dist/lib/components/useToast/useFlipList.mjs +20 -22
- package/dist/lib/hooks/useIcon/icon.css.cjs +4 -7
- package/dist/lib/hooks/useIcon/icon.css.mjs +4 -7
- package/dist/lib/playroom/FrameComponent.cjs +2 -1
- package/dist/lib/playroom/FrameComponent.mjs +2 -1
- package/dist/lib/playroom/components.cjs +2 -0
- package/dist/lib/playroom/components.d.cts +2 -1
- package/dist/lib/playroom/components.d.mts +2 -1
- package/dist/lib/playroom/components.mjs +2 -1
- package/dist/playroom/components.cjs +2 -0
- package/dist/playroom/components.d.cts +2 -1
- package/dist/playroom/components.d.mts +2 -1
- package/dist/playroom/components.mjs +2 -1
- package/package.json +2 -2
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Box } from "../../Box/Box.mjs";
|
|
2
|
+
import { IconContainer } from "../IconContainer.mjs";
|
|
3
|
+
import { IconCompanyVerifiedSvg } from "./IconCompanyVerifiedSvg.mjs";
|
|
4
|
+
import { jsx } from "react/jsx-runtime";
|
|
5
|
+
//#region src/lib/components/icons/IconCompanyVerified/IconCompanyVerified.tsx
|
|
6
|
+
const IconCompanyVerified = (props) => /* @__PURE__ */ jsx(IconContainer, {
|
|
7
|
+
...props,
|
|
8
|
+
children: (svgProps) => /* @__PURE__ */ jsx(Box, {
|
|
9
|
+
component: IconCompanyVerifiedSvg,
|
|
10
|
+
...svgProps
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
//#endregion
|
|
14
|
+
export { IconCompanyVerified };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
let react_jsx_runtime = require("react/jsx-runtime");
|
|
2
|
+
//#region src/lib/components/icons/IconCompanyVerified/IconCompanyVerifiedSvg.tsx
|
|
3
|
+
const IconCompanyVerifiedSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
xmlSpace: "preserve",
|
|
7
|
+
focusable: "false",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
"aria-labelledby": titleId,
|
|
12
|
+
...props,
|
|
13
|
+
children: [
|
|
14
|
+
title ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("title", {
|
|
15
|
+
id: titleId,
|
|
16
|
+
children: title
|
|
17
|
+
}) : null,
|
|
18
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m20.4 4.1-8-3c-.2-.1-.5-.1-.7 0l-8 3c-.4.1-.7.5-.7.9v7c0 6.5 8.2 10.7 8.6 10.9.1.1.2.1.4.1s.3 0 .4-.1c.4-.2 8.6-4.4 8.6-10.9V5c0-.4-.3-.8-.6-.9zM19 12c0 4.5-5.4 7.9-7 8.9-1.6-.9-7-4.3-7-8.9V5.7l7-2.6 7 2.6V12z" }),
|
|
19
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.7 11.3c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l2 2c.2.2.5.3.7.3s.5-.1.7-.3l4-4c.4-.4.4-1 0-1.4s-1-.4-1.4 0L11 12.6l-1.3-1.3z" })
|
|
20
|
+
]
|
|
21
|
+
});
|
|
22
|
+
//#endregion
|
|
23
|
+
exports.IconCompanyVerifiedSvg = IconCompanyVerifiedSvg;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region src/lib/components/icons/IconCompanyVerified/IconCompanyVerifiedSvg.tsx
|
|
3
|
+
const IconCompanyVerifiedSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
xmlSpace: "preserve",
|
|
7
|
+
focusable: "false",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
"aria-labelledby": titleId,
|
|
12
|
+
...props,
|
|
13
|
+
children: [
|
|
14
|
+
title ? /* @__PURE__ */ jsx("title", {
|
|
15
|
+
id: titleId,
|
|
16
|
+
children: title
|
|
17
|
+
}) : null,
|
|
18
|
+
/* @__PURE__ */ jsx("path", { d: "m20.4 4.1-8-3c-.2-.1-.5-.1-.7 0l-8 3c-.4.1-.7.5-.7.9v7c0 6.5 8.2 10.7 8.6 10.9.1.1.2.1.4.1s.3 0 .4-.1c.4-.2 8.6-4.4 8.6-10.9V5c0-.4-.3-.8-.6-.9zM19 12c0 4.5-5.4 7.9-7 8.9-1.6-.9-7-4.3-7-8.9V5.7l7-2.6 7 2.6V12z" }),
|
|
19
|
+
/* @__PURE__ */ jsx("path", { d: "M9.7 11.3c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l2 2c.2.2.5.3.7.3s.5-.1.7-.3l4-4c.4-.4.4-1 0-1.4s-1-.4-1.4 0L11 12.6l-1.3-1.3z" })
|
|
20
|
+
]
|
|
21
|
+
});
|
|
22
|
+
//#endregion
|
|
23
|
+
export { IconCompanyVerifiedSvg };
|
|
@@ -3,7 +3,6 @@ let react_jsx_runtime = require("react/jsx-runtime");
|
|
|
3
3
|
const IconPersonVerifiedSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
4
4
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5
5
|
viewBox: "0 0 24 24",
|
|
6
|
-
xmlSpace: "preserve",
|
|
7
6
|
focusable: "false",
|
|
8
7
|
fill: "currentColor",
|
|
9
8
|
width: 16,
|
|
@@ -15,8 +14,8 @@ const IconPersonVerifiedSvg = ({ title, titleId, ...props }) => /* @__PURE__ */
|
|
|
15
14
|
id: titleId,
|
|
16
15
|
children: title
|
|
17
16
|
}) : null,
|
|
18
|
-
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "
|
|
19
|
-
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "
|
|
17
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 23a.998.998 0 0 1-.444-.106C11.208 22.72 3.063 18.542 3.063 12V5c0-.418.257-.791.644-.938l7.944-2.998a1 1 0 0 1 .699 0l7.944 3a.998.998 0 0 1 .643.937v7c0 6.543-8.146 10.72-8.493 10.894a.998.998 0 0 1-.444.106M5.048 5.693V12c0 4.536 5.353 7.946 6.951 8.861 1.598-.915 6.951-4.325 6.951-8.86V5.692L12 3.068z" }),
|
|
18
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 12c1.371 0 2.483-1.12 2.483-2.5S13.371 7 12 7 9.52 8.12 9.52 9.499s1.11 2.5 2.482 2.5M13.324 13h-2.648a2.657 2.657 0 0 0-2.648 2.666V16h7.945v-.333A2.657 2.657 0 0 0 13.324 13" })
|
|
20
19
|
]
|
|
21
20
|
});
|
|
22
21
|
//#endregion
|
|
@@ -3,7 +3,6 @@ import { jsx, jsxs } from "react/jsx-runtime";
|
|
|
3
3
|
const IconPersonVerifiedSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
4
4
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5
5
|
viewBox: "0 0 24 24",
|
|
6
|
-
xmlSpace: "preserve",
|
|
7
6
|
focusable: "false",
|
|
8
7
|
fill: "currentColor",
|
|
9
8
|
width: 16,
|
|
@@ -15,8 +14,8 @@ const IconPersonVerifiedSvg = ({ title, titleId, ...props }) => /* @__PURE__ */
|
|
|
15
14
|
id: titleId,
|
|
16
15
|
children: title
|
|
17
16
|
}) : null,
|
|
18
|
-
/* @__PURE__ */ jsx("path", { d: "
|
|
19
|
-
/* @__PURE__ */ jsx("path", { d: "
|
|
17
|
+
/* @__PURE__ */ jsx("path", { d: "M12 23a.998.998 0 0 1-.444-.106C11.208 22.72 3.063 18.542 3.063 12V5c0-.418.257-.791.644-.938l7.944-2.998a1 1 0 0 1 .699 0l7.944 3a.998.998 0 0 1 .643.937v7c0 6.543-8.146 10.72-8.493 10.894a.998.998 0 0 1-.444.106M5.048 5.693V12c0 4.536 5.353 7.946 6.951 8.861 1.598-.915 6.951-4.325 6.951-8.86V5.692L12 3.068z" }),
|
|
18
|
+
/* @__PURE__ */ jsx("path", { d: "M12 12c1.371 0 2.483-1.12 2.483-2.5S13.371 7 12 7 9.52 8.12 9.52 9.499s1.11 2.5 2.482 2.5M13.324 13h-2.648a2.657 2.657 0 0 0-2.648 2.666V16h7.945v-.333A2.657 2.657 0 0 0 13.324 13" })
|
|
20
19
|
]
|
|
21
20
|
});
|
|
22
21
|
//#endregion
|
|
@@ -13,6 +13,7 @@ import { IconChecklist } from "./IconChecklist/IconChecklist.cjs";
|
|
|
13
13
|
import { IconChevron } from "./IconChevron/IconChevron.cjs";
|
|
14
14
|
import { IconClear } from "./IconClear/IconClear.cjs";
|
|
15
15
|
import { IconCompany } from "./IconCompany/IconCompany.cjs";
|
|
16
|
+
import { IconCompanyVerified } from "./IconCompanyVerified/IconCompanyVerified.cjs";
|
|
16
17
|
import { IconCompose } from "./IconCompose/IconCompose.cjs";
|
|
17
18
|
import { IconCopy } from "./IconCopy/IconCopy.cjs";
|
|
18
19
|
import { IconCoverLetter } from "./IconCoverLetter/IconCoverLetter.cjs";
|
|
@@ -110,4 +111,4 @@ import { IconVisibility } from "./IconVisibility/IconVisibility.cjs";
|
|
|
110
111
|
import { IconWorkExperience } from "./IconWorkExperience/IconWorkExperience.cjs";
|
|
111
112
|
import { IconZoomIn } from "./IconZoomIn/IconZoomIn.cjs";
|
|
112
113
|
import { IconZoomOut } from "./IconZoomOut/IconZoomOut.cjs";
|
|
113
|
-
export { IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconImageBroken, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPhotoAdd, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut };
|
|
114
|
+
export { IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompanyVerified, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconImageBroken, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPhotoAdd, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut };
|
|
@@ -13,6 +13,7 @@ import { IconChecklist } from "./IconChecklist/IconChecklist.mjs";
|
|
|
13
13
|
import { IconChevron } from "./IconChevron/IconChevron.mjs";
|
|
14
14
|
import { IconClear } from "./IconClear/IconClear.mjs";
|
|
15
15
|
import { IconCompany } from "./IconCompany/IconCompany.mjs";
|
|
16
|
+
import { IconCompanyVerified } from "./IconCompanyVerified/IconCompanyVerified.mjs";
|
|
16
17
|
import { IconCompose } from "./IconCompose/IconCompose.mjs";
|
|
17
18
|
import { IconCopy } from "./IconCopy/IconCopy.mjs";
|
|
18
19
|
import { IconCoverLetter } from "./IconCoverLetter/IconCoverLetter.mjs";
|
|
@@ -110,4 +111,4 @@ import { IconVisibility } from "./IconVisibility/IconVisibility.mjs";
|
|
|
110
111
|
import { IconWorkExperience } from "./IconWorkExperience/IconWorkExperience.mjs";
|
|
111
112
|
import { IconZoomIn } from "./IconZoomIn/IconZoomIn.mjs";
|
|
112
113
|
import { IconZoomOut } from "./IconZoomOut/IconZoomOut.mjs";
|
|
113
|
-
export { IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconImageBroken, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPhotoAdd, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut };
|
|
114
|
+
export { IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompanyVerified, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconImageBroken, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPhotoAdd, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut };
|
|
@@ -97,6 +97,7 @@ import { IconChecklist } from "./icons/IconChecklist/IconChecklist.cjs";
|
|
|
97
97
|
import { IconChevron } from "./icons/IconChevron/IconChevron.cjs";
|
|
98
98
|
import { IconClear } from "./icons/IconClear/IconClear.cjs";
|
|
99
99
|
import { IconCompany } from "./icons/IconCompany/IconCompany.cjs";
|
|
100
|
+
import { IconCompanyVerified } from "./icons/IconCompanyVerified/IconCompanyVerified.cjs";
|
|
100
101
|
import { IconCompose } from "./icons/IconCompose/IconCompose.cjs";
|
|
101
102
|
import { IconCopy } from "./icons/IconCopy/IconCopy.cjs";
|
|
102
103
|
import { IconCoverLetter } from "./icons/IconCoverLetter/IconCoverLetter.cjs";
|
|
@@ -198,4 +199,4 @@ import "./icons/index.cjs";
|
|
|
198
199
|
//#region src/lib/components/index.d.ts
|
|
199
200
|
type LinkComponent = LinkComponent$1;
|
|
200
201
|
//#endregion
|
|
201
|
-
export { Accordion, AccordionItem, Actions, Alert, Autosuggest, Badge, Bleed, PublicBox as Box, BoxRenderer, BraidPortal, BraidProvider, Button, ButtonIcon, ButtonLink, Card, Checkbox, CheckboxStandalone, Column, Columns, ContentBlock, Dialog, Disclosure, Divider, Drawer, Dropdown, FieldLabel, FieldMessage, Heading, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconImageBroken, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPhotoAdd, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline, Link, LinkComponent, List, Loader, MenuItem, MenuItemCheckbox, MenuItemDivider, MenuItemLink, MenuRenderer, MonthPicker, Notice, OverflowMenu, Page, PageBlock, Pagination, PasswordField, RadioGroup, RadioItem, Rating, Secondary, Spread, Stack, Step, Stepper, Strong, Tab, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs, TabsProvider, Tag, Text, TextDropdown, TextField, TextLink, TextLinkButton, Textarea, ThemeNameConsumer, Tiles, ToastProvider, Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useColor, useResponsiveValue, useSpace, useThemeName, useToast };
|
|
202
|
+
export { Accordion, AccordionItem, Actions, Alert, Autosuggest, Badge, Bleed, PublicBox as Box, BoxRenderer, BraidPortal, BraidProvider, Button, ButtonIcon, ButtonLink, Card, Checkbox, CheckboxStandalone, Column, Columns, ContentBlock, Dialog, Disclosure, Divider, Drawer, Dropdown, FieldLabel, FieldMessage, Heading, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompanyVerified, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconImageBroken, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPhotoAdd, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline, Link, LinkComponent, List, Loader, MenuItem, MenuItemCheckbox, MenuItemDivider, MenuItemLink, MenuRenderer, MonthPicker, Notice, OverflowMenu, Page, PageBlock, Pagination, PasswordField, RadioGroup, RadioItem, Rating, Secondary, Spread, Stack, Step, Stepper, Strong, Tab, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs, TabsProvider, Tag, Text, TextDropdown, TextField, TextLink, TextLinkButton, Textarea, ThemeNameConsumer, Tiles, ToastProvider, Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useColor, useResponsiveValue, useSpace, useThemeName, useToast };
|
|
@@ -97,6 +97,7 @@ import { IconChecklist } from "./icons/IconChecklist/IconChecklist.mjs";
|
|
|
97
97
|
import { IconChevron } from "./icons/IconChevron/IconChevron.mjs";
|
|
98
98
|
import { IconClear } from "./icons/IconClear/IconClear.mjs";
|
|
99
99
|
import { IconCompany } from "./icons/IconCompany/IconCompany.mjs";
|
|
100
|
+
import { IconCompanyVerified } from "./icons/IconCompanyVerified/IconCompanyVerified.mjs";
|
|
100
101
|
import { IconCompose } from "./icons/IconCompose/IconCompose.mjs";
|
|
101
102
|
import { IconCopy } from "./icons/IconCopy/IconCopy.mjs";
|
|
102
103
|
import { IconCoverLetter } from "./icons/IconCoverLetter/IconCoverLetter.mjs";
|
|
@@ -198,4 +199,4 @@ import "./icons/index.mjs";
|
|
|
198
199
|
//#region src/lib/components/index.d.ts
|
|
199
200
|
type LinkComponent = LinkComponent$1;
|
|
200
201
|
//#endregion
|
|
201
|
-
export { Accordion, AccordionItem, Actions, Alert, Autosuggest, Badge, Bleed, PublicBox as Box, BoxRenderer, BraidPortal, BraidProvider, Button, ButtonIcon, ButtonLink, Card, Checkbox, CheckboxStandalone, Column, Columns, ContentBlock, Dialog, Disclosure, Divider, Drawer, Dropdown, FieldLabel, FieldMessage, Heading, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconImageBroken, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPhotoAdd, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline, Link, LinkComponent, List, Loader, MenuItem, MenuItemCheckbox, MenuItemDivider, MenuItemLink, MenuRenderer, MonthPicker, Notice, OverflowMenu, Page, PageBlock, Pagination, PasswordField, RadioGroup, RadioItem, Rating, Secondary, Spread, Stack, Step, Stepper, Strong, Tab, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs, TabsProvider, Tag, Text, TextDropdown, TextField, TextLink, TextLinkButton, Textarea, ThemeNameConsumer, Tiles, ToastProvider, Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useColor, useResponsiveValue, useSpace, useThemeName, useToast };
|
|
202
|
+
export { Accordion, AccordionItem, Actions, Alert, Autosuggest, Badge, Bleed, PublicBox as Box, BoxRenderer, BraidPortal, BraidProvider, Button, ButtonIcon, ButtonLink, Card, Checkbox, CheckboxStandalone, Column, Columns, ContentBlock, Dialog, Disclosure, Divider, Drawer, Dropdown, FieldLabel, FieldMessage, Heading, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompanyVerified, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconImageBroken, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPhotoAdd, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline, Link, LinkComponent, List, Loader, MenuItem, MenuItemCheckbox, MenuItemDivider, MenuItemLink, MenuRenderer, MonthPicker, Notice, OverflowMenu, Page, PageBlock, Pagination, PasswordField, RadioGroup, RadioItem, Rating, Secondary, Spread, Stack, Step, Stepper, Strong, Tab, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs, TabsProvider, Tag, Text, TextDropdown, TextField, TextLink, TextLinkButton, Textarea, ThemeNameConsumer, Tiles, ToastProvider, Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useColor, useResponsiveValue, useSpace, useThemeName, useToast };
|
|
@@ -10,6 +10,7 @@ let react_jsx_runtime = require("react/jsx-runtime");
|
|
|
10
10
|
let react_focus_lock = require("react-focus-lock");
|
|
11
11
|
react_focus_lock = require_runtime.__toESM(react_focus_lock, 1);
|
|
12
12
|
//#region src/lib/components/private/Modal/Modal.tsx
|
|
13
|
+
const FocusLock = react_focus_lock.default.default ?? react_focus_lock.default;
|
|
13
14
|
const AllowCloseContext = (0, react.createContext)(true);
|
|
14
15
|
const ModalPortal = ({ children }) => {
|
|
15
16
|
const [modalElement, setElement] = (0, react.useState)(null);
|
|
@@ -106,7 +107,7 @@ const Modal = ({ id, open, children, description, onClose, width, closeLabel, il
|
|
|
106
107
|
window.removeEventListener(event, handleEvent);
|
|
107
108
|
};
|
|
108
109
|
}, [trapActive]);
|
|
109
|
-
return state === OPENING || state === OPEN || state === CLOSING ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)(ModalPortal, { children: /* @__PURE__ */ (0, react_jsx_runtime.jsxs)(
|
|
110
|
+
return state === OPENING || state === OPEN || state === CLOSING ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)(ModalPortal, { children: /* @__PURE__ */ (0, react_jsx_runtime.jsxs)(FocusLock, {
|
|
110
111
|
className: require_Modal_css.resetStackingContext,
|
|
111
112
|
disabled: !trapActive,
|
|
112
113
|
autoFocus: false,
|
|
@@ -6,8 +6,9 @@ import { ModalContent } from "./ModalContent.mjs";
|
|
|
6
6
|
import { ariaHideOthers } from "./ariaHideOthers.mjs";
|
|
7
7
|
import { createContext, useContext, useEffect, useReducer, useRef, useState } from "react";
|
|
8
8
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
9
|
-
import
|
|
9
|
+
import FocusLockImport from "react-focus-lock";
|
|
10
10
|
//#region src/lib/components/private/Modal/Modal.tsx
|
|
11
|
+
const FocusLock = FocusLockImport.default ?? FocusLockImport;
|
|
11
12
|
const AllowCloseContext = createContext(true);
|
|
12
13
|
const ModalPortal = ({ children }) => {
|
|
13
14
|
const [modalElement, setElement] = useState(null);
|
|
@@ -55,16 +55,18 @@ const PopoverContent = (0, react.forwardRef)(({ id, role, align = "start", width
|
|
|
55
55
|
const spaceScale = require_useSpace.useSpace();
|
|
56
56
|
let offsetSpacePx = 0;
|
|
57
57
|
if (resolvedOffsetSpace !== "none") offsetSpacePx = spaceScale.space[resolvedOffsetSpace] * spaceScale.grid;
|
|
58
|
+
const floatingUiRequestedPosition = getFloatingUiPosition(placement, align);
|
|
59
|
+
const middleware = [
|
|
60
|
+
(0, _floating_ui_react_dom.offset)(offsetSpacePx),
|
|
61
|
+
!lockPlacement && (0, _floating_ui_react_dom.flip)(),
|
|
62
|
+
width === "full" ? (0, _floating_ui_react_dom.size)({ apply({ rects, elements }) {
|
|
63
|
+
Object.assign(elements.floating.style, { width: `${rects.reference.width}px` });
|
|
64
|
+
} }) : (0, _floating_ui_react_dom.shift)({ crossAxis: align === "center" }),
|
|
65
|
+
arrowRef && (0, _floating_ui_react_dom.arrow)({ element: arrowRef })
|
|
66
|
+
].filter(Boolean);
|
|
58
67
|
const { refs, floatingStyles, middlewareData, placement: floatingUiEvaluatedPosition, isPositioned } = (0, _floating_ui_react_dom.useFloating)({
|
|
59
|
-
placement:
|
|
60
|
-
middleware
|
|
61
|
-
(0, _floating_ui_react_dom.offset)(offsetSpacePx),
|
|
62
|
-
!lockPlacement && (0, _floating_ui_react_dom.flip)(),
|
|
63
|
-
width === "full" ? (0, _floating_ui_react_dom.size)({ apply({ rects, elements }) {
|
|
64
|
-
Object.assign(elements.floating.style, { width: `${rects.reference.width}px` });
|
|
65
|
-
} }) : (0, _floating_ui_react_dom.shift)({ crossAxis: align === "center" }),
|
|
66
|
-
arrowRef && (0, _floating_ui_react_dom.arrow)({ element: arrowRef })
|
|
67
|
-
].filter(Boolean),
|
|
68
|
+
placement: floatingUiRequestedPosition,
|
|
69
|
+
middleware,
|
|
68
70
|
whileElementsMounted: _floating_ui_react_dom.autoUpdate
|
|
69
71
|
});
|
|
70
72
|
(0, react.useEffect)(() => {
|
|
@@ -11,11 +11,12 @@ const backdrop = style({
|
|
|
11
11
|
const placementModifier = createVar("placementModifier");
|
|
12
12
|
const invertPlacement = style({ vars: { [placementModifier]: "-1" } }, "invertPlacement");
|
|
13
13
|
const transitionThreshold = "xxsmall";
|
|
14
|
+
const popupAnimation = keyframes({ from: {
|
|
15
|
+
opacity: 0,
|
|
16
|
+
transform: `translateY(${calc(vars.space[transitionThreshold]).multiply(fallbackVar(placementModifier, "1"))})`
|
|
17
|
+
} }, "popupAnimation");
|
|
14
18
|
const animation = style({
|
|
15
|
-
animationName:
|
|
16
|
-
opacity: 0,
|
|
17
|
-
transform: `translateY(${calc(vars.space[transitionThreshold]).multiply(fallbackVar(placementModifier, "1"))})`
|
|
18
|
-
} }, "popupAnimation"),
|
|
19
|
+
animationName: popupAnimation,
|
|
19
20
|
animationFillMode: "both",
|
|
20
21
|
animationTimingFunction: "ease",
|
|
21
22
|
animationDuration: "0.125s",
|
|
@@ -53,16 +53,18 @@ const PopoverContent = forwardRef(({ id, role, align = "start", width = "content
|
|
|
53
53
|
const spaceScale = useSpace();
|
|
54
54
|
let offsetSpacePx = 0;
|
|
55
55
|
if (resolvedOffsetSpace !== "none") offsetSpacePx = spaceScale.space[resolvedOffsetSpace] * spaceScale.grid;
|
|
56
|
+
const floatingUiRequestedPosition = getFloatingUiPosition(placement, align);
|
|
57
|
+
const middleware = [
|
|
58
|
+
offset(offsetSpacePx),
|
|
59
|
+
!lockPlacement && flip(),
|
|
60
|
+
width === "full" ? size({ apply({ rects, elements }) {
|
|
61
|
+
Object.assign(elements.floating.style, { width: `${rects.reference.width}px` });
|
|
62
|
+
} }) : shift({ crossAxis: align === "center" }),
|
|
63
|
+
arrowRef && arrow({ element: arrowRef })
|
|
64
|
+
].filter(Boolean);
|
|
56
65
|
const { refs, floatingStyles, middlewareData, placement: floatingUiEvaluatedPosition, isPositioned } = useFloating({
|
|
57
|
-
placement:
|
|
58
|
-
middleware
|
|
59
|
-
offset(offsetSpacePx),
|
|
60
|
-
!lockPlacement && flip(),
|
|
61
|
-
width === "full" ? size({ apply({ rects, elements }) {
|
|
62
|
-
Object.assign(elements.floating.style, { width: `${rects.reference.width}px` });
|
|
63
|
-
} }) : shift({ crossAxis: align === "center" }),
|
|
64
|
-
arrowRef && arrow({ element: arrowRef })
|
|
65
|
-
].filter(Boolean),
|
|
66
|
+
placement: floatingUiRequestedPosition,
|
|
67
|
+
middleware,
|
|
66
68
|
whileElementsMounted: autoUpdate
|
|
67
69
|
});
|
|
68
70
|
useEffect(() => {
|
|
@@ -25,20 +25,21 @@ const toneToIcon = {
|
|
|
25
25
|
critical: require_IconCritical.IconCritical,
|
|
26
26
|
positive: require_IconPositive.IconPositive
|
|
27
27
|
};
|
|
28
|
-
const toastDuration =
|
|
28
|
+
const toastDuration = 1e4;
|
|
29
29
|
const borderRadius = "large";
|
|
30
30
|
const Action = ({ label, onClick, removeToast }) => {
|
|
31
|
+
const handleClick = (0, react.useCallback)((event) => {
|
|
32
|
+
event.stopPropagation();
|
|
33
|
+
removeToast();
|
|
34
|
+
onClick();
|
|
35
|
+
}, [removeToast, onClick]);
|
|
31
36
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_Text.Text, {
|
|
32
37
|
baseline: false,
|
|
33
38
|
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_Box.Box, {
|
|
34
39
|
component: "span",
|
|
35
40
|
"aria-hidden": true,
|
|
36
41
|
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_TextLinkButton.TextLinkButton, {
|
|
37
|
-
onClick:
|
|
38
|
-
event.stopPropagation();
|
|
39
|
-
removeToast();
|
|
40
|
-
onClick();
|
|
41
|
-
}, [removeToast, onClick]),
|
|
42
|
+
onClick: handleClick,
|
|
42
43
|
hitArea: "large",
|
|
43
44
|
children: label
|
|
44
45
|
})
|
|
@@ -23,20 +23,21 @@ const toneToIcon = {
|
|
|
23
23
|
critical: IconCritical,
|
|
24
24
|
positive: IconPositive
|
|
25
25
|
};
|
|
26
|
-
const toastDuration =
|
|
26
|
+
const toastDuration = 1e4;
|
|
27
27
|
const borderRadius = "large";
|
|
28
28
|
const Action = ({ label, onClick, removeToast }) => {
|
|
29
|
+
const handleClick = useCallback((event) => {
|
|
30
|
+
event.stopPropagation();
|
|
31
|
+
removeToast();
|
|
32
|
+
onClick();
|
|
33
|
+
}, [removeToast, onClick]);
|
|
29
34
|
return /* @__PURE__ */ jsx(Text, {
|
|
30
35
|
baseline: false,
|
|
31
36
|
children: /* @__PURE__ */ jsx(Box, {
|
|
32
37
|
component: "span",
|
|
33
38
|
"aria-hidden": true,
|
|
34
39
|
children: /* @__PURE__ */ jsx(TextLinkButton, {
|
|
35
|
-
onClick:
|
|
36
|
-
event.stopPropagation();
|
|
37
|
-
removeToast();
|
|
38
|
-
onClick();
|
|
39
|
-
}, [removeToast, onClick]),
|
|
40
|
+
onClick: handleClick,
|
|
40
41
|
hitArea: "large",
|
|
41
42
|
children: label
|
|
42
43
|
})
|
|
@@ -139,28 +139,26 @@ const useFlipList = (expanded) => {
|
|
|
139
139
|
}]
|
|
140
140
|
});
|
|
141
141
|
break;
|
|
142
|
-
case "become-first":
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
});
|
|
163
|
-
break;
|
|
142
|
+
case "become-first": animations.push({
|
|
143
|
+
element,
|
|
144
|
+
transition: baseTransition,
|
|
145
|
+
transforms: [
|
|
146
|
+
{
|
|
147
|
+
property: "height",
|
|
148
|
+
from: require_px.px(currentHeight),
|
|
149
|
+
to: require_px.px(fullHeight)
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
property: "transform",
|
|
153
|
+
from: transform
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
property: "className",
|
|
157
|
+
from: expanded ? require_Toast_css.collapsed : void 0,
|
|
158
|
+
to: void 0
|
|
159
|
+
}
|
|
160
|
+
]
|
|
161
|
+
});
|
|
164
162
|
}
|
|
165
163
|
toastStates.set(toastKey, "entered");
|
|
166
164
|
});
|
|
@@ -139,28 +139,26 @@ const useFlipList = (expanded) => {
|
|
|
139
139
|
}]
|
|
140
140
|
});
|
|
141
141
|
break;
|
|
142
|
-
case "become-first":
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
});
|
|
163
|
-
break;
|
|
142
|
+
case "become-first": animations.push({
|
|
143
|
+
element,
|
|
144
|
+
transition: baseTransition,
|
|
145
|
+
transforms: [
|
|
146
|
+
{
|
|
147
|
+
property: "height",
|
|
148
|
+
from: px(currentHeight),
|
|
149
|
+
to: px(fullHeight)
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
property: "transform",
|
|
153
|
+
from: transform
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
property: "className",
|
|
157
|
+
from: expanded ? collapsed : void 0,
|
|
158
|
+
to: void 0
|
|
159
|
+
}
|
|
160
|
+
]
|
|
161
|
+
});
|
|
164
162
|
}
|
|
165
163
|
toastStates.set(toastKey, "entered");
|
|
166
164
|
});
|
|
@@ -15,18 +15,15 @@ const inlineCrop = (0, _vanilla_extract_css.style)({
|
|
|
15
15
|
marginBottom: `-${iconScaleIncrease}em`
|
|
16
16
|
}, "inlineCrop");
|
|
17
17
|
const inline = (0, _vanilla_extract_css.style)({ verticalAlign: "middle" }, "inline");
|
|
18
|
-
const uppercaseNudge = -.105;
|
|
19
|
-
const lowercaseNudge = -.065;
|
|
20
|
-
const verticalCorrection = .06;
|
|
21
18
|
const alignY = {
|
|
22
19
|
uppercase: (0, _vanilla_extract_css.styleVariants)({
|
|
23
|
-
none: { top:
|
|
24
|
-
up: { top:
|
|
20
|
+
none: { top: `-0.105em` },
|
|
21
|
+
up: { top: `-0.16499999999999998em` },
|
|
25
22
|
down: { top: `-0.045em` }
|
|
26
23
|
}, "alignY_uppercase"),
|
|
27
24
|
lowercase: (0, _vanilla_extract_css.styleVariants)({
|
|
28
|
-
none: { top:
|
|
29
|
-
up: { top:
|
|
25
|
+
none: { top: `-0.065em` },
|
|
26
|
+
up: { top: `-0.125em` },
|
|
30
27
|
down: { top: `-0.0050000000000000044em` }
|
|
31
28
|
}, "alignY_lowercase")
|
|
32
29
|
};
|
|
@@ -15,18 +15,15 @@ const inlineCrop = style({
|
|
|
15
15
|
marginBottom: `-${iconScaleIncrease}em`
|
|
16
16
|
}, "inlineCrop");
|
|
17
17
|
const inline = style({ verticalAlign: "middle" }, "inline");
|
|
18
|
-
const uppercaseNudge = -.105;
|
|
19
|
-
const lowercaseNudge = -.065;
|
|
20
|
-
const verticalCorrection = .06;
|
|
21
18
|
const alignY = {
|
|
22
19
|
uppercase: styleVariants({
|
|
23
|
-
none: { top:
|
|
24
|
-
up: { top:
|
|
20
|
+
none: { top: `-0.105em` },
|
|
21
|
+
up: { top: `-0.16499999999999998em` },
|
|
25
22
|
down: { top: `-0.045em` }
|
|
26
23
|
}, "alignY_uppercase"),
|
|
27
24
|
lowercase: styleVariants({
|
|
28
|
-
none: { top:
|
|
29
|
-
up: { top:
|
|
25
|
+
none: { top: `-0.065em` },
|
|
26
|
+
up: { top: `-0.125em` },
|
|
30
27
|
down: { top: `-0.0050000000000000044em` }
|
|
31
28
|
}, "alignY_lowercase")
|
|
32
29
|
};
|
|
@@ -17,7 +17,8 @@ const PlayroomLink = require_BraidProvider.makeLinkComponent(({ href, onClick, .
|
|
|
17
17
|
...restProps
|
|
18
18
|
}));
|
|
19
19
|
const ResponsiveReady = ({ children }) => {
|
|
20
|
-
|
|
20
|
+
const responsiveReady = require_useResponsiveValue.useResponsiveValue()({ mobile: true }) ?? false;
|
|
21
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(react_jsx_runtime.Fragment, { children: responsiveReady ? children : null });
|
|
21
22
|
};
|
|
22
23
|
var FrameComponent_default = ({ theme, children, frameSettings }) => {
|
|
23
24
|
const stackDebug = (0, react.useMemo)(() => frameSettings.stackDebug, [frameSettings.stackDebug]);
|
|
@@ -17,7 +17,8 @@ const PlayroomLink = makeLinkComponent(({ href, onClick, ...restProps }, ref) =>
|
|
|
17
17
|
...restProps
|
|
18
18
|
}));
|
|
19
19
|
const ResponsiveReady = ({ children }) => {
|
|
20
|
-
|
|
20
|
+
const responsiveReady = useResponsiveValue()({ mobile: true }) ?? false;
|
|
21
|
+
return /* @__PURE__ */ jsx(Fragment$1, { children: responsiveReady ? children : null });
|
|
21
22
|
};
|
|
22
23
|
var FrameComponent_default = ({ theme, children, frameSettings }) => {
|
|
23
24
|
const stackDebug = useMemo(() => frameSettings.stackDebug, [frameSettings.stackDebug]);
|
|
@@ -20,6 +20,7 @@ const require_IconChecklist = require("../components/icons/IconChecklist/IconChe
|
|
|
20
20
|
const require_IconChevron = require("../components/icons/IconChevron/IconChevron.cjs");
|
|
21
21
|
const require_IconClear = require("../components/icons/IconClear/IconClear.cjs");
|
|
22
22
|
const require_IconCompany = require("../components/icons/IconCompany/IconCompany.cjs");
|
|
23
|
+
const require_IconCompanyVerified = require("../components/icons/IconCompanyVerified/IconCompanyVerified.cjs");
|
|
23
24
|
const require_IconCompose = require("../components/icons/IconCompose/IconCompose.cjs");
|
|
24
25
|
const require_IconCopy = require("../components/icons/IconCopy/IconCopy.cjs");
|
|
25
26
|
const require_IconCoverLetter = require("../components/icons/IconCoverLetter/IconCoverLetter.cjs");
|
|
@@ -247,6 +248,7 @@ exports.IconChecklist = require_IconChecklist.IconChecklist;
|
|
|
247
248
|
exports.IconChevron = require_IconChevron.IconChevron;
|
|
248
249
|
exports.IconClear = require_IconClear.IconClear;
|
|
249
250
|
exports.IconCompany = require_IconCompany.IconCompany;
|
|
251
|
+
exports.IconCompanyVerified = require_IconCompanyVerified.IconCompanyVerified;
|
|
250
252
|
exports.IconCompose = require_IconCompose.IconCompose;
|
|
251
253
|
exports.IconCopy = require_IconCopy.IconCopy;
|
|
252
254
|
exports.IconCoverLetter = require_IconCoverLetter.IconCoverLetter;
|
|
@@ -50,6 +50,7 @@ import { IconChecklist } from "../components/icons/IconChecklist/IconChecklist.c
|
|
|
50
50
|
import { IconChevron } from "../components/icons/IconChevron/IconChevron.cjs";
|
|
51
51
|
import { IconClear } from "../components/icons/IconClear/IconClear.cjs";
|
|
52
52
|
import { IconCompany } from "../components/icons/IconCompany/IconCompany.cjs";
|
|
53
|
+
import { IconCompanyVerified } from "../components/icons/IconCompanyVerified/IconCompanyVerified.cjs";
|
|
53
54
|
import { IconCompose } from "../components/icons/IconCompose/IconCompose.cjs";
|
|
54
55
|
import { IconCopy } from "../components/icons/IconCopy/IconCopy.cjs";
|
|
55
56
|
import { IconCoverLetter } from "../components/icons/IconCoverLetter/IconCoverLetter.cjs";
|
|
@@ -203,4 +204,4 @@ declare const BraidPortal: undefined;
|
|
|
203
204
|
declare const BraidProvider: undefined;
|
|
204
205
|
declare const makeLinkComponent: undefined;
|
|
205
206
|
//#endregion
|
|
206
|
-
export { Accordion, AccordionItem, Actions, Alert, Autosuggest, Badge, Bleed, Box, BoxRenderer, BraidPortal, BraidProvider, Button, ButtonIcon, ButtonLink, Card, Checkbox, CheckboxStandalone, Column, Columns, ContentBlock, Dialog, Disclosure, Divider, Drawer, Dropdown, FieldLabel, FieldMessage, Heading, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconImageBroken, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPhotoAdd, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline, Link, LinkComponent, List, Loader, MenuItem, MenuItemCheckbox, MenuItemDivider, MenuItemLink, MenuRenderer, MonthPicker, Notice, OverflowMenu, Page, PageBlock, Pagination, PasswordField, Placeholder, PlaceholderFooter, PlaceholderHeader, RadioGroup, RadioItem, Rating, Secondary, Spread, Stack, Step, Stepper, Strong, Tab, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs, TabsProvider, Tag, Text, TextDropdown, TextField, TextLink, TextLinkButton, Textarea, ThemeNameConsumer, Tiles, ToastProvider, Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useColor, useResponsiveValue, useSpace, useThemeName, useToast };
|
|
207
|
+
export { Accordion, AccordionItem, Actions, Alert, Autosuggest, Badge, Bleed, Box, BoxRenderer, BraidPortal, BraidProvider, Button, ButtonIcon, ButtonLink, Card, Checkbox, CheckboxStandalone, Column, Columns, ContentBlock, Dialog, Disclosure, Divider, Drawer, Dropdown, FieldLabel, FieldMessage, Heading, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompanyVerified, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconImageBroken, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPhotoAdd, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline, Link, LinkComponent, List, Loader, MenuItem, MenuItemCheckbox, MenuItemDivider, MenuItemLink, MenuRenderer, MonthPicker, Notice, OverflowMenu, Page, PageBlock, Pagination, PasswordField, Placeholder, PlaceholderFooter, PlaceholderHeader, RadioGroup, RadioItem, Rating, Secondary, Spread, Stack, Step, Stepper, Strong, Tab, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs, TabsProvider, Tag, Text, TextDropdown, TextField, TextLink, TextLinkButton, Textarea, ThemeNameConsumer, Tiles, ToastProvider, Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useColor, useResponsiveValue, useSpace, useThemeName, useToast };
|
|
@@ -50,6 +50,7 @@ import { IconChecklist } from "../components/icons/IconChecklist/IconChecklist.m
|
|
|
50
50
|
import { IconChevron } from "../components/icons/IconChevron/IconChevron.mjs";
|
|
51
51
|
import { IconClear } from "../components/icons/IconClear/IconClear.mjs";
|
|
52
52
|
import { IconCompany } from "../components/icons/IconCompany/IconCompany.mjs";
|
|
53
|
+
import { IconCompanyVerified } from "../components/icons/IconCompanyVerified/IconCompanyVerified.mjs";
|
|
53
54
|
import { IconCompose } from "../components/icons/IconCompose/IconCompose.mjs";
|
|
54
55
|
import { IconCopy } from "../components/icons/IconCopy/IconCopy.mjs";
|
|
55
56
|
import { IconCoverLetter } from "../components/icons/IconCoverLetter/IconCoverLetter.mjs";
|
|
@@ -203,4 +204,4 @@ declare const BraidPortal: undefined;
|
|
|
203
204
|
declare const BraidProvider: undefined;
|
|
204
205
|
declare const makeLinkComponent: undefined;
|
|
205
206
|
//#endregion
|
|
206
|
-
export { Accordion, AccordionItem, Actions, Alert, Autosuggest, Badge, Bleed, Box, BoxRenderer, BraidPortal, BraidProvider, Button, ButtonIcon, ButtonLink, Card, Checkbox, CheckboxStandalone, Column, Columns, ContentBlock, Dialog, Disclosure, Divider, Drawer, Dropdown, FieldLabel, FieldMessage, Heading, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconImageBroken, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPhotoAdd, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline, Link, LinkComponent, List, Loader, MenuItem, MenuItemCheckbox, MenuItemDivider, MenuItemLink, MenuRenderer, MonthPicker, Notice, OverflowMenu, Page, PageBlock, Pagination, PasswordField, Placeholder, PlaceholderFooter, PlaceholderHeader, RadioGroup, RadioItem, Rating, Secondary, Spread, Stack, Step, Stepper, Strong, Tab, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs, TabsProvider, Tag, Text, TextDropdown, TextField, TextLink, TextLinkButton, Textarea, ThemeNameConsumer, Tiles, ToastProvider, Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useColor, useResponsiveValue, useSpace, useThemeName, useToast };
|
|
207
|
+
export { Accordion, AccordionItem, Actions, Alert, Autosuggest, Badge, Bleed, Box, BoxRenderer, BraidPortal, BraidProvider, Button, ButtonIcon, ButtonLink, Card, Checkbox, CheckboxStandalone, Column, Columns, ContentBlock, Dialog, Disclosure, Divider, Drawer, Dropdown, FieldLabel, FieldMessage, Heading, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompanyVerified, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconImageBroken, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPhotoAdd, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline, Link, LinkComponent, List, Loader, MenuItem, MenuItemCheckbox, MenuItemDivider, MenuItemLink, MenuRenderer, MonthPicker, Notice, OverflowMenu, Page, PageBlock, Pagination, PasswordField, Placeholder, PlaceholderFooter, PlaceholderHeader, RadioGroup, RadioItem, Rating, Secondary, Spread, Stack, Step, Stepper, Strong, Tab, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs, TabsProvider, Tag, Text, TextDropdown, TextField, TextLink, TextLinkButton, Textarea, ThemeNameConsumer, Tiles, ToastProvider, Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useColor, useResponsiveValue, useSpace, useThemeName, useToast };
|