@useloops/design-system 1.4.722 → 1.4.724
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/Platform/TestItem.d.ts +3 -1
- package/dist/Platform/TestItem.js +1 -1
- package/dist/Platform.d.ts +4 -2
- package/dist/Platform.js +1 -1
- package/dist/WebCore/FormBuilder.d.ts +2 -2
- package/dist/esm/Platform/TestItem.js +1 -1
- package/dist/esm/Platform.js +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/systems/BrandCore/semanticColor.js +1 -1
- package/dist/esm/systems/Platform/LinkExpired/LinkExpired.js +1 -1
- package/dist/esm/systems/Platform/MFACodeVerify/MFACodeVerify.js +1 -1
- package/dist/esm/systems/Platform/TestItem/TestItem.js +1 -1
- package/dist/esm/systems/Platform/TestItem/_partials/AnimatedDuration.js +1 -0
- package/dist/esm/systems/Platform/TestItem/_partials/FooterStat.js +1 -0
- package/dist/esm/systems/Platform/TestItem/_partials/Root.js +1 -0
- package/dist/esm/systems/Platform/TestItem/_partials/StatCard.js +1 -0
- package/dist/esm/systems/Platform/TestItem/_partials/TagList.js +1 -0
- package/dist/esm/systems/Platform/TestItem/_partials/TestItemSkeleton.js +1 -0
- package/dist/esm/systems/Platform/TestItem/helpers.js +1 -0
- package/dist/esm/systems/WebCore/FormBuilder/ArrayFieldRows.js +1 -0
- package/dist/esm/systems/WebCore/FormBuilder/Field.js +1 -1
- package/dist/esm/systems/WebCore/FormBuilder/FieldCollapse.js +1 -1
- package/dist/esm/systems/WebCore/FormBuilder/FieldMessage.js +1 -1
- package/dist/esm/systems/WebCore/FormBuilder/FormBuilder.js +1 -1
- package/dist/esm/systems/WebCore/FormBuilder/fieldRegistry.js +1 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.js +1 -1
- package/dist/systems/BrandCore/semanticColor.js +1 -1
- package/dist/systems/BrandCore/types.d.ts +2 -0
- package/dist/systems/Platform/LinkExpired/LinkExpired.js +1 -1
- package/dist/systems/Platform/MFACodeVerify/MFACodeVerify.js +1 -1
- package/dist/systems/Platform/TestItem/TestItem.d.ts +3 -47
- package/dist/systems/Platform/TestItem/TestItem.js +1 -1
- package/dist/systems/Platform/TestItem/_partials/AnimatedDuration.js +1 -0
- package/dist/systems/Platform/TestItem/_partials/FooterStat.js +1 -0
- package/dist/systems/Platform/TestItem/_partials/Root.js +1 -0
- package/dist/systems/Platform/TestItem/_partials/StatCard.js +1 -0
- package/dist/systems/Platform/TestItem/_partials/TagList.js +1 -0
- package/dist/systems/Platform/TestItem/_partials/TestItemSkeleton.d.ts +6 -0
- package/dist/systems/Platform/TestItem/_partials/TestItemSkeleton.js +1 -0
- package/dist/systems/Platform/TestItem/helpers.js +1 -0
- package/dist/systems/Platform/TestItem/types.d.ts +32 -0
- package/dist/systems/WebCore/FormBuilder/ArrayFieldRows.js +1 -0
- package/dist/systems/WebCore/FormBuilder/Field.js +1 -1
- package/dist/systems/WebCore/FormBuilder/FieldCollapse.js +1 -1
- package/dist/systems/WebCore/FormBuilder/FieldMessage.js +1 -1
- package/dist/systems/WebCore/FormBuilder/FormBuilder.js +1 -1
- package/dist/systems/WebCore/FormBuilder/fieldRegistry.d.ts +83 -6
- package/dist/systems/WebCore/FormBuilder/fieldRegistry.js +1 -1
- package/dist/systems/WebCore/FormBuilder/types.d.ts +4 -24
- package/dist/systems/WebCore/FormGenerator/types.d.ts +1 -1
- package/dist/theme/types.d.ts +1 -0
- package/package.json +2 -2
|
@@ -1 +1,3 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { default as TestItemSkeleton } from '../systems/Platform/TestItem/_partials/TestItemSkeleton.js';
|
|
2
|
+
export { default } from '../systems/Platform/TestItem/TestItem.js';
|
|
3
|
+
export { TestItemCounts, TestItemProgress, TestItemProps, TestItemTag } from '../systems/Platform/TestItem/types.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var e=require("../systems/Platform/TestItem/TestItem.js");
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("../systems/Platform/TestItem/_partials/TestItemSkeleton.js"),t=require("../systems/Platform/TestItem/TestItem.js");exports.TestItemSkeleton=e,exports.default=t;
|
package/dist/Platform.d.ts
CHANGED
|
@@ -48,7 +48,9 @@ export { default as SentimentArrow, SentimentArrowProps } from './systems/Platfo
|
|
|
48
48
|
export { SliderGraphProps } from './systems/Platform/SliderGraph/types.js';
|
|
49
49
|
export { default as SliderGraph } from './systems/Platform/SliderGraph/SliderGraph.js';
|
|
50
50
|
export { default as Tab, TabProps } from './systems/Platform/Tab/Tab.js';
|
|
51
|
-
export { default as
|
|
51
|
+
export { default as TestItemSkeleton } from './systems/Platform/TestItem/_partials/TestItemSkeleton.js';
|
|
52
|
+
export { default as TestItem } from './systems/Platform/TestItem/TestItem.js';
|
|
53
|
+
export { TestItemCounts, TestItemProgress, TestItemProps, TestItemTag } from './systems/Platform/TestItem/types.js';
|
|
52
54
|
export { default as TestKPICard, TestKPICardProps } from './systems/Platform/TestKPICard/TestKPICard.js';
|
|
53
55
|
export { default as TimeToFindGraph } from './systems/Platform/TimeToFindGraph/TimeToFindGraph.js';
|
|
54
56
|
export { TimeToFindGraphProps } from './systems/Platform/TimeToFindGraph/types.js';
|
|
@@ -58,7 +60,7 @@ export { default as VideoControls, VideoControlsProps } from './systems/Platform
|
|
|
58
60
|
export { MarkerComponentProps } from './systems/Platform/VideoControls/components/Timeline/components/Markers/Markers.js';
|
|
59
61
|
export { default as VideoControls2, VideoControls2Props } from './systems/Platform/VideoControls2/VideoControls2.js';
|
|
60
62
|
export { default as VideoOverlayControl, VideoOverlayControlProps } from './systems/Platform/VideoControls2/components/VideoOverlayControl/VideoOverlayControl.js';
|
|
63
|
+
export { default as CommentFeedbackCard, CommentFeedbackCardProps } from './systems/Platform/CommentFeedbackCard/CommentFeedbackCard.js';
|
|
61
64
|
export { default as GraphPopoverDataLayout, GraphPopoverDataLayoutProps } from './systems/Platform/GraphPopoverDataLayout/GraphPopoverDataLayout.js';
|
|
62
65
|
export { default as LoopVideoNudge, LoopVideoNudgeProps } from './systems/Platform/LoopVideoNudge/LoopVideoNudge.js';
|
|
63
66
|
export { default as PinchIndicator, PinchIndicatorProps } from './systems/Platform/PinchIndicator/PinchIndicator.js';
|
|
64
|
-
export { default as CommentFeedbackCard, CommentFeedbackCardProps } from './systems/Platform/CommentFeedbackCard/CommentFeedbackCard.js';
|
package/dist/Platform.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var e=require("./systems/Platform/AiContentContainer/AiContentContainer.js"),r=require("./systems/Platform/AIInsight/AIInsight.js"),s=require("./systems/Platform/AISummary/AISummary.js"),t=require("./systems/Platform/AIWrittenByLockUp/AiWrittenByLockUp.js"),o=require("./systems/Platform/ArrowTextIndicator/ArrowTextIndicator.js"),i=require("./systems/Platform/AssetItem/AssetItem.js"),a=require("./systems/Platform/AuthContainerSurface/AuthContainerSurface.js"),m=require("./systems/Platform/ClipboardCopyingOverlay/ClipboardCopyingOverlay.js"),u=require("./systems/Platform/CommentCard/CommentCard.js"),l=require("./systems/Platform/DataPointInfo/DataPointInfo.js"),n=require("./systems/Platform/DemographicSelectionSection/DemographicSelectionSection.js"),p=require("./systems/Platform/EmojiListItem/EmojiListItem.js"),y=require("./systems/Platform/EmojiQuestionEditorOption/EmojiQuestionEditorOption.js"),d=require("./systems/Platform/EmptyStateCard/EmptyStateCard.js"),C=require("./systems/Platform/ExtendedTestStatus/ExtendedTestStatus.js"),j=require("./systems/Platform/FilterCount/FilterCount.js"),q=require("./systems/Platform/FilteredItemsCard/FilteredItemsCard.js"),c=require("./systems/Platform/FilterGroupAccordion/FilterGroupAccordion.js"),b=require("./systems/Platform/FilterPyramidGraph/FilterPyramidGraph.js"),P=require("./systems/Platform/FilterRow/FilterRow.js"),I=require("./systems/Platform/GraphBar/GraphBar.js"),x=require("./systems/Platform/Header/Header.js"),S=require("./systems/Platform/KpiDataPopover/KpiDataPopover.js"),f=require("./systems/Platform/KpiIndicator/KpiIndicator.js"),W=require("./systems/Platform/KpiIndicator/utils.js"),h=require("./systems/Platform/LikertGraph/LikertGraph.js"),B=require("./systems/Platform/LoopItem/LoopItem.js"),A=require("./systems/Platform/LoopItemEmpty/LoopItemEmpty.js"),L=require("./systems/Platform/MiniResultCard/graphVariants.js"),G=require("./systems/Platform/MiniResultCard/MiniResultCard.js"),g=require("./systems/Platform/Navigation/Navigation.js"),T=require("./systems/Platform/OnboardingCard/OnboardingCard.js"),F=require("./systems/Platform/PaginationControl/PaginationControl.js"),k=require("./systems/Platform/ProjectItem/ProjectItem.js"),v=require("./systems/Platform/ProjectItem/ProjectItemEmpty.js");require("react/jsx-runtime"),require("@mui/material"),require("./utils/formValidation/misc.js"),require("./systems/BrandCore/Icon/Icon.js"),require("./systems/BrandCore/primitiveVariables.js"),require("./systems/WebCore/utils/typography.util.js"),require("./systems/BrandCore/textures.js"),require("./systems/WebCore/AnnualController/AnnualController.js"),require("./systems/WebCore/SelectItem/SelectItem.js"),require("./systems/WebCore/Accordion/Accordion.js"),require("./systems/WebCore/Animations/FadeIn.js"),require("./systems/WebCore/Text/Text.js"),require("@mui/icons-material"),require("react"),require("./systems/WebCore/AutocompleteBaseField/_partials/AutocompleteListbox.js"),require("./systems/WebCore/AutocompleteBaseField/_partials/StyledPopper.js"),require("./systems/WebCore/AutocompleteBaseField/_partials/StyledAutocompleteField.js"),require("./systems/WebCore/AutocompleteBaseField/_partials/AutocompleteChip.js"),require("./systems/WebCore/AutocompleteBaseField/_partials/StyledAutocompleteInput.js"),require("merge-sx"),require("./systems/WebCore/Badge/Badge.js"),require("./systems/WebCore/Breadcrumb/Breadcrumb.js"),require("./systems/WebCore/Button/Button.js"),require("./systems/WebCore/ButtonBase/ButtonBase.js"),require("./systems/WebCore/ButtonTabGroup/_partials/ActiveIndicator.js"),require("./systems/WebCore/ButtonTabGroup/_partials/ButtonTabsWrapper.js"),require("./systems/WebCore/ButtonTabGroup/_partials/TabButton.js"),require("./systems/WebCore/Checkbox/StyledCheckbox.js"),require("./systems/WebCore/InputFieldBase/InputFieldBase.js"),require("./systems/WebCore/CreatableAutocomplete/CreatableAutocomplete.js"),require("./systems/WebCore/InputLabelBase/StyledInputLabelBase.js"),require("./systems/WebCore/Differential/DifferentialContainer.js"),require("./systems/WebCore/Differential/DifferentialRadio.js"),require("./systems/WebCore/DropdownMenu/StyledMenu.js"),require("./systems/WebCore/ExpandableTypographyClamp/ExpandableTypographyClamp.js"),require("./systems/WebCore/FormBuilder/FormBuilder.js"),require("./systems/WebCore/FormGenerator/FormGenerator.js"),require("./systems/WebCore/GridOverlay/GridOverlay.js"),require("html-react-parser"),require("./systems/WebCore/IconButton/IconButton.js"),require("./systems/WebCore/IconButtonBase/IconButtonBase.js"),require("./systems/WebCore/IconButtonGroup/IconButtonGroup.js"),require("./systems/WebCore/Image/Image.js"),require("./systems/WebCore/KbdGroup/Kbd.js"),require("./systems/WebCore/KbdGroup/KbdGroup.js"),require("./systems/WebCore/KeyValueLabel/KeyValueLabel.js"),require("./systems/WebCore/Label/Label.js"),require("./systems/WebCore/Likert/LikertContainer.js"),require("./systems/WebCore/Likert/LikertLabel.js"),require("./systems/WebCore/Likert/LikertRadio.js"),require("./systems/WebCore/Link/StyledLink.js"),require("@lottiefiles/dotlottie-react"),require("./systems/WebCore/LoopsAiButton/LoopsAiButton.js"),require("markdown-to-jsx"),require("material-ui-popup-state/hooks"),require("./systems/WebCore/Surface/Surface.js"),require("./systems/WebCore/Menu/MenuItem.js"),require("./systems/WebCore/ModalLayout/_partials/ModalActionsWrapper.js"),require("./systems/WebCore/ModalLayout/_partials/ModalContentWrapper.js"),require("./systems/WebCore/NavigationButton/NavigationButton.js"),require("./systems/WebCore/Nudge/NudgeButton.js"),require("./systems/WebCore/NumberField/NumberField.js"),require("./systems/BrandCore/colorRamps.js"),require("./systems/BrandCore/semanticColor.js"),require("./systems/BrandCore/types.js"),require("./systems/BrandCore/typography.js"),require("./systems/WebCore/Progress/Progress.js"),require("./systems/WebCore/Pill/StyledPill.js"),require("./systems/WebCore/ProgressBar/ProgressBar.js"),require("./systems/WebCore/Radio/StyledRadio.js"),require("./systems/WebCore/SortableList/components/SortableItem/SortableItem.js"),require("./systems/WebCore/Select/StyledSelect.js"),require("./systems/WebCore/RankItem/_partials/LayoutComponents/LayoutComponents.js"),require("./systems/WebCore/RankItem/_partials/RankItemLabel/RankItemLabel.js"),require("./systems/WebCore/SortableList/SortableList.js"),require("./systems/WebCore/SortableList/components/SortableOverlay/SortableOverlay.js"),require("@tiptap/extension-placeholder"),require("@tiptap/starter-kit"),require("mui-tiptap"),require("./systems/WebCore/RichTextField/StyledRichTextEditor.js"),require("./systems/WebCore/Skeleton/Skeleton.js"),require("./systems/WebCore/Slider/StyledSlider.js"),require("./systems/WebCore/StarRating/StarRating.js"),require("./systems/WebCore/Switch/StyledSwitch.js"),require("./systems/WebCore/Textarea/Textarea.js"),require("./systems/WebCore/TrialCard/TrialCardContainers.js"),require("./systems/WebCore/TrialCard/TrialPill.js"),require("./systems/WebCore/UserMenu/UserMenuButton.js"),require("./systems/WebCore/VideoModal/VideoModal.js"),require("./systems/WebCore/TintedSurface/TintedSurface.js"),require("./systems/Platform/ProjectItem/_partials/ProjectItemBadge.js"),require("./systems/Platform/ProjectItem/_partials/styledPartials.js"),require("dayjs");var M=require("./systems/Platform/QuestionBar/QuestionBar.js"),E=require("./systems/Platform/QuestionBlock/QuestionBlock.js"),R=require("./systems/Platform/QuestionSelector/QuestionSelector.js"),K=require("./systems/Platform/ScrollIndicator/ScrollIndicator.js"),V=require("./systems/Platform/SearchInput/SearchInput.js"),O=require("./systems/Platform/SectionHeader/SectionHeader.js"),D=require("./systems/Platform/SentimentArrow/SentimentArrow.js");require("./systems/Platform/SliderGraph/_partials/SliderGraphYAxis/SliderGraphYAxis.js");var _=require("./systems/Platform/SliderGraph/SliderGraph.js"),Q=require("./systems/Platform/GraphPopoverDataLayout/GraphPopoverDataLayout.js");require("./systems/Platform/SliderGraph/_partials/StyledComponents.js");var w=require("./systems/Platform/Tab/Tab.js"),N=require("./systems/Platform/TestItem/TestItem.js"),H=require("./systems/Platform/TestKPICard/TestKPICard.js"),U=require("./systems/Platform/TimeToFindGraph/TimeToFindGraph.js"),Y=require("./systems/Platform/TimeToFindResult/TimeToFindResult.js"),z=require("./systems/Platform/VideoControls/VideoControls.js"),J=require("./systems/Platform/VideoControls2/VideoControls2.js"),X=require("./systems/Platform/VideoControls2/components/VideoOverlayControl/VideoOverlayControl.js"),Z=require("./systems/Platform/LoopVideoNudge/LoopVideoNudge.js"),$=require("./systems/Platform/PinchIndicator/PinchIndicator.js"),ee=require("./systems/Platform/CommentFeedbackCard/CommentFeedbackCard.js");exports.AiContentContainer=e.default,exports.AIInsight=r,exports.AISummary=s,exports.AIWrittenByLockUp=t,exports.ArrowTextIndicator=o,exports.AssetItem=i,exports.AuthContainerSurface=a,exports.ClipboardCopyingOverlay=m,exports.CommentCard=u.default,exports.getAuthorAvatarColor=u.getAuthorAvatarColor,exports.DataPointInfo=l,exports.DemographicSelectionSection=n,exports.EmojiListItem=p,exports.EmojiQuestionEditorOption=y,exports.EmptyStateCard=d,exports.ExtendedTestStatus=C,exports.FilterCount=j,exports.FilteredItemsCard=q,exports.FilterGroupAccordion=c,exports.FilterPyramidGraph=b,exports.FilterRow=P,exports.GraphBar=I,exports.Header=x,exports.KpiDataPopover=S,exports.KpiIndicator=f,exports.getKpiIndicatorColor=W.getKpiIndicatorColor,exports.mapKpiColorSchemeByInteger=W.mapKpiColorSchemeByInteger,exports.LikertGraph=h,exports.LoopItem=B,exports.LoopItemEmpty=A,exports.MiniEmojiGraph=L.MiniEmojiGraph,exports.MiniLikertGraph=L.MiniLikertGraph,exports.MiniOpenQuestionGraph=L.MiniOpenQuestionGraph,exports.MiniPunchGraph=L.MiniPunchGraph,exports.MiniRankGraph=L.MiniRankGraph,exports.MiniSliderGraph=L.MiniSliderGraph,exports.MiniResultCard=G,exports.Navigation=g,exports.OnboardingCard=T,exports.PaginationControl=F,exports.ProjectItem=k,exports.ProjectItemEmpty=v,exports.QuestionLabel=M,exports.QuestionBlock=E,exports.QuestionSelector=R,exports.ScrollIndicator=K,exports.SearchInput=V,exports.SectionHeader=O,exports.SentimentArrow=D,exports.SliderGraph=_,exports.GraphPopoverDataLayout=Q,exports.Tab=w,exports.TestItem=N,exports.TestKPICard=H,exports.TimeToFindGraph=U,exports.TimeToFindResult=Y,exports.VideoControls=z,exports.VideoControls2=J,exports.VideoOverlayControl=X,exports.LoopVideoNudge=Z,exports.PinchIndicator=$,exports.CommentFeedbackCard=ee;
|
|
1
|
+
"use strict";var e=require("./systems/Platform/AiContentContainer/AiContentContainer.js"),r=require("./systems/Platform/AIInsight/AIInsight.js"),s=require("./systems/Platform/AISummary/AISummary.js"),t=require("./systems/Platform/AIWrittenByLockUp/AiWrittenByLockUp.js"),o=require("./systems/Platform/ArrowTextIndicator/ArrowTextIndicator.js"),i=require("./systems/Platform/AssetItem/AssetItem.js"),a=require("./systems/Platform/AuthContainerSurface/AuthContainerSurface.js"),m=require("./systems/Platform/ClipboardCopyingOverlay/ClipboardCopyingOverlay.js"),u=require("./systems/Platform/CommentCard/CommentCard.js"),l=require("./systems/Platform/DataPointInfo/DataPointInfo.js"),n=require("./systems/Platform/DemographicSelectionSection/DemographicSelectionSection.js"),p=require("./systems/Platform/EmojiListItem/EmojiListItem.js"),y=require("./systems/Platform/EmojiQuestionEditorOption/EmojiQuestionEditorOption.js"),d=require("./systems/Platform/EmptyStateCard/EmptyStateCard.js"),C=require("./systems/Platform/ExtendedTestStatus/ExtendedTestStatus.js"),j=require("./systems/Platform/FilterCount/FilterCount.js"),q=require("./systems/Platform/FilteredItemsCard/FilteredItemsCard.js"),c=require("./systems/Platform/FilterGroupAccordion/FilterGroupAccordion.js"),b=require("./systems/Platform/FilterPyramidGraph/FilterPyramidGraph.js"),P=require("./systems/Platform/FilterRow/FilterRow.js"),I=require("./systems/Platform/GraphBar/GraphBar.js"),x=require("./systems/Platform/Header/Header.js"),S=require("./systems/Platform/KpiDataPopover/KpiDataPopover.js"),f=require("./systems/Platform/KpiIndicator/KpiIndicator.js"),W=require("./systems/Platform/KpiIndicator/utils.js"),h=require("./systems/Platform/LikertGraph/LikertGraph.js"),B=require("./systems/Platform/LoopItem/LoopItem.js"),A=require("./systems/Platform/LoopItemEmpty/LoopItemEmpty.js"),L=require("./systems/Platform/MiniResultCard/graphVariants.js"),G=require("./systems/Platform/MiniResultCard/MiniResultCard.js"),T=require("./systems/Platform/Navigation/Navigation.js"),g=require("./systems/Platform/OnboardingCard/OnboardingCard.js"),F=require("./systems/Platform/PaginationControl/PaginationControl.js"),k=require("./systems/Platform/ProjectItem/ProjectItem.js"),v=require("./systems/Platform/ProjectItem/ProjectItemEmpty.js");require("react/jsx-runtime"),require("@mui/material"),require("./utils/formValidation/misc.js"),require("./systems/BrandCore/Icon/Icon.js"),require("./systems/BrandCore/primitiveVariables.js"),require("./systems/WebCore/utils/typography.util.js"),require("./systems/BrandCore/textures.js"),require("./systems/WebCore/AnnualController/AnnualController.js"),require("./systems/WebCore/SelectItem/SelectItem.js"),require("./systems/WebCore/Accordion/Accordion.js"),require("./systems/WebCore/Animations/FadeIn.js"),require("./systems/WebCore/Text/Text.js"),require("@mui/icons-material"),require("react"),require("./systems/WebCore/AutocompleteBaseField/_partials/AutocompleteListbox.js"),require("./systems/WebCore/AutocompleteBaseField/_partials/StyledPopper.js"),require("./systems/WebCore/AutocompleteBaseField/_partials/StyledAutocompleteField.js"),require("./systems/WebCore/AutocompleteBaseField/_partials/AutocompleteChip.js"),require("./systems/WebCore/AutocompleteBaseField/_partials/StyledAutocompleteInput.js"),require("merge-sx"),require("./systems/WebCore/Badge/Badge.js"),require("./systems/WebCore/Breadcrumb/Breadcrumb.js"),require("./systems/WebCore/Button/Button.js"),require("./systems/WebCore/ButtonBase/ButtonBase.js"),require("./systems/WebCore/ButtonTabGroup/_partials/ActiveIndicator.js"),require("./systems/WebCore/ButtonTabGroup/_partials/ButtonTabsWrapper.js"),require("./systems/WebCore/ButtonTabGroup/_partials/TabButton.js"),require("./systems/WebCore/Checkbox/StyledCheckbox.js"),require("./systems/WebCore/InputFieldBase/InputFieldBase.js"),require("./systems/WebCore/CreatableAutocomplete/CreatableAutocomplete.js"),require("./systems/WebCore/InputLabelBase/StyledInputLabelBase.js"),require("./systems/WebCore/Differential/DifferentialContainer.js"),require("./systems/WebCore/Differential/DifferentialRadio.js"),require("./systems/WebCore/DropdownMenu/StyledMenu.js"),require("./systems/WebCore/ExpandableTypographyClamp/ExpandableTypographyClamp.js"),require("./systems/WebCore/FormBuilder/FormBuilder.js"),require("./systems/WebCore/FormGenerator/FormGenerator.js"),require("./systems/WebCore/GridOverlay/GridOverlay.js"),require("html-react-parser"),require("./systems/WebCore/IconButton/IconButton.js"),require("./systems/WebCore/IconButtonBase/IconButtonBase.js"),require("./systems/WebCore/IconButtonGroup/IconButtonGroup.js"),require("./systems/WebCore/Image/Image.js"),require("./systems/WebCore/KbdGroup/Kbd.js"),require("./systems/WebCore/KbdGroup/KbdGroup.js"),require("./systems/WebCore/KeyValueLabel/KeyValueLabel.js"),require("./systems/WebCore/Label/Label.js"),require("./systems/WebCore/Likert/LikertContainer.js"),require("./systems/WebCore/Likert/LikertLabel.js"),require("./systems/WebCore/Likert/LikertRadio.js"),require("./systems/WebCore/Link/StyledLink.js"),require("@lottiefiles/dotlottie-react"),require("./systems/WebCore/LoopsAiButton/LoopsAiButton.js"),require("markdown-to-jsx"),require("material-ui-popup-state/hooks"),require("./systems/WebCore/Surface/Surface.js"),require("./systems/WebCore/Menu/MenuItem.js"),require("./systems/WebCore/ModalLayout/_partials/ModalActionsWrapper.js"),require("./systems/WebCore/ModalLayout/_partials/ModalContentWrapper.js"),require("./systems/WebCore/NavigationButton/NavigationButton.js"),require("./systems/WebCore/Nudge/NudgeButton.js"),require("./systems/WebCore/NumberField/NumberField.js"),require("./systems/BrandCore/colorRamps.js"),require("./systems/BrandCore/semanticColor.js"),require("./systems/BrandCore/types.js"),require("./systems/BrandCore/typography.js"),require("./systems/WebCore/Progress/Progress.js"),require("./systems/WebCore/Pill/StyledPill.js"),require("./systems/WebCore/ProgressBar/ProgressBar.js"),require("./systems/WebCore/Radio/StyledRadio.js"),require("./systems/WebCore/SortableList/components/SortableItem/SortableItem.js"),require("./systems/WebCore/Select/StyledSelect.js"),require("./systems/WebCore/RankItem/_partials/LayoutComponents/LayoutComponents.js"),require("./systems/WebCore/RankItem/_partials/RankItemLabel/RankItemLabel.js"),require("./systems/WebCore/SortableList/SortableList.js"),require("./systems/WebCore/SortableList/components/SortableOverlay/SortableOverlay.js"),require("@tiptap/extension-placeholder"),require("@tiptap/starter-kit"),require("mui-tiptap"),require("./systems/WebCore/RichTextField/StyledRichTextEditor.js"),require("./systems/WebCore/Skeleton/Skeleton.js"),require("./systems/WebCore/Slider/StyledSlider.js"),require("./systems/WebCore/StarRating/StarRating.js"),require("./systems/WebCore/Switch/StyledSwitch.js"),require("./systems/WebCore/Textarea/Textarea.js"),require("./systems/WebCore/TrialCard/TrialCardContainers.js"),require("./systems/WebCore/TrialCard/TrialPill.js"),require("./systems/WebCore/UserMenu/UserMenuButton.js"),require("./systems/WebCore/VideoModal/VideoModal.js"),require("./systems/WebCore/TintedSurface/TintedSurface.js"),require("./systems/Platform/ProjectItem/_partials/ProjectItemBadge.js"),require("./systems/Platform/ProjectItem/_partials/styledPartials.js"),require("dayjs");var M=require("./systems/Platform/QuestionBar/QuestionBar.js"),E=require("./systems/Platform/QuestionBlock/QuestionBlock.js"),R=require("./systems/Platform/QuestionSelector/QuestionSelector.js"),K=require("./systems/Platform/ScrollIndicator/ScrollIndicator.js"),V=require("./systems/Platform/SearchInput/SearchInput.js"),O=require("./systems/Platform/SectionHeader/SectionHeader.js"),D=require("./systems/Platform/SentimentArrow/SentimentArrow.js");require("./systems/Platform/SliderGraph/_partials/SliderGraphYAxis/SliderGraphYAxis.js");var _=require("./systems/Platform/SliderGraph/SliderGraph.js"),Q=require("./systems/Platform/GraphPopoverDataLayout/GraphPopoverDataLayout.js");require("./systems/Platform/SliderGraph/_partials/StyledComponents.js");var w=require("./systems/Platform/Tab/Tab.js"),N=require("./systems/Platform/TestItem/_partials/TestItemSkeleton.js"),H=require("./systems/Platform/TestItem/TestItem.js"),U=require("./systems/Platform/TestKPICard/TestKPICard.js"),Y=require("./systems/Platform/TimeToFindGraph/TimeToFindGraph.js"),z=require("./systems/Platform/TimeToFindResult/TimeToFindResult.js"),J=require("./systems/Platform/VideoControls/VideoControls.js"),X=require("./systems/Platform/VideoControls2/VideoControls2.js"),Z=require("./systems/Platform/VideoControls2/components/VideoOverlayControl/VideoOverlayControl.js"),$=require("./systems/Platform/CommentFeedbackCard/CommentFeedbackCard.js"),ee=require("./systems/Platform/LoopVideoNudge/LoopVideoNudge.js"),re=require("./systems/Platform/PinchIndicator/PinchIndicator.js");exports.AiContentContainer=e.default,exports.AIInsight=r,exports.AISummary=s,exports.AIWrittenByLockUp=t,exports.ArrowTextIndicator=o,exports.AssetItem=i,exports.AuthContainerSurface=a,exports.ClipboardCopyingOverlay=m,exports.CommentCard=u.default,exports.getAuthorAvatarColor=u.getAuthorAvatarColor,exports.DataPointInfo=l,exports.DemographicSelectionSection=n,exports.EmojiListItem=p,exports.EmojiQuestionEditorOption=y,exports.EmptyStateCard=d,exports.ExtendedTestStatus=C,exports.FilterCount=j,exports.FilteredItemsCard=q,exports.FilterGroupAccordion=c,exports.FilterPyramidGraph=b,exports.FilterRow=P,exports.GraphBar=I,exports.Header=x,exports.KpiDataPopover=S,exports.KpiIndicator=f,exports.getKpiIndicatorColor=W.getKpiIndicatorColor,exports.mapKpiColorSchemeByInteger=W.mapKpiColorSchemeByInteger,exports.LikertGraph=h,exports.LoopItem=B,exports.LoopItemEmpty=A,exports.MiniEmojiGraph=L.MiniEmojiGraph,exports.MiniLikertGraph=L.MiniLikertGraph,exports.MiniOpenQuestionGraph=L.MiniOpenQuestionGraph,exports.MiniPunchGraph=L.MiniPunchGraph,exports.MiniRankGraph=L.MiniRankGraph,exports.MiniSliderGraph=L.MiniSliderGraph,exports.MiniResultCard=G,exports.Navigation=T,exports.OnboardingCard=g,exports.PaginationControl=F,exports.ProjectItem=k,exports.ProjectItemEmpty=v,exports.QuestionLabel=M,exports.QuestionBlock=E,exports.QuestionSelector=R,exports.ScrollIndicator=K,exports.SearchInput=V,exports.SectionHeader=O,exports.SentimentArrow=D,exports.SliderGraph=_,exports.GraphPopoverDataLayout=Q,exports.Tab=w,exports.TestItemSkeleton=N,exports.TestItem=H,exports.TestKPICard=U,exports.TimeToFindGraph=Y,exports.TimeToFindResult=z,exports.VideoControls=J,exports.VideoControls2=X,exports.VideoOverlayControl=Z,exports.CommentFeedbackCard=$,exports.LoopVideoNudge=ee,exports.PinchIndicator=re;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { default } from '../systems/WebCore/FormBuilder/FormBuilder.js';
|
|
2
|
-
export {
|
|
3
|
-
export { DynamicFieldType, FieldType, FieldTypes, HtmlField } from '../systems/WebCore/FormBuilder/fieldRegistry.js';
|
|
2
|
+
export { FormBuilderConfig, FormBuilderHandle, FormBuilderProps } from '../systems/WebCore/FormBuilder/types.js';
|
|
3
|
+
export { ArrayActionsApi, ArrayField, ArrayItemField, ArrayRowApi, BaseField, DynamicFieldType, FieldType, FieldTypes, HtmlField } from '../systems/WebCore/FormBuilder/fieldRegistry.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export{default}from"../systems/Platform/TestItem/TestItem.js";
|
|
1
|
+
export{default as TestItemSkeleton}from"../systems/Platform/TestItem/_partials/TestItemSkeleton.js";export{default}from"../systems/Platform/TestItem/TestItem.js";
|
package/dist/esm/Platform.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{default as AiContentContainer}from"./systems/Platform/AiContentContainer/AiContentContainer.js";export{default as AIInsight}from"./systems/Platform/AIInsight/AIInsight.js";export{default as AISummary}from"./systems/Platform/AISummary/AISummary.js";export{default as AIWrittenByLockUp}from"./systems/Platform/AIWrittenByLockUp/AiWrittenByLockUp.js";export{default as ArrowTextIndicator}from"./systems/Platform/ArrowTextIndicator/ArrowTextIndicator.js";export{default as AssetItem}from"./systems/Platform/AssetItem/AssetItem.js";export{default as AuthContainerSurface}from"./systems/Platform/AuthContainerSurface/AuthContainerSurface.js";export{default as ClipboardCopyingOverlay}from"./systems/Platform/ClipboardCopyingOverlay/ClipboardCopyingOverlay.js";export{default as CommentCard,getAuthorAvatarColor}from"./systems/Platform/CommentCard/CommentCard.js";export{default as DataPointInfo}from"./systems/Platform/DataPointInfo/DataPointInfo.js";export{default as DemographicSelectionSection}from"./systems/Platform/DemographicSelectionSection/DemographicSelectionSection.js";export{default as EmojiListItem}from"./systems/Platform/EmojiListItem/EmojiListItem.js";export{default as EmojiQuestionEditorOption}from"./systems/Platform/EmojiQuestionEditorOption/EmojiQuestionEditorOption.js";export{default as EmptyStateCard}from"./systems/Platform/EmptyStateCard/EmptyStateCard.js";export{default as ExtendedTestStatus}from"./systems/Platform/ExtendedTestStatus/ExtendedTestStatus.js";export{default as FilterCount}from"./systems/Platform/FilterCount/FilterCount.js";export{default as FilteredItemsCard}from"./systems/Platform/FilteredItemsCard/FilteredItemsCard.js";export{default as FilterGroupAccordion}from"./systems/Platform/FilterGroupAccordion/FilterGroupAccordion.js";export{default as FilterPyramidGraph}from"./systems/Platform/FilterPyramidGraph/FilterPyramidGraph.js";export{default as FilterRow}from"./systems/Platform/FilterRow/FilterRow.js";export{default as GraphBar}from"./systems/Platform/GraphBar/GraphBar.js";export{default as Header}from"./systems/Platform/Header/Header.js";export{default as KpiDataPopover}from"./systems/Platform/KpiDataPopover/KpiDataPopover.js";export{default as KpiIndicator}from"./systems/Platform/KpiIndicator/KpiIndicator.js";export{getKpiIndicatorColor,mapKpiColorSchemeByInteger}from"./systems/Platform/KpiIndicator/utils.js";export{default as LikertGraph}from"./systems/Platform/LikertGraph/LikertGraph.js";export{default as LoopItem}from"./systems/Platform/LoopItem/LoopItem.js";export{default as LoopItemEmpty}from"./systems/Platform/LoopItemEmpty/LoopItemEmpty.js";export{MiniEmojiGraph,MiniLikertGraph,MiniOpenQuestionGraph,MiniPunchGraph,MiniRankGraph,MiniSliderGraph}from"./systems/Platform/MiniResultCard/graphVariants.js";export{default as MiniResultCard}from"./systems/Platform/MiniResultCard/MiniResultCard.js";export{default as Navigation}from"./systems/Platform/Navigation/Navigation.js";export{default as OnboardingCard}from"./systems/Platform/OnboardingCard/OnboardingCard.js";export{default as PaginationControl}from"./systems/Platform/PaginationControl/PaginationControl.js";export{default as ProjectItem}from"./systems/Platform/ProjectItem/ProjectItem.js";export{default as ProjectItemEmpty}from"./systems/Platform/ProjectItem/ProjectItemEmpty.js";import"react/jsx-runtime";import"@mui/material";import"./utils/formValidation/misc.js";import"./systems/BrandCore/Icon/Icon.js";import"./systems/BrandCore/primitiveVariables.js";import"./systems/WebCore/utils/typography.util.js";import"./systems/BrandCore/textures.js";import"./systems/WebCore/AnnualController/AnnualController.js";import"./systems/WebCore/SelectItem/SelectItem.js";import"./systems/WebCore/Accordion/Accordion.js";import"./systems/WebCore/Animations/FadeIn.js";import"./systems/WebCore/Text/Text.js";import"@mui/icons-material";import"react";import"./systems/WebCore/AutocompleteBaseField/_partials/AutocompleteListbox.js";import"./systems/WebCore/AutocompleteBaseField/_partials/StyledPopper.js";import"./systems/WebCore/AutocompleteBaseField/_partials/StyledAutocompleteField.js";import"./systems/WebCore/AutocompleteBaseField/_partials/AutocompleteChip.js";import"./systems/WebCore/AutocompleteBaseField/_partials/StyledAutocompleteInput.js";import"merge-sx";import"./systems/WebCore/Badge/Badge.js";import"./systems/WebCore/Breadcrumb/Breadcrumb.js";import"./systems/WebCore/Button/Button.js";import"./systems/WebCore/ButtonBase/ButtonBase.js";import"./systems/WebCore/ButtonTabGroup/_partials/ActiveIndicator.js";import"./systems/WebCore/ButtonTabGroup/_partials/ButtonTabsWrapper.js";import"./systems/WebCore/ButtonTabGroup/_partials/TabButton.js";import"./systems/WebCore/Checkbox/StyledCheckbox.js";import"./systems/WebCore/InputFieldBase/InputFieldBase.js";import"./systems/WebCore/CreatableAutocomplete/CreatableAutocomplete.js";import"./systems/WebCore/InputLabelBase/StyledInputLabelBase.js";import"./systems/WebCore/Differential/DifferentialContainer.js";import"./systems/WebCore/Differential/DifferentialRadio.js";import"./systems/WebCore/DropdownMenu/StyledMenu.js";import"./systems/WebCore/ExpandableTypographyClamp/ExpandableTypographyClamp.js";import"./systems/WebCore/FormBuilder/FormBuilder.js";import"./systems/WebCore/FormGenerator/FormGenerator.js";import"./systems/WebCore/GridOverlay/GridOverlay.js";import"html-react-parser";import"./systems/WebCore/IconButton/IconButton.js";import"./systems/WebCore/IconButtonBase/IconButtonBase.js";import"./systems/WebCore/IconButtonGroup/IconButtonGroup.js";import"./systems/WebCore/Image/Image.js";import"./systems/WebCore/KbdGroup/Kbd.js";import"./systems/WebCore/KbdGroup/KbdGroup.js";import"./systems/WebCore/KeyValueLabel/KeyValueLabel.js";import"./systems/WebCore/Label/Label.js";import"./systems/WebCore/Likert/LikertContainer.js";import"./systems/WebCore/Likert/LikertLabel.js";import"./systems/WebCore/Likert/LikertRadio.js";import"./systems/WebCore/Link/StyledLink.js";import"@lottiefiles/dotlottie-react";import"./systems/WebCore/LoopsAiButton/LoopsAiButton.js";import"markdown-to-jsx";import"material-ui-popup-state/hooks";import"./systems/WebCore/Surface/Surface.js";import"./systems/WebCore/Menu/MenuItem.js";import"./systems/WebCore/ModalLayout/_partials/ModalActionsWrapper.js";import"./systems/WebCore/ModalLayout/_partials/ModalContentWrapper.js";import"./systems/WebCore/NavigationButton/NavigationButton.js";import"./systems/WebCore/Nudge/NudgeButton.js";import"./systems/WebCore/NumberField/NumberField.js";import"./systems/BrandCore/colorRamps.js";import"./systems/BrandCore/semanticColor.js";import"./systems/BrandCore/types.js";import"./systems/BrandCore/typography.js";import"./systems/WebCore/Progress/Progress.js";import"./systems/WebCore/Pill/StyledPill.js";import"./systems/WebCore/ProgressBar/ProgressBar.js";import"./systems/WebCore/Radio/StyledRadio.js";import"./systems/WebCore/SortableList/components/SortableItem/SortableItem.js";import"./systems/WebCore/Select/StyledSelect.js";import"./systems/WebCore/RankItem/_partials/LayoutComponents/LayoutComponents.js";import"./systems/WebCore/RankItem/_partials/RankItemLabel/RankItemLabel.js";import"./systems/WebCore/SortableList/SortableList.js";import"./systems/WebCore/SortableList/components/SortableOverlay/SortableOverlay.js";import"@tiptap/extension-placeholder";import"@tiptap/starter-kit";import"mui-tiptap";import"./systems/WebCore/RichTextField/StyledRichTextEditor.js";import"./systems/WebCore/Skeleton/Skeleton.js";import"./systems/WebCore/Slider/StyledSlider.js";import"./systems/WebCore/StarRating/StarRating.js";import"./systems/WebCore/Switch/StyledSwitch.js";import"./systems/WebCore/Textarea/Textarea.js";import"./systems/WebCore/TrialCard/TrialCardContainers.js";import"./systems/WebCore/TrialCard/TrialPill.js";import"./systems/WebCore/UserMenu/UserMenuButton.js";import"./systems/WebCore/VideoModal/VideoModal.js";import"./systems/WebCore/TintedSurface/TintedSurface.js";import"./systems/Platform/ProjectItem/_partials/ProjectItemBadge.js";import"./systems/Platform/ProjectItem/_partials/styledPartials.js";import"dayjs";export{default as QuestionLabel}from"./systems/Platform/QuestionBar/QuestionBar.js";export{default as QuestionBlock}from"./systems/Platform/QuestionBlock/QuestionBlock.js";export{default as QuestionSelector}from"./systems/Platform/QuestionSelector/QuestionSelector.js";export{default as ScrollIndicator}from"./systems/Platform/ScrollIndicator/ScrollIndicator.js";export{default as SearchInput}from"./systems/Platform/SearchInput/SearchInput.js";export{default as SectionHeader}from"./systems/Platform/SectionHeader/SectionHeader.js";export{default as SentimentArrow}from"./systems/Platform/SentimentArrow/SentimentArrow.js";import"./systems/Platform/SliderGraph/_partials/SliderGraphYAxis/SliderGraphYAxis.js";export{default as SliderGraph}from"./systems/Platform/SliderGraph/SliderGraph.js";export{default as GraphPopoverDataLayout}from"./systems/Platform/GraphPopoverDataLayout/GraphPopoverDataLayout.js";import"./systems/Platform/SliderGraph/_partials/StyledComponents.js";export{default as Tab}from"./systems/Platform/Tab/Tab.js";export{default as TestItem}from"./systems/Platform/TestItem/TestItem.js";export{default as TestKPICard}from"./systems/Platform/TestKPICard/TestKPICard.js";export{default as TimeToFindGraph}from"./systems/Platform/TimeToFindGraph/TimeToFindGraph.js";export{default as TimeToFindResult}from"./systems/Platform/TimeToFindResult/TimeToFindResult.js";export{default as VideoControls}from"./systems/Platform/VideoControls/VideoControls.js";export{default as VideoControls2}from"./systems/Platform/VideoControls2/VideoControls2.js";export{default as VideoOverlayControl}from"./systems/Platform/VideoControls2/components/VideoOverlayControl/VideoOverlayControl.js";export{default as LoopVideoNudge}from"./systems/Platform/LoopVideoNudge/LoopVideoNudge.js";export{default as PinchIndicator}from"./systems/Platform/PinchIndicator/PinchIndicator.js";export{default as CommentFeedbackCard}from"./systems/Platform/CommentFeedbackCard/CommentFeedbackCard.js";
|
|
1
|
+
export{default as AiContentContainer}from"./systems/Platform/AiContentContainer/AiContentContainer.js";export{default as AIInsight}from"./systems/Platform/AIInsight/AIInsight.js";export{default as AISummary}from"./systems/Platform/AISummary/AISummary.js";export{default as AIWrittenByLockUp}from"./systems/Platform/AIWrittenByLockUp/AiWrittenByLockUp.js";export{default as ArrowTextIndicator}from"./systems/Platform/ArrowTextIndicator/ArrowTextIndicator.js";export{default as AssetItem}from"./systems/Platform/AssetItem/AssetItem.js";export{default as AuthContainerSurface}from"./systems/Platform/AuthContainerSurface/AuthContainerSurface.js";export{default as ClipboardCopyingOverlay}from"./systems/Platform/ClipboardCopyingOverlay/ClipboardCopyingOverlay.js";export{default as CommentCard,getAuthorAvatarColor}from"./systems/Platform/CommentCard/CommentCard.js";export{default as DataPointInfo}from"./systems/Platform/DataPointInfo/DataPointInfo.js";export{default as DemographicSelectionSection}from"./systems/Platform/DemographicSelectionSection/DemographicSelectionSection.js";export{default as EmojiListItem}from"./systems/Platform/EmojiListItem/EmojiListItem.js";export{default as EmojiQuestionEditorOption}from"./systems/Platform/EmojiQuestionEditorOption/EmojiQuestionEditorOption.js";export{default as EmptyStateCard}from"./systems/Platform/EmptyStateCard/EmptyStateCard.js";export{default as ExtendedTestStatus}from"./systems/Platform/ExtendedTestStatus/ExtendedTestStatus.js";export{default as FilterCount}from"./systems/Platform/FilterCount/FilterCount.js";export{default as FilteredItemsCard}from"./systems/Platform/FilteredItemsCard/FilteredItemsCard.js";export{default as FilterGroupAccordion}from"./systems/Platform/FilterGroupAccordion/FilterGroupAccordion.js";export{default as FilterPyramidGraph}from"./systems/Platform/FilterPyramidGraph/FilterPyramidGraph.js";export{default as FilterRow}from"./systems/Platform/FilterRow/FilterRow.js";export{default as GraphBar}from"./systems/Platform/GraphBar/GraphBar.js";export{default as Header}from"./systems/Platform/Header/Header.js";export{default as KpiDataPopover}from"./systems/Platform/KpiDataPopover/KpiDataPopover.js";export{default as KpiIndicator}from"./systems/Platform/KpiIndicator/KpiIndicator.js";export{getKpiIndicatorColor,mapKpiColorSchemeByInteger}from"./systems/Platform/KpiIndicator/utils.js";export{default as LikertGraph}from"./systems/Platform/LikertGraph/LikertGraph.js";export{default as LoopItem}from"./systems/Platform/LoopItem/LoopItem.js";export{default as LoopItemEmpty}from"./systems/Platform/LoopItemEmpty/LoopItemEmpty.js";export{MiniEmojiGraph,MiniLikertGraph,MiniOpenQuestionGraph,MiniPunchGraph,MiniRankGraph,MiniSliderGraph}from"./systems/Platform/MiniResultCard/graphVariants.js";export{default as MiniResultCard}from"./systems/Platform/MiniResultCard/MiniResultCard.js";export{default as Navigation}from"./systems/Platform/Navigation/Navigation.js";export{default as OnboardingCard}from"./systems/Platform/OnboardingCard/OnboardingCard.js";export{default as PaginationControl}from"./systems/Platform/PaginationControl/PaginationControl.js";export{default as ProjectItem}from"./systems/Platform/ProjectItem/ProjectItem.js";export{default as ProjectItemEmpty}from"./systems/Platform/ProjectItem/ProjectItemEmpty.js";import"react/jsx-runtime";import"@mui/material";import"./utils/formValidation/misc.js";import"./systems/BrandCore/Icon/Icon.js";import"./systems/BrandCore/primitiveVariables.js";import"./systems/WebCore/utils/typography.util.js";import"./systems/BrandCore/textures.js";import"./systems/WebCore/AnnualController/AnnualController.js";import"./systems/WebCore/SelectItem/SelectItem.js";import"./systems/WebCore/Accordion/Accordion.js";import"./systems/WebCore/Animations/FadeIn.js";import"./systems/WebCore/Text/Text.js";import"@mui/icons-material";import"react";import"./systems/WebCore/AutocompleteBaseField/_partials/AutocompleteListbox.js";import"./systems/WebCore/AutocompleteBaseField/_partials/StyledPopper.js";import"./systems/WebCore/AutocompleteBaseField/_partials/StyledAutocompleteField.js";import"./systems/WebCore/AutocompleteBaseField/_partials/AutocompleteChip.js";import"./systems/WebCore/AutocompleteBaseField/_partials/StyledAutocompleteInput.js";import"merge-sx";import"./systems/WebCore/Badge/Badge.js";import"./systems/WebCore/Breadcrumb/Breadcrumb.js";import"./systems/WebCore/Button/Button.js";import"./systems/WebCore/ButtonBase/ButtonBase.js";import"./systems/WebCore/ButtonTabGroup/_partials/ActiveIndicator.js";import"./systems/WebCore/ButtonTabGroup/_partials/ButtonTabsWrapper.js";import"./systems/WebCore/ButtonTabGroup/_partials/TabButton.js";import"./systems/WebCore/Checkbox/StyledCheckbox.js";import"./systems/WebCore/InputFieldBase/InputFieldBase.js";import"./systems/WebCore/CreatableAutocomplete/CreatableAutocomplete.js";import"./systems/WebCore/InputLabelBase/StyledInputLabelBase.js";import"./systems/WebCore/Differential/DifferentialContainer.js";import"./systems/WebCore/Differential/DifferentialRadio.js";import"./systems/WebCore/DropdownMenu/StyledMenu.js";import"./systems/WebCore/ExpandableTypographyClamp/ExpandableTypographyClamp.js";import"./systems/WebCore/FormBuilder/FormBuilder.js";import"./systems/WebCore/FormGenerator/FormGenerator.js";import"./systems/WebCore/GridOverlay/GridOverlay.js";import"html-react-parser";import"./systems/WebCore/IconButton/IconButton.js";import"./systems/WebCore/IconButtonBase/IconButtonBase.js";import"./systems/WebCore/IconButtonGroup/IconButtonGroup.js";import"./systems/WebCore/Image/Image.js";import"./systems/WebCore/KbdGroup/Kbd.js";import"./systems/WebCore/KbdGroup/KbdGroup.js";import"./systems/WebCore/KeyValueLabel/KeyValueLabel.js";import"./systems/WebCore/Label/Label.js";import"./systems/WebCore/Likert/LikertContainer.js";import"./systems/WebCore/Likert/LikertLabel.js";import"./systems/WebCore/Likert/LikertRadio.js";import"./systems/WebCore/Link/StyledLink.js";import"@lottiefiles/dotlottie-react";import"./systems/WebCore/LoopsAiButton/LoopsAiButton.js";import"markdown-to-jsx";import"material-ui-popup-state/hooks";import"./systems/WebCore/Surface/Surface.js";import"./systems/WebCore/Menu/MenuItem.js";import"./systems/WebCore/ModalLayout/_partials/ModalActionsWrapper.js";import"./systems/WebCore/ModalLayout/_partials/ModalContentWrapper.js";import"./systems/WebCore/NavigationButton/NavigationButton.js";import"./systems/WebCore/Nudge/NudgeButton.js";import"./systems/WebCore/NumberField/NumberField.js";import"./systems/BrandCore/colorRamps.js";import"./systems/BrandCore/semanticColor.js";import"./systems/BrandCore/types.js";import"./systems/BrandCore/typography.js";import"./systems/WebCore/Progress/Progress.js";import"./systems/WebCore/Pill/StyledPill.js";import"./systems/WebCore/ProgressBar/ProgressBar.js";import"./systems/WebCore/Radio/StyledRadio.js";import"./systems/WebCore/SortableList/components/SortableItem/SortableItem.js";import"./systems/WebCore/Select/StyledSelect.js";import"./systems/WebCore/RankItem/_partials/LayoutComponents/LayoutComponents.js";import"./systems/WebCore/RankItem/_partials/RankItemLabel/RankItemLabel.js";import"./systems/WebCore/SortableList/SortableList.js";import"./systems/WebCore/SortableList/components/SortableOverlay/SortableOverlay.js";import"@tiptap/extension-placeholder";import"@tiptap/starter-kit";import"mui-tiptap";import"./systems/WebCore/RichTextField/StyledRichTextEditor.js";import"./systems/WebCore/Skeleton/Skeleton.js";import"./systems/WebCore/Slider/StyledSlider.js";import"./systems/WebCore/StarRating/StarRating.js";import"./systems/WebCore/Switch/StyledSwitch.js";import"./systems/WebCore/Textarea/Textarea.js";import"./systems/WebCore/TrialCard/TrialCardContainers.js";import"./systems/WebCore/TrialCard/TrialPill.js";import"./systems/WebCore/UserMenu/UserMenuButton.js";import"./systems/WebCore/VideoModal/VideoModal.js";import"./systems/WebCore/TintedSurface/TintedSurface.js";import"./systems/Platform/ProjectItem/_partials/ProjectItemBadge.js";import"./systems/Platform/ProjectItem/_partials/styledPartials.js";import"dayjs";export{default as QuestionLabel}from"./systems/Platform/QuestionBar/QuestionBar.js";export{default as QuestionBlock}from"./systems/Platform/QuestionBlock/QuestionBlock.js";export{default as QuestionSelector}from"./systems/Platform/QuestionSelector/QuestionSelector.js";export{default as ScrollIndicator}from"./systems/Platform/ScrollIndicator/ScrollIndicator.js";export{default as SearchInput}from"./systems/Platform/SearchInput/SearchInput.js";export{default as SectionHeader}from"./systems/Platform/SectionHeader/SectionHeader.js";export{default as SentimentArrow}from"./systems/Platform/SentimentArrow/SentimentArrow.js";import"./systems/Platform/SliderGraph/_partials/SliderGraphYAxis/SliderGraphYAxis.js";export{default as SliderGraph}from"./systems/Platform/SliderGraph/SliderGraph.js";export{default as GraphPopoverDataLayout}from"./systems/Platform/GraphPopoverDataLayout/GraphPopoverDataLayout.js";import"./systems/Platform/SliderGraph/_partials/StyledComponents.js";export{default as Tab}from"./systems/Platform/Tab/Tab.js";export{default as TestItemSkeleton}from"./systems/Platform/TestItem/_partials/TestItemSkeleton.js";export{default as TestItem}from"./systems/Platform/TestItem/TestItem.js";export{default as TestKPICard}from"./systems/Platform/TestKPICard/TestKPICard.js";export{default as TimeToFindGraph}from"./systems/Platform/TimeToFindGraph/TimeToFindGraph.js";export{default as TimeToFindResult}from"./systems/Platform/TimeToFindResult/TimeToFindResult.js";export{default as VideoControls}from"./systems/Platform/VideoControls/VideoControls.js";export{default as VideoControls2}from"./systems/Platform/VideoControls2/VideoControls2.js";export{default as VideoOverlayControl}from"./systems/Platform/VideoControls2/components/VideoOverlayControl/VideoOverlayControl.js";export{default as CommentFeedbackCard}from"./systems/Platform/CommentFeedbackCard/CommentFeedbackCard.js";export{default as LoopVideoNudge}from"./systems/Platform/LoopVideoNudge/LoopVideoNudge.js";export{default as PinchIndicator}from"./systems/Platform/PinchIndicator/PinchIndicator.js";
|
package/dist/esm/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{blueRamp,generateRamp,greenRamp,neutralRamp,peachRamp,purpleRamp,redRamp,yellowRamp}from"./systems/BrandCore/colorRamps.js";export{componentTokens}from"./systems/BrandCore/componentTokens.js";export{tone1,tone2,tone3,tone3_ai_icon,tone3_border,tone3_lowOpacity_text,tone4,tone5}from"./systems/BrandCore/gradients.js";export{blue,darkNeutral,darkNeutralAlpha,green,neutral,neutralAlpha,peach,purple,red,yellow}from"./systems/BrandCore/primitiveColor.js";export{base,boxShadow,breakpoints,easing,elevation,elevationFilter,margin,padding,radius,space}from"./systems/BrandCore/primitiveVariables.js";export{semantic}from"./systems/BrandCore/semanticColor.js";export{FontWeight}from"./systems/BrandCore/types.js";export{fonts}from"./systems/BrandCore/typography.js";import"react/jsx-runtime";import"@mui/material";export{default as Icon,iconSizeMap}from"./systems/BrandCore/Icon/Icon.js";export{default as PlanFeatureTable}from"./systems/Marketing/PlanFeatureTable/PlanFeatureTable.js";export{default as PlanTierCard}from"./systems/Marketing/PlanTierCard/PlanTierCard.js";export{default as TickGroup}from"./systems/Marketing/TickGroup/TickGroup.js";export{default as AiContentContainer}from"./systems/Platform/AiContentContainer/AiContentContainer.js";export{default as AIInsight}from"./systems/Platform/AIInsight/AIInsight.js";export{default as AISummary}from"./systems/Platform/AISummary/AISummary.js";export{default as AIWrittenByLockUp}from"./systems/Platform/AIWrittenByLockUp/AiWrittenByLockUp.js";export{default as ArrowTextIndicator}from"./systems/Platform/ArrowTextIndicator/ArrowTextIndicator.js";export{default as AssetItem}from"./systems/Platform/AssetItem/AssetItem.js";export{default as AuthContainerSurface}from"./systems/Platform/AuthContainerSurface/AuthContainerSurface.js";export{default as ClipboardCopyingOverlay}from"./systems/Platform/ClipboardCopyingOverlay/ClipboardCopyingOverlay.js";export{default as CommentCard,getAuthorAvatarColor}from"./systems/Platform/CommentCard/CommentCard.js";export{default as DataPointInfo}from"./systems/Platform/DataPointInfo/DataPointInfo.js";export{default as DemographicSelectionSection}from"./systems/Platform/DemographicSelectionSection/DemographicSelectionSection.js";export{default as EmojiListItem}from"./systems/Platform/EmojiListItem/EmojiListItem.js";export{default as EmojiQuestionEditorOption}from"./systems/Platform/EmojiQuestionEditorOption/EmojiQuestionEditorOption.js";export{default as EmptyStateCard}from"./systems/Platform/EmptyStateCard/EmptyStateCard.js";export{default as ExtendedTestStatus}from"./systems/Platform/ExtendedTestStatus/ExtendedTestStatus.js";export{default as FilterCount}from"./systems/Platform/FilterCount/FilterCount.js";export{default as FilteredItemsCard}from"./systems/Platform/FilteredItemsCard/FilteredItemsCard.js";export{default as FilterGroupAccordion}from"./systems/Platform/FilterGroupAccordion/FilterGroupAccordion.js";export{default as FilterPyramidGraph}from"./systems/Platform/FilterPyramidGraph/FilterPyramidGraph.js";export{default as FilterRow}from"./systems/Platform/FilterRow/FilterRow.js";export{default as GraphBar}from"./systems/Platform/GraphBar/GraphBar.js";export{default as Header}from"./systems/Platform/Header/Header.js";export{default as KpiDataPopover}from"./systems/Platform/KpiDataPopover/KpiDataPopover.js";export{default as KpiIndicator}from"./systems/Platform/KpiIndicator/KpiIndicator.js";export{getKpiIndicatorColor,mapKpiColorSchemeByInteger}from"./systems/Platform/KpiIndicator/utils.js";export{default as LikertGraph}from"./systems/Platform/LikertGraph/LikertGraph.js";export{default as LoopItem}from"./systems/Platform/LoopItem/LoopItem.js";export{default as LoopItemEmpty}from"./systems/Platform/LoopItemEmpty/LoopItemEmpty.js";export{MiniEmojiGraph,MiniLikertGraph,MiniOpenQuestionGraph,MiniPunchGraph,MiniRankGraph,MiniSliderGraph}from"./systems/Platform/MiniResultCard/graphVariants.js";export{default as MiniResultCard}from"./systems/Platform/MiniResultCard/MiniResultCard.js";export{default as Navigation}from"./systems/Platform/Navigation/Navigation.js";export{default as OnboardingCard}from"./systems/Platform/OnboardingCard/OnboardingCard.js";export{default as PaginationControl}from"./systems/Platform/PaginationControl/PaginationControl.js";export{default as ProjectItem}from"./systems/Platform/ProjectItem/ProjectItem.js";export{default as ProjectItemEmpty}from"./systems/Platform/ProjectItem/ProjectItemEmpty.js";export{emailValidation}from"./utils/formValidation/email.js";export{DEFAULT_MAX_INPUT_LENGTH,chooseArticle,defaultInputValidation}from"./utils/formValidation/misc.js";export{passwordValidation}from"./utils/formValidation/password.js";export{buttonHeightMap,buttonInteraction,buttonPadding,getButtonSizing,getButtonTypography,getIconSizing,outlined,primary,secondary,subtle}from"./systems/WebCore/ButtonBase/Button.variant-helpers.js";export{backgroundCreator}from"./systems/WebCore/utils/backgroundCreator.js";export{default as AnnualController}from"./systems/WebCore/AnnualController/AnnualController.js";export{default as SelectItem}from"./systems/WebCore/SelectItem/SelectItem.js";export{default as Accordion}from"./systems/WebCore/Accordion/Accordion.js";export{default as FadeIn}from"./systems/WebCore/Animations/FadeIn.js";export{default as AuthFormHeader}from"./systems/WebCore/AuthFormHeader/AuthFormHeader.js";export{default as AutocompleteBaseField}from"./systems/WebCore/AutocompleteBaseField/AutocompleteBaseField.js";export{default as AutocompleteField}from"./systems/WebCore/AutocompleteField/AutocompleteField.js";export{default as Avatar}from"./systems/WebCore/Avatar/Avatar.js";export{default as AvatarGroup}from"./systems/WebCore/AvatarGroup/AvatarGroup.js";export{default as Badge}from"./systems/WebCore/Badge/Badge.js";export{default as BrandBadge}from"./systems/WebCore/BrandBadge/BrandBadge.js";export{default as Breadcrumb}from"./systems/WebCore/Breadcrumb/Breadcrumb.js";export{default as BulletGraphic}from"./systems/WebCore/BulletGraphic/BulletGraphic.js";export{default as Button}from"./systems/WebCore/Button/Button.js";export{default as ButtonBase}from"./systems/WebCore/ButtonBase/ButtonBase.js";export{default as ButtonTabGroup}from"./systems/WebCore/ButtonTabGroup/ButtonTabGroup.js";export{default as Checkbox}from"./systems/WebCore/Checkbox/Checkbox.js";import"./systems/WebCore/Checkbox/StyledCheckbox.js";export{default as CheckboxGroup}from"./systems/WebCore/CheckboxGroup/CheckboxGroup.js";export{default as ColorBackgroundContainer}from"./systems/WebCore/ColorBackgroundContainer/ColorBackgroundContainer.js";export{default as CreatableAutocomplete}from"./systems/WebCore/CreatableAutocomplete/CreatableAutocomplete.js";export{default as CustomField}from"./systems/WebCore/CustomField/CustomField.js";export{default as Differential}from"./systems/WebCore/Differential/Differential.js";export{default as DropdownMenu}from"./systems/WebCore/DropdownMenu/DropdownMenu.js";export{useDropdownMenu}from"./systems/WebCore/DropdownMenu/DropdownMenu.hook.js";export{default as EmojiWrapper}from"./systems/WebCore/EmojiWrapper/EmojiWrapper.js";export{default as ExpandableTypographyClamp}from"./systems/WebCore/ExpandableTypographyClamp/ExpandableTypographyClamp.js";export{default as Flag}from"./systems/WebCore/Flag/Flag.js";export{default as FormBuilder}from"./systems/WebCore/FormBuilder/FormBuilder.js";export{default as FormControlLabel}from"./systems/WebCore/FormControlLabel/FormControlLabel.js";export{default as FormGenerator}from"./systems/WebCore/FormGenerator/FormGenerator.js";export{default as GridOverlay}from"./systems/WebCore/GridOverlay/GridOverlay.js";export{default as Html}from"./systems/WebCore/Html/Html.js";export{default as HtmlParser}from"./systems/WebCore/HtmlParser/HtmlParser.js";export{default as IconButton}from"./systems/WebCore/IconButton/IconButton.js";import*as e from"./systems/WebCore/IconButtonBase/IconButton.variant-helpers.js";export{e as iconButtonHelpers};export{default as IconButtonBase}from"./systems/WebCore/IconButtonBase/IconButtonBase.js";export{default as IconButtonGroup}from"./systems/WebCore/IconButtonGroup/IconButtonGroup.js";export{default as Image}from"./systems/WebCore/Image/Image.js";export{default as InputFieldBase}from"./systems/WebCore/InputFieldBase/InputFieldBase.js";export{default as InputLabel}from"./systems/WebCore/InputLabel/InputLabel.js";export{default as InputLabelHelp}from"./systems/WebCore/InputLabelHelp/InputLabelHelp.js";export{default as Kbd}from"./systems/WebCore/KbdGroup/Kbd.js";export{default as KbdGroup}from"./systems/WebCore/KbdGroup/KbdGroup.js";export{default as KeyValueLabel}from"./systems/WebCore/KeyValueLabel/KeyValueLabel.js";export{default as Label}from"./systems/WebCore/Label/Label.js";export{default as Likert}from"./systems/WebCore/Likert/Likert.js";export{default as Link}from"./systems/WebCore/Link/Link.js";export{default as Loader}from"./systems/WebCore/Loader/Loader.js";export{default as Logo}from"./systems/WebCore/Logo/Logo.js";export{default as LoopsAiButton}from"./systems/WebCore/LoopsAiButton/LoopsAiButton.js";export{default as Markdown}from"./systems/WebCore/Markdown/Markdown.js";export{default as Menu}from"./systems/WebCore/Menu/Menu.js";export{ModalActionsWrapper}from"./systems/WebCore/ModalLayout/_partials/ModalActionsWrapper.js";export{ModalContentWrapper}from"./systems/WebCore/ModalLayout/_partials/ModalContentWrapper.js";export{default as ModalLayout}from"./systems/WebCore/ModalLayout/ModalLayout.js";export{default as NavigationButton}from"./systems/WebCore/NavigationButton/NavigationButton.js";export{default as Nudge}from"./systems/WebCore/Nudge/Nudge.js";export{Text}from"./systems/WebCore/Text/Text.js";import"./systems/WebCore/Nudge/NudgeButton.js";export{default as NumberField}from"./systems/WebCore/NumberField/NumberField.js";export{default as Pill}from"./systems/WebCore/Pill/Pill.js";export{default as Popper}from"./systems/WebCore/Popper/Popper.js";export{default as PoweredByWatermarkLogo}from"./systems/WebCore/PoweredByWatermarkLogo/PoweredByWatermarkLogo.js";export{default as Progress}from"./systems/WebCore/Progress/Progress.js";export{default as ProgressBar}from"./systems/WebCore/ProgressBar/ProgressBar.js";export{default as Radio}from"./systems/WebCore/Radio/Radio.js";import"./systems/WebCore/Radio/StyledRadio.js";export{default as RadioGroup}from"./systems/WebCore/RadioGroup/RadioGroup.js";export{default as Rank}from"./systems/WebCore/Rank/Rank.js";export{default as RichTextField}from"./systems/WebCore/RichTextField/RichTextField.js";export{default as Select}from"./systems/WebCore/Select/Select.js";export{default as Skeleton}from"./systems/WebCore/Skeleton/Skeleton.js";export{default as Slider}from"./systems/WebCore/Slider/Slider.js";export{default as SortableList}from"./systems/WebCore/SortableList/SortableList.js";export{default as StarRating}from"./systems/WebCore/StarRating/StarRating.js";export{default as Surface}from"./systems/WebCore/Surface/Surface.js";export{default as Switch}from"./systems/WebCore/Switch/Switch.js";export{default as Textarea}from"./systems/WebCore/Textarea/Textarea.js";export{default as TextBarDivider}from"./systems/WebCore/TextBarDivider/TextBarDivider.js";export{default as TextField}from"./systems/WebCore/TextField/TextField.js";export{default as Toast}from"./systems/WebCore/Toast/Toast.js";export{default as Tooltip}from"./systems/WebCore/Tooltip/Tooltip.js";export{default as TrialCard}from"./systems/WebCore/TrialCard/TrialCard.js";export{default as UserMenu}from"./systems/WebCore/UserMenu/UserMenu.js";export{default as VideoModal}from"./systems/WebCore/VideoModal/VideoModal.js";export{default as TintedSurface}from"./systems/WebCore/TintedSurface/TintedSurface.js";export{pluralise}from"./utils/pluralise.js";import"./systems/Platform/ProjectItem/_partials/ProjectItemBadge.js";import"merge-sx";import"./systems/Platform/ProjectItem/_partials/styledPartials.js";import"dayjs";export{default as QuestionLabel}from"./systems/Platform/QuestionBar/QuestionBar.js";export{default as QuestionBlock}from"./systems/Platform/QuestionBlock/QuestionBlock.js";export{default as QuestionSelector}from"./systems/Platform/QuestionSelector/QuestionSelector.js";export{default as ScrollIndicator}from"./systems/Platform/ScrollIndicator/ScrollIndicator.js";export{default as SearchInput}from"./systems/Platform/SearchInput/SearchInput.js";export{default as SectionHeader}from"./systems/Platform/SectionHeader/SectionHeader.js";export{default as SentimentArrow}from"./systems/Platform/SentimentArrow/SentimentArrow.js";import"./systems/Platform/SliderGraph/_partials/SliderGraphYAxis/SliderGraphYAxis.js";export{default as SliderGraph}from"./systems/Platform/SliderGraph/SliderGraph.js";import"react";export{default as GraphPopoverDataLayout}from"./systems/Platform/GraphPopoverDataLayout/GraphPopoverDataLayout.js";import"./systems/Platform/SliderGraph/_partials/StyledComponents.js";export{default as Tab}from"./systems/Platform/Tab/Tab.js";export{default as TestItem}from"./systems/Platform/TestItem/TestItem.js";export{default as TestKPICard}from"./systems/Platform/TestKPICard/TestKPICard.js";export{default as TimeToFindGraph}from"./systems/Platform/TimeToFindGraph/TimeToFindGraph.js";export{default as TimeToFindResult}from"./systems/Platform/TimeToFindResult/TimeToFindResult.js";export{default as VideoControls}from"./systems/Platform/VideoControls/VideoControls.js";export{default as VideoControls2}from"./systems/Platform/VideoControls2/VideoControls2.js";export{default as VideoOverlayControl}from"./systems/Platform/VideoControls2/components/VideoOverlayControl/VideoOverlayControl.js";export{default as LoopVideoNudge}from"./systems/Platform/LoopVideoNudge/LoopVideoNudge.js";export{default as PinchIndicator}from"./systems/Platform/PinchIndicator/PinchIndicator.js";export{default as CommentFeedbackCard}from"./systems/Platform/CommentFeedbackCard/CommentFeedbackCard.js";export{useBreakpoint}from"./utils/breakpoint.hook.js";export{CDN_BASE,cdnAsset}from"./utils/cdn.js";export{compareArrayMembers}from"./utils/compareArrayMembers.js";export{isButton}from"./utils/isButton.js";export{isNumber}from"./utils/isNumber.js";export{isNumeric}from"./utils/isNumeric.js";export{useScreenSize}from"./utils/screen.hook.js";export{useKeyCombo}from"./utils/useKeyCombo.js";export{usePrevious}from"./utils/usePrevious.js";export{omitProps}from"./utils/shouldForwardProp.js";export{customTheme}from"./theme/theme.js";export{useTheme,useThemeBuilder}from"./theme/theme.hooks.js";export{ThemeProvider}from"./theme/theme.provider.js";export{ThemeContext}from"./theme/theme.context.js";
|
|
1
|
+
export{blueRamp,generateRamp,greenRamp,neutralRamp,peachRamp,purpleRamp,redRamp,yellowRamp}from"./systems/BrandCore/colorRamps.js";export{componentTokens}from"./systems/BrandCore/componentTokens.js";export{tone1,tone2,tone3,tone3_ai_icon,tone3_border,tone3_lowOpacity_text,tone4,tone5}from"./systems/BrandCore/gradients.js";export{blue,darkNeutral,darkNeutralAlpha,green,neutral,neutralAlpha,peach,purple,red,yellow}from"./systems/BrandCore/primitiveColor.js";export{base,boxShadow,breakpoints,easing,elevation,elevationFilter,margin,padding,radius,space}from"./systems/BrandCore/primitiveVariables.js";export{semantic}from"./systems/BrandCore/semanticColor.js";export{FontWeight}from"./systems/BrandCore/types.js";export{fonts}from"./systems/BrandCore/typography.js";import"react/jsx-runtime";import"@mui/material";export{default as Icon,iconSizeMap}from"./systems/BrandCore/Icon/Icon.js";export{default as PlanFeatureTable}from"./systems/Marketing/PlanFeatureTable/PlanFeatureTable.js";export{default as PlanTierCard}from"./systems/Marketing/PlanTierCard/PlanTierCard.js";export{default as TickGroup}from"./systems/Marketing/TickGroup/TickGroup.js";export{default as AiContentContainer}from"./systems/Platform/AiContentContainer/AiContentContainer.js";export{default as AIInsight}from"./systems/Platform/AIInsight/AIInsight.js";export{default as AISummary}from"./systems/Platform/AISummary/AISummary.js";export{default as AIWrittenByLockUp}from"./systems/Platform/AIWrittenByLockUp/AiWrittenByLockUp.js";export{default as ArrowTextIndicator}from"./systems/Platform/ArrowTextIndicator/ArrowTextIndicator.js";export{default as AssetItem}from"./systems/Platform/AssetItem/AssetItem.js";export{default as AuthContainerSurface}from"./systems/Platform/AuthContainerSurface/AuthContainerSurface.js";export{default as ClipboardCopyingOverlay}from"./systems/Platform/ClipboardCopyingOverlay/ClipboardCopyingOverlay.js";export{default as CommentCard,getAuthorAvatarColor}from"./systems/Platform/CommentCard/CommentCard.js";export{default as DataPointInfo}from"./systems/Platform/DataPointInfo/DataPointInfo.js";export{default as DemographicSelectionSection}from"./systems/Platform/DemographicSelectionSection/DemographicSelectionSection.js";export{default as EmojiListItem}from"./systems/Platform/EmojiListItem/EmojiListItem.js";export{default as EmojiQuestionEditorOption}from"./systems/Platform/EmojiQuestionEditorOption/EmojiQuestionEditorOption.js";export{default as EmptyStateCard}from"./systems/Platform/EmptyStateCard/EmptyStateCard.js";export{default as ExtendedTestStatus}from"./systems/Platform/ExtendedTestStatus/ExtendedTestStatus.js";export{default as FilterCount}from"./systems/Platform/FilterCount/FilterCount.js";export{default as FilteredItemsCard}from"./systems/Platform/FilteredItemsCard/FilteredItemsCard.js";export{default as FilterGroupAccordion}from"./systems/Platform/FilterGroupAccordion/FilterGroupAccordion.js";export{default as FilterPyramidGraph}from"./systems/Platform/FilterPyramidGraph/FilterPyramidGraph.js";export{default as FilterRow}from"./systems/Platform/FilterRow/FilterRow.js";export{default as GraphBar}from"./systems/Platform/GraphBar/GraphBar.js";export{default as Header}from"./systems/Platform/Header/Header.js";export{default as KpiDataPopover}from"./systems/Platform/KpiDataPopover/KpiDataPopover.js";export{default as KpiIndicator}from"./systems/Platform/KpiIndicator/KpiIndicator.js";export{getKpiIndicatorColor,mapKpiColorSchemeByInteger}from"./systems/Platform/KpiIndicator/utils.js";export{default as LikertGraph}from"./systems/Platform/LikertGraph/LikertGraph.js";export{default as LoopItem}from"./systems/Platform/LoopItem/LoopItem.js";export{default as LoopItemEmpty}from"./systems/Platform/LoopItemEmpty/LoopItemEmpty.js";export{MiniEmojiGraph,MiniLikertGraph,MiniOpenQuestionGraph,MiniPunchGraph,MiniRankGraph,MiniSliderGraph}from"./systems/Platform/MiniResultCard/graphVariants.js";export{default as MiniResultCard}from"./systems/Platform/MiniResultCard/MiniResultCard.js";export{default as Navigation}from"./systems/Platform/Navigation/Navigation.js";export{default as OnboardingCard}from"./systems/Platform/OnboardingCard/OnboardingCard.js";export{default as PaginationControl}from"./systems/Platform/PaginationControl/PaginationControl.js";export{default as ProjectItem}from"./systems/Platform/ProjectItem/ProjectItem.js";export{default as ProjectItemEmpty}from"./systems/Platform/ProjectItem/ProjectItemEmpty.js";export{emailValidation}from"./utils/formValidation/email.js";export{DEFAULT_MAX_INPUT_LENGTH,chooseArticle,defaultInputValidation}from"./utils/formValidation/misc.js";export{passwordValidation}from"./utils/formValidation/password.js";export{buttonHeightMap,buttonInteraction,buttonPadding,getButtonSizing,getButtonTypography,getIconSizing,outlined,primary,secondary,subtle}from"./systems/WebCore/ButtonBase/Button.variant-helpers.js";export{backgroundCreator}from"./systems/WebCore/utils/backgroundCreator.js";export{default as AnnualController}from"./systems/WebCore/AnnualController/AnnualController.js";export{default as SelectItem}from"./systems/WebCore/SelectItem/SelectItem.js";export{default as Accordion}from"./systems/WebCore/Accordion/Accordion.js";export{default as FadeIn}from"./systems/WebCore/Animations/FadeIn.js";export{default as AuthFormHeader}from"./systems/WebCore/AuthFormHeader/AuthFormHeader.js";export{default as AutocompleteBaseField}from"./systems/WebCore/AutocompleteBaseField/AutocompleteBaseField.js";export{default as AutocompleteField}from"./systems/WebCore/AutocompleteField/AutocompleteField.js";export{default as Avatar}from"./systems/WebCore/Avatar/Avatar.js";export{default as AvatarGroup}from"./systems/WebCore/AvatarGroup/AvatarGroup.js";export{default as Badge}from"./systems/WebCore/Badge/Badge.js";export{default as BrandBadge}from"./systems/WebCore/BrandBadge/BrandBadge.js";export{default as Breadcrumb}from"./systems/WebCore/Breadcrumb/Breadcrumb.js";export{default as BulletGraphic}from"./systems/WebCore/BulletGraphic/BulletGraphic.js";export{default as Button}from"./systems/WebCore/Button/Button.js";export{default as ButtonBase}from"./systems/WebCore/ButtonBase/ButtonBase.js";export{default as ButtonTabGroup}from"./systems/WebCore/ButtonTabGroup/ButtonTabGroup.js";export{default as Checkbox}from"./systems/WebCore/Checkbox/Checkbox.js";import"./systems/WebCore/Checkbox/StyledCheckbox.js";export{default as CheckboxGroup}from"./systems/WebCore/CheckboxGroup/CheckboxGroup.js";export{default as ColorBackgroundContainer}from"./systems/WebCore/ColorBackgroundContainer/ColorBackgroundContainer.js";export{default as CreatableAutocomplete}from"./systems/WebCore/CreatableAutocomplete/CreatableAutocomplete.js";export{default as CustomField}from"./systems/WebCore/CustomField/CustomField.js";export{default as Differential}from"./systems/WebCore/Differential/Differential.js";export{default as DropdownMenu}from"./systems/WebCore/DropdownMenu/DropdownMenu.js";export{useDropdownMenu}from"./systems/WebCore/DropdownMenu/DropdownMenu.hook.js";export{default as EmojiWrapper}from"./systems/WebCore/EmojiWrapper/EmojiWrapper.js";export{default as ExpandableTypographyClamp}from"./systems/WebCore/ExpandableTypographyClamp/ExpandableTypographyClamp.js";export{default as Flag}from"./systems/WebCore/Flag/Flag.js";export{default as FormBuilder}from"./systems/WebCore/FormBuilder/FormBuilder.js";export{default as FormControlLabel}from"./systems/WebCore/FormControlLabel/FormControlLabel.js";export{default as FormGenerator}from"./systems/WebCore/FormGenerator/FormGenerator.js";export{default as GridOverlay}from"./systems/WebCore/GridOverlay/GridOverlay.js";export{default as Html}from"./systems/WebCore/Html/Html.js";export{default as HtmlParser}from"./systems/WebCore/HtmlParser/HtmlParser.js";export{default as IconButton}from"./systems/WebCore/IconButton/IconButton.js";import*as e from"./systems/WebCore/IconButtonBase/IconButton.variant-helpers.js";export{e as iconButtonHelpers};export{default as IconButtonBase}from"./systems/WebCore/IconButtonBase/IconButtonBase.js";export{default as IconButtonGroup}from"./systems/WebCore/IconButtonGroup/IconButtonGroup.js";export{default as Image}from"./systems/WebCore/Image/Image.js";export{default as InputFieldBase}from"./systems/WebCore/InputFieldBase/InputFieldBase.js";export{default as InputLabel}from"./systems/WebCore/InputLabel/InputLabel.js";export{default as InputLabelHelp}from"./systems/WebCore/InputLabelHelp/InputLabelHelp.js";export{default as Kbd}from"./systems/WebCore/KbdGroup/Kbd.js";export{default as KbdGroup}from"./systems/WebCore/KbdGroup/KbdGroup.js";export{default as KeyValueLabel}from"./systems/WebCore/KeyValueLabel/KeyValueLabel.js";export{default as Label}from"./systems/WebCore/Label/Label.js";export{default as Likert}from"./systems/WebCore/Likert/Likert.js";export{default as Link}from"./systems/WebCore/Link/Link.js";export{default as Loader}from"./systems/WebCore/Loader/Loader.js";export{default as Logo}from"./systems/WebCore/Logo/Logo.js";export{default as LoopsAiButton}from"./systems/WebCore/LoopsAiButton/LoopsAiButton.js";export{default as Markdown}from"./systems/WebCore/Markdown/Markdown.js";export{default as Menu}from"./systems/WebCore/Menu/Menu.js";export{ModalActionsWrapper}from"./systems/WebCore/ModalLayout/_partials/ModalActionsWrapper.js";export{ModalContentWrapper}from"./systems/WebCore/ModalLayout/_partials/ModalContentWrapper.js";export{default as ModalLayout}from"./systems/WebCore/ModalLayout/ModalLayout.js";export{default as NavigationButton}from"./systems/WebCore/NavigationButton/NavigationButton.js";export{default as Nudge}from"./systems/WebCore/Nudge/Nudge.js";export{Text}from"./systems/WebCore/Text/Text.js";import"./systems/WebCore/Nudge/NudgeButton.js";export{default as NumberField}from"./systems/WebCore/NumberField/NumberField.js";export{default as Pill}from"./systems/WebCore/Pill/Pill.js";export{default as Popper}from"./systems/WebCore/Popper/Popper.js";export{default as PoweredByWatermarkLogo}from"./systems/WebCore/PoweredByWatermarkLogo/PoweredByWatermarkLogo.js";export{default as Progress}from"./systems/WebCore/Progress/Progress.js";export{default as ProgressBar}from"./systems/WebCore/ProgressBar/ProgressBar.js";export{default as Radio}from"./systems/WebCore/Radio/Radio.js";import"./systems/WebCore/Radio/StyledRadio.js";export{default as RadioGroup}from"./systems/WebCore/RadioGroup/RadioGroup.js";export{default as Rank}from"./systems/WebCore/Rank/Rank.js";export{default as RichTextField}from"./systems/WebCore/RichTextField/RichTextField.js";export{default as Select}from"./systems/WebCore/Select/Select.js";export{default as Skeleton}from"./systems/WebCore/Skeleton/Skeleton.js";export{default as Slider}from"./systems/WebCore/Slider/Slider.js";export{default as SortableList}from"./systems/WebCore/SortableList/SortableList.js";export{default as StarRating}from"./systems/WebCore/StarRating/StarRating.js";export{default as Surface}from"./systems/WebCore/Surface/Surface.js";export{default as Switch}from"./systems/WebCore/Switch/Switch.js";export{default as Textarea}from"./systems/WebCore/Textarea/Textarea.js";export{default as TextBarDivider}from"./systems/WebCore/TextBarDivider/TextBarDivider.js";export{default as TextField}from"./systems/WebCore/TextField/TextField.js";export{default as Toast}from"./systems/WebCore/Toast/Toast.js";export{default as Tooltip}from"./systems/WebCore/Tooltip/Tooltip.js";export{default as TrialCard}from"./systems/WebCore/TrialCard/TrialCard.js";export{default as UserMenu}from"./systems/WebCore/UserMenu/UserMenu.js";export{default as VideoModal}from"./systems/WebCore/VideoModal/VideoModal.js";export{default as TintedSurface}from"./systems/WebCore/TintedSurface/TintedSurface.js";export{pluralise}from"./utils/pluralise.js";import"./systems/Platform/ProjectItem/_partials/ProjectItemBadge.js";import"merge-sx";import"./systems/Platform/ProjectItem/_partials/styledPartials.js";import"dayjs";export{default as QuestionLabel}from"./systems/Platform/QuestionBar/QuestionBar.js";export{default as QuestionBlock}from"./systems/Platform/QuestionBlock/QuestionBlock.js";export{default as QuestionSelector}from"./systems/Platform/QuestionSelector/QuestionSelector.js";export{default as ScrollIndicator}from"./systems/Platform/ScrollIndicator/ScrollIndicator.js";export{default as SearchInput}from"./systems/Platform/SearchInput/SearchInput.js";export{default as SectionHeader}from"./systems/Platform/SectionHeader/SectionHeader.js";export{default as SentimentArrow}from"./systems/Platform/SentimentArrow/SentimentArrow.js";import"./systems/Platform/SliderGraph/_partials/SliderGraphYAxis/SliderGraphYAxis.js";export{default as SliderGraph}from"./systems/Platform/SliderGraph/SliderGraph.js";import"react";export{default as GraphPopoverDataLayout}from"./systems/Platform/GraphPopoverDataLayout/GraphPopoverDataLayout.js";import"./systems/Platform/SliderGraph/_partials/StyledComponents.js";export{default as Tab}from"./systems/Platform/Tab/Tab.js";export{default as TestItemSkeleton}from"./systems/Platform/TestItem/_partials/TestItemSkeleton.js";export{default as TestItem}from"./systems/Platform/TestItem/TestItem.js";export{default as TestKPICard}from"./systems/Platform/TestKPICard/TestKPICard.js";export{default as TimeToFindGraph}from"./systems/Platform/TimeToFindGraph/TimeToFindGraph.js";export{default as TimeToFindResult}from"./systems/Platform/TimeToFindResult/TimeToFindResult.js";export{default as VideoControls}from"./systems/Platform/VideoControls/VideoControls.js";export{default as VideoControls2}from"./systems/Platform/VideoControls2/VideoControls2.js";export{default as VideoOverlayControl}from"./systems/Platform/VideoControls2/components/VideoOverlayControl/VideoOverlayControl.js";export{default as CommentFeedbackCard}from"./systems/Platform/CommentFeedbackCard/CommentFeedbackCard.js";export{default as LoopVideoNudge}from"./systems/Platform/LoopVideoNudge/LoopVideoNudge.js";export{default as PinchIndicator}from"./systems/Platform/PinchIndicator/PinchIndicator.js";export{useBreakpoint}from"./utils/breakpoint.hook.js";export{CDN_BASE,cdnAsset}from"./utils/cdn.js";export{compareArrayMembers}from"./utils/compareArrayMembers.js";export{isButton}from"./utils/isButton.js";export{isNumber}from"./utils/isNumber.js";export{isNumeric}from"./utils/isNumeric.js";export{useScreenSize}from"./utils/screen.hook.js";export{useKeyCombo}from"./utils/useKeyCombo.js";export{usePrevious}from"./utils/usePrevious.js";export{omitProps}from"./utils/shouldForwardProp.js";export{customTheme}from"./theme/theme.js";export{useTheme,useThemeBuilder}from"./theme/theme.hooks.js";export{ThemeProvider}from"./theme/theme.provider.js";export{ThemeContext}from"./theme/theme.context.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{red as e,green as t,purple as
|
|
1
|
+
import{red as e,green as t,purple as r,darkNeutral as i,darkNeutralAlpha as n,neutral as a,neutralAlpha as d}from"./primitiveColor.js";const s={light:{surface:{sunken:a[50],default:a[0],raised:a[0],overlay:a[0],scrim:d[5],transparent:d[.01]},interaction:{none:d[0],hover:d[1],press:d[2],hoverOnDark:d[3],pressOnDark:d[4],disabled:d[2],disabledMuted:d[1]},stroke:{default:a[200],strong:a[200],light:a[100],subtle:a[100],transparent:d[2],focus:r[500],disabled:a[100]},text:{primary:a[1e3],secondary:a[600],placeholder:a[400],disabled:a[300],link:r[800],linkHover:r[900],primaryInverted:a[0],secondaryInverted:a[400],placeholderInverted:a[600],disabledInverted:a[700],positive:t[800],negative:e[700],lockedWhite:a[0]},icon:{primary:a[1e3],secondary:a[600],disabled:a[300],primaryInverted:a[0],secondaryInverted:a[400],disabledInverted:a[700],positive:t[800],negative:e[700],lockedWhite:a[0],link:r[800],linkHover:r[900]},input:{default:a[0],disabled:"#FFFFFF80"},skeleton:{default:d[2]},data:{sentimentVeryPositive:t[300],sentimentPositive:t[100],sentimentNeutral:a[100],sentimentNegative:e[100],sentimentVeryNegative:e[300]}},dark:{surface:{sunken:i[0],default:i[50],raised:i[100],overlay:i[200],scrim:n[5],transparent:n[.01]},interaction:{none:n[0],hover:n[1],press:n[2],hoverOnDark:n[3],pressOnDark:n[4],disabled:n[2],disabledMuted:n[1]},stroke:{default:i[200],strong:i[200],light:i[100],subtle:i[100],transparent:n[2],focus:r[500],disabled:i[100]},text:{primary:i[1e3],secondary:i[700],placeholder:i[400],disabled:i[300],link:r[100],linkHover:r[0],primaryInverted:i[0],secondaryInverted:i[400],placeholderInverted:i[600],disabledInverted:i[700],positive:t[300],negative:e[300],lockedWhite:a[0]},icon:{primary:i[1e3],secondary:i[700],disabled:i[300],primaryInverted:i[0],secondaryInverted:i[400],disabledInverted:i[700],positive:t[300],negative:e[300],lockedWhite:a[0],link:r[100],linkHover:r[0]},input:{default:i[100],disabled:"#2A223C80"},skeleton:{default:n[2]},data:{sentimentVeryPositive:t[600],sentimentPositive:t[800],sentimentNeutral:i[100],sentimentNegative:e[800],sentimentVeryNegative:e[600]}}};export{s as semantic};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{jsx as
|
|
1
|
+
import{jsx as t,jsxs as e}from"react/jsx-runtime";import{Box as r}from"@mui/material";import"../AiContentContainer/AiContentContainer.js";import"react";import"../../../utils/formValidation/misc.js";import"../../BrandCore/Icon/Icon.js";import"../../BrandCore/primitiveVariables.js";import"../../WebCore/utils/typography.util.js";import"../../BrandCore/textures.js";import"../../WebCore/AnnualController/AnnualController.js";import"../../WebCore/SelectItem/SelectItem.js";import"../../WebCore/Accordion/Accordion.js";import"../../WebCore/Animations/FadeIn.js";import o from"../../WebCore/AuthFormHeader/AuthFormHeader.js";import"@mui/icons-material";import"../../WebCore/AutocompleteBaseField/_partials/AutocompleteListbox.js";import"../../WebCore/AutocompleteBaseField/_partials/StyledPopper.js";import"../../WebCore/AutocompleteBaseField/_partials/StyledAutocompleteField.js";import"../../WebCore/AutocompleteBaseField/_partials/AutocompleteChip.js";import"../../WebCore/AutocompleteBaseField/_partials/StyledAutocompleteInput.js";import"merge-sx";import"../../WebCore/Badge/Badge.js";import"../../WebCore/Breadcrumb/Breadcrumb.js";import i from"../../WebCore/Button/Button.js";import"../../WebCore/ButtonBase/ButtonBase.js";import"../../WebCore/Text/Text.js";import"../../WebCore/ButtonTabGroup/_partials/ActiveIndicator.js";import"../../WebCore/ButtonTabGroup/_partials/ButtonTabsWrapper.js";import"../../WebCore/ButtonTabGroup/_partials/TabButton.js";import"../../WebCore/Checkbox/StyledCheckbox.js";import"../../WebCore/InputFieldBase/InputFieldBase.js";import a from"../../WebCore/ColorBackgroundContainer/ColorBackgroundContainer.js";import"../../WebCore/CreatableAutocomplete/CreatableAutocomplete.js";import"../../WebCore/InputLabelBase/StyledInputLabelBase.js";import"../../WebCore/Differential/DifferentialContainer.js";import"../../WebCore/Differential/DifferentialRadio.js";import"../../WebCore/DropdownMenu/StyledMenu.js";import"../../WebCore/ExpandableTypographyClamp/ExpandableTypographyClamp.js";import"../../WebCore/FormBuilder/FormBuilder.js";import"../../WebCore/FormGenerator/FormGenerator.js";import"../../WebCore/GridOverlay/GridOverlay.js";import"html-react-parser";import"../../WebCore/IconButton/IconButton.js";import"../../WebCore/IconButtonBase/IconButtonBase.js";import"../../WebCore/IconButtonGroup/IconButtonGroup.js";import"../../WebCore/Image/Image.js";import"../../WebCore/KbdGroup/Kbd.js";import"../../WebCore/KbdGroup/KbdGroup.js";import"../../WebCore/KeyValueLabel/KeyValueLabel.js";import"../../WebCore/Label/Label.js";import"../../WebCore/Likert/LikertContainer.js";import"../../WebCore/Likert/LikertLabel.js";import"../../WebCore/Likert/LikertRadio.js";import"../../WebCore/Link/StyledLink.js";import"@lottiefiles/dotlottie-react";import"../../WebCore/LoopsAiButton/LoopsAiButton.js";import"markdown-to-jsx";import"material-ui-popup-state/hooks";import"../../WebCore/Surface/Surface.js";import"../../WebCore/Menu/MenuItem.js";import"../../WebCore/ModalLayout/_partials/ModalActionsWrapper.js";import"../../WebCore/ModalLayout/_partials/ModalContentWrapper.js";import"../../WebCore/NavigationButton/NavigationButton.js";import"../../WebCore/Nudge/NudgeButton.js";import"../../WebCore/NumberField/NumberField.js";import"../../BrandCore/colorRamps.js";import"../../BrandCore/semanticColor.js";import"../../BrandCore/types.js";import"../../BrandCore/typography.js";import"../../WebCore/Progress/Progress.js";import"../../WebCore/Pill/StyledPill.js";import"../../WebCore/ProgressBar/ProgressBar.js";import"../../WebCore/Radio/StyledRadio.js";import"../../WebCore/SortableList/components/SortableItem/SortableItem.js";import"../../WebCore/Select/StyledSelect.js";import"../../WebCore/RankItem/_partials/LayoutComponents/LayoutComponents.js";import"../../WebCore/RankItem/_partials/RankItemLabel/RankItemLabel.js";import"../../WebCore/SortableList/SortableList.js";import"../../WebCore/SortableList/components/SortableOverlay/SortableOverlay.js";import"@tiptap/extension-placeholder";import"@tiptap/starter-kit";import"mui-tiptap";import"../../WebCore/RichTextField/StyledRichTextEditor.js";import"../../WebCore/Skeleton/Skeleton.js";import"../../WebCore/Slider/StyledSlider.js";import"../../WebCore/StarRating/StarRating.js";import"../../WebCore/Switch/StyledSwitch.js";import"../../WebCore/Textarea/Textarea.js";import"../../WebCore/TrialCard/TrialCardContainers.js";import"../../WebCore/TrialCard/TrialPill.js";import"../../WebCore/UserMenu/UserMenuButton.js";import"../../WebCore/VideoModal/VideoModal.js";import"../../WebCore/TintedSurface/TintedSurface.js";import"../AISummary/AISummary.js";import"../ArrowTextIndicator/ArrowTextIndicator.js";import"../AssetItem/_partials/CoverTypeIndicator.js";import"../AssetItem/_partials/ImageTile.js";import"../AssetItem/_partials/styledPartials.js";import p from"../AuthContainerSurface/AuthContainerSurface.js";import"@mui/icons-material/CameraAlt";import"@mui/material/styles";import"../CommentCard/CommentCard.js";import"../DataPointInfo/DataPointInfo.js";import"../DemographicSelectionSection/DemographicSelectionSection.js";import"../EmojiListItem/_partials/StyledSurface.js";import"../EmojiQuestionEditorOption/_partials/StyledSurface.js";import"../TestStatus/TestStatus.js";import"@number-flow/react";import"../ExtendedTestStatus/_partials/StyledBox.js";import"../FilterCount/FilterCount.js";import"../FilteredItemsCard/FilteredItemsCard.js";import"../FilterGroupAccordion/FilterGroupAccordion.js";import"../FilterPyramidGraph/FilterPyramidGraph.js";import"../GraphBar/_partials/StyledListItemButton/StyledLisItemButton.js";import"../GraphBar/_partials/StyledLinearProgress/StyledLinearProgress.js";import"../Header/Header.js";import"../KpiDataPopover/KpiDetails.js";import"../KpiDataPopover/QuestionStatsCard.js";import"../LikertGraph/LikertGraph.js";import"../LoopItem/_partials/styledPartials.js";import"../LoopItemEmpty/LoopItemEmpty.js";import"../SliderGraph/_partials/SliderGraphYAxis/SliderGraphYAxis.js";import"@mui/material/Box";import"@mui/material/Stack";import"../SliderGraph/_partials/StyledComponents.js";import"../MiniResultCard/MiniResultCard.js";import"../Navigation/Navigation.js";import"../OnboardingCard/StyledOnboardingCard.js";import"@mui/lab";import"@mui/lab/Timeline";import"motion/react";import"../OnboardingCard/StyledTimeline.js";import"../ProjectItem/_partials/ProjectItemBadge.js";import"../ProjectItem/_partials/styledPartials.js";import"dayjs";import"../QuestionBar/QuestionBar.js";import"../QuestionBlock/QuestionBlock.js";import"../QuestionSelector/QuestionSelector.js";import"../SearchInput/SearchInput.js";import"../SectionHeader/SectionHeader.js";import"../SentimentArrow/SentimentArrow.js";import"../Tab/Tab.js";import"../TestItem/_partials/Root.js";import"react-truncate-list";import"../TestKPICard/TestKPICard.js";import"../TimeToFindGraph/_partials/StyledComponents.js";import"../TimeToFindResult/_partials/StyledComponents.js";import"../VideoControls/VideoControls.js";import"../VideoControls2/VideoControls2.js";import"../VideoControls2/components/VideoOverlayControl/VideoOverlayControl.js";import"../LoopVideoNudge/LoopVideoNudge.js";import"../PinchIndicator/PinchIndicator.js";const s=()=>t(a,{sx:{display:"flex",justifyContent:"center",py:[2,5,5]},gradient:"tone4",children:e(p,{variation:"overlay",children:[t(o,{headerText:"Link expired",subText:"Your reset password link has expired. Return to log in and try again."}),t(r,{sx:{width:1},children:t(i,{fullWidth:!0,variation:"outlined",children:"Return to Log in"})})]})});export{s as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{jsx as e,jsxs as t}from"react/jsx-runtime";import{ArrowBack as r}from"@mui/icons-material";import{useTheme as o,Box as i}from"@mui/material";import"../AiContentContainer/AiContentContainer.js";import"react";import"../../../utils/formValidation/misc.js";import"../../BrandCore/Icon/Icon.js";import"../../BrandCore/primitiveVariables.js";import"../../WebCore/utils/typography.util.js";import"../../BrandCore/textures.js";import"../../WebCore/AnnualController/AnnualController.js";import"../../WebCore/SelectItem/SelectItem.js";import"../../WebCore/Accordion/Accordion.js";import"../../WebCore/Animations/FadeIn.js";import a from"../../WebCore/AuthFormHeader/AuthFormHeader.js";import"../../WebCore/AutocompleteBaseField/_partials/AutocompleteListbox.js";import"../../WebCore/AutocompleteBaseField/_partials/StyledPopper.js";import"../../WebCore/AutocompleteBaseField/_partials/StyledAutocompleteField.js";import"../../WebCore/AutocompleteBaseField/_partials/AutocompleteChip.js";import"../../WebCore/AutocompleteBaseField/_partials/StyledAutocompleteInput.js";import"merge-sx";import"../../WebCore/Badge/Badge.js";import"../../WebCore/Breadcrumb/Breadcrumb.js";import s from"../../WebCore/Button/Button.js";import"../../WebCore/ButtonBase/ButtonBase.js";import{Text as m}from"../../WebCore/Text/Text.js";import"../../WebCore/ButtonTabGroup/_partials/ActiveIndicator.js";import"../../WebCore/ButtonTabGroup/_partials/ButtonTabsWrapper.js";import"../../WebCore/ButtonTabGroup/_partials/TabButton.js";import"../../WebCore/Checkbox/StyledCheckbox.js";import"../../WebCore/InputFieldBase/InputFieldBase.js";import p from"../../WebCore/ColorBackgroundContainer/ColorBackgroundContainer.js";import"../../WebCore/CreatableAutocomplete/CreatableAutocomplete.js";import"../../WebCore/InputLabelBase/StyledInputLabelBase.js";import"../../WebCore/Differential/DifferentialContainer.js";import"../../WebCore/Differential/DifferentialRadio.js";import"../../WebCore/DropdownMenu/StyledMenu.js";import"../../WebCore/ExpandableTypographyClamp/ExpandableTypographyClamp.js";import"../../WebCore/FormBuilder/FormBuilder.js";import n from"../../WebCore/FormGenerator/FormGenerator.js";import"../../WebCore/GridOverlay/GridOverlay.js";import"html-react-parser";import"../../WebCore/IconButton/IconButton.js";import"../../WebCore/IconButtonBase/IconButtonBase.js";import"../../WebCore/IconButtonGroup/IconButtonGroup.js";import"../../WebCore/Image/Image.js";import"../../WebCore/KbdGroup/Kbd.js";import"../../WebCore/KbdGroup/KbdGroup.js";import"../../WebCore/KeyValueLabel/KeyValueLabel.js";import"../../WebCore/Label/Label.js";import"../../WebCore/Likert/LikertContainer.js";import"../../WebCore/Likert/LikertLabel.js";import"../../WebCore/Likert/LikertRadio.js";import l from"../../WebCore/Link/Link.js";import"@lottiefiles/dotlottie-react";import"../../WebCore/LoopsAiButton/LoopsAiButton.js";import"markdown-to-jsx";import"material-ui-popup-state/hooks";import"../../WebCore/Surface/Surface.js";import"../../WebCore/Menu/MenuItem.js";import"../../WebCore/ModalLayout/_partials/ModalActionsWrapper.js";import"../../WebCore/ModalLayout/_partials/ModalContentWrapper.js";import"../../WebCore/NavigationButton/NavigationButton.js";import"../../WebCore/Nudge/NudgeButton.js";import"../../WebCore/NumberField/NumberField.js";import"../../BrandCore/colorRamps.js";import"../../BrandCore/semanticColor.js";import"../../BrandCore/types.js";import"../../BrandCore/typography.js";import"../../WebCore/Progress/Progress.js";import"../../WebCore/Pill/StyledPill.js";import"../../WebCore/ProgressBar/ProgressBar.js";import"../../WebCore/Radio/StyledRadio.js";import"../../WebCore/SortableList/components/SortableItem/SortableItem.js";import"../../WebCore/Select/StyledSelect.js";import"../../WebCore/RankItem/_partials/LayoutComponents/LayoutComponents.js";import"../../WebCore/RankItem/_partials/RankItemLabel/RankItemLabel.js";import"../../WebCore/SortableList/SortableList.js";import"../../WebCore/SortableList/components/SortableOverlay/SortableOverlay.js";import"@tiptap/extension-placeholder";import"@tiptap/starter-kit";import"mui-tiptap";import"../../WebCore/RichTextField/StyledRichTextEditor.js";import"../../WebCore/Skeleton/Skeleton.js";import"../../WebCore/Slider/StyledSlider.js";import"../../WebCore/StarRating/StarRating.js";import"../../WebCore/Switch/StyledSwitch.js";import"../../WebCore/Textarea/Textarea.js";import"../../WebCore/TrialCard/TrialCardContainers.js";import"../../WebCore/TrialCard/TrialPill.js";import"../../WebCore/UserMenu/UserMenuButton.js";import"../../WebCore/VideoModal/VideoModal.js";import"../../WebCore/TintedSurface/TintedSurface.js";import"../AISummary/AISummary.js";import"../ArrowTextIndicator/ArrowTextIndicator.js";import"../AssetItem/_partials/CoverTypeIndicator.js";import"../AssetItem/_partials/ImageTile.js";import"../AssetItem/_partials/styledPartials.js";import d from"../AuthContainerSurface/AuthContainerSurface.js";import"@mui/icons-material/CameraAlt";import"@mui/material/styles";import"../CommentCard/CommentCard.js";import"../DataPointInfo/DataPointInfo.js";import"../DemographicSelectionSection/DemographicSelectionSection.js";import"../EmojiListItem/_partials/StyledSurface.js";import"../EmojiQuestionEditorOption/_partials/StyledSurface.js";import"../TestStatus/TestStatus.js";import"@number-flow/react";import"../ExtendedTestStatus/_partials/StyledBox.js";import"../FilterCount/FilterCount.js";import"../FilteredItemsCard/FilteredItemsCard.js";import"../FilterGroupAccordion/FilterGroupAccordion.js";import"../FilterPyramidGraph/FilterPyramidGraph.js";import"../GraphBar/_partials/StyledListItemButton/StyledLisItemButton.js";import"../GraphBar/_partials/StyledLinearProgress/StyledLinearProgress.js";import"../Header/Header.js";import"../KpiDataPopover/KpiDetails.js";import"../KpiDataPopover/QuestionStatsCard.js";import"../LikertGraph/LikertGraph.js";import"../LoopItem/_partials/styledPartials.js";import"../LoopItemEmpty/LoopItemEmpty.js";import"../SliderGraph/_partials/SliderGraphYAxis/SliderGraphYAxis.js";import"@mui/material/Box";import"@mui/material/Stack";import"../SliderGraph/_partials/StyledComponents.js";import"../MiniResultCard/MiniResultCard.js";import"../Navigation/Navigation.js";import"../OnboardingCard/StyledOnboardingCard.js";import"@mui/lab";import"@mui/lab/Timeline";import"motion/react";import"../OnboardingCard/StyledTimeline.js";import"../ProjectItem/_partials/ProjectItemBadge.js";import"../ProjectItem/_partials/styledPartials.js";import"dayjs";import"../QuestionBar/QuestionBar.js";import"../QuestionBlock/QuestionBlock.js";import"../QuestionSelector/QuestionSelector.js";import"../SearchInput/SearchInput.js";import"../SectionHeader/SectionHeader.js";import"../SentimentArrow/SentimentArrow.js";import"../Tab/Tab.js";import"react-truncate-list";import"../TestKPICard/TestKPICard.js";import"../TimeToFindGraph/_partials/StyledComponents.js";import"../TimeToFindResult/_partials/StyledComponents.js";import"../VideoControls/VideoControls.js";import"../VideoControls2/VideoControls2.js";import"../VideoControls2/components/VideoOverlayControl/VideoOverlayControl.js";import"../LoopVideoNudge/LoopVideoNudge.js";import"../PinchIndicator/PinchIndicator.js";const u=()=>{const u=o();return e(p,{sx:{display:"flex",justifyContent:"center",py:[2,5,5]},gradient:"tone4",children:t(d,{variation:"overlay",headContent:e(s,{sizing:"sm",variation:"subtle",startIcon:e(r,{}),children:"Back"}),children:[e(a,{logo:!1,headerText:"Two-factor authentication",subText:t(m,{size:"md",align:"center",children:["An email with a verification code has been sent to"," ",e("strong",{children:"[registered-email-address]"}),". Enter the code to continue."]})}),e(i,{sx:{mb:u.spacing(u.custom.margin.lg),width:1},children:e(n,{formConfig:{reValidateMode:"onChange",styleOverrides:{sxStack:{gap:u.spacing(u.custom.margin.sm)},sxForm:{width:1},sxButtons:{mt:u.spacing(u.custom.margin.md)}},fields:[{fieldType:"textfield",name:"verificationCode",fullWidth:!0,label:"Verification code",validation:{required:{value:!0,message:"Please enter your 6 digit code"}}}]},onFormSubmit:()=>console.warn("submitted"),submitButton:e(s,{fullWidth:!0,type:"submit",children:"Verify"})})}),t(m,{align:"center",size:"sm",children:["Having trouble logging in? ",e(l,{children:"Contact support"}),"."]})]})})};export{u as default};
|
|
1
|
+
import{jsx as e,jsxs as t}from"react/jsx-runtime";import{ArrowBack as r}from"@mui/icons-material";import{useTheme as o,Box as i}from"@mui/material";import"../AiContentContainer/AiContentContainer.js";import"react";import"../../../utils/formValidation/misc.js";import"../../BrandCore/Icon/Icon.js";import"../../BrandCore/primitiveVariables.js";import"../../WebCore/utils/typography.util.js";import"../../BrandCore/textures.js";import"../../WebCore/AnnualController/AnnualController.js";import"../../WebCore/SelectItem/SelectItem.js";import"../../WebCore/Accordion/Accordion.js";import"../../WebCore/Animations/FadeIn.js";import a from"../../WebCore/AuthFormHeader/AuthFormHeader.js";import"../../WebCore/AutocompleteBaseField/_partials/AutocompleteListbox.js";import"../../WebCore/AutocompleteBaseField/_partials/StyledPopper.js";import"../../WebCore/AutocompleteBaseField/_partials/StyledAutocompleteField.js";import"../../WebCore/AutocompleteBaseField/_partials/AutocompleteChip.js";import"../../WebCore/AutocompleteBaseField/_partials/StyledAutocompleteInput.js";import"merge-sx";import"../../WebCore/Badge/Badge.js";import"../../WebCore/Breadcrumb/Breadcrumb.js";import s from"../../WebCore/Button/Button.js";import"../../WebCore/ButtonBase/ButtonBase.js";import{Text as m}from"../../WebCore/Text/Text.js";import"../../WebCore/ButtonTabGroup/_partials/ActiveIndicator.js";import"../../WebCore/ButtonTabGroup/_partials/ButtonTabsWrapper.js";import"../../WebCore/ButtonTabGroup/_partials/TabButton.js";import"../../WebCore/Checkbox/StyledCheckbox.js";import"../../WebCore/InputFieldBase/InputFieldBase.js";import p from"../../WebCore/ColorBackgroundContainer/ColorBackgroundContainer.js";import"../../WebCore/CreatableAutocomplete/CreatableAutocomplete.js";import"../../WebCore/InputLabelBase/StyledInputLabelBase.js";import"../../WebCore/Differential/DifferentialContainer.js";import"../../WebCore/Differential/DifferentialRadio.js";import"../../WebCore/DropdownMenu/StyledMenu.js";import"../../WebCore/ExpandableTypographyClamp/ExpandableTypographyClamp.js";import"../../WebCore/FormBuilder/FormBuilder.js";import n from"../../WebCore/FormGenerator/FormGenerator.js";import"../../WebCore/GridOverlay/GridOverlay.js";import"html-react-parser";import"../../WebCore/IconButton/IconButton.js";import"../../WebCore/IconButtonBase/IconButtonBase.js";import"../../WebCore/IconButtonGroup/IconButtonGroup.js";import"../../WebCore/Image/Image.js";import"../../WebCore/KbdGroup/Kbd.js";import"../../WebCore/KbdGroup/KbdGroup.js";import"../../WebCore/KeyValueLabel/KeyValueLabel.js";import"../../WebCore/Label/Label.js";import"../../WebCore/Likert/LikertContainer.js";import"../../WebCore/Likert/LikertLabel.js";import"../../WebCore/Likert/LikertRadio.js";import l from"../../WebCore/Link/Link.js";import"@lottiefiles/dotlottie-react";import"../../WebCore/LoopsAiButton/LoopsAiButton.js";import"markdown-to-jsx";import"material-ui-popup-state/hooks";import"../../WebCore/Surface/Surface.js";import"../../WebCore/Menu/MenuItem.js";import"../../WebCore/ModalLayout/_partials/ModalActionsWrapper.js";import"../../WebCore/ModalLayout/_partials/ModalContentWrapper.js";import"../../WebCore/NavigationButton/NavigationButton.js";import"../../WebCore/Nudge/NudgeButton.js";import"../../WebCore/NumberField/NumberField.js";import"../../BrandCore/colorRamps.js";import"../../BrandCore/semanticColor.js";import"../../BrandCore/types.js";import"../../BrandCore/typography.js";import"../../WebCore/Progress/Progress.js";import"../../WebCore/Pill/StyledPill.js";import"../../WebCore/ProgressBar/ProgressBar.js";import"../../WebCore/Radio/StyledRadio.js";import"../../WebCore/SortableList/components/SortableItem/SortableItem.js";import"../../WebCore/Select/StyledSelect.js";import"../../WebCore/RankItem/_partials/LayoutComponents/LayoutComponents.js";import"../../WebCore/RankItem/_partials/RankItemLabel/RankItemLabel.js";import"../../WebCore/SortableList/SortableList.js";import"../../WebCore/SortableList/components/SortableOverlay/SortableOverlay.js";import"@tiptap/extension-placeholder";import"@tiptap/starter-kit";import"mui-tiptap";import"../../WebCore/RichTextField/StyledRichTextEditor.js";import"../../WebCore/Skeleton/Skeleton.js";import"../../WebCore/Slider/StyledSlider.js";import"../../WebCore/StarRating/StarRating.js";import"../../WebCore/Switch/StyledSwitch.js";import"../../WebCore/Textarea/Textarea.js";import"../../WebCore/TrialCard/TrialCardContainers.js";import"../../WebCore/TrialCard/TrialPill.js";import"../../WebCore/UserMenu/UserMenuButton.js";import"../../WebCore/VideoModal/VideoModal.js";import"../../WebCore/TintedSurface/TintedSurface.js";import"../AISummary/AISummary.js";import"../ArrowTextIndicator/ArrowTextIndicator.js";import"../AssetItem/_partials/CoverTypeIndicator.js";import"../AssetItem/_partials/ImageTile.js";import"../AssetItem/_partials/styledPartials.js";import d from"../AuthContainerSurface/AuthContainerSurface.js";import"@mui/icons-material/CameraAlt";import"@mui/material/styles";import"../CommentCard/CommentCard.js";import"../DataPointInfo/DataPointInfo.js";import"../DemographicSelectionSection/DemographicSelectionSection.js";import"../EmojiListItem/_partials/StyledSurface.js";import"../EmojiQuestionEditorOption/_partials/StyledSurface.js";import"../TestStatus/TestStatus.js";import"@number-flow/react";import"../ExtendedTestStatus/_partials/StyledBox.js";import"../FilterCount/FilterCount.js";import"../FilteredItemsCard/FilteredItemsCard.js";import"../FilterGroupAccordion/FilterGroupAccordion.js";import"../FilterPyramidGraph/FilterPyramidGraph.js";import"../GraphBar/_partials/StyledListItemButton/StyledLisItemButton.js";import"../GraphBar/_partials/StyledLinearProgress/StyledLinearProgress.js";import"../Header/Header.js";import"../KpiDataPopover/KpiDetails.js";import"../KpiDataPopover/QuestionStatsCard.js";import"../LikertGraph/LikertGraph.js";import"../LoopItem/_partials/styledPartials.js";import"../LoopItemEmpty/LoopItemEmpty.js";import"../SliderGraph/_partials/SliderGraphYAxis/SliderGraphYAxis.js";import"@mui/material/Box";import"@mui/material/Stack";import"../SliderGraph/_partials/StyledComponents.js";import"../MiniResultCard/MiniResultCard.js";import"../Navigation/Navigation.js";import"../OnboardingCard/StyledOnboardingCard.js";import"@mui/lab";import"@mui/lab/Timeline";import"motion/react";import"../OnboardingCard/StyledTimeline.js";import"../ProjectItem/_partials/ProjectItemBadge.js";import"../ProjectItem/_partials/styledPartials.js";import"dayjs";import"../QuestionBar/QuestionBar.js";import"../QuestionBlock/QuestionBlock.js";import"../QuestionSelector/QuestionSelector.js";import"../SearchInput/SearchInput.js";import"../SectionHeader/SectionHeader.js";import"../SentimentArrow/SentimentArrow.js";import"../Tab/Tab.js";import"../TestItem/_partials/Root.js";import"react-truncate-list";import"../TestKPICard/TestKPICard.js";import"../TimeToFindGraph/_partials/StyledComponents.js";import"../TimeToFindResult/_partials/StyledComponents.js";import"../VideoControls/VideoControls.js";import"../VideoControls2/VideoControls2.js";import"../VideoControls2/components/VideoOverlayControl/VideoOverlayControl.js";import"../LoopVideoNudge/LoopVideoNudge.js";import"../PinchIndicator/PinchIndicator.js";const u=()=>{const u=o();return e(p,{sx:{display:"flex",justifyContent:"center",py:[2,5,5]},gradient:"tone4",children:t(d,{variation:"overlay",headContent:e(s,{sizing:"sm",variation:"subtle",startIcon:e(r,{}),children:"Back"}),children:[e(a,{logo:!1,headerText:"Two-factor authentication",subText:t(m,{size:"md",align:"center",children:["An email with a verification code has been sent to"," ",e("strong",{children:"[registered-email-address]"}),". Enter the code to continue."]})}),e(i,{sx:{mb:u.spacing(u.custom.margin.lg),width:1},children:e(n,{formConfig:{reValidateMode:"onChange",styleOverrides:{sxStack:{gap:u.spacing(u.custom.margin.sm)},sxForm:{width:1},sxButtons:{mt:u.spacing(u.custom.margin.md)}},fields:[{fieldType:"textfield",name:"verificationCode",fullWidth:!0,label:"Verification code",validation:{required:{value:!0,message:"Please enter your 6 digit code"}}}]},onFormSubmit:()=>console.warn("submitted"),submitButton:e(s,{fullWidth:!0,type:"submit",children:"Verify"})})}),t(m,{align:"center",size:"sm",children:["Having trouble logging in? ",e(l,{children:"Contact support"}),"."]})]})})};export{u as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{jsx as e,jsxs as t,Fragment as r}from"react/jsx-runtime";import{useTheme as o,Stack as i,Box as a}from"@mui/material";import s from"@number-flow/react";import{mergeSx as n}from"merge-sx";import{useState as l}from"react";import{TruncatedList as p}from"react-truncate-list";import m from"../../BrandCore/Icon/Icon.js";import"../../../utils/formValidation/misc.js";import"../../BrandCore/primitiveVariables.js";import"../../WebCore/utils/typography.util.js";import"../../BrandCore/textures.js";import"../../WebCore/AnnualController/AnnualController.js";import"../../WebCore/SelectItem/SelectItem.js";import"../../WebCore/Accordion/Accordion.js";import"../../WebCore/Animations/FadeIn.js";import{Text as d}from"../../WebCore/Text/Text.js";import"@mui/icons-material";import"../../WebCore/AutocompleteBaseField/_partials/AutocompleteListbox.js";import"../../WebCore/AutocompleteBaseField/_partials/StyledPopper.js";import"../../WebCore/AutocompleteBaseField/_partials/StyledAutocompleteField.js";import"../../WebCore/AutocompleteBaseField/_partials/AutocompleteChip.js";import"../../WebCore/AutocompleteBaseField/_partials/StyledAutocompleteInput.js";import"../../WebCore/Badge/Badge.js";import"../../WebCore/Breadcrumb/Breadcrumb.js";import"../../WebCore/Button/Button.js";import"../../WebCore/ButtonBase/ButtonBase.js";import"../../WebCore/ButtonTabGroup/_partials/ActiveIndicator.js";import"../../WebCore/ButtonTabGroup/_partials/ButtonTabsWrapper.js";import"../../WebCore/ButtonTabGroup/_partials/TabButton.js";import"../../WebCore/Checkbox/StyledCheckbox.js";import"../../WebCore/InputFieldBase/InputFieldBase.js";import"../../WebCore/CreatableAutocomplete/CreatableAutocomplete.js";import"../../WebCore/InputLabelBase/StyledInputLabelBase.js";import"../../WebCore/Differential/DifferentialContainer.js";import"../../WebCore/Differential/DifferentialRadio.js";import"../../WebCore/DropdownMenu/StyledMenu.js";import"../../WebCore/ExpandableTypographyClamp/ExpandableTypographyClamp.js";import"../../WebCore/FormBuilder/FormBuilder.js";import"../../WebCore/FormGenerator/FormGenerator.js";import"../../WebCore/GridOverlay/GridOverlay.js";import"html-react-parser";import c from"../../WebCore/IconButton/IconButton.js";import"../../WebCore/IconButtonBase/IconButtonBase.js";import"../../WebCore/IconButtonGroup/IconButtonGroup.js";import"../../WebCore/Image/Image.js";import"../../WebCore/KbdGroup/Kbd.js";import"../../WebCore/KbdGroup/KbdGroup.js";import u from"../../WebCore/KeyValueLabel/KeyValueLabel.js";import b from"../../WebCore/Label/Label.js";import"../../WebCore/Likert/LikertContainer.js";import"../../WebCore/Likert/LikertLabel.js";import"../../WebCore/Likert/LikertRadio.js";import"../../WebCore/Link/StyledLink.js";import"@lottiefiles/dotlottie-react";import"../../WebCore/LoopsAiButton/LoopsAiButton.js";import"markdown-to-jsx";import g from"../../WebCore/Menu/Menu.js";import"../../WebCore/ModalLayout/_partials/ModalActionsWrapper.js";import"../../WebCore/ModalLayout/_partials/ModalContentWrapper.js";import C from"../../WebCore/Surface/Surface.js";import"../../WebCore/NavigationButton/NavigationButton.js";import"material-ui-popup-state/hooks";import"../../WebCore/Nudge/NudgeButton.js";import"../../WebCore/NumberField/NumberField.js";import"../../BrandCore/colorRamps.js";import"../../BrandCore/semanticColor.js";import"../../BrandCore/types.js";import"../../BrandCore/typography.js";import"../../WebCore/Progress/Progress.js";import"../../WebCore/Pill/StyledPill.js";import x from"../../WebCore/ProgressBar/ProgressBar.js";import"../../WebCore/Radio/StyledRadio.js";import"../../WebCore/SortableList/components/SortableItem/SortableItem.js";import"../../WebCore/Select/StyledSelect.js";import"../../WebCore/RankItem/_partials/LayoutComponents/LayoutComponents.js";import"../../WebCore/RankItem/_partials/RankItemLabel/RankItemLabel.js";import"../../WebCore/SortableList/SortableList.js";import"../../WebCore/SortableList/components/SortableOverlay/SortableOverlay.js";import"@tiptap/extension-placeholder";import"@tiptap/starter-kit";import"mui-tiptap";import"../../WebCore/RichTextField/StyledRichTextEditor.js";import j from"../../WebCore/Skeleton/Skeleton.js";import"../../WebCore/Slider/StyledSlider.js";import"../../WebCore/StarRating/StarRating.js";import"../../WebCore/Switch/StyledSwitch.js";import"../../WebCore/Textarea/Textarea.js";import"../../WebCore/TrialCard/TrialCardContainers.js";import"../../WebCore/TrialCard/TrialPill.js";import"../../WebCore/UserMenu/UserMenuButton.js";import"../../WebCore/VideoModal/VideoModal.js";import"../../WebCore/TintedSurface/TintedSurface.js";import y from"../TestStatus/TestStatus.js";const h=({animated:s=!0,status:h,menuItems:B,title:S,tags:I,stats:T,user:k,slotProps:w,loading:v=!1,...L})=>{const A=o(),[N,R]=l(!1);return e(C,{variation:"raised",borderradius:"lg",...L,sx:n({padding:e=>e.spacing(e.custom.padding.md),border:e=>`1px solid ${e.custom.palette.stroke.light}`,width:"100%",cursor:"pointer","&:hover .TestItem__Menu":{opacity:1}},L.sx),children:t(i,{component:"article",sx:{gap:2},children:[t(i,{component:"header",sx:{gap:1,justifyContent:"space-between"},children:[t(i,{direction:"row",sx:{justifyContent:"space-between",alignItems:"center",gap:1},children:[v?e(j,{sx:{width:90,height:32}}):e(y,{status:h,...w?.status}),!v&&Boolean(B?.length)&&e(g,{trigger:e(c,{icon:e(m,{name:"more-horizontal",size:16}),variation:"outlined",className:"TestItem__Menu",sx:{width:28,aspectRatio:1,borderRadius:"100% !important",transition:"opacity 0.3s ease",opacity:0,"&:focus":{background:e=>`${e.custom.palette.interaction.press} !important`,opacity:1}}}),bindOn:["toggle"],menuItems:B,width:128,offset:[0,8],placement:"bottom-end",...w?.menu})]}),v?e(j,{}):e(d,{size:"xl",bold:!0,...w?.title,sx:w?.title?.sx,children:S})]}),e(a,{children:v?e(a,{sx:{display:"flex",flexDirection:"row",gap:.5},children:[...new Array(3).fill(void 0)].map((t,r)=>e(j,{sx:{maxWidth:50}},`test-item-skeleton-${r}`))}):Boolean(I?.length)&&e(p,{style:{display:"flex",flexWrap:"wrap",alignItems:"center",maxHeight:56,gap:A.m.xs,listStyleType:"none",paddingInlineStart:0,margin:0,...N&&{maxHeight:"none"}},alwaysShowTruncator:N,renderTruncator:({hiddenItemsCount:t})=>t>0?e(b,{body:`+${t}`,weight:"light",onClick:e=>{e.stopPropagation(),R(!0)},...w?.tagsExpand,sx:n({background:e=>e.custom.palette.neutral[50]},w?.tagsExpand?.sx)}):e(c,{sizing:"sm",icon:e(m,{name:"chevron-up",size:16}),onClick:e=>{e.stopPropagation(),R(!1)},...w?.tagsCollapse,sx:n({color:e=>e.custom.palette.icon.primary},w?.tagsCollapse?.sx)}),children:I.map(({category:t,selection:r})=>e(u,{keyString:t,valueString:r},t))})}),!v&&T?.progress&&e(C,{variation:"sunken",borderradius:"md",sx:{border:e=>`1px solid ${e.custom.palette.neutral[100]}`,padding:e=>e.spacing(e.custom.padding.md)},children:t(i,{sx:{gap:2},children:[e(x,{variation:"determinate",value:T.progress.percentage}),t(a,{sx:[{gap:{sm:.5,md:1},justifyContent:"stretch"},e=>({display:"grid",[e.breakpoints.up("lg")]:{gridTemplateColumns:"repeat(3, 1fr)"},[e.breakpoints.down("lg")]:{gridTemplateColumns:"auto"},[e.containerQueries.up("lg")]:{gridTemplateColumns:"repeat(3, 1fr)"},[e.containerQueries.down("lg")]:{gridTemplateColumns:"auto"}})],children:[e(a,{sx:{flexBasis:0,flexGrow:1},children:e(W,{animated:s,label:"Completed",primaryText:T.progress.completed.toString(),secondaryText:`of ${T.progress.total}`})}),e(a,{sx:{flexBasis:0,flexGrow:1},children:e(W,{animated:s,label:"Incomplete",primaryText:T.progress.incomplete.toString(),secondaryText:`${T.progress.incompletePercentage}%`})}),e(a,{sx:{flexBasis:0,flexGrow:1},children:e(W,{animated:s,label:"Duration",primaryText:T.progress.averageDuration,secondaryText:"average"})})]})]})}),t(a,{component:"footer",sx:{display:"flex",flexDirection:"row",justifyContent:k?"space-between":"end",gap:1},children:[k&&e(a,{sx:{display:"flex",alignItems:"center",gap:1},children:v?t(r,{children:[e(j,{sx:{borderRadius:"50%",width:24,aspectRatio:1,flexShrink:0}}),e(j,{sx:{width:100}})]}):e(r,{children:e(d,{clamp:1,size:"xs",secondary:!0,children:k.activityDescription})})}),!v&&"draft"!==h&&t(a,{sx:{display:"flex",alignItems:"center",gap:2,flexShrink:0},children:[e(f,{animated:s,iconName:"data-bar",label:"answers",value:T?.count?.answers??0}),e(f,{animated:s,iconName:"comment-filled",label:"comments",value:T?.count?.comments??0,slotProps:{icon:{size:20}}})]})]})]})})},W=({animated:o,label:a,primaryText:n,secondaryText:l})=>{const p=n.match(/\d{1,2}:\d{2}/),m=n.split(":"),c=!isNaN(Number(n)),u=l.includes("%")&&!isNaN(Number(l.replace("%","")));return t(i,{direction:{sm:"row",md:"row",lg:"column"},sx:{alignItems:"center",gap:{sm:1,md:1,lg:0},background:e=>e.custom.palette.surface.default,minWidth:"92px",border:e=>`1px solid ${e.custom.palette.neutral[100]}`,borderRadius:1,padding:e=>`${e.spacing(e.custom.padding.sm)} ${e.spacing(e.custom.padding.md)}`,color:e=>e.custom.palette.text.primary,flexShrink:0,height:"100%"},children:[e(d,{size:"sm",sx:{width:"100%",textAlign:{md:"left",lg:"center"}},children:a}),e(d,{bold:!0,sx:{fontSize:e=>({sm:e.custom.typography.body.sm,md:e.custom.typography.body.md,lg:e.custom.typography.body.xxl}),flexShrink:0},monospaced:!0,children:e(r,{children:e(r,p||c?{children:p?t(r,{children:[e(s,{value:Number(m[0]),format:{minimumIntegerDigits:2,useGrouping:!1},animated:o}),":",e(s,{value:Number(m[1]),format:{minimumIntegerDigits:2,useGrouping:!1},animated:o})]}):e(s,{value:Number(n),animated:o})}:{children:n})})}),e(d,{size:"sm",secondary:!0,sx:{flexShrink:0},monospaced:!0,children:u?t(r,{children:[e(s,{value:Number(l.replace("%","")),animated:o}),"%"]}):l})]})},f=({animated:r,iconName:o,label:i,value:l,slotProps:p})=>t(a,{sx:{display:"flex",alignItems:"center",gap:.5},children:[e(m,{name:o,...p?.icon,sx:n({color:e=>e.custom.palette.icon.secondary},p?.icon?.sx)}),t(d,{monospaced:!0,component:"p",size:"xs",sx:e=>({color:e=>e.custom.palette.text.primary,"& > span":{color:e=>e.custom.palette.text.secondary,[e.breakpoints.up("lg")]:{display:"inline"},[e.breakpoints.down("lg")]:{display:"none"},[e.containerQueries.up("lg")]:{display:"inline"},[e.containerQueries.down("lg")]:{display:"none"}}}),children:[e(s,{value:l,animated:r})," ",e("span",{children:i})]})]});export{h as default};
|
|
1
|
+
import{jsx as e,jsxs as t,Fragment as a}from"react/jsx-runtime";import{useTheme as r,Stack as o,Box as i}from"@mui/material";import s from"@number-flow/react";import n from"../../BrandCore/Icon/Icon.js";import d from"../../WebCore/IconButton/IconButton.js";import"../../BrandCore/primitiveVariables.js";import l from"../../WebCore/Menu/Menu.js";import m from"../../WebCore/ProgressBar/ProgressBar.js";import{Text as c}from"../../WebCore/Text/Text.js";import p from"../TestStatus/TestStatus.js";import u from"./_partials/AnimatedDuration.js";import b from"./_partials/FooterStat.js";import g from"./_partials/Root.js";import f from"./_partials/StatCard.js";import h from"./_partials/TagList.js";import{getCompletionPercentage as x,getIncompletePercentage as j,respondToLg as v}from"./helpers.js";const C=({status:C,title:y,activityDescription:I,tags:T,menuItems:w,progress:B,counts:_,animated:S=!0,selected:k=!1,disabled:z=!1,...R})=>{const D=r(),{card:M}=D.custom.component,P=`1px solid ${D.custom.palette.stroke.transparent}`;return e(g,{variation:"raised",selected:k,disabled:z,tabIndex:z?-1:0,...R,children:t(o,{component:"article",sx:{gap:2},children:[t(o,{component:"header",sx:{gap:1},children:[t(o,{direction:"row",sx:{justifyContent:"space-between",alignItems:"center",gap:1},children:[e(p,{status:C,sizing:"xs"}),Boolean(w?.length)&&e(i,{onClick:e=>e.stopPropagation(),children:e(l,{trigger:e(d,{icon:e(n,{name:"more-horizontal",size:16}),variation:"outlined",className:"TestItem__Menu",sx:{width:28,aspectRatio:1,borderRadius:"100% !important",transition:"opacity 0.3s ease",opacity:0,"&:focus":{background:`${D.custom.palette.interaction.press} !important`,opacity:1}}}),menuItems:w,width:200,offset:[0,8],placement:"bottom-end"})})]}),e(c,{size:"md",bold:!0,disabled:z,className:"TestItem__Title",children:y})]}),T&&T.length>0&&e(h,{tags:T}),B&&e(i,{sx:{background:M.surface.elevated,border:`1px solid ${M.stroke.default}`,padding:D.p.md,borderRadius:D.r.md},children:t(o,{sx:{gap:2},children:[e(m,{variation:"determinate",value:x(B),sx:{height:8,...z&&{"&.MuiLinearProgress-root .MuiLinearProgress-bar":{backgroundColor:D.custom.palette.neutralAlpha[2]}}}}),t(i,{sx:{display:"grid",gap:{sm:.5,md:1},justifyContent:"stretch",...v(D,{gridTemplateColumns:"repeat(3, 1fr)","& > :not(:last-child)":{borderRight:P,borderBottom:"none"}},{gridTemplateColumns:"auto","& > :not(:last-child)":{borderBottom:P,borderRight:"none"}})},children:[e(f,{label:"Completed",value:e(s,{value:B.completed,animated:S}),secondary:`of ${B.total}`,disabled:z}),e(f,{label:"Drop off",value:t(a,{children:[e(s,{value:j(B),animated:S}),"%"]}),secondary:t(a,{children:[e(s,{value:B.incomplete,animated:S})," respondents"]}),disabled:z}),e(f,{label:"Duration",value:e(u,{seconds:B.averageDurationSeconds,animated:S}),secondary:"average",disabled:z})]})]})}),t(o,{component:"footer",direction:"row",sx:{justifyContent:I?"space-between":"flex-end",alignItems:"center",gap:1},children:[I&&e(c,{clamp:1,size:"xs",secondary:!0,disabled:z,children:I}),"draft"!==C&&t(o,{direction:"row",sx:{alignItems:"center",gap:2,flexShrink:0},children:[e(b,{animated:S,iconName:"data-bar",iconSize:20,label:"answers",value:_?.answers??0,disabled:z}),e(b,{animated:S,iconName:"comment-filled",iconSize:20,label:"comments",value:_?.comments??0,disabled:z})]})]})]})})};export{C as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsx as r,Fragment as t,jsxs as e}from"react/jsx-runtime";import o from"@number-flow/react";import a from"react";const m={minimumIntegerDigits:2,useGrouping:!1},n=({seconds:n,animated:i})=>{const u=Math.floor(n/3600),c=Math.floor(n%3600/60),f=Math.round(n%60);return r(t,{children:(u?[u,c,f]:[c,f]).map((t,n)=>e(a.Fragment,{children:[n>0&&":",r(o,{value:t,format:m,animated:i})]},n))})};export{n as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsxs as e,jsx as o}from"react/jsx-runtime";import{useTheme as r,Box as a}from"@mui/material";import n from"@number-flow/react";import i from"../../../BrandCore/Icon/Icon.js";import{Text as s}from"../../../WebCore/Text/Text.js";import{respondToLg as t}from"../helpers.js";const m=({animated:m,iconName:l,iconSize:c,label:p,value:d,disabled:x})=>{const f=r();return e(a,{sx:{display:"flex",alignItems:"center",gap:.5},children:[o(i,{name:l,size:c,sx:{color:f.custom.palette.icon.secondary}}),e(s,{monospaced:!0,component:"p",size:"xs",secondary:!0,disabled:x,sx:{"& > span":t(f,{display:"inline"},{display:"none"})},children:[o(n,{value:d,animated:m})," ",o("span",{children:p})]})]})};export{m as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{styled as e}from"@mui/material";import"react";import{omitProps as o}from"../../../../utils/shouldForwardProp.js";import r from"../../../WebCore/Surface/Surface.js";const t=e(r,{shouldForwardProp:o("selected","disabled")})(({theme:e,selected:o,disabled:r})=>{const{card:t}=e.custom.component;return{position:"relative",padding:e.p.md,border:`1px solid ${o?t.stroke.selected:t.stroke.default}`,borderRadius:e.spacing(t.radius),width:"100%",cursor:r?"default":"pointer",transition:"border-color 0.2s ease, box-shadow 0.2s ease",...o&&{backgroundColor:t.surface.selected},"&:hover .TestItem__Menu":{opacity:1},"&::after":{content:'""',position:"absolute",inset:0,zIndex:0,borderRadius:"inherit",pointerEvents:"none",backgroundColor:r?t.interaction.disabled:t.interaction.none,transition:"background-color 0.2s ease"},"& > article":{position:"relative",zIndex:1},...r?{pointerEvents:"none","& ul .MuiTypography-root, & ul .MuiChip-label":{color:e.custom.palette.text.disabled}}:{"&:hover .TestItem__Title, &:active .TestItem__Title":{textDecoration:"underline"},"&:hover":{...!o&&{borderColor:t.stroke.hover},"&::after":{backgroundColor:t.interaction.hover}},"&:active::after":{backgroundColor:t.interaction.press},"&&:focus-visible":{outline:"none",...!o&&{borderColor:t.stroke.default},boxShadow:e.custom.boxShadow.input.focus}}}});export{t as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsxs as e,jsx as t}from"react/jsx-runtime";import{useTheme as o,Stack as m}from"@mui/material";import{Text as s}from"../../../WebCore/Text/Text.js";const r=({label:r,value:d,secondary:a,disabled:l})=>{const i=o(),{card:n}=i.custom.component;return e(m,{direction:{sm:"row",md:"row",lg:"column"},sx:{alignItems:"center",gap:{sm:i.m.sm,md:i.m.sm,lg:i.m.none},background:n.surface.default,minWidth:"92px",color:l?i.custom.palette.text.disabled:i.custom.palette.text.primary,flexShrink:0,height:"100%"},children:[t(s,{size:"sm",secondary:!0,monospaced:!0,disabled:l,sx:{width:"100%",textAlign:{md:"left",lg:"center"}},children:r}),t(s,{bold:!0,monospaced:!0,disabled:l,sx:{fontSize:{sm:i.custom.typography.body.sm,md:i.custom.typography.body.md,lg:i.custom.typography.body.xxl},flexShrink:0},children:d}),t(s,{size:"sm",secondary:!0,monospaced:!0,disabled:l,sx:{flexShrink:0},children:a})]})};export{r as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsx as e}from"react/jsx-runtime";import{useTheme as o}from"@mui/material";import{useState as r}from"react";import{TruncatedList as t}from"react-truncate-list";import i from"../../../BrandCore/Icon/Icon.js";import"../../../../utils/formValidation/misc.js";import"../../../BrandCore/primitiveVariables.js";import"../../../WebCore/utils/typography.util.js";import"../../../BrandCore/textures.js";import"../../../WebCore/AnnualController/AnnualController.js";import"../../../WebCore/SelectItem/SelectItem.js";import"../../../WebCore/Accordion/Accordion.js";import"../../../WebCore/Animations/FadeIn.js";import"../../../WebCore/Text/Text.js";import"@mui/icons-material";import"../../../WebCore/AutocompleteBaseField/_partials/AutocompleteListbox.js";import"../../../WebCore/AutocompleteBaseField/_partials/StyledPopper.js";import"../../../WebCore/AutocompleteBaseField/_partials/StyledAutocompleteField.js";import"../../../WebCore/AutocompleteBaseField/_partials/AutocompleteChip.js";import"../../../WebCore/AutocompleteBaseField/_partials/StyledAutocompleteInput.js";import"merge-sx";import"../../../WebCore/Badge/Badge.js";import"../../../WebCore/Breadcrumb/Breadcrumb.js";import"../../../WebCore/Button/Button.js";import"../../../WebCore/ButtonBase/ButtonBase.js";import"../../../WebCore/ButtonTabGroup/_partials/ActiveIndicator.js";import"../../../WebCore/ButtonTabGroup/_partials/ButtonTabsWrapper.js";import"../../../WebCore/ButtonTabGroup/_partials/TabButton.js";import"../../../WebCore/Checkbox/StyledCheckbox.js";import"../../../WebCore/InputFieldBase/InputFieldBase.js";import"../../../WebCore/CreatableAutocomplete/CreatableAutocomplete.js";import"../../../WebCore/InputLabelBase/StyledInputLabelBase.js";import"../../../WebCore/Differential/DifferentialContainer.js";import"../../../WebCore/Differential/DifferentialRadio.js";import"../../../WebCore/DropdownMenu/StyledMenu.js";import"../../../WebCore/ExpandableTypographyClamp/ExpandableTypographyClamp.js";import"../../../WebCore/FormBuilder/FormBuilder.js";import"../../../WebCore/FormGenerator/FormGenerator.js";import"../../../WebCore/GridOverlay/GridOverlay.js";import"html-react-parser";import a from"../../../WebCore/IconButton/IconButton.js";import"../../../WebCore/IconButtonBase/IconButtonBase.js";import"../../../WebCore/IconButtonGroup/IconButtonGroup.js";import"../../../WebCore/Image/Image.js";import"../../../WebCore/KbdGroup/Kbd.js";import"../../../WebCore/KbdGroup/KbdGroup.js";import p from"../../../WebCore/KeyValueLabel/KeyValueLabel.js";import s from"../../../WebCore/Label/Label.js";import"../../../WebCore/Likert/LikertContainer.js";import"../../../WebCore/Likert/LikertLabel.js";import"../../../WebCore/Likert/LikertRadio.js";import"../../../WebCore/Link/StyledLink.js";import"@lottiefiles/dotlottie-react";import"../../../WebCore/LoopsAiButton/LoopsAiButton.js";import"markdown-to-jsx";import"material-ui-popup-state/hooks";import"../../../WebCore/Surface/Surface.js";import"../../../WebCore/Menu/MenuItem.js";import"../../../WebCore/ModalLayout/_partials/ModalActionsWrapper.js";import"../../../WebCore/ModalLayout/_partials/ModalContentWrapper.js";import"../../../WebCore/NavigationButton/NavigationButton.js";import"../../../WebCore/Nudge/NudgeButton.js";import"../../../WebCore/NumberField/NumberField.js";import"../../../BrandCore/colorRamps.js";import"../../../BrandCore/semanticColor.js";import"../../../BrandCore/types.js";import"../../../BrandCore/typography.js";import"../../../WebCore/Progress/Progress.js";import"../../../WebCore/Pill/StyledPill.js";import"../../../WebCore/ProgressBar/ProgressBar.js";import"../../../WebCore/Radio/StyledRadio.js";import"../../../WebCore/SortableList/components/SortableItem/SortableItem.js";import"../../../WebCore/Select/StyledSelect.js";import"../../../WebCore/RankItem/_partials/LayoutComponents/LayoutComponents.js";import"../../../WebCore/RankItem/_partials/RankItemLabel/RankItemLabel.js";import"../../../WebCore/SortableList/SortableList.js";import"../../../WebCore/SortableList/components/SortableOverlay/SortableOverlay.js";import"@tiptap/extension-placeholder";import"@tiptap/starter-kit";import"mui-tiptap";import"../../../WebCore/RichTextField/StyledRichTextEditor.js";import"../../../WebCore/Skeleton/Skeleton.js";import"../../../WebCore/Slider/StyledSlider.js";import"../../../WebCore/StarRating/StarRating.js";import"../../../WebCore/Switch/StyledSwitch.js";import"../../../WebCore/Textarea/Textarea.js";import"../../../WebCore/TrialCard/TrialCardContainers.js";import"../../../WebCore/TrialCard/TrialPill.js";import"../../../WebCore/UserMenu/UserMenuButton.js";import"../../../WebCore/VideoModal/VideoModal.js";import"../../../WebCore/TintedSurface/TintedSurface.js";const m=({tags:m})=>{const l=o(),[n,b]=r(!1);return e(t,{style:{display:"flex",flexWrap:"wrap",alignItems:"center",maxHeight:n?"none":56,gap:l.m.xs,listStyleType:"none",paddingInlineStart:0,margin:0},alwaysShowTruncator:n,renderTruncator:({hiddenItemsCount:o})=>o>0?e(s,{body:`+${o}`,weight:"light",onClick:e=>{e.stopPropagation(),b(!0)},sx:{background:l.custom.palette.neutral[50]}}):e(a,{sizing:"sm",icon:e(i,{name:"chevron-up",size:16}),onClick:e=>{e.stopPropagation(),b(!1)},sx:{color:l.custom.palette.icon.primary}}),children:m.map(({category:o,selection:r})=>e(p,{keyString:o,valueString:r},o))})};export{m as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsx as e,jsxs as r}from"react/jsx-runtime";import{useTheme as t,Stack as o}from"@mui/material";import i from"../../../WebCore/Skeleton/Skeleton.js";import m from"./Root.js";const n=n=>{const s=t();return e(m,{variation:"raised",...n,children:r(o,{component:"article",sx:{gap:s.m.md},children:[r(o,{component:"header",sx:{gap:s.m.sm},children:[e(i,{sx:{width:90,height:32}}),e(i,{})]}),e(o,{direction:"row",sx:{gap:s.m.xs},children:Array.from({length:3}).map((r,t)=>e(i,{sx:{maxWidth:50}},`test-item-skeleton-${t}`))}),r(o,{component:"footer",direction:"row",sx:{alignItems:"center",gap:s.m.sm},children:[e(i,{sx:{borderRadius:s.r.round,width:24,aspectRatio:1,flexShrink:0}}),e(i,{sx:{width:100}})]})]})})};export{n as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const e=({completed:e,total:o})=>o>0?e/o*100:0,o=({completed:e,incomplete:o})=>Math.round(o/(e+o)*100)||0,t=(e,o,t)=>({[e.breakpoints.up("lg")]:o,[e.breakpoints.down("lg")]:t,[e.containerQueries.up("lg")]:o,[e.containerQueries.down("lg")]:t});export{e as getCompletionPercentage,o as getIncompletePercentage,t as respondToLg};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsxs as e,jsx as r}from"react/jsx-runtime";import{Stack as o,Collapse as t,Box as i}from"@mui/material";import{useState as n,useRef as a}from"react";import{useFieldArray as m,useFormState as d,Controller as s}from"react-hook-form";import"../../BrandCore/colorRamps.js";import"../../BrandCore/primitiveVariables.js";import"../../BrandCore/semanticColor.js";import"../../BrandCore/types.js";import"../../BrandCore/typography.js";import l from"../../BrandCore/Icon/Icon.js";import c from"../Button/Button.js";import p from"../IconButton/IconButton.js";import{CollapseMessage as u}from"./FieldMessage.js";import{getFieldDefinition as f,splitFieldProps as g}from"./fieldRegistry.js";const x=({field:x,control:h})=>{const{fields:v,append:j,remove:B}=m({control:h,name:x.name}),{errors:C}=d({control:h,name:x.name}),[I,b]=n(new Set),y=a(v);y.current=v;const M=a(!0),S=!M.current;M.current=!1;const w=v.length-I.size,F=w<=(x.minItems??0),R=void 0!==x.maxItems&&w>=x.maxItems,k=C?.[x.name],z=k?.root?.message??k?.message,A=e=>b(r=>new Set(r).add(e)),E=e=>j({value:e??x.defaultItem??""});return e(o,{children:[v.map((n,a)=>{const m=I.has(n.id),d=((e,r)=>"function"==typeof x.itemField?x.itemField(e,r):x.itemField)(a,{index:a,remove:()=>A(n.id),atMinimum:F,atMaximum:R}),c=f(d.fieldType);if(!c)return null;const v=c.component,j=g(d),C="none"===x.removeAction?{}:{endAdornment:r(p,{"aria-label":"Remove item",sizing:"xs",disabled:F||m,icon:r(l,{name:"delete"}),onClick:()=>A(n.id)})};return r(t,{in:!m,appear:S,timeout:"auto",onExited:()=>(e=>{const r=y.current.findIndex(r=>r.id===e);r>=0&&B(r),b(r=>{const o=new Set(r);return o.delete(e),o})})(n.id),children:r(i,{sx:{paddingBottom:"8px"},children:r(s,{name:`${x.name}.${a}.value`,control:h,render:({field:{ref:t,...i},fieldState:n})=>e(o,{children:[r(v,{fullWidth:!0,...C,...j,...i,inputRef:t,"aria-invalid":!!n.error||void 0}),r(u,{errorMessage:x.hideError||m?void 0:n.error?.message})]})})})},n.id)}),r(u,{errorMessage:x.hideError?void 0:z,edge:"bottom",gap:8,showicon:!0}),x.actions?x.actions({append:E,count:w,atMaximum:R}):r(c,{variation:"outlined",sizing:"sm",disabled:R,onClick:()=>E(),sx:{alignSelf:"flex-start"},children:x.addLabel??"Add"})]})};export{x as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{jsxs as r,jsx as e,Fragment as
|
|
1
|
+
import{jsxs as r,jsx as e,Fragment as o}from"react/jsx-runtime";import{useTheme as t}from"@mui/material";import{memo as i}from"react";import{useWatch as n,Controller as l}from"react-hook-form";import{space as a}from"../../BrandCore/primitiveVariables.js";import d from"../Html/Html.js";import s from"../InputLabel/InputLabel.js";import m from"./ArrayFieldRows.js";import p from"./components/StrengthIndicator/StrengthIndicator.js";import f from"./FieldCollapse.js";import c,{CollapseMessage as u}from"./FieldMessage.js";import{extractNoneOfThese as h,splitFieldProps as b,getFieldDefinition as v}from"./fieldRegistry.js";const g=i(({field:i,fieldRef:g,control:j,appear:x=!1})=>{const{custom:y}=t(),I=i,{fieldType:B,name:L,label:R,labelProps:S,helperText:T,helpTextProps:k,content:w,styleOverrides:F,strengthIndicator:P,hidden:C,visibleWhen:H,deriveProps:M,hideError:$}=I,z=h(b(I)),A=Boolean(H)||Boolean(M)||"function"==typeof R,E=n({control:j,disabled:!A}),O=Boolean(C)||!!H&&!H(E??{}),V=M?M(E??{}):void 0,W="function"==typeof R?R:void 0,q=W?W(E??{}):R,D=n({control:j,name:L,disabled:!P}),G="checkbox"===B?`${"lg"===z.sizing?a[600]:a[500]}px`:void 0,J=`${L}-error`;return r(f,{hidden:O,appear:x,sx:F?.sxInputStack,children:["switch"!==B?q&&e(s,{...S,children:q}):null,(()=>{if("html"===B)return w?e(d,{children:w}):null;if("array"===B)return e(m,{field:I,control:j});const t=v(B);if(!t)return null;const i=t.component;return e(l,{name:L,control:j,render:({field:{ref:n,...l},fieldState:a})=>r(o,{children:[e(i,{...z,...V,...l,...t.adapt?.({...I,label:q},l)??{},"aria-invalid":!!a.error||void 0,"aria-describedby":a.error?J:void 0,inputRef:r=>{n(r),((r,e)=>{"function"==typeof r?r(e):r&&(r.current=e)})(g,r)}}),P&&e(p,{value:D}),e(u,{id:J,errorMessage:$?void 0:a.error?.message,paddingLeft:G,showicon:!0})]})})})(),T?e(c,{helperText:T,paddingLeft:G,...k}):null]})});export{g as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{jsx as
|
|
1
|
+
import{jsx as r}from"react/jsx-runtime";import{Collapse as m,Stack as t}from"@mui/material";import{useTheme as i}from"@mui/material/styles";import{mergeSx as o}from"merge-sx";const a=({hidden:a=!1,appear:e=!1,sx:n,children:s})=>{const{spacing:p,custom:u}=i(),d=p(u.margin.md),{gridColumn:l,...c}="object"!=typeof n||null===n||Array.isArray(n)?{}:n;return r(m,{in:!a,appear:e,unmountOnExit:!0,timeout:"auto",sx:{gridColumn:l},children:r(t,{sx:o({gap:u.margin.sm,paddingBottom:d},c),children:s})})};export{a as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{jsx as e}from"react/jsx-runtime";import t from"../InputLabelHelp/InputLabelHelp.js";const
|
|
1
|
+
import{jsx as e}from"react/jsx-runtime";import{Collapse as t,Box as r}from"@mui/material";import{useRef as o}from"react";import a from"../InputLabelHelp/InputLabelHelp.js";const n=({errorMessage:a,gap:n=4,edge:p="top",...d})=>{const l=o(a);return a&&(l.current=a),e(t,{in:Boolean(a),appear:!0,unmountOnExit:!0,timeout:"auto",children:e(r,{sx:{["top"===p?"paddingTop":"paddingBottom"]:`${n}px`},children:e(i,{errorMessage:a??l.current,...d})})})},i=({helperText:t,errorMessage:r,paddingLeft:o,id:n,...i})=>r?e(a,{id:n,role:"alert",showicon:!0,state:"negative",paddingLeft:o,children:r}):t?e(a,{state:"default",paddingLeft:o,...i,children:t}):null;export{n as CollapseMessage,i as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{jsx as e,jsxs as r}from"react/jsx-runtime";import{zodResolver as t}from"@hookform/resolvers/zod";import{Box as o,Stack as i}from"@mui/material";import{mergeSx as s}from"merge-sx";import{forwardRef as m,useRef as
|
|
1
|
+
import{jsx as e,jsxs as r}from"react/jsx-runtime";import{zodResolver as t}from"@hookform/resolvers/zod";import{Box as o,Stack as i}from"@mui/material";import{mergeSx as s}from"merge-sx";import{forwardRef as m,useRef as a,useMemo as n,useEffect as l,useImperativeHandle as u}from"react";import{useForm as d,FormProvider as c}from"react-hook-form";import{usePrevious as f}from"../../../utils/usePrevious.js";import p from"./Field.js";import{getDefaultValues as h,getFieldDefault as g}from"./fieldRegistry.js";import b from"./FormActions.js";const v=m(({formConfig:m,onSubmit:v,onChange:V,onFormSubmit:x,onFormChange:F,submitButton:S,secondaryButton:y},B)=>{const{fields:C,mode:j,reValidateMode:I,autoComplete:k,formId:w,validateOnInit:R,disableInvalidSubmit:M,preserveHiddenValues:O,styleOverrides:T,schema:z,resolver:A}=m,E=v??x,G=V??F,H=f(C),N=a({isValid:!1,errors:{}}),P=d({mode:j||"onChange",reValidateMode:I,defaultValues:n(()=>h(C),[]),resolver:A??(z?t(z):void 0),shouldUnregister:!O}),{control:U,handleSubmit:q,reset:D,trigger:J,setValue:K,setFocus:L,getValues:Q,getFieldState:W,watch:X}=P;l(()=>{R&&J()},[]),l(()=>{if(!G)return;const e=X(()=>G(Q()));return()=>e.unsubscribe()},[X,Q,G]),l(()=>{if(void 0===H)return;const e=H.filter(({fieldType:e})=>"html"!==e).map(({name:e})=>e);C.filter(({name:r,fieldType:t})=>!e.includes(r)&&"html"!==t).forEach(e=>K(e.name,g(e)))},[C]);const Y=a(!1);return l(()=>{Y.current?D(h(C)):Y.current=!0},[w]),u(B,()=>({submit(){E&&q(E)()},reset(){D()},values:()=>Q(),valid:()=>N.current.isValid,errors:()=>N.current.errors,focus(e){L(e)},setValue:K,getFieldState:W,trigger:J,watch:X})),e(c,{...P,children:r(o,{component:"form",autoComplete:k,noValidate:!0,sx:T?.sxForm,...E&&{onSubmit:q(E)},children:[e(i,{sx:s({rowGap:0},T?.sxStack),children:C.map(r=>e(p,{field:r,fieldRef:r.ref,control:U,appear:Y.current},r.name))}),e(b,{control:U,stateRef:N,submitButton:S,secondaryButton:y,disableInvalidSubmit:M,sx:T?.sxButtons})]})})});v.displayName="FormBuilder";const V=v;export{V as default};
|