@finsweet/webflow-apps-utils 1.0.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/README.md +45 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +5 -0
- package/dist/router/Link.svelte +166 -0
- package/dist/router/Link.svelte.d.ts +26 -0
- package/dist/router/README.md +397 -0
- package/dist/router/Route.svelte +82 -0
- package/dist/router/Route.svelte.d.ts +24 -0
- package/dist/router/Router.svelte +71 -0
- package/dist/router/Router.svelte.d.ts +20 -0
- package/dist/router/hooks.svelte.d.ts +77 -0
- package/dist/router/hooks.svelte.js +148 -0
- package/dist/router/index.svelte.d.ts +107 -0
- package/dist/router/index.svelte.js +400 -0
- package/dist/stores/breakpoints.d.ts +10 -0
- package/dist/stores/breakpoints.js +2 -0
- package/dist/stores/componentInjectErrors.d.ts +1 -0
- package/dist/stores/componentInjectErrors.js +2 -0
- package/dist/stores/forms.d.ts +110 -0
- package/dist/stores/forms.js +307 -0
- package/dist/stores/globalStore.d.ts +10 -0
- package/dist/stores/globalStore.js +10 -0
- package/dist/stores/index.d.ts +7 -0
- package/dist/stores/index.js +7 -0
- package/dist/stores/router.d.ts +4 -0
- package/dist/stores/router.js +5 -0
- package/dist/stores/showConfirmActionModal.d.ts +1 -0
- package/dist/stores/showConfirmActionModal.js +2 -0
- package/dist/stores/siteInfo.d.ts +13 -0
- package/dist/stores/siteInfo.js +2 -0
- package/dist/types/auth.d.ts +40 -0
- package/dist/types/auth.js +1 -0
- package/dist/types/customCode.d.ts +16 -0
- package/dist/types/customCode.js +1 -0
- package/dist/types/index.d.ts +5 -0
- package/dist/types/index.js +5 -0
- package/dist/types/license.d.ts +5 -0
- package/dist/types/license.js +1 -0
- package/dist/types/webflow.d.ts +125 -0
- package/dist/types/webflow.js +1 -0
- package/dist/types/window.d.ts +14 -0
- package/dist/types/window.js +1 -0
- package/dist/ui/components/ButtonGroup.svelte +106 -0
- package/dist/ui/components/ButtonGroup.svelte.d.ts +28 -0
- package/dist/ui/components/Checkbox.svelte +94 -0
- package/dist/ui/components/Checkbox.svelte.d.ts +36 -0
- package/dist/ui/components/Copy.svelte +329 -0
- package/dist/ui/components/Copy.svelte.d.ts +35 -0
- package/dist/ui/components/CustomModal.svelte +192 -0
- package/dist/ui/components/CustomModal.svelte.d.ts +45 -0
- package/dist/ui/components/DisableInEditMode.svelte +66 -0
- package/dist/ui/components/DisableInEditMode.svelte.d.ts +33 -0
- package/dist/ui/components/Divider.svelte +31 -0
- package/dist/ui/components/Divider.svelte.d.ts +31 -0
- package/dist/ui/components/Header.svelte +30 -0
- package/dist/ui/components/Header.svelte.d.ts +20 -0
- package/dist/ui/components/Iframe.svelte +89 -0
- package/dist/ui/components/Iframe.svelte.d.ts +40 -0
- package/dist/ui/components/ImageUpload.svelte +213 -0
- package/dist/ui/components/ImageUpload.svelte.d.ts +42 -0
- package/dist/ui/components/InjectComponent.svelte +297 -0
- package/dist/ui/components/InjectComponent.svelte.d.ts +27 -0
- package/dist/ui/components/Loader.svelte +68 -0
- package/dist/ui/components/Loader.svelte.d.ts +24 -0
- package/dist/ui/components/LoadingScreen.svelte +71 -0
- package/dist/ui/components/LoadingScreen.svelte.d.ts +26 -0
- package/dist/ui/components/Modal.svelte +139 -0
- package/dist/ui/components/Modal.svelte.d.ts +42 -0
- package/dist/ui/components/Navbar.svelte +132 -0
- package/dist/ui/components/Navbar.svelte.d.ts +29 -0
- package/dist/ui/components/NoSettingsNeeded.svelte +31 -0
- package/dist/ui/components/NoSettingsNeeded.svelte.d.ts +18 -0
- package/dist/ui/components/Notification.svelte +193 -0
- package/dist/ui/components/Notification.svelte.d.ts +64 -0
- package/dist/ui/components/PlusMinusButton.svelte +91 -0
- package/dist/ui/components/PlusMinusButton.svelte.d.ts +22 -0
- package/dist/ui/components/PreviewBar.svelte +40 -0
- package/dist/ui/components/PreviewBar.svelte.d.ts +20 -0
- package/dist/ui/components/ScrollableContent.svelte +18 -0
- package/dist/ui/components/ScrollableContent.svelte.d.ts +31 -0
- package/dist/ui/components/Section.svelte +97 -0
- package/dist/ui/components/Section.svelte.d.ts +50 -0
- package/dist/ui/components/SelectBodyOrDivBlock.svelte +26 -0
- package/dist/ui/components/SelectBodyOrDivBlock.svelte.d.ts +26 -0
- package/dist/ui/components/Spacer.svelte +9 -0
- package/dist/ui/components/Spacer.svelte.d.ts +22 -0
- package/dist/ui/components/SpinnerPlusMinus.svelte +75 -0
- package/dist/ui/components/SpinnerPlusMinus.svelte.d.ts +23 -0
- package/dist/ui/components/SpinnerUpDown.svelte +194 -0
- package/dist/ui/components/SpinnerUpDown.svelte.d.ts +31 -0
- package/dist/ui/components/Tabs.svelte +71 -0
- package/dist/ui/components/Tabs.svelte.d.ts +26 -0
- package/dist/ui/components/ToggleItem.svelte +29 -0
- package/dist/ui/components/ToggleItem.svelte.d.ts +28 -0
- package/dist/ui/components/ToggleList.svelte +57 -0
- package/dist/ui/components/ToggleList.svelte.d.ts +39 -0
- package/dist/ui/components/breakpoints/BreakpointItem.svelte +84 -0
- package/dist/ui/components/breakpoints/BreakpointItem.svelte.d.ts +37 -0
- package/dist/ui/components/breakpoints/breakpointOptions.d.ts +12 -0
- package/dist/ui/components/breakpoints/breakpointOptions.js +38 -0
- package/dist/ui/components/breakpoints/index.d.ts +3 -0
- package/dist/ui/components/breakpoints/index.js +3 -0
- package/dist/ui/components/button/Button.stories.svelte +275 -0
- package/dist/ui/components/button/Button.stories.svelte.d.ts +27 -0
- package/dist/ui/components/button/Button.svelte +389 -0
- package/dist/ui/components/button/Button.svelte.d.ts +84 -0
- package/dist/ui/components/button/index.d.ts +2 -0
- package/dist/ui/components/button/index.js +1 -0
- package/dist/ui/components/button/types.d.ts +23 -0
- package/dist/ui/components/button/types.js +1 -0
- package/dist/ui/components/buttons/FooterButton.svelte +277 -0
- package/dist/ui/components/buttons/FooterButton.svelte.d.ts +10 -0
- package/dist/ui/components/buttons/index.d.ts +5 -0
- package/dist/ui/components/buttons/index.js +5 -0
- package/dist/ui/components/buttons/types.d.ts +28 -0
- package/dist/ui/components/buttons/types.js +1 -0
- package/dist/ui/components/clickable/Clickable.stories.svelte +213 -0
- package/dist/ui/components/clickable/Clickable.stories.svelte.d.ts +27 -0
- package/dist/ui/components/clickable/Clickable.svelte +93 -0
- package/dist/ui/components/clickable/Clickable.svelte.d.ts +4 -0
- package/dist/ui/components/clickable/index.d.ts +2 -0
- package/dist/ui/components/clickable/index.js +1 -0
- package/dist/ui/components/clickable/types.d.ts +17 -0
- package/dist/ui/components/clickable/types.js +1 -0
- package/dist/ui/components/index.d.ts +46 -0
- package/dist/ui/components/index.js +46 -0
- package/dist/ui/components/input/Input.stories.d.ts +109 -0
- package/dist/ui/components/input/Input.stories.js +337 -0
- package/dist/ui/components/input/Input.svelte +422 -0
- package/dist/ui/components/input/Input.svelte.d.ts +4 -0
- package/dist/ui/components/input/index.d.ts +2 -0
- package/dist/ui/components/input/index.js +1 -0
- package/dist/ui/components/input/types.d.ts +109 -0
- package/dist/ui/components/input/types.js +1 -0
- package/dist/ui/components/layout/ExampleLayout.svelte +538 -0
- package/dist/ui/components/layout/ExampleLayout.svelte.d.ts +3 -0
- package/dist/ui/components/layout/Layout.stories.svelte +24 -0
- package/dist/ui/components/layout/Layout.stories.svelte.d.ts +18 -0
- package/dist/ui/components/layout/Layout.svelte +551 -0
- package/dist/ui/components/layout/Layout.svelte.d.ts +30 -0
- package/dist/ui/components/layout/common/EditModeMessage.svelte +59 -0
- package/dist/ui/components/layout/common/EditModeMessage.svelte.d.ts +3 -0
- package/dist/ui/components/layout/common/index.d.ts +1 -0
- package/dist/ui/components/layout/common/index.js +1 -0
- package/dist/ui/components/layout/index.d.ts +3 -0
- package/dist/ui/components/layout/index.js +2 -0
- package/dist/ui/components/layout/types.d.ts +59 -0
- package/dist/ui/components/layout/types.js +1 -0
- package/dist/ui/components/select/Select.stories.d.ts +94 -0
- package/dist/ui/components/select/Select.stories.js +396 -0
- package/dist/ui/components/select/Select.svelte +705 -0
- package/dist/ui/components/select/Select.svelte.d.ts +11 -0
- package/dist/ui/components/select/index.d.ts +2 -0
- package/dist/ui/components/select/index.js +1 -0
- package/dist/ui/components/select/types.d.ts +94 -0
- package/dist/ui/components/select/types.js +1 -0
- package/dist/ui/components/switch/Switch.stories.d.ts +58 -0
- package/dist/ui/components/switch/Switch.stories.js +198 -0
- package/dist/ui/components/switch/Switch.svelte +220 -0
- package/dist/ui/components/switch/Switch.svelte.d.ts +4 -0
- package/dist/ui/components/switch/index.d.ts +2 -0
- package/dist/ui/components/switch/index.js +1 -0
- package/dist/ui/components/switch/types.d.ts +47 -0
- package/dist/ui/components/switch/types.js +1 -0
- package/dist/ui/components/text/README.md +73 -0
- package/dist/ui/components/text/Text.stories.svelte +203 -0
- package/dist/ui/components/text/Text.stories.svelte.d.ts +27 -0
- package/dist/ui/components/text/Text.svelte +778 -0
- package/dist/ui/components/text/Text.svelte.d.ts +8 -0
- package/dist/ui/components/text/index.d.ts +3 -0
- package/dist/ui/components/text/index.js +2 -0
- package/dist/ui/components/text/types.d.ts +46 -0
- package/dist/ui/components/text/types.js +1 -0
- package/dist/ui/components/tooltip/Tooltip.stories.svelte +128 -0
- package/dist/ui/components/tooltip/Tooltip.stories.svelte.d.ts +27 -0
- package/dist/ui/components/tooltip/Tooltip.svelte +463 -0
- package/dist/ui/components/tooltip/Tooltip.svelte.d.ts +7 -0
- package/dist/ui/components/tooltip/index.d.ts +2 -0
- package/dist/ui/components/tooltip/index.js +1 -0
- package/dist/ui/components/tooltip/types.d.ts +114 -0
- package/dist/ui/components/tooltip/types.js +1 -0
- package/dist/ui/icons/AccordionDownArrow.svelte +8 -0
- package/dist/ui/icons/AccordionDownArrow.svelte.d.ts +26 -0
- package/dist/ui/icons/AccordionUpArrow.svelte +8 -0
- package/dist/ui/icons/AccordionUpArrow.svelte.d.ts +26 -0
- package/dist/ui/icons/AccountIcon.svelte +14 -0
- package/dist/ui/icons/AccountIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/ArrowIcon.svelte +6 -0
- package/dist/ui/icons/ArrowIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/BackIcon.svelte +8 -0
- package/dist/ui/icons/BackIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/BodyIcon.svelte +8 -0
- package/dist/ui/icons/BodyIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/BookmarkIcon.svelte +13 -0
- package/dist/ui/icons/BookmarkIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/BoxAddIcon.svelte +8 -0
- package/dist/ui/icons/BoxAddIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/BrushIcon.svelte +10 -0
- package/dist/ui/icons/BrushIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/BuilderEditIcon.svelte +12 -0
- package/dist/ui/icons/BuilderEditIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/BuilderIcon.svelte +14 -0
- package/dist/ui/icons/BuilderIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/CMSIcon.svelte +8 -0
- package/dist/ui/icons/CMSIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/CheckCircleIcon.svelte +8 -0
- package/dist/ui/icons/CheckCircleIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/CheckCircleOutlinedIcon.svelte +15 -0
- package/dist/ui/icons/CheckCircleOutlinedIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/CheckIcon.svelte +9 -0
- package/dist/ui/icons/CheckIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/CheckboxCheckedIcon.svelte +15 -0
- package/dist/ui/icons/CheckboxCheckedIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/ChevronIcon.svelte +8 -0
- package/dist/ui/icons/ChevronIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/ChevronRightIcon.svelte +8 -0
- package/dist/ui/icons/ChevronRightIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/CircleIcon.svelte +3 -0
- package/dist/ui/icons/CircleIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/CloseCircleIcon.svelte +6 -0
- package/dist/ui/icons/CloseCircleIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/CloseIcon.svelte +8 -0
- package/dist/ui/icons/CloseIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/CodeIcon.svelte +8 -0
- package/dist/ui/icons/CodeIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/ComponentsIcon.svelte +7 -0
- package/dist/ui/icons/ComponentsIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/CookieIcon.svelte +15 -0
- package/dist/ui/icons/CookieIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/CopyIcon.svelte +19 -0
- package/dist/ui/icons/CopyIcon.svelte.d.ts +20 -0
- package/dist/ui/icons/CrossIcon.svelte +4 -0
- package/dist/ui/icons/CrossIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/DOMElement.svelte +19 -0
- package/dist/ui/icons/DOMElement.svelte.d.ts +28 -0
- package/dist/ui/icons/DeleteIcon.svelte +8 -0
- package/dist/ui/icons/DeleteIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/DeleteOutlinedIcon.svelte +8 -0
- package/dist/ui/icons/DeleteOutlinedIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/Desktop.svelte +19 -0
- package/dist/ui/icons/Desktop.svelte.d.ts +21 -0
- package/dist/ui/icons/DesktopWithStar.svelte +21 -0
- package/dist/ui/icons/DesktopWithStar.svelte.d.ts +21 -0
- package/dist/ui/icons/DivBlock.svelte +14 -0
- package/dist/ui/icons/DivBlock.svelte.d.ts +28 -0
- package/dist/ui/icons/EditIcon.svelte +15 -0
- package/dist/ui/icons/EditIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/ExpertIcon.svelte +16 -0
- package/dist/ui/icons/ExpertIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/EyeCancelIcon.svelte +12 -0
- package/dist/ui/icons/EyeCancelIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/EyeIcon.svelte +12 -0
- package/dist/ui/icons/EyeIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/FavouriteIcon.svelte +6 -0
- package/dist/ui/icons/FavouriteIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/FileUploadIcon.svelte +18 -0
- package/dist/ui/icons/FileUploadIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/FilterIcon.svelte +8 -0
- package/dist/ui/icons/FilterIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/FinsweetLibraryIcon.svelte +21 -0
- package/dist/ui/icons/FinsweetLibraryIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/FinsweetLogoIcon.svelte +20 -0
- package/dist/ui/icons/FinsweetLogoIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/FolderIcon.svelte +6 -0
- package/dist/ui/icons/FolderIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/FolderOutlinedIcon.svelte +8 -0
- package/dist/ui/icons/FolderOutlinedIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/FolderPlusIcon.svelte +10 -0
- package/dist/ui/icons/FolderPlusIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/FreeComponentIcon.svelte +8 -0
- package/dist/ui/icons/FreeComponentIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/GlobeIcon.svelte +14 -0
- package/dist/ui/icons/GlobeIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/HandPointUpIcon.svelte +9 -0
- package/dist/ui/icons/HandPointUpIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/HeartIcon.svelte +8 -0
- package/dist/ui/icons/HeartIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/HeartIconOutlined.svelte +8 -0
- package/dist/ui/icons/HeartIconOutlined.svelte.d.ts +26 -0
- package/dist/ui/icons/HelpAltIcon.svelte +23 -0
- package/dist/ui/icons/HelpAltIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/HelpIcon.svelte +16 -0
- package/dist/ui/icons/HelpIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/HomeIcon.svelte +8 -0
- package/dist/ui/icons/HomeIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/InfoIcon.svelte +14 -0
- package/dist/ui/icons/InfoIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/ListIcon.svelte +18 -0
- package/dist/ui/icons/ListIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/LockIcon.svelte +13 -0
- package/dist/ui/icons/LockIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/MessageIcon.svelte +10 -0
- package/dist/ui/icons/MessageIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/MobileLandscape.svelte +20 -0
- package/dist/ui/icons/MobileLandscape.svelte.d.ts +21 -0
- package/dist/ui/icons/MobilePortrait.svelte +20 -0
- package/dist/ui/icons/MobilePortrait.svelte.d.ts +21 -0
- package/dist/ui/icons/NavigatorIcon.svelte +8 -0
- package/dist/ui/icons/NavigatorIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/OpenBookIcon.svelte +8 -0
- package/dist/ui/icons/OpenBookIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/PageDraftIcon.svelte +8 -0
- package/dist/ui/icons/PageDraftIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/PageIcon.svelte +9 -0
- package/dist/ui/icons/PageIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/PageLockedIcon.svelte +8 -0
- package/dist/ui/icons/PageLockedIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/PageOutlinedIcon.svelte +8 -0
- package/dist/ui/icons/PageOutlinedIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/PageSectionIcon.svelte +10 -0
- package/dist/ui/icons/PageSectionIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/Pencil.svelte +12 -0
- package/dist/ui/icons/Pencil.svelte.d.ts +20 -0
- package/dist/ui/icons/PencilOutlinedIcon.svelte +15 -0
- package/dist/ui/icons/PencilOutlinedIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/PinIcon.svelte +8 -0
- package/dist/ui/icons/PinIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/PlayIcon.svelte +8 -0
- package/dist/ui/icons/PlayIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/PlusIcon.svelte +8 -0
- package/dist/ui/icons/PlusIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/PreviewEyeIcon.svelte +12 -0
- package/dist/ui/icons/PreviewEyeIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/ProfileIcon.svelte +12 -0
- package/dist/ui/icons/ProfileIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/PublishCancelIcon.svelte +8 -0
- package/dist/ui/icons/PublishCancelIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/PublishIcon.svelte +12 -0
- package/dist/ui/icons/PublishIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/RefreshIcon.svelte +10 -0
- package/dist/ui/icons/RefreshIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/RepairIcon.svelte +10 -0
- package/dist/ui/icons/RepairIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/SaveIcon.svelte +14 -0
- package/dist/ui/icons/SaveIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/SearchIcon.svelte +8 -0
- package/dist/ui/icons/SearchIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/SelectIcon.svelte +7 -0
- package/dist/ui/icons/SelectIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/SettingsIcon.svelte +8 -0
- package/dist/ui/icons/SettingsIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/SidebarToggleIcon.svelte +28 -0
- package/dist/ui/icons/SidebarToggleIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/SliderAppIcon.svelte +14 -0
- package/dist/ui/icons/SliderAppIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/SquareCheckIcon.svelte +3 -0
- package/dist/ui/icons/SquareCheckIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/StarIcon.svelte +6 -0
- package/dist/ui/icons/StarIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/StarOutlinedIcon.svelte +6 -0
- package/dist/ui/icons/StarOutlinedIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/StaticContentIcon.svelte +8 -0
- package/dist/ui/icons/StaticContentIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/SubtractIcon.svelte +9 -0
- package/dist/ui/icons/SubtractIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/TabNewIcon.svelte +6 -0
- package/dist/ui/icons/TabNewIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/TableAppIcon.svelte +19 -0
- package/dist/ui/icons/TableAppIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/Tablet.svelte +20 -0
- package/dist/ui/icons/Tablet.svelte.d.ts +21 -0
- package/dist/ui/icons/TabletPreview.svelte +20 -0
- package/dist/ui/icons/TabletPreview.svelte.d.ts +21 -0
- package/dist/ui/icons/TabsIcon.svelte +17 -0
- package/dist/ui/icons/TabsIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/ThreeDotsIcon.svelte +14 -0
- package/dist/ui/icons/ThreeDotsIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/TimesIcon.svelte +4 -0
- package/dist/ui/icons/TimesIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/ToolTipInfoCircleIcon.svelte +11 -0
- package/dist/ui/icons/ToolTipInfoCircleIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/TooltipInfoCircleFilled.svelte +13 -0
- package/dist/ui/icons/TooltipInfoCircleFilled.svelte.d.ts +26 -0
- package/dist/ui/icons/TooltipInfoSquaredIcon.svelte +16 -0
- package/dist/ui/icons/TooltipInfoSquaredIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/TriangleDownIcon.svelte +7 -0
- package/dist/ui/icons/TriangleDownIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/TriangleDownIconToggle.svelte +21 -0
- package/dist/ui/icons/TriangleDownIconToggle.svelte.d.ts +20 -0
- package/dist/ui/icons/UndoIcon.svelte +6 -0
- package/dist/ui/icons/UndoIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/UploadFileIcon.svelte +10 -0
- package/dist/ui/icons/UploadFileIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/WarningCircleIcon.svelte +7 -0
- package/dist/ui/icons/WarningCircleIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/WarningCircleOutlineIcon.svelte +14 -0
- package/dist/ui/icons/WarningCircleOutlineIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/WarningTriangleIcon.svelte +6 -0
- package/dist/ui/icons/WarningTriangleIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/WarningTriangleOutlineIcon.svelte +14 -0
- package/dist/ui/icons/WarningTriangleOutlineIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/WebflowComponentIcon.svelte +14 -0
- package/dist/ui/icons/WebflowComponentIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/WebflowComponentOutlinedIcon.svelte +10 -0
- package/dist/ui/icons/WebflowComponentOutlinedIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/WebflowInsightsIcon.svelte +6 -0
- package/dist/ui/icons/WebflowInsightsIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/WizedLogoIcon.svelte +39 -0
- package/dist/ui/icons/WizedLogoIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/XL.svelte +19 -0
- package/dist/ui/icons/XL.svelte.d.ts +21 -0
- package/dist/ui/icons/XXL.svelte +19 -0
- package/dist/ui/icons/XXL.svelte.d.ts +21 -0
- package/dist/ui/icons/XXXL.svelte +19 -0
- package/dist/ui/icons/XXXL.svelte.d.ts +21 -0
- package/dist/ui/icons/apps/FsConsentIcon.svelte +22 -0
- package/dist/ui/icons/apps/FsConsentIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/apps/FsCursorIcon.svelte +12 -0
- package/dist/ui/icons/apps/FsCursorIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/apps/FsExampleIcon.svelte +10 -0
- package/dist/ui/icons/apps/FsExampleIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/apps/FsInstagramFeedIcon.svelte +27 -0
- package/dist/ui/icons/apps/FsInstagramFeedIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/apps/FsMarqueeIcon.svelte +13 -0
- package/dist/ui/icons/apps/FsMarqueeIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/apps/FsNumberCountIcon.svelte +46 -0
- package/dist/ui/icons/apps/FsNumberCountIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/apps/FsSliderIcon.svelte +13 -0
- package/dist/ui/icons/apps/FsSliderIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/apps/FsTablesIcon.svelte +19 -0
- package/dist/ui/icons/apps/FsTablesIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/apps/FsTabsIcon.svelte +24 -0
- package/dist/ui/icons/apps/FsTabsIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/apps/FsTooltipIcon.svelte +12 -0
- package/dist/ui/icons/apps/FsTooltipIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/apps/FsYouTubeFeedIcon.svelte +43 -0
- package/dist/ui/icons/apps/FsYouTubeFeedIcon.svelte.d.ts +26 -0
- package/dist/ui/icons/apps/index.d.ts +15 -0
- package/dist/ui/icons/apps/index.js +15 -0
- package/dist/ui/icons/index.d.ts +120 -0
- package/dist/ui/icons/index.js +120 -0
- package/dist/ui/index.css +494 -0
- package/dist/ui/index.d.ts +2 -0
- package/dist/ui/index.js +2 -0
- package/dist/utils/api/checkIfAppModeIsDesign.d.ts +5 -0
- package/dist/utils/api/checkIfAppModeIsDesign.js +20 -0
- package/dist/utils/api/clipboard/handlePaste.d.ts +46 -0
- package/dist/utils/api/clipboard/handlePaste.js +53 -0
- package/dist/utils/api/clipboard/index.d.ts +1 -0
- package/dist/utils/api/clipboard/index.js +1 -0
- package/dist/utils/api/copyPaste/index.d.ts +18 -0
- package/dist/utils/api/copyPaste/index.js +1 -0
- package/dist/utils/api/getAllAssets.d.ts +12 -0
- package/dist/utils/api/getAllAssets.js +21 -0
- package/dist/utils/api/getFinsweetComponentsEnvironment.d.ts +9 -0
- package/dist/utils/api/getFinsweetComponentsEnvironment.js +70 -0
- package/dist/utils/api/index.d.ts +6 -0
- package/dist/utils/api/index.js +6 -0
- package/dist/utils/api/insertWithXSCP.d.ts +5 -0
- package/dist/utils/api/insertWithXSCP.js +13 -0
- package/dist/utils/auth/crossWindowLogin.d.ts +2 -0
- package/dist/utils/auth/crossWindowLogin.js +49 -0
- package/dist/utils/auth/index.d.ts +61 -0
- package/dist/utils/auth/index.js +196 -0
- package/dist/utils/browser-storage/index.d.ts +2 -0
- package/dist/utils/browser-storage/index.js +2 -0
- package/dist/utils/browser-storage/localStorage.d.ts +24 -0
- package/dist/utils/browser-storage/localStorage.js +56 -0
- package/dist/utils/browser-storage/sessionStorage.d.ts +24 -0
- package/dist/utils/browser-storage/sessionStorage.js +56 -0
- package/dist/utils/constants.d.ts +61 -0
- package/dist/utils/constants.js +73 -0
- package/dist/utils/custom-code/api.d.ts +17 -0
- package/dist/utils/custom-code/api.js +41 -0
- package/dist/utils/custom-code/index.d.ts +1 -0
- package/dist/utils/custom-code/index.js +1 -0
- package/dist/utils/helpers/cleanupTooltipMessage.d.ts +5 -0
- package/dist/utils/helpers/cleanupTooltipMessage.js +25 -0
- package/dist/utils/helpers/goto.d.ts +7 -0
- package/dist/utils/helpers/goto.js +35 -0
- package/dist/utils/helpers/index.d.ts +5 -0
- package/dist/utils/helpers/index.js +5 -0
- package/dist/utils/helpers/noop.d.ts +4 -0
- package/dist/utils/helpers/noop.js +7 -0
- package/dist/utils/helpers/numbers.d.ts +27 -0
- package/dist/utils/helpers/numbers.js +61 -0
- package/dist/utils/helpers/objectsToModuleExports.d.ts +9 -0
- package/dist/utils/helpers/objectsToModuleExports.js +13 -0
- package/dist/utils/helpers/trimText.d.ts +15 -0
- package/dist/utils/helpers/trimText.js +33 -0
- package/dist/utils/index.d.ts +4 -0
- package/dist/utils/index.js +4 -0
- package/dist/utils/logger/index.d.ts +19 -0
- package/dist/utils/logger/index.js +41 -0
- package/dist/utils/webflow-canvas/attributes/getAllWebflowElementAttributes.d.ts +6 -0
- package/dist/utils/webflow-canvas/attributes/getAllWebflowElementAttributes.js +19 -0
- package/dist/utils/webflow-canvas/attributes/getInstanceNamesFromObject.d.ts +8 -0
- package/dist/utils/webflow-canvas/attributes/getInstanceNamesFromObject.js +21 -0
- package/dist/utils/webflow-canvas/attributes/getWebflowElementAttribute.d.ts +7 -0
- package/dist/utils/webflow-canvas/attributes/getWebflowElementAttribute.js +25 -0
- package/dist/utils/webflow-canvas/attributes/getWebflowElementTextContent.d.ts +6 -0
- package/dist/utils/webflow-canvas/attributes/getWebflowElementTextContent.js +26 -0
- package/dist/utils/webflow-canvas/attributes/index.d.ts +7 -0
- package/dist/utils/webflow-canvas/attributes/index.js +7 -0
- package/dist/utils/webflow-canvas/attributes/removeWebflowElementAttribute.d.ts +7 -0
- package/dist/utils/webflow-canvas/attributes/removeWebflowElementAttribute.js +37 -0
- package/dist/utils/webflow-canvas/attributes/setStyles.d.ts +10 -0
- package/dist/utils/webflow-canvas/attributes/setStyles.js +36 -0
- package/dist/utils/webflow-canvas/attributes/setWebflowElementAttribute.d.ts +11 -0
- package/dist/utils/webflow-canvas/attributes/setWebflowElementAttribute.js +61 -0
- package/dist/utils/webflow-canvas/findInstanceElement.d.ts +32 -0
- package/dist/utils/webflow-canvas/findInstanceElement.js +144 -0
- package/dist/utils/webflow-canvas/getAllPages.d.ts +29 -0
- package/dist/utils/webflow-canvas/getAllPages.js +93 -0
- package/dist/utils/webflow-canvas/getSiteStagingUrl.d.ts +7 -0
- package/dist/utils/webflow-canvas/getSiteStagingUrl.js +14 -0
- package/dist/utils/webflow-canvas/index.d.ts +3 -0
- package/dist/utils/webflow-canvas/index.js +3 -0
- package/package.json +107 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export default FsTooltipIcon;
|
|
2
|
+
type FsTooltipIcon = SvelteComponent<{
|
|
3
|
+
[x: string]: never;
|
|
4
|
+
}, {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
}, {}> & {
|
|
7
|
+
$$bindings?: string | undefined;
|
|
8
|
+
};
|
|
9
|
+
declare const FsTooltipIcon: $$__sveltets_2_IsomorphicComponent<{
|
|
10
|
+
[x: string]: never;
|
|
11
|
+
}, {
|
|
12
|
+
[evt: string]: CustomEvent<any>;
|
|
13
|
+
}, {}, {}, string>;
|
|
14
|
+
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
15
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
|
16
|
+
$$bindings?: Bindings;
|
|
17
|
+
} & Exports;
|
|
18
|
+
(internal: unknown, props: {
|
|
19
|
+
$$events?: Events;
|
|
20
|
+
$$slots?: Slots;
|
|
21
|
+
}): Exports & {
|
|
22
|
+
$set?: any;
|
|
23
|
+
$on?: any;
|
|
24
|
+
};
|
|
25
|
+
z_$$bindings?: Bindings;
|
|
26
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<svg width="137" height="84" viewBox="0 0 137 84" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.5" y="16.5001" width="136" height="51" rx="3.5" stroke="white" />
|
|
3
|
+
<rect
|
|
4
|
+
x="8.56195"
|
|
5
|
+
y="24.8372"
|
|
6
|
+
width="35.8805"
|
|
7
|
+
height="34.3258"
|
|
8
|
+
rx="1.68585"
|
|
9
|
+
stroke="white"
|
|
10
|
+
stroke-width="1.1239"
|
|
11
|
+
/>
|
|
12
|
+
<g clip-path="url(#clip0_5313_2892)">
|
|
13
|
+
<g clip-path="url(#clip1_5313_2892)">
|
|
14
|
+
<path
|
|
15
|
+
d="M68.6318 24.6651C68.7188 24.6654 68.8474 24.666 69.0117 24.6671C69.3409 24.6691 69.8154 24.6733 70.3936 24.6817C71.5502 24.6984 73.1221 24.732 74.7852 24.7989C76.4497 24.8658 78.1986 24.9659 79.7109 25.1153C81.0551 25.2481 82.1574 25.4151 82.8486 25.6133L83.1191 25.7003C84.3864 26.1593 85.4977 27.505 85.9678 29.3712L86.0527 29.751C86.4371 31.6982 86.6355 34.7444 86.7354 37.3399C86.785 38.6301 86.8097 39.7962 86.8223 40.6397C86.8286 41.0611 86.8314 41.4017 86.833 41.6368C86.8338 41.7542 86.8347 41.8457 86.835 41.9073V42.0928C86.8348 42.1544 86.8348 42.2458 86.834 42.3633C86.8324 42.5984 86.8294 42.939 86.8232 43.3604C86.8109 44.2039 86.7857 45.3701 86.7363 46.6602C86.6431 49.0935 86.4631 51.9229 86.123 53.8712L86.0527 54.2491C85.6703 56.1829 84.6152 57.6208 83.3711 58.1964L83.1191 58.2999C82.4671 58.5366 81.247 58.7331 79.7109 58.8848C78.1986 59.0342 76.4497 59.1343 74.7852 59.2012C73.1221 59.2681 71.5502 59.3017 70.3936 59.3184C69.8154 59.3268 69.3409 59.331 69.0117 59.3331C68.8474 59.3341 68.7188 59.3348 68.6318 59.335H68.3682C68.2812 59.3348 68.1526 59.3341 67.9883 59.3331C67.6591 59.331 67.1846 59.3268 66.6064 59.3184C65.4498 59.3017 63.8779 59.2681 62.2148 59.2012C60.5503 59.1343 58.8014 59.0342 57.2891 58.8848C55.9448 58.752 54.8426 58.5851 54.1514 58.3868L53.8809 58.2999L53.6289 58.1964C52.4677 57.6591 51.4709 56.3707 51.0322 54.629L50.9473 54.2491L50.877 53.8712C50.537 51.9229 50.3569 49.0935 50.2637 46.6602C50.2143 45.3701 50.1901 44.2039 50.1777 43.3604C50.1716 42.939 50.1685 42.5984 50.167 42.3633C50.1662 42.2458 50.1652 42.1544 50.165 42.0928V41.9073C50.1652 41.8457 50.1662 41.7543 50.167 41.6368C50.1685 41.4017 50.1716 41.0611 50.1777 40.6397C50.1901 39.7962 50.2143 38.63 50.2637 37.3399C50.3569 34.9066 50.537 32.0772 50.877 30.129L50.9473 29.751C51.3299 27.8168 52.3854 26.3792 53.6299 25.8038L53.8809 25.7003C54.5329 25.4636 55.753 25.267 57.2891 25.1153C58.8014 24.9659 60.5503 24.8658 62.2148 24.7989C63.8779 24.732 65.4498 24.6984 66.6064 24.6817C67.1846 24.6733 67.6591 24.6691 67.9883 24.6671C68.1526 24.666 68.2812 24.6654 68.3682 24.6651H68.6318Z"
|
|
16
|
+
stroke="white"
|
|
17
|
+
stroke-width="1.33007"
|
|
18
|
+
/>
|
|
19
|
+
<path
|
|
20
|
+
d="M64.6797 37.8145C64.6799 37.1362 65.3695 36.6977 65.9707 36.9463L66.0889 37.0049L73.2637 41.1904C73.845 41.5296 73.8817 42.3385 73.373 42.7363L73.2637 42.8096L66.0889 46.9951C65.464 47.3594 64.6799 46.9088 64.6797 46.1855V37.8145Z"
|
|
21
|
+
stroke="white"
|
|
22
|
+
stroke-width="1.35853"
|
|
23
|
+
/>
|
|
24
|
+
</g>
|
|
25
|
+
</g>
|
|
26
|
+
<rect
|
|
27
|
+
x="92.558"
|
|
28
|
+
y="24.603"
|
|
29
|
+
width="35.8805"
|
|
30
|
+
height="34.7941"
|
|
31
|
+
rx="1.68805"
|
|
32
|
+
stroke="white"
|
|
33
|
+
stroke-width="1.1239"
|
|
34
|
+
/>
|
|
35
|
+
<defs>
|
|
36
|
+
<clipPath id="clip0_5313_2892">
|
|
37
|
+
<rect width="38" height="36" fill="white" transform="translate(49.5 24.0001)" />
|
|
38
|
+
</clipPath>
|
|
39
|
+
<clipPath id="clip1_5313_2892">
|
|
40
|
+
<rect width="38" height="36" fill="white" transform="translate(49.5 24.0001)" />
|
|
41
|
+
</clipPath>
|
|
42
|
+
</defs>
|
|
43
|
+
</svg>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export default FsYouTubeFeedIcon;
|
|
2
|
+
type FsYouTubeFeedIcon = SvelteComponent<{
|
|
3
|
+
[x: string]: never;
|
|
4
|
+
}, {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
}, {}> & {
|
|
7
|
+
$$bindings?: string | undefined;
|
|
8
|
+
};
|
|
9
|
+
declare const FsYouTubeFeedIcon: $$__sveltets_2_IsomorphicComponent<{
|
|
10
|
+
[x: string]: never;
|
|
11
|
+
}, {
|
|
12
|
+
[evt: string]: CustomEvent<any>;
|
|
13
|
+
}, {}, {}, string>;
|
|
14
|
+
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
15
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
|
16
|
+
$$bindings?: Bindings;
|
|
17
|
+
} & Exports;
|
|
18
|
+
(internal: unknown, props: {
|
|
19
|
+
$$events?: Events;
|
|
20
|
+
$$slots?: Slots;
|
|
21
|
+
}): Exports & {
|
|
22
|
+
$set?: any;
|
|
23
|
+
$on?: any;
|
|
24
|
+
};
|
|
25
|
+
z_$$bindings?: Bindings;
|
|
26
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* All Finsweet Components solutions Icons
|
|
3
|
+
*/
|
|
4
|
+
import FsConsentIcon from './FsConsentIcon.svelte';
|
|
5
|
+
import FsCursorIcon from './FsCursorIcon.svelte';
|
|
6
|
+
import FsExampleIcon from './FsExampleIcon.svelte';
|
|
7
|
+
import FsInstagramFeedIcon from './FsInstagramFeedIcon.svelte';
|
|
8
|
+
import FsMarqueeIcon from './FsMarqueeIcon.svelte';
|
|
9
|
+
import FsNumberCountIcon from './FsNumberCountIcon.svelte';
|
|
10
|
+
import FsSliderIcon from './FsSliderIcon.svelte';
|
|
11
|
+
import FsTablesIcon from './FsTablesIcon.svelte';
|
|
12
|
+
import FsTabsIcon from './FsTabsIcon.svelte';
|
|
13
|
+
import FsTooltipIcon from './FsTooltipIcon.svelte';
|
|
14
|
+
import FsYouTubeFeedIcon from './FsYouTubeFeedIcon.svelte';
|
|
15
|
+
export { FsConsentIcon, FsCursorIcon, FsExampleIcon, FsInstagramFeedIcon, FsMarqueeIcon, FsNumberCountIcon, FsSliderIcon, FsTablesIcon, FsTabsIcon, FsTooltipIcon, FsYouTubeFeedIcon };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* All Finsweet Components solutions Icons
|
|
3
|
+
*/
|
|
4
|
+
import FsConsentIcon from './FsConsentIcon.svelte';
|
|
5
|
+
import FsCursorIcon from './FsCursorIcon.svelte';
|
|
6
|
+
import FsExampleIcon from './FsExampleIcon.svelte';
|
|
7
|
+
import FsInstagramFeedIcon from './FsInstagramFeedIcon.svelte';
|
|
8
|
+
import FsMarqueeIcon from './FsMarqueeIcon.svelte';
|
|
9
|
+
import FsNumberCountIcon from './FsNumberCountIcon.svelte';
|
|
10
|
+
import FsSliderIcon from './FsSliderIcon.svelte';
|
|
11
|
+
import FsTablesIcon from './FsTablesIcon.svelte';
|
|
12
|
+
import FsTabsIcon from './FsTabsIcon.svelte';
|
|
13
|
+
import FsTooltipIcon from './FsTooltipIcon.svelte';
|
|
14
|
+
import FsYouTubeFeedIcon from './FsYouTubeFeedIcon.svelte';
|
|
15
|
+
export { FsConsentIcon, FsCursorIcon, FsExampleIcon, FsInstagramFeedIcon, FsMarqueeIcon, FsNumberCountIcon, FsSliderIcon, FsTablesIcon, FsTabsIcon, FsTooltipIcon, FsYouTubeFeedIcon };
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* All Finsweet Components solutions Icons
|
|
3
|
+
*/
|
|
4
|
+
export * from './apps';
|
|
5
|
+
/**
|
|
6
|
+
* All Re-usable Icons
|
|
7
|
+
*/
|
|
8
|
+
import AccordionDownArrow from './AccordionDownArrow.svelte';
|
|
9
|
+
import AccordionUpArrow from './AccordionUpArrow.svelte';
|
|
10
|
+
import AccountIcon from './AccountIcon.svelte';
|
|
11
|
+
import ArrowIcon from './ArrowIcon.svelte';
|
|
12
|
+
import BackIcon from './BackIcon.svelte';
|
|
13
|
+
import BodyIcon from './BodyIcon.svelte';
|
|
14
|
+
import BookmarkIcon from './BookmarkIcon.svelte';
|
|
15
|
+
import BoxAddIcon from './BoxAddIcon.svelte';
|
|
16
|
+
import BrushIcon from './BrushIcon.svelte';
|
|
17
|
+
import BuilderEditIcon from './BuilderEditIcon.svelte';
|
|
18
|
+
import BuilderIcon from './BuilderIcon.svelte';
|
|
19
|
+
import CheckboxCheckedIcon from './CheckboxCheckedIcon.svelte';
|
|
20
|
+
import CheckCircleIcon from './CheckCircleIcon.svelte';
|
|
21
|
+
import CheckCircleOutlinedIcon from './CheckCircleOutlinedIcon.svelte';
|
|
22
|
+
import CheckIcon from './CheckIcon.svelte';
|
|
23
|
+
import ChevronIcon from './ChevronIcon.svelte';
|
|
24
|
+
import ChevronRightIcon from './ChevronRightIcon.svelte';
|
|
25
|
+
import CircleIcon from './CircleIcon.svelte';
|
|
26
|
+
import CloseCircleIcon from './CloseCircleIcon.svelte';
|
|
27
|
+
import CloseIcon from './CloseIcon.svelte';
|
|
28
|
+
import CMSIcon from './CMSIcon.svelte';
|
|
29
|
+
import CodeIcon from './CodeIcon.svelte';
|
|
30
|
+
import ComponentsIcon from './ComponentsIcon.svelte';
|
|
31
|
+
import CookieIcon from './CookieIcon.svelte';
|
|
32
|
+
import CopyIcon from './CopyIcon.svelte';
|
|
33
|
+
import CrossIcon from './CrossIcon.svelte';
|
|
34
|
+
import DeleteIcon from './DeleteIcon.svelte';
|
|
35
|
+
import DeleteOutlinedIcon from './DeleteOutlinedIcon.svelte';
|
|
36
|
+
import Desktop from './Desktop.svelte';
|
|
37
|
+
import DesktopWithStar from './DesktopWithStar.svelte';
|
|
38
|
+
import DivBlock from './DivBlock.svelte';
|
|
39
|
+
import DOMElement from './DOMElement.svelte';
|
|
40
|
+
import EditIcon from './EditIcon.svelte';
|
|
41
|
+
import ExpertIcon from './ExpertIcon.svelte';
|
|
42
|
+
import EyeCancelIcon from './EyeCancelIcon.svelte';
|
|
43
|
+
import EyeIcon from './EyeIcon.svelte';
|
|
44
|
+
import FavouriteIcon from './FavouriteIcon.svelte';
|
|
45
|
+
import FileUploadIcon from './FileUploadIcon.svelte';
|
|
46
|
+
import FilterIcon from './FilterIcon.svelte';
|
|
47
|
+
import FinsweetLibraryIcon from './FinsweetLibraryIcon.svelte';
|
|
48
|
+
import FinsweetLogoIcon from './FinsweetLogoIcon.svelte';
|
|
49
|
+
import FolderIcon from './FolderIcon.svelte';
|
|
50
|
+
import FolderOutlinedIcon from './FolderOutlinedIcon.svelte';
|
|
51
|
+
import FolderPlusIcon from './FolderPlusIcon.svelte';
|
|
52
|
+
import FreeComponentIcon from './FreeComponentIcon.svelte';
|
|
53
|
+
import GlobeIcon from './GlobeIcon.svelte';
|
|
54
|
+
import HandPointUpIcon from './HandPointUpIcon.svelte';
|
|
55
|
+
import HeartIcon from './HeartIcon.svelte';
|
|
56
|
+
import HeartIconOutlined from './HeartIconOutlined.svelte';
|
|
57
|
+
import HelpAltIcon from './HelpAltIcon.svelte';
|
|
58
|
+
import HelpIcon from './HelpIcon.svelte';
|
|
59
|
+
import HomeIcon from './HomeIcon.svelte';
|
|
60
|
+
import InfoIcon from './InfoIcon.svelte';
|
|
61
|
+
import ListIcon from './ListIcon.svelte';
|
|
62
|
+
import LockIcon from './LockIcon.svelte';
|
|
63
|
+
import MessageIcon from './MessageIcon.svelte';
|
|
64
|
+
import MobileLandscape from './MobileLandscape.svelte';
|
|
65
|
+
import MobilePortrait from './MobilePortrait.svelte';
|
|
66
|
+
import NavigatorIcon from './NavigatorIcon.svelte';
|
|
67
|
+
import OpenBookIcon from './OpenBookIcon.svelte';
|
|
68
|
+
import PageDraftIcon from './PageDraftIcon.svelte';
|
|
69
|
+
import PageIcon from './PageIcon.svelte';
|
|
70
|
+
import PageLockedIcon from './PageLockedIcon.svelte';
|
|
71
|
+
import PageOutlinedIcon from './PageOutlinedIcon.svelte';
|
|
72
|
+
import PageSectionIcon from './PageSectionIcon.svelte';
|
|
73
|
+
import Pencil from './Pencil.svelte';
|
|
74
|
+
import PencilOutlinedIcon from './PencilOutlinedIcon.svelte';
|
|
75
|
+
import PinIcon from './PinIcon.svelte';
|
|
76
|
+
import PlayIcon from './PlayIcon.svelte';
|
|
77
|
+
import PlusIcon from './PlusIcon.svelte';
|
|
78
|
+
import PreviewEyeIcon from './PreviewEyeIcon.svelte';
|
|
79
|
+
import ProfileIcon from './ProfileIcon.svelte';
|
|
80
|
+
import PublishCancelIcon from './PublishCancelIcon.svelte';
|
|
81
|
+
import PublishIcon from './PublishIcon.svelte';
|
|
82
|
+
import RefreshIcon from './RefreshIcon.svelte';
|
|
83
|
+
import RepairIcon from './RepairIcon.svelte';
|
|
84
|
+
import SaveIcon from './SaveIcon.svelte';
|
|
85
|
+
import SearchIcon from './SearchIcon.svelte';
|
|
86
|
+
import SelectIcon from './SelectIcon.svelte';
|
|
87
|
+
import SettingsIcon from './SettingsIcon.svelte';
|
|
88
|
+
import SidebarToggleIcon from './SidebarToggleIcon.svelte';
|
|
89
|
+
import SliderAppIcon from './SliderAppIcon.svelte';
|
|
90
|
+
import SquareCheckIcon from './SquareCheckIcon.svelte';
|
|
91
|
+
import StarIcon from './StarIcon.svelte';
|
|
92
|
+
import StarOutlinedIcon from './StarOutlinedIcon.svelte';
|
|
93
|
+
import StaticContentIcon from './StaticContentIcon.svelte';
|
|
94
|
+
import SubtractIcon from './SubtractIcon.svelte';
|
|
95
|
+
import TableAppIcon from './TableAppIcon.svelte';
|
|
96
|
+
import Tablet from './Tablet.svelte';
|
|
97
|
+
import TabletPreview from './TabletPreview.svelte';
|
|
98
|
+
import TabNewIcon from './TabNewIcon.svelte';
|
|
99
|
+
import TabsIcon from './TabsIcon.svelte';
|
|
100
|
+
import ThreeDotsIcon from './ThreeDotsIcon.svelte';
|
|
101
|
+
import TimesIcon from './TimesIcon.svelte';
|
|
102
|
+
import TooltipInfoCircleFilled from './TooltipInfoCircleFilled.svelte';
|
|
103
|
+
import ToolTipInfoCircleIcon from './ToolTipInfoCircleIcon.svelte';
|
|
104
|
+
import TooltipInfoSquaredIcon from './TooltipInfoSquaredIcon.svelte';
|
|
105
|
+
import TriangleDownIcon from './TriangleDownIcon.svelte';
|
|
106
|
+
import TriangleDownIconToggle from './TriangleDownIconToggle.svelte';
|
|
107
|
+
import UndoIcon from './UndoIcon.svelte';
|
|
108
|
+
import UploadFileIcon from './UploadFileIcon.svelte';
|
|
109
|
+
import WarningCircleIcon from './WarningCircleIcon.svelte';
|
|
110
|
+
import WarningCircleOutlineIcon from './WarningCircleOutlineIcon.svelte';
|
|
111
|
+
import WarningTriangleIcon from './WarningTriangleIcon.svelte';
|
|
112
|
+
import WarningTriangleOutlineIcon from './WarningTriangleOutlineIcon.svelte';
|
|
113
|
+
import WebflowComponentIcon from './WebflowComponentIcon.svelte';
|
|
114
|
+
import WebflowComponentOutlinedIcon from './WebflowComponentOutlinedIcon.svelte';
|
|
115
|
+
import WebflowInsightsIcon from './WebflowInsightsIcon.svelte';
|
|
116
|
+
import WizedLogoIcon from './WizedLogoIcon.svelte';
|
|
117
|
+
import XL from './XL.svelte';
|
|
118
|
+
import XXL from './XXL.svelte';
|
|
119
|
+
import XXXL from './XXXL.svelte';
|
|
120
|
+
export { AccordionDownArrow, AccordionUpArrow, AccountIcon, ArrowIcon, BackIcon, BodyIcon, BookmarkIcon, BoxAddIcon, BrushIcon, BuilderEditIcon, BuilderIcon, CheckboxCheckedIcon, CheckCircleIcon, CheckCircleOutlinedIcon, CheckIcon, ChevronIcon, ChevronRightIcon, CircleIcon, CloseCircleIcon, CloseIcon, CMSIcon, CodeIcon, ComponentsIcon, CookieIcon, CopyIcon, CrossIcon, DeleteIcon, DeleteOutlinedIcon, Desktop, DesktopWithStar, DivBlock, DOMElement, EditIcon, ExpertIcon, EyeCancelIcon, EyeIcon, FavouriteIcon, FileUploadIcon, FilterIcon, FinsweetLibraryIcon, FinsweetLogoIcon, FolderIcon, FolderOutlinedIcon, FolderPlusIcon, FreeComponentIcon, GlobeIcon, HandPointUpIcon, HeartIcon, HeartIconOutlined, HelpAltIcon, HelpIcon, HomeIcon, InfoIcon, ListIcon, LockIcon, MessageIcon, MobileLandscape, MobilePortrait, NavigatorIcon, OpenBookIcon, PageDraftIcon, PageIcon, PageLockedIcon, PageOutlinedIcon, PageSectionIcon, Pencil, PencilOutlinedIcon, PinIcon, PlayIcon, PlusIcon, PreviewEyeIcon, ProfileIcon, PublishCancelIcon, PublishIcon, RefreshIcon, RepairIcon, SaveIcon, SearchIcon, SelectIcon, SettingsIcon, SidebarToggleIcon, SliderAppIcon, SquareCheckIcon, StarIcon, StarOutlinedIcon, StaticContentIcon, SubtractIcon, TableAppIcon, Tablet, TabletPreview, TabNewIcon, TabsIcon, ThreeDotsIcon, TimesIcon, TooltipInfoCircleFilled, ToolTipInfoCircleIcon, TooltipInfoSquaredIcon, TriangleDownIcon, TriangleDownIconToggle, UndoIcon, UploadFileIcon, WarningCircleIcon, WarningCircleOutlineIcon, WarningTriangleIcon, WarningTriangleOutlineIcon, WebflowComponentIcon, WebflowComponentOutlinedIcon, WebflowInsightsIcon, WizedLogoIcon, XL, XXL, XXXL };
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* All Finsweet Components solutions Icons
|
|
3
|
+
*/
|
|
4
|
+
export * from './apps';
|
|
5
|
+
/**
|
|
6
|
+
* All Re-usable Icons
|
|
7
|
+
*/
|
|
8
|
+
import AccordionDownArrow from './AccordionDownArrow.svelte';
|
|
9
|
+
import AccordionUpArrow from './AccordionUpArrow.svelte';
|
|
10
|
+
import AccountIcon from './AccountIcon.svelte';
|
|
11
|
+
import ArrowIcon from './ArrowIcon.svelte';
|
|
12
|
+
import BackIcon from './BackIcon.svelte';
|
|
13
|
+
import BodyIcon from './BodyIcon.svelte';
|
|
14
|
+
import BookmarkIcon from './BookmarkIcon.svelte';
|
|
15
|
+
import BoxAddIcon from './BoxAddIcon.svelte';
|
|
16
|
+
import BrushIcon from './BrushIcon.svelte';
|
|
17
|
+
import BuilderEditIcon from './BuilderEditIcon.svelte';
|
|
18
|
+
import BuilderIcon from './BuilderIcon.svelte';
|
|
19
|
+
import CheckboxCheckedIcon from './CheckboxCheckedIcon.svelte';
|
|
20
|
+
import CheckCircleIcon from './CheckCircleIcon.svelte';
|
|
21
|
+
import CheckCircleOutlinedIcon from './CheckCircleOutlinedIcon.svelte';
|
|
22
|
+
import CheckIcon from './CheckIcon.svelte';
|
|
23
|
+
import ChevronIcon from './ChevronIcon.svelte';
|
|
24
|
+
import ChevronRightIcon from './ChevronRightIcon.svelte';
|
|
25
|
+
import CircleIcon from './CircleIcon.svelte';
|
|
26
|
+
import CloseCircleIcon from './CloseCircleIcon.svelte';
|
|
27
|
+
import CloseIcon from './CloseIcon.svelte';
|
|
28
|
+
import CMSIcon from './CMSIcon.svelte';
|
|
29
|
+
import CodeIcon from './CodeIcon.svelte';
|
|
30
|
+
import ComponentsIcon from './ComponentsIcon.svelte';
|
|
31
|
+
import CookieIcon from './CookieIcon.svelte';
|
|
32
|
+
import CopyIcon from './CopyIcon.svelte';
|
|
33
|
+
import CrossIcon from './CrossIcon.svelte';
|
|
34
|
+
import DeleteIcon from './DeleteIcon.svelte';
|
|
35
|
+
import DeleteOutlinedIcon from './DeleteOutlinedIcon.svelte';
|
|
36
|
+
import Desktop from './Desktop.svelte';
|
|
37
|
+
import DesktopWithStar from './DesktopWithStar.svelte';
|
|
38
|
+
import DivBlock from './DivBlock.svelte';
|
|
39
|
+
import DOMElement from './DOMElement.svelte';
|
|
40
|
+
import EditIcon from './EditIcon.svelte';
|
|
41
|
+
import ExpertIcon from './ExpertIcon.svelte';
|
|
42
|
+
import EyeCancelIcon from './EyeCancelIcon.svelte';
|
|
43
|
+
import EyeIcon from './EyeIcon.svelte';
|
|
44
|
+
import FavouriteIcon from './FavouriteIcon.svelte';
|
|
45
|
+
import FileUploadIcon from './FileUploadIcon.svelte';
|
|
46
|
+
import FilterIcon from './FilterIcon.svelte';
|
|
47
|
+
import FinsweetLibraryIcon from './FinsweetLibraryIcon.svelte';
|
|
48
|
+
import FinsweetLogoIcon from './FinsweetLogoIcon.svelte';
|
|
49
|
+
import FolderIcon from './FolderIcon.svelte';
|
|
50
|
+
import FolderOutlinedIcon from './FolderOutlinedIcon.svelte';
|
|
51
|
+
import FolderPlusIcon from './FolderPlusIcon.svelte';
|
|
52
|
+
import FreeComponentIcon from './FreeComponentIcon.svelte';
|
|
53
|
+
import GlobeIcon from './GlobeIcon.svelte';
|
|
54
|
+
import HandPointUpIcon from './HandPointUpIcon.svelte';
|
|
55
|
+
import HeartIcon from './HeartIcon.svelte';
|
|
56
|
+
import HeartIconOutlined from './HeartIconOutlined.svelte';
|
|
57
|
+
import HelpAltIcon from './HelpAltIcon.svelte';
|
|
58
|
+
import HelpIcon from './HelpIcon.svelte';
|
|
59
|
+
import HomeIcon from './HomeIcon.svelte';
|
|
60
|
+
import InfoIcon from './InfoIcon.svelte';
|
|
61
|
+
import ListIcon from './ListIcon.svelte';
|
|
62
|
+
import LockIcon from './LockIcon.svelte';
|
|
63
|
+
import MessageIcon from './MessageIcon.svelte';
|
|
64
|
+
import MobileLandscape from './MobileLandscape.svelte';
|
|
65
|
+
import MobilePortrait from './MobilePortrait.svelte';
|
|
66
|
+
import NavigatorIcon from './NavigatorIcon.svelte';
|
|
67
|
+
import OpenBookIcon from './OpenBookIcon.svelte';
|
|
68
|
+
import PageDraftIcon from './PageDraftIcon.svelte';
|
|
69
|
+
import PageIcon from './PageIcon.svelte';
|
|
70
|
+
import PageLockedIcon from './PageLockedIcon.svelte';
|
|
71
|
+
import PageOutlinedIcon from './PageOutlinedIcon.svelte';
|
|
72
|
+
import PageSectionIcon from './PageSectionIcon.svelte';
|
|
73
|
+
import Pencil from './Pencil.svelte';
|
|
74
|
+
import PencilOutlinedIcon from './PencilOutlinedIcon.svelte';
|
|
75
|
+
import PinIcon from './PinIcon.svelte';
|
|
76
|
+
import PlayIcon from './PlayIcon.svelte';
|
|
77
|
+
import PlusIcon from './PlusIcon.svelte';
|
|
78
|
+
import PreviewEyeIcon from './PreviewEyeIcon.svelte';
|
|
79
|
+
import ProfileIcon from './ProfileIcon.svelte';
|
|
80
|
+
import PublishCancelIcon from './PublishCancelIcon.svelte';
|
|
81
|
+
import PublishIcon from './PublishIcon.svelte';
|
|
82
|
+
import RefreshIcon from './RefreshIcon.svelte';
|
|
83
|
+
import RepairIcon from './RepairIcon.svelte';
|
|
84
|
+
import SaveIcon from './SaveIcon.svelte';
|
|
85
|
+
import SearchIcon from './SearchIcon.svelte';
|
|
86
|
+
import SelectIcon from './SelectIcon.svelte';
|
|
87
|
+
import SettingsIcon from './SettingsIcon.svelte';
|
|
88
|
+
import SidebarToggleIcon from './SidebarToggleIcon.svelte';
|
|
89
|
+
import SliderAppIcon from './SliderAppIcon.svelte';
|
|
90
|
+
import SquareCheckIcon from './SquareCheckIcon.svelte';
|
|
91
|
+
import StarIcon from './StarIcon.svelte';
|
|
92
|
+
import StarOutlinedIcon from './StarOutlinedIcon.svelte';
|
|
93
|
+
import StaticContentIcon from './StaticContentIcon.svelte';
|
|
94
|
+
import SubtractIcon from './SubtractIcon.svelte';
|
|
95
|
+
import TableAppIcon from './TableAppIcon.svelte';
|
|
96
|
+
import Tablet from './Tablet.svelte';
|
|
97
|
+
import TabletPreview from './TabletPreview.svelte';
|
|
98
|
+
import TabNewIcon from './TabNewIcon.svelte';
|
|
99
|
+
import TabsIcon from './TabsIcon.svelte';
|
|
100
|
+
import ThreeDotsIcon from './ThreeDotsIcon.svelte';
|
|
101
|
+
import TimesIcon from './TimesIcon.svelte';
|
|
102
|
+
import TooltipInfoCircleFilled from './TooltipInfoCircleFilled.svelte';
|
|
103
|
+
import ToolTipInfoCircleIcon from './ToolTipInfoCircleIcon.svelte';
|
|
104
|
+
import TooltipInfoSquaredIcon from './TooltipInfoSquaredIcon.svelte';
|
|
105
|
+
import TriangleDownIcon from './TriangleDownIcon.svelte';
|
|
106
|
+
import TriangleDownIconToggle from './TriangleDownIconToggle.svelte';
|
|
107
|
+
import UndoIcon from './UndoIcon.svelte';
|
|
108
|
+
import UploadFileIcon from './UploadFileIcon.svelte';
|
|
109
|
+
import WarningCircleIcon from './WarningCircleIcon.svelte';
|
|
110
|
+
import WarningCircleOutlineIcon from './WarningCircleOutlineIcon.svelte';
|
|
111
|
+
import WarningTriangleIcon from './WarningTriangleIcon.svelte';
|
|
112
|
+
import WarningTriangleOutlineIcon from './WarningTriangleOutlineIcon.svelte';
|
|
113
|
+
import WebflowComponentIcon from './WebflowComponentIcon.svelte';
|
|
114
|
+
import WebflowComponentOutlinedIcon from './WebflowComponentOutlinedIcon.svelte';
|
|
115
|
+
import WebflowInsightsIcon from './WebflowInsightsIcon.svelte';
|
|
116
|
+
import WizedLogoIcon from './WizedLogoIcon.svelte';
|
|
117
|
+
import XL from './XL.svelte';
|
|
118
|
+
import XXL from './XXL.svelte';
|
|
119
|
+
import XXXL from './XXXL.svelte';
|
|
120
|
+
export { AccordionDownArrow, AccordionUpArrow, AccountIcon, ArrowIcon, BackIcon, BodyIcon, BookmarkIcon, BoxAddIcon, BrushIcon, BuilderEditIcon, BuilderIcon, CheckboxCheckedIcon, CheckCircleIcon, CheckCircleOutlinedIcon, CheckIcon, ChevronIcon, ChevronRightIcon, CircleIcon, CloseCircleIcon, CloseIcon, CMSIcon, CodeIcon, ComponentsIcon, CookieIcon, CopyIcon, CrossIcon, DeleteIcon, DeleteOutlinedIcon, Desktop, DesktopWithStar, DivBlock, DOMElement, EditIcon, ExpertIcon, EyeCancelIcon, EyeIcon, FavouriteIcon, FileUploadIcon, FilterIcon, FinsweetLibraryIcon, FinsweetLogoIcon, FolderIcon, FolderOutlinedIcon, FolderPlusIcon, FreeComponentIcon, GlobeIcon, HandPointUpIcon, HeartIcon, HeartIconOutlined, HelpAltIcon, HelpIcon, HomeIcon, InfoIcon, ListIcon, LockIcon, MessageIcon, MobileLandscape, MobilePortrait, NavigatorIcon, OpenBookIcon, PageDraftIcon, PageIcon, PageLockedIcon, PageOutlinedIcon, PageSectionIcon, Pencil, PencilOutlinedIcon, PinIcon, PlayIcon, PlusIcon, PreviewEyeIcon, ProfileIcon, PublishCancelIcon, PublishIcon, RefreshIcon, RepairIcon, SaveIcon, SearchIcon, SelectIcon, SettingsIcon, SidebarToggleIcon, SliderAppIcon, SquareCheckIcon, StarIcon, StarOutlinedIcon, StaticContentIcon, SubtractIcon, TableAppIcon, Tablet, TabletPreview, TabNewIcon, TabsIcon, ThreeDotsIcon, TimesIcon, TooltipInfoCircleFilled, ToolTipInfoCircleIcon, TooltipInfoSquaredIcon, TriangleDownIcon, TriangleDownIconToggle, UndoIcon, UploadFileIcon, WarningCircleIcon, WarningCircleOutlineIcon, WarningTriangleIcon, WarningTriangleOutlineIcon, WebflowComponentIcon, WebflowComponentOutlinedIcon, WebflowInsightsIcon, WizedLogoIcon, XL, XXL, XXXL };
|