@envive-ai/react-toolkit-v3 0.3.14 → 0.3.15-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Accordion/Accordion.cjs +54 -0
- package/dist/components/Accordion/Accordion.d.cts +10 -0
- package/dist/components/Accordion/Accordion.d.ts +10 -0
- package/dist/components/Accordion/Accordion.js +48 -0
- package/dist/components/Accordion/index.cjs +6 -0
- package/dist/components/Accordion/index.d.cts +3 -0
- package/dist/components/Accordion/index.d.ts +3 -0
- package/dist/components/Accordion/index.js +3 -0
- package/dist/components/Accordion/types/index.d.cts +10 -0
- package/dist/components/Accordion/types/index.d.ts +10 -0
- package/dist/components/Alert/Alert.cjs +43 -0
- package/dist/components/Alert/Alert.d.cts +13 -0
- package/dist/components/Alert/Alert.d.ts +13 -0
- package/dist/components/Alert/Alert.js +38 -0
- package/dist/components/Alert/index.cjs +6 -0
- package/dist/components/Alert/index.d.cts +3 -0
- package/dist/components/Alert/index.d.ts +3 -0
- package/dist/components/Alert/index.js +3 -0
- package/dist/components/Alert/types/index.d.cts +9 -0
- package/dist/components/Alert/types/index.d.ts +9 -0
- package/dist/components/AlertDialog/AlertDialog.cjs +38 -0
- package/dist/components/AlertDialog/AlertDialog.d.cts +39 -0
- package/dist/components/AlertDialog/AlertDialog.d.ts +39 -0
- package/dist/components/AlertDialog/AlertDialog.js +26 -0
- package/dist/components/AlertDialog/index.cjs +13 -0
- package/dist/components/AlertDialog/index.d.cts +3 -0
- package/dist/components/AlertDialog/index.d.ts +3 -0
- package/dist/components/AlertDialog/index.js +3 -0
- package/dist/components/AlertDialog/types/index.d.cts +17 -0
- package/dist/components/AlertDialog/types/index.d.ts +17 -0
- package/dist/components/AnimatedText/AnimatedText.cjs +63 -0
- package/dist/components/AnimatedText/AnimatedText.d.cts +13 -0
- package/dist/components/AnimatedText/AnimatedText.d.ts +13 -0
- package/dist/components/AspectRatio/AspectRatio.cjs +8 -0
- package/dist/components/AspectRatio/AspectRatio.d.cts +9 -0
- package/dist/components/AspectRatio/AspectRatio.d.ts +9 -0
- package/dist/components/AspectRatio/AspectRatio.js +7 -0
- package/dist/components/AspectRatio/index.cjs +3 -0
- package/dist/components/AspectRatio/index.d.cts +3 -0
- package/dist/components/AspectRatio/index.d.ts +3 -0
- package/dist/components/AspectRatio/index.js +3 -0
- package/dist/components/AspectRatio/types/index.d.cts +6 -0
- package/dist/components/AspectRatio/types/index.d.ts +6 -0
- package/dist/components/Avatar/Avatar.cjs +32 -0
- package/dist/components/Avatar/Avatar.d.cts +9 -0
- package/dist/components/Avatar/Avatar.d.ts +9 -0
- package/dist/components/Avatar/Avatar.js +27 -0
- package/dist/components/Avatar/index.cjs +5 -0
- package/dist/components/Avatar/index.d.cts +3 -0
- package/dist/components/Avatar/index.d.ts +3 -0
- package/dist/components/Avatar/index.js +3 -0
- package/dist/components/Avatar/types/index.d.cts +8 -0
- package/dist/components/Avatar/types/index.d.ts +8 -0
- package/dist/components/Badge/Badge.cjs +59 -0
- package/dist/components/Badge/Badge.d.cts +21 -0
- package/dist/components/Badge/Badge.d.ts +21 -0
- package/dist/components/Badge/Badge.js +56 -0
- package/dist/components/Badge/index.cjs +4 -0
- package/dist/components/Badge/index.d.cts +3 -0
- package/dist/components/Badge/index.d.ts +3 -0
- package/dist/components/Badge/index.js +3 -0
- package/dist/components/Badge/types/index.d.cts +7 -0
- package/dist/components/Badge/types/index.d.ts +7 -0
- package/dist/components/Breadcrumb/Breadcrumb.cjs +29 -0
- package/dist/components/Breadcrumb/Breadcrumb.d.cts +23 -0
- package/dist/components/Breadcrumb/Breadcrumb.d.ts +23 -0
- package/dist/components/Breadcrumb/Breadcrumb.js +21 -0
- package/dist/components/Breadcrumb/index.cjs +9 -0
- package/dist/components/Breadcrumb/index.d.cts +3 -0
- package/dist/components/Breadcrumb/index.d.ts +3 -0
- package/dist/components/Breadcrumb/index.js +3 -0
- package/dist/components/Breadcrumb/types/index.d.cts +12 -0
- package/dist/components/Breadcrumb/types/index.d.ts +12 -0
- package/dist/components/Button/Button.cjs +48 -0
- package/dist/components/Button/Button.d.cts +12 -0
- package/dist/components/Button/Button.d.ts +12 -0
- package/dist/components/Button/Button.js +44 -0
- package/dist/components/Button/index.cjs +4 -0
- package/dist/components/Button/index.d.cts +3 -0
- package/dist/components/Button/index.d.ts +3 -0
- package/dist/components/Button/index.js +3 -0
- package/dist/components/Button/types/index.d.cts +13 -0
- package/dist/components/Button/types/index.d.ts +13 -0
- package/dist/components/CSSVariablesEditor/CssVariablesEditorComponent.cjs +14 -0
- package/dist/components/CSSVariablesEditor/CssVariablesEditorComponent.d.cts +10 -0
- package/dist/components/CSSVariablesEditor/CssVariablesEditorComponent.d.ts +10 -0
- package/dist/components/CSSVariablesEditor/components/CSSVariablesEditor.cjs +119 -0
- package/dist/components/CSSVariablesEditor/components/Container.cjs +14 -0
- package/dist/components/CSSVariablesEditor/components/Header.cjs +14 -0
- package/dist/components/CSSVariablesEditor/components/Purpose.cjs +14 -0
- package/dist/components/CSSVariablesEditor/hooks/useGetCssVariablesOptions.cjs +120 -0
- package/dist/components/CSSVariablesEditor/hooks/useGetCssVariablesOptions.js +119 -0
- package/dist/components/CSSVariablesEditor/hooks/useGetCurrentMerchantColors.cjs +165 -0
- package/dist/components/CSSVariablesEditor/hooks/useGetCurrentMerchantColors.js +164 -0
- package/dist/components/CSSVariablesEditor/hooks/useGetDefaultCssVariables.cjs +423 -0
- package/dist/components/CSSVariablesEditor/hooks/useGetDefaultCssVariables.js +422 -0
- package/dist/components/CSSVariablesEditor/hooks/useHandleCssVariablesState.cjs +55 -0
- package/dist/components/CSSVariablesEditor/hooks/useHandleUpdateCssVars.cjs +103 -0
- package/dist/components/CSSVariablesEditor/hooks/useHandleUpdateCssVars.js +103 -0
- package/dist/components/CSSVariablesEditor/utils/functions.cjs +53 -0
- package/dist/components/CSSVariablesEditor/utils/functions.js +51 -0
- package/dist/components/Calendar/Calendar.cjs +11 -0
- package/dist/components/Calendar/Calendar.d.cts +10 -0
- package/dist/components/Calendar/Calendar.d.ts +10 -0
- package/dist/components/Calendar/Calendar.js +9 -0
- package/dist/components/Calendar/index.cjs +3 -0
- package/dist/components/Calendar/index.d.cts +3 -0
- package/dist/components/Calendar/index.d.ts +3 -0
- package/dist/components/Calendar/index.js +3 -0
- package/dist/components/Calendar/types/index.d.cts +6 -0
- package/dist/components/Calendar/types/index.d.ts +6 -0
- package/dist/components/Card/Card.cjs +58 -0
- package/dist/components/Card/Card.d.cts +12 -0
- package/dist/components/Card/Card.d.ts +12 -0
- package/dist/components/Card/Card.js +50 -0
- package/dist/components/Card/index.cjs +8 -0
- package/dist/components/Card/index.d.cts +3 -0
- package/dist/components/Card/index.d.ts +3 -0
- package/dist/components/Card/index.js +3 -0
- package/dist/components/Card/types/index.d.cts +9 -0
- package/dist/components/Card/types/index.d.ts +9 -0
- package/dist/components/Carousel/Carousel.cjs +26 -0
- package/dist/components/Carousel/Carousel.d.cts +16 -0
- package/dist/components/Carousel/Carousel.d.ts +16 -0
- package/dist/components/Carousel/Carousel.js +25 -0
- package/dist/components/Carousel/components/ArrowIcon.cjs +21 -0
- package/dist/components/Carousel/components/ArrowIcon.js +20 -0
- package/dist/components/Carousel/components/Badge.cjs +28 -0
- package/dist/components/Carousel/components/Container.cjs +76 -0
- package/dist/components/Carousel/components/Item.cjs +11 -0
- package/dist/components/Carousel/components/Next.cjs +17 -0
- package/dist/components/Carousel/components/Previous.cjs +17 -0
- package/dist/components/Carousel/hooks/useCarouselButtons.cjs +13 -0
- package/dist/components/Carousel/hooks/useCarouselItems.cjs +16 -0
- package/dist/components/Carousel/hooks/useCarouselNavigation.cjs +102 -0
- package/dist/components/Carousel/hooks/useCarouselNavigationButtons.cjs +33 -0
- package/dist/components/Carousel/hooks/useGetBadgeProperties.cjs +20 -0
- package/dist/components/Carousel/hooks/useGetBadgeProperties.js +19 -0
- package/dist/components/Carousel/types/types.d.cts +50 -0
- package/dist/components/Carousel/types/types.d.ts +50 -0
- package/dist/components/ChatFooter/ChatFooter.cjs +44 -0
- package/dist/components/ChatFooter/ChatFooter.d.cts +24 -0
- package/dist/components/ChatFooter/ChatFooter.d.ts +24 -0
- package/dist/components/ChatFooter/ChatFooter.js +42 -0
- package/dist/components/ChatFooter/components/EnviveLogo.cjs +18 -0
- package/dist/components/ChatFooter/components/EnviveLogo.js +17 -0
- package/dist/components/ChatFooter/components/Layout.cjs +45 -0
- package/dist/components/ChatFooter/components/Layout.d.cts +17 -0
- package/dist/components/ChatFooter/components/Layout.d.ts +18 -0
- package/dist/components/ChatFooter/components/PromptSuggestions.cjs +32 -0
- package/dist/components/ChatFooter/components/PromptSuggestions.d.cts +13 -0
- package/dist/components/ChatFooter/components/PromptSuggestions.d.ts +14 -0
- package/dist/components/ChatFooter/components/PromptSuggestions.js +31 -0
- package/dist/components/ChatFooter/components/index.d.cts +52 -0
- package/dist/components/ChatFooter/components/index.d.ts +52 -0
- package/dist/components/ChatFooter/hooks/useGetChatScrollProperties.cjs +24 -0
- package/dist/components/ChatFooter/hooks/useGetChatScrollProperties.js +23 -0
- package/dist/components/ChatFooter/hooks/useGetContainerProperties.cjs +21 -0
- package/dist/components/ChatFooter/hooks/useGetContainerProperties.js +20 -0
- package/dist/components/ChatFooter/types/types.d.cts +75 -0
- package/dist/components/ChatFooter/types/types.d.ts +75 -0
- package/dist/components/ChatHeader/ChatHeader.cjs +46 -0
- package/dist/components/ChatHeader/ChatHeader.d.cts +26 -0
- package/dist/components/ChatHeader/ChatHeader.d.ts +26 -0
- package/dist/components/ChatHeader/ChatHeader.js +45 -0
- package/dist/components/ChatHeader/components/CloseButton.cjs +29 -0
- package/dist/components/ChatHeader/components/CloseButton.js +28 -0
- package/dist/components/ChatHeader/components/Handle.cjs +56 -0
- package/dist/components/ChatHeader/components/Layout.cjs +18 -0
- package/dist/components/ChatHeader/components/Logo.cjs +21 -0
- package/dist/components/ChatHeader/components/Toggle.cjs +45 -0
- package/dist/components/ChatHeader/components/Toggle.js +44 -0
- package/dist/components/ChatHeader/components/ToggleItem.cjs +38 -0
- package/dist/components/ChatHeader/hooks/useGetCloseButtonProperties.cjs +28 -0
- package/dist/components/ChatHeader/hooks/useGetCloseButtonProperties.js +26 -0
- package/dist/components/ChatHeader/hooks/useGetHandleProperties.cjs +75 -0
- package/dist/components/ChatHeader/hooks/useGetHandleProperties.js +75 -0
- package/dist/components/ChatHeader/hooks/useGetLayoutProperties.cjs +33 -0
- package/dist/components/ChatHeader/hooks/useGetLayoutProperties.js +31 -0
- package/dist/components/ChatHeader/hooks/useGetToggleOptionProperties.cjs +83 -0
- package/dist/components/ChatHeader/hooks/useGetToggleOptionProperties.js +83 -0
- package/dist/components/ChatHeader/hooks/useGetToggleProperties.cjs +18 -0
- package/dist/components/ChatHeader/hooks/useGetToggleProperties.js +18 -0
- package/dist/components/ChatHeader/hooks/useToggleLogoSelector.cjs +14 -0
- package/dist/components/ChatHeader/hooks/useToggleLogoSelector.js +14 -0
- package/dist/components/ChatHeader/types/index.d.cts +51 -0
- package/dist/components/ChatHeader/types/index.d.ts +51 -0
- package/dist/components/ChatPreview/ChatPreview.cjs +66 -0
- package/dist/components/ChatPreview/ChatPreview.d.cts +12 -0
- package/dist/components/ChatPreview/ChatPreview.d.ts +12 -0
- package/dist/components/ChatPreview/ChatPreview.js +65 -0
- package/dist/components/ChatPreview/components/Layout.cjs +21 -0
- package/dist/components/ChatPreview/components/Message.cjs +18 -0
- package/dist/components/ChatPreview/types/types.d.cts +144 -0
- package/dist/components/ChatPreview/types/types.d.ts +145 -0
- package/dist/components/ChatPreviewComparison/ChatPreviewComparison.cjs +77 -0
- package/dist/components/ChatPreviewComparison/ChatPreviewComparison.d.cts +12 -0
- package/dist/components/ChatPreviewComparison/ChatPreviewComparison.d.ts +12 -0
- package/dist/components/ChatPreviewComparison/ChatPreviewComparison.js +76 -0
- package/dist/components/ChatPreviewComparison/components/Headline.cjs +23 -0
- package/dist/components/ChatPreviewComparison/components/Headline.js +22 -0
- package/dist/components/ChatPreviewComparison/components/Layout.cjs +97 -0
- package/dist/components/ChatPreviewComparison/components/Layout.js +96 -0
- package/dist/components/ChatPreviewComparison/components/Message.cjs +24 -0
- package/dist/components/ChatPreviewComparison/components/Message.js +23 -0
- package/dist/components/ChatPreviewComparison/types/types.d.cts +152 -0
- package/dist/components/ChatPreviewComparison/types/types.d.ts +153 -0
- package/dist/components/ChatPreviewLoading/ChatPreviewLoading.cjs +59 -0
- package/dist/components/ChatPreviewLoading/ChatPreviewLoading.d.cts +20 -0
- package/dist/components/ChatPreviewLoading/ChatPreviewLoading.d.ts +20 -0
- package/dist/components/ChatPreviewLoading/components/LayoutLoading.cjs +21 -0
- package/dist/components/ChatPreviewLoading/components/Skeleton.cjs +14 -0
- package/dist/components/Checkbox/Checkbox.cjs +44 -0
- package/dist/components/Checkbox/Checkbox.d.cts +7 -0
- package/dist/components/Checkbox/Checkbox.d.ts +7 -0
- package/dist/components/Checkbox/Checkbox.js +41 -0
- package/dist/components/Checkbox/index.cjs +3 -0
- package/dist/components/Checkbox/index.d.cts +3 -0
- package/dist/components/Checkbox/index.d.ts +3 -0
- package/dist/components/Checkbox/index.js +3 -0
- package/dist/components/Checkbox/types/index.d.cts +7 -0
- package/dist/components/Checkbox/types/index.d.ts +7 -0
- package/dist/components/Collapsible/Collapsible.cjs +13 -0
- package/dist/components/Collapsible/Collapsible.d.cts +9 -0
- package/dist/components/Collapsible/Collapsible.d.ts +9 -0
- package/dist/components/Collapsible/Collapsible.js +9 -0
- package/dist/components/Collapsible/index.cjs +5 -0
- package/dist/components/Collapsible/index.d.cts +3 -0
- package/dist/components/Collapsible/index.d.ts +3 -0
- package/dist/components/Collapsible/index.js +3 -0
- package/dist/components/Collapsible/types/index.d.cts +9 -0
- package/dist/components/Collapsible/types/index.d.ts +9 -0
- package/dist/components/Combobox/Combobox.cjs +189 -0
- package/dist/components/Combobox/Combobox.d.cts +7 -0
- package/dist/components/Combobox/Combobox.d.ts +7 -0
- package/dist/components/Combobox/Combobox.js +186 -0
- package/dist/components/Combobox/index.cjs +3 -0
- package/dist/components/Combobox/index.d.cts +3 -0
- package/dist/components/Combobox/index.d.ts +3 -0
- package/dist/components/Combobox/index.js +3 -0
- package/dist/components/Combobox/types/index.d.cts +22 -0
- package/dist/components/Combobox/types/index.d.ts +22 -0
- package/dist/components/Command/Command.cjs +34 -0
- package/dist/components/Command/Command.d.cts +22 -0
- package/dist/components/Command/Command.d.ts +22 -0
- package/dist/components/Command/Command.js +24 -0
- package/dist/components/Command/index.cjs +11 -0
- package/dist/components/Command/index.d.cts +3 -0
- package/dist/components/Command/index.d.ts +3 -0
- package/dist/components/Command/index.js +3 -0
- package/dist/components/Command/types/index.d.cts +16 -0
- package/dist/components/Command/types/index.d.ts +16 -0
- package/dist/components/Container/Container.cjs +26 -0
- package/dist/components/Container/Container.d.cts +303 -0
- package/dist/components/Container/Container.d.ts +303 -0
- package/dist/components/Container/hooks/useGetCenterContentProperties.cjs +13 -0
- package/dist/components/Container/hooks/useGetFluidProperties.cjs +13 -0
- package/dist/components/ContextMenu/ContextMenu.cjs +47 -0
- package/dist/components/ContextMenu/ContextMenu.d.cts +43 -0
- package/dist/components/ContextMenu/ContextMenu.d.ts +43 -0
- package/dist/components/ContextMenu/ContextMenu.js +31 -0
- package/dist/components/ContextMenu/index.cjs +17 -0
- package/dist/components/ContextMenu/index.d.cts +3 -0
- package/dist/components/ContextMenu/index.d.ts +3 -0
- package/dist/components/ContextMenu/index.js +3 -0
- package/dist/components/ContextMenu/types/index.d.cts +27 -0
- package/dist/components/ContextMenu/types/index.d.ts +27 -0
- package/dist/components/DesignTokens/DesignTokensComponent.cjs +30 -0
- package/dist/components/DesignTokens/DesignTokensComponent.d.cts +14 -0
- package/dist/components/DesignTokens/DesignTokensComponent.d.ts +14 -0
- package/dist/components/DesignTokens/components/BorderRadius.cjs +27 -0
- package/dist/components/DesignTokens/components/Breakpoints.cjs +35 -0
- package/dist/components/DesignTokens/components/Container.cjs +14 -0
- package/dist/components/DesignTokens/components/FontFamily.cjs +42 -0
- package/dist/components/DesignTokens/components/FontSize.cjs +47 -0
- package/dist/components/DesignTokens/components/FontWeight.cjs +39 -0
- package/dist/components/DesignTokens/components/Header.cjs +14 -0
- package/dist/components/DesignTokens/components/LetterSpacing.cjs +35 -0
- package/dist/components/DesignTokens/components/LineHeight.cjs +38 -0
- package/dist/components/DesignTokens/components/PaletteColors.cjs +146 -0
- package/dist/components/DesignTokens/components/Purpose.cjs +14 -0
- package/dist/components/DesignTokens/components/Spacing.cjs +37 -0
- package/dist/components/DesignTokens/components/Typography.cjs +119 -0
- package/dist/components/Dialog/Dialog.cjs +77 -0
- package/dist/components/Dialog/Dialog.d.cts +30 -0
- package/dist/components/Dialog/Dialog.d.ts +30 -0
- package/dist/components/Dialog/Dialog.js +65 -0
- package/dist/components/Dialog/index.cjs +12 -0
- package/dist/components/Dialog/index.d.cts +3 -0
- package/dist/components/Dialog/index.d.ts +3 -0
- package/dist/components/Dialog/index.js +3 -0
- package/dist/components/Dialog/types/index.d.cts +16 -0
- package/dist/components/Dialog/types/index.d.ts +16 -0
- package/dist/components/Disclaimer/Disclaimer.cjs +23 -0
- package/dist/components/Disclaimer/Disclaimer.js +22 -0
- package/dist/components/Disclaimer/components/Container.cjs +26 -0
- package/dist/components/Disclaimer/components/DisclaimerContent.cjs +19 -0
- package/dist/components/Disclaimer/types/types.d.cts +30 -0
- package/dist/components/Disclaimer/types/types.d.ts +30 -0
- package/dist/components/DocumentRetrievalCard/DocumentRetrievalCard.cjs +40 -0
- package/dist/components/DocumentRetrievalCard/DocumentRetrievalCard.d.cts +21 -0
- package/dist/components/DocumentRetrievalCard/DocumentRetrievalCard.d.ts +21 -0
- package/dist/components/DocumentRetrievalCard/components/Content.cjs +40 -0
- package/dist/components/DocumentRetrievalCard/components/Image.cjs +20 -0
- package/dist/components/DocumentRetrievalCard/components/Layout.cjs +45 -0
- package/dist/components/DocumentRetrievalCard/components/ViewArticleButton/components/Icon.cjs +25 -0
- package/dist/components/DocumentRetrievalCard/components/ViewArticleButton/components/Icon.js +23 -0
- package/dist/components/DocumentRetrievalCard/components/ViewArticleButton/components/Label.cjs +28 -0
- package/dist/components/DocumentRetrievalCard/components/ViewArticleButton/components/Layout.cjs +25 -0
- package/dist/components/DocumentRetrievalCard/components/ViewArticleButton.cjs +40 -0
- package/dist/components/DocumentRetrievalCard/hooks/useGetBackgroundColorsProperties.cjs +16 -0
- package/dist/components/DocumentRetrievalCard/hooks/useGetBackgroundColorsProperties.js +16 -0
- package/dist/components/DocumentRetrievalCard/hooks/useGetBorderProperties.cjs +16 -0
- package/dist/components/DocumentRetrievalCard/hooks/useGetBorderProperties.js +16 -0
- package/dist/components/DocumentRetrievalCard/hooks/useGetBorderRadiusProperties.cjs +13 -0
- package/dist/components/DocumentRetrievalCard/hooks/useGetBorderRadiusProperties.js +13 -0
- package/dist/components/DocumentRetrievalCard/hooks/useGetIconBackgroundProperties.cjs +13 -0
- package/dist/components/DocumentRetrievalCard/hooks/useGetIconBackgroundProperties.js +13 -0
- package/dist/components/DocumentRetrievalCard/hooks/useGetIconColorProperties.cjs +13 -0
- package/dist/components/DocumentRetrievalCard/hooks/useGetIconColorProperties.js +13 -0
- package/dist/components/DocumentRetrievalCard/hooks/useGetLabelTextCaseProperties.cjs +9 -0
- package/dist/components/DocumentRetrievalCard/hooks/useGetLabelTextCaseProperties.js +9 -0
- package/dist/components/DocumentRetrievalCard/hooks/useGetLabelTypographyProperties.cjs +15 -0
- package/dist/components/DocumentRetrievalCard/hooks/useGetLabelTypographyProperties.js +15 -0
- package/dist/components/DocumentRetrievalCard/index.cjs +7 -0
- package/dist/components/DocumentRetrievalCard/index.d.cts +4 -0
- package/dist/components/DocumentRetrievalCard/index.d.ts +4 -0
- package/dist/components/DocumentRetrievalCard/index.js +5 -0
- package/dist/components/DocumentRetrievalCard/types/index.d.cts +73 -0
- package/dist/components/DocumentRetrievalCard/types/index.d.ts +73 -0
- package/dist/components/DocumentRetrievalCard/utils/functions.cjs +29 -0
- package/dist/components/DocumentRetrievalCard/utils/functions.js +27 -0
- package/dist/components/Drawer/Drawer.cjs +35 -0
- package/dist/components/Drawer/Drawer.d.cts +43 -0
- package/dist/components/Drawer/Drawer.d.ts +43 -0
- package/dist/components/Drawer/Drawer.js +24 -0
- package/dist/components/Drawer/index.cjs +12 -0
- package/dist/components/Drawer/index.d.cts +3 -0
- package/dist/components/Drawer/index.d.ts +3 -0
- package/dist/components/Drawer/index.js +3 -0
- package/dist/components/Drawer/types/index.d.cts +16 -0
- package/dist/components/Drawer/types/index.d.ts +16 -0
- package/dist/components/DropdownMenu/DropdownMenu.cjs +130 -0
- package/dist/components/DropdownMenu/DropdownMenu.d.cts +35 -0
- package/dist/components/DropdownMenu/DropdownMenu.d.ts +35 -0
- package/dist/components/DropdownMenu/DropdownMenu.js +113 -0
- package/dist/components/DropdownMenu/index.cjs +17 -0
- package/dist/components/DropdownMenu/index.d.cts +3 -0
- package/dist/components/DropdownMenu/index.d.ts +3 -0
- package/dist/components/DropdownMenu/index.js +3 -0
- package/dist/components/DropdownMenu/types/index.d.cts +27 -0
- package/dist/components/DropdownMenu/types/index.d.ts +27 -0
- package/dist/components/FloatingButton/FloatingButton.cjs +39 -0
- package/dist/components/FloatingButton/FloatingButton.d.cts +23 -0
- package/dist/components/FloatingButton/FloatingButton.d.ts +23 -0
- package/dist/components/FloatingButton/FloatingButton.js +38 -0
- package/dist/components/FloatingButton/components/Button.cjs +25 -0
- package/dist/components/FloatingButton/components/Button.js +23 -0
- package/dist/components/FloatingButton/components/Container.cjs +23 -0
- package/dist/components/FloatingButton/components/Icon.cjs +25 -0
- package/dist/components/FloatingButton/components/Icon.js +24 -0
- package/dist/components/FloatingButton/components/Wrapper.cjs +18 -0
- package/dist/components/FloatingButton/hooks/useGetButtonProperties.cjs +22 -0
- package/dist/components/FloatingButton/hooks/useGetButtonProperties.js +22 -0
- package/dist/components/FloatingButton/hooks/useGetIconProperties.cjs +15 -0
- package/dist/components/FloatingButton/hooks/useGetIconProperties.js +15 -0
- package/dist/components/FloatingButton/types/types.d.cts +105 -0
- package/dist/components/FloatingButton/types/types.d.ts +105 -0
- package/dist/components/FloatingChat/FloatingChat.cjs +270 -0
- package/dist/components/FloatingChat/FloatingChat.d.cts +23 -0
- package/dist/components/FloatingChat/FloatingChat.d.ts +23 -0
- package/dist/components/FloatingChat/FloatingChat.js +269 -0
- package/dist/components/FloatingChat/components/AgentMessage.cjs +153 -0
- package/dist/components/FloatingChat/components/AgentMessage.js +152 -0
- package/dist/components/FloatingChat/components/ChatMessages.cjs +90 -0
- package/dist/components/FloatingChat/components/ChatMessages.js +88 -0
- package/dist/components/FloatingChat/components/DocumentRetrievalCardsCarousel.cjs +27 -0
- package/dist/components/FloatingChat/components/DocumentRetrievalCardsCarousel.js +26 -0
- package/dist/components/FloatingChat/components/Layout.cjs +67 -0
- package/dist/components/FloatingChat/components/Layout.js +65 -0
- package/dist/components/FloatingChat/components/MessageDivider.cjs +36 -0
- package/dist/components/FloatingChat/components/ModalSheet.cjs +183 -0
- package/dist/components/FloatingChat/components/ModalSheet.js +181 -0
- package/dist/components/FloatingChat/components/OrderLookupCardCarousel.cjs +31 -0
- package/dist/components/FloatingChat/components/ReviewCardsCarousel.cjs +30 -0
- package/dist/components/FloatingChat/components/ReviewCardsCarousel.js +29 -0
- package/dist/components/FloatingChat/components/SalesAgentProductCardsCarousel.cjs +36 -0
- package/dist/components/FloatingChat/components/SalesAgentProductCardsCarousel.js +35 -0
- package/dist/components/FloatingChat/components/ScrollToBottomButton.cjs +31 -0
- package/dist/components/FloatingChat/components/ScrollToBottomButton.js +30 -0
- package/dist/components/FloatingChat/components/UserMessage.cjs +35 -0
- package/dist/components/FloatingChat/components/index.cjs +28 -0
- package/dist/components/FloatingChat/components/index.js +28 -0
- package/dist/components/FloatingChat/hooks/useChatSuggestions.cjs +25 -0
- package/dist/components/FloatingChat/hooks/useFilteredChatMessages.cjs +24 -0
- package/dist/components/FloatingChat/hooks/usePreventScroll.cjs +117 -0
- package/dist/components/FloatingChat/hooks/useScrollToBottom.cjs +148 -0
- package/dist/components/FloatingChat/hooks/useSnapCalculator.cjs +37 -0
- package/dist/components/FloatingChat/hooks/useSnapControl.cjs +82 -0
- package/dist/components/FloatingChat/hooks/useSnapSetup.cjs +59 -0
- package/dist/components/FloatingChat/types/types.d.cts +76 -0
- package/dist/components/FloatingChat/types/types.d.ts +77 -0
- package/dist/components/FloatingChat/utils/functions.cjs +86 -0
- package/dist/components/Form/Form.cjs +53 -0
- package/dist/components/Form/components/Layout.cjs +35 -0
- package/dist/components/Form/components/SubmitButtonItem.cjs +24 -0
- package/dist/components/Form/components/TextFieldItem.cjs +43 -0
- package/dist/components/Form/hooks/useFormsTextFieldValues.cjs +31 -0
- package/dist/components/Form/hooks/useGetButtonProperties.cjs +21 -0
- package/dist/components/Form/hooks/useGetTextFieldProperties.cjs +25 -0
- package/dist/components/Form/utils/buildSubmitButtonElement.cjs +18 -0
- package/dist/components/Form/utils/createFormSchema.cjs +40 -0
- package/dist/components/Form/utils/mapTextFields.cjs +24 -0
- package/dist/components/FormField/FormField.cjs +79 -0
- package/dist/components/FormField/FormField.d.cts +7 -0
- package/dist/components/FormField/FormField.d.ts +7 -0
- package/dist/components/FormField/FormField.js +76 -0
- package/dist/components/FormField/index.cjs +3 -0
- package/dist/components/FormField/index.d.cts +3 -0
- package/dist/components/FormField/index.d.ts +3 -0
- package/dist/components/FormField/index.js +3 -0
- package/dist/components/FormField/types/index.d.cts +33 -0
- package/dist/components/FormField/types/index.d.ts +33 -0
- package/dist/components/FormHelperText/FormHelperText.cjs +17 -0
- package/dist/components/FormHelperText/FormHelperText.d.cts +7 -0
- package/dist/components/FormHelperText/FormHelperText.d.ts +7 -0
- package/dist/components/FormHelperText/FormHelperText.js +14 -0
- package/dist/components/FormHelperText/index.cjs +3 -0
- package/dist/components/FormHelperText/index.d.cts +3 -0
- package/dist/components/FormHelperText/index.d.ts +3 -0
- package/dist/components/FormHelperText/index.js +3 -0
- package/dist/components/FormHelperText/types/index.d.cts +6 -0
- package/dist/components/FormHelperText/types/index.d.ts +6 -0
- package/dist/components/FullPageSalesAgent/FullPageSalesAgent.cjs +132 -0
- package/dist/components/FullPageSalesAgent/FullPageSalesAgent.d.cts +24 -0
- package/dist/components/FullPageSalesAgent/FullPageSalesAgent.d.ts +25 -0
- package/dist/components/FullPageSalesAgent/FullPageSalesAgent.js +131 -0
- package/dist/components/FullPageSalesAgent/components/Layout.cjs +53 -0
- package/dist/components/FullPageSalesAgent/components/Layout.js +51 -0
- package/dist/components/FullPageSalesAgent/hooks/useContainerResizerObserver.cjs +23 -0
- package/dist/components/FullPageSalesAgent/hooks/useGetScrollContentStyles.cjs +19 -0
- package/dist/components/HoverCard/HoverCard.cjs +15 -0
- package/dist/components/HoverCard/HoverCard.d.cts +15 -0
- package/dist/components/HoverCard/HoverCard.d.ts +15 -0
- package/dist/components/HoverCard/HoverCard.js +11 -0
- package/dist/components/HoverCard/index.cjs +5 -0
- package/dist/components/HoverCard/index.d.cts +3 -0
- package/dist/components/HoverCard/index.d.ts +3 -0
- package/dist/components/HoverCard/index.js +3 -0
- package/dist/components/HoverCard/types/index.d.cts +9 -0
- package/dist/components/HoverCard/types/index.d.ts +9 -0
- package/dist/components/Image/Image.cjs +69 -0
- package/dist/components/Image/Image.d.cts +30 -0
- package/dist/components/Image/Image.d.ts +30 -0
- package/dist/components/Image/hooks/useGetAccessibilityProperties.cjs +24 -0
- package/dist/components/Image/hooks/useGetAspectRatioProperties.cjs +19 -0
- package/dist/components/Image/hooks/useGetObjectFitProperties.cjs +20 -0
- package/dist/components/Image/hooks/useGetRoundedProperties.cjs +12 -0
- package/dist/components/Image/hooks/useGetSkeletonProperties.cjs +13 -0
- package/dist/components/Image/hooks/useGetWidthProperties.cjs +19 -0
- package/dist/components/Image/hooks/useHandleImageLoading.cjs +32 -0
- package/dist/components/ImageGallery/ImageGallery.cjs +58 -0
- package/dist/components/ImageGallery/ImageGallery.d.cts +45 -0
- package/dist/components/ImageGallery/ImageGallery.d.ts +45 -0
- package/dist/components/ImageGallery/ImageGallery.js +57 -0
- package/dist/components/ImageGallery/components/ImageItem.cjs +11 -0
- package/dist/components/ImageGallery/components/Layout.cjs +52 -0
- package/dist/components/ImageGallery/components/Layout.js +50 -0
- package/dist/components/ImageGallery/components/NormalLayout.cjs +12 -0
- package/dist/components/ImageGallery/components/OverlappedLayout.cjs +16 -0
- package/dist/components/ImageGallery/hooks/useGetContainerProperties.cjs +19 -0
- package/dist/components/ImageGallery/types/types.d.cts +132 -0
- package/dist/components/ImageGallery/types/types.d.ts +132 -0
- package/dist/components/ImageGallery/utils/functions.cjs +15 -0
- package/dist/components/ImageGallery/utils/functions.js +15 -0
- package/dist/components/Input/Input.cjs +18 -0
- package/dist/components/Input/Input.d.cts +7 -0
- package/dist/components/Input/Input.d.ts +7 -0
- package/dist/components/Input/Input.js +15 -0
- package/dist/components/Input/index.cjs +3 -0
- package/dist/components/Input/index.d.cts +3 -0
- package/dist/components/Input/index.d.ts +3 -0
- package/dist/components/Input/index.js +3 -0
- package/dist/components/Input/types/index.d.cts +4 -0
- package/dist/components/Input/types/index.d.ts +4 -0
- package/dist/components/InputOTP/InputOTP.cjs +20 -0
- package/dist/components/InputOTP/InputOTP.d.cts +10 -0
- package/dist/components/InputOTP/InputOTP.d.ts +10 -0
- package/dist/components/InputOTP/InputOTP.js +15 -0
- package/dist/components/InputOTP/index.cjs +6 -0
- package/dist/components/InputOTP/index.d.cts +3 -0
- package/dist/components/InputOTP/index.d.ts +3 -0
- package/dist/components/InputOTP/index.js +3 -0
- package/dist/components/InputOTP/types/index.d.cts +21 -0
- package/dist/components/InputOTP/types/index.d.ts +21 -0
- package/dist/components/Label/Label.cjs +19 -0
- package/dist/components/Label/Label.d.cts +7 -0
- package/dist/components/Label/Label.d.ts +7 -0
- package/dist/components/Label/Label.js +15 -0
- package/dist/components/Label/index.cjs +3 -0
- package/dist/components/Label/index.d.cts +3 -0
- package/dist/components/Label/index.d.ts +3 -0
- package/dist/components/Label/index.js +3 -0
- package/dist/components/Label/types/index.d.cts +6 -0
- package/dist/components/Label/types/index.d.ts +6 -0
- package/dist/components/MarkdownProcessor/MarkdownProcessor.cjs +33 -0
- package/dist/components/MarkdownProcessor/MarkdownProcessor.d.cts +13 -0
- package/dist/components/MarkdownProcessor/MarkdownProcessor.d.ts +13 -0
- package/dist/components/MarkdownProcessor/MarkdownProcessor.js +31 -0
- package/dist/components/MarkdownProcessor/components/MarkdownLink.cjs +16 -0
- package/dist/components/MarkdownProcessor/components/MarkdownLink.js +15 -0
- package/dist/components/MarkdownProcessor/components/MarkdownListItem.cjs +15 -0
- package/dist/components/MarkdownProcessor/components/MarkdownOrderedList.cjs +11 -0
- package/dist/components/MarkdownProcessor/components/MarkdownParagraph.cjs +16 -0
- package/dist/components/MarkdownProcessor/components/MarkdownUnorderedList.cjs +11 -0
- package/dist/components/MarkdownProcessor/types/types.d.cts +48 -0
- package/dist/components/MarkdownProcessor/types/types.d.ts +48 -0
- package/dist/components/MarkdownProcessor/utils/functions.cjs +28 -0
- package/dist/components/MarkdownProcessor/utils/functions.js +26 -0
- package/dist/components/Menubar/Menubar.cjs +51 -0
- package/dist/components/Menubar/Menubar.d.cts +41 -0
- package/dist/components/Menubar/Menubar.d.ts +41 -0
- package/dist/components/Menubar/Menubar.js +34 -0
- package/dist/components/Menubar/index.cjs +18 -0
- package/dist/components/Menubar/index.d.cts +3 -0
- package/dist/components/Menubar/index.d.ts +3 -0
- package/dist/components/Menubar/index.js +3 -0
- package/dist/components/Menubar/types/index.d.cts +28 -0
- package/dist/components/Menubar/types/index.d.ts +28 -0
- package/dist/components/Message/Message.cjs +45 -0
- package/dist/components/Message/Message.d.cts +22 -0
- package/dist/components/Message/Message.d.ts +22 -0
- package/dist/components/Message/Message.js +44 -0
- package/dist/components/Message/components/AgentContent.cjs +23 -0
- package/dist/components/Message/components/AgentContent.js +22 -0
- package/dist/components/Message/components/AgentHeader.cjs +32 -0
- package/dist/components/Message/components/Layout.cjs +25 -0
- package/dist/components/Message/components/LinkButton.cjs +54 -0
- package/dist/components/Message/components/LinkButton.d.cts +21 -0
- package/dist/components/Message/components/LinkButton.d.ts +21 -0
- package/dist/components/Message/components/LinkButton.js +53 -0
- package/dist/components/Message/components/LoadingSkeleton.cjs +19 -0
- package/dist/components/Message/components/SparkleIcon.cjs +22 -0
- package/dist/components/Message/components/UserContent.cjs +20 -0
- package/dist/components/Message/hooks/useGetLinkButtonIconProperties.cjs +15 -0
- package/dist/components/Message/hooks/useGetLinkButtonProperties.cjs +15 -0
- package/dist/components/Message/hooks/useLatencyAnimation.cjs +47 -0
- package/dist/components/Message/hooks/useLatencyAnimation.js +46 -0
- package/dist/components/Message/hooks/useVariantStyleProperties.cjs +33 -0
- package/dist/components/Message/types/index.d.cts +61 -0
- package/dist/components/Message/types/index.d.ts +61 -0
- package/dist/components/NavigationMenu/NavigationMenu.cjs +34 -0
- package/dist/components/NavigationMenu/NavigationMenu.d.cts +27 -0
- package/dist/components/NavigationMenu/NavigationMenu.d.ts +27 -0
- package/dist/components/NavigationMenu/NavigationMenu.js +24 -0
- package/dist/components/NavigationMenu/index.cjs +11 -0
- package/dist/components/NavigationMenu/index.d.cts +3 -0
- package/dist/components/NavigationMenu/index.d.ts +3 -0
- package/dist/components/NavigationMenu/index.js +3 -0
- package/dist/components/NavigationMenu/types/index.d.cts +14 -0
- package/dist/components/NavigationMenu/types/index.d.ts +14 -0
- package/dist/components/OrderLookupCard/OrderLookupCard.cjs +76 -0
- package/dist/components/OrderLookupCard/OrderLookupCard.js +74 -0
- package/dist/components/OrderLookupCard/components/Layout.cjs +27 -0
- package/dist/components/OrderLookupCard/components/MoreProductsOverlay.cjs +41 -0
- package/dist/components/OrderLookupCard/components/OrderDate.cjs +21 -0
- package/dist/components/OrderLookupCard/components/OrderNumber.cjs +22 -0
- package/dist/components/OrderLookupCard/components/ProductImageGridItem.cjs +26 -0
- package/dist/components/OrderLookupCard/components/ProductImageItem.cjs +37 -0
- package/dist/components/OrderLookupCard/components/ProductImagesGrid.cjs +31 -0
- package/dist/components/OrderLookupCard/components/StatusLabel.cjs +30 -0
- package/dist/components/OrderLookupCard/components/TrackOrderLink.cjs +34 -0
- package/dist/components/OrderLookupCard/hooks/useGetContainerProperties.cjs +24 -0
- package/dist/components/OrderLookupCard/hooks/useGetContainerProperties.js +24 -0
- package/dist/components/OrderLookupCard/hooks/useGetImageBorderRadiusProperties.cjs +14 -0
- package/dist/components/OrderLookupCard/hooks/useGetImageBorderRadiusProperties.js +14 -0
- package/dist/components/OrderLookupCard/hooks/useGetStatusLabelProperties.cjs +24 -0
- package/dist/components/OrderLookupCard/hooks/useGetStatusLabelProperties.js +24 -0
- package/dist/components/OrderLookupCard/hooks/useGetTrackOrderLinkProperties.cjs +13 -0
- package/dist/components/OrderLookupCard/hooks/useGetTrackOrderLinkProperties.js +13 -0
- package/dist/components/OrderLookupCard/types/index.d.cts +102 -0
- package/dist/components/OrderLookupCard/types/index.d.ts +102 -0
- package/dist/components/Pagination/Pagination.cjs +116 -0
- package/dist/components/Pagination/Pagination.d.cts +46 -0
- package/dist/components/Pagination/Pagination.d.ts +46 -0
- package/dist/components/Pagination/Pagination.js +108 -0
- package/dist/components/Pagination/index.cjs +9 -0
- package/dist/components/Pagination/index.d.cts +3 -0
- package/dist/components/Pagination/index.d.ts +3 -0
- package/dist/components/Pagination/index.js +3 -0
- package/dist/components/Pagination/types/index.d.cts +14 -0
- package/dist/components/Pagination/types/index.d.ts +14 -0
- package/dist/components/Popover/Popover.cjs +17 -0
- package/dist/components/Popover/Popover.d.cts +19 -0
- package/dist/components/Popover/Popover.d.ts +19 -0
- package/dist/components/Popover/Popover.js +12 -0
- package/dist/components/Popover/index.cjs +6 -0
- package/dist/components/Popover/index.d.cts +3 -0
- package/dist/components/Popover/index.d.ts +3 -0
- package/dist/components/Popover/index.js +3 -0
- package/dist/components/Popover/types/index.d.cts +10 -0
- package/dist/components/Popover/types/index.d.ts +10 -0
- package/dist/components/ProductCard/ProductCard.cjs +47 -0
- package/dist/components/ProductCard/ProductCard.d.cts +23 -0
- package/dist/components/ProductCard/ProductCard.js +45 -0
- package/dist/components/ProductCard/components/Carousel.cjs +25 -0
- package/dist/components/ProductCard/components/Header.cjs +68 -0
- package/dist/components/ProductCard/components/Poster.cjs +18 -0
- package/dist/components/ProductCard/types/index.d.cts +74 -0
- package/dist/components/ProductCard/types/index.d.ts +74 -0
- package/dist/components/Progress/CircularProgress.cjs +47 -0
- package/dist/components/Progress/CircularProgress.d.cts +11 -0
- package/dist/components/Progress/CircularProgress.d.ts +11 -0
- package/dist/components/Progress/CircularProgress.js +45 -0
- package/dist/components/Progress/Progress.cjs +22 -0
- package/dist/components/Progress/Progress.d.cts +9 -0
- package/dist/components/Progress/Progress.d.ts +9 -0
- package/dist/components/Progress/Progress.js +19 -0
- package/dist/components/Progress/index.cjs +5 -0
- package/dist/components/Progress/index.d.cts +4 -0
- package/dist/components/Progress/index.d.ts +4 -0
- package/dist/components/Progress/index.js +4 -0
- package/dist/components/Progress/types/index.d.cts +6 -0
- package/dist/components/Progress/types/index.d.ts +6 -0
- package/dist/components/PromptButton/PromptButton.cjs +53 -0
- package/dist/components/PromptButton/PromptButton.d.cts +27 -0
- package/dist/components/PromptButton/PromptButton.d.ts +27 -0
- package/dist/components/PromptButton/PromptButton.js +51 -0
- package/dist/components/PromptButton/components/Icon.cjs +10 -0
- package/dist/components/PromptButton/components/Label.cjs +19 -0
- package/dist/components/PromptButton/components/Layout.cjs +46 -0
- package/dist/components/PromptButton/components/Layout.js +44 -0
- package/dist/components/PromptButton/components/Loading.cjs +12 -0
- package/dist/components/PromptButton/hooks/useGetBackgroundColorsProperties.cjs +17 -0
- package/dist/components/PromptButton/hooks/useGetBoldTextProperties.cjs +12 -0
- package/dist/components/PromptButton/hooks/useGetBorderColorsProperties.cjs +17 -0
- package/dist/components/PromptButton/hooks/useGetIconColorsProperties.cjs +31 -0
- package/dist/components/PromptButton/hooks/useGetIconColorsProperties.js +31 -0
- package/dist/components/PromptButton/hooks/useGetLayoutBaseProperties.cjs +15 -0
- package/dist/components/PromptButton/hooks/useGetTextColorsProperties.cjs +18 -0
- package/dist/components/PromptButton/index.cjs +5 -0
- package/dist/components/PromptButton/types/index.d.cts +128 -0
- package/dist/components/PromptButton/types/index.d.ts +128 -0
- package/dist/components/PromptButton/utils/functions.cjs +9 -0
- package/dist/components/PromptButtonCarouselWithImage/PromptButtonCarouselWithImage.cjs +44 -0
- package/dist/components/PromptButtonCarouselWithImage/PromptButtonCarouselWithImage.d.cts +23 -0
- package/dist/components/PromptButtonCarouselWithImage/PromptButtonCarouselWithImage.d.ts +23 -0
- package/dist/components/PromptButtonCarouselWithImage/PromptButtonCarouselWithImage.js +43 -0
- package/dist/components/PromptButtonCarouselWithImage/components/Image.cjs +18 -0
- package/dist/components/PromptButtonCarouselWithImage/components/Layout.cjs +58 -0
- package/dist/components/PromptButtonCarouselWithImage/components/PromptButtonsCarousel.cjs +79 -0
- package/dist/components/PromptButtonCarouselWithImage/components/Skeleton.cjs +15 -0
- package/dist/components/PromptButtonCarouselWithImage/components/Title.cjs +20 -0
- package/dist/components/PromptButtonCarouselWithImage/types/types.d.cts +76 -0
- package/dist/components/PromptButtonCarouselWithImage/types/types.d.ts +76 -0
- package/dist/components/PromptCarousel/PromptCarousel.cjs +136 -0
- package/dist/components/PromptCarousel/PromptCarousel.d.cts +31 -0
- package/dist/components/PromptCarousel/PromptCarousel.d.ts +31 -0
- package/dist/components/PromptCarousel/PromptCarousel.js +135 -0
- package/dist/components/PromptCarousel/hooks/useCarouselButtons.cjs +19 -0
- package/dist/components/PromptCarousel/hooks/useCoordinatedScrollAnimation.cjs +91 -0
- package/dist/components/PromptCarousel/hooks/usePromptCarouselAnalytics.cjs +73 -0
- package/dist/components/PromptCarousel/hooks/usePromptCarouselAnalytics.d.cts +14 -0
- package/dist/components/PromptCarousel/hooks/usePromptCarouselAnalytics.d.ts +14 -0
- package/dist/components/PromptCarousel/hooks/usePromptCarouselAnalytics.js +72 -0
- package/dist/components/PromptCarousel/hooks/useScrollSync.cjs +65 -0
- package/dist/components/PromptCarousel/index.cjs +8 -0
- package/dist/components/PromptCarousel/index.d.cts +4 -0
- package/dist/components/PromptCarousel/index.d.ts +4 -0
- package/dist/components/PromptCarousel/index.js +5 -0
- package/dist/components/PromptCarousel/types/types.d.cts +140 -0
- package/dist/components/PromptCarousel/types/types.d.ts +140 -0
- package/dist/components/PromptCarousel/utils/functions.cjs +17 -0
- package/dist/components/RadioGroup/RadioGroup.cjs +40 -0
- package/dist/components/RadioGroup/RadioGroup.d.cts +8 -0
- package/dist/components/RadioGroup/RadioGroup.d.ts +8 -0
- package/dist/components/RadioGroup/RadioGroup.js +36 -0
- package/dist/components/RadioGroup/index.cjs +4 -0
- package/dist/components/RadioGroup/index.d.cts +3 -0
- package/dist/components/RadioGroup/index.d.ts +3 -0
- package/dist/components/RadioGroup/index.js +3 -0
- package/dist/components/RadioGroup/types/index.d.cts +8 -0
- package/dist/components/RadioGroup/types/index.d.ts +8 -0
- package/dist/components/Resizable/Resizable.cjs +12 -0
- package/dist/components/Resizable/Resizable.d.cts +15 -0
- package/dist/components/Resizable/Resizable.d.ts +15 -0
- package/dist/components/Resizable/Resizable.js +9 -0
- package/dist/components/Resizable/index.cjs +5 -0
- package/dist/components/Resizable/index.d.cts +3 -0
- package/dist/components/Resizable/index.d.ts +3 -0
- package/dist/components/Resizable/index.js +3 -0
- package/dist/components/Resizable/types/index.d.cts +11 -0
- package/dist/components/Resizable/types/index.d.ts +11 -0
- package/dist/components/ReviewCard/ReviewCard.cjs +57 -0
- package/dist/components/ReviewCard/ReviewCard.d.cts +32 -0
- package/dist/components/ReviewCard/ReviewCard.d.ts +32 -0
- package/dist/components/ReviewCard/ReviewCard.js +56 -0
- package/dist/components/ReviewCard/components/Container.cjs +44 -0
- package/dist/components/ReviewCard/components/Container.d.cts +17 -0
- package/dist/components/ReviewCard/components/Container.d.ts +17 -0
- package/dist/components/ReviewCard/components/Name.cjs +36 -0
- package/dist/components/ReviewCard/components/Rating.cjs +37 -0
- package/dist/components/ReviewCard/components/Rating.d.cts +10 -0
- package/dist/components/ReviewCard/components/Rating.d.ts +11 -0
- package/dist/components/ReviewCard/components/ReadMoreButton.cjs +42 -0
- package/dist/components/ReviewCard/components/ReadMoreButton.d.cts +13 -0
- package/dist/components/ReviewCard/components/ReadMoreButton.d.ts +13 -0
- package/dist/components/ReviewCard/components/ReadMoreButton.js +40 -0
- package/dist/components/ReviewCard/components/ReviewText.cjs +25 -0
- package/dist/components/ReviewCard/components/StarIcon.cjs +23 -0
- package/dist/components/ReviewCard/components/StarIcon.js +22 -0
- package/dist/components/ReviewCard/components/VerifiedBuyer.cjs +32 -0
- package/dist/components/ReviewCard/components/VerifiedBuyer.js +31 -0
- package/dist/components/ReviewCard/components/index.d.cts +70 -0
- package/dist/components/ReviewCard/components/index.d.ts +70 -0
- package/dist/components/ReviewCard/hooks/useGetBackgroundColorsProperties.cjs +13 -0
- package/dist/components/ReviewCard/hooks/useGetBackgroundColorsProperties.js +13 -0
- package/dist/components/ReviewCard/hooks/useGetBorderProperties.cjs +16 -0
- package/dist/components/ReviewCard/hooks/useGetBorderProperties.js +16 -0
- package/dist/components/ReviewCard/hooks/useGetBorderRadiusProperties.cjs +13 -0
- package/dist/components/ReviewCard/hooks/useGetBorderRadiusProperties.js +13 -0
- package/dist/components/ReviewCard/hooks/useGetNameProperties.cjs +15 -0
- package/dist/components/ReviewCard/hooks/useGetRatingBackgroundProperties.cjs +13 -0
- package/dist/components/ReviewCard/hooks/useGetRatingBackgroundProperties.js +13 -0
- package/dist/components/ReviewCard/hooks/useGetReadMoreTypographyProperties.cjs +15 -0
- package/dist/components/ReviewCard/hooks/useGetReadMoreTypographyProperties.js +15 -0
- package/dist/components/ReviewCard/hooks/useGetReviewTextProperties.cjs +19 -0
- package/dist/components/ReviewCard/hooks/useGetStarIconProperties.cjs +17 -0
- package/dist/components/ReviewCard/hooks/useGetStarIconProperties.js +16 -0
- package/dist/components/ReviewCard/types/types.d.cts +74 -0
- package/dist/components/ReviewCard/types/types.d.ts +74 -0
- package/dist/components/SalesAgentProductCard/SalesAgentProductCard.cjs +55 -0
- package/dist/components/SalesAgentProductCard/SalesAgentProductCard.d.cts +35 -0
- package/dist/components/SalesAgentProductCard/SalesAgentProductCard.d.ts +35 -0
- package/dist/components/SalesAgentProductCard/SalesAgentProductCard.js +54 -0
- package/dist/components/SalesAgentProductCard/components/Container.cjs +57 -0
- package/dist/components/SalesAgentProductCard/components/Container.d.cts +21 -0
- package/dist/components/SalesAgentProductCard/components/Container.d.ts +22 -0
- package/dist/components/SalesAgentProductCard/components/Container.js +55 -0
- package/dist/components/SalesAgentProductCard/components/Price.cjs +31 -0
- package/dist/components/SalesAgentProductCard/components/ProductImage.cjs +23 -0
- package/dist/components/SalesAgentProductCard/components/ProductName.cjs +28 -0
- package/dist/components/SalesAgentProductCard/components/ProductName.d.cts +11 -0
- package/dist/components/SalesAgentProductCard/components/ProductName.d.ts +12 -0
- package/dist/components/SalesAgentProductCard/components/ProductName.js +26 -0
- package/dist/components/SalesAgentProductCard/components/Rate.cjs +33 -0
- package/dist/components/SalesAgentProductCard/components/Rate.d.cts +10 -0
- package/dist/components/SalesAgentProductCard/components/Rate.d.ts +11 -0
- package/dist/components/SalesAgentProductCard/components/Rate.js +32 -0
- package/dist/components/SalesAgentProductCard/components/StarIcon.cjs +22 -0
- package/dist/components/SalesAgentProductCard/components/StarIcon.js +21 -0
- package/dist/components/SalesAgentProductCard/components/index.d.cts +61 -0
- package/dist/components/SalesAgentProductCard/components/index.d.ts +61 -0
- package/dist/components/SalesAgentProductCard/hooks/useGetContainerProperties.cjs +30 -0
- package/dist/components/SalesAgentProductCard/hooks/useGetContainerProperties.js +29 -0
- package/dist/components/SalesAgentProductCard/hooks/useGetProductDescriptionProperties.cjs +38 -0
- package/dist/components/SalesAgentProductCard/hooks/useGetProductDescriptionProperties.js +37 -0
- package/dist/components/SalesAgentProductCard/hooks/useGetProductNameProperties.cjs +13 -0
- package/dist/components/SalesAgentProductCard/hooks/useGetProductNameProperties.js +12 -0
- package/dist/components/SalesAgentProductCard/hooks/useGetStarIconProperties.cjs +17 -0
- package/dist/components/SalesAgentProductCard/hooks/useGetStarIconProperties.js +16 -0
- package/dist/components/SalesAgentProductCard/types/types.d.cts +108 -0
- package/dist/components/SalesAgentProductCard/types/types.d.ts +108 -0
- package/dist/components/ScrollArea/ScrollArea.cjs +14 -0
- package/dist/components/ScrollArea/ScrollArea.d.cts +8 -0
- package/dist/components/ScrollArea/ScrollArea.d.ts +8 -0
- package/dist/components/ScrollArea/ScrollArea.js +11 -0
- package/dist/components/ScrollArea/index.cjs +4 -0
- package/dist/components/ScrollArea/index.d.cts +3 -0
- package/dist/components/ScrollArea/index.d.ts +3 -0
- package/dist/components/ScrollArea/index.js +3 -0
- package/dist/components/ScrollArea/types/index.d.cts +8 -0
- package/dist/components/ScrollArea/types/index.d.ts +8 -0
- package/dist/components/Select/Select.cjs +130 -0
- package/dist/components/Select/Select.d.cts +16 -0
- package/dist/components/Select/Select.d.ts +16 -0
- package/dist/components/Select/Select.js +118 -0
- package/dist/components/Select/index.cjs +12 -0
- package/dist/components/Select/index.d.cts +3 -0
- package/dist/components/Select/index.d.ts +3 -0
- package/dist/components/Select/index.js +3 -0
- package/dist/components/Select/types/index.d.cts +13 -0
- package/dist/components/Select/types/index.d.ts +13 -0
- package/dist/components/Separator/Separator.cjs +20 -0
- package/dist/components/Separator/Separator.d.cts +7 -0
- package/dist/components/Separator/Separator.d.ts +7 -0
- package/dist/components/Separator/Separator.js +17 -0
- package/dist/components/Separator/index.cjs +3 -0
- package/dist/components/Separator/index.d.cts +3 -0
- package/dist/components/Separator/index.d.ts +3 -0
- package/dist/components/Separator/index.js +3 -0
- package/dist/components/Separator/types/index.d.cts +6 -0
- package/dist/components/Separator/types/index.d.ts +6 -0
- package/dist/components/Sheet/Sheet.cjs +88 -0
- package/dist/components/Sheet/Sheet.d.cts +34 -0
- package/dist/components/Sheet/Sheet.d.ts +34 -0
- package/dist/components/Sheet/Sheet.js +75 -0
- package/dist/components/Sheet/index.cjs +13 -0
- package/dist/components/Sheet/index.d.cts +3 -0
- package/dist/components/Sheet/index.d.ts +3 -0
- package/dist/components/Sheet/index.js +3 -0
- package/dist/components/Sheet/types/index.d.cts +18 -0
- package/dist/components/Sheet/types/index.d.ts +18 -0
- package/dist/components/Skeleton/Skeleton.cjs +14 -0
- package/dist/components/Skeleton/Skeleton.d.cts +10 -0
- package/dist/components/Skeleton/Skeleton.d.ts +10 -0
- package/dist/components/Skeleton/Skeleton.js +13 -0
- package/dist/components/Skeleton/index.cjs +3 -0
- package/dist/components/Skeleton/index.d.cts +3 -0
- package/dist/components/Skeleton/index.d.ts +3 -0
- package/dist/components/Skeleton/index.js +3 -0
- package/dist/components/Skeleton/types/index.d.cts +4 -0
- package/dist/components/Skeleton/types/index.d.ts +4 -0
- package/dist/components/Slider/Slider.cjs +22 -0
- package/dist/components/Slider/Slider.d.cts +7 -0
- package/dist/components/Slider/Slider.d.ts +7 -0
- package/dist/components/Slider/Slider.js +19 -0
- package/dist/components/Slider/index.cjs +3 -0
- package/dist/components/Slider/index.d.cts +3 -0
- package/dist/components/Slider/index.d.ts +3 -0
- package/dist/components/Slider/index.js +3 -0
- package/dist/components/Slider/types/index.d.cts +7 -0
- package/dist/components/Slider/types/index.d.ts +7 -0
- package/dist/components/SocialProof/SocialProof.cjs +118 -0
- package/dist/components/SocialProof/SocialProof.d.cts +12 -0
- package/dist/components/SocialProof/SocialProof.d.ts +12 -0
- package/dist/components/SocialProof/SocialProof.js +117 -0
- package/dist/components/SocialProof/components/Headline.cjs +53 -0
- package/dist/components/SocialProof/components/Headline.js +51 -0
- package/dist/components/SocialProof/components/ImageGallery.cjs +24 -0
- package/dist/components/SocialProof/components/LayoutFourGrid.cjs +43 -0
- package/dist/components/SocialProof/components/LayoutFourHorizontal.cjs +58 -0
- package/dist/components/SocialProof/components/LayoutFourHorizontal.js +56 -0
- package/dist/components/SocialProof/components/LayoutSingle.cjs +63 -0
- package/dist/components/SocialProof/components/Skeleton.cjs +14 -0
- package/dist/components/SocialProof/components/Subheadline.cjs +37 -0
- package/dist/components/SocialProof/components/Subheadline.js +36 -0
- package/dist/components/SocialProof/components/Textfield.cjs +20 -0
- package/dist/components/SocialProof/components/Textfield.js +19 -0
- package/dist/components/SocialProof/hooks/useSocialProofCount.cjs +48 -0
- package/dist/components/SocialProof/types/types.d.cts +236 -0
- package/dist/components/SocialProof/types/types.d.ts +236 -0
- package/dist/components/SocialProof/utils/functions.cjs +15 -0
- package/dist/components/SocialProof/utils/functions.js +15 -0
- package/dist/components/Sonner/Sonner.cjs +8 -0
- package/dist/components/Sonner/Sonner.d.cts +7 -0
- package/dist/components/Sonner/Sonner.d.ts +7 -0
- package/dist/components/Sonner/Sonner.js +7 -0
- package/dist/components/Sonner/index.cjs +3 -0
- package/dist/components/Sonner/index.d.cts +3 -0
- package/dist/components/Sonner/index.d.ts +3 -0
- package/dist/components/Sonner/index.js +3 -0
- package/dist/components/Sonner/types/index.d.cts +7 -0
- package/dist/components/Sonner/types/index.d.ts +7 -0
- package/dist/components/SparkleAnimation/SparkleAnimation.cjs +106 -0
- package/dist/components/SparkleAnimation/SparkleAnimation.d.cts +15 -0
- package/dist/components/SparkleAnimation/SparkleAnimation.d.ts +15 -0
- package/dist/components/SparkleAnimation/SparkleAnimation.js +105 -0
- package/dist/components/Stack/Stack.cjs +35 -0
- package/dist/components/Stack/Stack.d.cts +10 -0
- package/dist/components/Stack/Stack.d.ts +10 -0
- package/dist/components/Stack/hooks/useFormatStackChildren.cjs +26 -0
- package/dist/components/Stack/hooks/useGetAlignProperties.cjs +19 -0
- package/dist/components/Stack/hooks/useGetDirectionProperties.cjs +18 -0
- package/dist/components/Stack/hooks/useGetGapProperties.cjs +15 -0
- package/dist/components/Stack/hooks/useGetJustifyProperties.cjs +20 -0
- package/dist/components/Stack/hooks/useGetWrapProperties.cjs +12 -0
- package/dist/components/Switch/Switch.cjs +19 -0
- package/dist/components/Switch/Switch.d.cts +7 -0
- package/dist/components/Switch/Switch.d.ts +7 -0
- package/dist/components/Switch/Switch.js +16 -0
- package/dist/components/Switch/index.cjs +3 -0
- package/dist/components/Switch/index.d.cts +3 -0
- package/dist/components/Switch/index.d.ts +3 -0
- package/dist/components/Switch/index.js +3 -0
- package/dist/components/Switch/types/index.d.cts +7 -0
- package/dist/components/Switch/types/index.d.ts +7 -0
- package/dist/components/Table/Table.cjs +32 -0
- package/dist/components/Table/Table.d.cts +14 -0
- package/dist/components/Table/Table.d.ts +14 -0
- package/dist/components/Table/Table.js +23 -0
- package/dist/components/Table/index.cjs +10 -0
- package/dist/components/Table/index.d.cts +3 -0
- package/dist/components/Table/index.d.ts +3 -0
- package/dist/components/Table/index.js +3 -0
- package/dist/components/Table/types/index.d.cts +11 -0
- package/dist/components/Table/types/index.d.ts +11 -0
- package/dist/components/Tabs/Tabs.cjs +34 -0
- package/dist/components/Tabs/Tabs.d.cts +10 -0
- package/dist/components/Tabs/Tabs.d.ts +10 -0
- package/dist/components/Tabs/Tabs.js +28 -0
- package/dist/components/Tabs/index.cjs +6 -0
- package/dist/components/Tabs/index.d.cts +3 -0
- package/dist/components/Tabs/index.d.ts +3 -0
- package/dist/components/Tabs/index.js +3 -0
- package/dist/components/Tabs/types/index.d.cts +10 -0
- package/dist/components/Tabs/types/index.d.ts +10 -0
- package/dist/components/TextField/TextField.cjs +61 -0
- package/dist/components/TextField/TextField.d.cts +25 -0
- package/dist/components/TextField/TextField.d.ts +25 -0
- package/dist/components/TextField/TextField.js +59 -0
- package/dist/components/TextField/components/Input.cjs +31 -0
- package/dist/components/TextField/components/Layout.cjs +22 -0
- package/dist/components/TextField/components/SendIcon.cjs +26 -0
- package/dist/components/TextField/hooks/useGetContainerProperties.cjs +51 -0
- package/dist/components/TextField/hooks/useGetContainerProperties.js +50 -0
- package/dist/components/TextField/hooks/useGetSkeletonProperties.cjs +13 -0
- package/dist/components/TextField/hooks/useSendIconHandlers.cjs +32 -0
- package/dist/components/TextField/hooks/useTextFieldFocus.cjs +22 -0
- package/dist/components/TextField/hooks/useTextFieldSubmit.cjs +40 -0
- package/dist/components/TextField/hooks/useTextFieldValue.cjs +28 -0
- package/dist/components/TextField/types/index.d.cts +49 -0
- package/dist/components/TextField/types/index.d.ts +49 -0
- package/dist/components/TextField/utils/getInputClasses.cjs +17 -0
- package/dist/components/TextField/utils/getInputClasses.js +17 -0
- package/dist/components/TextField/utils/getSendIconElement.cjs +42 -0
- package/dist/components/TextField/utils/getSendIconElement.js +41 -0
- package/dist/components/Textarea/Textarea.cjs +17 -0
- package/dist/components/Textarea/Textarea.d.cts +7 -0
- package/dist/components/Textarea/Textarea.d.ts +7 -0
- package/dist/components/Textarea/Textarea.js +14 -0
- package/dist/components/Textarea/index.cjs +3 -0
- package/dist/components/Textarea/index.d.cts +3 -0
- package/dist/components/Textarea/index.d.ts +3 -0
- package/dist/components/Textarea/index.js +3 -0
- package/dist/components/Textarea/types/index.d.cts +4 -0
- package/dist/components/Textarea/types/index.d.ts +4 -0
- package/dist/components/Title/Title.cjs +32 -0
- package/dist/components/Title/components/Image.cjs +38 -0
- package/dist/components/Title/components/Label.cjs +19 -0
- package/dist/components/Title/components/Layout.cjs +27 -0
- package/dist/components/TitledPromptCarousel/TitledPromptCarousel.cjs +48 -0
- package/dist/components/TitledPromptCarousel/TitledPromptCarousel.d.cts +20 -0
- package/dist/components/TitledPromptCarousel/TitledPromptCarousel.d.ts +20 -0
- package/dist/components/TitledPromptCarousel/TitledPromptCarousel.js +46 -0
- package/dist/components/TitledPromptCarousel/types/index.d.cts +71 -0
- package/dist/components/TitledPromptCarousel/types/index.d.ts +71 -0
- package/dist/components/Toast/Toast.cjs +80 -0
- package/dist/components/Toast/Toast.d.cts +20 -0
- package/dist/components/Toast/Toast.d.ts +20 -0
- package/dist/components/Toast/Toast.js +70 -0
- package/dist/components/Toast/Toaster.cjs +23 -0
- package/dist/components/Toast/Toaster.d.cts +6 -0
- package/dist/components/Toast/Toaster.d.ts +6 -0
- package/dist/components/Toast/Toaster.js +22 -0
- package/dist/components/Toast/hooks/useToast.cjs +122 -0
- package/dist/components/Toast/hooks/useToast.d.cts +19 -0
- package/dist/components/Toast/hooks/useToast.d.ts +19 -0
- package/dist/components/Toast/hooks/useToast.js +119 -0
- package/dist/components/Toast/index.cjs +15 -0
- package/dist/components/Toast/index.d.cts +5 -0
- package/dist/components/Toast/index.d.ts +5 -0
- package/dist/components/Toast/index.js +5 -0
- package/dist/components/Toast/types/index.d.cts +22 -0
- package/dist/components/Toast/types/index.d.ts +22 -0
- package/dist/components/Toggle/Toggle.cjs +13 -0
- package/dist/components/Toggle/Toggle.d.cts +8 -0
- package/dist/components/Toggle/Toggle.d.ts +8 -0
- package/dist/components/Toggle/Toggle.js +10 -0
- package/dist/components/Toggle/index.cjs +4 -0
- package/dist/components/Toggle/index.d.cts +3 -0
- package/dist/components/Toggle/index.d.ts +3 -0
- package/dist/components/Toggle/index.js +3 -0
- package/dist/components/Toggle/types/index.d.cts +12 -0
- package/dist/components/Toggle/types/index.d.ts +12 -0
- package/dist/components/ToggleGroup/ToggleGroup.cjs +67 -0
- package/dist/components/ToggleGroup/ToggleGroup.d.cts +32 -0
- package/dist/components/ToggleGroup/ToggleGroup.d.ts +32 -0
- package/dist/components/ToggleGroup/ToggleGroup.js +63 -0
- package/dist/components/ToggleGroup/index.cjs +4 -0
- package/dist/components/ToggleGroup/index.d.cts +3 -0
- package/dist/components/ToggleGroup/index.d.ts +3 -0
- package/dist/components/ToggleGroup/index.js +3 -0
- package/dist/components/ToggleGroup/types/index.d.cts +22 -0
- package/dist/components/ToggleGroup/types/index.d.ts +22 -0
- package/dist/components/Tokens/index.cjs +30 -0
- package/dist/components/Tokens/index.d.cts +14 -0
- package/dist/components/Tokens/index.d.ts +14 -0
- package/dist/components/Tokens/index.js +15 -0
- package/dist/components/Tooltip/Tooltip.cjs +25 -0
- package/dist/components/Tooltip/Tooltip.d.cts +10 -0
- package/dist/components/Tooltip/Tooltip.d.ts +10 -0
- package/dist/components/Tooltip/Tooltip.js +19 -0
- package/dist/components/Tooltip/index.cjs +6 -0
- package/dist/components/Tooltip/index.d.cts +3 -0
- package/dist/components/Tooltip/index.d.ts +3 -0
- package/dist/components/Tooltip/index.js +3 -0
- package/dist/components/Tooltip/types/index.d.cts +10 -0
- package/dist/components/Tooltip/types/index.d.ts +10 -0
- package/dist/components/TypingAnimation/TypingAnimation.cjs +136 -0
- package/dist/components/TypingAnimation/TypingAnimation.d.cts +12 -0
- package/dist/components/TypingAnimation/TypingAnimation.d.ts +12 -0
- package/dist/components/TypingAnimation/TypingAnimation.js +135 -0
- package/dist/components/TypingAnimation/hooks/useGetTypographyVariant.cjs +12 -0
- package/dist/components/TypingAnimation/hooks/useGetTypographyVariant.js +12 -0
- package/dist/components/TypingAnimation/types/index.d.cts +145 -0
- package/dist/components/TypingAnimation/types/index.d.ts +145 -0
- package/dist/components/Typography/Typography.cjs +42 -0
- package/dist/components/Typography/Typography.d.cts +32 -0
- package/dist/components/Typography/Typography.d.ts +32 -0
- package/dist/components/Typography/hooks/useGetAccessibilityAttributes.cjs +30 -0
- package/dist/components/Typography/hooks/useGetAlignProperties.cjs +19 -0
- package/dist/components/Typography/hooks/useGetColorProperties.cjs +20 -0
- package/dist/components/Typography/hooks/useGetNoWrapProperties.cjs +12 -0
- package/dist/components/Typography/hooks/useGetNumberOfLinesProperties.cjs +21 -0
- package/dist/components/Typography/hooks/useGetVariantProperties.cjs +61 -0
- package/dist/components/Typography/types/index.d.cts +93 -0
- package/dist/components/Typography/types/index.d.ts +95 -0
- package/dist/components/WelcomeMessage/WelcomeMessage.cjs +40 -0
- package/dist/components/WelcomeMessage/WelcomeMessage.js +39 -0
- package/dist/components/WelcomeMessage/components/Container.cjs +34 -0
- package/dist/components/WelcomeMessage/components/SparkleIcon.cjs +22 -0
- package/dist/components/WelcomeMessage/components/SparkleIcon.js +21 -0
- package/dist/components/WelcomeMessage/components/Text.cjs +19 -0
- package/dist/components/WelcomeMessage/components/Title.cjs +20 -0
- package/dist/components/WelcomeMessage/hooks/useGetContainerProperties.cjs +21 -0
- package/dist/components/WelcomeMessage/hooks/useGetContainerProperties.js +20 -0
- package/dist/components/WelcomeMessage/hooks/useGetSparkleIconProperties.cjs +32 -0
- package/dist/components/WelcomeMessage/hooks/useGetSparkleIconProperties.js +31 -0
- package/dist/components/WelcomeMessage/types/types.cjs +13 -0
- package/dist/components/WelcomeMessage/types/types.d.cts +44 -0
- package/dist/components/WelcomeMessage/types/types.d.ts +44 -0
- package/dist/components/WelcomeMessage/types/types.js +13 -0
- package/dist/components/WidgetTextField/WidgetTextField.cjs +35 -0
- package/dist/components/WidgetTextField/WidgetTextField.d.cts +20 -0
- package/dist/components/WidgetTextField/WidgetTextField.d.ts +20 -0
- package/dist/components/WidgetTextField/WidgetTextField.js +34 -0
- package/dist/components/WidgetTextField/components/Container.cjs +44 -0
- package/dist/components/WidgetTextField/components/FakeTextInput.cjs +18 -0
- package/dist/components/WidgetTextField/components/Icon.cjs +65 -0
- package/dist/components/WidgetTextField/components/Icon.js +64 -0
- package/dist/components/WidgetTextField/components/Skeleton.cjs +19 -0
- package/dist/components/WidgetTextField/components/Skeleton.js +17 -0
- package/dist/components/WidgetTextField/hooks/useGetContainerProperties.cjs +20 -0
- package/dist/components/WidgetTextField/hooks/useGetContainerProperties.js +19 -0
- package/dist/components/WidgetTextField/types/types.d.cts +58 -0
- package/dist/components/WidgetTextField/types/types.d.ts +58 -0
- package/dist/components/WidgetWrapper/WidgetWrapper.cjs +28 -0
- package/dist/components/WidgetWrapper/WidgetWrapper.d.cts +21 -0
- package/dist/components/WidgetWrapper/WidgetWrapper.d.ts +21 -0
- package/dist/components/WidgetWrapper/hooks/useGetWrapperProperties.cjs +19 -0
- package/dist/components/WidgetWrapperWithTitle/WidgetWrapperWithTitle.cjs +41 -0
- package/dist/components/WidgetWrapperWithTitle/WidgetWrapperWithTitle.d.cts +19 -0
- package/dist/components/WidgetWrapperWithTitle/WidgetWrapperWithTitle.d.ts +19 -0
- package/dist/components/utils/CustomIcon.cjs +21 -0
- package/dist/components/utils/resolveTheme.cjs +12 -0
- package/dist/components/utils/resolveTheme.js +12 -0
- package/dist/components/utils/useAnimatedTextMinHeight.cjs +28 -0
- package/dist/components/utils/useCheckIsMobile.cjs +26 -0
- package/dist/components/utils/useCheckIsMobile.js +25 -0
- package/dist/components/utils/useDragToScroll.cjs +68 -0
- package/dist/components/utils/useGetContentSize.cjs +41 -0
- package/dist/components/utils/useHorizontalWheelScroll.cjs +29 -0
- package/dist/components/utils/useResponsiveValue.cjs +56 -0
- package/dist/components/utils/useResponsiveValue.d.cts +6 -0
- package/dist/components/utils/useResponsiveValue.d.ts +6 -0
- package/dist/components/utils/useResponsiveValue.js +55 -0
- package/dist/hooks/dist/application/models/api/response.d.cts +63 -0
- package/dist/hooks/dist/application/models/api/responseGenerics.d.cts +41 -0
- package/dist/hooks/dist/application/models/api/suggestion.d.cts +10 -0
- package/dist/hooks/dist/application/models/api/userEvent.d.cts +62 -0
- package/dist/hooks/dist/application/models/api/widgetText.d.cts +8 -0
- package/dist/hooks/dist/application/models/chatElementDisplayLocationV3.d.cts +29 -0
- package/dist/hooks/dist/application/models/message.d.cts +108 -0
- package/dist/hooks/dist/application/models/utilityTypes/camelCase.d.cts +71 -0
- package/dist/hooks/dist/application/models/utilityTypes/camelCasedPropertiesDeep.d.cts +58 -0
- package/dist/hooks/dist/application/models/utilityTypes/internal.d.cts +22 -0
- package/dist/hooks/dist/application/models/utilityTypes/splitWords.d.cts +31 -0
- package/dist/hooks/dist/application/models/utilityTypes/trim.d.cts +30 -0
- package/dist/hooks/dist/application/models/utilityTypes/unknownArray.d.cts +30 -0
- package/dist/hooks/dist/contexts/hardcopyContext/hardcopyContext.d.cts +13 -0
- package/dist/hooks/dist/contexts/salesAgentContext/chatAPI.d.cts +28 -0
- package/dist/hooks/dist/contexts/salesAgentContext/salesAgentContext.d.cts +18 -0
- package/dist/hooks/dist/contexts/typesV3.d.cts +106 -0
- package/dist/hooks/dist/hooks/WidgetInteraction/types.d.cts +16 -0
- package/dist/lib/utils.cjs +12 -0
- package/dist/lib/utils.d.cts +6 -0
- package/dist/lib/utils.d.ts +6 -0
- package/dist/lib/utils.js +11 -0
- package/dist/node_modules/clsx/dist/clsx.cjs +18 -0
- package/dist/node_modules/clsx/dist/clsx.js +17 -0
- package/dist/packages/hooks/dist/application/models/api/orgConfigResults.d.ts +2 -0
- package/dist/packages/hooks/dist/application/models/api/response.d.ts +63 -0
- package/dist/packages/hooks/dist/application/models/api/responseGenerics.d.ts +41 -0
- package/dist/packages/hooks/dist/application/models/api/suggestion.d.ts +10 -0
- package/dist/packages/hooks/dist/application/models/api/userEvent.d.ts +62 -0
- package/dist/packages/hooks/dist/application/models/api/widgetText.d.ts +8 -0
- package/dist/packages/hooks/dist/application/models/chatElementDisplayLocationV3.d.ts +29 -0
- package/dist/packages/hooks/dist/application/models/frontendConfig.d.ts +2 -0
- package/dist/packages/hooks/dist/application/models/guards/isVariantInfo.d.ts +2 -0
- package/dist/packages/hooks/dist/application/models/index.d.ts +19 -0
- package/dist/packages/hooks/dist/application/models/message.d.ts +108 -0
- package/dist/packages/hooks/dist/application/models/utilityTypes/camelCase.d.ts +71 -0
- package/dist/packages/hooks/dist/application/models/utilityTypes/camelCasedPropertiesDeep.d.ts +58 -0
- package/dist/packages/hooks/dist/application/models/utilityTypes/internal.d.ts +22 -0
- package/dist/packages/hooks/dist/application/models/utilityTypes/splitWords.d.ts +31 -0
- package/dist/packages/hooks/dist/application/models/utilityTypes/trim.d.ts +30 -0
- package/dist/packages/hooks/dist/application/models/utilityTypes/unknownArray.d.ts +30 -0
- package/dist/packages/hooks/dist/application/models/validators/validateGraphQLFrontendConfig.d.ts +3 -0
- package/dist/packages/hooks/dist/application/models/validators/validateOrgConfigResults.d.ts +2 -0
- package/dist/packages/hooks/dist/application/models/variantInfo/variantInfo.d.ts +2 -0
- package/dist/packages/hooks/dist/contexts/hardcopyContext/hardcopyContext.d.ts +13 -0
- package/dist/packages/hooks/dist/contexts/hardcopyContext/index.d.ts +2 -0
- package/dist/packages/hooks/dist/contexts/salesAgentContext/chatAPI.d.ts +28 -0
- package/dist/packages/hooks/dist/contexts/salesAgentContext/index.d.ts +3 -0
- package/dist/packages/hooks/dist/contexts/salesAgentContext/salesAgentContext.d.ts +18 -0
- package/dist/packages/hooks/dist/contexts/types.d.ts +4 -0
- package/dist/packages/hooks/dist/contexts/typesV3.d.ts +107 -0
- package/dist/packages/hooks/dist/hooks/WidgetInteraction/types.d.ts +16 -0
- package/dist/packages/icons/dist/ArrowUp.cjs +28 -0
- package/dist/packages/icons/dist/ArrowUp.js +28 -0
- package/dist/packages/icons/dist/Checkmark.cjs +31 -0
- package/dist/packages/icons/dist/Checkmark.js +31 -0
- package/dist/packages/icons/dist/ChevronDown.cjs +23 -0
- package/dist/packages/icons/dist/ChevronDown.js +23 -0
- package/dist/packages/icons/dist/Document.cjs +18 -0
- package/dist/packages/icons/dist/Document.js +18 -0
- package/dist/packages/icons/dist/EnviveWatermark.cjs +39 -0
- package/dist/packages/icons/dist/EnviveWatermark.js +39 -0
- package/dist/packages/icons/dist/FourPointStar.cjs +22 -0
- package/dist/packages/icons/dist/FourPointStar.js +22 -0
- package/dist/packages/icons/dist/IconCloseRounded.cjs +21 -0
- package/dist/packages/icons/dist/IconCloseRounded.js +21 -0
- package/dist/packages/icons/dist/IconCloseSharp.cjs +30 -0
- package/dist/packages/icons/dist/IconCloseSharp.js +30 -0
- package/dist/packages/icons/dist/IconCloseTransparent.cjs +23 -0
- package/dist/packages/icons/dist/IconCloseTransparent.js +23 -0
- package/dist/packages/icons/dist/LatencyIconEmptyStep.cjs +17 -0
- package/dist/packages/icons/dist/LatencyIconEmptyStep.js +17 -0
- package/dist/packages/icons/dist/LatencyIconStep1.cjs +43 -0
- package/dist/packages/icons/dist/LatencyIconStep1.js +43 -0
- package/dist/packages/icons/dist/LatencyIconStep2.cjs +32 -0
- package/dist/packages/icons/dist/LatencyIconStep2.js +32 -0
- package/dist/packages/icons/dist/LatencyIconStep3.cjs +25 -0
- package/dist/packages/icons/dist/LatencyIconStep3.js +25 -0
- package/dist/packages/icons/dist/LatencyIconStep4.cjs +25 -0
- package/dist/packages/icons/dist/LatencyIconStep4.js +25 -0
- package/dist/packages/icons/dist/LatencyIconStep5.cjs +32 -0
- package/dist/packages/icons/dist/LatencyIconStep5.js +32 -0
- package/dist/packages/icons/dist/MagnifyingGlass.cjs +21 -0
- package/dist/packages/icons/dist/MagnifyingGlass.js +21 -0
- package/dist/packages/icons/dist/MagnifyingThin.cjs +33 -0
- package/dist/packages/icons/dist/MagnifyingThin.js +33 -0
- package/dist/packages/icons/dist/Send.cjs +21 -0
- package/dist/packages/icons/dist/Send.js +21 -0
- package/dist/packages/icons/dist/SendMinimalist.cjs +34 -0
- package/dist/packages/icons/dist/SendMinimalist.js +34 -0
- package/dist/packages/icons/dist/SendModern.cjs +43 -0
- package/dist/packages/icons/dist/SendModern.js +43 -0
- package/dist/packages/icons/dist/SendStandard.cjs +21 -0
- package/dist/packages/icons/dist/SendStandard.js +21 -0
- package/dist/packages/icons/dist/Sparkles.cjs +43 -0
- package/dist/packages/icons/dist/Sparkles.js +43 -0
- package/dist/packages/icons/dist/Star.cjs +23 -0
- package/dist/packages/icons/dist/Star.js +23 -0
- package/dist/packages/icons/dist/VectorUpRight.cjs +17 -0
- package/dist/packages/icons/dist/VectorUpRight.js +17 -0
- package/dist/packages/icons/dist/_virtual/rolldown_runtime.cjs +27 -0
- package/dist/packages/icons/dist/_virtual/rolldown_runtime.js +25 -0
- package/dist/packages/icons/dist/node_modules/react/cjs/react-jsx-runtime.development.cjs +696 -0
- package/dist/packages/icons/dist/node_modules/react/cjs/react-jsx-runtime.development.js +696 -0
- package/dist/packages/icons/dist/node_modules/react/cjs/react-jsx-runtime.production.min.cjs +43 -0
- package/dist/packages/icons/dist/node_modules/react/cjs/react-jsx-runtime.production.min.js +43 -0
- package/dist/packages/icons/dist/node_modules/react/cjs/react.development.cjs +1528 -0
- package/dist/packages/icons/dist/node_modules/react/cjs/react.development.js +1528 -0
- package/dist/packages/icons/dist/node_modules/react/cjs/react.production.min.cjs +329 -0
- package/dist/packages/icons/dist/node_modules/react/cjs/react.production.min.js +329 -0
- package/dist/packages/icons/dist/node_modules/react/index.cjs +13 -0
- package/dist/packages/icons/dist/node_modules/react/index.js +13 -0
- package/dist/packages/icons/dist/node_modules/react/jsx-runtime.cjs +13 -0
- package/dist/packages/icons/dist/node_modules/react/jsx-runtime.js +13 -0
- package/dist/styles.css +1 -1
- package/package.json +338 -127
- package/src/components/Accordion/Accordion.tsx +71 -0
- package/src/components/Accordion/__tests__/Accordion.test.tsx +151 -0
- package/src/components/Accordion/index.ts +12 -0
- package/src/components/Accordion/types/index.ts +18 -0
- package/src/components/Alert/Alert.tsx +69 -0
- package/src/components/Alert/__tests__/Alert.test.tsx +78 -0
- package/src/components/Alert/index.ts +6 -0
- package/src/components/Alert/types/index.ts +12 -0
- package/src/components/AlertDialog/AlertDialog.tsx +67 -0
- package/src/components/AlertDialog/__tests__/AlertDialog.test.tsx +141 -0
- package/src/components/AlertDialog/index.ts +26 -0
- package/src/components/AlertDialog/types/index.ts +24 -0
- package/src/components/AspectRatio/AspectRatio.tsx +3 -0
- package/src/components/AspectRatio/__tests__/AspectRatio.test.tsx +55 -0
- package/src/components/AspectRatio/index.ts +2 -0
- package/src/components/AspectRatio/types/index.ts +4 -0
- package/src/components/Avatar/Avatar.tsx +55 -0
- package/src/components/Avatar/__tests__/Avatar.test.tsx +101 -0
- package/src/components/Avatar/index.ts +6 -0
- package/src/components/Avatar/types/index.ts +10 -0
- package/src/components/Badge/Badge.tsx +66 -0
- package/src/components/Badge/__tests__/Badge.test.tsx +55 -0
- package/src/components/Badge/index.ts +2 -0
- package/src/components/Badge/types/index.ts +6 -0
- package/src/components/Breadcrumb/Breadcrumb.tsx +51 -0
- package/src/components/Breadcrumb/__tests__/Breadcrumb.test.tsx +183 -0
- package/src/components/Breadcrumb/index.ts +18 -0
- package/src/components/Breadcrumb/types/index.ts +21 -0
- package/src/components/Button/Button.tsx +54 -0
- package/src/components/Button/__tests__/Button.test.tsx +116 -0
- package/src/components/Button/index.ts +2 -0
- package/src/components/Button/types/index.ts +12 -0
- package/src/components/Calendar/Calendar.tsx +8 -0
- package/src/components/Calendar/__tests__/Calendar.test.tsx +100 -0
- package/src/components/Calendar/index.ts +2 -0
- package/src/components/Calendar/types/index.ts +3 -0
- package/src/components/Card/Card.tsx +93 -0
- package/src/components/Card/__tests__/Card.test.tsx +104 -0
- package/src/components/Card/index.ts +16 -0
- package/src/components/Card/types/index.ts +14 -0
- package/src/components/ChatFooter/ChatFooter.tsx +2 -0
- package/src/components/ChatFooter/components/PromptSuggestions.tsx +18 -2
- package/src/components/ChatFooter/types/types.ts +1 -0
- package/src/components/Checkbox/Checkbox.tsx +56 -0
- package/src/components/Checkbox/__tests__/Checkbox.test.tsx +75 -0
- package/src/components/Checkbox/index.ts +2 -0
- package/src/components/Checkbox/types/index.ts +6 -0
- package/src/components/Collapsible/Collapsible.tsx +9 -0
- package/src/components/Collapsible/__tests__/Collapsible.test.tsx +127 -0
- package/src/components/Collapsible/index.ts +10 -0
- package/src/components/Collapsible/types/index.ts +14 -0
- package/src/components/Combobox/Combobox.tsx +256 -0
- package/src/components/Combobox/index.ts +2 -0
- package/src/components/Combobox/types/index.ts +17 -0
- package/src/components/Command/Command.tsx +64 -0
- package/src/components/Command/__tests__/Command.test.tsx +174 -0
- package/src/components/Command/index.ts +22 -0
- package/src/components/Command/types/index.ts +21 -0
- package/src/components/ContextMenu/ContextMenu.tsx +85 -0
- package/src/components/ContextMenu/__tests__/ContextMenu.test.tsx +184 -0
- package/src/components/ContextMenu/index.ts +34 -0
- package/src/components/ContextMenu/types/index.ts +38 -0
- package/src/components/Dialog/Dialog.tsx +133 -0
- package/src/components/Dialog/__tests__/Dialog.test.tsx +147 -0
- package/src/components/Dialog/index.ts +24 -0
- package/src/components/Dialog/types/index.ts +22 -0
- package/src/components/Drawer/Drawer.tsx +53 -0
- package/src/components/Drawer/__tests__/Drawer.test.tsx +146 -0
- package/src/components/Drawer/index.ts +24 -0
- package/src/components/Drawer/types/index.ts +22 -0
- package/src/components/DropdownMenu/DropdownMenu.tsx +237 -0
- package/src/components/DropdownMenu/__tests__/DropdownMenu.test.tsx +198 -0
- package/src/components/DropdownMenu/index.ts +34 -0
- package/src/components/DropdownMenu/types/index.ts +38 -0
- package/src/components/FloatingButton/FloatingButton.tsx +2 -0
- package/src/components/FloatingButton/components/Button.tsx +7 -1
- package/src/components/FloatingButton/hooks/useGetIconProperties.ts +1 -1
- package/src/components/FloatingButton/types/types.ts +5 -0
- package/src/components/FloatingChat/FloatingChat.tsx +65 -15
- package/src/components/FloatingChat/components/AgentMessage.tsx +82 -8
- package/src/components/FloatingChat/components/DocumentRetrievalCardsCarousel.tsx +4 -3
- package/src/components/FloatingChat/components/ModalSheet.tsx +1 -1
- package/src/components/FloatingChat/components/ReviewCardsCarousel.tsx +8 -2
- package/src/components/FloatingChat/components/SalesAgentProductCardsCarousel.tsx +3 -0
- package/src/components/FloatingChat/types/types.ts +4 -0
- package/src/components/FormField/FormField.tsx +128 -0
- package/src/components/FormField/index.ts +2 -0
- package/src/components/FormField/types/index.ts +30 -0
- package/src/components/FormHelperText/FormHelperText.tsx +22 -0
- package/src/components/FormHelperText/index.ts +2 -0
- package/src/components/FormHelperText/types/index.ts +4 -0
- package/src/components/HoverCard/HoverCard.tsx +13 -0
- package/src/components/HoverCard/__tests__/HoverCard.test.tsx +80 -0
- package/src/components/HoverCard/index.ts +6 -0
- package/src/components/HoverCard/types/index.ts +8 -0
- package/src/components/Input/Input.tsx +20 -0
- package/src/components/Input/index.ts +2 -0
- package/src/components/Input/types/index.ts +2 -0
- package/src/components/InputOTP/InputOTP.tsx +28 -0
- package/src/components/InputOTP/__tests__/InputOTP.test.tsx +152 -0
- package/src/components/InputOTP/index.ts +12 -0
- package/src/components/InputOTP/types/index.ts +19 -0
- package/src/components/Label/Label.tsx +21 -0
- package/src/components/Label/__tests__/Label.test.tsx +57 -0
- package/src/components/Label/index.ts +2 -0
- package/src/components/Label/types/index.ts +4 -0
- package/src/components/MarkdownProcessor/MarkdownProcessor.tsx +4 -3
- package/src/components/MarkdownProcessor/components/MarkdownLink.tsx +3 -1
- package/src/components/MarkdownProcessor/types/types.ts +4 -0
- package/src/components/MarkdownProcessor/utils/functions.tsx +17 -0
- package/src/components/Menubar/Menubar.tsx +103 -0
- package/src/components/Menubar/__tests__/Menubar.test.tsx +209 -0
- package/src/components/Menubar/index.ts +36 -0
- package/src/components/Menubar/types/index.ts +40 -0
- package/src/components/Message/Message.tsx +4 -2
- package/src/components/Message/components/AgentContent.tsx +6 -1
- package/src/components/Message/components/LinkButton.tsx +10 -3
- package/src/components/Message/types/index.ts +2 -0
- package/src/components/NavigationMenu/NavigationMenu.tsx +59 -0
- package/src/components/NavigationMenu/__tests__/NavigationMenu.test.tsx +106 -0
- package/src/components/NavigationMenu/index.ts +21 -0
- package/src/components/NavigationMenu/types/index.ts +34 -0
- package/src/components/Pagination/Pagination.tsx +164 -0
- package/src/components/Pagination/__tests__/Pagination.test.tsx +164 -0
- package/src/components/Pagination/index.ts +18 -0
- package/src/components/Pagination/types/index.ts +21 -0
- package/src/components/Popover/Popover.tsx +15 -0
- package/src/components/Popover/__tests__/Popover.test.tsx +100 -0
- package/src/components/Popover/index.ts +7 -0
- package/src/components/Popover/types/index.ts +10 -0
- package/src/components/Progress/CircularProgress.tsx +53 -0
- package/src/components/Progress/Progress.tsx +33 -0
- package/src/components/Progress/__tests__/Progress.test.tsx +72 -0
- package/src/components/Progress/index.ts +4 -0
- package/src/components/Progress/types/index.ts +4 -0
- package/src/components/PromptButton/PromptButton.tsx +15 -3
- package/src/components/PromptButton/__tests__/PromptButton.test.tsx +114 -0
- package/src/components/PromptButton/components/Layout.tsx +20 -1
- package/src/components/PromptButton/types/index.ts +31 -0
- package/src/components/PromptCarousel/PromptCarousel.tsx +27 -6
- package/src/components/PromptCarousel/__tests__/PromptCarousel.test.tsx +40 -0
- package/src/components/PromptCarousel/hooks/usePromptCarouselAnalytics.ts +95 -0
- package/src/components/PromptCarousel/index.ts +2 -1
- package/src/components/PromptCarousel/types/types.ts +39 -0
- package/src/components/RadioGroup/RadioGroup.tsx +47 -0
- package/src/components/RadioGroup/__tests__/RadioGroup.test.tsx +105 -0
- package/src/components/RadioGroup/index.ts +2 -0
- package/src/components/RadioGroup/types/index.ts +10 -0
- package/src/components/Resizable/Resizable.tsx +12 -0
- package/src/components/Resizable/__tests__/Resizable.test.tsx +136 -0
- package/src/components/Resizable/index.ts +6 -0
- package/src/components/Resizable/types/index.ts +11 -0
- package/src/components/ReviewCard/ReviewCard.tsx +8 -1
- package/src/components/ReviewCard/types/types.ts +9 -0
- package/src/components/ScrollArea/ScrollArea.tsx +16 -0
- package/src/components/ScrollArea/__tests__/ScrollArea.test.tsx +99 -0
- package/src/components/ScrollArea/index.ts +2 -0
- package/src/components/ScrollArea/types/index.ts +11 -0
- package/src/components/Select/Select.tsx +212 -0
- package/src/components/Select/__tests__/Select.test.tsx +111 -0
- package/src/components/Select/index.ts +21 -0
- package/src/components/Select/types/index.ts +30 -0
- package/src/components/Separator/Separator.tsx +31 -0
- package/src/components/Separator/__tests__/Separator.test.tsx +60 -0
- package/src/components/Separator/index.ts +2 -0
- package/src/components/Separator/types/index.ts +4 -0
- package/src/components/Sheet/Sheet.tsx +147 -0
- package/src/components/Sheet/__tests__/Sheet.test.tsx +183 -0
- package/src/components/Sheet/index.ts +25 -0
- package/src/components/Sheet/types/index.ts +26 -0
- package/src/components/Skeleton/Skeleton.tsx +16 -0
- package/src/components/Skeleton/__tests__/Skeleton.test.tsx +49 -0
- package/src/components/Skeleton/index.ts +2 -0
- package/src/components/Skeleton/types/index.ts +1 -0
- package/src/components/Slider/Slider.tsx +27 -0
- package/src/components/Slider/__tests__/Slider.test.tsx +84 -0
- package/src/components/Slider/index.ts +2 -0
- package/src/components/Slider/types/index.ts +6 -0
- package/src/components/Sonner/Sonner.tsx +5 -0
- package/src/components/Sonner/__tests__/Sonner.test.tsx +46 -0
- package/src/components/Sonner/index.ts +2 -0
- package/src/components/Sonner/types/index.ts +4 -0
- package/src/components/Switch/Switch.tsx +26 -0
- package/src/components/Switch/__tests__/Switch.test.tsx +75 -0
- package/src/components/Switch/index.ts +2 -0
- package/src/components/Switch/types/index.ts +6 -0
- package/src/components/Table/Table.tsx +62 -0
- package/src/components/Table/__tests__/Table.test.tsx +231 -0
- package/src/components/Table/index.ts +20 -0
- package/src/components/Table/types/index.ts +23 -0
- package/src/components/Tabs/Tabs.tsx +57 -0
- package/src/components/Tabs/__tests__/Tabs.test.tsx +124 -0
- package/src/components/Tabs/index.ts +7 -0
- package/src/components/Tabs/types/index.ts +18 -0
- package/src/components/TextField/TextField.tsx +10 -4
- package/src/components/TextField/types/index.ts +1 -0
- package/src/components/Textarea/Textarea.tsx +19 -0
- package/src/components/Textarea/index.ts +2 -0
- package/src/components/Textarea/types/index.ts +2 -0
- package/src/components/Toast/Toast.tsx +144 -0
- package/src/components/Toast/Toaster.tsx +29 -0
- package/src/components/Toast/__tests__/Toast.test.tsx +163 -0
- package/src/components/Toast/hooks/useToast.ts +160 -0
- package/src/components/Toast/index.ts +23 -0
- package/src/components/Toast/types/index.ts +28 -0
- package/src/components/Toggle/Toggle.tsx +11 -0
- package/src/components/Toggle/__tests__/Toggle.test.tsx +111 -0
- package/src/components/Toggle/index.ts +2 -0
- package/src/components/Toggle/types/index.ts +11 -0
- package/src/components/ToggleGroup/ToggleGroup.tsx +82 -0
- package/src/components/ToggleGroup/__tests__/ToggleGroup.test.tsx +140 -0
- package/src/components/ToggleGroup/index.ts +2 -0
- package/src/components/ToggleGroup/types/index.ts +22 -0
- package/src/components/Tooltip/Tooltip.tsx +28 -0
- package/src/components/Tooltip/__tests__/Tooltip.test.tsx +119 -0
- package/src/components/Tooltip/index.ts +7 -0
- package/src/components/Tooltip/types/index.ts +10 -0
- package/src/components/Typography/types/index.ts +2 -5
- package/src/lib/utils.ts +10 -0
- package/src/test/setup.ts +16 -0
- package/dist/AnimatedText/AnimatedText.cjs +0 -63
- package/dist/AnimatedText/AnimatedText.d.cts +0 -13
- package/dist/AnimatedText/AnimatedText.d.ts +0 -13
- package/dist/CSSVariablesEditor/CssVariablesEditorComponent.cjs +0 -14
- package/dist/CSSVariablesEditor/CssVariablesEditorComponent.d.cts +0 -10
- package/dist/CSSVariablesEditor/CssVariablesEditorComponent.d.ts +0 -10
- package/dist/CSSVariablesEditor/components/CSSVariablesEditor.cjs +0 -119
- package/dist/CSSVariablesEditor/components/Container.cjs +0 -14
- package/dist/CSSVariablesEditor/components/Header.cjs +0 -14
- package/dist/CSSVariablesEditor/components/Purpose.cjs +0 -14
- package/dist/CSSVariablesEditor/hooks/useGetCssVariablesOptions.cjs +0 -120
- package/dist/CSSVariablesEditor/hooks/useGetCssVariablesOptions.js +0 -119
- package/dist/CSSVariablesEditor/hooks/useGetCurrentMerchantColors.cjs +0 -165
- package/dist/CSSVariablesEditor/hooks/useGetCurrentMerchantColors.js +0 -164
- package/dist/CSSVariablesEditor/hooks/useGetDefaultCssVariables.cjs +0 -423
- package/dist/CSSVariablesEditor/hooks/useGetDefaultCssVariables.js +0 -422
- package/dist/CSSVariablesEditor/hooks/useHandleCssVariablesState.cjs +0 -55
- package/dist/CSSVariablesEditor/hooks/useHandleUpdateCssVars.cjs +0 -103
- package/dist/CSSVariablesEditor/hooks/useHandleUpdateCssVars.js +0 -103
- package/dist/CSSVariablesEditor/utils/functions.cjs +0 -53
- package/dist/CSSVariablesEditor/utils/functions.js +0 -51
- package/dist/Carousel/Carousel.cjs +0 -26
- package/dist/Carousel/Carousel.d.cts +0 -16
- package/dist/Carousel/Carousel.d.ts +0 -16
- package/dist/Carousel/Carousel.js +0 -25
- package/dist/Carousel/components/ArrowIcon.cjs +0 -22
- package/dist/Carousel/components/ArrowIcon.js +0 -20
- package/dist/Carousel/components/Badge.cjs +0 -28
- package/dist/Carousel/components/Container.cjs +0 -76
- package/dist/Carousel/components/Item.cjs +0 -11
- package/dist/Carousel/components/Next.cjs +0 -17
- package/dist/Carousel/components/Previous.cjs +0 -17
- package/dist/Carousel/hooks/useCarouselButtons.cjs +0 -13
- package/dist/Carousel/hooks/useCarouselItems.cjs +0 -16
- package/dist/Carousel/hooks/useCarouselNavigation.cjs +0 -102
- package/dist/Carousel/hooks/useCarouselNavigationButtons.cjs +0 -33
- package/dist/Carousel/hooks/useGetBadgeProperties.cjs +0 -20
- package/dist/Carousel/hooks/useGetBadgeProperties.js +0 -19
- package/dist/Carousel/types/types.d.cts +0 -50
- package/dist/Carousel/types/types.d.ts +0 -50
- package/dist/ChatFooter/ChatFooter.cjs +0 -43
- package/dist/ChatFooter/ChatFooter.d.cts +0 -23
- package/dist/ChatFooter/ChatFooter.d.ts +0 -23
- package/dist/ChatFooter/ChatFooter.js +0 -41
- package/dist/ChatFooter/components/EnviveLogo.cjs +0 -19
- package/dist/ChatFooter/components/EnviveLogo.js +0 -17
- package/dist/ChatFooter/components/Layout.cjs +0 -45
- package/dist/ChatFooter/components/Layout.d.cts +0 -17
- package/dist/ChatFooter/components/Layout.d.ts +0 -18
- package/dist/ChatFooter/components/PromptSuggestions.cjs +0 -21
- package/dist/ChatFooter/components/PromptSuggestions.d.cts +0 -13
- package/dist/ChatFooter/components/PromptSuggestions.d.ts +0 -14
- package/dist/ChatFooter/components/PromptSuggestions.js +0 -20
- package/dist/ChatFooter/components/index.d.cts +0 -51
- package/dist/ChatFooter/components/index.d.ts +0 -51
- package/dist/ChatFooter/hooks/useGetChatScrollProperties.cjs +0 -24
- package/dist/ChatFooter/hooks/useGetChatScrollProperties.js +0 -23
- package/dist/ChatFooter/hooks/useGetContainerProperties.cjs +0 -21
- package/dist/ChatFooter/hooks/useGetContainerProperties.js +0 -20
- package/dist/ChatFooter/types/types.d.cts +0 -74
- package/dist/ChatFooter/types/types.d.ts +0 -74
- package/dist/ChatHeader/ChatHeader.cjs +0 -46
- package/dist/ChatHeader/ChatHeader.d.cts +0 -26
- package/dist/ChatHeader/ChatHeader.d.ts +0 -26
- package/dist/ChatHeader/ChatHeader.js +0 -45
- package/dist/ChatHeader/components/CloseButton.cjs +0 -32
- package/dist/ChatHeader/components/CloseButton.js +0 -28
- package/dist/ChatHeader/components/Handle.cjs +0 -56
- package/dist/ChatHeader/components/Layout.cjs +0 -18
- package/dist/ChatHeader/components/Logo.cjs +0 -21
- package/dist/ChatHeader/components/Toggle.cjs +0 -45
- package/dist/ChatHeader/components/Toggle.js +0 -44
- package/dist/ChatHeader/components/ToggleItem.cjs +0 -38
- package/dist/ChatHeader/hooks/useGetCloseButtonProperties.cjs +0 -28
- package/dist/ChatHeader/hooks/useGetCloseButtonProperties.js +0 -26
- package/dist/ChatHeader/hooks/useGetHandleProperties.cjs +0 -75
- package/dist/ChatHeader/hooks/useGetHandleProperties.js +0 -75
- package/dist/ChatHeader/hooks/useGetLayoutProperties.cjs +0 -33
- package/dist/ChatHeader/hooks/useGetLayoutProperties.js +0 -31
- package/dist/ChatHeader/hooks/useGetToggleOptionProperties.cjs +0 -83
- package/dist/ChatHeader/hooks/useGetToggleOptionProperties.js +0 -83
- package/dist/ChatHeader/hooks/useGetToggleProperties.cjs +0 -18
- package/dist/ChatHeader/hooks/useGetToggleProperties.js +0 -18
- package/dist/ChatHeader/hooks/useToggleLogoSelector.cjs +0 -14
- package/dist/ChatHeader/hooks/useToggleLogoSelector.js +0 -14
- package/dist/ChatHeader/types/index.d.cts +0 -51
- package/dist/ChatHeader/types/index.d.ts +0 -51
- package/dist/ChatPreview/ChatPreview.cjs +0 -66
- package/dist/ChatPreview/ChatPreview.d.cts +0 -12
- package/dist/ChatPreview/ChatPreview.d.ts +0 -12
- package/dist/ChatPreview/ChatPreview.js +0 -65
- package/dist/ChatPreview/components/Layout.cjs +0 -21
- package/dist/ChatPreview/components/Message.cjs +0 -18
- package/dist/ChatPreview/types/types.d.cts +0 -144
- package/dist/ChatPreview/types/types.d.ts +0 -144
- package/dist/ChatPreviewComparison/ChatPreviewComparison.cjs +0 -77
- package/dist/ChatPreviewComparison/ChatPreviewComparison.d.cts +0 -12
- package/dist/ChatPreviewComparison/ChatPreviewComparison.d.ts +0 -12
- package/dist/ChatPreviewComparison/ChatPreviewComparison.js +0 -76
- package/dist/ChatPreviewComparison/components/Headline.cjs +0 -23
- package/dist/ChatPreviewComparison/components/Headline.js +0 -22
- package/dist/ChatPreviewComparison/components/Layout.cjs +0 -97
- package/dist/ChatPreviewComparison/components/Layout.js +0 -96
- package/dist/ChatPreviewComparison/components/Message.cjs +0 -24
- package/dist/ChatPreviewComparison/components/Message.js +0 -23
- package/dist/ChatPreviewComparison/types/types.d.cts +0 -152
- package/dist/ChatPreviewComparison/types/types.d.ts +0 -152
- package/dist/ChatPreviewLoading/ChatPreviewLoading.cjs +0 -59
- package/dist/ChatPreviewLoading/ChatPreviewLoading.d.cts +0 -20
- package/dist/ChatPreviewLoading/ChatPreviewLoading.d.ts +0 -20
- package/dist/ChatPreviewLoading/components/LayoutLoading.cjs +0 -21
- package/dist/ChatPreviewLoading/components/Skeleton.cjs +0 -14
- package/dist/Container/Container.cjs +0 -26
- package/dist/Container/Container.d.cts +0 -303
- package/dist/Container/Container.d.ts +0 -303
- package/dist/Container/hooks/useGetCenterContentProperties.cjs +0 -13
- package/dist/Container/hooks/useGetFluidProperties.cjs +0 -13
- package/dist/DesignTokens/DesignTokensComponent.cjs +0 -30
- package/dist/DesignTokens/DesignTokensComponent.d.cts +0 -14
- package/dist/DesignTokens/DesignTokensComponent.d.ts +0 -14
- package/dist/DesignTokens/components/BorderRadius.cjs +0 -27
- package/dist/DesignTokens/components/Breakpoints.cjs +0 -35
- package/dist/DesignTokens/components/Container.cjs +0 -14
- package/dist/DesignTokens/components/FontFamily.cjs +0 -42
- package/dist/DesignTokens/components/FontSize.cjs +0 -47
- package/dist/DesignTokens/components/FontWeight.cjs +0 -39
- package/dist/DesignTokens/components/Header.cjs +0 -14
- package/dist/DesignTokens/components/LetterSpacing.cjs +0 -35
- package/dist/DesignTokens/components/LineHeight.cjs +0 -38
- package/dist/DesignTokens/components/PaletteColors.cjs +0 -146
- package/dist/DesignTokens/components/Purpose.cjs +0 -14
- package/dist/DesignTokens/components/Spacing.cjs +0 -37
- package/dist/DesignTokens/components/Typography.cjs +0 -119
- package/dist/Disclaimer/Disclaimer.cjs +0 -23
- package/dist/Disclaimer/Disclaimer.js +0 -22
- package/dist/Disclaimer/components/Container.cjs +0 -26
- package/dist/Disclaimer/components/DisclaimerContent.cjs +0 -19
- package/dist/Disclaimer/types/types.d.cts +0 -30
- package/dist/Disclaimer/types/types.d.ts +0 -30
- package/dist/DocumentRetrievalCard/DocumentRetrievalCard.cjs +0 -40
- package/dist/DocumentRetrievalCard/DocumentRetrievalCard.d.cts +0 -21
- package/dist/DocumentRetrievalCard/DocumentRetrievalCard.d.ts +0 -21
- package/dist/DocumentRetrievalCard/components/Content.cjs +0 -40
- package/dist/DocumentRetrievalCard/components/Image.cjs +0 -20
- package/dist/DocumentRetrievalCard/components/Layout.cjs +0 -45
- package/dist/DocumentRetrievalCard/components/ViewArticleButton/components/Icon.cjs +0 -26
- package/dist/DocumentRetrievalCard/components/ViewArticleButton/components/Icon.js +0 -23
- package/dist/DocumentRetrievalCard/components/ViewArticleButton/components/Label.cjs +0 -28
- package/dist/DocumentRetrievalCard/components/ViewArticleButton/components/Layout.cjs +0 -25
- package/dist/DocumentRetrievalCard/components/ViewArticleButton.cjs +0 -40
- package/dist/DocumentRetrievalCard/hooks/useGetBackgroundColorsProperties.cjs +0 -16
- package/dist/DocumentRetrievalCard/hooks/useGetBackgroundColorsProperties.js +0 -16
- package/dist/DocumentRetrievalCard/hooks/useGetBorderProperties.cjs +0 -16
- package/dist/DocumentRetrievalCard/hooks/useGetBorderProperties.js +0 -16
- package/dist/DocumentRetrievalCard/hooks/useGetBorderRadiusProperties.cjs +0 -13
- package/dist/DocumentRetrievalCard/hooks/useGetBorderRadiusProperties.js +0 -13
- package/dist/DocumentRetrievalCard/hooks/useGetIconBackgroundProperties.cjs +0 -13
- package/dist/DocumentRetrievalCard/hooks/useGetIconBackgroundProperties.js +0 -13
- package/dist/DocumentRetrievalCard/hooks/useGetIconColorProperties.cjs +0 -13
- package/dist/DocumentRetrievalCard/hooks/useGetIconColorProperties.js +0 -13
- package/dist/DocumentRetrievalCard/hooks/useGetLabelTextCaseProperties.cjs +0 -9
- package/dist/DocumentRetrievalCard/hooks/useGetLabelTextCaseProperties.js +0 -9
- package/dist/DocumentRetrievalCard/hooks/useGetLabelTypographyProperties.cjs +0 -15
- package/dist/DocumentRetrievalCard/hooks/useGetLabelTypographyProperties.js +0 -15
- package/dist/DocumentRetrievalCard/index.cjs +0 -7
- package/dist/DocumentRetrievalCard/index.d.cts +0 -4
- package/dist/DocumentRetrievalCard/index.d.ts +0 -4
- package/dist/DocumentRetrievalCard/index.js +0 -5
- package/dist/DocumentRetrievalCard/types/index.d.cts +0 -73
- package/dist/DocumentRetrievalCard/types/index.d.ts +0 -73
- package/dist/DocumentRetrievalCard/utils/functions.cjs +0 -29
- package/dist/DocumentRetrievalCard/utils/functions.js +0 -27
- package/dist/FloatingButton/FloatingButton.cjs +0 -38
- package/dist/FloatingButton/FloatingButton.d.cts +0 -22
- package/dist/FloatingButton/FloatingButton.d.ts +0 -22
- package/dist/FloatingButton/FloatingButton.js +0 -37
- package/dist/FloatingButton/components/Button.cjs +0 -23
- package/dist/FloatingButton/components/Button.js +0 -21
- package/dist/FloatingButton/components/Container.cjs +0 -23
- package/dist/FloatingButton/components/Icon.cjs +0 -26
- package/dist/FloatingButton/components/Icon.js +0 -24
- package/dist/FloatingButton/components/Wrapper.cjs +0 -18
- package/dist/FloatingButton/hooks/useGetButtonProperties.cjs +0 -22
- package/dist/FloatingButton/hooks/useGetButtonProperties.js +0 -22
- package/dist/FloatingButton/hooks/useGetIconProperties.cjs +0 -15
- package/dist/FloatingButton/hooks/useGetIconProperties.js +0 -15
- package/dist/FloatingButton/types/types.d.cts +0 -101
- package/dist/FloatingButton/types/types.d.ts +0 -101
- package/dist/FloatingChat/FloatingChat.cjs +0 -229
- package/dist/FloatingChat/FloatingChat.d.cts +0 -22
- package/dist/FloatingChat/FloatingChat.d.ts +0 -22
- package/dist/FloatingChat/FloatingChat.js +0 -228
- package/dist/FloatingChat/components/AgentMessage.cjs +0 -104
- package/dist/FloatingChat/components/AgentMessage.js +0 -103
- package/dist/FloatingChat/components/ChatMessages.cjs +0 -90
- package/dist/FloatingChat/components/ChatMessages.js +0 -88
- package/dist/FloatingChat/components/DocumentRetrievalCardsCarousel.cjs +0 -26
- package/dist/FloatingChat/components/DocumentRetrievalCardsCarousel.js +0 -25
- package/dist/FloatingChat/components/Layout.cjs +0 -67
- package/dist/FloatingChat/components/Layout.js +0 -65
- package/dist/FloatingChat/components/MessageDivider.cjs +0 -36
- package/dist/FloatingChat/components/ModalSheet.cjs +0 -183
- package/dist/FloatingChat/components/ModalSheet.js +0 -181
- package/dist/FloatingChat/components/OrderLookupCardCarousel.cjs +0 -31
- package/dist/FloatingChat/components/ReviewCardsCarousel.cjs +0 -28
- package/dist/FloatingChat/components/ReviewCardsCarousel.js +0 -27
- package/dist/FloatingChat/components/SalesAgentProductCardsCarousel.cjs +0 -35
- package/dist/FloatingChat/components/SalesAgentProductCardsCarousel.js +0 -34
- package/dist/FloatingChat/components/ScrollToBottomButton.cjs +0 -32
- package/dist/FloatingChat/components/ScrollToBottomButton.js +0 -30
- package/dist/FloatingChat/components/UserMessage.cjs +0 -35
- package/dist/FloatingChat/components/index.cjs +0 -28
- package/dist/FloatingChat/components/index.js +0 -28
- package/dist/FloatingChat/hooks/useChatSuggestions.cjs +0 -25
- package/dist/FloatingChat/hooks/useFilteredChatMessages.cjs +0 -24
- package/dist/FloatingChat/hooks/usePreventScroll.cjs +0 -117
- package/dist/FloatingChat/hooks/useScrollToBottom.cjs +0 -148
- package/dist/FloatingChat/hooks/useSnapCalculator.cjs +0 -37
- package/dist/FloatingChat/hooks/useSnapControl.cjs +0 -82
- package/dist/FloatingChat/hooks/useSnapSetup.cjs +0 -59
- package/dist/FloatingChat/types/types.d.cts +0 -72
- package/dist/FloatingChat/types/types.d.ts +0 -72
- package/dist/FloatingChat/utils/functions.cjs +0 -86
- package/dist/Form/Form.cjs +0 -53
- package/dist/Form/components/Layout.cjs +0 -35
- package/dist/Form/components/SubmitButtonItem.cjs +0 -24
- package/dist/Form/components/TextFieldItem.cjs +0 -43
- package/dist/Form/hooks/useFormsTextFieldValues.cjs +0 -31
- package/dist/Form/hooks/useGetButtonProperties.cjs +0 -21
- package/dist/Form/hooks/useGetTextFieldProperties.cjs +0 -25
- package/dist/Form/utils/buildSubmitButtonElement.cjs +0 -18
- package/dist/Form/utils/createFormSchema.cjs +0 -40
- package/dist/Form/utils/mapTextFields.cjs +0 -24
- package/dist/FullPageSalesAgent/FullPageSalesAgent.cjs +0 -132
- package/dist/FullPageSalesAgent/FullPageSalesAgent.d.cts +0 -24
- package/dist/FullPageSalesAgent/FullPageSalesAgent.d.ts +0 -24
- package/dist/FullPageSalesAgent/FullPageSalesAgent.js +0 -131
- package/dist/FullPageSalesAgent/components/Layout.cjs +0 -53
- package/dist/FullPageSalesAgent/components/Layout.js +0 -51
- package/dist/FullPageSalesAgent/hooks/useContainerResizerObserver.cjs +0 -23
- package/dist/FullPageSalesAgent/hooks/useGetScrollContentStyles.cjs +0 -19
- package/dist/Image/Image.cjs +0 -69
- package/dist/Image/Image.d.cts +0 -30
- package/dist/Image/Image.d.ts +0 -30
- package/dist/Image/hooks/useGetAccessibilityProperties.cjs +0 -24
- package/dist/Image/hooks/useGetAspectRatioProperties.cjs +0 -19
- package/dist/Image/hooks/useGetObjectFitProperties.cjs +0 -20
- package/dist/Image/hooks/useGetRoundedProperties.cjs +0 -12
- package/dist/Image/hooks/useGetSkeletonProperties.cjs +0 -13
- package/dist/Image/hooks/useGetWidthProperties.cjs +0 -19
- package/dist/Image/hooks/useHandleImageLoading.cjs +0 -32
- package/dist/ImageGallery/ImageGallery.cjs +0 -58
- package/dist/ImageGallery/ImageGallery.d.cts +0 -45
- package/dist/ImageGallery/ImageGallery.d.ts +0 -45
- package/dist/ImageGallery/ImageGallery.js +0 -57
- package/dist/ImageGallery/components/ImageItem.cjs +0 -11
- package/dist/ImageGallery/components/Layout.cjs +0 -52
- package/dist/ImageGallery/components/Layout.js +0 -50
- package/dist/ImageGallery/components/NormalLayout.cjs +0 -12
- package/dist/ImageGallery/components/OverlappedLayout.cjs +0 -16
- package/dist/ImageGallery/hooks/useGetContainerProperties.cjs +0 -19
- package/dist/ImageGallery/types/types.d.cts +0 -132
- package/dist/ImageGallery/types/types.d.ts +0 -132
- package/dist/ImageGallery/utils/functions.cjs +0 -15
- package/dist/ImageGallery/utils/functions.js +0 -15
- package/dist/MarkdownProcessor/MarkdownProcessor.cjs +0 -33
- package/dist/MarkdownProcessor/MarkdownProcessor.d.cts +0 -12
- package/dist/MarkdownProcessor/MarkdownProcessor.d.ts +0 -12
- package/dist/MarkdownProcessor/MarkdownProcessor.js +0 -31
- package/dist/MarkdownProcessor/components/MarkdownLink.cjs +0 -15
- package/dist/MarkdownProcessor/components/MarkdownLink.js +0 -14
- package/dist/MarkdownProcessor/components/MarkdownListItem.cjs +0 -15
- package/dist/MarkdownProcessor/components/MarkdownOrderedList.cjs +0 -11
- package/dist/MarkdownProcessor/components/MarkdownParagraph.cjs +0 -16
- package/dist/MarkdownProcessor/components/MarkdownUnorderedList.cjs +0 -11
- package/dist/MarkdownProcessor/types/types.d.cts +0 -44
- package/dist/MarkdownProcessor/types/types.d.ts +0 -44
- package/dist/MarkdownProcessor/utils/functions.cjs +0 -18
- package/dist/MarkdownProcessor/utils/functions.js +0 -17
- package/dist/Message/Message.cjs +0 -44
- package/dist/Message/Message.d.cts +0 -21
- package/dist/Message/Message.d.ts +0 -21
- package/dist/Message/Message.js +0 -43
- package/dist/Message/components/AgentContent.cjs +0 -20
- package/dist/Message/components/AgentContent.js +0 -19
- package/dist/Message/components/AgentHeader.cjs +0 -32
- package/dist/Message/components/Layout.cjs +0 -25
- package/dist/Message/components/LinkButton.cjs +0 -54
- package/dist/Message/components/LinkButton.d.cts +0 -19
- package/dist/Message/components/LinkButton.d.ts +0 -19
- package/dist/Message/components/LinkButton.js +0 -52
- package/dist/Message/components/LoadingSkeleton.cjs +0 -19
- package/dist/Message/components/SparkleIcon.cjs +0 -22
- package/dist/Message/components/UserContent.cjs +0 -20
- package/dist/Message/hooks/useGetLinkButtonIconProperties.cjs +0 -15
- package/dist/Message/hooks/useGetLinkButtonProperties.cjs +0 -15
- package/dist/Message/hooks/useLatencyAnimation.cjs +0 -53
- package/dist/Message/hooks/useLatencyAnimation.js +0 -46
- package/dist/Message/hooks/useVariantStyleProperties.cjs +0 -33
- package/dist/Message/types/index.d.cts +0 -60
- package/dist/Message/types/index.d.ts +0 -60
- package/dist/OrderLookupCard/OrderLookupCard.cjs +0 -76
- package/dist/OrderLookupCard/OrderLookupCard.js +0 -74
- package/dist/OrderLookupCard/components/Layout.cjs +0 -27
- package/dist/OrderLookupCard/components/MoreProductsOverlay.cjs +0 -41
- package/dist/OrderLookupCard/components/OrderDate.cjs +0 -21
- package/dist/OrderLookupCard/components/OrderNumber.cjs +0 -22
- package/dist/OrderLookupCard/components/ProductImageGridItem.cjs +0 -26
- package/dist/OrderLookupCard/components/ProductImageItem.cjs +0 -37
- package/dist/OrderLookupCard/components/ProductImagesGrid.cjs +0 -31
- package/dist/OrderLookupCard/components/StatusLabel.cjs +0 -30
- package/dist/OrderLookupCard/components/TrackOrderLink.cjs +0 -34
- package/dist/OrderLookupCard/hooks/useGetContainerProperties.cjs +0 -24
- package/dist/OrderLookupCard/hooks/useGetContainerProperties.js +0 -24
- package/dist/OrderLookupCard/hooks/useGetImageBorderRadiusProperties.cjs +0 -14
- package/dist/OrderLookupCard/hooks/useGetImageBorderRadiusProperties.js +0 -14
- package/dist/OrderLookupCard/hooks/useGetStatusLabelProperties.cjs +0 -24
- package/dist/OrderLookupCard/hooks/useGetStatusLabelProperties.js +0 -24
- package/dist/OrderLookupCard/hooks/useGetTrackOrderLinkProperties.cjs +0 -13
- package/dist/OrderLookupCard/hooks/useGetTrackOrderLinkProperties.js +0 -13
- package/dist/OrderLookupCard/types/index.d.cts +0 -102
- package/dist/OrderLookupCard/types/index.d.ts +0 -102
- package/dist/ProductCard/ProductCard.cjs +0 -47
- package/dist/ProductCard/ProductCard.d.cts +0 -23
- package/dist/ProductCard/ProductCard.js +0 -45
- package/dist/ProductCard/components/Carousel.cjs +0 -25
- package/dist/ProductCard/components/Header.cjs +0 -68
- package/dist/ProductCard/components/Poster.cjs +0 -18
- package/dist/ProductCard/types/index.d.cts +0 -74
- package/dist/ProductCard/types/index.d.ts +0 -74
- package/dist/PromptButton/PromptButton.cjs +0 -48
- package/dist/PromptButton/PromptButton.d.cts +0 -21
- package/dist/PromptButton/PromptButton.d.ts +0 -21
- package/dist/PromptButton/PromptButton.js +0 -45
- package/dist/PromptButton/components/Icon.cjs +0 -10
- package/dist/PromptButton/components/Label.cjs +0 -19
- package/dist/PromptButton/components/Layout.cjs +0 -39
- package/dist/PromptButton/components/Layout.js +0 -37
- package/dist/PromptButton/components/Loading.cjs +0 -12
- package/dist/PromptButton/hooks/useGetBackgroundColorsProperties.cjs +0 -17
- package/dist/PromptButton/hooks/useGetBoldTextProperties.cjs +0 -12
- package/dist/PromptButton/hooks/useGetBorderColorsProperties.cjs +0 -17
- package/dist/PromptButton/hooks/useGetIconColorsProperties.cjs +0 -31
- package/dist/PromptButton/hooks/useGetIconColorsProperties.js +0 -31
- package/dist/PromptButton/hooks/useGetLayoutBaseProperties.cjs +0 -15
- package/dist/PromptButton/hooks/useGetTextColorsProperties.cjs +0 -18
- package/dist/PromptButton/index.cjs +0 -5
- package/dist/PromptButton/types/index.d.cts +0 -98
- package/dist/PromptButton/types/index.d.ts +0 -98
- package/dist/PromptButton/utils/functions.cjs +0 -9
- package/dist/PromptButtonCarouselWithImage/PromptButtonCarouselWithImage.cjs +0 -44
- package/dist/PromptButtonCarouselWithImage/PromptButtonCarouselWithImage.d.cts +0 -23
- package/dist/PromptButtonCarouselWithImage/PromptButtonCarouselWithImage.d.ts +0 -23
- package/dist/PromptButtonCarouselWithImage/PromptButtonCarouselWithImage.js +0 -43
- package/dist/PromptButtonCarouselWithImage/components/Image.cjs +0 -18
- package/dist/PromptButtonCarouselWithImage/components/Layout.cjs +0 -58
- package/dist/PromptButtonCarouselWithImage/components/PromptButtonsCarousel.cjs +0 -79
- package/dist/PromptButtonCarouselWithImage/components/Skeleton.cjs +0 -15
- package/dist/PromptButtonCarouselWithImage/components/Title.cjs +0 -20
- package/dist/PromptButtonCarouselWithImage/types/types.d.cts +0 -76
- package/dist/PromptButtonCarouselWithImage/types/types.d.ts +0 -76
- package/dist/PromptCarousel/PromptCarousel.cjs +0 -124
- package/dist/PromptCarousel/PromptCarousel.d.cts +0 -24
- package/dist/PromptCarousel/PromptCarousel.d.ts +0 -24
- package/dist/PromptCarousel/PromptCarousel.js +0 -123
- package/dist/PromptCarousel/hooks/useCarouselButtons.cjs +0 -19
- package/dist/PromptCarousel/hooks/useCoordinatedScrollAnimation.cjs +0 -91
- package/dist/PromptCarousel/hooks/useScrollSync.cjs +0 -65
- package/dist/PromptCarousel/index.cjs +0 -6
- package/dist/PromptCarousel/index.d.cts +0 -3
- package/dist/PromptCarousel/index.d.ts +0 -3
- package/dist/PromptCarousel/index.js +0 -4
- package/dist/PromptCarousel/types/types.d.cts +0 -102
- package/dist/PromptCarousel/types/types.d.ts +0 -102
- package/dist/PromptCarousel/utils/functions.cjs +0 -17
- package/dist/ReviewCard/ReviewCard.cjs +0 -55
- package/dist/ReviewCard/ReviewCard.d.cts +0 -30
- package/dist/ReviewCard/ReviewCard.d.ts +0 -30
- package/dist/ReviewCard/ReviewCard.js +0 -54
- package/dist/ReviewCard/components/Container.cjs +0 -44
- package/dist/ReviewCard/components/Container.d.cts +0 -17
- package/dist/ReviewCard/components/Container.d.ts +0 -17
- package/dist/ReviewCard/components/Name.cjs +0 -36
- package/dist/ReviewCard/components/Rating.cjs +0 -37
- package/dist/ReviewCard/components/Rating.d.cts +0 -10
- package/dist/ReviewCard/components/Rating.d.ts +0 -11
- package/dist/ReviewCard/components/ReadMoreButton.cjs +0 -43
- package/dist/ReviewCard/components/ReadMoreButton.d.cts +0 -13
- package/dist/ReviewCard/components/ReadMoreButton.d.ts +0 -13
- package/dist/ReviewCard/components/ReadMoreButton.js +0 -40
- package/dist/ReviewCard/components/ReviewText.cjs +0 -25
- package/dist/ReviewCard/components/StarIcon.cjs +0 -24
- package/dist/ReviewCard/components/StarIcon.js +0 -22
- package/dist/ReviewCard/components/VerifiedBuyer.cjs +0 -33
- package/dist/ReviewCard/components/VerifiedBuyer.js +0 -31
- package/dist/ReviewCard/components/index.d.cts +0 -70
- package/dist/ReviewCard/components/index.d.ts +0 -70
- package/dist/ReviewCard/hooks/useGetBackgroundColorsProperties.cjs +0 -13
- package/dist/ReviewCard/hooks/useGetBackgroundColorsProperties.js +0 -13
- package/dist/ReviewCard/hooks/useGetBorderProperties.cjs +0 -16
- package/dist/ReviewCard/hooks/useGetBorderProperties.js +0 -16
- package/dist/ReviewCard/hooks/useGetBorderRadiusProperties.cjs +0 -13
- package/dist/ReviewCard/hooks/useGetBorderRadiusProperties.js +0 -13
- package/dist/ReviewCard/hooks/useGetNameProperties.cjs +0 -15
- package/dist/ReviewCard/hooks/useGetRatingBackgroundProperties.cjs +0 -13
- package/dist/ReviewCard/hooks/useGetRatingBackgroundProperties.js +0 -13
- package/dist/ReviewCard/hooks/useGetReadMoreTypographyProperties.cjs +0 -15
- package/dist/ReviewCard/hooks/useGetReadMoreTypographyProperties.js +0 -15
- package/dist/ReviewCard/hooks/useGetReviewTextProperties.cjs +0 -19
- package/dist/ReviewCard/hooks/useGetStarIconProperties.cjs +0 -17
- package/dist/ReviewCard/hooks/useGetStarIconProperties.js +0 -16
- package/dist/ReviewCard/types/types.d.cts +0 -66
- package/dist/ReviewCard/types/types.d.ts +0 -66
- package/dist/SalesAgentProductCard/SalesAgentProductCard.cjs +0 -55
- package/dist/SalesAgentProductCard/SalesAgentProductCard.d.cts +0 -35
- package/dist/SalesAgentProductCard/SalesAgentProductCard.d.ts +0 -35
- package/dist/SalesAgentProductCard/SalesAgentProductCard.js +0 -54
- package/dist/SalesAgentProductCard/components/Container.cjs +0 -57
- package/dist/SalesAgentProductCard/components/Container.d.cts +0 -21
- package/dist/SalesAgentProductCard/components/Container.d.ts +0 -22
- package/dist/SalesAgentProductCard/components/Container.js +0 -55
- package/dist/SalesAgentProductCard/components/Price.cjs +0 -31
- package/dist/SalesAgentProductCard/components/ProductImage.cjs +0 -23
- package/dist/SalesAgentProductCard/components/ProductName.cjs +0 -28
- package/dist/SalesAgentProductCard/components/ProductName.d.cts +0 -11
- package/dist/SalesAgentProductCard/components/ProductName.d.ts +0 -12
- package/dist/SalesAgentProductCard/components/ProductName.js +0 -26
- package/dist/SalesAgentProductCard/components/Rate.cjs +0 -33
- package/dist/SalesAgentProductCard/components/Rate.d.cts +0 -10
- package/dist/SalesAgentProductCard/components/Rate.d.ts +0 -11
- package/dist/SalesAgentProductCard/components/Rate.js +0 -32
- package/dist/SalesAgentProductCard/components/StarIcon.cjs +0 -23
- package/dist/SalesAgentProductCard/components/StarIcon.js +0 -21
- package/dist/SalesAgentProductCard/components/index.d.cts +0 -61
- package/dist/SalesAgentProductCard/components/index.d.ts +0 -61
- package/dist/SalesAgentProductCard/hooks/useGetContainerProperties.cjs +0 -30
- package/dist/SalesAgentProductCard/hooks/useGetContainerProperties.js +0 -29
- package/dist/SalesAgentProductCard/hooks/useGetProductDescriptionProperties.cjs +0 -38
- package/dist/SalesAgentProductCard/hooks/useGetProductDescriptionProperties.js +0 -37
- package/dist/SalesAgentProductCard/hooks/useGetProductNameProperties.cjs +0 -13
- package/dist/SalesAgentProductCard/hooks/useGetProductNameProperties.js +0 -12
- package/dist/SalesAgentProductCard/hooks/useGetStarIconProperties.cjs +0 -17
- package/dist/SalesAgentProductCard/hooks/useGetStarIconProperties.js +0 -16
- package/dist/SalesAgentProductCard/types/types.d.cts +0 -108
- package/dist/SalesAgentProductCard/types/types.d.ts +0 -108
- package/dist/SocialProof/SocialProof.cjs +0 -118
- package/dist/SocialProof/SocialProof.d.cts +0 -12
- package/dist/SocialProof/SocialProof.d.ts +0 -12
- package/dist/SocialProof/SocialProof.js +0 -117
- package/dist/SocialProof/components/Headline.cjs +0 -53
- package/dist/SocialProof/components/Headline.js +0 -51
- package/dist/SocialProof/components/ImageGallery.cjs +0 -24
- package/dist/SocialProof/components/LayoutFourGrid.cjs +0 -43
- package/dist/SocialProof/components/LayoutFourHorizontal.cjs +0 -58
- package/dist/SocialProof/components/LayoutFourHorizontal.js +0 -56
- package/dist/SocialProof/components/LayoutSingle.cjs +0 -63
- package/dist/SocialProof/components/Skeleton.cjs +0 -14
- package/dist/SocialProof/components/Subheadline.cjs +0 -37
- package/dist/SocialProof/components/Subheadline.js +0 -36
- package/dist/SocialProof/components/Textfield.cjs +0 -20
- package/dist/SocialProof/components/Textfield.js +0 -19
- package/dist/SocialProof/hooks/useSocialProofCount.cjs +0 -48
- package/dist/SocialProof/types/types.d.cts +0 -236
- package/dist/SocialProof/types/types.d.ts +0 -236
- package/dist/SocialProof/utils/functions.cjs +0 -15
- package/dist/SocialProof/utils/functions.js +0 -15
- package/dist/SparkleAnimation/SparkleAnimation.cjs +0 -107
- package/dist/SparkleAnimation/SparkleAnimation.d.cts +0 -15
- package/dist/SparkleAnimation/SparkleAnimation.d.ts +0 -15
- package/dist/SparkleAnimation/SparkleAnimation.js +0 -105
- package/dist/Stack/Stack.cjs +0 -35
- package/dist/Stack/Stack.d.cts +0 -10
- package/dist/Stack/Stack.d.ts +0 -10
- package/dist/Stack/hooks/useFormatStackChildren.cjs +0 -26
- package/dist/Stack/hooks/useGetAlignProperties.cjs +0 -19
- package/dist/Stack/hooks/useGetDirectionProperties.cjs +0 -18
- package/dist/Stack/hooks/useGetGapProperties.cjs +0 -15
- package/dist/Stack/hooks/useGetJustifyProperties.cjs +0 -20
- package/dist/Stack/hooks/useGetWrapProperties.cjs +0 -12
- package/dist/TextField/TextField.cjs +0 -57
- package/dist/TextField/TextField.d.cts +0 -24
- package/dist/TextField/TextField.d.ts +0 -24
- package/dist/TextField/TextField.js +0 -55
- package/dist/TextField/components/Input.cjs +0 -31
- package/dist/TextField/components/Layout.cjs +0 -22
- package/dist/TextField/components/SendIcon.cjs +0 -26
- package/dist/TextField/hooks/useGetContainerProperties.cjs +0 -51
- package/dist/TextField/hooks/useGetContainerProperties.js +0 -50
- package/dist/TextField/hooks/useGetSkeletonProperties.cjs +0 -13
- package/dist/TextField/hooks/useSendIconHandlers.cjs +0 -32
- package/dist/TextField/hooks/useTextFieldFocus.cjs +0 -22
- package/dist/TextField/hooks/useTextFieldSubmit.cjs +0 -40
- package/dist/TextField/hooks/useTextFieldValue.cjs +0 -28
- package/dist/TextField/types/index.d.cts +0 -48
- package/dist/TextField/types/index.d.ts +0 -48
- package/dist/TextField/utils/getInputClasses.cjs +0 -17
- package/dist/TextField/utils/getInputClasses.js +0 -17
- package/dist/TextField/utils/getSendIconElement.cjs +0 -46
- package/dist/TextField/utils/getSendIconElement.js +0 -41
- package/dist/Title/Title.cjs +0 -32
- package/dist/Title/components/Image.cjs +0 -38
- package/dist/Title/components/Label.cjs +0 -19
- package/dist/Title/components/Layout.cjs +0 -27
- package/dist/TitledPromptCarousel/TitledPromptCarousel.cjs +0 -48
- package/dist/TitledPromptCarousel/TitledPromptCarousel.d.cts +0 -20
- package/dist/TitledPromptCarousel/TitledPromptCarousel.d.ts +0 -20
- package/dist/TitledPromptCarousel/TitledPromptCarousel.js +0 -46
- package/dist/TitledPromptCarousel/types/index.d.cts +0 -71
- package/dist/TitledPromptCarousel/types/index.d.ts +0 -71
- package/dist/Tokens/index.cjs +0 -30
- package/dist/Tokens/index.d.cts +0 -14
- package/dist/Tokens/index.d.ts +0 -14
- package/dist/Tokens/index.js +0 -15
- package/dist/TypingAnimation/TypingAnimation.cjs +0 -136
- package/dist/TypingAnimation/TypingAnimation.d.cts +0 -12
- package/dist/TypingAnimation/TypingAnimation.d.ts +0 -12
- package/dist/TypingAnimation/TypingAnimation.js +0 -135
- package/dist/TypingAnimation/hooks/useGetTypographyVariant.cjs +0 -12
- package/dist/TypingAnimation/hooks/useGetTypographyVariant.js +0 -12
- package/dist/TypingAnimation/types/index.d.cts +0 -145
- package/dist/TypingAnimation/types/index.d.ts +0 -145
- package/dist/Typography/Typography.cjs +0 -42
- package/dist/Typography/Typography.d.cts +0 -32
- package/dist/Typography/Typography.d.ts +0 -32
- package/dist/Typography/hooks/useGetAccessibilityAttributes.cjs +0 -30
- package/dist/Typography/hooks/useGetAlignProperties.cjs +0 -19
- package/dist/Typography/hooks/useGetColorProperties.cjs +0 -20
- package/dist/Typography/hooks/useGetNoWrapProperties.cjs +0 -12
- package/dist/Typography/hooks/useGetNumberOfLinesProperties.cjs +0 -21
- package/dist/Typography/hooks/useGetVariantProperties.cjs +0 -61
- package/dist/Typography/types/index.d.cts +0 -95
- package/dist/Typography/types/index.d.ts +0 -95
- package/dist/WelcomeMessage/WelcomeMessage.cjs +0 -40
- package/dist/WelcomeMessage/WelcomeMessage.js +0 -39
- package/dist/WelcomeMessage/components/Container.cjs +0 -34
- package/dist/WelcomeMessage/components/SparkleIcon.cjs +0 -23
- package/dist/WelcomeMessage/components/SparkleIcon.js +0 -21
- package/dist/WelcomeMessage/components/Text.cjs +0 -19
- package/dist/WelcomeMessage/components/Title.cjs +0 -20
- package/dist/WelcomeMessage/hooks/useGetContainerProperties.cjs +0 -21
- package/dist/WelcomeMessage/hooks/useGetContainerProperties.js +0 -20
- package/dist/WelcomeMessage/hooks/useGetSparkleIconProperties.cjs +0 -32
- package/dist/WelcomeMessage/hooks/useGetSparkleIconProperties.js +0 -31
- package/dist/WelcomeMessage/types/types.cjs +0 -13
- package/dist/WelcomeMessage/types/types.d.cts +0 -44
- package/dist/WelcomeMessage/types/types.d.ts +0 -44
- package/dist/WelcomeMessage/types/types.js +0 -13
- package/dist/WidgetTextField/WidgetTextField.cjs +0 -35
- package/dist/WidgetTextField/WidgetTextField.d.cts +0 -20
- package/dist/WidgetTextField/WidgetTextField.d.ts +0 -20
- package/dist/WidgetTextField/WidgetTextField.js +0 -34
- package/dist/WidgetTextField/components/Container.cjs +0 -44
- package/dist/WidgetTextField/components/FakeTextInput.cjs +0 -18
- package/dist/WidgetTextField/components/Icon.cjs +0 -70
- package/dist/WidgetTextField/components/Icon.js +0 -64
- package/dist/WidgetTextField/components/Skeleton.cjs +0 -19
- package/dist/WidgetTextField/components/Skeleton.js +0 -17
- package/dist/WidgetTextField/hooks/useGetContainerProperties.cjs +0 -20
- package/dist/WidgetTextField/hooks/useGetContainerProperties.js +0 -19
- package/dist/WidgetTextField/types/types.d.cts +0 -58
- package/dist/WidgetTextField/types/types.d.ts +0 -58
- package/dist/WidgetWrapper/WidgetWrapper.cjs +0 -28
- package/dist/WidgetWrapper/WidgetWrapper.d.cts +0 -21
- package/dist/WidgetWrapper/WidgetWrapper.d.ts +0 -21
- package/dist/WidgetWrapper/hooks/useGetWrapperProperties.cjs +0 -19
- package/dist/WidgetWrapperWithTitle/WidgetWrapperWithTitle.cjs +0 -41
- package/dist/WidgetWrapperWithTitle/WidgetWrapperWithTitle.d.cts +0 -19
- package/dist/WidgetWrapperWithTitle/WidgetWrapperWithTitle.d.ts +0 -19
- package/dist/utils/CustomIcon.cjs +0 -21
- package/dist/utils/resolveTheme.cjs +0 -12
- package/dist/utils/resolveTheme.js +0 -12
- package/dist/utils/useAnimatedTextMinHeight.cjs +0 -28
- package/dist/utils/useCheckIsMobile.cjs +0 -26
- package/dist/utils/useCheckIsMobile.js +0 -25
- package/dist/utils/useDragToScroll.cjs +0 -68
- package/dist/utils/useGetContentSize.cjs +0 -41
- package/dist/utils/useHorizontalWheelScroll.cjs +0 -29
- package/dist/utils/useResponsiveValue.cjs +0 -56
- package/dist/utils/useResponsiveValue.d.cts +0 -6
- package/dist/utils/useResponsiveValue.d.ts +0 -6
- package/dist/utils/useResponsiveValue.js +0 -55
- /package/dist/{AnimatedText → components/AnimatedText}/AnimatedText.js +0 -0
- /package/dist/{AnimatedText → components/AnimatedText}/index.cjs +0 -0
- /package/dist/{AnimatedText → components/AnimatedText}/index.d.cts +0 -0
- /package/dist/{AnimatedText → components/AnimatedText}/index.d.ts +0 -0
- /package/dist/{AnimatedText → components/AnimatedText}/index.js +0 -0
- /package/dist/{AnimatedText → components/AnimatedText}/types/types.d.cts +0 -0
- /package/dist/{AnimatedText → components/AnimatedText}/types/types.d.ts +0 -0
- /package/dist/{CSSVariablesEditor → components/CSSVariablesEditor}/CssVariablesEditorComponent.js +0 -0
- /package/dist/{CSSVariablesEditor → components/CSSVariablesEditor}/components/CSSVariablesEditor.js +0 -0
- /package/dist/{CSSVariablesEditor → components/CSSVariablesEditor}/components/Container.js +0 -0
- /package/dist/{CSSVariablesEditor → components/CSSVariablesEditor}/components/Header.js +0 -0
- /package/dist/{CSSVariablesEditor → components/CSSVariablesEditor}/components/Purpose.js +0 -0
- /package/dist/{CSSVariablesEditor → components/CSSVariablesEditor}/components/index.cjs +0 -0
- /package/dist/{CSSVariablesEditor → components/CSSVariablesEditor}/components/index.js +0 -0
- /package/dist/{CSSVariablesEditor → components/CSSVariablesEditor}/hooks/useHandleCssVariablesState.js +0 -0
- /package/dist/{CSSVariablesEditor → components/CSSVariablesEditor}/index.cjs +0 -0
- /package/dist/{CSSVariablesEditor → components/CSSVariablesEditor}/index.d.cts +0 -0
- /package/dist/{CSSVariablesEditor → components/CSSVariablesEditor}/index.d.ts +0 -0
- /package/dist/{CSSVariablesEditor → components/CSSVariablesEditor}/index.js +0 -0
- /package/dist/{Carousel → components/Carousel}/components/Badge.js +0 -0
- /package/dist/{Carousel → components/Carousel}/components/Container.js +0 -0
- /package/dist/{Carousel → components/Carousel}/components/Item.js +0 -0
- /package/dist/{Carousel → components/Carousel}/components/Next.js +0 -0
- /package/dist/{Carousel → components/Carousel}/components/Previous.js +0 -0
- /package/dist/{Carousel → components/Carousel}/components/index.cjs +0 -0
- /package/dist/{Carousel → components/Carousel}/components/index.js +0 -0
- /package/dist/{Carousel → components/Carousel}/hooks/useCarouselButtons.js +0 -0
- /package/dist/{Carousel → components/Carousel}/hooks/useCarouselItems.js +0 -0
- /package/dist/{Carousel → components/Carousel}/hooks/useCarouselNavigation.js +0 -0
- /package/dist/{Carousel → components/Carousel}/hooks/useCarouselNavigationButtons.js +0 -0
- /package/dist/{Carousel → components/Carousel}/index.cjs +0 -0
- /package/dist/{Carousel → components/Carousel}/index.d.cts +0 -0
- /package/dist/{Carousel → components/Carousel}/index.d.ts +0 -0
- /package/dist/{Carousel → components/Carousel}/index.js +0 -0
- /package/dist/{ChatFooter → components/ChatFooter}/components/Layout.js +0 -0
- /package/dist/{ChatFooter → components/ChatFooter}/components/index.cjs +0 -0
- /package/dist/{ChatFooter → components/ChatFooter}/components/index.js +0 -0
- /package/dist/{ChatFooter → components/ChatFooter}/index.cjs +0 -0
- /package/dist/{ChatFooter → components/ChatFooter}/index.d.cts +0 -0
- /package/dist/{ChatFooter → components/ChatFooter}/index.d.ts +0 -0
- /package/dist/{ChatFooter → components/ChatFooter}/index.js +0 -0
- /package/dist/{ChatHeader → components/ChatHeader}/components/Handle.js +0 -0
- /package/dist/{ChatHeader → components/ChatHeader}/components/Layout.js +0 -0
- /package/dist/{ChatHeader → components/ChatHeader}/components/Logo.js +0 -0
- /package/dist/{ChatHeader → components/ChatHeader}/components/ToggleItem.js +0 -0
- /package/dist/{ChatHeader → components/ChatHeader}/components/index.cjs +0 -0
- /package/dist/{ChatHeader → components/ChatHeader}/components/index.js +0 -0
- /package/dist/{ChatHeader → components/ChatHeader}/hooks/useGetLogoProperties.cjs +0 -0
- /package/dist/{ChatHeader → components/ChatHeader}/hooks/useGetLogoProperties.js +0 -0
- /package/dist/{ChatHeader → components/ChatHeader}/hooks/useHeaderLogoSelector.cjs +0 -0
- /package/dist/{ChatHeader → components/ChatHeader}/hooks/useHeaderLogoSelector.js +0 -0
- /package/dist/{ChatHeader → components/ChatHeader}/index.cjs +0 -0
- /package/dist/{ChatHeader → components/ChatHeader}/index.d.cts +0 -0
- /package/dist/{ChatHeader → components/ChatHeader}/index.d.ts +0 -0
- /package/dist/{ChatHeader → components/ChatHeader}/index.js +0 -0
- /package/dist/{ChatHeader → components/ChatHeader}/types/index.cjs +0 -0
- /package/dist/{ChatHeader → components/ChatHeader}/types/index.js +0 -0
- /package/dist/{ChatPreview → components/ChatPreview}/components/Layout.js +0 -0
- /package/dist/{ChatPreview → components/ChatPreview}/components/Message.js +0 -0
- /package/dist/{ChatPreview → components/ChatPreview}/components/index.cjs +0 -0
- /package/dist/{ChatPreview → components/ChatPreview}/components/index.js +0 -0
- /package/dist/{ChatPreview → components/ChatPreview}/index.cjs +0 -0
- /package/dist/{ChatPreview → components/ChatPreview}/index.d.cts +0 -0
- /package/dist/{ChatPreview → components/ChatPreview}/index.d.ts +0 -0
- /package/dist/{ChatPreview → components/ChatPreview}/index.js +0 -0
- /package/dist/{ChatPreviewComparison → components/ChatPreviewComparison}/components/index.cjs +0 -0
- /package/dist/{ChatPreviewComparison → components/ChatPreviewComparison}/components/index.js +0 -0
- /package/dist/{ChatPreviewComparison → components/ChatPreviewComparison}/index.cjs +0 -0
- /package/dist/{ChatPreviewComparison → components/ChatPreviewComparison}/index.d.cts +0 -0
- /package/dist/{ChatPreviewComparison → components/ChatPreviewComparison}/index.d.ts +0 -0
- /package/dist/{ChatPreviewComparison → components/ChatPreviewComparison}/index.js +0 -0
- /package/dist/{ChatPreviewLoading → components/ChatPreviewLoading}/ChatPreviewLoading.js +0 -0
- /package/dist/{ChatPreviewLoading → components/ChatPreviewLoading}/components/LayoutLoading.js +0 -0
- /package/dist/{ChatPreviewLoading → components/ChatPreviewLoading}/components/Skeleton.js +0 -0
- /package/dist/{ChatPreviewLoading → components/ChatPreviewLoading}/components/index.cjs +0 -0
- /package/dist/{ChatPreviewLoading → components/ChatPreviewLoading}/components/index.js +0 -0
- /package/dist/{ChatPreviewLoading → components/ChatPreviewLoading}/index.cjs +0 -0
- /package/dist/{ChatPreviewLoading → components/ChatPreviewLoading}/index.d.cts +0 -0
- /package/dist/{ChatPreviewLoading → components/ChatPreviewLoading}/index.d.ts +0 -0
- /package/dist/{ChatPreviewLoading → components/ChatPreviewLoading}/index.js +0 -0
- /package/dist/{ChatPreviewLoading → components/ChatPreviewLoading}/types/types.d.cts +0 -0
- /package/dist/{ChatPreviewLoading → components/ChatPreviewLoading}/types/types.d.ts +0 -0
- /package/dist/{Container → components/Container}/Container.js +0 -0
- /package/dist/{Container → components/Container}/hooks/useGetCenterContentProperties.js +0 -0
- /package/dist/{Container → components/Container}/hooks/useGetFluidProperties.js +0 -0
- /package/dist/{Container → components/Container}/index.cjs +0 -0
- /package/dist/{Container → components/Container}/index.d.cts +0 -0
- /package/dist/{Container → components/Container}/index.d.ts +0 -0
- /package/dist/{Container → components/Container}/index.js +0 -0
- /package/dist/{Container → components/Container}/types/index.d.cts +0 -0
- /package/dist/{Container → components/Container}/types/index.d.ts +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/DesignTokensComponent.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/BorderRadius.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/Breakpoints.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/Container.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/FontFamily.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/FontSize.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/FontWeight.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/Header.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/LetterSpacing.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/LineHeight.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/PaletteColors.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/Purpose.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/Spacing.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/Typography.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/index.cjs +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/index.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/utils.cjs +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/components/utils.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/hooks/useGetDesignTokensFromTailwindConfig.cjs +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/hooks/useGetDesignTokensFromTailwindConfig.js +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/index.cjs +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/index.d.cts +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/index.d.ts +0 -0
- /package/dist/{DesignTokens → components/DesignTokens}/index.js +0 -0
- /package/dist/{Disclaimer → components/Disclaimer}/Disclaimer.d.cts +0 -0
- /package/dist/{Disclaimer → components/Disclaimer}/Disclaimer.d.ts +0 -0
- /package/dist/{Disclaimer → components/Disclaimer}/components/Container.js +0 -0
- /package/dist/{Disclaimer → components/Disclaimer}/components/DisclaimerContent.js +0 -0
- /package/dist/{Disclaimer → components/Disclaimer}/components/index.cjs +0 -0
- /package/dist/{Disclaimer → components/Disclaimer}/components/index.js +0 -0
- /package/dist/{Disclaimer → components/Disclaimer}/index.cjs +0 -0
- /package/dist/{Disclaimer → components/Disclaimer}/index.d.cts +0 -0
- /package/dist/{Disclaimer → components/Disclaimer}/index.d.ts +0 -0
- /package/dist/{Disclaimer → components/Disclaimer}/index.js +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/DocumentRetrievalCard.js +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/components/Content.js +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/components/Image.js +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/components/Layout.js +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/components/ViewArticleButton/components/Label.js +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/components/ViewArticleButton/components/Layout.js +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/components/ViewArticleButton/components/index.cjs +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/components/ViewArticleButton/components/index.js +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/components/ViewArticleButton.js +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/components/index.cjs +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/components/index.js +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/hooks/useGetCardWidthProperties.cjs +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/hooks/useGetCardWidthProperties.js +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/hooks/useGetLabelUnderlineProperties.cjs +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/hooks/useGetLabelUnderlineProperties.js +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/hooks/useGetPaddingProperties.cjs +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/hooks/useGetPaddingProperties.js +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/hooks/useGetStackLayoutProperties.cjs +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/hooks/useGetStackLayoutProperties.js +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/hooks/useGetThemeProperties.cjs +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/hooks/useGetThemeProperties.js +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/types/index.cjs +0 -0
- /package/dist/{DocumentRetrievalCard → components/DocumentRetrievalCard}/types/index.js +0 -0
- /package/dist/{FloatingButton → components/FloatingButton}/components/Container.js +0 -0
- /package/dist/{FloatingButton → components/FloatingButton}/components/Wrapper.js +0 -0
- /package/dist/{FloatingButton → components/FloatingButton}/components/index.cjs +0 -0
- /package/dist/{FloatingButton → components/FloatingButton}/components/index.js +0 -0
- /package/dist/{FloatingButton → components/FloatingButton}/hooks/useGetButtonHoverProperties.cjs +0 -0
- /package/dist/{FloatingButton → components/FloatingButton}/hooks/useGetButtonHoverProperties.js +0 -0
- /package/dist/{FloatingButton → components/FloatingButton}/hooks/useGetContainerProperties.cjs +0 -0
- /package/dist/{FloatingButton → components/FloatingButton}/hooks/useGetContainerProperties.js +0 -0
- /package/dist/{FloatingButton → components/FloatingButton}/hooks/useGetWrapperProperties.cjs +0 -0
- /package/dist/{FloatingButton → components/FloatingButton}/hooks/useGetWrapperProperties.js +0 -0
- /package/dist/{FloatingButton → components/FloatingButton}/index.cjs +0 -0
- /package/dist/{FloatingButton → components/FloatingButton}/index.d.cts +0 -0
- /package/dist/{FloatingButton → components/FloatingButton}/index.d.ts +0 -0
- /package/dist/{FloatingButton → components/FloatingButton}/index.js +0 -0
- /package/dist/{FloatingButton → components/FloatingButton}/types/types.cjs +0 -0
- /package/dist/{FloatingButton → components/FloatingButton}/types/types.js +0 -0
- /package/dist/{FloatingChat → components/FloatingChat}/components/MessageDivider.js +0 -0
- /package/dist/{FloatingChat → components/FloatingChat}/components/OrderLookupCardCarousel.js +0 -0
- /package/dist/{FloatingChat → components/FloatingChat}/components/UserMessage.js +0 -0
- /package/dist/{FloatingChat → components/FloatingChat}/hooks/useChatSuggestions.js +0 -0
- /package/dist/{FloatingChat → components/FloatingChat}/hooks/useFilteredChatMessages.js +0 -0
- /package/dist/{FloatingChat → components/FloatingChat}/hooks/usePreventScroll.js +0 -0
- /package/dist/{FloatingChat → components/FloatingChat}/hooks/useScrollToBottom.js +0 -0
- /package/dist/{FloatingChat → components/FloatingChat}/hooks/useSnapCalculator.js +0 -0
- /package/dist/{FloatingChat → components/FloatingChat}/hooks/useSnapControl.js +0 -0
- /package/dist/{FloatingChat → components/FloatingChat}/hooks/useSnapSetup.js +0 -0
- /package/dist/{FloatingChat → components/FloatingChat}/index.cjs +0 -0
- /package/dist/{FloatingChat → components/FloatingChat}/index.d.cts +0 -0
- /package/dist/{FloatingChat → components/FloatingChat}/index.d.ts +0 -0
- /package/dist/{FloatingChat → components/FloatingChat}/index.js +0 -0
- /package/dist/{FloatingChat → components/FloatingChat}/utils/functions.js +0 -0
- /package/dist/{Form → components/Form}/Form.d.cts +0 -0
- /package/dist/{Form → components/Form}/Form.d.ts +0 -0
- /package/dist/{Form → components/Form}/Form.js +0 -0
- /package/dist/{Form → components/Form}/components/Layout.js +0 -0
- /package/dist/{Form → components/Form}/components/SubmitButtonItem.js +0 -0
- /package/dist/{Form → components/Form}/components/TextFieldItem.js +0 -0
- /package/dist/{Form → components/Form}/components/index.cjs +0 -0
- /package/dist/{Form → components/Form}/components/index.js +0 -0
- /package/dist/{Form → components/Form}/hooks/useFormsTextFieldValues.js +0 -0
- /package/dist/{Form → components/Form}/hooks/useGetButtonProperties.js +0 -0
- /package/dist/{Form → components/Form}/hooks/useGetTextFieldProperties.js +0 -0
- /package/dist/{Form → components/Form}/index.cjs +0 -0
- /package/dist/{Form → components/Form}/index.d.cts +0 -0
- /package/dist/{Form → components/Form}/index.d.ts +0 -0
- /package/dist/{Form → components/Form}/index.js +0 -0
- /package/dist/{Form → components/Form}/types/index.d.cts +0 -0
- /package/dist/{Form → components/Form}/types/index.d.ts +0 -0
- /package/dist/{Form → components/Form}/utils/buildSubmitButtonElement.js +0 -0
- /package/dist/{Form → components/Form}/utils/buildTextFieldsSubmitPayload.cjs +0 -0
- /package/dist/{Form → components/Form}/utils/buildTextFieldsSubmitPayload.js +0 -0
- /package/dist/{Form → components/Form}/utils/createFormSchema.js +0 -0
- /package/dist/{Form → components/Form}/utils/handleFormsSubmit.cjs +0 -0
- /package/dist/{Form → components/Form}/utils/handleFormsSubmit.js +0 -0
- /package/dist/{Form → components/Form}/utils/mapTextFields.js +0 -0
- /package/dist/{Form → components/Form}/utils/validateTextFieldsForSubmit.cjs +0 -0
- /package/dist/{Form → components/Form}/utils/validateTextFieldsForSubmit.js +0 -0
- /package/dist/{FullPageSalesAgent → components/FullPageSalesAgent}/components/index.cjs +0 -0
- /package/dist/{FullPageSalesAgent → components/FullPageSalesAgent}/components/index.js +0 -0
- /package/dist/{FullPageSalesAgent → components/FullPageSalesAgent}/hooks/useContainerResizerObserver.js +0 -0
- /package/dist/{FullPageSalesAgent → components/FullPageSalesAgent}/hooks/useGetContainerStyles.cjs +0 -0
- /package/dist/{FullPageSalesAgent → components/FullPageSalesAgent}/hooks/useGetContainerStyles.js +0 -0
- /package/dist/{FullPageSalesAgent → components/FullPageSalesAgent}/hooks/useGetFooterStyles.cjs +0 -0
- /package/dist/{FullPageSalesAgent → components/FullPageSalesAgent}/hooks/useGetFooterStyles.js +0 -0
- /package/dist/{FullPageSalesAgent → components/FullPageSalesAgent}/hooks/useGetScrollContentStyles.js +0 -0
- /package/dist/{FullPageSalesAgent → components/FullPageSalesAgent}/hooks/useIsMobile.cjs +0 -0
- /package/dist/{FullPageSalesAgent → components/FullPageSalesAgent}/hooks/useIsMobile.js +0 -0
- /package/dist/{FullPageSalesAgent → components/FullPageSalesAgent}/index.cjs +0 -0
- /package/dist/{FullPageSalesAgent → components/FullPageSalesAgent}/index.d.cts +0 -0
- /package/dist/{FullPageSalesAgent → components/FullPageSalesAgent}/index.d.ts +0 -0
- /package/dist/{FullPageSalesAgent → components/FullPageSalesAgent}/index.js +0 -0
- /package/dist/{Image → components/Image}/Image.js +0 -0
- /package/dist/{Image → components/Image}/hooks/useGetAccessibilityProperties.js +0 -0
- /package/dist/{Image → components/Image}/hooks/useGetAspectRatioProperties.js +0 -0
- /package/dist/{Image → components/Image}/hooks/useGetObjectFitProperties.js +0 -0
- /package/dist/{Image → components/Image}/hooks/useGetRoundedProperties.js +0 -0
- /package/dist/{Image → components/Image}/hooks/useGetSkeletonProperties.js +0 -0
- /package/dist/{Image → components/Image}/hooks/useGetWidthProperties.js +0 -0
- /package/dist/{Image → components/Image}/hooks/useHandleImageLoading.js +0 -0
- /package/dist/{Image → components/Image}/index.cjs +0 -0
- /package/dist/{Image → components/Image}/index.d.cts +0 -0
- /package/dist/{Image → components/Image}/index.d.ts +0 -0
- /package/dist/{Image → components/Image}/index.js +0 -0
- /package/dist/{Image → components/Image}/types/index.cjs +0 -0
- /package/dist/{Image → components/Image}/types/index.d.cts +0 -0
- /package/dist/{Image → components/Image}/types/index.d.ts +0 -0
- /package/dist/{Image → components/Image}/types/index.js +0 -0
- /package/dist/{ImageGallery → components/ImageGallery}/components/ImageItem.js +0 -0
- /package/dist/{ImageGallery → components/ImageGallery}/components/NormalLayout.js +0 -0
- /package/dist/{ImageGallery → components/ImageGallery}/components/OverlappedLayout.js +0 -0
- /package/dist/{ImageGallery → components/ImageGallery}/components/index.cjs +0 -0
- /package/dist/{ImageGallery → components/ImageGallery}/components/index.js +0 -0
- /package/dist/{ImageGallery → components/ImageGallery}/hooks/useGetContainerProperties.js +0 -0
- /package/dist/{ImageGallery → components/ImageGallery}/hooks/useValidateImages.cjs +0 -0
- /package/dist/{ImageGallery → components/ImageGallery}/hooks/useValidateImages.js +0 -0
- /package/dist/{ImageGallery → components/ImageGallery}/index.cjs +0 -0
- /package/dist/{ImageGallery → components/ImageGallery}/index.d.cts +0 -0
- /package/dist/{ImageGallery → components/ImageGallery}/index.d.ts +0 -0
- /package/dist/{ImageGallery → components/ImageGallery}/index.js +0 -0
- /package/dist/{ImageGallery → components/ImageGallery}/types/types.cjs +0 -0
- /package/dist/{ImageGallery → components/ImageGallery}/types/types.js +0 -0
- /package/dist/{MarkdownProcessor → components/MarkdownProcessor}/components/MarkdownListItem.js +0 -0
- /package/dist/{MarkdownProcessor → components/MarkdownProcessor}/components/MarkdownOrderedList.js +0 -0
- /package/dist/{MarkdownProcessor → components/MarkdownProcessor}/components/MarkdownParagraph.js +0 -0
- /package/dist/{MarkdownProcessor → components/MarkdownProcessor}/components/MarkdownUnorderedList.js +0 -0
- /package/dist/{MarkdownProcessor → components/MarkdownProcessor}/components/index.cjs +0 -0
- /package/dist/{MarkdownProcessor → components/MarkdownProcessor}/components/index.js +0 -0
- /package/dist/{MarkdownProcessor → components/MarkdownProcessor}/index.cjs +0 -0
- /package/dist/{MarkdownProcessor → components/MarkdownProcessor}/index.d.cts +0 -0
- /package/dist/{MarkdownProcessor → components/MarkdownProcessor}/index.d.ts +0 -0
- /package/dist/{MarkdownProcessor → components/MarkdownProcessor}/index.js +0 -0
- /package/dist/{Message → components/Message}/components/AgentHeader.js +0 -0
- /package/dist/{Message → components/Message}/components/Layout.js +0 -0
- /package/dist/{Message → components/Message}/components/LoadingSkeleton.js +0 -0
- /package/dist/{Message → components/Message}/components/SparkleIcon.js +0 -0
- /package/dist/{Message → components/Message}/components/UserContent.js +0 -0
- /package/dist/{Message → components/Message}/components/index.cjs +0 -0
- /package/dist/{Message → components/Message}/components/index.js +0 -0
- /package/dist/{Message → components/Message}/hooks/useGetLinkButtonIconProperties.js +0 -0
- /package/dist/{Message → components/Message}/hooks/useGetLinkButtonProperties.js +0 -0
- /package/dist/{Message → components/Message}/hooks/useVariantStyleProperties.js +0 -0
- /package/dist/{Message → components/Message}/index.cjs +0 -0
- /package/dist/{Message → components/Message}/index.d.cts +0 -0
- /package/dist/{Message → components/Message}/index.d.ts +0 -0
- /package/dist/{Message → components/Message}/index.js +0 -0
- /package/dist/{Message → components/Message}/types/index.cjs +0 -0
- /package/dist/{Message → components/Message}/types/index.js +0 -0
- /package/dist/{Message → components/Message}/utils/openUrlInNewTab.cjs +0 -0
- /package/dist/{Message → components/Message}/utils/openUrlInNewTab.js +0 -0
- /package/dist/{Message → components/Message}/utils/validateMessageProps.cjs +0 -0
- /package/dist/{Message → components/Message}/utils/validateMessageProps.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/OrderLookupCard.d.cts +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/OrderLookupCard.d.ts +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/components/Layout.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/components/MoreProductsOverlay.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/components/OrderDate.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/components/OrderNumber.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/components/ProductImageGridItem.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/components/ProductImageItem.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/components/ProductImagesGrid.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/components/StatusLabel.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/components/TrackOrderLink.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/components/index.cjs +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/components/index.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/hooks/useGetImageGridPositionProperties.cjs +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/hooks/useGetImageGridPositionProperties.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/hooks/useGetProductImagesGridProperties.cjs +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/hooks/useGetProductImagesGridProperties.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/index.cjs +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/index.d.cts +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/index.d.ts +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/index.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/utils/calculateMoreProductsCount.cjs +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/utils/calculateMoreProductsCount.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/utils/formatOrderDate.cjs +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/utils/formatOrderDate.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/utils/formatOrderNumber.cjs +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/utils/formatOrderNumber.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/utils/getProductImagesToDisplay.cjs +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/utils/getProductImagesToDisplay.js +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/utils/handleTrackOrderNavigation.cjs +0 -0
- /package/dist/{OrderLookupCard → components/OrderLookupCard}/utils/handleTrackOrderNavigation.js +0 -0
- /package/dist/{ProductCard → components/ProductCard}/ProductCard.d.ts +0 -0
- /package/dist/{ProductCard → components/ProductCard}/components/Carousel.js +0 -0
- /package/dist/{ProductCard → components/ProductCard}/components/Header.js +0 -0
- /package/dist/{ProductCard → components/ProductCard}/components/Poster.js +0 -0
- /package/dist/{ProductCard → components/ProductCard}/components/index.cjs +0 -0
- /package/dist/{ProductCard → components/ProductCard}/components/index.js +0 -0
- /package/dist/{ProductCard → components/ProductCard}/hooks/useGetCarouselProperties.cjs +0 -0
- /package/dist/{ProductCard → components/ProductCard}/hooks/useGetCarouselProperties.js +0 -0
- /package/dist/{ProductCard → components/ProductCard}/hooks/useGetHeaderProperties.cjs +0 -0
- /package/dist/{ProductCard → components/ProductCard}/hooks/useGetHeaderProperties.js +0 -0
- /package/dist/{ProductCard → components/ProductCard}/hooks/useGetPosterProperties.cjs +0 -0
- /package/dist/{ProductCard → components/ProductCard}/hooks/useGetPosterProperties.js +0 -0
- /package/dist/{ProductCard → components/ProductCard}/index.cjs +0 -0
- /package/dist/{ProductCard → components/ProductCard}/index.d.cts +0 -0
- /package/dist/{ProductCard → components/ProductCard}/index.d.ts +0 -0
- /package/dist/{ProductCard → components/ProductCard}/index.js +0 -0
- /package/dist/{PromptButton → components/PromptButton}/components/Icon.js +0 -0
- /package/dist/{PromptButton → components/PromptButton}/components/Label.js +0 -0
- /package/dist/{PromptButton → components/PromptButton}/components/Loading.js +0 -0
- /package/dist/{PromptButton → components/PromptButton}/components/index.cjs +0 -0
- /package/dist/{PromptButton → components/PromptButton}/components/index.js +0 -0
- /package/dist/{PromptButton → components/PromptButton}/hooks/useGetBackgroundColorsProperties.js +0 -0
- /package/dist/{PromptButton → components/PromptButton}/hooks/useGetBoldTextProperties.js +0 -0
- /package/dist/{PromptButton → components/PromptButton}/hooks/useGetBorderColorsProperties.js +0 -0
- /package/dist/{PromptButton → components/PromptButton}/hooks/useGetLayoutBaseProperties.js +0 -0
- /package/dist/{PromptButton → components/PromptButton}/hooks/useGetTextColorsProperties.js +0 -0
- /package/dist/{PromptButton → components/PromptButton}/hooks/useGetVariantColorsProperties.cjs +0 -0
- /package/dist/{PromptButton → components/PromptButton}/hooks/useGetVariantColorsProperties.js +0 -0
- /package/dist/{PromptButton → components/PromptButton}/index.d.cts +0 -0
- /package/dist/{PromptButton → components/PromptButton}/index.d.ts +0 -0
- /package/dist/{PromptButton → components/PromptButton}/index.js +0 -0
- /package/dist/{PromptButton → components/PromptButton}/types/index.cjs +0 -0
- /package/dist/{PromptButton → components/PromptButton}/types/index.js +0 -0
- /package/dist/{PromptButton → components/PromptButton}/utils/functions.js +0 -0
- /package/dist/{PromptButtonCarouselWithImage → components/PromptButtonCarouselWithImage}/components/Image.js +0 -0
- /package/dist/{PromptButtonCarouselWithImage → components/PromptButtonCarouselWithImage}/components/Layout.js +0 -0
- /package/dist/{PromptButtonCarouselWithImage → components/PromptButtonCarouselWithImage}/components/PromptButtonsCarousel.js +0 -0
- /package/dist/{PromptButtonCarouselWithImage → components/PromptButtonCarouselWithImage}/components/Skeleton.js +0 -0
- /package/dist/{PromptButtonCarouselWithImage → components/PromptButtonCarouselWithImage}/components/Title.js +0 -0
- /package/dist/{PromptButtonCarouselWithImage → components/PromptButtonCarouselWithImage}/components/index.cjs +0 -0
- /package/dist/{PromptButtonCarouselWithImage → components/PromptButtonCarouselWithImage}/components/index.js +0 -0
- /package/dist/{PromptButtonCarouselWithImage → components/PromptButtonCarouselWithImage}/index.cjs +0 -0
- /package/dist/{PromptButtonCarouselWithImage → components/PromptButtonCarouselWithImage}/index.d.cts +0 -0
- /package/dist/{PromptButtonCarouselWithImage → components/PromptButtonCarouselWithImage}/index.d.ts +0 -0
- /package/dist/{PromptButtonCarouselWithImage → components/PromptButtonCarouselWithImage}/index.js +0 -0
- /package/dist/{PromptCarousel → components/PromptCarousel}/hooks/index.cjs +0 -0
- /package/dist/{PromptCarousel → components/PromptCarousel}/hooks/index.js +0 -0
- /package/dist/{PromptCarousel → components/PromptCarousel}/hooks/useCarouselButtons.js +0 -0
- /package/dist/{PromptCarousel → components/PromptCarousel}/hooks/useCoordinatedScrollAnimation.js +0 -0
- /package/dist/{PromptCarousel → components/PromptCarousel}/hooks/useScrollSync.js +0 -0
- /package/dist/{PromptCarousel → components/PromptCarousel}/types/types.cjs +0 -0
- /package/dist/{PromptCarousel → components/PromptCarousel}/types/types.js +0 -0
- /package/dist/{PromptCarousel → components/PromptCarousel}/utils/functions.js +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/components/Container.js +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/components/Name.js +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/components/Rating.js +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/components/ReviewText.js +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/components/index.cjs +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/components/index.js +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/hooks/useGetCardWidthProperties.cjs +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/hooks/useGetCardWidthProperties.js +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/hooks/useGetNameProperties.js +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/hooks/useGetPaddingProperties.cjs +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/hooks/useGetPaddingProperties.js +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/hooks/useGetReviewTextProperties.js +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/hooks/useGetThemeProperties.cjs +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/hooks/useGetThemeProperties.js +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/index.cjs +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/index.d.cts +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/index.d.ts +0 -0
- /package/dist/{ReviewCard → components/ReviewCard}/index.js +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/components/Price.d.cts +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/components/Price.d.ts +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/components/Price.js +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/components/ProductImage.d.cts +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/components/ProductImage.d.ts +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/components/ProductImage.js +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/components/index.cjs +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/components/index.js +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/hooks/useGetImageProperties.cjs +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/hooks/useGetImageProperties.js +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/index.cjs +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/index.d.cts +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/index.d.ts +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/index.js +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/types/types.cjs +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/types/types.js +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/utils/functions.cjs +0 -0
- /package/dist/{SalesAgentProductCard → components/SalesAgentProductCard}/utils/functions.js +0 -0
- /package/dist/{SocialProof → components/SocialProof}/components/ImageGallery.js +0 -0
- /package/dist/{SocialProof → components/SocialProof}/components/LayoutFourGrid.js +0 -0
- /package/dist/{SocialProof → components/SocialProof}/components/LayoutSingle.js +0 -0
- /package/dist/{SocialProof → components/SocialProof}/components/Skeleton.js +0 -0
- /package/dist/{SocialProof → components/SocialProof}/components/index.cjs +0 -0
- /package/dist/{SocialProof → components/SocialProof}/components/index.js +0 -0
- /package/dist/{SocialProof → components/SocialProof}/hooks/index.cjs +0 -0
- /package/dist/{SocialProof → components/SocialProof}/hooks/index.js +0 -0
- /package/dist/{SocialProof → components/SocialProof}/hooks/useSocialProofCount.d.cts +0 -0
- /package/dist/{SocialProof → components/SocialProof}/hooks/useSocialProofCount.d.ts +0 -0
- /package/dist/{SocialProof → components/SocialProof}/hooks/useSocialProofCount.js +0 -0
- /package/dist/{SocialProof → components/SocialProof}/index.cjs +0 -0
- /package/dist/{SocialProof → components/SocialProof}/index.d.cts +0 -0
- /package/dist/{SocialProof → components/SocialProof}/index.d.ts +0 -0
- /package/dist/{SocialProof → components/SocialProof}/index.js +0 -0
- /package/dist/{SocialProof → components/SocialProof}/types/types.cjs +0 -0
- /package/dist/{SocialProof → components/SocialProof}/types/types.js +0 -0
- /package/dist/{SparkleAnimation → components/SparkleAnimation}/index.cjs +0 -0
- /package/dist/{SparkleAnimation → components/SparkleAnimation}/index.d.cts +0 -0
- /package/dist/{SparkleAnimation → components/SparkleAnimation}/index.d.ts +0 -0
- /package/dist/{SparkleAnimation → components/SparkleAnimation}/index.js +0 -0
- /package/dist/{SparkleAnimation → components/SparkleAnimation}/types.cjs +0 -0
- /package/dist/{SparkleAnimation → components/SparkleAnimation}/types.d.cts +0 -0
- /package/dist/{SparkleAnimation → components/SparkleAnimation}/types.d.ts +0 -0
- /package/dist/{SparkleAnimation → components/SparkleAnimation}/types.js +0 -0
- /package/dist/{Stack → components/Stack}/Stack.js +0 -0
- /package/dist/{Stack → components/Stack}/hooks/useFormatStackChildren.js +0 -0
- /package/dist/{Stack → components/Stack}/hooks/useGetAlignProperties.js +0 -0
- /package/dist/{Stack → components/Stack}/hooks/useGetDirectionProperties.js +0 -0
- /package/dist/{Stack → components/Stack}/hooks/useGetGapProperties.js +0 -0
- /package/dist/{Stack → components/Stack}/hooks/useGetJustifyProperties.js +0 -0
- /package/dist/{Stack → components/Stack}/hooks/useGetStyleProperties.cjs +0 -0
- /package/dist/{Stack → components/Stack}/hooks/useGetStyleProperties.js +0 -0
- /package/dist/{Stack → components/Stack}/hooks/useGetWrapProperties.js +0 -0
- /package/dist/{Stack → components/Stack}/index.cjs +0 -0
- /package/dist/{Stack → components/Stack}/index.d.cts +0 -0
- /package/dist/{Stack → components/Stack}/index.d.ts +0 -0
- /package/dist/{Stack → components/Stack}/index.js +0 -0
- /package/dist/{Stack → components/Stack}/types/index.d.cts +0 -0
- /package/dist/{Stack → components/Stack}/types/index.d.ts +0 -0
- /package/dist/{Stack → components/Stack}/utils/constants.cjs +0 -0
- /package/dist/{Stack → components/Stack}/utils/constants.js +0 -0
- /package/dist/{TextField → components/TextField}/components/Input.js +0 -0
- /package/dist/{TextField → components/TextField}/components/Layout.js +0 -0
- /package/dist/{TextField → components/TextField}/components/SendIcon.js +0 -0
- /package/dist/{TextField → components/TextField}/components/index.cjs +0 -0
- /package/dist/{TextField → components/TextField}/components/index.js +0 -0
- /package/dist/{TextField → components/TextField}/hooks/useGetSkeletonProperties.js +0 -0
- /package/dist/{TextField → components/TextField}/hooks/useSendIconHandlers.js +0 -0
- /package/dist/{TextField → components/TextField}/hooks/useTextFieldFocus.js +0 -0
- /package/dist/{TextField → components/TextField}/hooks/useTextFieldSubmit.js +0 -0
- /package/dist/{TextField → components/TextField}/hooks/useTextFieldValue.js +0 -0
- /package/dist/{TextField → components/TextField}/index.cjs +0 -0
- /package/dist/{TextField → components/TextField}/index.d.cts +0 -0
- /package/dist/{TextField → components/TextField}/index.d.ts +0 -0
- /package/dist/{TextField → components/TextField}/index.js +0 -0
- /package/dist/{TextField → components/TextField}/utils/createInputChangeHandler.cjs +0 -0
- /package/dist/{TextField → components/TextField}/utils/createInputChangeHandler.js +0 -0
- /package/dist/{TextField → components/TextField}/utils/getIconColor.cjs +0 -0
- /package/dist/{TextField → components/TextField}/utils/getIconColor.js +0 -0
- /package/dist/{TextField → components/TextField}/utils/getLayoutStateProperties.cjs +0 -0
- /package/dist/{TextField → components/TextField}/utils/getLayoutStateProperties.js +0 -0
- /package/dist/{Title → components/Title}/Title.d.cts +0 -0
- /package/dist/{Title → components/Title}/Title.d.ts +0 -0
- /package/dist/{Title → components/Title}/Title.js +0 -0
- /package/dist/{Title → components/Title}/components/Image.js +0 -0
- /package/dist/{Title → components/Title}/components/Label.js +0 -0
- /package/dist/{Title → components/Title}/components/Layout.js +0 -0
- /package/dist/{Title → components/Title}/components/index.cjs +0 -0
- /package/dist/{Title → components/Title}/components/index.js +0 -0
- /package/dist/{Title → components/Title}/index.cjs +0 -0
- /package/dist/{Title → components/Title}/index.d.cts +0 -0
- /package/dist/{Title → components/Title}/index.d.ts +0 -0
- /package/dist/{Title → components/Title}/index.js +0 -0
- /package/dist/{Title → components/Title}/types/index.d.cts +0 -0
- /package/dist/{Title → components/Title}/types/index.d.ts +0 -0
- /package/dist/{TitledPromptCarousel → components/TitledPromptCarousel}/index.cjs +0 -0
- /package/dist/{TitledPromptCarousel → components/TitledPromptCarousel}/index.d.cts +0 -0
- /package/dist/{TitledPromptCarousel → components/TitledPromptCarousel}/index.d.ts +0 -0
- /package/dist/{TitledPromptCarousel → components/TitledPromptCarousel}/index.js +0 -0
- /package/dist/{TypingAnimation → components/TypingAnimation}/index.cjs +0 -0
- /package/dist/{TypingAnimation → components/TypingAnimation}/index.d.cts +0 -0
- /package/dist/{TypingAnimation → components/TypingAnimation}/index.d.ts +0 -0
- /package/dist/{TypingAnimation → components/TypingAnimation}/index.js +0 -0
- /package/dist/{Typography → components/Typography}/Typography.js +0 -0
- /package/dist/{Typography → components/Typography}/hooks/useGetAccessibilityAttributes.js +0 -0
- /package/dist/{Typography → components/Typography}/hooks/useGetAlignProperties.js +0 -0
- /package/dist/{Typography → components/Typography}/hooks/useGetColorProperties.js +0 -0
- /package/dist/{Typography → components/Typography}/hooks/useGetNoWrapProperties.js +0 -0
- /package/dist/{Typography → components/Typography}/hooks/useGetNumberOfLinesProperties.js +0 -0
- /package/dist/{Typography → components/Typography}/hooks/useGetVariantProperties.js +0 -0
- /package/dist/{Typography → components/Typography}/index.cjs +0 -0
- /package/dist/{Typography → components/Typography}/index.d.cts +0 -0
- /package/dist/{Typography → components/Typography}/index.d.ts +0 -0
- /package/dist/{Typography → components/Typography}/index.js +0 -0
- /package/dist/{Typography → components/Typography}/types/index.cjs +0 -0
- /package/dist/{Typography → components/Typography}/types/index.js +0 -0
- /package/dist/{Typography → components/Typography}/utils/utils.cjs +0 -0
- /package/dist/{Typography → components/Typography}/utils/utils.js +0 -0
- /package/dist/{WelcomeMessage → components/WelcomeMessage}/WelcomeMessage.d.cts +0 -0
- /package/dist/{WelcomeMessage → components/WelcomeMessage}/WelcomeMessage.d.ts +0 -0
- /package/dist/{WelcomeMessage → components/WelcomeMessage}/components/Container.js +0 -0
- /package/dist/{WelcomeMessage → components/WelcomeMessage}/components/Text.js +0 -0
- /package/dist/{WelcomeMessage → components/WelcomeMessage}/components/Title.js +0 -0
- /package/dist/{WelcomeMessage → components/WelcomeMessage}/components/index.cjs +0 -0
- /package/dist/{WelcomeMessage → components/WelcomeMessage}/components/index.js +0 -0
- /package/dist/{WelcomeMessage → components/WelcomeMessage}/index.cjs +0 -0
- /package/dist/{WelcomeMessage → components/WelcomeMessage}/index.d.cts +0 -0
- /package/dist/{WelcomeMessage → components/WelcomeMessage}/index.d.ts +0 -0
- /package/dist/{WelcomeMessage → components/WelcomeMessage}/index.js +0 -0
- /package/dist/{WidgetTextField → components/WidgetTextField}/components/Container.js +0 -0
- /package/dist/{WidgetTextField → components/WidgetTextField}/components/FakeTextInput.js +0 -0
- /package/dist/{WidgetTextField → components/WidgetTextField}/components/index.cjs +0 -0
- /package/dist/{WidgetTextField → components/WidgetTextField}/components/index.js +0 -0
- /package/dist/{WidgetTextField → components/WidgetTextField}/hooks/useHandleKeyboard.cjs +0 -0
- /package/dist/{WidgetTextField → components/WidgetTextField}/hooks/useHandleKeyboard.js +0 -0
- /package/dist/{WidgetTextField → components/WidgetTextField}/index.cjs +0 -0
- /package/dist/{WidgetTextField → components/WidgetTextField}/index.d.cts +0 -0
- /package/dist/{WidgetTextField → components/WidgetTextField}/index.d.ts +0 -0
- /package/dist/{WidgetTextField → components/WidgetTextField}/index.js +0 -0
- /package/dist/{WidgetTextField → components/WidgetTextField}/types/types.cjs +0 -0
- /package/dist/{WidgetTextField → components/WidgetTextField}/types/types.js +0 -0
- /package/dist/{WidgetWrapper → components/WidgetWrapper}/WidgetWrapper.js +0 -0
- /package/dist/{WidgetWrapper → components/WidgetWrapper}/hooks/useGetWrapperProperties.js +0 -0
- /package/dist/{WidgetWrapper → components/WidgetWrapper}/index.cjs +0 -0
- /package/dist/{WidgetWrapper → components/WidgetWrapper}/index.d.cts +0 -0
- /package/dist/{WidgetWrapper → components/WidgetWrapper}/index.d.ts +0 -0
- /package/dist/{WidgetWrapper → components/WidgetWrapper}/index.js +0 -0
- /package/dist/{WidgetWrapper → components/WidgetWrapper}/types/types.cjs +0 -0
- /package/dist/{WidgetWrapper → components/WidgetWrapper}/types/types.d.cts +0 -0
- /package/dist/{WidgetWrapper → components/WidgetWrapper}/types/types.d.ts +0 -0
- /package/dist/{WidgetWrapper → components/WidgetWrapper}/types/types.js +0 -0
- /package/dist/{WidgetWrapperWithTitle → components/WidgetWrapperWithTitle}/WidgetWrapperWithTitle.js +0 -0
- /package/dist/{WidgetWrapperWithTitle → components/WidgetWrapperWithTitle}/index.cjs +0 -0
- /package/dist/{WidgetWrapperWithTitle → components/WidgetWrapperWithTitle}/index.d.cts +0 -0
- /package/dist/{WidgetWrapperWithTitle → components/WidgetWrapperWithTitle}/index.d.ts +0 -0
- /package/dist/{WidgetWrapperWithTitle → components/WidgetWrapperWithTitle}/index.js +0 -0
- /package/dist/{WidgetWrapperWithTitle → components/WidgetWrapperWithTitle}/types/types.d.cts +0 -0
- /package/dist/{WidgetWrapperWithTitle → components/WidgetWrapperWithTitle}/types/types.d.ts +0 -0
- /package/dist/{utils → components/utils}/CustomIcon.js +0 -0
- /package/dist/{utils → components/utils}/useAnimatedTextMinHeight.js +0 -0
- /package/dist/{utils → components/utils}/useDragToScroll.js +0 -0
- /package/dist/{utils → components/utils}/useGetContentSize.js +0 -0
- /package/dist/{utils → components/utils}/useHorizontalWheelScroll.js +0 -0
- /package/dist/{tokens → components-v3/tokens}/aspectRatio/aspectRatio.d.cts +0 -0
- /package/dist/{tokens → components-v3/tokens}/breakpoints/breakpoints.d.cts +0 -0
- /package/dist/{tokens → components-v3/tokens}/colors/colors.d.cts +0 -0
- /package/dist/{tokens → components-v3/tokens}/montion/motion.d.cts +0 -0
- /package/dist/{tokens → components-v3/tokens}/radius/radius.d.cts +0 -0
- /package/dist/{tokens → components-v3/tokens}/spacing/spacing.d.cts +0 -0
- /package/dist/{tokens → components-v3/tokens}/theme/theme.d.cts +0 -0
- /package/dist/{tokens → components-v3/tokens}/typography/fontFamily.d.cts +0 -0
- /package/dist/{tokens → components-v3/tokens}/typography/fontSize.d.cts +0 -0
- /package/dist/{tokens → components-v3/tokens}/typography/fontWeight.d.cts +0 -0
- /package/dist/{tokens → components-v3/tokens}/typography/letterSpacing.d.cts +0 -0
- /package/dist/{tokens → components-v3/tokens}/typography/lineHeight.d.cts +0 -0
- /package/dist/{tokens → components-v3/tokens}/typography/typography.d.cts +0 -0
- /package/dist/{packages/components-v3/src/models → models}/colorsConfig.cjs +0 -0
- /package/dist/{src/models → models}/colorsConfig.d.cts +0 -0
- /package/dist/{packages/components-v3/src/models → models}/colorsConfig.d.ts +0 -0
- /package/dist/{packages/components-v3/src/models → models}/colorsConfig.js +0 -0
|
@@ -0,0 +1,1528 @@
|
|
|
1
|
+
const require_rolldown_runtime = require('../../../_virtual/rolldown_runtime.cjs');
|
|
2
|
+
|
|
3
|
+
//#region ../icons/dist/node_modules/react/cjs/react.development.js
|
|
4
|
+
/**
|
|
5
|
+
* @license React
|
|
6
|
+
* react.development.js
|
|
7
|
+
*
|
|
8
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
9
|
+
*
|
|
10
|
+
* This source code is licensed under the MIT license found in the
|
|
11
|
+
* LICENSE file in the root directory of this source tree.
|
|
12
|
+
*/
|
|
13
|
+
var require_react_development = /* @__PURE__ */ require_rolldown_runtime.__commonJSMin(((exports$1, module$1) => {
|
|
14
|
+
if (process.env.NODE_ENV !== "production") (function() {
|
|
15
|
+
"use strict";
|
|
16
|
+
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === "function") __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(/* @__PURE__ */ new Error());
|
|
17
|
+
var ReactVersion = "18.3.1";
|
|
18
|
+
var REACT_ELEMENT_TYPE = Symbol.for("react.element");
|
|
19
|
+
var REACT_PORTAL_TYPE = Symbol.for("react.portal");
|
|
20
|
+
var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
|
|
21
|
+
var REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode");
|
|
22
|
+
var REACT_PROFILER_TYPE = Symbol.for("react.profiler");
|
|
23
|
+
var REACT_PROVIDER_TYPE = Symbol.for("react.provider");
|
|
24
|
+
var REACT_CONTEXT_TYPE = Symbol.for("react.context");
|
|
25
|
+
var REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref");
|
|
26
|
+
var REACT_SUSPENSE_TYPE = Symbol.for("react.suspense");
|
|
27
|
+
var REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list");
|
|
28
|
+
var REACT_MEMO_TYPE = Symbol.for("react.memo");
|
|
29
|
+
var REACT_LAZY_TYPE = Symbol.for("react.lazy");
|
|
30
|
+
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
|
31
|
+
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
|
32
|
+
var FAUX_ITERATOR_SYMBOL = "@@iterator";
|
|
33
|
+
function getIteratorFn(maybeIterable) {
|
|
34
|
+
if (maybeIterable === null || typeof maybeIterable !== "object") return null;
|
|
35
|
+
var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];
|
|
36
|
+
if (typeof maybeIterator === "function") return maybeIterator;
|
|
37
|
+
return null;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Keeps track of the current dispatcher.
|
|
41
|
+
*/
|
|
42
|
+
var ReactCurrentDispatcher = { current: null };
|
|
43
|
+
/**
|
|
44
|
+
* Keeps track of the current batch's configuration such as how long an update
|
|
45
|
+
* should suspend for if it needs to.
|
|
46
|
+
*/
|
|
47
|
+
var ReactCurrentBatchConfig = { transition: null };
|
|
48
|
+
var ReactCurrentActQueue = {
|
|
49
|
+
current: null,
|
|
50
|
+
isBatchingLegacy: false,
|
|
51
|
+
didScheduleLegacyUpdate: false
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* Keeps track of the current owner.
|
|
55
|
+
*
|
|
56
|
+
* The current owner is the component who should own any components that are
|
|
57
|
+
* currently being constructed.
|
|
58
|
+
*/
|
|
59
|
+
var ReactCurrentOwner = { current: null };
|
|
60
|
+
var ReactDebugCurrentFrame = {};
|
|
61
|
+
var currentExtraStackFrame = null;
|
|
62
|
+
function setExtraStackFrame(stack) {
|
|
63
|
+
currentExtraStackFrame = stack;
|
|
64
|
+
}
|
|
65
|
+
ReactDebugCurrentFrame.setExtraStackFrame = function(stack) {
|
|
66
|
+
currentExtraStackFrame = stack;
|
|
67
|
+
};
|
|
68
|
+
ReactDebugCurrentFrame.getCurrentStack = null;
|
|
69
|
+
ReactDebugCurrentFrame.getStackAddendum = function() {
|
|
70
|
+
var stack = "";
|
|
71
|
+
if (currentExtraStackFrame) stack += currentExtraStackFrame;
|
|
72
|
+
var impl = ReactDebugCurrentFrame.getCurrentStack;
|
|
73
|
+
if (impl) stack += impl() || "";
|
|
74
|
+
return stack;
|
|
75
|
+
};
|
|
76
|
+
var enableScopeAPI = false;
|
|
77
|
+
var enableCacheElement = false;
|
|
78
|
+
var enableTransitionTracing = false;
|
|
79
|
+
var enableLegacyHidden = false;
|
|
80
|
+
var enableDebugTracing = false;
|
|
81
|
+
var ReactSharedInternals = {
|
|
82
|
+
ReactCurrentDispatcher,
|
|
83
|
+
ReactCurrentBatchConfig,
|
|
84
|
+
ReactCurrentOwner
|
|
85
|
+
};
|
|
86
|
+
ReactSharedInternals.ReactDebugCurrentFrame = ReactDebugCurrentFrame;
|
|
87
|
+
ReactSharedInternals.ReactCurrentActQueue = ReactCurrentActQueue;
|
|
88
|
+
function warn(format) {
|
|
89
|
+
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) args[_key - 1] = arguments[_key];
|
|
90
|
+
printWarning("warn", format, args);
|
|
91
|
+
}
|
|
92
|
+
function error(format) {
|
|
93
|
+
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) args[_key2 - 1] = arguments[_key2];
|
|
94
|
+
printWarning("error", format, args);
|
|
95
|
+
}
|
|
96
|
+
function printWarning(level, format, args) {
|
|
97
|
+
var stack = ReactSharedInternals.ReactDebugCurrentFrame.getStackAddendum();
|
|
98
|
+
if (stack !== "") {
|
|
99
|
+
format += "%s";
|
|
100
|
+
args = args.concat([stack]);
|
|
101
|
+
}
|
|
102
|
+
var argsWithFormat = args.map(function(item) {
|
|
103
|
+
return String(item);
|
|
104
|
+
});
|
|
105
|
+
argsWithFormat.unshift("Warning: " + format);
|
|
106
|
+
Function.prototype.apply.call(console[level], console, argsWithFormat);
|
|
107
|
+
}
|
|
108
|
+
var didWarnStateUpdateForUnmountedComponent = {};
|
|
109
|
+
function warnNoop(publicInstance, callerName) {
|
|
110
|
+
var _constructor = publicInstance.constructor;
|
|
111
|
+
var componentName = _constructor && (_constructor.displayName || _constructor.name) || "ReactClass";
|
|
112
|
+
var warningKey = componentName + "." + callerName;
|
|
113
|
+
if (didWarnStateUpdateForUnmountedComponent[warningKey]) return;
|
|
114
|
+
error("Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.", callerName, componentName);
|
|
115
|
+
didWarnStateUpdateForUnmountedComponent[warningKey] = true;
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* This is the abstract API for an update queue.
|
|
119
|
+
*/
|
|
120
|
+
var ReactNoopUpdateQueue = {
|
|
121
|
+
isMounted: function(publicInstance) {
|
|
122
|
+
return false;
|
|
123
|
+
},
|
|
124
|
+
enqueueForceUpdate: function(publicInstance, callback, callerName) {
|
|
125
|
+
warnNoop(publicInstance, "forceUpdate");
|
|
126
|
+
},
|
|
127
|
+
enqueueReplaceState: function(publicInstance, completeState, callback, callerName) {
|
|
128
|
+
warnNoop(publicInstance, "replaceState");
|
|
129
|
+
},
|
|
130
|
+
enqueueSetState: function(publicInstance, partialState, callback, callerName) {
|
|
131
|
+
warnNoop(publicInstance, "setState");
|
|
132
|
+
}
|
|
133
|
+
};
|
|
134
|
+
var assign = Object.assign;
|
|
135
|
+
var emptyObject = {};
|
|
136
|
+
Object.freeze(emptyObject);
|
|
137
|
+
/**
|
|
138
|
+
* Base class helpers for the updating state of a component.
|
|
139
|
+
*/
|
|
140
|
+
function Component(props, context, updater) {
|
|
141
|
+
this.props = props;
|
|
142
|
+
this.context = context;
|
|
143
|
+
this.refs = emptyObject;
|
|
144
|
+
this.updater = updater || ReactNoopUpdateQueue;
|
|
145
|
+
}
|
|
146
|
+
Component.prototype.isReactComponent = {};
|
|
147
|
+
/**
|
|
148
|
+
* Sets a subset of the state. Always use this to mutate
|
|
149
|
+
* state. You should treat `this.state` as immutable.
|
|
150
|
+
*
|
|
151
|
+
* There is no guarantee that `this.state` will be immediately updated, so
|
|
152
|
+
* accessing `this.state` after calling this method may return the old value.
|
|
153
|
+
*
|
|
154
|
+
* There is no guarantee that calls to `setState` will run synchronously,
|
|
155
|
+
* as they may eventually be batched together. You can provide an optional
|
|
156
|
+
* callback that will be executed when the call to setState is actually
|
|
157
|
+
* completed.
|
|
158
|
+
*
|
|
159
|
+
* When a function is provided to setState, it will be called at some point in
|
|
160
|
+
* the future (not synchronously). It will be called with the up to date
|
|
161
|
+
* component arguments (state, props, context). These values can be different
|
|
162
|
+
* from this.* because your function may be called after receiveProps but before
|
|
163
|
+
* shouldComponentUpdate, and this new state, props, and context will not yet be
|
|
164
|
+
* assigned to this.
|
|
165
|
+
*
|
|
166
|
+
* @param {object|function} partialState Next partial state or function to
|
|
167
|
+
* produce next partial state to be merged with current state.
|
|
168
|
+
* @param {?function} callback Called after state is updated.
|
|
169
|
+
* @final
|
|
170
|
+
* @protected
|
|
171
|
+
*/
|
|
172
|
+
Component.prototype.setState = function(partialState, callback) {
|
|
173
|
+
if (typeof partialState !== "object" && typeof partialState !== "function" && partialState != null) throw new Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");
|
|
174
|
+
this.updater.enqueueSetState(this, partialState, callback, "setState");
|
|
175
|
+
};
|
|
176
|
+
/**
|
|
177
|
+
* Forces an update. This should only be invoked when it is known with
|
|
178
|
+
* certainty that we are **not** in a DOM transaction.
|
|
179
|
+
*
|
|
180
|
+
* You may want to call this when you know that some deeper aspect of the
|
|
181
|
+
* component's state has changed but `setState` was not called.
|
|
182
|
+
*
|
|
183
|
+
* This will not invoke `shouldComponentUpdate`, but it will invoke
|
|
184
|
+
* `componentWillUpdate` and `componentDidUpdate`.
|
|
185
|
+
*
|
|
186
|
+
* @param {?function} callback Called after update is complete.
|
|
187
|
+
* @final
|
|
188
|
+
* @protected
|
|
189
|
+
*/
|
|
190
|
+
Component.prototype.forceUpdate = function(callback) {
|
|
191
|
+
this.updater.enqueueForceUpdate(this, callback, "forceUpdate");
|
|
192
|
+
};
|
|
193
|
+
var deprecatedAPIs = {
|
|
194
|
+
isMounted: ["isMounted", "Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks."],
|
|
195
|
+
replaceState: ["replaceState", "Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236)."]
|
|
196
|
+
};
|
|
197
|
+
var defineDeprecationWarning = function(methodName, info) {
|
|
198
|
+
Object.defineProperty(Component.prototype, methodName, { get: function() {
|
|
199
|
+
warn("%s(...) is deprecated in plain JavaScript React classes. %s", info[0], info[1]);
|
|
200
|
+
} });
|
|
201
|
+
};
|
|
202
|
+
for (var fnName in deprecatedAPIs) if (deprecatedAPIs.hasOwnProperty(fnName)) defineDeprecationWarning(fnName, deprecatedAPIs[fnName]);
|
|
203
|
+
function ComponentDummy() {}
|
|
204
|
+
ComponentDummy.prototype = Component.prototype;
|
|
205
|
+
/**
|
|
206
|
+
* Convenience component with default shallow equality check for sCU.
|
|
207
|
+
*/
|
|
208
|
+
function PureComponent(props, context, updater) {
|
|
209
|
+
this.props = props;
|
|
210
|
+
this.context = context;
|
|
211
|
+
this.refs = emptyObject;
|
|
212
|
+
this.updater = updater || ReactNoopUpdateQueue;
|
|
213
|
+
}
|
|
214
|
+
var pureComponentPrototype = PureComponent.prototype = new ComponentDummy();
|
|
215
|
+
pureComponentPrototype.constructor = PureComponent;
|
|
216
|
+
assign(pureComponentPrototype, Component.prototype);
|
|
217
|
+
pureComponentPrototype.isPureReactComponent = true;
|
|
218
|
+
function createRef() {
|
|
219
|
+
var refObject = { current: null };
|
|
220
|
+
Object.seal(refObject);
|
|
221
|
+
return refObject;
|
|
222
|
+
}
|
|
223
|
+
var isArrayImpl = Array.isArray;
|
|
224
|
+
function isArray(a) {
|
|
225
|
+
return isArrayImpl(a);
|
|
226
|
+
}
|
|
227
|
+
function typeName(value) {
|
|
228
|
+
return typeof Symbol === "function" && Symbol.toStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
|
|
229
|
+
}
|
|
230
|
+
function willCoercionThrow(value) {
|
|
231
|
+
try {
|
|
232
|
+
testStringCoercion(value);
|
|
233
|
+
return false;
|
|
234
|
+
} catch (e) {
|
|
235
|
+
return true;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
function testStringCoercion(value) {
|
|
239
|
+
return "" + value;
|
|
240
|
+
}
|
|
241
|
+
function checkKeyStringCoercion(value) {
|
|
242
|
+
if (willCoercionThrow(value)) {
|
|
243
|
+
error("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", typeName(value));
|
|
244
|
+
return testStringCoercion(value);
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
function getWrappedName(outerType, innerType, wrapperName) {
|
|
248
|
+
var displayName = outerType.displayName;
|
|
249
|
+
if (displayName) return displayName;
|
|
250
|
+
var functionName = innerType.displayName || innerType.name || "";
|
|
251
|
+
return functionName !== "" ? wrapperName + "(" + functionName + ")" : wrapperName;
|
|
252
|
+
}
|
|
253
|
+
function getContextName(type) {
|
|
254
|
+
return type.displayName || "Context";
|
|
255
|
+
}
|
|
256
|
+
function getComponentNameFromType(type) {
|
|
257
|
+
if (type == null) return null;
|
|
258
|
+
if (typeof type.tag === "number") error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.");
|
|
259
|
+
if (typeof type === "function") return type.displayName || type.name || null;
|
|
260
|
+
if (typeof type === "string") return type;
|
|
261
|
+
switch (type) {
|
|
262
|
+
case REACT_FRAGMENT_TYPE: return "Fragment";
|
|
263
|
+
case REACT_PORTAL_TYPE: return "Portal";
|
|
264
|
+
case REACT_PROFILER_TYPE: return "Profiler";
|
|
265
|
+
case REACT_STRICT_MODE_TYPE: return "StrictMode";
|
|
266
|
+
case REACT_SUSPENSE_TYPE: return "Suspense";
|
|
267
|
+
case REACT_SUSPENSE_LIST_TYPE: return "SuspenseList";
|
|
268
|
+
}
|
|
269
|
+
if (typeof type === "object") switch (type.$$typeof) {
|
|
270
|
+
case REACT_CONTEXT_TYPE: return getContextName(type) + ".Consumer";
|
|
271
|
+
case REACT_PROVIDER_TYPE: return getContextName(type._context) + ".Provider";
|
|
272
|
+
case REACT_FORWARD_REF_TYPE: return getWrappedName(type, type.render, "ForwardRef");
|
|
273
|
+
case REACT_MEMO_TYPE:
|
|
274
|
+
var outerName = type.displayName || null;
|
|
275
|
+
if (outerName !== null) return outerName;
|
|
276
|
+
return getComponentNameFromType(type.type) || "Memo";
|
|
277
|
+
case REACT_LAZY_TYPE:
|
|
278
|
+
var lazyComponent = type;
|
|
279
|
+
var payload = lazyComponent._payload;
|
|
280
|
+
var init = lazyComponent._init;
|
|
281
|
+
try {
|
|
282
|
+
return getComponentNameFromType(init(payload));
|
|
283
|
+
} catch (x) {
|
|
284
|
+
return null;
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
return null;
|
|
288
|
+
}
|
|
289
|
+
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
290
|
+
var RESERVED_PROPS = {
|
|
291
|
+
key: true,
|
|
292
|
+
ref: true,
|
|
293
|
+
__self: true,
|
|
294
|
+
__source: true
|
|
295
|
+
};
|
|
296
|
+
var specialPropKeyWarningShown, specialPropRefWarningShown, didWarnAboutStringRefs = {};
|
|
297
|
+
function hasValidRef(config) {
|
|
298
|
+
if (hasOwnProperty.call(config, "ref")) {
|
|
299
|
+
var getter = Object.getOwnPropertyDescriptor(config, "ref").get;
|
|
300
|
+
if (getter && getter.isReactWarning) return false;
|
|
301
|
+
}
|
|
302
|
+
return config.ref !== void 0;
|
|
303
|
+
}
|
|
304
|
+
function hasValidKey(config) {
|
|
305
|
+
if (hasOwnProperty.call(config, "key")) {
|
|
306
|
+
var getter = Object.getOwnPropertyDescriptor(config, "key").get;
|
|
307
|
+
if (getter && getter.isReactWarning) return false;
|
|
308
|
+
}
|
|
309
|
+
return config.key !== void 0;
|
|
310
|
+
}
|
|
311
|
+
function defineKeyPropWarningGetter(props, displayName) {
|
|
312
|
+
var warnAboutAccessingKey = function() {
|
|
313
|
+
if (!specialPropKeyWarningShown) {
|
|
314
|
+
specialPropKeyWarningShown = true;
|
|
315
|
+
error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", displayName);
|
|
316
|
+
}
|
|
317
|
+
};
|
|
318
|
+
warnAboutAccessingKey.isReactWarning = true;
|
|
319
|
+
Object.defineProperty(props, "key", {
|
|
320
|
+
get: warnAboutAccessingKey,
|
|
321
|
+
configurable: true
|
|
322
|
+
});
|
|
323
|
+
}
|
|
324
|
+
function defineRefPropWarningGetter(props, displayName) {
|
|
325
|
+
var warnAboutAccessingRef = function() {
|
|
326
|
+
if (!specialPropRefWarningShown) {
|
|
327
|
+
specialPropRefWarningShown = true;
|
|
328
|
+
error("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", displayName);
|
|
329
|
+
}
|
|
330
|
+
};
|
|
331
|
+
warnAboutAccessingRef.isReactWarning = true;
|
|
332
|
+
Object.defineProperty(props, "ref", {
|
|
333
|
+
get: warnAboutAccessingRef,
|
|
334
|
+
configurable: true
|
|
335
|
+
});
|
|
336
|
+
}
|
|
337
|
+
function warnIfStringRefCannotBeAutoConverted(config) {
|
|
338
|
+
if (typeof config.ref === "string" && ReactCurrentOwner.current && config.__self && ReactCurrentOwner.current.stateNode !== config.__self) {
|
|
339
|
+
var componentName = getComponentNameFromType(ReactCurrentOwner.current.type);
|
|
340
|
+
if (!didWarnAboutStringRefs[componentName]) {
|
|
341
|
+
error("Component \"%s\" contains the string ref \"%s\". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref", componentName, config.ref);
|
|
342
|
+
didWarnAboutStringRefs[componentName] = true;
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
/**
|
|
347
|
+
* Factory method to create a new React element. This no longer adheres to
|
|
348
|
+
* the class pattern, so do not use new to call it. Also, instanceof check
|
|
349
|
+
* will not work. Instead test $$typeof field against Symbol.for('react.element') to check
|
|
350
|
+
* if something is a React Element.
|
|
351
|
+
*
|
|
352
|
+
* @param {*} type
|
|
353
|
+
* @param {*} props
|
|
354
|
+
* @param {*} key
|
|
355
|
+
* @param {string|object} ref
|
|
356
|
+
* @param {*} owner
|
|
357
|
+
* @param {*} self A *temporary* helper to detect places where `this` is
|
|
358
|
+
* different from the `owner` when React.createElement is called, so that we
|
|
359
|
+
* can warn. We want to get rid of owner and replace string `ref`s with arrow
|
|
360
|
+
* functions, and as long as `this` and owner are the same, there will be no
|
|
361
|
+
* change in behavior.
|
|
362
|
+
* @param {*} source An annotation object (added by a transpiler or otherwise)
|
|
363
|
+
* indicating filename, line number, and/or other information.
|
|
364
|
+
* @internal
|
|
365
|
+
*/
|
|
366
|
+
var ReactElement = function(type, key, ref, self, source, owner, props) {
|
|
367
|
+
var element = {
|
|
368
|
+
$$typeof: REACT_ELEMENT_TYPE,
|
|
369
|
+
type,
|
|
370
|
+
key,
|
|
371
|
+
ref,
|
|
372
|
+
props,
|
|
373
|
+
_owner: owner
|
|
374
|
+
};
|
|
375
|
+
element._store = {};
|
|
376
|
+
Object.defineProperty(element._store, "validated", {
|
|
377
|
+
configurable: false,
|
|
378
|
+
enumerable: false,
|
|
379
|
+
writable: true,
|
|
380
|
+
value: false
|
|
381
|
+
});
|
|
382
|
+
Object.defineProperty(element, "_self", {
|
|
383
|
+
configurable: false,
|
|
384
|
+
enumerable: false,
|
|
385
|
+
writable: false,
|
|
386
|
+
value: self
|
|
387
|
+
});
|
|
388
|
+
Object.defineProperty(element, "_source", {
|
|
389
|
+
configurable: false,
|
|
390
|
+
enumerable: false,
|
|
391
|
+
writable: false,
|
|
392
|
+
value: source
|
|
393
|
+
});
|
|
394
|
+
if (Object.freeze) {
|
|
395
|
+
Object.freeze(element.props);
|
|
396
|
+
Object.freeze(element);
|
|
397
|
+
}
|
|
398
|
+
return element;
|
|
399
|
+
};
|
|
400
|
+
/**
|
|
401
|
+
* Create and return a new ReactElement of the given type.
|
|
402
|
+
* See https://reactjs.org/docs/react-api.html#createelement
|
|
403
|
+
*/
|
|
404
|
+
function createElement(type, config, children) {
|
|
405
|
+
var propName;
|
|
406
|
+
var props = {};
|
|
407
|
+
var key = null;
|
|
408
|
+
var ref = null;
|
|
409
|
+
var self = null;
|
|
410
|
+
var source = null;
|
|
411
|
+
if (config != null) {
|
|
412
|
+
if (hasValidRef(config)) {
|
|
413
|
+
ref = config.ref;
|
|
414
|
+
warnIfStringRefCannotBeAutoConverted(config);
|
|
415
|
+
}
|
|
416
|
+
if (hasValidKey(config)) {
|
|
417
|
+
checkKeyStringCoercion(config.key);
|
|
418
|
+
key = "" + config.key;
|
|
419
|
+
}
|
|
420
|
+
self = config.__self === void 0 ? null : config.__self;
|
|
421
|
+
source = config.__source === void 0 ? null : config.__source;
|
|
422
|
+
for (propName in config) if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) props[propName] = config[propName];
|
|
423
|
+
}
|
|
424
|
+
var childrenLength = arguments.length - 2;
|
|
425
|
+
if (childrenLength === 1) props.children = children;
|
|
426
|
+
else if (childrenLength > 1) {
|
|
427
|
+
var childArray = Array(childrenLength);
|
|
428
|
+
for (var i = 0; i < childrenLength; i++) childArray[i] = arguments[i + 2];
|
|
429
|
+
if (Object.freeze) Object.freeze(childArray);
|
|
430
|
+
props.children = childArray;
|
|
431
|
+
}
|
|
432
|
+
if (type && type.defaultProps) {
|
|
433
|
+
var defaultProps = type.defaultProps;
|
|
434
|
+
for (propName in defaultProps) if (props[propName] === void 0) props[propName] = defaultProps[propName];
|
|
435
|
+
}
|
|
436
|
+
if (key || ref) {
|
|
437
|
+
var displayName = typeof type === "function" ? type.displayName || type.name || "Unknown" : type;
|
|
438
|
+
if (key) defineKeyPropWarningGetter(props, displayName);
|
|
439
|
+
if (ref) defineRefPropWarningGetter(props, displayName);
|
|
440
|
+
}
|
|
441
|
+
return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);
|
|
442
|
+
}
|
|
443
|
+
function cloneAndReplaceKey(oldElement, newKey) {
|
|
444
|
+
return ReactElement(oldElement.type, newKey, oldElement.ref, oldElement._self, oldElement._source, oldElement._owner, oldElement.props);
|
|
445
|
+
}
|
|
446
|
+
/**
|
|
447
|
+
* Clone and return a new ReactElement using element as the starting point.
|
|
448
|
+
* See https://reactjs.org/docs/react-api.html#cloneelement
|
|
449
|
+
*/
|
|
450
|
+
function cloneElement(element, config, children) {
|
|
451
|
+
if (element === null || element === void 0) throw new Error("React.cloneElement(...): The argument must be a React element, but you passed " + element + ".");
|
|
452
|
+
var propName;
|
|
453
|
+
var props = assign({}, element.props);
|
|
454
|
+
var key = element.key;
|
|
455
|
+
var ref = element.ref;
|
|
456
|
+
var self = element._self;
|
|
457
|
+
var source = element._source;
|
|
458
|
+
var owner = element._owner;
|
|
459
|
+
if (config != null) {
|
|
460
|
+
if (hasValidRef(config)) {
|
|
461
|
+
ref = config.ref;
|
|
462
|
+
owner = ReactCurrentOwner.current;
|
|
463
|
+
}
|
|
464
|
+
if (hasValidKey(config)) {
|
|
465
|
+
checkKeyStringCoercion(config.key);
|
|
466
|
+
key = "" + config.key;
|
|
467
|
+
}
|
|
468
|
+
var defaultProps;
|
|
469
|
+
if (element.type && element.type.defaultProps) defaultProps = element.type.defaultProps;
|
|
470
|
+
for (propName in config) if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) if (config[propName] === void 0 && defaultProps !== void 0) props[propName] = defaultProps[propName];
|
|
471
|
+
else props[propName] = config[propName];
|
|
472
|
+
}
|
|
473
|
+
var childrenLength = arguments.length - 2;
|
|
474
|
+
if (childrenLength === 1) props.children = children;
|
|
475
|
+
else if (childrenLength > 1) {
|
|
476
|
+
var childArray = Array(childrenLength);
|
|
477
|
+
for (var i = 0; i < childrenLength; i++) childArray[i] = arguments[i + 2];
|
|
478
|
+
props.children = childArray;
|
|
479
|
+
}
|
|
480
|
+
return ReactElement(element.type, key, ref, self, source, owner, props);
|
|
481
|
+
}
|
|
482
|
+
/**
|
|
483
|
+
* Verifies the object is a ReactElement.
|
|
484
|
+
* See https://reactjs.org/docs/react-api.html#isvalidelement
|
|
485
|
+
* @param {?object} object
|
|
486
|
+
* @return {boolean} True if `object` is a ReactElement.
|
|
487
|
+
* @final
|
|
488
|
+
*/
|
|
489
|
+
function isValidElement(object) {
|
|
490
|
+
return typeof object === "object" && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
|
|
491
|
+
}
|
|
492
|
+
var SEPARATOR = ".";
|
|
493
|
+
var SUBSEPARATOR = ":";
|
|
494
|
+
/**
|
|
495
|
+
* Escape and wrap key so it is safe to use as a reactid
|
|
496
|
+
*
|
|
497
|
+
* @param {string} key to be escaped.
|
|
498
|
+
* @return {string} the escaped key.
|
|
499
|
+
*/
|
|
500
|
+
function escape(key) {
|
|
501
|
+
var escapeRegex = /[=:]/g;
|
|
502
|
+
var escaperLookup = {
|
|
503
|
+
"=": "=0",
|
|
504
|
+
":": "=2"
|
|
505
|
+
};
|
|
506
|
+
return "$" + key.replace(escapeRegex, function(match) {
|
|
507
|
+
return escaperLookup[match];
|
|
508
|
+
});
|
|
509
|
+
}
|
|
510
|
+
/**
|
|
511
|
+
* TODO: Test that a single child and an array with one item have the same key
|
|
512
|
+
* pattern.
|
|
513
|
+
*/
|
|
514
|
+
var didWarnAboutMaps = false;
|
|
515
|
+
var userProvidedKeyEscapeRegex = /\/+/g;
|
|
516
|
+
function escapeUserProvidedKey(text) {
|
|
517
|
+
return text.replace(userProvidedKeyEscapeRegex, "$&/");
|
|
518
|
+
}
|
|
519
|
+
/**
|
|
520
|
+
* Generate a key string that identifies a element within a set.
|
|
521
|
+
*
|
|
522
|
+
* @param {*} element A element that could contain a manual key.
|
|
523
|
+
* @param {number} index Index that is used if a manual key is not provided.
|
|
524
|
+
* @return {string}
|
|
525
|
+
*/
|
|
526
|
+
function getElementKey(element, index) {
|
|
527
|
+
if (typeof element === "object" && element !== null && element.key != null) {
|
|
528
|
+
checkKeyStringCoercion(element.key);
|
|
529
|
+
return escape("" + element.key);
|
|
530
|
+
}
|
|
531
|
+
return index.toString(36);
|
|
532
|
+
}
|
|
533
|
+
function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
|
|
534
|
+
var type = typeof children;
|
|
535
|
+
if (type === "undefined" || type === "boolean") children = null;
|
|
536
|
+
var invokeCallback = false;
|
|
537
|
+
if (children === null) invokeCallback = true;
|
|
538
|
+
else switch (type) {
|
|
539
|
+
case "string":
|
|
540
|
+
case "number":
|
|
541
|
+
invokeCallback = true;
|
|
542
|
+
break;
|
|
543
|
+
case "object": switch (children.$$typeof) {
|
|
544
|
+
case REACT_ELEMENT_TYPE:
|
|
545
|
+
case REACT_PORTAL_TYPE: invokeCallback = true;
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
if (invokeCallback) {
|
|
549
|
+
var _child = children;
|
|
550
|
+
var mappedChild = callback(_child);
|
|
551
|
+
var childKey = nameSoFar === "" ? SEPARATOR + getElementKey(_child, 0) : nameSoFar;
|
|
552
|
+
if (isArray(mappedChild)) {
|
|
553
|
+
var escapedChildKey = "";
|
|
554
|
+
if (childKey != null) escapedChildKey = escapeUserProvidedKey(childKey) + "/";
|
|
555
|
+
mapIntoArray(mappedChild, array, escapedChildKey, "", function(c) {
|
|
556
|
+
return c;
|
|
557
|
+
});
|
|
558
|
+
} else if (mappedChild != null) {
|
|
559
|
+
if (isValidElement(mappedChild)) {
|
|
560
|
+
if (mappedChild.key && (!_child || _child.key !== mappedChild.key)) checkKeyStringCoercion(mappedChild.key);
|
|
561
|
+
mappedChild = cloneAndReplaceKey(mappedChild, escapedPrefix + (mappedChild.key && (!_child || _child.key !== mappedChild.key) ? escapeUserProvidedKey("" + mappedChild.key) + "/" : "") + childKey);
|
|
562
|
+
}
|
|
563
|
+
array.push(mappedChild);
|
|
564
|
+
}
|
|
565
|
+
return 1;
|
|
566
|
+
}
|
|
567
|
+
var child;
|
|
568
|
+
var nextName;
|
|
569
|
+
var subtreeCount = 0;
|
|
570
|
+
var nextNamePrefix = nameSoFar === "" ? SEPARATOR : nameSoFar + SUBSEPARATOR;
|
|
571
|
+
if (isArray(children)) for (var i = 0; i < children.length; i++) {
|
|
572
|
+
child = children[i];
|
|
573
|
+
nextName = nextNamePrefix + getElementKey(child, i);
|
|
574
|
+
subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback);
|
|
575
|
+
}
|
|
576
|
+
else {
|
|
577
|
+
var iteratorFn = getIteratorFn(children);
|
|
578
|
+
if (typeof iteratorFn === "function") {
|
|
579
|
+
var iterableChildren = children;
|
|
580
|
+
if (iteratorFn === iterableChildren.entries) {
|
|
581
|
+
if (!didWarnAboutMaps) warn("Using Maps as children is not supported. Use an array of keyed ReactElements instead.");
|
|
582
|
+
didWarnAboutMaps = true;
|
|
583
|
+
}
|
|
584
|
+
var iterator = iteratorFn.call(iterableChildren);
|
|
585
|
+
var step;
|
|
586
|
+
var ii = 0;
|
|
587
|
+
while (!(step = iterator.next()).done) {
|
|
588
|
+
child = step.value;
|
|
589
|
+
nextName = nextNamePrefix + getElementKey(child, ii++);
|
|
590
|
+
subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback);
|
|
591
|
+
}
|
|
592
|
+
} else if (type === "object") {
|
|
593
|
+
var childrenString = String(children);
|
|
594
|
+
throw new Error("Objects are not valid as a React child (found: " + (childrenString === "[object Object]" ? "object with keys {" + Object.keys(children).join(", ") + "}" : childrenString) + "). If you meant to render a collection of children, use an array instead.");
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
return subtreeCount;
|
|
598
|
+
}
|
|
599
|
+
/**
|
|
600
|
+
* Maps children that are typically specified as `props.children`.
|
|
601
|
+
*
|
|
602
|
+
* See https://reactjs.org/docs/react-api.html#reactchildrenmap
|
|
603
|
+
*
|
|
604
|
+
* The provided mapFunction(child, index) will be called for each
|
|
605
|
+
* leaf child.
|
|
606
|
+
*
|
|
607
|
+
* @param {?*} children Children tree container.
|
|
608
|
+
* @param {function(*, int)} func The map function.
|
|
609
|
+
* @param {*} context Context for mapFunction.
|
|
610
|
+
* @return {object} Object containing the ordered map of results.
|
|
611
|
+
*/
|
|
612
|
+
function mapChildren(children, func, context) {
|
|
613
|
+
if (children == null) return children;
|
|
614
|
+
var result = [];
|
|
615
|
+
var count = 0;
|
|
616
|
+
mapIntoArray(children, result, "", "", function(child) {
|
|
617
|
+
return func.call(context, child, count++);
|
|
618
|
+
});
|
|
619
|
+
return result;
|
|
620
|
+
}
|
|
621
|
+
/**
|
|
622
|
+
* Count the number of children that are typically specified as
|
|
623
|
+
* `props.children`.
|
|
624
|
+
*
|
|
625
|
+
* See https://reactjs.org/docs/react-api.html#reactchildrencount
|
|
626
|
+
*
|
|
627
|
+
* @param {?*} children Children tree container.
|
|
628
|
+
* @return {number} The number of children.
|
|
629
|
+
*/
|
|
630
|
+
function countChildren(children) {
|
|
631
|
+
var n = 0;
|
|
632
|
+
mapChildren(children, function() {
|
|
633
|
+
n++;
|
|
634
|
+
});
|
|
635
|
+
return n;
|
|
636
|
+
}
|
|
637
|
+
/**
|
|
638
|
+
* Iterates through children that are typically specified as `props.children`.
|
|
639
|
+
*
|
|
640
|
+
* See https://reactjs.org/docs/react-api.html#reactchildrenforeach
|
|
641
|
+
*
|
|
642
|
+
* The provided forEachFunc(child, index) will be called for each
|
|
643
|
+
* leaf child.
|
|
644
|
+
*
|
|
645
|
+
* @param {?*} children Children tree container.
|
|
646
|
+
* @param {function(*, int)} forEachFunc
|
|
647
|
+
* @param {*} forEachContext Context for forEachContext.
|
|
648
|
+
*/
|
|
649
|
+
function forEachChildren(children, forEachFunc, forEachContext) {
|
|
650
|
+
mapChildren(children, function() {
|
|
651
|
+
forEachFunc.apply(this, arguments);
|
|
652
|
+
}, forEachContext);
|
|
653
|
+
}
|
|
654
|
+
/**
|
|
655
|
+
* Flatten a children object (typically specified as `props.children`) and
|
|
656
|
+
* return an array with appropriately re-keyed children.
|
|
657
|
+
*
|
|
658
|
+
* See https://reactjs.org/docs/react-api.html#reactchildrentoarray
|
|
659
|
+
*/
|
|
660
|
+
function toArray(children) {
|
|
661
|
+
return mapChildren(children, function(child) {
|
|
662
|
+
return child;
|
|
663
|
+
}) || [];
|
|
664
|
+
}
|
|
665
|
+
/**
|
|
666
|
+
* Returns the first child in a collection of children and verifies that there
|
|
667
|
+
* is only one child in the collection.
|
|
668
|
+
*
|
|
669
|
+
* See https://reactjs.org/docs/react-api.html#reactchildrenonly
|
|
670
|
+
*
|
|
671
|
+
* The current implementation of this function assumes that a single child gets
|
|
672
|
+
* passed without a wrapper, but the purpose of this helper function is to
|
|
673
|
+
* abstract away the particular structure of children.
|
|
674
|
+
*
|
|
675
|
+
* @param {?object} children Child collection structure.
|
|
676
|
+
* @return {ReactElement} The first and only `ReactElement` contained in the
|
|
677
|
+
* structure.
|
|
678
|
+
*/
|
|
679
|
+
function onlyChild(children) {
|
|
680
|
+
if (!isValidElement(children)) throw new Error("React.Children.only expected to receive a single React element child.");
|
|
681
|
+
return children;
|
|
682
|
+
}
|
|
683
|
+
function createContext(defaultValue) {
|
|
684
|
+
var context = {
|
|
685
|
+
$$typeof: REACT_CONTEXT_TYPE,
|
|
686
|
+
_currentValue: defaultValue,
|
|
687
|
+
_currentValue2: defaultValue,
|
|
688
|
+
_threadCount: 0,
|
|
689
|
+
Provider: null,
|
|
690
|
+
Consumer: null,
|
|
691
|
+
_defaultValue: null,
|
|
692
|
+
_globalName: null
|
|
693
|
+
};
|
|
694
|
+
context.Provider = {
|
|
695
|
+
$$typeof: REACT_PROVIDER_TYPE,
|
|
696
|
+
_context: context
|
|
697
|
+
};
|
|
698
|
+
var hasWarnedAboutUsingNestedContextConsumers = false;
|
|
699
|
+
var hasWarnedAboutUsingConsumerProvider = false;
|
|
700
|
+
var hasWarnedAboutDisplayNameOnConsumer = false;
|
|
701
|
+
var Consumer = {
|
|
702
|
+
$$typeof: REACT_CONTEXT_TYPE,
|
|
703
|
+
_context: context
|
|
704
|
+
};
|
|
705
|
+
Object.defineProperties(Consumer, {
|
|
706
|
+
Provider: {
|
|
707
|
+
get: function() {
|
|
708
|
+
if (!hasWarnedAboutUsingConsumerProvider) {
|
|
709
|
+
hasWarnedAboutUsingConsumerProvider = true;
|
|
710
|
+
error("Rendering <Context.Consumer.Provider> is not supported and will be removed in a future major release. Did you mean to render <Context.Provider> instead?");
|
|
711
|
+
}
|
|
712
|
+
return context.Provider;
|
|
713
|
+
},
|
|
714
|
+
set: function(_Provider) {
|
|
715
|
+
context.Provider = _Provider;
|
|
716
|
+
}
|
|
717
|
+
},
|
|
718
|
+
_currentValue: {
|
|
719
|
+
get: function() {
|
|
720
|
+
return context._currentValue;
|
|
721
|
+
},
|
|
722
|
+
set: function(_currentValue) {
|
|
723
|
+
context._currentValue = _currentValue;
|
|
724
|
+
}
|
|
725
|
+
},
|
|
726
|
+
_currentValue2: {
|
|
727
|
+
get: function() {
|
|
728
|
+
return context._currentValue2;
|
|
729
|
+
},
|
|
730
|
+
set: function(_currentValue2) {
|
|
731
|
+
context._currentValue2 = _currentValue2;
|
|
732
|
+
}
|
|
733
|
+
},
|
|
734
|
+
_threadCount: {
|
|
735
|
+
get: function() {
|
|
736
|
+
return context._threadCount;
|
|
737
|
+
},
|
|
738
|
+
set: function(_threadCount) {
|
|
739
|
+
context._threadCount = _threadCount;
|
|
740
|
+
}
|
|
741
|
+
},
|
|
742
|
+
Consumer: { get: function() {
|
|
743
|
+
if (!hasWarnedAboutUsingNestedContextConsumers) {
|
|
744
|
+
hasWarnedAboutUsingNestedContextConsumers = true;
|
|
745
|
+
error("Rendering <Context.Consumer.Consumer> is not supported and will be removed in a future major release. Did you mean to render <Context.Consumer> instead?");
|
|
746
|
+
}
|
|
747
|
+
return context.Consumer;
|
|
748
|
+
} },
|
|
749
|
+
displayName: {
|
|
750
|
+
get: function() {
|
|
751
|
+
return context.displayName;
|
|
752
|
+
},
|
|
753
|
+
set: function(displayName) {
|
|
754
|
+
if (!hasWarnedAboutDisplayNameOnConsumer) {
|
|
755
|
+
warn("Setting `displayName` on Context.Consumer has no effect. You should set it directly on the context with Context.displayName = '%s'.", displayName);
|
|
756
|
+
hasWarnedAboutDisplayNameOnConsumer = true;
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
});
|
|
761
|
+
context.Consumer = Consumer;
|
|
762
|
+
context._currentRenderer = null;
|
|
763
|
+
context._currentRenderer2 = null;
|
|
764
|
+
return context;
|
|
765
|
+
}
|
|
766
|
+
var Uninitialized = -1;
|
|
767
|
+
var Pending = 0;
|
|
768
|
+
var Resolved = 1;
|
|
769
|
+
var Rejected = 2;
|
|
770
|
+
function lazyInitializer(payload) {
|
|
771
|
+
if (payload._status === Uninitialized) {
|
|
772
|
+
var ctor = payload._result;
|
|
773
|
+
var thenable = ctor();
|
|
774
|
+
thenable.then(function(moduleObject$1) {
|
|
775
|
+
if (payload._status === Pending || payload._status === Uninitialized) {
|
|
776
|
+
var resolved = payload;
|
|
777
|
+
resolved._status = Resolved;
|
|
778
|
+
resolved._result = moduleObject$1;
|
|
779
|
+
}
|
|
780
|
+
}, function(error$1) {
|
|
781
|
+
if (payload._status === Pending || payload._status === Uninitialized) {
|
|
782
|
+
var rejected = payload;
|
|
783
|
+
rejected._status = Rejected;
|
|
784
|
+
rejected._result = error$1;
|
|
785
|
+
}
|
|
786
|
+
});
|
|
787
|
+
if (payload._status === Uninitialized) {
|
|
788
|
+
var pending = payload;
|
|
789
|
+
pending._status = Pending;
|
|
790
|
+
pending._result = thenable;
|
|
791
|
+
}
|
|
792
|
+
}
|
|
793
|
+
if (payload._status === Resolved) {
|
|
794
|
+
var moduleObject = payload._result;
|
|
795
|
+
if (moduleObject === void 0) error("lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))\n\nDid you accidentally put curly braces around the import?", moduleObject);
|
|
796
|
+
if (!("default" in moduleObject)) error("lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))", moduleObject);
|
|
797
|
+
return moduleObject.default;
|
|
798
|
+
} else throw payload._result;
|
|
799
|
+
}
|
|
800
|
+
function lazy(ctor) {
|
|
801
|
+
var lazyType = {
|
|
802
|
+
$$typeof: REACT_LAZY_TYPE,
|
|
803
|
+
_payload: {
|
|
804
|
+
_status: Uninitialized,
|
|
805
|
+
_result: ctor
|
|
806
|
+
},
|
|
807
|
+
_init: lazyInitializer
|
|
808
|
+
};
|
|
809
|
+
var defaultProps;
|
|
810
|
+
var propTypes;
|
|
811
|
+
Object.defineProperties(lazyType, {
|
|
812
|
+
defaultProps: {
|
|
813
|
+
configurable: true,
|
|
814
|
+
get: function() {
|
|
815
|
+
return defaultProps;
|
|
816
|
+
},
|
|
817
|
+
set: function(newDefaultProps) {
|
|
818
|
+
error("React.lazy(...): It is not supported to assign `defaultProps` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it.");
|
|
819
|
+
defaultProps = newDefaultProps;
|
|
820
|
+
Object.defineProperty(lazyType, "defaultProps", { enumerable: true });
|
|
821
|
+
}
|
|
822
|
+
},
|
|
823
|
+
propTypes: {
|
|
824
|
+
configurable: true,
|
|
825
|
+
get: function() {
|
|
826
|
+
return propTypes;
|
|
827
|
+
},
|
|
828
|
+
set: function(newPropTypes) {
|
|
829
|
+
error("React.lazy(...): It is not supported to assign `propTypes` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it.");
|
|
830
|
+
propTypes = newPropTypes;
|
|
831
|
+
Object.defineProperty(lazyType, "propTypes", { enumerable: true });
|
|
832
|
+
}
|
|
833
|
+
}
|
|
834
|
+
});
|
|
835
|
+
return lazyType;
|
|
836
|
+
}
|
|
837
|
+
function forwardRef(render) {
|
|
838
|
+
if (render != null && render.$$typeof === REACT_MEMO_TYPE) error("forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...)).");
|
|
839
|
+
else if (typeof render !== "function") error("forwardRef requires a render function but was given %s.", render === null ? "null" : typeof render);
|
|
840
|
+
else if (render.length !== 0 && render.length !== 2) error("forwardRef render functions accept exactly two parameters: props and ref. %s", render.length === 1 ? "Did you forget to use the ref parameter?" : "Any additional parameter will be undefined.");
|
|
841
|
+
if (render != null) {
|
|
842
|
+
if (render.defaultProps != null || render.propTypes != null) error("forwardRef render functions do not support propTypes or defaultProps. Did you accidentally pass a React component?");
|
|
843
|
+
}
|
|
844
|
+
var elementType = {
|
|
845
|
+
$$typeof: REACT_FORWARD_REF_TYPE,
|
|
846
|
+
render
|
|
847
|
+
};
|
|
848
|
+
var ownName;
|
|
849
|
+
Object.defineProperty(elementType, "displayName", {
|
|
850
|
+
enumerable: false,
|
|
851
|
+
configurable: true,
|
|
852
|
+
get: function() {
|
|
853
|
+
return ownName;
|
|
854
|
+
},
|
|
855
|
+
set: function(name) {
|
|
856
|
+
ownName = name;
|
|
857
|
+
if (!render.name && !render.displayName) render.displayName = name;
|
|
858
|
+
}
|
|
859
|
+
});
|
|
860
|
+
return elementType;
|
|
861
|
+
}
|
|
862
|
+
var REACT_MODULE_REFERENCE = Symbol.for("react.module.reference");
|
|
863
|
+
function isValidElementType(type) {
|
|
864
|
+
if (typeof type === "string" || typeof type === "function") return true;
|
|
865
|
+
if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing) return true;
|
|
866
|
+
if (typeof type === "object" && type !== null) {
|
|
867
|
+
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== void 0) return true;
|
|
868
|
+
}
|
|
869
|
+
return false;
|
|
870
|
+
}
|
|
871
|
+
function memo(type, compare) {
|
|
872
|
+
if (!isValidElementType(type)) error("memo: The first argument must be a component. Instead received: %s", type === null ? "null" : typeof type);
|
|
873
|
+
var elementType = {
|
|
874
|
+
$$typeof: REACT_MEMO_TYPE,
|
|
875
|
+
type,
|
|
876
|
+
compare: compare === void 0 ? null : compare
|
|
877
|
+
};
|
|
878
|
+
var ownName;
|
|
879
|
+
Object.defineProperty(elementType, "displayName", {
|
|
880
|
+
enumerable: false,
|
|
881
|
+
configurable: true,
|
|
882
|
+
get: function() {
|
|
883
|
+
return ownName;
|
|
884
|
+
},
|
|
885
|
+
set: function(name) {
|
|
886
|
+
ownName = name;
|
|
887
|
+
if (!type.name && !type.displayName) type.displayName = name;
|
|
888
|
+
}
|
|
889
|
+
});
|
|
890
|
+
return elementType;
|
|
891
|
+
}
|
|
892
|
+
function resolveDispatcher() {
|
|
893
|
+
var dispatcher = ReactCurrentDispatcher.current;
|
|
894
|
+
if (dispatcher === null) error("Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.");
|
|
895
|
+
return dispatcher;
|
|
896
|
+
}
|
|
897
|
+
function useContext(Context) {
|
|
898
|
+
var dispatcher = resolveDispatcher();
|
|
899
|
+
if (Context._context !== void 0) {
|
|
900
|
+
var realContext = Context._context;
|
|
901
|
+
if (realContext.Consumer === Context) error("Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be removed in a future major release. Did you mean to call useContext(Context) instead?");
|
|
902
|
+
else if (realContext.Provider === Context) error("Calling useContext(Context.Provider) is not supported. Did you mean to call useContext(Context) instead?");
|
|
903
|
+
}
|
|
904
|
+
return dispatcher.useContext(Context);
|
|
905
|
+
}
|
|
906
|
+
function useState(initialState) {
|
|
907
|
+
return resolveDispatcher().useState(initialState);
|
|
908
|
+
}
|
|
909
|
+
function useReducer(reducer, initialArg, init) {
|
|
910
|
+
return resolveDispatcher().useReducer(reducer, initialArg, init);
|
|
911
|
+
}
|
|
912
|
+
function useRef(initialValue) {
|
|
913
|
+
return resolveDispatcher().useRef(initialValue);
|
|
914
|
+
}
|
|
915
|
+
function useEffect(create, deps) {
|
|
916
|
+
return resolveDispatcher().useEffect(create, deps);
|
|
917
|
+
}
|
|
918
|
+
function useInsertionEffect(create, deps) {
|
|
919
|
+
return resolveDispatcher().useInsertionEffect(create, deps);
|
|
920
|
+
}
|
|
921
|
+
function useLayoutEffect(create, deps) {
|
|
922
|
+
return resolveDispatcher().useLayoutEffect(create, deps);
|
|
923
|
+
}
|
|
924
|
+
function useCallback(callback, deps) {
|
|
925
|
+
return resolveDispatcher().useCallback(callback, deps);
|
|
926
|
+
}
|
|
927
|
+
function useMemo(create, deps) {
|
|
928
|
+
return resolveDispatcher().useMemo(create, deps);
|
|
929
|
+
}
|
|
930
|
+
function useImperativeHandle(ref, create, deps) {
|
|
931
|
+
return resolveDispatcher().useImperativeHandle(ref, create, deps);
|
|
932
|
+
}
|
|
933
|
+
function useDebugValue(value, formatterFn) {
|
|
934
|
+
return resolveDispatcher().useDebugValue(value, formatterFn);
|
|
935
|
+
}
|
|
936
|
+
function useTransition() {
|
|
937
|
+
return resolveDispatcher().useTransition();
|
|
938
|
+
}
|
|
939
|
+
function useDeferredValue(value) {
|
|
940
|
+
return resolveDispatcher().useDeferredValue(value);
|
|
941
|
+
}
|
|
942
|
+
function useId() {
|
|
943
|
+
return resolveDispatcher().useId();
|
|
944
|
+
}
|
|
945
|
+
function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
|
|
946
|
+
return resolveDispatcher().useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot);
|
|
947
|
+
}
|
|
948
|
+
var disabledDepth = 0;
|
|
949
|
+
var prevLog;
|
|
950
|
+
var prevInfo;
|
|
951
|
+
var prevWarn;
|
|
952
|
+
var prevError;
|
|
953
|
+
var prevGroup;
|
|
954
|
+
var prevGroupCollapsed;
|
|
955
|
+
var prevGroupEnd;
|
|
956
|
+
function disabledLog() {}
|
|
957
|
+
disabledLog.__reactDisabledLog = true;
|
|
958
|
+
function disableLogs() {
|
|
959
|
+
if (disabledDepth === 0) {
|
|
960
|
+
prevLog = console.log;
|
|
961
|
+
prevInfo = console.info;
|
|
962
|
+
prevWarn = console.warn;
|
|
963
|
+
prevError = console.error;
|
|
964
|
+
prevGroup = console.group;
|
|
965
|
+
prevGroupCollapsed = console.groupCollapsed;
|
|
966
|
+
prevGroupEnd = console.groupEnd;
|
|
967
|
+
var props = {
|
|
968
|
+
configurable: true,
|
|
969
|
+
enumerable: true,
|
|
970
|
+
value: disabledLog,
|
|
971
|
+
writable: true
|
|
972
|
+
};
|
|
973
|
+
Object.defineProperties(console, {
|
|
974
|
+
info: props,
|
|
975
|
+
log: props,
|
|
976
|
+
warn: props,
|
|
977
|
+
error: props,
|
|
978
|
+
group: props,
|
|
979
|
+
groupCollapsed: props,
|
|
980
|
+
groupEnd: props
|
|
981
|
+
});
|
|
982
|
+
}
|
|
983
|
+
disabledDepth++;
|
|
984
|
+
}
|
|
985
|
+
function reenableLogs() {
|
|
986
|
+
disabledDepth--;
|
|
987
|
+
if (disabledDepth === 0) {
|
|
988
|
+
var props = {
|
|
989
|
+
configurable: true,
|
|
990
|
+
enumerable: true,
|
|
991
|
+
writable: true
|
|
992
|
+
};
|
|
993
|
+
Object.defineProperties(console, {
|
|
994
|
+
log: assign({}, props, { value: prevLog }),
|
|
995
|
+
info: assign({}, props, { value: prevInfo }),
|
|
996
|
+
warn: assign({}, props, { value: prevWarn }),
|
|
997
|
+
error: assign({}, props, { value: prevError }),
|
|
998
|
+
group: assign({}, props, { value: prevGroup }),
|
|
999
|
+
groupCollapsed: assign({}, props, { value: prevGroupCollapsed }),
|
|
1000
|
+
groupEnd: assign({}, props, { value: prevGroupEnd })
|
|
1001
|
+
});
|
|
1002
|
+
}
|
|
1003
|
+
if (disabledDepth < 0) error("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
|
|
1004
|
+
}
|
|
1005
|
+
var ReactCurrentDispatcher$1 = ReactSharedInternals.ReactCurrentDispatcher;
|
|
1006
|
+
var prefix;
|
|
1007
|
+
function describeBuiltInComponentFrame(name, source, ownerFn) {
|
|
1008
|
+
if (prefix === void 0) try {
|
|
1009
|
+
throw Error();
|
|
1010
|
+
} catch (x) {
|
|
1011
|
+
var match = x.stack.trim().match(/\n( *(at )?)/);
|
|
1012
|
+
prefix = match && match[1] || "";
|
|
1013
|
+
}
|
|
1014
|
+
return "\n" + prefix + name;
|
|
1015
|
+
}
|
|
1016
|
+
var reentry = false;
|
|
1017
|
+
var componentFrameCache = new (typeof WeakMap === "function" ? WeakMap : Map)();
|
|
1018
|
+
function describeNativeComponentFrame(fn, construct) {
|
|
1019
|
+
if (!fn || reentry) return "";
|
|
1020
|
+
var frame = componentFrameCache.get(fn);
|
|
1021
|
+
if (frame !== void 0) return frame;
|
|
1022
|
+
var control;
|
|
1023
|
+
reentry = true;
|
|
1024
|
+
var previousPrepareStackTrace = Error.prepareStackTrace;
|
|
1025
|
+
Error.prepareStackTrace = void 0;
|
|
1026
|
+
var previousDispatcher = ReactCurrentDispatcher$1.current;
|
|
1027
|
+
ReactCurrentDispatcher$1.current = null;
|
|
1028
|
+
disableLogs();
|
|
1029
|
+
try {
|
|
1030
|
+
if (construct) {
|
|
1031
|
+
var Fake = function() {
|
|
1032
|
+
throw Error();
|
|
1033
|
+
};
|
|
1034
|
+
Object.defineProperty(Fake.prototype, "props", { set: function() {
|
|
1035
|
+
throw Error();
|
|
1036
|
+
} });
|
|
1037
|
+
if (typeof Reflect === "object" && Reflect.construct) {
|
|
1038
|
+
try {
|
|
1039
|
+
Reflect.construct(Fake, []);
|
|
1040
|
+
} catch (x) {
|
|
1041
|
+
control = x;
|
|
1042
|
+
}
|
|
1043
|
+
Reflect.construct(fn, [], Fake);
|
|
1044
|
+
} else {
|
|
1045
|
+
try {
|
|
1046
|
+
Fake.call();
|
|
1047
|
+
} catch (x) {
|
|
1048
|
+
control = x;
|
|
1049
|
+
}
|
|
1050
|
+
fn.call(Fake.prototype);
|
|
1051
|
+
}
|
|
1052
|
+
} else {
|
|
1053
|
+
try {
|
|
1054
|
+
throw Error();
|
|
1055
|
+
} catch (x) {
|
|
1056
|
+
control = x;
|
|
1057
|
+
}
|
|
1058
|
+
fn();
|
|
1059
|
+
}
|
|
1060
|
+
} catch (sample) {
|
|
1061
|
+
if (sample && control && typeof sample.stack === "string") {
|
|
1062
|
+
var sampleLines = sample.stack.split("\n");
|
|
1063
|
+
var controlLines = control.stack.split("\n");
|
|
1064
|
+
var s = sampleLines.length - 1;
|
|
1065
|
+
var c = controlLines.length - 1;
|
|
1066
|
+
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) c--;
|
|
1067
|
+
for (; s >= 1 && c >= 0; s--, c--) if (sampleLines[s] !== controlLines[c]) {
|
|
1068
|
+
if (s !== 1 || c !== 1) do {
|
|
1069
|
+
s--;
|
|
1070
|
+
c--;
|
|
1071
|
+
if (c < 0 || sampleLines[s] !== controlLines[c]) {
|
|
1072
|
+
var _frame = "\n" + sampleLines[s].replace(" at new ", " at ");
|
|
1073
|
+
if (fn.displayName && _frame.includes("<anonymous>")) _frame = _frame.replace("<anonymous>", fn.displayName);
|
|
1074
|
+
if (typeof fn === "function") componentFrameCache.set(fn, _frame);
|
|
1075
|
+
return _frame;
|
|
1076
|
+
}
|
|
1077
|
+
} while (s >= 1 && c >= 0);
|
|
1078
|
+
break;
|
|
1079
|
+
}
|
|
1080
|
+
}
|
|
1081
|
+
} finally {
|
|
1082
|
+
reentry = false;
|
|
1083
|
+
ReactCurrentDispatcher$1.current = previousDispatcher;
|
|
1084
|
+
reenableLogs();
|
|
1085
|
+
Error.prepareStackTrace = previousPrepareStackTrace;
|
|
1086
|
+
}
|
|
1087
|
+
var name = fn ? fn.displayName || fn.name : "";
|
|
1088
|
+
var syntheticFrame = name ? describeBuiltInComponentFrame(name) : "";
|
|
1089
|
+
if (typeof fn === "function") componentFrameCache.set(fn, syntheticFrame);
|
|
1090
|
+
return syntheticFrame;
|
|
1091
|
+
}
|
|
1092
|
+
function describeFunctionComponentFrame(fn, source, ownerFn) {
|
|
1093
|
+
return describeNativeComponentFrame(fn, false);
|
|
1094
|
+
}
|
|
1095
|
+
function shouldConstruct(Component$1) {
|
|
1096
|
+
var prototype = Component$1.prototype;
|
|
1097
|
+
return !!(prototype && prototype.isReactComponent);
|
|
1098
|
+
}
|
|
1099
|
+
function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
|
|
1100
|
+
if (type == null) return "";
|
|
1101
|
+
if (typeof type === "function") return describeNativeComponentFrame(type, shouldConstruct(type));
|
|
1102
|
+
if (typeof type === "string") return describeBuiltInComponentFrame(type);
|
|
1103
|
+
switch (type) {
|
|
1104
|
+
case REACT_SUSPENSE_TYPE: return describeBuiltInComponentFrame("Suspense");
|
|
1105
|
+
case REACT_SUSPENSE_LIST_TYPE: return describeBuiltInComponentFrame("SuspenseList");
|
|
1106
|
+
}
|
|
1107
|
+
if (typeof type === "object") switch (type.$$typeof) {
|
|
1108
|
+
case REACT_FORWARD_REF_TYPE: return describeFunctionComponentFrame(type.render);
|
|
1109
|
+
case REACT_MEMO_TYPE: return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
|
|
1110
|
+
case REACT_LAZY_TYPE:
|
|
1111
|
+
var lazyComponent = type;
|
|
1112
|
+
var payload = lazyComponent._payload;
|
|
1113
|
+
var init = lazyComponent._init;
|
|
1114
|
+
try {
|
|
1115
|
+
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
|
|
1116
|
+
} catch (x) {}
|
|
1117
|
+
}
|
|
1118
|
+
return "";
|
|
1119
|
+
}
|
|
1120
|
+
var loggedTypeFailures = {};
|
|
1121
|
+
var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
|
|
1122
|
+
function setCurrentlyValidatingElement(element) {
|
|
1123
|
+
if (element) {
|
|
1124
|
+
var owner = element._owner;
|
|
1125
|
+
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
|
|
1126
|
+
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
|
|
1127
|
+
} else ReactDebugCurrentFrame$1.setExtraStackFrame(null);
|
|
1128
|
+
}
|
|
1129
|
+
function checkPropTypes(typeSpecs, values, location, componentName, element) {
|
|
1130
|
+
var has = Function.call.bind(hasOwnProperty);
|
|
1131
|
+
for (var typeSpecName in typeSpecs) if (has(typeSpecs, typeSpecName)) {
|
|
1132
|
+
var error$1 = void 0;
|
|
1133
|
+
try {
|
|
1134
|
+
if (typeof typeSpecs[typeSpecName] !== "function") {
|
|
1135
|
+
var err = Error((componentName || "React class") + ": " + location + " type `" + typeSpecName + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof typeSpecs[typeSpecName] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
|
1136
|
+
err.name = "Invariant Violation";
|
|
1137
|
+
throw err;
|
|
1138
|
+
}
|
|
1139
|
+
error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
|
1140
|
+
} catch (ex) {
|
|
1141
|
+
error$1 = ex;
|
|
1142
|
+
}
|
|
1143
|
+
if (error$1 && !(error$1 instanceof Error)) {
|
|
1144
|
+
setCurrentlyValidatingElement(element);
|
|
1145
|
+
error("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", componentName || "React class", location, typeSpecName, typeof error$1);
|
|
1146
|
+
setCurrentlyValidatingElement(null);
|
|
1147
|
+
}
|
|
1148
|
+
if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
|
|
1149
|
+
loggedTypeFailures[error$1.message] = true;
|
|
1150
|
+
setCurrentlyValidatingElement(element);
|
|
1151
|
+
error("Failed %s type: %s", location, error$1.message);
|
|
1152
|
+
setCurrentlyValidatingElement(null);
|
|
1153
|
+
}
|
|
1154
|
+
}
|
|
1155
|
+
}
|
|
1156
|
+
function setCurrentlyValidatingElement$1(element) {
|
|
1157
|
+
if (element) {
|
|
1158
|
+
var owner = element._owner;
|
|
1159
|
+
setExtraStackFrame(describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null));
|
|
1160
|
+
} else setExtraStackFrame(null);
|
|
1161
|
+
}
|
|
1162
|
+
var propTypesMisspellWarningShown = false;
|
|
1163
|
+
function getDeclarationErrorAddendum() {
|
|
1164
|
+
if (ReactCurrentOwner.current) {
|
|
1165
|
+
var name = getComponentNameFromType(ReactCurrentOwner.current.type);
|
|
1166
|
+
if (name) return "\n\nCheck the render method of `" + name + "`.";
|
|
1167
|
+
}
|
|
1168
|
+
return "";
|
|
1169
|
+
}
|
|
1170
|
+
function getSourceInfoErrorAddendum(source) {
|
|
1171
|
+
if (source !== void 0) {
|
|
1172
|
+
var fileName = source.fileName.replace(/^.*[\\\/]/, "");
|
|
1173
|
+
var lineNumber = source.lineNumber;
|
|
1174
|
+
return "\n\nCheck your code at " + fileName + ":" + lineNumber + ".";
|
|
1175
|
+
}
|
|
1176
|
+
return "";
|
|
1177
|
+
}
|
|
1178
|
+
function getSourceInfoErrorAddendumForProps(elementProps) {
|
|
1179
|
+
if (elementProps !== null && elementProps !== void 0) return getSourceInfoErrorAddendum(elementProps.__source);
|
|
1180
|
+
return "";
|
|
1181
|
+
}
|
|
1182
|
+
/**
|
|
1183
|
+
* Warn if there's no key explicitly set on dynamic arrays of children or
|
|
1184
|
+
* object keys are not valid. This allows us to keep track of children between
|
|
1185
|
+
* updates.
|
|
1186
|
+
*/
|
|
1187
|
+
var ownerHasKeyUseWarning = {};
|
|
1188
|
+
function getCurrentComponentErrorInfo(parentType) {
|
|
1189
|
+
var info = getDeclarationErrorAddendum();
|
|
1190
|
+
if (!info) {
|
|
1191
|
+
var parentName = typeof parentType === "string" ? parentType : parentType.displayName || parentType.name;
|
|
1192
|
+
if (parentName) info = "\n\nCheck the top-level render call using <" + parentName + ">.";
|
|
1193
|
+
}
|
|
1194
|
+
return info;
|
|
1195
|
+
}
|
|
1196
|
+
/**
|
|
1197
|
+
* Warn if the element doesn't have an explicit key assigned to it.
|
|
1198
|
+
* This element is in an array. The array could grow and shrink or be
|
|
1199
|
+
* reordered. All children that haven't already been validated are required to
|
|
1200
|
+
* have a "key" property assigned to it. Error statuses are cached so a warning
|
|
1201
|
+
* will only be shown once.
|
|
1202
|
+
*
|
|
1203
|
+
* @internal
|
|
1204
|
+
* @param {ReactElement} element Element that requires a key.
|
|
1205
|
+
* @param {*} parentType element's parent's type.
|
|
1206
|
+
*/
|
|
1207
|
+
function validateExplicitKey(element, parentType) {
|
|
1208
|
+
if (!element._store || element._store.validated || element.key != null) return;
|
|
1209
|
+
element._store.validated = true;
|
|
1210
|
+
var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);
|
|
1211
|
+
if (ownerHasKeyUseWarning[currentComponentErrorInfo]) return;
|
|
1212
|
+
ownerHasKeyUseWarning[currentComponentErrorInfo] = true;
|
|
1213
|
+
var childOwner = "";
|
|
1214
|
+
if (element && element._owner && element._owner !== ReactCurrentOwner.current) childOwner = " It was passed a child from " + getComponentNameFromType(element._owner.type) + ".";
|
|
1215
|
+
setCurrentlyValidatingElement$1(element);
|
|
1216
|
+
error("Each child in a list should have a unique \"key\" prop.%s%s See https://reactjs.org/link/warning-keys for more information.", currentComponentErrorInfo, childOwner);
|
|
1217
|
+
setCurrentlyValidatingElement$1(null);
|
|
1218
|
+
}
|
|
1219
|
+
/**
|
|
1220
|
+
* Ensure that every element either is passed in a static location, in an
|
|
1221
|
+
* array with an explicit keys property defined, or in an object literal
|
|
1222
|
+
* with valid key property.
|
|
1223
|
+
*
|
|
1224
|
+
* @internal
|
|
1225
|
+
* @param {ReactNode} node Statically passed child of any type.
|
|
1226
|
+
* @param {*} parentType node's parent's type.
|
|
1227
|
+
*/
|
|
1228
|
+
function validateChildKeys(node, parentType) {
|
|
1229
|
+
if (typeof node !== "object") return;
|
|
1230
|
+
if (isArray(node)) for (var i = 0; i < node.length; i++) {
|
|
1231
|
+
var child = node[i];
|
|
1232
|
+
if (isValidElement(child)) validateExplicitKey(child, parentType);
|
|
1233
|
+
}
|
|
1234
|
+
else if (isValidElement(node)) {
|
|
1235
|
+
if (node._store) node._store.validated = true;
|
|
1236
|
+
} else if (node) {
|
|
1237
|
+
var iteratorFn = getIteratorFn(node);
|
|
1238
|
+
if (typeof iteratorFn === "function") {
|
|
1239
|
+
if (iteratorFn !== node.entries) {
|
|
1240
|
+
var iterator = iteratorFn.call(node);
|
|
1241
|
+
var step;
|
|
1242
|
+
while (!(step = iterator.next()).done) if (isValidElement(step.value)) validateExplicitKey(step.value, parentType);
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
}
|
|
1246
|
+
}
|
|
1247
|
+
/**
|
|
1248
|
+
* Given an element, validate that its props follow the propTypes definition,
|
|
1249
|
+
* provided by the type.
|
|
1250
|
+
*
|
|
1251
|
+
* @param {ReactElement} element
|
|
1252
|
+
*/
|
|
1253
|
+
function validatePropTypes(element) {
|
|
1254
|
+
var type = element.type;
|
|
1255
|
+
if (type === null || type === void 0 || typeof type === "string") return;
|
|
1256
|
+
var propTypes;
|
|
1257
|
+
if (typeof type === "function") propTypes = type.propTypes;
|
|
1258
|
+
else if (typeof type === "object" && (type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_MEMO_TYPE)) propTypes = type.propTypes;
|
|
1259
|
+
else return;
|
|
1260
|
+
if (propTypes) {
|
|
1261
|
+
var name = getComponentNameFromType(type);
|
|
1262
|
+
checkPropTypes(propTypes, element.props, "prop", name, element);
|
|
1263
|
+
} else if (type.PropTypes !== void 0 && !propTypesMisspellWarningShown) {
|
|
1264
|
+
propTypesMisspellWarningShown = true;
|
|
1265
|
+
error("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", getComponentNameFromType(type) || "Unknown");
|
|
1266
|
+
}
|
|
1267
|
+
if (typeof type.getDefaultProps === "function" && !type.getDefaultProps.isReactClassApproved) error("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
|
|
1268
|
+
}
|
|
1269
|
+
/**
|
|
1270
|
+
* Given a fragment, validate that it can only be provided with fragment props
|
|
1271
|
+
* @param {ReactElement} fragment
|
|
1272
|
+
*/
|
|
1273
|
+
function validateFragmentProps(fragment) {
|
|
1274
|
+
var keys = Object.keys(fragment.props);
|
|
1275
|
+
for (var i = 0; i < keys.length; i++) {
|
|
1276
|
+
var key = keys[i];
|
|
1277
|
+
if (key !== "children" && key !== "key") {
|
|
1278
|
+
setCurrentlyValidatingElement$1(fragment);
|
|
1279
|
+
error("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", key);
|
|
1280
|
+
setCurrentlyValidatingElement$1(null);
|
|
1281
|
+
break;
|
|
1282
|
+
}
|
|
1283
|
+
}
|
|
1284
|
+
if (fragment.ref !== null) {
|
|
1285
|
+
setCurrentlyValidatingElement$1(fragment);
|
|
1286
|
+
error("Invalid attribute `ref` supplied to `React.Fragment`.");
|
|
1287
|
+
setCurrentlyValidatingElement$1(null);
|
|
1288
|
+
}
|
|
1289
|
+
}
|
|
1290
|
+
function createElementWithValidation(type, props, children) {
|
|
1291
|
+
var validType = isValidElementType(type);
|
|
1292
|
+
if (!validType) {
|
|
1293
|
+
var info = "";
|
|
1294
|
+
if (type === void 0 || typeof type === "object" && type !== null && Object.keys(type).length === 0) info += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.";
|
|
1295
|
+
var sourceInfo = getSourceInfoErrorAddendumForProps(props);
|
|
1296
|
+
if (sourceInfo) info += sourceInfo;
|
|
1297
|
+
else info += getDeclarationErrorAddendum();
|
|
1298
|
+
var typeString;
|
|
1299
|
+
if (type === null) typeString = "null";
|
|
1300
|
+
else if (isArray(type)) typeString = "array";
|
|
1301
|
+
else if (type !== void 0 && type.$$typeof === REACT_ELEMENT_TYPE) {
|
|
1302
|
+
typeString = "<" + (getComponentNameFromType(type.type) || "Unknown") + " />";
|
|
1303
|
+
info = " Did you accidentally export a JSX literal instead of a component?";
|
|
1304
|
+
} else typeString = typeof type;
|
|
1305
|
+
error("React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", typeString, info);
|
|
1306
|
+
}
|
|
1307
|
+
var element = createElement.apply(this, arguments);
|
|
1308
|
+
if (element == null) return element;
|
|
1309
|
+
if (validType) for (var i = 2; i < arguments.length; i++) validateChildKeys(arguments[i], type);
|
|
1310
|
+
if (type === REACT_FRAGMENT_TYPE) validateFragmentProps(element);
|
|
1311
|
+
else validatePropTypes(element);
|
|
1312
|
+
return element;
|
|
1313
|
+
}
|
|
1314
|
+
var didWarnAboutDeprecatedCreateFactory = false;
|
|
1315
|
+
function createFactoryWithValidation(type) {
|
|
1316
|
+
var validatedFactory = createElementWithValidation.bind(null, type);
|
|
1317
|
+
validatedFactory.type = type;
|
|
1318
|
+
if (!didWarnAboutDeprecatedCreateFactory) {
|
|
1319
|
+
didWarnAboutDeprecatedCreateFactory = true;
|
|
1320
|
+
warn("React.createFactory() is deprecated and will be removed in a future major release. Consider using JSX or use React.createElement() directly instead.");
|
|
1321
|
+
}
|
|
1322
|
+
Object.defineProperty(validatedFactory, "type", {
|
|
1323
|
+
enumerable: false,
|
|
1324
|
+
get: function() {
|
|
1325
|
+
warn("Factory.type is deprecated. Access the class directly before passing it to createFactory.");
|
|
1326
|
+
Object.defineProperty(this, "type", { value: type });
|
|
1327
|
+
return type;
|
|
1328
|
+
}
|
|
1329
|
+
});
|
|
1330
|
+
return validatedFactory;
|
|
1331
|
+
}
|
|
1332
|
+
function cloneElementWithValidation(element, props, children) {
|
|
1333
|
+
var newElement = cloneElement.apply(this, arguments);
|
|
1334
|
+
for (var i = 2; i < arguments.length; i++) validateChildKeys(arguments[i], newElement.type);
|
|
1335
|
+
validatePropTypes(newElement);
|
|
1336
|
+
return newElement;
|
|
1337
|
+
}
|
|
1338
|
+
function startTransition(scope, options) {
|
|
1339
|
+
var prevTransition = ReactCurrentBatchConfig.transition;
|
|
1340
|
+
ReactCurrentBatchConfig.transition = {};
|
|
1341
|
+
var currentTransition = ReactCurrentBatchConfig.transition;
|
|
1342
|
+
ReactCurrentBatchConfig.transition._updatedFibers = /* @__PURE__ */ new Set();
|
|
1343
|
+
try {
|
|
1344
|
+
scope();
|
|
1345
|
+
} finally {
|
|
1346
|
+
ReactCurrentBatchConfig.transition = prevTransition;
|
|
1347
|
+
if (prevTransition === null && currentTransition._updatedFibers) {
|
|
1348
|
+
if (currentTransition._updatedFibers.size > 10) warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table.");
|
|
1349
|
+
currentTransition._updatedFibers.clear();
|
|
1350
|
+
}
|
|
1351
|
+
}
|
|
1352
|
+
}
|
|
1353
|
+
var didWarnAboutMessageChannel = false;
|
|
1354
|
+
var enqueueTaskImpl = null;
|
|
1355
|
+
function enqueueTask(task) {
|
|
1356
|
+
if (enqueueTaskImpl === null) try {
|
|
1357
|
+
var requireString = ("require" + Math.random()).slice(0, 7);
|
|
1358
|
+
enqueueTaskImpl = (module$1 && module$1[requireString]).call(module$1, "timers").setImmediate;
|
|
1359
|
+
} catch (_err) {
|
|
1360
|
+
enqueueTaskImpl = function(callback) {
|
|
1361
|
+
if (didWarnAboutMessageChannel === false) {
|
|
1362
|
+
didWarnAboutMessageChannel = true;
|
|
1363
|
+
if (typeof MessageChannel === "undefined") error("This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning.");
|
|
1364
|
+
}
|
|
1365
|
+
var channel = new MessageChannel();
|
|
1366
|
+
channel.port1.onmessage = callback;
|
|
1367
|
+
channel.port2.postMessage(void 0);
|
|
1368
|
+
};
|
|
1369
|
+
}
|
|
1370
|
+
return enqueueTaskImpl(task);
|
|
1371
|
+
}
|
|
1372
|
+
var actScopeDepth = 0;
|
|
1373
|
+
var didWarnNoAwaitAct = false;
|
|
1374
|
+
function act(callback) {
|
|
1375
|
+
var prevActScopeDepth = actScopeDepth;
|
|
1376
|
+
actScopeDepth++;
|
|
1377
|
+
if (ReactCurrentActQueue.current === null) ReactCurrentActQueue.current = [];
|
|
1378
|
+
var prevIsBatchingLegacy = ReactCurrentActQueue.isBatchingLegacy;
|
|
1379
|
+
var result;
|
|
1380
|
+
try {
|
|
1381
|
+
ReactCurrentActQueue.isBatchingLegacy = true;
|
|
1382
|
+
result = callback();
|
|
1383
|
+
if (!prevIsBatchingLegacy && ReactCurrentActQueue.didScheduleLegacyUpdate) {
|
|
1384
|
+
var queue = ReactCurrentActQueue.current;
|
|
1385
|
+
if (queue !== null) {
|
|
1386
|
+
ReactCurrentActQueue.didScheduleLegacyUpdate = false;
|
|
1387
|
+
flushActQueue(queue);
|
|
1388
|
+
}
|
|
1389
|
+
}
|
|
1390
|
+
} catch (error$1) {
|
|
1391
|
+
popActScope(prevActScopeDepth);
|
|
1392
|
+
throw error$1;
|
|
1393
|
+
} finally {
|
|
1394
|
+
ReactCurrentActQueue.isBatchingLegacy = prevIsBatchingLegacy;
|
|
1395
|
+
}
|
|
1396
|
+
if (result !== null && typeof result === "object" && typeof result.then === "function") {
|
|
1397
|
+
var thenableResult = result;
|
|
1398
|
+
var wasAwaited = false;
|
|
1399
|
+
var thenable = { then: function(resolve, reject) {
|
|
1400
|
+
wasAwaited = true;
|
|
1401
|
+
thenableResult.then(function(returnValue$1) {
|
|
1402
|
+
popActScope(prevActScopeDepth);
|
|
1403
|
+
if (actScopeDepth === 0) recursivelyFlushAsyncActWork(returnValue$1, resolve, reject);
|
|
1404
|
+
else resolve(returnValue$1);
|
|
1405
|
+
}, function(error$1) {
|
|
1406
|
+
popActScope(prevActScopeDepth);
|
|
1407
|
+
reject(error$1);
|
|
1408
|
+
});
|
|
1409
|
+
} };
|
|
1410
|
+
if (!didWarnNoAwaitAct && typeof Promise !== "undefined") Promise.resolve().then(function() {}).then(function() {
|
|
1411
|
+
if (!wasAwaited) {
|
|
1412
|
+
didWarnNoAwaitAct = true;
|
|
1413
|
+
error("You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving multiple act calls and mixing their scopes. You should - await act(async () => ...);");
|
|
1414
|
+
}
|
|
1415
|
+
});
|
|
1416
|
+
return thenable;
|
|
1417
|
+
} else {
|
|
1418
|
+
var returnValue = result;
|
|
1419
|
+
popActScope(prevActScopeDepth);
|
|
1420
|
+
if (actScopeDepth === 0) {
|
|
1421
|
+
var _queue = ReactCurrentActQueue.current;
|
|
1422
|
+
if (_queue !== null) {
|
|
1423
|
+
flushActQueue(_queue);
|
|
1424
|
+
ReactCurrentActQueue.current = null;
|
|
1425
|
+
}
|
|
1426
|
+
return { then: function(resolve, reject) {
|
|
1427
|
+
if (ReactCurrentActQueue.current === null) {
|
|
1428
|
+
ReactCurrentActQueue.current = [];
|
|
1429
|
+
recursivelyFlushAsyncActWork(returnValue, resolve, reject);
|
|
1430
|
+
} else resolve(returnValue);
|
|
1431
|
+
} };
|
|
1432
|
+
} else return { then: function(resolve, reject) {
|
|
1433
|
+
resolve(returnValue);
|
|
1434
|
+
} };
|
|
1435
|
+
}
|
|
1436
|
+
}
|
|
1437
|
+
function popActScope(prevActScopeDepth) {
|
|
1438
|
+
if (prevActScopeDepth !== actScopeDepth - 1) error("You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. ");
|
|
1439
|
+
actScopeDepth = prevActScopeDepth;
|
|
1440
|
+
}
|
|
1441
|
+
function recursivelyFlushAsyncActWork(returnValue, resolve, reject) {
|
|
1442
|
+
var queue = ReactCurrentActQueue.current;
|
|
1443
|
+
if (queue !== null) try {
|
|
1444
|
+
flushActQueue(queue);
|
|
1445
|
+
enqueueTask(function() {
|
|
1446
|
+
if (queue.length === 0) {
|
|
1447
|
+
ReactCurrentActQueue.current = null;
|
|
1448
|
+
resolve(returnValue);
|
|
1449
|
+
} else recursivelyFlushAsyncActWork(returnValue, resolve, reject);
|
|
1450
|
+
});
|
|
1451
|
+
} catch (error$1) {
|
|
1452
|
+
reject(error$1);
|
|
1453
|
+
}
|
|
1454
|
+
else resolve(returnValue);
|
|
1455
|
+
}
|
|
1456
|
+
var isFlushing = false;
|
|
1457
|
+
function flushActQueue(queue) {
|
|
1458
|
+
if (!isFlushing) {
|
|
1459
|
+
isFlushing = true;
|
|
1460
|
+
var i = 0;
|
|
1461
|
+
try {
|
|
1462
|
+
for (; i < queue.length; i++) {
|
|
1463
|
+
var callback = queue[i];
|
|
1464
|
+
do
|
|
1465
|
+
callback = callback(true);
|
|
1466
|
+
while (callback !== null);
|
|
1467
|
+
}
|
|
1468
|
+
queue.length = 0;
|
|
1469
|
+
} catch (error$1) {
|
|
1470
|
+
queue = queue.slice(i + 1);
|
|
1471
|
+
throw error$1;
|
|
1472
|
+
} finally {
|
|
1473
|
+
isFlushing = false;
|
|
1474
|
+
}
|
|
1475
|
+
}
|
|
1476
|
+
}
|
|
1477
|
+
var createElement$1 = createElementWithValidation;
|
|
1478
|
+
var cloneElement$1 = cloneElementWithValidation;
|
|
1479
|
+
var createFactory = createFactoryWithValidation;
|
|
1480
|
+
exports$1.Children = {
|
|
1481
|
+
map: mapChildren,
|
|
1482
|
+
forEach: forEachChildren,
|
|
1483
|
+
count: countChildren,
|
|
1484
|
+
toArray,
|
|
1485
|
+
only: onlyChild
|
|
1486
|
+
};
|
|
1487
|
+
exports$1.Component = Component;
|
|
1488
|
+
exports$1.Fragment = REACT_FRAGMENT_TYPE;
|
|
1489
|
+
exports$1.Profiler = REACT_PROFILER_TYPE;
|
|
1490
|
+
exports$1.PureComponent = PureComponent;
|
|
1491
|
+
exports$1.StrictMode = REACT_STRICT_MODE_TYPE;
|
|
1492
|
+
exports$1.Suspense = REACT_SUSPENSE_TYPE;
|
|
1493
|
+
exports$1.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ReactSharedInternals;
|
|
1494
|
+
exports$1.act = act;
|
|
1495
|
+
exports$1.cloneElement = cloneElement$1;
|
|
1496
|
+
exports$1.createContext = createContext;
|
|
1497
|
+
exports$1.createElement = createElement$1;
|
|
1498
|
+
exports$1.createFactory = createFactory;
|
|
1499
|
+
exports$1.createRef = createRef;
|
|
1500
|
+
exports$1.forwardRef = forwardRef;
|
|
1501
|
+
exports$1.isValidElement = isValidElement;
|
|
1502
|
+
exports$1.lazy = lazy;
|
|
1503
|
+
exports$1.memo = memo;
|
|
1504
|
+
exports$1.startTransition = startTransition;
|
|
1505
|
+
exports$1.unstable_act = act;
|
|
1506
|
+
exports$1.useCallback = useCallback;
|
|
1507
|
+
exports$1.useContext = useContext;
|
|
1508
|
+
exports$1.useDebugValue = useDebugValue;
|
|
1509
|
+
exports$1.useDeferredValue = useDeferredValue;
|
|
1510
|
+
exports$1.useEffect = useEffect;
|
|
1511
|
+
exports$1.useId = useId;
|
|
1512
|
+
exports$1.useImperativeHandle = useImperativeHandle;
|
|
1513
|
+
exports$1.useInsertionEffect = useInsertionEffect;
|
|
1514
|
+
exports$1.useLayoutEffect = useLayoutEffect;
|
|
1515
|
+
exports$1.useMemo = useMemo;
|
|
1516
|
+
exports$1.useReducer = useReducer;
|
|
1517
|
+
exports$1.useRef = useRef;
|
|
1518
|
+
exports$1.useState = useState;
|
|
1519
|
+
exports$1.useSyncExternalStore = useSyncExternalStore;
|
|
1520
|
+
exports$1.useTransition = useTransition;
|
|
1521
|
+
exports$1.version = ReactVersion;
|
|
1522
|
+
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === "function") __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(/* @__PURE__ */ new Error());
|
|
1523
|
+
})();
|
|
1524
|
+
}));
|
|
1525
|
+
var react_development_default = require_react_development();
|
|
1526
|
+
|
|
1527
|
+
//#endregion
|
|
1528
|
+
exports.require_react_development = require_react_development;
|