@noxlovette/material 0.1.0
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/actions/clickOutside.d.ts +3 -0
- package/dist/actions/clickOutside.js +13 -0
- package/dist/actions/floating.d.ts +20 -0
- package/dist/actions/floating.js +87 -0
- package/dist/actions/index.d.ts +4 -0
- package/dist/actions/index.js +4 -0
- package/dist/actions/keyboard.d.ts +3 -0
- package/dist/actions/keyboard.js +14 -0
- package/dist/actions/positionFloating.d.ts +10 -0
- package/dist/actions/positionFloating.js +59 -0
- package/dist/animation/containerTransform.d.ts +13 -0
- package/dist/animation/containerTransform.js +138 -0
- package/dist/animation/easing.d.ts +6 -0
- package/dist/animation/easing.js +78 -0
- package/dist/animation/enterExit.d.ts +3 -0
- package/dist/animation/enterExit.js +23 -0
- package/dist/animation/index.d.ts +5 -0
- package/dist/animation/index.js +5 -0
- package/dist/animation/outroClass.d.ts +3 -0
- package/dist/animation/outroClass.js +20 -0
- package/dist/animation/shapes.d.ts +35 -0
- package/dist/animation/shapes.js +37 -0
- package/dist/animation/shapesAnimatable.d.ts +35 -0
- package/dist/animation/shapesAnimatable.js +41 -0
- package/dist/animation/shapesAnimatableSmall.d.ts +29 -0
- package/dist/animation/shapesAnimatableSmall.js +33 -0
- package/dist/animation/sharedAxisTransition.d.ts +38 -0
- package/dist/animation/sharedAxisTransition.js +23 -0
- package/dist/animation/transition.d.ts +4 -0
- package/dist/animation/transition.js +4 -0
- package/dist/animation/transitionTypes.d.ts +8 -0
- package/dist/animation/transitionTypes.js +1 -0
- package/dist/components/badge/Badge.svelte +26 -0
- package/dist/components/badge/Badge.svelte.d.ts +12 -0
- package/dist/components/badge/index.d.ts +3 -0
- package/dist/components/badge/index.js +6 -0
- package/dist/components/badge/theme.d.ts +16 -0
- package/dist/components/badge/theme.js +10 -0
- package/dist/components/badge/types.d.ts +18 -0
- package/dist/components/badge/types.js +1 -0
- package/dist/components/buttons/Button.svelte +53 -0
- package/dist/components/buttons/Button.svelte.d.ts +16 -0
- package/dist/components/buttons/ButtonIcon.svelte +79 -0
- package/dist/components/buttons/ButtonIcon.svelte.d.ts +14 -0
- package/dist/components/buttons/FAB.svelte +81 -0
- package/dist/components/buttons/FAB.svelte.d.ts +14 -0
- package/dist/components/buttons/FABMenu.svelte +86 -0
- package/dist/components/buttons/FABMenu.svelte.d.ts +8 -0
- package/dist/components/buttons/FABMenuItem.svelte +38 -0
- package/dist/components/buttons/FABMenuItem.svelte.d.ts +5 -0
- package/dist/components/buttons/Toggle.svelte +62 -0
- package/dist/components/buttons/Toggle.svelte.d.ts +11 -0
- package/dist/components/buttons/connected/ConnectedButtons.svelte +14 -0
- package/dist/components/buttons/connected/ConnectedButtons.svelte.d.ts +8 -0
- package/dist/components/buttons/connected/index.d.ts +2 -0
- package/dist/components/buttons/connected/index.js +5 -0
- package/dist/components/buttons/connected/types.d.ts +14 -0
- package/dist/components/buttons/connected/types.js +1 -0
- package/dist/components/buttons/index.d.ts +9 -0
- package/dist/components/buttons/index.js +13 -0
- package/dist/components/buttons/theme.d.ts +539 -0
- package/dist/components/buttons/theme.js +495 -0
- package/dist/components/buttons/types.d.ts +201 -0
- package/dist/components/buttons/types.js +1 -0
- package/dist/components/cards/Card.svelte +39 -0
- package/dist/components/cards/Card.svelte.d.ts +13 -0
- package/dist/components/cards/index.d.ts +3 -0
- package/dist/components/cards/index.js +6 -0
- package/dist/components/cards/theme.d.ts +37 -0
- package/dist/components/cards/theme.js +34 -0
- package/dist/components/cards/types.d.ts +31 -0
- package/dist/components/cards/types.js +1 -0
- package/dist/components/containers/app/App.svelte +32 -0
- package/dist/components/containers/app/App.svelte.d.ts +8 -0
- package/dist/components/containers/app/index.d.ts +3 -0
- package/dist/components/containers/app/index.js +6 -0
- package/dist/components/containers/app/theme.d.ts +3 -0
- package/dist/components/containers/app/theme.js +4 -0
- package/dist/components/containers/app/types.d.ts +25 -0
- package/dist/components/containers/app/types.js +1 -0
- package/dist/components/containers/bottom-sheet/BottomSheet.svelte +125 -0
- package/dist/components/containers/bottom-sheet/BottomSheet.svelte.d.ts +12 -0
- package/dist/components/containers/bottom-sheet/index.d.ts +2 -0
- package/dist/components/containers/bottom-sheet/index.js +5 -0
- package/dist/components/containers/bottom-sheet/types.d.ts +16 -0
- package/dist/components/containers/bottom-sheet/types.js +1 -0
- package/dist/components/containers/context-menu/ContextMenu.svelte +152 -0
- package/dist/components/containers/context-menu/ContextMenu.svelte.d.ts +23 -0
- package/dist/components/containers/context-menu/index.d.ts +3 -0
- package/dist/components/containers/context-menu/index.js +6 -0
- package/dist/components/containers/context-menu/theme.d.ts +51 -0
- package/dist/components/containers/context-menu/theme.js +21 -0
- package/dist/components/containers/context-menu/types.d.ts +45 -0
- package/dist/components/containers/context-menu/types.js +1 -0
- package/dist/components/containers/dialogue/Dialogue.svelte +134 -0
- package/dist/components/containers/dialogue/Dialogue.svelte.d.ts +14 -0
- package/dist/components/containers/dialogue/index.d.ts +3 -0
- package/dist/components/containers/dialogue/index.js +6 -0
- package/dist/components/containers/dialogue/theme.d.ts +51 -0
- package/dist/components/containers/dialogue/theme.js +10 -0
- package/dist/components/containers/dialogue/types.d.ts +46 -0
- package/dist/components/containers/dialogue/types.js +1 -0
- package/dist/components/containers/divider/Divider.svelte +100 -0
- package/dist/components/containers/divider/Divider.svelte.d.ts +13 -0
- package/dist/components/containers/divider/index.d.ts +3 -0
- package/dist/components/containers/divider/index.js +6 -0
- package/dist/components/containers/divider/theme.d.ts +33 -0
- package/dist/components/containers/divider/theme.js +15 -0
- package/dist/components/containers/divider/types.d.ts +27 -0
- package/dist/components/containers/divider/types.js +1 -0
- package/dist/components/containers/index.d.ts +15 -0
- package/dist/components/containers/index.js +17 -0
- package/dist/components/containers/link-preview/LinkPreview.svelte +64 -0
- package/dist/components/containers/link-preview/LinkPreview.svelte.d.ts +10 -0
- package/dist/components/containers/link-preview/index.d.ts +3 -0
- package/dist/components/containers/link-preview/index.js +6 -0
- package/dist/components/containers/link-preview/theme.d.ts +33 -0
- package/dist/components/containers/link-preview/theme.js +7 -0
- package/dist/components/containers/link-preview/types.d.ts +22 -0
- package/dist/components/containers/link-preview/types.js +1 -0
- package/dist/components/containers/list/ListItem.svelte +79 -0
- package/dist/components/containers/list/ListItem.svelte.d.ts +4 -0
- package/dist/components/containers/list/index.d.ts +3 -0
- package/dist/components/containers/list/index.js +6 -0
- package/dist/components/containers/list/theme.d.ts +67 -0
- package/dist/components/containers/list/theme.js +27 -0
- package/dist/components/containers/list/types.d.ts +48 -0
- package/dist/components/containers/list/types.js +1 -0
- package/dist/components/containers/menu/Menu.svelte +70 -0
- package/dist/components/containers/menu/Menu.svelte.d.ts +20 -0
- package/dist/components/containers/menu/index.d.ts +2 -0
- package/dist/components/containers/menu/index.js +5 -0
- package/dist/components/containers/menu/types.d.ts +40 -0
- package/dist/components/containers/menu/types.js +1 -0
- package/dist/components/containers/menu-item/MenuItem.svelte +75 -0
- package/dist/components/containers/menu-item/MenuItem.svelte.d.ts +20 -0
- package/dist/components/containers/menu-item/index.d.ts +2 -0
- package/dist/components/containers/menu-item/index.js +5 -0
- package/dist/components/containers/menu-item/types.d.ts +36 -0
- package/dist/components/containers/menu-item/types.js +1 -0
- package/dist/components/containers/merger/InputMerger.svelte +29 -0
- package/dist/components/containers/merger/InputMerger.svelte.d.ts +14 -0
- package/dist/components/containers/merger/index.d.ts +1 -0
- package/dist/components/containers/merger/index.js +3 -0
- package/dist/components/containers/panes/SinglePane.svelte +29 -0
- package/dist/components/containers/panes/SinglePane.svelte.d.ts +5 -0
- package/dist/components/containers/panes/SplitPane.svelte +132 -0
- package/dist/components/containers/panes/SplitPane.svelte.d.ts +5 -0
- package/dist/components/containers/panes/SupportingPane.svelte +81 -0
- package/dist/components/containers/panes/SupportingPane.svelte.d.ts +9 -0
- package/dist/components/containers/panes/index.d.ts +5 -0
- package/dist/components/containers/panes/index.js +8 -0
- package/dist/components/containers/panes/theme.d.ts +331 -0
- package/dist/components/containers/panes/theme.js +152 -0
- package/dist/components/containers/panes/types.d.ts +81 -0
- package/dist/components/containers/panes/types.js +1 -0
- package/dist/components/containers/popover/Popover.svelte +82 -0
- package/dist/components/containers/popover/Popover.svelte.d.ts +10 -0
- package/dist/components/containers/popover/index.d.ts +3 -0
- package/dist/components/containers/popover/index.js +6 -0
- package/dist/components/containers/popover/theme.d.ts +51 -0
- package/dist/components/containers/popover/theme.js +10 -0
- package/dist/components/containers/popover/types.d.ts +22 -0
- package/dist/components/containers/popover/types.js +1 -0
- package/dist/components/containers/scroll-area/ScrollArea.svelte +41 -0
- package/dist/components/containers/scroll-area/ScrollArea.svelte.d.ts +5 -0
- package/dist/components/containers/scroll-area/index.d.ts +3 -0
- package/dist/components/containers/scroll-area/index.js +6 -0
- package/dist/components/containers/scroll-area/theme.d.ts +55 -0
- package/dist/components/containers/scroll-area/theme.js +26 -0
- package/dist/components/containers/scroll-area/types.d.ts +26 -0
- package/dist/components/containers/scroll-area/types.js +1 -0
- package/dist/components/containers/side-sheet/SideSheet.svelte +21 -0
- package/dist/components/containers/side-sheet/SideSheet.svelte.d.ts +9 -0
- package/dist/components/containers/side-sheet/index.d.ts +2 -0
- package/dist/components/containers/side-sheet/index.js +5 -0
- package/dist/components/containers/side-sheet/types.d.ts +18 -0
- package/dist/components/containers/side-sheet/types.js +1 -0
- package/dist/components/containers/stack/HStack.svelte +23 -0
- package/dist/components/containers/stack/HStack.svelte.d.ts +5 -0
- package/dist/components/containers/stack/VStack.svelte +23 -0
- package/dist/components/containers/stack/VStack.svelte.d.ts +5 -0
- package/dist/components/containers/stack/index.d.ts +4 -0
- package/dist/components/containers/stack/index.js +7 -0
- package/dist/components/containers/stack/theme.d.ts +60 -0
- package/dist/components/containers/stack/theme.js +24 -0
- package/dist/components/containers/stack/types.d.ts +12 -0
- package/dist/components/containers/stack/types.js +1 -0
- package/dist/components/date/DateField.svelte +155 -0
- package/dist/components/date/DateField.svelte.d.ts +12 -0
- package/dist/components/date/DateRangeField.svelte +211 -0
- package/dist/components/date/DateRangeField.svelte.d.ts +13 -0
- package/dist/components/date/index.d.ts +4 -0
- package/dist/components/date/index.js +7 -0
- package/dist/components/date/theme.d.ts +158 -0
- package/dist/components/date/theme.js +149 -0
- package/dist/components/date/types.d.ts +64 -0
- package/dist/components/date/types.js +1 -0
- package/dist/components/forms/checkbox/Checkbox.svelte +66 -0
- package/dist/components/forms/checkbox/Checkbox.svelte.d.ts +10 -0
- package/dist/components/forms/checkbox/index.d.ts +3 -0
- package/dist/components/forms/checkbox/index.js +6 -0
- package/dist/components/forms/checkbox/theme.d.ts +141 -0
- package/dist/components/forms/checkbox/theme.js +69 -0
- package/dist/components/forms/checkbox/types.d.ts +39 -0
- package/dist/components/forms/checkbox/types.js +1 -0
- package/dist/components/forms/command/Command.svelte +14 -0
- package/dist/components/forms/command/Command.svelte.d.ts +5 -0
- package/dist/components/forms/command/CommandEmpty.svelte +14 -0
- package/dist/components/forms/command/CommandEmpty.svelte.d.ts +4 -0
- package/dist/components/forms/command/CommandGroup.svelte +17 -0
- package/dist/components/forms/command/CommandGroup.svelte.d.ts +4 -0
- package/dist/components/forms/command/CommandInput.svelte +18 -0
- package/dist/components/forms/command/CommandInput.svelte.d.ts +4 -0
- package/dist/components/forms/command/CommandItem.svelte +14 -0
- package/dist/components/forms/command/CommandItem.svelte.d.ts +4 -0
- package/dist/components/forms/command/CommandList.svelte +14 -0
- package/dist/components/forms/command/CommandList.svelte.d.ts +4 -0
- package/dist/components/forms/command/CommandSeparator.svelte +12 -0
- package/dist/components/forms/command/CommandSeparator.svelte.d.ts +4 -0
- package/dist/components/forms/command/index.d.ts +9 -0
- package/dist/components/forms/command/index.js +12 -0
- package/dist/components/forms/command/theme.d.ts +81 -0
- package/dist/components/forms/command/theme.js +15 -0
- package/dist/components/forms/command/types.d.ts +31 -0
- package/dist/components/forms/command/types.js +1 -0
- package/dist/components/forms/index.d.ts +12 -0
- package/dist/components/forms/index.js +14 -0
- package/dist/components/forms/multipart/Multipart.svelte +532 -0
- package/dist/components/forms/multipart/Multipart.svelte.d.ts +51 -0
- package/dist/components/forms/multipart/index.d.ts +1 -0
- package/dist/components/forms/multipart/index.js +3 -0
- package/dist/components/forms/pin/PinInput.svelte +51 -0
- package/dist/components/forms/pin/PinInput.svelte.d.ts +10 -0
- package/dist/components/forms/pin/index.d.ts +3 -0
- package/dist/components/forms/pin/index.js +6 -0
- package/dist/components/forms/pin/theme.d.ts +60 -0
- package/dist/components/forms/pin/theme.js +33 -0
- package/dist/components/forms/pin/types.d.ts +29 -0
- package/dist/components/forms/pin/types.js +1 -0
- package/dist/components/forms/radio-group/RadioGroup.svelte +61 -0
- package/dist/components/forms/radio-group/RadioGroup.svelte.d.ts +10 -0
- package/dist/components/forms/radio-group/index.d.ts +3 -0
- package/dist/components/forms/radio-group/index.js +6 -0
- package/dist/components/forms/radio-group/theme.d.ts +132 -0
- package/dist/components/forms/radio-group/theme.js +48 -0
- package/dist/components/forms/radio-group/types.d.ts +24 -0
- package/dist/components/forms/radio-group/types.js +1 -0
- package/dist/components/forms/search/Search.svelte +52 -0
- package/dist/components/forms/search/Search.svelte.d.ts +11 -0
- package/dist/components/forms/search/index.d.ts +3 -0
- package/dist/components/forms/search/index.js +6 -0
- package/dist/components/forms/search/theme.d.ts +33 -0
- package/dist/components/forms/search/theme.js +15 -0
- package/dist/components/forms/search/types.d.ts +34 -0
- package/dist/components/forms/search/types.js +1 -0
- package/dist/components/forms/select/Select.svelte +141 -0
- package/dist/components/forms/select/Select.svelte.d.ts +13 -0
- package/dist/components/forms/select/SelectGroup.svelte +19 -0
- package/dist/components/forms/select/SelectGroup.svelte.d.ts +8 -0
- package/dist/components/forms/select/SelectItem.svelte +35 -0
- package/dist/components/forms/select/SelectItem.svelte.d.ts +14 -0
- package/dist/components/forms/select/SelectLabel.svelte +19 -0
- package/dist/components/forms/select/SelectLabel.svelte.d.ts +8 -0
- package/dist/components/forms/select/SelectSeparator.svelte +13 -0
- package/dist/components/forms/select/SelectSeparator.svelte.d.ts +6 -0
- package/dist/components/forms/select/index.d.ts +7 -0
- package/dist/components/forms/select/index.js +10 -0
- package/dist/components/forms/select/theme.d.ts +84 -0
- package/dist/components/forms/select/theme.js +87 -0
- package/dist/components/forms/select/types.d.ts +63 -0
- package/dist/components/forms/select/types.js +1 -0
- package/dist/components/forms/slider/Slider.svelte +201 -0
- package/dist/components/forms/slider/Slider.svelte.d.ts +12 -0
- package/dist/components/forms/slider/index.d.ts +3 -0
- package/dist/components/forms/slider/index.js +6 -0
- package/dist/components/forms/slider/theme.d.ts +78 -0
- package/dist/components/forms/slider/theme.js +33 -0
- package/dist/components/forms/slider/types.d.ts +56 -0
- package/dist/components/forms/slider/types.js +1 -0
- package/dist/components/forms/switch/Switch.svelte +74 -0
- package/dist/components/forms/switch/Switch.svelte.d.ts +12 -0
- package/dist/components/forms/switch/index.d.ts +3 -0
- package/dist/components/forms/switch/index.js +6 -0
- package/dist/components/forms/switch/theme.d.ts +51 -0
- package/dist/components/forms/switch/theme.js +71 -0
- package/dist/components/forms/switch/types.d.ts +25 -0
- package/dist/components/forms/switch/types.js +1 -0
- package/dist/components/forms/textfield/Textfield.svelte +82 -0
- package/dist/components/forms/textfield/Textfield.svelte.d.ts +11 -0
- package/dist/components/forms/textfield/index.d.ts +3 -0
- package/dist/components/forms/textfield/index.js +6 -0
- package/dist/components/forms/textfield/theme.d.ts +75 -0
- package/dist/components/forms/textfield/theme.js +74 -0
- package/dist/components/forms/textfield/types.d.ts +60 -0
- package/dist/components/forms/textfield/types.js +1 -0
- package/dist/components/forms/toggle-group/ToggleGroup.svelte +38 -0
- package/dist/components/forms/toggle-group/ToggleGroup.svelte.d.ts +11 -0
- package/dist/components/forms/toggle-group/ToggleGroupItem.svelte +36 -0
- package/dist/components/forms/toggle-group/ToggleGroupItem.svelte.d.ts +8 -0
- package/dist/components/forms/toggle-group/index.d.ts +4 -0
- package/dist/components/forms/toggle-group/index.js +7 -0
- package/dist/components/forms/toggle-group/theme.d.ts +74 -0
- package/dist/components/forms/toggle-group/theme.js +20 -0
- package/dist/components/forms/toggle-group/types.d.ts +25 -0
- package/dist/components/forms/toggle-group/types.js +1 -0
- package/dist/components/forms/tooltip/Tooltip.svelte +104 -0
- package/dist/components/forms/tooltip/Tooltip.svelte.d.ts +11 -0
- package/dist/components/forms/tooltip/index.d.ts +3 -0
- package/dist/components/forms/tooltip/index.js +6 -0
- package/dist/components/forms/tooltip/theme.d.ts +105 -0
- package/dist/components/forms/tooltip/theme.js +52 -0
- package/dist/components/forms/tooltip/types.d.ts +29 -0
- package/dist/components/forms/tooltip/types.js +1 -0
- package/dist/components/index.d.ts +15 -0
- package/dist/components/index.js +17 -0
- package/dist/components/misc/Avatar.svelte +70 -0
- package/dist/components/misc/Avatar.svelte.d.ts +9 -0
- package/dist/components/misc/ThemeSettings.svelte +88 -0
- package/dist/components/misc/ThemeSettings.svelte.d.ts +18 -0
- package/dist/components/misc/ThemeSwitcher.svelte +21 -0
- package/dist/components/misc/ThemeSwitcher.svelte.d.ts +3 -0
- package/dist/components/misc/index.d.ts +5 -0
- package/dist/components/misc/index.js +8 -0
- package/dist/components/misc/theme.d.ts +52 -0
- package/dist/components/misc/theme.js +25 -0
- package/dist/components/misc/types.d.ts +18 -0
- package/dist/components/misc/types.js +1 -0
- package/dist/components/nav/appbar/AppBar.svelte +60 -0
- package/dist/components/nav/appbar/AppBar.svelte.d.ts +12 -0
- package/dist/components/nav/appbar/index.d.ts +3 -0
- package/dist/components/nav/appbar/index.js +6 -0
- package/dist/components/nav/appbar/theme.d.ts +99 -0
- package/dist/components/nav/appbar/theme.js +33 -0
- package/dist/components/nav/appbar/types.d.ts +20 -0
- package/dist/components/nav/appbar/types.js +1 -0
- package/dist/components/nav/index.d.ts +5 -0
- package/dist/components/nav/index.js +8 -0
- package/dist/components/nav/navbar/Navbar.svelte +33 -0
- package/dist/components/nav/navbar/Navbar.svelte.d.ts +18 -0
- package/dist/components/nav/navbar/NavbarItem.svelte +66 -0
- package/dist/components/nav/navbar/NavbarItem.svelte.d.ts +9 -0
- package/dist/components/nav/navbar/index.d.ts +4 -0
- package/dist/components/nav/navbar/index.js +7 -0
- package/dist/components/nav/navbar/theme.d.ts +95 -0
- package/dist/components/nav/navbar/theme.js +31 -0
- package/dist/components/nav/navbar/types.d.ts +29 -0
- package/dist/components/nav/navbar/types.js +1 -0
- package/dist/components/nav/rail/Rail.svelte +75 -0
- package/dist/components/nav/rail/Rail.svelte.d.ts +11 -0
- package/dist/components/nav/rail/RailItem.svelte +104 -0
- package/dist/components/nav/rail/RailItem.svelte.d.ts +9 -0
- package/dist/components/nav/rail/index.d.ts +4 -0
- package/dist/components/nav/rail/index.js +7 -0
- package/dist/components/nav/rail/theme.d.ts +218 -0
- package/dist/components/nav/rail/theme.js +107 -0
- package/dist/components/nav/rail/types.d.ts +44 -0
- package/dist/components/nav/rail/types.js +1 -0
- package/dist/components/nav/tabs/Tab.svelte +49 -0
- package/dist/components/nav/tabs/Tab.svelte.d.ts +9 -0
- package/dist/components/nav/tabs/TabContent.svelte +11 -0
- package/dist/components/nav/tabs/TabContent.svelte.d.ts +8 -0
- package/dist/components/nav/tabs/TabHolder.svelte +44 -0
- package/dist/components/nav/tabs/TabHolder.svelte.d.ts +16 -0
- package/dist/components/nav/tabs/index.d.ts +5 -0
- package/dist/components/nav/tabs/index.js +8 -0
- package/dist/components/nav/tabs/theme.d.ts +92 -0
- package/dist/components/nav/tabs/theme.js +37 -0
- package/dist/components/nav/tabs/types.d.ts +39 -0
- package/dist/components/nav/tabs/types.js +1 -0
- package/dist/components/nav/types.d.ts +6 -0
- package/dist/components/nav/types.js +1 -0
- package/dist/components/pill/Pill.svelte +17 -0
- package/dist/components/pill/Pill.svelte.d.ts +5 -0
- package/dist/components/pill/index.d.ts +3 -0
- package/dist/components/pill/index.js +6 -0
- package/dist/components/pill/theme.d.ts +27 -0
- package/dist/components/pill/theme.js +16 -0
- package/dist/components/pill/types.d.ts +6 -0
- package/dist/components/pill/types.js +1 -0
- package/dist/components/progress/CircularProgress.svelte +58 -0
- package/dist/components/progress/CircularProgress.svelte.d.ts +16 -0
- package/dist/components/progress/LinearProgress.svelte +45 -0
- package/dist/components/progress/LinearProgress.svelte.d.ts +15 -0
- package/dist/components/progress/WavyLinearProgress.svelte +58 -0
- package/dist/components/progress/WavyLinearProgress.svelte.d.ts +19 -0
- package/dist/components/progress/_wavy.d.ts +2 -0
- package/dist/components/progress/_wavy.js +32 -0
- package/dist/components/progress/index.d.ts +4 -0
- package/dist/components/progress/index.js +7 -0
- package/dist/components/snackbar/Snackbar.svelte +102 -0
- package/dist/components/snackbar/Snackbar.svelte.d.ts +9 -0
- package/dist/components/snackbar/index.d.ts +3 -0
- package/dist/components/snackbar/index.js +6 -0
- package/dist/components/snackbar/theme.d.ts +36 -0
- package/dist/components/snackbar/theme.js +16 -0
- package/dist/components/snackbar/types.d.ts +33 -0
- package/dist/components/snackbar/types.js +1 -0
- package/dist/components/table/Table.svelte +26 -0
- package/dist/components/table/Table.svelte.d.ts +8 -0
- package/dist/components/table/TableBody.svelte +17 -0
- package/dist/components/table/TableBody.svelte.d.ts +5 -0
- package/dist/components/table/TableCell.svelte +24 -0
- package/dist/components/table/TableCell.svelte.d.ts +8 -0
- package/dist/components/table/TableFoot.svelte +17 -0
- package/dist/components/table/TableFoot.svelte.d.ts +5 -0
- package/dist/components/table/TableHead.svelte +18 -0
- package/dist/components/table/TableHead.svelte.d.ts +8 -0
- package/dist/components/table/TableHeader.svelte +43 -0
- package/dist/components/table/TableHeader.svelte.d.ts +8 -0
- package/dist/components/table/TableRow.svelte +24 -0
- package/dist/components/table/TableRow.svelte.d.ts +8 -0
- package/dist/components/table/index.d.ts +9 -0
- package/dist/components/table/index.js +12 -0
- package/dist/components/table/theme.d.ts +165 -0
- package/dist/components/table/theme.js +50 -0
- package/dist/components/table/types.d.ts +44 -0
- package/dist/components/table/types.js +1 -0
- package/dist/components/time/TimeField.svelte +111 -0
- package/dist/components/time/TimeField.svelte.d.ts +28 -0
- package/dist/components/time/TimepickerInput.svelte +75 -0
- package/dist/components/time/TimepickerInput.svelte.d.ts +10 -0
- package/dist/components/time/index.d.ts +4 -0
- package/dist/components/time/index.js +7 -0
- package/dist/components/time/theme.d.ts +69 -0
- package/dist/components/time/theme.js +13 -0
- package/dist/components/time/types.d.ts +34 -0
- package/dist/components/time/types.js +1 -0
- package/dist/components/toolbar/Toolbar.svelte +26 -0
- package/dist/components/toolbar/Toolbar.svelte.d.ts +10 -0
- package/dist/components/toolbar/ToolbarButton.svelte +25 -0
- package/dist/components/toolbar/ToolbarButton.svelte.d.ts +5 -0
- package/dist/components/toolbar/ToolbarDivider.svelte +6 -0
- package/dist/components/toolbar/ToolbarDivider.svelte.d.ts +18 -0
- package/dist/components/toolbar/ToolbarGroup.svelte +18 -0
- package/dist/components/toolbar/ToolbarGroup.svelte.d.ts +5 -0
- package/dist/components/toolbar/ToolbarGroupItem.svelte +27 -0
- package/dist/components/toolbar/ToolbarGroupItem.svelte.d.ts +8 -0
- package/dist/components/toolbar/index.d.ts +7 -0
- package/dist/components/toolbar/index.js +10 -0
- package/dist/components/toolbar/theme.d.ts +106 -0
- package/dist/components/toolbar/theme.js +27 -0
- package/dist/components/toolbar/types.d.ts +20 -0
- package/dist/components/toolbar/types.js +1 -0
- package/dist/components/typography/body/Body.svelte +33 -0
- package/dist/components/typography/body/Body.svelte.d.ts +10 -0
- package/dist/components/typography/body/index.d.ts +3 -0
- package/dist/components/typography/body/index.js +6 -0
- package/dist/components/typography/body/theme.d.ts +30 -0
- package/dist/components/typography/body/theme.js +14 -0
- package/dist/components/typography/body/types.d.ts +21 -0
- package/dist/components/typography/body/types.js +1 -0
- package/dist/components/typography/display/Display.svelte +27 -0
- package/dist/components/typography/display/Display.svelte.d.ts +10 -0
- package/dist/components/typography/display/index.d.ts +3 -0
- package/dist/components/typography/display/index.js +6 -0
- package/dist/components/typography/display/theme.d.ts +30 -0
- package/dist/components/typography/display/theme.js +14 -0
- package/dist/components/typography/display/types.d.ts +21 -0
- package/dist/components/typography/display/types.js +1 -0
- package/dist/components/typography/headline/Headline.svelte +27 -0
- package/dist/components/typography/headline/Headline.svelte.d.ts +10 -0
- package/dist/components/typography/headline/index.d.ts +3 -0
- package/dist/components/typography/headline/index.js +6 -0
- package/dist/components/typography/headline/theme.d.ts +30 -0
- package/dist/components/typography/headline/theme.js +14 -0
- package/dist/components/typography/headline/types.d.ts +21 -0
- package/dist/components/typography/headline/types.js +1 -0
- package/dist/components/typography/index.d.ts +6 -0
- package/dist/components/typography/index.js +8 -0
- package/dist/components/typography/kbd/Kbd.svelte +18 -0
- package/dist/components/typography/kbd/Kbd.svelte.d.ts +5 -0
- package/dist/components/typography/kbd/index.d.ts +3 -0
- package/dist/components/typography/kbd/index.js +6 -0
- package/dist/components/typography/kbd/theme.d.ts +18 -0
- package/dist/components/typography/kbd/theme.js +10 -0
- package/dist/components/typography/kbd/types.d.ts +17 -0
- package/dist/components/typography/kbd/types.js +1 -0
- package/dist/components/typography/label/Label.svelte +25 -0
- package/dist/components/typography/label/Label.svelte.d.ts +10 -0
- package/dist/components/typography/label/index.d.ts +3 -0
- package/dist/components/typography/label/index.js +6 -0
- package/dist/components/typography/label/theme.d.ts +28 -0
- package/dist/components/typography/label/theme.js +14 -0
- package/dist/components/typography/label/types.d.ts +23 -0
- package/dist/components/typography/label/types.js +1 -0
- package/dist/components/typography/title/Title.svelte +27 -0
- package/dist/components/typography/title/Title.svelte.d.ts +10 -0
- package/dist/components/typography/title/index.d.ts +3 -0
- package/dist/components/typography/title/index.js +6 -0
- package/dist/components/typography/title/theme.d.ts +30 -0
- package/dist/components/typography/title/theme.js +14 -0
- package/dist/components/typography/title/types.d.ts +21 -0
- package/dist/components/typography/title/types.js +1 -0
- package/dist/index.css +6 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/styles/component.css +154 -0
- package/dist/styles/elevation.css +45 -0
- package/dist/styles/motion.css +51 -0
- package/dist/styles/prose.css +48 -0
- package/dist/styles/rounding.css +11 -0
- package/dist/styles/theme/dark-hc.css +53 -0
- package/dist/styles/theme/dark-mc.css +53 -0
- package/dist/styles/theme/dark.css +51 -0
- package/dist/styles/theme/light-hc.css +53 -0
- package/dist/styles/theme/light-mc.css +53 -0
- package/dist/styles/theme/light.css +51 -0
- package/dist/styles/typescale.css +63 -0
- package/dist/utils/Layer.svelte +217 -0
- package/dist/utils/Layer.svelte.d.ts +3 -0
- package/dist/utils/Theme.svelte +90 -0
- package/dist/utils/icon/Icon.svelte +24 -0
- package/dist/utils/icon/Icon.svelte.d.ts +4 -0
- package/dist/utils/icon/LoadingIndicator.svelte +39 -0
- package/dist/utils/icon/LoadingIndicator.svelte.d.ts +4 -0
- package/dist/utils/icon/MaterialSymbolsProvider.svelte +38 -0
- package/dist/utils/icon/MaterialSymbolsProvider.svelte.d.ts +8 -0
- package/dist/utils/icon/base-icons.d.ts +1 -0
- package/dist/utils/icon/base-icons.js +29 -0
- package/dist/utils/icon/index.d.ts +6 -0
- package/dist/utils/icon/index.js +6 -0
- package/dist/utils/icon/theme.d.ts +30 -0
- package/dist/utils/icon/theme.js +14 -0
- package/dist/utils/icon/types.d.ts +23 -0
- package/dist/utils/icon/types.js +1 -0
- package/dist/utils/index.d.ts +7 -0
- package/dist/utils/index.js +6 -0
- package/dist/utils/theme.svelte.d.ts +24 -0
- package/dist/utils/theme.svelte.js +156 -0
- package/dist/utils/tutorial.d.ts +9 -0
- package/dist/utils/tutorial.js +46 -0
- package/dist/utils/types.d.ts +18 -0
- package/dist/utils/types.js +5 -0
- package/dist/utils/ui.d.ts +6 -0
- package/dist/utils/ui.js +56 -0
- package/package.json +85 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export declare const pathAnimatableSmallCircle = "m40.0 24.3 -0.0 0.5 -0.2 1.5 -0.0 0.4 -0.2 1.0 -0.3 0.8 -0.2 0.9 -0.4 0.9 -0.2 0.5 -0.3 0.7 -0.5 0.7 -0.7 1.2 -0.2 0.2 -0.5 0.6 -0.6 0.7 -0.7 0.7 -0.5 0.5 -0.5 0.4 -0.8 0.6 -0.8 0.5 -0.8 0.5 -0.3 0.2 -1.0 0.4 -0.7 0.3 -0.8 0.2 -1.1 0.4 -0.5 0.1 -0.9 0.1 -0.7 0.1 -0.8 0.1 -1.3 -0.0 -0.4 -0.0 -0.9 -0.1 -0.7 -0.1 -1.2 -0.2 -0.7 -0.2 -0.8 -0.3 -0.8 -0.3 -0.6 -0.2 -0.8 -0.4 -0.6 -0.3 -0.8 -0.5 -0.7 -0.6 -0.7 -0.5 -0.5 -0.4 -0.8 -0.8 -0.6 -0.6 -0.5 -0.6 -0.4 -0.5 -0.7 -1.2 -0.3 -0.5 -0.5 -1.0 -0.1 -0.2 -0.6 -1.5 -0.0 -0.1 -0.3 -0.9 -0.2 -0.7 -0.2 -1.3 -0.0 -0.4 -0.1 -0.8 0.0 -0.8 0.0 -1.0 0.2 -1.3 0.0 -0.2 0.1 -0.8 0.2 -0.9 0.3 -0.8 0.3 -1.0 0.5 -0.9 0.5 -0.9 0.1 -0.2 0.7 -1.2 0.2 -0.2 0.5 -0.7 0.5 -0.6 0.6 -0.6 0.6 -0.6 0.8 -0.6 0.5 -0.5 0.7 -0.4 0.9 -0.6 0.9 -0.4 0.5 -0.2 0.7 -0.4 0.8 -0.2 1.0 -0.3 0.6 -0.2 0.8 -0.1 1.2 -0.1 0.6 -0.1 1.2 0.0 0.4 0.0 0.8 0.1 1.3 0.2 0.4 0.1 1.0 0.2 0.7 0.2 0.6 0.3 1.0 0.4 1.3 0.6 0.0 0.1 0.8 0.4 0.9 0.6 0.6 0.6 0.5 0.4 0.8 0.8 0.3 0.3 0.6 0.7 0.4 0.6 0.5 0.7 0.6 0.9 0.4 0.8 0.2 0.5 0.4 0.9 0.4 1.4 0.1 0.1 0.2 0.8 0.1 1.0 0.1 0.7 0.1 1.3 z";
|
|
2
|
+
export declare const pathAnimatableSmallSquare = "m40.0 24.8 -0.0 0.9 -0.0 0.8 -0.0 0.9 -0.0 0.8 -0.0 1.0 -0.1 0.9 -0.0 1.0 -0.2 0.9 -0.2 1.0 -0.3 0.9 -0.4 0.8 -0.5 0.8 -0.6 0.8 -0.6 0.8 -0.0 -0.0 -0.8 0.6 -0.8 0.6 -0.8 0.5 -0.8 0.4 -0.9 0.3 -1.0 0.2 -1.0 0.2 -0.9 0.0 -0.9 0.1 -1.0 -0.0 -0.8 -0.0 -0.9 -0.0 -0.8 -0.0 -0.9 0.0 -1.6 0.0 -0.9 -0.0 -0.8 -0.0 -0.9 -0.0 -0.8 -0.0 -1.0 -0.0 -0.9 -0.1 -1.0 -0.0 -0.9 -0.2 -1.0 -0.2 -0.9 -0.3 -0.8 -0.4 -0.8 -0.5 -0.8 -0.6 -0.8 -0.6 0.0 -0.0 -0.6 -0.8 -0.6 -0.8 -0.5 -0.8 -0.4 -0.8 -0.3 -0.9 -0.2 -1.0 -0.2 -1.0 -0.0 -0.9 -0.1 -0.9 0.0 -1.0 0.0 -0.8 0.0 -0.9 0.0 -0.8 -0.0 -0.9 -0.0 -1.6 0.0 -0.9 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -1.0 0.1 -0.9 0.0 -1.0 0.2 -0.9 0.2 -1.0 0.3 -0.9 0.4 -0.8 0.5 -0.8 0.6 -0.8 0.6 -0.8 0.0 0.0 0.8 -0.6 0.8 -0.6 0.8 -0.5 0.8 -0.4 0.9 -0.3 1.0 -0.2 1.0 -0.2 0.9 -0.0 0.9 -0.1 1.0 0.0 0.8 0.0 0.9 0.0 0.8 0.0 0.9 -0.0 1.6 -0.0 0.9 0.0 0.8 0.0 0.9 0.0 0.8 0.0 1.0 0.0 0.9 0.1 1.0 0.0 0.9 0.2 1.0 0.2 0.9 0.3 0.8 0.4 0.8 0.5 0.8 0.6 0.8 0.6 -0.0 0.0 0.6 0.8 0.6 0.8 0.5 0.8 0.4 0.8 0.3 0.9 0.2 1.0 0.2 1.0 0.0 0.9 0.1 0.9 -0.0 1.0 -0.0 0.8 -0.0 0.9 -0.0 0.8 0.0 0.9 z";
|
|
3
|
+
export declare const pathAnimatableSmallSlanted = "m39.1 24.1 -0.0 0.8 -0.2 1.2 -0.0 0.8 -0.1 0.8 -0.1 0.8 -0.1 0.8 -0.1 0.8 -0.1 1.2 -0.1 0.9 -0.1 1.0 -0.2 0.9 -0.2 1.0 -0.4 0.9 -0.6 0.8 -0.6 0.6 -0.1 0.1 -0.7 0.6 -0.9 0.4 -0.9 0.3 -1.0 0.1 -1.0 0.1 -1.0 -0.0 -0.9 -0.0 -1.0 0.0 -0.8 0.0 -0.8 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -1.2 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -0.8 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -1.2 -0.0 -1.1 -0.0 -1.0 -0.0 -1.1 -0.1 -1.1 -0.2 -0.9 -0.4 -0.9 -0.6 -0.8 -0.7 0.0 0.0 -0.6 -0.8 -0.5 -0.9 -0.3 -1.0 -0.1 -1.1 0.0 -1.1 0.1 -1.0 0.1 -1.1 0.1 -0.9 0.1 -1.2 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.0 -0.8 0.2 -1.2 0.1 -0.8 0.0 -0.8 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.1 -1.2 0.1 -0.9 0.1 -1.0 0.2 -0.9 0.2 -1.0 0.4 -0.9 0.6 -0.8 0.6 -0.6 0.1 -0.1 0.7 -0.6 0.9 -0.4 0.9 -0.3 1.0 -0.1 1.0 -0.1 1.0 0.0 0.9 0.0 1.0 0.0 0.8 0.0 0.8 0.0 0.8 0.0 0.9 0.0 0.8 0.0 1.2 0.0 0.8 0.0 0.9 0.0 0.8 0.0 0.8 0.0 0.8 0.0 0.9 0.0 0.8 0.0 1.2 0.0 1.1 0.0 1.0 0.0 1.1 0.1 1.1 0.2 0.9 0.4 0.9 0.6 0.8 0.7 -0.0 -0.0 0.6 0.8 0.5 0.9 0.3 1.0 0.1 1.1 -0.0 1.1 -0.1 1.0 -0.1 1.1 -0.1 1.0 -0.1 1.2 -0.1 0.8 -0.1 0.8 -0.1 0.8 -0.1 0.8 z";
|
|
4
|
+
export declare const pathAnimatableSmallArch = "m39.5 24.7 0.0 0.7 0.0 1.0 0.0 0.7 0.0 1.0 0.0 0.7 0.0 1.1 0.0 0.7 0.0 1.0 0.0 1.0 0.0 1.4 -0.0 1.2 -0.2 1.2 -0.5 1.0 -0.6 0.8 -0.0 -0.0 -0.8 0.6 -1.0 0.5 -1.2 0.2 -1.5 0.0 -1.4 0.0 -0.7 0.0 -1.4 0.0 -0.7 0.0 -0.7 0.0 -0.7 0.0 -1.3 0.0 -0.7 0.0 -0.7 0.0 -0.7 0.0 -1.4 0.0 -0.7 0.0 -0.7 0.0 -0.7 0.0 -1.3 0.0 -0.7 0.0 -0.7 0.0 -0.7 0.0 -1.4 0.0 -0.7 0.0 -1.4 0.0 -1.5 -0.0 -1.2 -0.2 -1.0 -0.5 -0.8 -0.6 0.0 -0.0 -0.6 -0.8 -0.5 -1.0 -0.2 -1.2 -0.0 -1.2 -0.0 -1.4 -0.0 -1.0 -0.0 -1.0 -0.0 -0.7 -0.0 -1.1 -0.0 -0.7 -0.0 -1.0 -0.0 -0.7 -0.0 -1.0 -0.0 -0.7 -0.0 -0.7 0.1 -1.2 -0.0 -0.5 0.1 -0.7 0.1 -0.8 0.4 -1.3 0.1 -0.3 0.2 -0.8 0.6 -1.2 0.1 -0.2 0.4 -0.8 0.4 -0.7 0.6 -0.8 0.4 -0.5 0.8 -0.9 0.3 -0.3 0.5 -0.5 0.7 -0.6 0.6 -0.4 0.7 -0.5 0.7 -0.4 0.7 -0.4 0.7 -0.4 1.2 -0.4 0.5 -0.2 0.8 -0.2 0.8 -0.2 1.1 -0.2 0.7 -0.1 0.4 0.0 0.8 0.0 1.0 0.0 0.6 0.1 0.9 0.1 0.8 0.1 0.9 0.3 0.6 0.2 1.2 0.4 0.6 0.3 0.5 0.2 0.7 0.4 0.9 0.6 0.5 0.3 0.9 0.7 0.5 0.5 0.4 0.4 0.7 0.8 0.4 0.4 0.7 1.0 0.5 0.7 0.3 0.6 0.5 0.9 0.1 0.3 0.3 0.8 0.4 1.3 0.1 0.3 0.2 1.0 0.1 0.6 0.2 1.3 -0.0 0.5 z";
|
|
5
|
+
export declare const pathAnimatableSmallFan = "m37.4 24.7 0.3 0.7 0.2 0.8 0.3 0.8 0.2 0.9 0.2 0.8 0.1 0.9 0.2 1.0 0.1 1.0 0.0 1.1 0.0 1.0 -0.0 1.1 -0.3 1.1 -0.4 0.9 -0.6 0.8 -0.1 0.1 -0.8 0.6 -0.9 0.4 -1.1 0.3 -1.5 0.0 -1.2 0.0 -0.7 0.0 -1.2 0.0 -0.6 0.0 -1.3 0.0 -0.6 0.0 -0.7 0.0 -1.2 0.0 -0.6 0.0 -0.7 0.0 -1.2 0.0 -0.7 0.0 -0.6 0.0 -0.6 0.0 -1.3 0.0 -0.6 0.0 -1.2 0.0 -0.7 0.0 -1.2 0.0 -1.0 -0.0 -1.1 -0.0 -1.2 -0.1 -1.0 -0.2 -0.9 -0.4 -0.8 -0.6 -0.1 -0.0 -0.6 -0.9 -0.4 -0.9 -0.2 -1.1 -0.1 -1.1 0.0 -1.1 -0.0 -1.0 -0.0 -1.2 -0.0 -1.2 -0.0 -0.6 -0.0 -0.7 -0.0 -1.2 -0.0 -0.6 -0.0 -0.6 -0.0 -1.3 -0.0 -0.6 -0.0 -0.6 -0.0 -1.2 -0.0 -0.7 -0.0 -0.6 -0.0 -1.2 -0.0 -0.6 -0.0 -1.3 -0.0 -0.6 -0.0 -1.2 -0.0 -1.2 0.0 -1.2 0.3 -1.1 0.4 -0.9 0.6 -0.9 0.1 0.0 0.8 -0.6 0.9 -0.4 1.1 -0.3 1.1 0.0 1.1 0.0 1.0 0.1 1.0 0.0 1.0 0.2 0.9 0.1 0.9 0.2 0.8 0.2 0.8 0.3 0.8 0.2 0.7 0.3 0.7 0.2 0.7 0.3 0.6 0.3 0.7 0.4 0.6 0.3 0.5 0.3 0.6 0.3 0.5 0.4 0.5 0.3 0.5 0.4 0.5 0.4 0.5 0.3 0.4 0.4 0.5 0.4 0.4 0.4 0.8 0.8 0.4 0.4 0.4 0.5 0.3 0.4 0.4 0.5 0.4 0.5 0.4 0.5 0.3 0.5 0.4 0.5 0.3 0.6 0.3 0.5 0.4 0.7 0.3 0.5 0.3 0.7 0.3 0.7 z";
|
|
6
|
+
export declare const pathAnimatableSmallArrow = "m36.9 24.5 0.6 0.9 0.4 0.8 0.5 0.8 0.4 0.9 0.5 1.0 0.3 1.1 0.3 1.1 0.1 1.0 -0.1 1.0 -0.3 1.0 -0.4 0.9 -0.5 0.9 -0.3 0.3 -0.4 0.5 -0.8 0.6 -0.8 0.5 -1.0 0.4 -1.0 0.2 -1.0 0.1 -1.1 -0.1 -1.0 -0.2 -1.1 -0.2 -1.0 -0.2 -0.8 -0.3 -0.9 -0.2 -0.7 -0.2 -0.8 -0.1 -0.7 -0.1 -0.7 -0.1 -1.2 -0.0 -0.7 0.1 -0.7 0.1 -0.8 0.1 -0.8 0.2 -0.8 0.2 -0.9 0.3 -0.9 0.2 -1.0 0.2 -1.1 0.2 -1.1 0.1 -1.1 -0.1 -1.0 -0.1 -1.0 -0.4 -0.9 -0.5 -0.7 -0.7 -0.0 -0.0 -0.6 -0.8 -0.5 -0.9 -0.4 -0.9 -0.3 -1.0 -0.1 -1.0 0.0 -1.0 0.2 -1.1 0.4 -1.0 0.4 -1.0 0.5 -1.0 0.5 -0.8 0.7 -1.1 0.4 -0.7 0.5 -0.7 0.4 -0.7 0.2 -0.3 0.5 -0.7 0.4 -0.7 0.2 -0.3 0.5 -0.7 0.2 -0.4 0.2 -0.3 0.4 -0.7 0.3 -0.4 0.4 -0.7 0.2 -0.3 0.5 -0.7 0.2 -0.3 0.2 -0.4 0.4 -0.7 0.5 -0.6 0.3 -0.6 0.4 -0.6 0.4 -0.5 0.4 -0.6 0.5 -0.6 0.6 -0.6 0.6 -0.5 0.6 -0.4 0.7 -0.4 0.7 -0.3 0.7 -0.2 0.7 -0.0 0.1 -0.0 0.8 0.1 0.7 0.2 0.7 0.3 0.7 0.3 0.7 0.5 0.5 0.5 0.6 0.5 0.5 0.6 0.4 0.5 0.4 0.6 0.4 0.6 0.4 0.5 0.3 0.6 0.3 0.5 0.5 0.7 0.2 0.3 0.4 0.6 0.2 0.4 0.4 0.6 0.4 0.6 0.2 0.4 0.4 0.6 0.2 0.3 0.4 0.7 0.4 0.6 0.2 0.3 0.4 0.7 0.4 0.6 0.4 0.7 z";
|
|
7
|
+
export declare const pathAnimatableSmallSemicircle = "m39.1 24.7 0.3 0.9 0.2 0.8 0.2 0.9 0.1 1.0 0.1 0.9 -0.0 0.9 -0.0 1.0 -0.3 0.9 -0.1 0.2 -0.4 0.6 -0.7 0.7 -1.0 0.4 -1.6 0.1 -0.9 0.0 -1.7 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -0.9 0.0 -0.2 -0.1 -0.6 0.1 -0.9 0.0 -0.8 0.0 -0.2 -0.1 -0.7 0.1 -0.8 0.0 -0.1 -0.0 -0.8 0.0 -0.3 0.0 -0.5 0.0 -0.8 0.0 -0.3 0.0 -0.6 0.0 -0.8 0.0 -0.2 0.1 -0.7 -0.1 -0.8 0.0 -0.9 0.0 -0.1 0.2 -0.7 -0.2 -0.9 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -1.7 0.0 -0.9 0.0 -1.6 -0.1 -1.0 -0.4 -0.7 -0.7 -0.4 -0.6 -0.1 -0.2 -0.3 -0.9 -0.0 -1.0 0.0 -0.9 0.1 -0.9 0.1 -1.0 0.2 -0.9 0.2 -0.8 0.3 -0.9 0.3 -0.7 0.3 -0.8 0.4 -0.7 0.4 -0.7 0.4 -0.7 0.4 -0.6 0.5 -0.6 0.4 -0.5 0.5 -0.5 0.5 -0.5 0.5 -0.5 0.5 -0.4 0.5 -0.4 0.6 -0.4 0.5 -0.3 0.5 -0.3 0.6 -0.3 0.5 -0.3 0.5 -0.2 0.6 -0.2 0.5 -0.2 0.5 -0.2 0.5 -0.1 0.6 -0.2 0.5 -0.1 0.5 -0.1 0.5 -0.1 0.6 -0.0 0.5 -0.1 0.5 0.0 1.0 0.0 0.5 0.0 0.5 0.1 0.6 0.0 0.5 0.1 0.5 0.1 0.5 0.1 0.6 0.2 0.5 0.1 0.5 0.2 0.5 0.2 0.6 0.2 0.5 0.2 0.5 0.3 0.6 0.3 0.5 0.3 0.5 0.3 0.6 0.4 0.5 0.4 0.5 0.4 0.5 0.5 0.5 0.5 0.5 0.5 0.4 0.5 0.5 0.6 0.4 0.6 0.4 0.7 0.4 0.7 0.4 0.7 0.3 0.8 z";
|
|
8
|
+
export declare const pathAnimatableSmallOval = "m37.7 24.0 -0.3 0.7 -0.4 0.7 -0.3 0.6 -0.3 0.7 -0.4 0.6 -0.3 0.5 -0.4 0.6 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.3 0.4 -0.5 0.4 -0.8 0.8 -0.4 0.5 -0.4 0.3 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.6 0.4 -0.5 0.3 -0.6 0.4 -0.7 0.3 -0.6 0.3 -0.7 0.4 -0.7 0.3 -0.7 0.2 -0.7 0.3 -0.9 0.3 -0.8 0.2 -0.8 0.1 -0.9 0.1 -1.0 0.1 -0.9 -0.0 -0.9 -0.1 -0.9 -0.1 -0.9 -0.3 -0.9 -0.3 -0.8 -0.4 -0.8 -0.6 -0.7 -0.6 -0.0 0.0 -0.6 -0.7 -0.6 -0.8 -0.4 -0.8 -0.3 -0.9 -0.3 -0.9 -0.1 -0.9 -0.1 -0.9 0.0 -0.9 0.1 -1.0 0.1 -0.9 0.1 -0.8 0.2 -0.8 0.3 -0.9 0.3 -0.7 0.2 -0.7 0.3 -0.7 0.4 -0.7 0.3 -0.6 0.3 -0.7 0.4 -0.6 0.3 -0.5 0.4 -0.6 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.3 -0.4 0.5 -0.4 0.8 -0.8 0.4 -0.5 0.4 -0.3 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.6 -0.4 0.5 -0.3 0.6 -0.4 0.7 -0.3 0.6 -0.3 0.7 -0.4 0.7 -0.3 0.7 -0.2 0.7 -0.3 0.9 -0.3 0.8 -0.2 0.8 -0.1 0.9 -0.1 1.0 -0.1 0.9 0.0 0.9 0.1 0.9 0.1 0.9 0.3 0.9 0.3 0.8 0.4 0.8 0.6 0.7 0.6 -0.0 0.0 0.6 0.7 0.6 0.8 0.4 0.8 0.3 0.9 0.3 0.9 0.1 0.9 0.1 0.9 -0.0 0.9 -0.1 1.0 -0.1 0.9 -0.1 0.8 -0.2 0.8 -0.3 0.9 -0.3 0.7 z";
|
|
9
|
+
export declare const pathAnimatableSmallPill = "m39.6 24.0 -0.1 0.8 -0.3 0.8 -0.2 0.8 -0.3 0.7 -0.3 0.8 -0.4 0.7 -0.4 0.7 -0.5 0.6 -0.4 0.6 -0.6 0.6 -0.6 0.6 -0.4 0.4 -0.6 0.6 -0.4 0.5 -0.9 0.8 -0.5 0.5 -0.6 0.6 -0.4 0.4 -0.7 0.7 -0.5 0.5 -0.6 0.4 -0.7 0.5 -0.6 0.4 -0.7 0.4 -0.7 0.3 -0.8 0.3 -0.8 0.3 -0.8 0.2 -0.8 0.1 -0.8 0.1 -0.8 0.1 -0.9 0.0 -0.8 -0.0 -0.9 -0.1 -0.8 -0.2 -0.8 -0.2 -0.9 -0.2 -0.8 -0.3 -0.8 -0.4 -0.8 -0.4 -0.7 -0.5 -0.7 -0.5 -0.7 -0.5 -0.6 -0.6 -0.1 -0.1 -0.5 -0.6 -0.6 -0.7 -0.5 -0.7 -0.5 -0.8 -0.4 -0.7 -0.4 -0.8 -0.3 -0.8 -0.2 -0.8 -0.2 -0.9 -0.2 -0.8 -0.1 -0.9 0.0 -0.8 0.0 -0.9 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.3 -0.8 0.2 -0.8 0.3 -0.7 0.4 -0.8 0.3 -0.7 0.5 -0.6 0.4 -0.7 0.4 -0.5 0.6 -0.6 0.6 -0.7 0.4 -0.4 0.6 -0.6 0.5 -0.4 0.8 -0.9 0.5 -0.5 0.6 -0.6 0.4 -0.4 0.7 -0.7 0.5 -0.5 0.6 -0.4 0.7 -0.5 0.6 -0.4 0.7 -0.4 0.7 -0.3 0.8 -0.3 0.8 -0.3 0.8 -0.2 0.8 -0.1 0.8 -0.1 0.8 -0.1 0.9 -0.0 0.8 0.0 0.9 0.1 0.8 0.2 0.8 0.2 0.9 0.2 0.8 0.4 0.8 0.3 0.8 0.4 0.7 0.5 0.7 0.5 0.7 0.5 0.6 0.7 0.1 -0.0 0.5 0.6 0.6 0.7 0.5 0.7 0.5 0.8 0.4 0.7 0.3 0.8 0.4 0.8 0.2 0.8 0.2 0.9 0.2 0.8 0.1 0.9 0.0 0.8 -0.0 0.8 -0.1 0.9 z";
|
|
10
|
+
export declare const pathAnimatableSmallTriangle = "m34.8 24.3 0.3 0.5 0.5 0.9 0.3 0.5 0.5 1.0 0.6 0.9 0.6 1.1 0.6 1.1 0.7 1.3 0.7 1.4 0.2 1.2 -0.2 1.1 -0.4 1.0 -0.4 0.6 -0.3 0.2 -0.8 0.6 -1.0 0.4 -1.2 0.1 -1.2 0.1 -1.0 -0.0 -1.1 -0.0 -1.1 -0.0 -1.1 -0.0 -0.5 -0.0 -1.1 -0.0 -0.6 -0.0 -1.1 -0.0 -0.5 -0.0 -1.1 -0.0 -0.6 -0.0 -1.0 -0.0 -0.6 -0.0 -1.1 -0.0 -0.5 -0.0 -1.1 -0.0 -0.6 -0.0 -1.1 -0.0 -0.5 -0.0 -1.1 -0.0 -1.1 -0.0 -1.1 -0.0 -1.0 -0.0 -1.2 -0.1 -1.2 -0.1 -1.0 -0.4 -0.8 -0.6 -0.3 -0.2 -0.4 -0.6 -0.4 -1.0 -0.2 -1.1 0.2 -1.2 0.7 -1.4 0.7 -1.3 0.6 -1.1 0.6 -1.1 0.6 -0.9 0.5 -1.0 0.3 -0.5 0.5 -0.9 0.3 -0.5 0.3 -0.5 0.2 -0.4 0.3 -0.5 0.3 -0.5 0.3 -0.5 0.2 -0.4 0.3 -0.5 0.3 -0.5 0.3 -0.5 0.2 -0.4 0.3 -0.5 0.3 -0.5 0.2 -0.5 0.0 -0.0 0.3 -0.4 0.3 -0.5 0.3 -0.5 0.2 -0.5 0.3 -0.4 0.6 -1.0 0.3 -0.6 0.3 -0.6 0.4 -0.6 0.4 -0.7 0.5 -0.8 0.6 -0.6 0.6 -0.6 0.7 -0.3 0.7 -0.2 0.8 -0.1 0.0 0.0 0.8 0.1 0.7 0.2 0.7 0.3 0.6 0.6 0.6 0.6 0.5 0.8 0.4 0.7 0.4 0.6 0.3 0.6 0.4 0.6 0.5 1.0 0.3 0.4 0.2 0.5 0.3 0.5 0.3 0.5 -0.0 0.0 0.3 0.4 0.2 0.5 0.3 0.5 0.3 0.5 0.2 0.4 0.3 0.5 0.3 0.5 0.3 0.5 0.2 0.4 0.3 0.5 0.3 0.5 0.3 0.5 0.2 0.4 z";
|
|
11
|
+
export declare const pathAnimatableSmallDiamond = "m37.4 24.0 -0.1 0.7 -0.1 0.7 -0.3 0.7 -0.3 0.6 -0.5 0.6 -0.4 0.5 -0.6 0.8 -0.3 0.5 -0.4 0.4 -0.4 0.5 -0.3 0.5 -0.6 0.8 -0.4 0.4 -0.4 0.5 -0.3 0.5 -0.4 0.5 -0.4 0.5 -0.3 0.5 -0.4 0.5 -0.6 0.7 -0.5 0.7 -0.5 0.6 -0.5 0.7 -0.6 0.7 -0.6 0.7 -0.8 0.5 -0.7 0.4 -0.8 0.2 -0.9 0.1 -0.0 -0.0 -0.9 -0.1 -0.8 -0.2 -0.7 -0.4 -0.8 -0.5 -0.6 -0.7 -0.6 -0.7 -0.5 -0.7 -0.5 -0.6 -0.5 -0.7 -0.4 -0.5 -0.6 -0.7 -0.3 -0.5 -0.4 -0.5 -0.4 -0.5 -0.4 -0.5 -0.3 -0.5 -0.4 -0.4 -0.6 -0.8 -0.3 -0.5 -0.4 -0.5 -0.4 -0.4 -0.3 -0.5 -0.6 -0.7 -0.4 -0.6 -0.5 -0.6 -0.3 -0.6 -0.3 -0.7 -0.1 -0.7 -0.1 -0.7 -0.0 -0.0 0.1 -0.7 0.1 -0.7 0.3 -0.7 0.3 -0.6 0.5 -0.6 0.4 -0.5 0.6 -0.8 0.3 -0.5 0.4 -0.5 0.4 -0.4 0.3 -0.5 0.6 -0.8 0.4 -0.4 0.4 -0.5 0.3 -0.5 0.4 -0.5 0.4 -0.5 0.3 -0.5 0.4 -0.5 0.6 -0.7 0.5 -0.7 0.5 -0.6 0.5 -0.7 0.6 -0.7 0.6 -0.7 0.8 -0.5 0.7 -0.4 0.8 -0.2 0.9 -0.1 0.0 0.0 0.9 0.1 0.8 0.2 0.7 0.4 0.8 0.5 0.6 0.7 0.6 0.7 0.5 0.7 0.5 0.6 0.5 0.7 0.4 0.5 0.6 0.7 0.3 0.5 0.4 0.5 0.4 0.5 0.4 0.5 0.3 0.5 0.4 0.4 0.6 0.8 0.3 0.5 0.4 0.4 0.4 0.5 0.3 0.5 0.6 0.7 0.4 0.6 0.5 0.6 0.3 0.6 0.3 0.7 0.1 0.7 0.1 0.7 z";
|
|
12
|
+
export declare const pathAnimatableSmallClamshell = "m42.6 24.0 -0.1 1.0 -0.2 0.9 -0.5 0.9 -0.5 0.9 -0.4 0.9 -0.5 0.8 -0.5 0.8 -0.5 0.8 -0.4 0.7 -0.8 1.5 -0.5 0.8 -0.5 0.6 -0.2 0.4 -0.4 0.3 -0.8 0.6 -0.8 0.4 -0.8 0.2 -1.0 0.2 -1.0 -0.0 -0.9 -0.0 -1.1 0.0 -0.9 0.0 -0.5 0.0 -1.0 0.0 -0.4 0.0 -1.0 0.0 -0.5 0.0 -0.9 0.0 -0.5 0.0 -1.0 0.0 -0.5 0.0 -0.9 0.0 -0.5 0.0 -1.0 0.0 -0.4 0.0 -1.0 0.0 -0.5 0.0 -0.9 0.0 -1.1 -0.0 -0.9 -0.0 -1.0 -0.0 -0.9 -0.2 -0.9 -0.2 -0.8 -0.4 -0.7 -0.6 -0.7 -0.6 -0.0 -0.0 -0.5 -0.8 -0.5 -0.7 -0.8 -1.5 -0.4 -0.7 -0.5 -0.8 -0.5 -0.8 -0.5 -0.8 -0.4 -0.9 -0.5 -0.9 -0.5 -0.9 -0.2 -0.9 -0.1 -1.0 -0.0 -0.0 0.1 -1.0 0.2 -0.9 0.5 -0.9 0.5 -0.9 0.4 -0.9 0.5 -0.8 0.5 -0.8 0.5 -0.8 0.4 -0.7 0.8 -1.5 0.5 -0.7 0.5 -0.8 0.0 -0.0 0.6 -0.6 0.8 -0.6 0.8 -0.4 0.8 -0.2 1.0 -0.2 1.0 0.0 0.9 0.0 1.1 0.0 0.9 0.0 0.5 0.0 1.0 0.0 0.4 0.0 1.0 0.0 0.5 0.0 0.9 0.0 0.5 0.0 1.0 0.0 0.5 0.0 0.9 0.0 0.5 0.0 1.0 0.0 0.4 0.0 1.0 0.0 0.5 0.0 0.9 0.0 1.1 0.0 0.9 0.0 1.0 0.0 0.9 0.2 0.9 0.2 0.8 0.4 0.7 0.6 0.7 0.6 0.0 0.0 0.5 0.8 0.5 0.7 0.8 1.5 0.4 0.7 0.5 0.8 0.5 0.8 0.5 0.8 0.4 0.9 0.5 0.9 0.5 0.9 0.2 0.9 0.1 1.0 z";
|
|
13
|
+
export declare const pathAnimatableSmallPentagon = "m38.9 24.2 -0.2 0.8 -0.2 0.7 -0.3 0.8 -0.2 0.8 -0.3 0.7 -0.2 0.8 -0.3 0.8 -0.2 0.7 -0.3 0.8 -0.2 0.8 -0.3 0.7 -0.2 0.8 -0.4 1.0 -0.4 0.8 -0.4 0.8 -0.6 0.6 -0.7 0.5 0.0 0.1 -0.7 0.4 -0.8 0.3 -0.8 0.3 -0.9 0.1 -1.1 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -1.1 -0.0 -0.9 -0.1 -0.8 -0.3 -0.8 -0.3 -0.7 -0.5 -0.1 0.0 -0.6 -0.5 -0.6 -0.7 -0.4 -0.7 -0.4 -0.8 -0.4 -1.0 -0.2 -0.8 -0.3 -0.7 -0.2 -0.8 -0.3 -0.8 -0.2 -0.7 -0.3 -0.8 -0.2 -0.8 -0.3 -0.7 -0.2 -0.8 -0.3 -0.7 -0.2 -0.8 -0.3 -0.8 -0.2 -0.7 -0.3 -1.1 -0.2 -0.9 -0.0 -0.8 0.0 -0.9 0.2 -0.8 0.1 -0.1 0.3 -0.7 0.4 -0.8 0.6 -0.6 0.6 -0.6 0.9 -0.7 0.6 -0.5 0.7 -0.4 0.6 -0.5 0.7 -0.5 0.6 -0.4 0.7 -0.5 0.6 -0.5 0.7 -0.5 0.6 -0.4 0.7 -0.5 0.6 -0.5 0.7 -0.4 0.6 -0.5 0.9 -0.7 0.8 -0.4 0.8 -0.3 0.8 -0.2 0.8 -0.0 0.1 -0.0 0.9 0.0 0.8 0.2 0.8 0.3 0.8 0.4 0.9 0.7 0.6 0.5 0.7 0.4 0.6 0.5 0.7 0.5 0.6 0.4 0.7 0.5 0.6 0.5 0.7 0.5 0.6 0.4 0.7 0.5 0.6 0.5 0.7 0.4 0.6 0.5 0.9 0.7 0.6 0.6 0.6 0.7 0.4 0.7 0.3 0.7 0.0 0.1 0.2 0.8 0.1 0.9 -0.0 0.9 -0.2 0.8 -0.3 1.1 z";
|
|
14
|
+
export declare const pathAnimatableSmallGem = "m38.0 24.6 0.1 0.8 0.2 0.8 0.1 0.8 0.1 0.9 0.1 0.8 -0.0 0.9 -0.1 0.8 -0.3 0.8 -0.3 0.8 -0.3 0.5 -0.2 0.3 -0.5 0.6 -0.6 0.6 -0.7 0.5 -0.7 0.4 -0.8 0.4 -0.7 0.3 -0.8 0.4 -0.8 0.3 -0.6 0.3 -0.8 0.3 -1.1 0.5 -0.8 0.4 -0.7 0.3 -0.7 0.3 -0.7 0.3 -0.8 0.2 -0.8 0.2 -0.8 0.1 -0.0 -0.0 -0.8 -0.1 -0.8 -0.1 -0.7 -0.3 -0.8 -0.3 -0.7 -0.3 -0.7 -0.3 -0.8 -0.4 -1.1 -0.5 -0.8 -0.3 -0.6 -0.3 -0.8 -0.3 -0.7 -0.4 -0.8 -0.3 -0.8 -0.4 -0.7 -0.4 -0.7 -0.5 -0.6 -0.6 -0.6 -0.6 -0.1 -0.3 -0.3 -0.5 -0.3 -0.8 -0.3 -0.8 -0.1 -0.8 0.0 -0.9 0.1 -0.8 0.1 -0.9 0.1 -0.8 0.1 -0.8 0.2 -0.8 0.1 -0.7 0.1 -0.8 0.1 -0.6 0.2 -1.4 0.1 -0.6 0.1 -0.8 0.1 -0.7 0.2 -0.7 0.3 -0.7 0.1 -0.1 0.3 -0.6 0.5 -0.6 0.5 -0.6 0.6 -0.4 0.5 -0.5 0.7 -0.5 0.6 -0.3 0.5 -0.4 1.0 -0.8 0.6 -0.4 0.6 -0.4 0.6 -0.5 0.6 -0.4 0.7 -0.5 0.6 -0.4 0.7 -0.4 0.7 -0.4 0.7 -0.2 0.8 -0.2 0.8 -0.0 0.0 -0.0 0.8 0.0 0.8 0.2 0.7 0.2 0.7 0.4 0.7 0.4 0.6 0.4 0.7 0.5 0.6 0.4 0.6 0.5 0.6 0.4 0.6 0.4 1.0 0.8 0.5 0.4 0.6 0.3 0.7 0.5 0.5 0.5 0.6 0.4 0.5 0.6 0.4 0.6 0.4 0.6 0.1 0.1 0.3 0.7 0.2 0.7 0.1 0.7 0.1 0.8 0.1 0.6 0.2 1.4 0.1 0.6 0.1 0.8 z";
|
|
15
|
+
export declare const pathAnimatableSmallVerySunny = "m40.0 24.0 -0.1 0.8 -0.4 0.8 -0.8 0.7 -1.0 0.6 -0.9 0.6 -0.7 0.5 -0.6 1.1 -0.1 0.7 0.1 0.8 0.2 1.0 0.3 1.1 0.1 1.1 -0.3 0.8 -0.5 0.7 -0.0 0.0 -0.7 0.5 -0.8 0.3 -1.1 -0.1 -1.1 -0.3 -1.0 -0.2 -0.8 -0.1 -0.7 0.1 -1.1 0.6 -0.5 0.7 -0.6 0.9 -0.5 0.9 -0.8 0.9 -0.7 0.4 -0.9 0.1 -0.0 0.0 -0.8 -0.1 -0.8 -0.4 -0.7 -0.8 -0.6 -1.0 -0.6 -0.9 -0.5 -0.7 -1.1 -0.6 -0.7 -0.1 -0.8 0.1 -1.0 0.2 -1.1 0.3 -1.1 0.1 -0.8 -0.3 -0.7 -0.5 -0.0 -0.0 -0.5 -0.7 -0.3 -0.8 0.1 -1.1 0.3 -1.1 0.2 -1.0 0.1 -0.8 -0.1 -0.7 -0.6 -1.1 -0.7 -0.5 -0.9 -0.6 -1.0 -0.6 -0.8 -0.7 -0.4 -0.8 -0.1 -0.7 -0.0 -0.1 0.1 -0.8 0.4 -0.8 0.8 -0.7 1.0 -0.6 0.9 -0.6 0.7 -0.5 0.6 -1.1 0.1 -0.7 -0.1 -0.8 -0.2 -1.0 -0.3 -1.1 -0.1 -1.1 0.3 -0.8 0.4 -0.7 0.1 -0.0 0.7 -0.5 0.8 -0.3 1.1 0.1 1.1 0.3 1.0 0.2 0.8 0.1 0.7 -0.1 1.1 -0.6 0.5 -0.7 0.6 -0.9 0.6 -1.0 0.7 -0.8 0.8 -0.4 0.7 -0.1 0.1 -0.0 0.8 0.1 0.8 0.4 0.7 0.8 0.6 1.0 0.6 0.9 0.5 0.7 1.1 0.6 0.7 0.1 0.8 -0.1 1.0 -0.2 1.1 -0.3 1.1 -0.1 0.8 0.3 0.7 0.5 0.0 0.0 0.5 0.7 0.3 0.8 -0.1 1.1 -0.3 1.1 -0.2 1.0 -0.1 0.8 0.1 0.7 0.6 1.1 0.7 0.5 0.9 0.6 0.9 0.5 0.9 0.8 0.4 0.7 0.1 0.9 z";
|
|
16
|
+
export declare const pathAnimatableSmallSunny = "m40.0 24.0 -0.1 0.8 -0.5 0.8 -0.6 0.8 -0.6 0.6 -0.6 0.7 -0.5 0.6 -0.7 1.2 -0.1 0.7 -0.1 0.8 -0.0 0.9 -0.1 0.9 -0.1 0.9 -0.2 0.9 -0.5 0.7 -0.0 0.0 -0.7 0.5 -0.9 0.2 -0.9 0.1 -0.9 0.1 -0.8 0.0 -0.8 0.1 -0.8 0.1 -1.2 0.7 -0.6 0.5 -0.7 0.6 -0.6 0.6 -0.8 0.6 -0.8 0.5 -0.8 0.1 -0.0 0.0 -0.8 -0.1 -0.8 -0.5 -0.8 -0.6 -0.6 -0.6 -0.7 -0.6 -0.6 -0.5 -1.2 -0.7 -0.7 -0.1 -0.8 -0.1 -0.9 -0.0 -0.9 -0.1 -0.9 -0.1 -0.9 -0.2 -0.7 -0.5 -0.0 0.0 -0.5 -0.7 -0.2 -0.9 -0.1 -0.9 -0.1 -0.9 -0.0 -0.8 -0.1 -0.8 -0.1 -0.8 -0.7 -1.2 -0.5 -0.6 -0.6 -0.7 -0.6 -0.6 -0.6 -0.8 -0.5 -0.8 -0.1 -0.8 -0.0 -0.0 0.1 -0.8 0.5 -0.8 0.6 -0.8 0.6 -0.6 0.6 -0.7 0.5 -0.6 0.7 -1.2 0.1 -0.7 0.1 -0.8 0.0 -0.9 0.1 -0.9 0.1 -0.9 0.2 -0.9 0.5 -0.7 -0.0 -0.0 0.7 -0.5 0.9 -0.2 0.9 -0.1 0.9 -0.1 0.8 -0.0 0.8 -0.1 0.8 -0.1 1.2 -0.7 0.6 -0.5 0.7 -0.6 0.6 -0.6 0.8 -0.6 0.8 -0.5 0.8 -0.1 0.0 -0.0 0.8 0.1 0.8 0.5 0.8 0.6 0.6 0.6 0.7 0.6 0.6 0.5 1.2 0.7 0.7 0.1 0.8 0.1 0.9 0.0 0.9 0.1 0.9 0.1 0.9 0.2 0.7 0.5 0.0 -0.0 0.5 0.7 0.2 0.9 0.1 0.9 0.1 0.9 0.0 0.8 0.1 0.8 0.1 0.8 0.7 1.2 0.5 0.6 0.6 0.7 0.6 0.6 0.6 0.8 0.5 0.8 0.1 0.8 z";
|
|
17
|
+
export declare const pathAnimatableSmallFourSidedCookie = "m36.9 24.6 0.1 0.7 0.2 0.8 0.2 0.7 0.4 0.9 0.4 0.9 0.2 0.9 0.1 1.0 0.1 0.9 -0.1 0.9 -0.3 0.9 -0.3 0.9 -0.4 0.8 -0.5 0.8 -0.6 0.6 -0.1 0.1 -0.6 0.6 -0.8 0.5 -0.8 0.4 -0.9 0.3 -0.9 0.3 -0.9 0.1 -0.9 -0.1 -1.0 -0.1 -0.9 -0.2 -0.9 -0.4 -0.9 -0.4 -0.7 -0.2 -0.8 -0.2 -0.7 -0.1 -1.2 0.0 -0.7 0.1 -0.8 0.2 -0.7 0.2 -0.9 0.4 -0.9 0.4 -0.9 0.2 -1.0 0.1 -0.9 0.1 -0.9 -0.1 -0.9 -0.3 -0.9 -0.3 -0.8 -0.4 -0.8 -0.5 -0.6 -0.6 -0.1 -0.1 -0.6 -0.6 -0.5 -0.8 -0.4 -0.8 -0.3 -0.9 -0.3 -0.9 -0.1 -0.9 0.1 -0.9 0.1 -1.0 0.2 -0.9 0.4 -0.9 0.4 -0.9 0.2 -0.7 0.2 -0.8 0.1 -0.7 -0.0 -1.2 -0.1 -0.7 -0.2 -0.8 -0.2 -0.7 -0.4 -0.9 -0.4 -0.9 -0.2 -0.9 -0.1 -1.0 -0.1 -0.9 0.1 -0.9 0.3 -0.9 0.3 -0.9 0.4 -0.8 0.5 -0.8 0.6 -0.6 0.1 -0.1 0.6 -0.6 0.8 -0.5 0.8 -0.4 0.9 -0.3 0.9 -0.3 0.9 -0.1 0.9 0.1 1.0 0.1 0.9 0.2 0.9 0.4 0.9 0.4 0.7 0.2 0.8 0.2 0.7 0.1 1.2 -0.0 0.7 -0.1 0.8 -0.2 0.7 -0.2 0.9 -0.4 0.9 -0.4 0.9 -0.2 1.0 -0.1 0.9 -0.1 0.9 0.1 0.9 0.3 0.9 0.3 0.8 0.4 0.8 0.5 0.6 0.6 0.1 0.1 0.6 0.6 0.5 0.8 0.4 0.8 0.3 0.9 0.3 0.9 0.1 0.9 -0.1 0.9 -0.1 1.0 -0.2 0.9 -0.4 0.9 -0.4 0.9 -0.2 0.7 -0.2 0.8 -0.1 0.7 z";
|
|
18
|
+
export declare const pathAnimatableSmallSixSidedCookie = "m38.3 24.7 0.2 0.8 0.1 0.8 0.2 0.8 -0.0 0.8 -0.1 0.9 -0.1 0.8 -0.2 0.8 -0.3 0.7 -0.4 0.8 -0.0 0.0 -0.5 0.7 -0.5 0.7 -0.6 0.5 -0.6 0.6 -0.7 0.4 -0.7 0.4 -0.8 0.3 -0.8 0.2 -0.7 0.3 -1.3 0.7 -0.6 0.5 -0.6 0.6 -0.6 0.5 -0.7 0.4 -0.8 0.4 -0.7 0.3 -0.8 0.2 -0.9 0.2 -0.8 -0.0 -0.0 -0.0 -0.8 -0.0 -0.9 -0.2 -0.8 -0.2 -0.8 -0.3 -0.7 -0.4 -0.7 -0.4 -0.6 -0.5 -0.6 -0.6 -0.6 -0.5 -1.3 -0.7 -0.7 -0.3 -0.8 -0.2 -0.8 -0.3 -0.7 -0.4 -0.7 -0.4 -0.6 -0.5 -0.6 -0.6 -0.6 -0.7 -0.4 -0.7 -0.0 -0.0 -0.4 -0.8 -0.3 -0.7 -0.2 -0.8 -0.1 -0.8 -0.1 -0.9 0.0 -0.8 0.2 -0.8 0.1 -0.8 0.2 -0.8 -0.0 -1.4 -0.2 -0.8 -0.1 -0.8 -0.2 -0.8 0.0 -0.8 0.1 -0.9 0.1 -0.8 0.2 -0.8 0.3 -0.7 0.4 -0.8 0.0 -0.1 0.4 -0.6 0.6 -0.7 0.6 -0.5 0.6 -0.6 0.7 -0.4 0.7 -0.4 0.8 -0.3 0.8 -0.3 0.7 -0.2 1.3 -0.8 0.6 -0.4 0.6 -0.6 0.6 -0.5 0.7 -0.4 0.8 -0.4 0.7 -0.3 0.8 -0.2 0.9 -0.2 0.8 0.0 0.0 0.0 0.8 0.0 0.9 0.2 0.8 0.2 0.8 0.3 0.7 0.4 0.7 0.4 0.6 0.5 0.6 0.6 0.6 0.5 1.3 0.7 0.7 0.3 0.8 0.2 0.8 0.3 0.7 0.4 0.7 0.4 0.6 0.5 0.6 0.6 0.6 0.7 0.4 0.7 0.0 0.0 0.4 0.8 0.3 0.7 0.2 0.8 0.1 0.8 0.1 0.9 -0.0 0.8 -0.2 0.8 -0.1 0.8 -0.2 0.8 z";
|
|
19
|
+
export declare const pathAnimatableSmallSevenSidedCookie = "m39.7 24.8 0.2 0.9 0.1 0.8 -0.0 0.9 -0.2 0.8 -0.0 0.2 -0.3 0.7 -0.3 0.7 -0.5 0.8 -0.6 0.6 -0.6 0.6 -0.7 0.5 -0.6 0.5 -1.1 1.2 -0.4 0.7 -0.3 0.8 -0.4 0.8 -0.5 0.8 -0.5 0.7 -0.7 0.6 -0.7 0.5 -0.7 0.3 -0.1 0.1 -0.8 0.3 -0.9 0.2 -0.9 0.0 -0.9 -0.0 -0.8 -0.2 -0.9 -0.3 -0.8 -0.1 -1.6 -0.0 -0.8 0.1 -0.9 0.3 -0.8 0.2 -0.9 0.0 -0.9 -0.1 -0.8 -0.1 -0.9 -0.3 -0.1 -0.1 -0.7 -0.3 -0.7 -0.6 -0.7 -0.5 -0.5 -0.7 -0.5 -0.8 -0.4 -0.8 -0.3 -0.8 -0.4 -0.7 -1.0 -1.1 -0.7 -0.6 -0.7 -0.5 -0.6 -0.6 -0.6 -0.6 -0.5 -0.8 -0.3 -0.7 -0.3 -0.6 -0.0 -0.3 -0.2 -0.8 -0.0 -0.9 0.1 -0.8 0.2 -0.9 0.2 -0.8 0.5 -0.8 0.3 -0.8 0.3 -0.7 0.3 -1.4 -0.0 -0.9 -0.0 -0.8 -0.0 -0.8 0.1 -0.9 0.3 -0.8 0.3 -0.8 0.4 -0.6 0.1 -0.2 0.5 -0.5 0.6 -0.6 0.7 -0.5 0.8 -0.4 0.7 -0.3 0.9 -0.2 0.8 -0.2 0.8 -0.2 1.3 -0.6 0.6 -0.4 0.7 -0.6 0.6 -0.5 0.7 -0.5 0.7 -0.3 0.8 -0.3 0.9 -0.1 0.8 -0.1 0.0 -0.0 0.9 0.1 0.7 0.1 0.9 0.3 0.7 0.3 0.7 0.5 0.7 0.5 0.6 0.6 0.6 0.4 1.3 0.6 0.8 0.2 0.8 0.2 0.8 0.2 0.8 0.3 0.8 0.4 0.7 0.5 0.6 0.5 0.5 0.7 0.0 0.0 0.5 0.8 0.3 0.7 0.3 0.8 0.1 0.9 0.0 0.8 0.0 0.8 0.0 0.9 0.3 1.4 0.3 0.7 0.3 0.8 0.5 0.8 z";
|
|
20
|
+
export declare const pathAnimatableSmallNineSidedCookie = "m39.9 24.0 -0.3 0.8 -0.4 0.8 -0.3 0.8 -0.2 1.5 0.1 0.9 0.1 0.9 -0.1 0.9 -0.2 0.8 -0.3 0.8 -0.2 0.4 -0.3 0.4 -0.5 0.7 -0.7 0.5 -0.8 0.4 -0.8 0.4 -0.8 0.4 -1.2 1.0 -0.5 0.7 -0.5 0.8 -0.6 0.6 -0.6 0.6 -0.8 0.4 -0.4 0.2 -0.5 0.1 -0.9 0.2 -0.8 -0.0 -0.9 -0.2 -0.9 -0.3 -0.8 -0.1 -1.6 -0.1 -0.8 0.2 -0.9 0.3 -0.9 0.2 -0.8 -0.0 -0.9 -0.2 -0.5 -0.1 -0.4 -0.2 -0.8 -0.4 -0.6 -0.5 -0.6 -0.7 -0.5 -0.8 -0.5 -0.7 -1.2 -1.0 -0.7 -0.4 -0.9 -0.4 -0.8 -0.4 -0.6 -0.5 -0.6 -0.7 -0.3 -0.4 -0.2 -0.4 -0.3 -0.8 -0.2 -0.8 -0.1 -0.9 0.1 -0.9 0.1 -0.9 -0.2 -1.5 -0.3 -0.8 -0.4 -0.8 -0.3 -0.8 -0.2 -0.8 -0.1 -0.9 0.1 -0.7 -0.0 -0.2 0.2 -0.8 0.4 -0.8 0.5 -0.7 0.6 -0.6 0.7 -0.7 0.5 -0.6 0.6 -1.3 0.3 -0.9 0.2 -0.8 0.3 -0.8 0.5 -0.7 0.5 -0.6 0.2 -0.2 0.5 -0.4 0.8 -0.4 0.8 -0.3 0.8 -0.2 0.9 -0.0 0.8 -0.1 1.4 -0.5 0.7 -0.4 0.7 -0.5 0.7 -0.5 0.8 -0.3 0.8 -0.2 0.9 -0.1 0.0 -0.0 0.8 0.1 0.9 0.2 0.8 0.3 0.7 0.5 0.7 0.5 0.7 0.4 1.4 0.5 0.8 0.1 0.9 0.0 0.9 0.2 0.8 0.3 0.7 0.4 0.5 0.4 0.2 0.1 0.5 0.7 0.5 0.7 0.3 0.8 0.2 0.8 0.3 0.9 0.6 1.3 0.5 0.6 0.7 0.7 0.6 0.6 0.5 0.7 0.4 0.8 0.2 0.8 0.0 0.2 0.1 0.7 -0.1 0.9 z";
|
|
21
|
+
export declare const pathAnimatableSmallTwelveSidedCookie = "m40.0 24.0 -0.1 0.8 -0.3 0.9 -0.6 0.7 -0.5 0.7 -0.4 1.4 0.1 0.9 0.1 0.9 -0.1 0.9 -0.3 0.8 -0.1 0.0 -0.5 0.7 -0.6 0.5 -0.9 0.3 -0.8 0.4 -1.1 1.1 -0.3 0.8 -0.4 0.8 -0.5 0.7 -0.7 0.6 -0.0 -0.0 -0.8 0.3 -0.9 0.1 -0.9 -0.1 -0.8 -0.1 -1.5 0.4 -0.7 0.5 -0.8 0.6 -0.7 0.3 -0.9 0.1 -0.0 0.0 -0.9 -0.1 -0.8 -0.4 -0.7 -0.5 -0.7 -0.5 -1.4 -0.4 -0.9 0.1 -0.9 0.1 -0.9 -0.1 -0.8 -0.3 -0.0 -0.1 -0.7 -0.5 -0.5 -0.7 -0.4 -0.8 -0.3 -0.8 -1.1 -1.1 -0.8 -0.4 -0.8 -0.3 -0.7 -0.5 -0.5 -0.7 -0.1 -0.0 -0.3 -0.8 -0.1 -0.9 0.2 -0.9 0.1 -0.9 -0.4 -1.4 -0.6 -0.7 -0.5 -0.7 -0.4 -0.9 -0.1 -0.7 0.0 -0.1 0.1 -0.8 0.4 -0.9 0.5 -0.7 0.6 -0.7 0.4 -1.4 -0.1 -0.9 -0.2 -0.9 0.1 -0.9 0.3 -0.8 0.0 -0.0 0.6 -0.7 0.7 -0.5 0.8 -0.3 0.8 -0.4 1.1 -1.1 0.4 -0.8 0.3 -0.8 0.5 -0.7 0.7 -0.5 0.0 -0.1 0.8 -0.3 0.9 -0.1 0.9 0.1 0.9 0.1 1.4 -0.3 0.7 -0.6 0.7 -0.5 0.9 -0.4 0.7 -0.1 0.1 0.0 0.8 0.1 0.9 0.4 0.7 0.5 0.7 0.6 1.4 0.3 0.9 -0.1 0.9 -0.1 0.9 0.1 0.8 0.3 0.0 0.0 0.7 0.6 0.5 0.7 0.4 0.8 0.3 0.8 1.1 1.1 0.8 0.4 0.8 0.3 0.8 0.5 0.4 0.7 0.1 -0.0 0.3 0.8 0.1 0.9 -0.1 0.9 -0.1 0.9 0.4 1.4 0.5 0.7 0.6 0.7 0.3 0.9 0.1 0.7 z";
|
|
22
|
+
export declare const pathAnimatableSmallGhostish = "m39.0 24.6 0.0 0.7 0.0 1.0 0.0 0.7 0.0 1.0 0.0 0.6 0.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 -0.0 1.1 -0.2 1.0 -0.3 1.0 -0.6 0.8 -0.5 0.7 -0.1 0.1 -0.8 0.6 -0.9 0.5 -0.9 0.4 -1.0 0.2 -1.1 -0.0 -1.1 -0.2 -1.1 -0.4 -1.1 -0.5 -1.0 -0.5 -0.9 -0.5 -0.8 -0.3 -0.7 -0.2 -0.6 -0.2 -0.7 -0.1 -1.2 0.0 -0.7 0.1 -0.6 0.2 -0.7 0.2 -0.8 0.3 -0.9 0.4 -1.0 0.6 -1.1 0.5 -1.1 0.4 -1.1 0.2 -1.1 -0.0 -1.0 -0.2 -0.9 -0.4 -0.9 -0.5 -0.8 -0.6 -0.1 -0.1 -0.5 -0.7 -0.6 -0.8 -0.3 -1.0 -0.2 -1.0 0.0 -1.1 0.0 -1.0 0.0 -1.0 0.0 -1.0 0.0 -1.0 0.0 -0.6 0.0 -1.0 0.0 -0.7 0.0 -1.0 0.0 -0.7 0.0 -1.4 0.0 -0.7 0.1 -0.8 0.1 -0.8 0.2 -0.8 0.2 -0.8 0.2 -0.7 0.3 -0.7 0.4 -0.8 0.3 -0.6 0.1 -0.1 0.4 -0.7 0.4 -0.7 0.5 -0.6 0.5 -0.6 0.6 -0.5 0.6 -0.6 0.6 -0.5 0.6 -0.4 0.7 -0.5 0.7 -0.4 0.7 -0.4 0.7 -0.3 0.7 -0.3 0.8 -0.2 0.7 -0.2 0.8 -0.2 0.8 -0.1 0.8 -0.1 0.7 -0.1 1.6 0.0 0.7 0.1 0.8 0.1 0.8 0.1 0.8 0.2 0.7 0.2 0.8 0.2 0.7 0.3 0.7 0.4 0.7 0.3 0.7 0.4 0.7 0.5 0.6 0.4 0.6 0.5 0.6 0.6 0.6 0.5 0.5 0.6 0.5 0.6 0.4 0.7 0.4 0.7 0.1 0.1 0.3 0.6 0.4 0.8 0.3 0.7 0.2 0.7 0.2 0.8 0.2 0.8 0.1 0.8 0.1 0.8 -0.0 0.7 z";
|
|
23
|
+
export declare const pathAnimatableSmallFourLeafClover = "m37.2 24.7 0.5 0.7 0.4 0.8 0.3 0.8 0.2 0.9 0.1 0.9 0.1 0.8 -0.0 0.9 -0.2 1.0 -0.1 0.8 -0.3 0.9 -0.4 0.8 -0.5 0.8 -0.5 0.7 -0.6 0.6 -0.1 0.1 -0.6 0.6 -0.7 0.5 -0.8 0.5 -0.8 0.4 -0.9 0.3 -0.8 0.2 -1.0 0.1 -0.8 -0.0 -0.9 -0.1 -0.9 -0.1 -0.9 -0.3 -0.8 -0.3 -0.8 -0.4 -0.8 -0.5 -1.3 0.0 -0.7 0.5 -0.8 0.4 -0.8 0.3 -0.9 0.3 -0.9 0.1 -0.8 0.1 -0.9 -0.0 -0.9 -0.1 -0.9 -0.3 -0.9 -0.3 -0.8 -0.3 -0.8 -0.5 -0.7 -0.5 -0.7 -0.6 0.0 -0.1 -0.6 -0.6 -0.5 -0.8 -0.5 -0.7 -0.3 -0.8 -0.3 -0.9 -0.2 -0.9 -0.2 -0.8 0.0 -1.0 0.1 -0.9 0.1 -0.8 0.2 -0.9 0.3 -0.8 0.4 -0.8 0.5 -0.7 -0.0 -1.4 -0.5 -0.7 -0.4 -0.8 -0.3 -0.8 -0.2 -0.9 -0.1 -0.8 -0.1 -0.9 0.0 -0.9 0.2 -1.0 0.1 -0.8 0.3 -0.8 0.4 -0.9 0.5 -0.8 0.5 -0.7 0.6 -0.7 0.1 0.0 0.6 -0.6 0.8 -0.5 0.7 -0.5 0.8 -0.4 0.9 -0.3 0.9 -0.2 0.8 -0.1 1.0 0.0 0.8 0.1 0.9 0.1 0.9 0.3 0.8 0.3 0.8 0.4 0.7 0.5 1.3 -0.0 0.8 -0.5 0.8 -0.4 0.8 -0.3 0.9 -0.3 0.9 -0.1 0.9 -0.1 0.9 0.0 0.9 0.1 0.8 0.3 0.9 0.3 0.8 0.3 0.7 0.5 0.8 0.5 0.6 0.6 0.1 0.0 0.6 0.7 0.5 0.7 0.5 0.8 0.4 0.8 0.2 0.9 0.3 0.9 0.1 0.8 -0.0 1.0 -0.1 0.8 -0.1 0.9 -0.2 0.9 -0.3 0.8 -0.4 0.8 -0.5 0.7 z";
|
|
24
|
+
export declare const pathAnimatableSmallEightLeafClover = "m39.3 24.8 0.4 0.8 0.2 0.9 0.2 0.9 -0.0 0.9 -0.1 0.9 -0.2 0.9 -0.2 0.4 -0.1 0.4 -0.5 0.8 -0.6 0.7 -0.6 0.6 -0.8 0.5 -0.8 0.4 -0.8 0.4 -1.1 1.1 -0.3 0.8 -0.5 0.9 -0.5 0.7 -0.7 0.6 -0.6 0.6 -0.8 0.4 -0.2 0.1 -0.7 0.2 -0.8 0.2 -0.9 0.1 -0.9 -0.1 -0.9 -0.1 -0.9 -0.3 -0.8 -0.3 -1.6 0.1 -0.8 0.3 -0.9 0.2 -0.9 0.2 -0.9 -0.0 -0.9 -0.1 -0.8 -0.2 -0.4 -0.2 -0.5 -0.2 -0.7 -0.4 -0.7 -0.6 -0.6 -0.6 -0.5 -0.8 -0.4 -0.8 -0.4 -0.8 -1.1 -1.1 -0.9 -0.3 -0.7 -0.5 -0.8 -0.5 -0.6 -0.6 -0.6 -0.7 -0.4 -0.8 -0.1 -0.2 -0.2 -0.6 -0.2 -0.9 -0.1 -0.8 0.0 -1.0 0.2 -0.8 0.2 -0.9 0.4 -0.9 -0.0 -1.5 -0.4 -0.8 -0.2 -0.9 -0.2 -0.8 -0.0 -0.9 0.1 -0.9 0.2 -0.9 0.2 -0.6 0.1 -0.2 0.4 -0.8 0.6 -0.7 0.6 -0.6 0.8 -0.5 0.8 -0.5 0.8 -0.3 1.1 -1.1 0.4 -0.8 0.4 -0.8 0.5 -0.8 0.6 -0.6 0.7 -0.6 0.7 -0.4 0.5 -0.3 0.4 -0.1 0.9 -0.2 0.8 -0.1 0.9 0.0 0.9 0.2 0.9 0.2 0.8 0.3 1.5 0.1 0.9 -0.3 0.9 -0.3 0.9 -0.2 0.9 -0.0 0.9 0.1 0.8 0.1 0.7 0.3 0.2 0.1 0.8 0.4 0.7 0.6 0.6 0.6 0.5 0.7 0.5 0.8 0.3 0.9 1.1 1.1 0.8 0.4 0.8 0.4 0.8 0.5 0.6 0.6 0.6 0.7 0.5 0.8 0.1 0.4 0.2 0.4 0.2 0.9 0.1 0.9 -0.0 0.9 -0.2 0.9 -0.2 0.9 -0.4 0.8 z";
|
|
25
|
+
export declare const pathAnimatableSmallFlower = "m40.0 24.0 -0.2 0.8 -0.6 0.8 -0.8 0.7 -0.9 0.6 -1.1 0.5 -1.0 0.3 -0.9 0.3 0.2 1.5 0.5 0.9 0.4 1.1 0.2 1.1 0.1 1.0 -0.1 1.0 -0.5 0.7 -0.0 0.0 -0.7 0.5 -1.0 0.1 -1.0 -0.1 -1.1 -0.3 -1.1 -0.3 -1.0 -0.5 -0.9 -0.5 -0.8 1.2 -0.3 1.0 -0.5 1.0 -0.6 1.0 -0.7 0.9 -0.8 0.5 -0.8 0.2 0.0 -0.0 -0.8 -0.2 -0.8 -0.5 -0.7 -0.9 -0.6 -1.0 -0.5 -1.0 -0.3 -1.0 -0.8 -1.2 -0.9 0.5 -1.0 0.5 -1.1 0.3 -1.1 0.3 -1.0 0.1 -1.0 -0.1 -0.7 -0.5 -0.0 -0.0 -0.5 -0.7 -0.1 -0.9 0.1 -1.1 0.2 -1.1 0.4 -1.1 0.5 -0.9 0.5 -1.0 -1.3 -0.8 -0.9 -0.3 -1.1 -0.5 -0.9 -0.6 -0.9 -0.7 -0.5 -0.8 -0.2 -0.8 0.0 0.0 0.2 -0.8 0.6 -0.8 0.8 -0.7 0.9 -0.6 1.0 -0.4 1.1 -0.4 1.2 -0.8 -0.5 -0.9 -0.5 -1.0 -0.3 -1.1 -0.3 -1.1 -0.1 -1.0 0.1 -1.0 0.5 -0.7 0.0 -0.0 0.7 -0.5 0.9 -0.1 1.1 0.1 1.1 0.2 1.1 0.4 1.0 0.5 1.4 0.2 0.3 -1.0 0.3 -0.9 0.5 -1.1 0.6 -0.9 0.7 -0.9 0.8 -0.5 0.8 -0.2 0.0 0.0 0.8 0.2 0.8 0.5 0.7 0.9 0.6 0.9 0.5 1.1 0.3 0.9 0.3 1.0 1.5 -0.2 0.9 -0.5 1.1 -0.4 1.1 -0.2 1.1 -0.1 0.9 0.1 0.7 0.5 0.0 0.0 0.5 0.7 0.1 1.0 -0.1 1.0 -0.2 1.1 -0.4 1.1 -0.5 1.0 -0.5 0.8 1.3 0.9 1.0 0.4 1.0 0.4 0.9 0.6 0.9 0.7 0.5 0.8 0.2 0.8 z";
|
|
26
|
+
export declare const pathAnimatableSmallPuffy = "m42.2 24.1 -0.1 0.9 -0.3 0.9 -0.6 0.9 -0.9 0.7 -1.4 0.5 0.1 1.8 0.3 1.0 -0.1 0.9 -0.2 0.9 -0.4 0.7 -0.1 0.2 -0.5 0.6 -0.8 0.7 -0.8 0.4 -1.1 0.2 -1.2 -0.1 -2.2 -0.4 -0.2 0.9 -0.4 0.8 -0.5 0.6 -0.7 0.5 -0.7 0.3 -0.0 0.1 -0.8 0.2 -0.8 0.0 -0.8 -0.1 -0.8 -0.2 -0.8 -0.4 -0.7 -0.7 -1.4 0.1 -0.7 0.6 -0.8 0.4 -0.8 0.3 -0.8 0.0 -0.8 -0.1 -0.7 -0.2 -0.1 -0.0 -0.7 -0.4 -0.6 -0.5 -0.5 -0.6 -0.4 -0.8 -0.9 -1.1 -1.6 0.7 -1.2 0.1 -1.0 -0.3 -0.9 -0.4 -0.7 -0.6 -0.6 -0.7 -0.0 -0.1 -0.4 -0.7 -0.2 -0.9 -0.0 -1.0 0.2 -1.0 0.0 -1.7 -1.3 -0.5 -0.9 -0.8 -0.6 -0.8 -0.3 -1.0 -0.1 -0.7 -0.0 -0.4 0.1 -0.8 0.3 -0.9 0.5 -0.8 0.8 -0.8 1.3 -0.6 0.3 -1.6 -0.3 -1.0 -0.0 -1.0 0.2 -0.9 0.4 -0.8 -0.0 -0.1 0.6 -0.7 0.6 -0.6 0.9 -0.4 1.0 -0.3 1.2 0.1 1.5 0.6 1.0 -0.9 0.4 -0.8 0.6 -0.7 0.6 -0.5 0.6 -0.4 0.2 -0.1 0.7 -0.1 0.7 -0.1 0.9 0.0 0.8 0.2 0.8 0.5 0.7 0.6 1.4 0.1 0.7 -0.7 0.8 -0.4 0.8 -0.2 0.8 -0.1 0.8 0.1 0.8 0.2 0.1 -0.0 0.7 0.4 0.6 0.5 0.5 0.6 0.4 0.8 0.9 1.2 1.6 -0.8 1.2 -0.1 1.0 0.3 0.9 0.4 0.7 0.6 0.6 0.7 0.0 0.1 0.4 0.8 0.2 0.9 0.0 1.0 -0.3 1.0 0.3 1.6 1.2 0.6 0.9 0.7 0.5 0.9 0.3 0.9 0.1 0.8 z";
|
|
27
|
+
export declare const pathAnimatableSmallPuffyDiamond = "m40.0 24.0 -0.1 0.9 -0.2 0.8 -0.4 0.7 -0.5 0.8 -0.8 0.6 -0.8 0.5 -1.2 0.3 -1.7 0.6 0.0 0.7 -0.1 0.7 -0.2 0.7 -0.2 0.6 -0.4 0.5 -0.4 0.5 -0.1 0.1 -0.5 0.4 -0.5 0.4 -0.6 0.3 -0.7 0.1 -0.7 0.1 -0.7 0.0 -0.6 1.6 -0.3 1.2 -0.5 0.9 -0.6 0.7 -0.7 0.6 -0.9 0.4 -0.7 0.2 -0.9 0.1 -0.1 0.0 -0.8 -0.1 -0.8 -0.2 -0.7 -0.3 -0.8 -0.6 -0.6 -0.7 -0.5 -0.8 -0.4 -1.2 -0.5 -1.8 -0.7 0.0 -0.7 -0.1 -0.7 -0.2 -0.6 -0.2 -0.6 -0.4 -0.4 -0.4 -0.1 -0.1 -0.4 -0.5 -0.4 -0.5 -0.2 -0.7 -0.2 -0.6 -0.1 -0.7 0.0 -0.7 -1.7 -0.6 -1.2 -0.3 -0.9 -0.5 -0.7 -0.7 -0.5 -0.6 -0.4 -0.8 -0.2 -0.9 -0.1 -0.8 -0.0 -0.0 0.1 -0.8 0.2 -0.9 0.4 -0.7 0.5 -0.8 0.7 -0.6 0.9 -0.5 1.2 -0.3 1.7 -0.6 0.0 -0.7 0.1 -0.7 0.2 -0.7 0.3 -0.5 0.3 -0.6 0.4 -0.5 0.1 -0.0 0.5 -0.5 0.6 -0.3 0.6 -0.3 0.6 -0.2 0.7 -0.1 0.7 0.0 0.5 -1.8 0.4 -1.1 0.5 -0.9 0.6 -0.7 0.8 -0.5 0.7 -0.4 0.9 -0.2 0.7 -0.1 0.1 0.0 0.9 0.1 0.8 0.3 0.7 0.3 0.7 0.6 0.7 0.7 0.5 0.9 0.3 1.2 0.6 1.6 0.7 0.0 0.7 0.1 0.6 0.2 0.6 0.3 0.6 0.3 0.5 0.5 0.1 -0.0 0.4 0.5 0.3 0.5 0.3 0.7 0.2 0.6 0.1 0.7 -0.0 0.7 1.7 0.6 1.2 0.3 0.9 0.5 0.7 0.6 0.5 0.7 0.4 0.8 0.2 0.8 0.1 0.9 z";
|
|
28
|
+
export declare const pathAnimatableSmallBun = "m34.6 24.5 1.2 0.7 0.9 0.8 0.7 0.9 0.6 0.8 0.5 1.0 0.3 1.0 0.2 1.0 0.1 1.0 -0.1 1.0 -0.2 0.9 -0.3 0.9 -0.4 0.9 -0.5 0.8 -0.6 0.8 -0.5 0.5 -0.2 0.2 -0.8 0.6 -0.8 0.4 -0.9 0.4 -0.9 0.3 -1.0 0.2 -1.2 0.0 -1.0 0.0 -0.9 0.0 -1.0 0.0 -0.9 0.0 -0.5 0.0 -1.0 0.0 -0.9 0.0 -1.0 0.0 -0.9 0.0 -1.0 0.0 -0.5 0.0 -0.9 0.0 -1.0 0.0 -0.9 0.0 -1.0 0.0 -1.2 -0.0 -1.0 -0.2 -0.9 -0.3 -0.9 -0.3 -0.8 -0.5 -0.8 -0.6 -0.3 -0.3 -0.5 -0.4 -0.6 -0.7 -0.5 -0.9 -0.4 -0.8 -0.3 -0.9 -0.2 -1.0 -0.0 -1.0 0.0 -1.0 0.2 -1.0 0.4 -1.0 0.4 -1.0 0.6 -0.9 0.8 -0.8 0.9 -0.8 1.1 -0.7 0.0 -1.0 -1.1 -0.7 -0.9 -0.8 -0.8 -0.9 -0.6 -0.8 -0.4 -1.0 -0.4 -1.0 -0.2 -1.0 -0.0 -1.0 0.1 -1.0 0.1 -0.9 0.3 -1.0 0.4 -0.8 0.6 -0.9 0.6 -0.7 0.4 -0.5 0.3 -0.2 0.8 -0.6 0.8 -0.5 0.9 -0.3 0.9 -0.3 1.0 -0.2 1.2 -0.0 1.0 -0.0 0.9 -0.0 1.0 -0.0 0.9 -0.0 0.5 -0.0 1.0 -0.0 0.9 -0.0 1.0 -0.0 0.9 -0.0 1.0 -0.0 0.5 -0.0 0.9 -0.0 1.0 -0.0 0.9 -0.0 1.0 -0.0 1.2 0.0 1.0 0.2 0.9 0.3 0.9 0.3 0.8 0.5 0.8 0.6 0.3 0.3 0.4 0.4 0.6 0.7 0.6 0.9 0.4 0.8 0.3 1.0 0.2 0.9 0.0 1.0 -0.0 1.0 -0.2 1.0 -0.3 1.0 -0.5 0.9 -0.6 1.0 -0.8 0.8 -0.9 0.8 -1.1 0.6 z";
|
|
29
|
+
export declare const pathAnimatableSmallHeart = "m36.1 24.0 -0.6 0.6 -0.6 0.7 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.2 0.2 -0.4 0.5 -0.5 0.5 -0.2 0.2 -0.4 0.5 -0.2 0.3 -0.4 0.5 -0.4 0.5 -0.2 0.2 -0.4 0.5 -0.4 0.5 -0.2 0.2 -0.4 0.5 -0.3 0.4 -0.5 0.5 -0.3 0.4 -0.5 0.5 -0.4 0.6 -0.5 0.5 -0.4 0.6 -0.7 0.7 -0.6 0.7 -0.8 1.0 -0.0 -0.0 -0.8 -1.0 -0.6 -0.7 -0.7 -0.8 -0.4 -0.5 -0.5 -0.5 -0.4 -0.6 -0.5 -0.5 -0.3 -0.4 -0.5 -0.5 -0.3 -0.4 -0.4 -0.5 -0.2 -0.2 -0.4 -0.5 -0.4 -0.5 -0.2 -0.3 -0.4 -0.4 -0.4 -0.5 -0.2 -0.3 -0.4 -0.5 -0.2 -0.2 -0.4 -0.5 -0.5 -0.5 -0.2 -0.2 -0.4 -0.5 -0.4 -0.5 -0.4 -0.5 -0.4 -0.5 -0.6 -0.7 -0.5 -0.6 -0.6 -0.6 -0.7 -0.8 -0.6 -0.8 -0.7 -0.9 -0.5 -0.9 -0.5 -1.1 -0.3 -1.0 -0.1 -1.0 0.0 -1.0 0.2 -1.0 0.3 -0.9 0.5 -0.9 0.5 -0.8 0.1 -0.1 0.6 -0.7 0.8 -0.6 0.8 -0.5 0.9 -0.4 1.0 -0.2 1.0 -0.1 1.1 0.1 1.1 0.2 1.1 0.4 1.1 0.7 1.1 1.1 0.9 1.1 0.9 0.9 0.6 0.7 0.5 0.6 0.5 0.5 0.8 0.0 0.5 -0.5 0.5 -0.6 0.6 -0.7 0.7 -0.8 1.1 -1.2 1.1 -1.0 1.1 -0.7 1.1 -0.5 1.1 -0.2 1.1 -0.1 1.0 0.1 1.0 0.3 0.9 0.3 0.8 0.5 0.8 0.7 0.6 0.6 0.1 0.1 0.5 0.8 0.4 0.9 0.4 0.9 0.2 1.0 -0.0 1.0 -0.1 1.0 -0.3 1.1 -0.5 0.9 -0.5 1.0 -0.7 0.9 -0.6 0.8 -0.7 0.8 z";
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
// 29 shapes (subset)
|
|
2
|
+
// 0,0,48,48 viewport, 38x38 shapes
|
|
3
|
+
// 120 points
|
|
4
|
+
export const pathAnimatableSmallCircle = 'm40.0 24.3 -0.0 0.5 -0.2 1.5 -0.0 0.4 -0.2 1.0 -0.3 0.8 -0.2 0.9 -0.4 0.9 -0.2 0.5 -0.3 0.7 -0.5 0.7 -0.7 1.2 -0.2 0.2 -0.5 0.6 -0.6 0.7 -0.7 0.7 -0.5 0.5 -0.5 0.4 -0.8 0.6 -0.8 0.5 -0.8 0.5 -0.3 0.2 -1.0 0.4 -0.7 0.3 -0.8 0.2 -1.1 0.4 -0.5 0.1 -0.9 0.1 -0.7 0.1 -0.8 0.1 -1.3 -0.0 -0.4 -0.0 -0.9 -0.1 -0.7 -0.1 -1.2 -0.2 -0.7 -0.2 -0.8 -0.3 -0.8 -0.3 -0.6 -0.2 -0.8 -0.4 -0.6 -0.3 -0.8 -0.5 -0.7 -0.6 -0.7 -0.5 -0.5 -0.4 -0.8 -0.8 -0.6 -0.6 -0.5 -0.6 -0.4 -0.5 -0.7 -1.2 -0.3 -0.5 -0.5 -1.0 -0.1 -0.2 -0.6 -1.5 -0.0 -0.1 -0.3 -0.9 -0.2 -0.7 -0.2 -1.3 -0.0 -0.4 -0.1 -0.8 0.0 -0.8 0.0 -1.0 0.2 -1.3 0.0 -0.2 0.1 -0.8 0.2 -0.9 0.3 -0.8 0.3 -1.0 0.5 -0.9 0.5 -0.9 0.1 -0.2 0.7 -1.2 0.2 -0.2 0.5 -0.7 0.5 -0.6 0.6 -0.6 0.6 -0.6 0.8 -0.6 0.5 -0.5 0.7 -0.4 0.9 -0.6 0.9 -0.4 0.5 -0.2 0.7 -0.4 0.8 -0.2 1.0 -0.3 0.6 -0.2 0.8 -0.1 1.2 -0.1 0.6 -0.1 1.2 0.0 0.4 0.0 0.8 0.1 1.3 0.2 0.4 0.1 1.0 0.2 0.7 0.2 0.6 0.3 1.0 0.4 1.3 0.6 0.0 0.1 0.8 0.4 0.9 0.6 0.6 0.6 0.5 0.4 0.8 0.8 0.3 0.3 0.6 0.7 0.4 0.6 0.5 0.7 0.6 0.9 0.4 0.8 0.2 0.5 0.4 0.9 0.4 1.4 0.1 0.1 0.2 0.8 0.1 1.0 0.1 0.7 0.1 1.3 z';
|
|
5
|
+
export const pathAnimatableSmallSquare = 'm40.0 24.8 -0.0 0.9 -0.0 0.8 -0.0 0.9 -0.0 0.8 -0.0 1.0 -0.1 0.9 -0.0 1.0 -0.2 0.9 -0.2 1.0 -0.3 0.9 -0.4 0.8 -0.5 0.8 -0.6 0.8 -0.6 0.8 -0.0 -0.0 -0.8 0.6 -0.8 0.6 -0.8 0.5 -0.8 0.4 -0.9 0.3 -1.0 0.2 -1.0 0.2 -0.9 0.0 -0.9 0.1 -1.0 -0.0 -0.8 -0.0 -0.9 -0.0 -0.8 -0.0 -0.9 0.0 -1.6 0.0 -0.9 -0.0 -0.8 -0.0 -0.9 -0.0 -0.8 -0.0 -1.0 -0.0 -0.9 -0.1 -1.0 -0.0 -0.9 -0.2 -1.0 -0.2 -0.9 -0.3 -0.8 -0.4 -0.8 -0.5 -0.8 -0.6 -0.8 -0.6 0.0 -0.0 -0.6 -0.8 -0.6 -0.8 -0.5 -0.8 -0.4 -0.8 -0.3 -0.9 -0.2 -1.0 -0.2 -1.0 -0.0 -0.9 -0.1 -0.9 0.0 -1.0 0.0 -0.8 0.0 -0.9 0.0 -0.8 -0.0 -0.9 -0.0 -1.6 0.0 -0.9 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -1.0 0.1 -0.9 0.0 -1.0 0.2 -0.9 0.2 -1.0 0.3 -0.9 0.4 -0.8 0.5 -0.8 0.6 -0.8 0.6 -0.8 0.0 0.0 0.8 -0.6 0.8 -0.6 0.8 -0.5 0.8 -0.4 0.9 -0.3 1.0 -0.2 1.0 -0.2 0.9 -0.0 0.9 -0.1 1.0 0.0 0.8 0.0 0.9 0.0 0.8 0.0 0.9 -0.0 1.6 -0.0 0.9 0.0 0.8 0.0 0.9 0.0 0.8 0.0 1.0 0.0 0.9 0.1 1.0 0.0 0.9 0.2 1.0 0.2 0.9 0.3 0.8 0.4 0.8 0.5 0.8 0.6 0.8 0.6 -0.0 0.0 0.6 0.8 0.6 0.8 0.5 0.8 0.4 0.8 0.3 0.9 0.2 1.0 0.2 1.0 0.0 0.9 0.1 0.9 -0.0 1.0 -0.0 0.8 -0.0 0.9 -0.0 0.8 0.0 0.9 z';
|
|
6
|
+
export const pathAnimatableSmallSlanted = 'm39.1 24.1 -0.0 0.8 -0.2 1.2 -0.0 0.8 -0.1 0.8 -0.1 0.8 -0.1 0.8 -0.1 0.8 -0.1 1.2 -0.1 0.9 -0.1 1.0 -0.2 0.9 -0.2 1.0 -0.4 0.9 -0.6 0.8 -0.6 0.6 -0.1 0.1 -0.7 0.6 -0.9 0.4 -0.9 0.3 -1.0 0.1 -1.0 0.1 -1.0 -0.0 -0.9 -0.0 -1.0 0.0 -0.8 0.0 -0.8 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -1.2 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -0.8 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -1.2 -0.0 -1.1 -0.0 -1.0 -0.0 -1.1 -0.1 -1.1 -0.2 -0.9 -0.4 -0.9 -0.6 -0.8 -0.7 0.0 0.0 -0.6 -0.8 -0.5 -0.9 -0.3 -1.0 -0.1 -1.1 0.0 -1.1 0.1 -1.0 0.1 -1.1 0.1 -0.9 0.1 -1.2 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.0 -0.8 0.2 -1.2 0.1 -0.8 0.0 -0.8 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.1 -1.2 0.1 -0.9 0.1 -1.0 0.2 -0.9 0.2 -1.0 0.4 -0.9 0.6 -0.8 0.6 -0.6 0.1 -0.1 0.7 -0.6 0.9 -0.4 0.9 -0.3 1.0 -0.1 1.0 -0.1 1.0 0.0 0.9 0.0 1.0 0.0 0.8 0.0 0.8 0.0 0.8 0.0 0.9 0.0 0.8 0.0 1.2 0.0 0.8 0.0 0.9 0.0 0.8 0.0 0.8 0.0 0.8 0.0 0.9 0.0 0.8 0.0 1.2 0.0 1.1 0.0 1.0 0.0 1.1 0.1 1.1 0.2 0.9 0.4 0.9 0.6 0.8 0.7 -0.0 -0.0 0.6 0.8 0.5 0.9 0.3 1.0 0.1 1.1 -0.0 1.1 -0.1 1.0 -0.1 1.1 -0.1 1.0 -0.1 1.2 -0.1 0.8 -0.1 0.8 -0.1 0.8 -0.1 0.8 z';
|
|
7
|
+
export const pathAnimatableSmallArch = 'm39.5 24.7 0.0 0.7 0.0 1.0 0.0 0.7 0.0 1.0 0.0 0.7 0.0 1.1 0.0 0.7 0.0 1.0 0.0 1.0 0.0 1.4 -0.0 1.2 -0.2 1.2 -0.5 1.0 -0.6 0.8 -0.0 -0.0 -0.8 0.6 -1.0 0.5 -1.2 0.2 -1.5 0.0 -1.4 0.0 -0.7 0.0 -1.4 0.0 -0.7 0.0 -0.7 0.0 -0.7 0.0 -1.3 0.0 -0.7 0.0 -0.7 0.0 -0.7 0.0 -1.4 0.0 -0.7 0.0 -0.7 0.0 -0.7 0.0 -1.3 0.0 -0.7 0.0 -0.7 0.0 -0.7 0.0 -1.4 0.0 -0.7 0.0 -1.4 0.0 -1.5 -0.0 -1.2 -0.2 -1.0 -0.5 -0.8 -0.6 0.0 -0.0 -0.6 -0.8 -0.5 -1.0 -0.2 -1.2 -0.0 -1.2 -0.0 -1.4 -0.0 -1.0 -0.0 -1.0 -0.0 -0.7 -0.0 -1.1 -0.0 -0.7 -0.0 -1.0 -0.0 -0.7 -0.0 -1.0 -0.0 -0.7 -0.0 -0.7 0.1 -1.2 -0.0 -0.5 0.1 -0.7 0.1 -0.8 0.4 -1.3 0.1 -0.3 0.2 -0.8 0.6 -1.2 0.1 -0.2 0.4 -0.8 0.4 -0.7 0.6 -0.8 0.4 -0.5 0.8 -0.9 0.3 -0.3 0.5 -0.5 0.7 -0.6 0.6 -0.4 0.7 -0.5 0.7 -0.4 0.7 -0.4 0.7 -0.4 1.2 -0.4 0.5 -0.2 0.8 -0.2 0.8 -0.2 1.1 -0.2 0.7 -0.1 0.4 0.0 0.8 0.0 1.0 0.0 0.6 0.1 0.9 0.1 0.8 0.1 0.9 0.3 0.6 0.2 1.2 0.4 0.6 0.3 0.5 0.2 0.7 0.4 0.9 0.6 0.5 0.3 0.9 0.7 0.5 0.5 0.4 0.4 0.7 0.8 0.4 0.4 0.7 1.0 0.5 0.7 0.3 0.6 0.5 0.9 0.1 0.3 0.3 0.8 0.4 1.3 0.1 0.3 0.2 1.0 0.1 0.6 0.2 1.3 -0.0 0.5 z';
|
|
8
|
+
export const pathAnimatableSmallFan = 'm37.4 24.7 0.3 0.7 0.2 0.8 0.3 0.8 0.2 0.9 0.2 0.8 0.1 0.9 0.2 1.0 0.1 1.0 0.0 1.1 0.0 1.0 -0.0 1.1 -0.3 1.1 -0.4 0.9 -0.6 0.8 -0.1 0.1 -0.8 0.6 -0.9 0.4 -1.1 0.3 -1.5 0.0 -1.2 0.0 -0.7 0.0 -1.2 0.0 -0.6 0.0 -1.3 0.0 -0.6 0.0 -0.7 0.0 -1.2 0.0 -0.6 0.0 -0.7 0.0 -1.2 0.0 -0.7 0.0 -0.6 0.0 -0.6 0.0 -1.3 0.0 -0.6 0.0 -1.2 0.0 -0.7 0.0 -1.2 0.0 -1.0 -0.0 -1.1 -0.0 -1.2 -0.1 -1.0 -0.2 -0.9 -0.4 -0.8 -0.6 -0.1 -0.0 -0.6 -0.9 -0.4 -0.9 -0.2 -1.1 -0.1 -1.1 0.0 -1.1 -0.0 -1.0 -0.0 -1.2 -0.0 -1.2 -0.0 -0.6 -0.0 -0.7 -0.0 -1.2 -0.0 -0.6 -0.0 -0.6 -0.0 -1.3 -0.0 -0.6 -0.0 -0.6 -0.0 -1.2 -0.0 -0.7 -0.0 -0.6 -0.0 -1.2 -0.0 -0.6 -0.0 -1.3 -0.0 -0.6 -0.0 -1.2 -0.0 -1.2 0.0 -1.2 0.3 -1.1 0.4 -0.9 0.6 -0.9 0.1 0.0 0.8 -0.6 0.9 -0.4 1.1 -0.3 1.1 0.0 1.1 0.0 1.0 0.1 1.0 0.0 1.0 0.2 0.9 0.1 0.9 0.2 0.8 0.2 0.8 0.3 0.8 0.2 0.7 0.3 0.7 0.2 0.7 0.3 0.6 0.3 0.7 0.4 0.6 0.3 0.5 0.3 0.6 0.3 0.5 0.4 0.5 0.3 0.5 0.4 0.5 0.4 0.5 0.3 0.4 0.4 0.5 0.4 0.4 0.4 0.8 0.8 0.4 0.4 0.4 0.5 0.3 0.4 0.4 0.5 0.4 0.5 0.4 0.5 0.3 0.5 0.4 0.5 0.3 0.6 0.3 0.5 0.4 0.7 0.3 0.5 0.3 0.7 0.3 0.7 z';
|
|
9
|
+
export const pathAnimatableSmallArrow = 'm36.9 24.5 0.6 0.9 0.4 0.8 0.5 0.8 0.4 0.9 0.5 1.0 0.3 1.1 0.3 1.1 0.1 1.0 -0.1 1.0 -0.3 1.0 -0.4 0.9 -0.5 0.9 -0.3 0.3 -0.4 0.5 -0.8 0.6 -0.8 0.5 -1.0 0.4 -1.0 0.2 -1.0 0.1 -1.1 -0.1 -1.0 -0.2 -1.1 -0.2 -1.0 -0.2 -0.8 -0.3 -0.9 -0.2 -0.7 -0.2 -0.8 -0.1 -0.7 -0.1 -0.7 -0.1 -1.2 -0.0 -0.7 0.1 -0.7 0.1 -0.8 0.1 -0.8 0.2 -0.8 0.2 -0.9 0.3 -0.9 0.2 -1.0 0.2 -1.1 0.2 -1.1 0.1 -1.1 -0.1 -1.0 -0.1 -1.0 -0.4 -0.9 -0.5 -0.7 -0.7 -0.0 -0.0 -0.6 -0.8 -0.5 -0.9 -0.4 -0.9 -0.3 -1.0 -0.1 -1.0 0.0 -1.0 0.2 -1.1 0.4 -1.0 0.4 -1.0 0.5 -1.0 0.5 -0.8 0.7 -1.1 0.4 -0.7 0.5 -0.7 0.4 -0.7 0.2 -0.3 0.5 -0.7 0.4 -0.7 0.2 -0.3 0.5 -0.7 0.2 -0.4 0.2 -0.3 0.4 -0.7 0.3 -0.4 0.4 -0.7 0.2 -0.3 0.5 -0.7 0.2 -0.3 0.2 -0.4 0.4 -0.7 0.5 -0.6 0.3 -0.6 0.4 -0.6 0.4 -0.5 0.4 -0.6 0.5 -0.6 0.6 -0.6 0.6 -0.5 0.6 -0.4 0.7 -0.4 0.7 -0.3 0.7 -0.2 0.7 -0.0 0.1 -0.0 0.8 0.1 0.7 0.2 0.7 0.3 0.7 0.3 0.7 0.5 0.5 0.5 0.6 0.5 0.5 0.6 0.4 0.5 0.4 0.6 0.4 0.6 0.4 0.5 0.3 0.6 0.3 0.5 0.5 0.7 0.2 0.3 0.4 0.6 0.2 0.4 0.4 0.6 0.4 0.6 0.2 0.4 0.4 0.6 0.2 0.3 0.4 0.7 0.4 0.6 0.2 0.3 0.4 0.7 0.4 0.6 0.4 0.7 z';
|
|
10
|
+
export const pathAnimatableSmallSemicircle = 'm39.1 24.7 0.3 0.9 0.2 0.8 0.2 0.9 0.1 1.0 0.1 0.9 -0.0 0.9 -0.0 1.0 -0.3 0.9 -0.1 0.2 -0.4 0.6 -0.7 0.7 -1.0 0.4 -1.6 0.1 -0.9 0.0 -1.7 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -0.9 0.0 -0.2 -0.1 -0.6 0.1 -0.9 0.0 -0.8 0.0 -0.2 -0.1 -0.7 0.1 -0.8 0.0 -0.1 -0.0 -0.8 0.0 -0.3 0.0 -0.5 0.0 -0.8 0.0 -0.3 0.0 -0.6 0.0 -0.8 0.0 -0.2 0.1 -0.7 -0.1 -0.8 0.0 -0.9 0.0 -0.1 0.2 -0.7 -0.2 -0.9 0.0 -0.8 0.0 -0.9 0.0 -0.8 0.0 -1.7 0.0 -0.9 0.0 -1.6 -0.1 -1.0 -0.4 -0.7 -0.7 -0.4 -0.6 -0.1 -0.2 -0.3 -0.9 -0.0 -1.0 0.0 -0.9 0.1 -0.9 0.1 -1.0 0.2 -0.9 0.2 -0.8 0.3 -0.9 0.3 -0.7 0.3 -0.8 0.4 -0.7 0.4 -0.7 0.4 -0.7 0.4 -0.6 0.5 -0.6 0.4 -0.5 0.5 -0.5 0.5 -0.5 0.5 -0.5 0.5 -0.4 0.5 -0.4 0.6 -0.4 0.5 -0.3 0.5 -0.3 0.6 -0.3 0.5 -0.3 0.5 -0.2 0.6 -0.2 0.5 -0.2 0.5 -0.2 0.5 -0.1 0.6 -0.2 0.5 -0.1 0.5 -0.1 0.5 -0.1 0.6 -0.0 0.5 -0.1 0.5 0.0 1.0 0.0 0.5 0.0 0.5 0.1 0.6 0.0 0.5 0.1 0.5 0.1 0.5 0.1 0.6 0.2 0.5 0.1 0.5 0.2 0.5 0.2 0.6 0.2 0.5 0.2 0.5 0.3 0.6 0.3 0.5 0.3 0.5 0.3 0.6 0.4 0.5 0.4 0.5 0.4 0.5 0.5 0.5 0.5 0.5 0.5 0.4 0.5 0.5 0.6 0.4 0.6 0.4 0.7 0.4 0.7 0.4 0.7 0.3 0.8 z';
|
|
11
|
+
export const pathAnimatableSmallOval = 'm37.7 24.0 -0.3 0.7 -0.4 0.7 -0.3 0.6 -0.3 0.7 -0.4 0.6 -0.3 0.5 -0.4 0.6 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.3 0.4 -0.5 0.4 -0.8 0.8 -0.4 0.5 -0.4 0.3 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.6 0.4 -0.5 0.3 -0.6 0.4 -0.7 0.3 -0.6 0.3 -0.7 0.4 -0.7 0.3 -0.7 0.2 -0.7 0.3 -0.9 0.3 -0.8 0.2 -0.8 0.1 -0.9 0.1 -1.0 0.1 -0.9 -0.0 -0.9 -0.1 -0.9 -0.1 -0.9 -0.3 -0.9 -0.3 -0.8 -0.4 -0.8 -0.6 -0.7 -0.6 -0.0 0.0 -0.6 -0.7 -0.6 -0.8 -0.4 -0.8 -0.3 -0.9 -0.3 -0.9 -0.1 -0.9 -0.1 -0.9 0.0 -0.9 0.1 -1.0 0.1 -0.9 0.1 -0.8 0.2 -0.8 0.3 -0.9 0.3 -0.7 0.2 -0.7 0.3 -0.7 0.4 -0.7 0.3 -0.6 0.3 -0.7 0.4 -0.6 0.3 -0.5 0.4 -0.6 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.4 -0.5 0.3 -0.4 0.5 -0.4 0.8 -0.8 0.4 -0.5 0.4 -0.3 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.6 -0.4 0.5 -0.3 0.6 -0.4 0.7 -0.3 0.6 -0.3 0.7 -0.4 0.7 -0.3 0.7 -0.2 0.7 -0.3 0.9 -0.3 0.8 -0.2 0.8 -0.1 0.9 -0.1 1.0 -0.1 0.9 0.0 0.9 0.1 0.9 0.1 0.9 0.3 0.9 0.3 0.8 0.4 0.8 0.6 0.7 0.6 -0.0 0.0 0.6 0.7 0.6 0.8 0.4 0.8 0.3 0.9 0.3 0.9 0.1 0.9 0.1 0.9 -0.0 0.9 -0.1 1.0 -0.1 0.9 -0.1 0.8 -0.2 0.8 -0.3 0.9 -0.3 0.7 z';
|
|
12
|
+
export const pathAnimatableSmallPill = 'm39.6 24.0 -0.1 0.8 -0.3 0.8 -0.2 0.8 -0.3 0.7 -0.3 0.8 -0.4 0.7 -0.4 0.7 -0.5 0.6 -0.4 0.6 -0.6 0.6 -0.6 0.6 -0.4 0.4 -0.6 0.6 -0.4 0.5 -0.9 0.8 -0.5 0.5 -0.6 0.6 -0.4 0.4 -0.7 0.7 -0.5 0.5 -0.6 0.4 -0.7 0.5 -0.6 0.4 -0.7 0.4 -0.7 0.3 -0.8 0.3 -0.8 0.3 -0.8 0.2 -0.8 0.1 -0.8 0.1 -0.8 0.1 -0.9 0.0 -0.8 -0.0 -0.9 -0.1 -0.8 -0.2 -0.8 -0.2 -0.9 -0.2 -0.8 -0.3 -0.8 -0.4 -0.8 -0.4 -0.7 -0.5 -0.7 -0.5 -0.7 -0.5 -0.6 -0.6 -0.1 -0.1 -0.5 -0.6 -0.6 -0.7 -0.5 -0.7 -0.5 -0.8 -0.4 -0.7 -0.4 -0.8 -0.3 -0.8 -0.2 -0.8 -0.2 -0.9 -0.2 -0.8 -0.1 -0.9 0.0 -0.8 0.0 -0.9 0.1 -0.8 0.1 -0.8 0.1 -0.8 0.3 -0.8 0.2 -0.8 0.3 -0.7 0.4 -0.8 0.3 -0.7 0.5 -0.6 0.4 -0.7 0.4 -0.5 0.6 -0.6 0.6 -0.7 0.4 -0.4 0.6 -0.6 0.5 -0.4 0.8 -0.9 0.5 -0.5 0.6 -0.6 0.4 -0.4 0.7 -0.7 0.5 -0.5 0.6 -0.4 0.7 -0.5 0.6 -0.4 0.7 -0.4 0.7 -0.3 0.8 -0.3 0.8 -0.3 0.8 -0.2 0.8 -0.1 0.8 -0.1 0.8 -0.1 0.9 -0.0 0.8 0.0 0.9 0.1 0.8 0.2 0.8 0.2 0.9 0.2 0.8 0.4 0.8 0.3 0.8 0.4 0.7 0.5 0.7 0.5 0.7 0.5 0.6 0.7 0.1 -0.0 0.5 0.6 0.6 0.7 0.5 0.7 0.5 0.8 0.4 0.7 0.3 0.8 0.4 0.8 0.2 0.8 0.2 0.9 0.2 0.8 0.1 0.9 0.0 0.8 -0.0 0.8 -0.1 0.9 z';
|
|
13
|
+
export const pathAnimatableSmallTriangle = 'm34.8 24.3 0.3 0.5 0.5 0.9 0.3 0.5 0.5 1.0 0.6 0.9 0.6 1.1 0.6 1.1 0.7 1.3 0.7 1.4 0.2 1.2 -0.2 1.1 -0.4 1.0 -0.4 0.6 -0.3 0.2 -0.8 0.6 -1.0 0.4 -1.2 0.1 -1.2 0.1 -1.0 -0.0 -1.1 -0.0 -1.1 -0.0 -1.1 -0.0 -0.5 -0.0 -1.1 -0.0 -0.6 -0.0 -1.1 -0.0 -0.5 -0.0 -1.1 -0.0 -0.6 -0.0 -1.0 -0.0 -0.6 -0.0 -1.1 -0.0 -0.5 -0.0 -1.1 -0.0 -0.6 -0.0 -1.1 -0.0 -0.5 -0.0 -1.1 -0.0 -1.1 -0.0 -1.1 -0.0 -1.0 -0.0 -1.2 -0.1 -1.2 -0.1 -1.0 -0.4 -0.8 -0.6 -0.3 -0.2 -0.4 -0.6 -0.4 -1.0 -0.2 -1.1 0.2 -1.2 0.7 -1.4 0.7 -1.3 0.6 -1.1 0.6 -1.1 0.6 -0.9 0.5 -1.0 0.3 -0.5 0.5 -0.9 0.3 -0.5 0.3 -0.5 0.2 -0.4 0.3 -0.5 0.3 -0.5 0.3 -0.5 0.2 -0.4 0.3 -0.5 0.3 -0.5 0.3 -0.5 0.2 -0.4 0.3 -0.5 0.3 -0.5 0.2 -0.5 0.0 -0.0 0.3 -0.4 0.3 -0.5 0.3 -0.5 0.2 -0.5 0.3 -0.4 0.6 -1.0 0.3 -0.6 0.3 -0.6 0.4 -0.6 0.4 -0.7 0.5 -0.8 0.6 -0.6 0.6 -0.6 0.7 -0.3 0.7 -0.2 0.8 -0.1 0.0 0.0 0.8 0.1 0.7 0.2 0.7 0.3 0.6 0.6 0.6 0.6 0.5 0.8 0.4 0.7 0.4 0.6 0.3 0.6 0.4 0.6 0.5 1.0 0.3 0.4 0.2 0.5 0.3 0.5 0.3 0.5 -0.0 0.0 0.3 0.4 0.2 0.5 0.3 0.5 0.3 0.5 0.2 0.4 0.3 0.5 0.3 0.5 0.3 0.5 0.2 0.4 0.3 0.5 0.3 0.5 0.3 0.5 0.2 0.4 z';
|
|
14
|
+
export const pathAnimatableSmallDiamond = 'm37.4 24.0 -0.1 0.7 -0.1 0.7 -0.3 0.7 -0.3 0.6 -0.5 0.6 -0.4 0.5 -0.6 0.8 -0.3 0.5 -0.4 0.4 -0.4 0.5 -0.3 0.5 -0.6 0.8 -0.4 0.4 -0.4 0.5 -0.3 0.5 -0.4 0.5 -0.4 0.5 -0.3 0.5 -0.4 0.5 -0.6 0.7 -0.5 0.7 -0.5 0.6 -0.5 0.7 -0.6 0.7 -0.6 0.7 -0.8 0.5 -0.7 0.4 -0.8 0.2 -0.9 0.1 -0.0 -0.0 -0.9 -0.1 -0.8 -0.2 -0.7 -0.4 -0.8 -0.5 -0.6 -0.7 -0.6 -0.7 -0.5 -0.7 -0.5 -0.6 -0.5 -0.7 -0.4 -0.5 -0.6 -0.7 -0.3 -0.5 -0.4 -0.5 -0.4 -0.5 -0.4 -0.5 -0.3 -0.5 -0.4 -0.4 -0.6 -0.8 -0.3 -0.5 -0.4 -0.5 -0.4 -0.4 -0.3 -0.5 -0.6 -0.7 -0.4 -0.6 -0.5 -0.6 -0.3 -0.6 -0.3 -0.7 -0.1 -0.7 -0.1 -0.7 -0.0 -0.0 0.1 -0.7 0.1 -0.7 0.3 -0.7 0.3 -0.6 0.5 -0.6 0.4 -0.5 0.6 -0.8 0.3 -0.5 0.4 -0.5 0.4 -0.4 0.3 -0.5 0.6 -0.8 0.4 -0.4 0.4 -0.5 0.3 -0.5 0.4 -0.5 0.4 -0.5 0.3 -0.5 0.4 -0.5 0.6 -0.7 0.5 -0.7 0.5 -0.6 0.5 -0.7 0.6 -0.7 0.6 -0.7 0.8 -0.5 0.7 -0.4 0.8 -0.2 0.9 -0.1 0.0 0.0 0.9 0.1 0.8 0.2 0.7 0.4 0.8 0.5 0.6 0.7 0.6 0.7 0.5 0.7 0.5 0.6 0.5 0.7 0.4 0.5 0.6 0.7 0.3 0.5 0.4 0.5 0.4 0.5 0.4 0.5 0.3 0.5 0.4 0.4 0.6 0.8 0.3 0.5 0.4 0.4 0.4 0.5 0.3 0.5 0.6 0.7 0.4 0.6 0.5 0.6 0.3 0.6 0.3 0.7 0.1 0.7 0.1 0.7 z';
|
|
15
|
+
export const pathAnimatableSmallClamshell = 'm42.6 24.0 -0.1 1.0 -0.2 0.9 -0.5 0.9 -0.5 0.9 -0.4 0.9 -0.5 0.8 -0.5 0.8 -0.5 0.8 -0.4 0.7 -0.8 1.5 -0.5 0.8 -0.5 0.6 -0.2 0.4 -0.4 0.3 -0.8 0.6 -0.8 0.4 -0.8 0.2 -1.0 0.2 -1.0 -0.0 -0.9 -0.0 -1.1 0.0 -0.9 0.0 -0.5 0.0 -1.0 0.0 -0.4 0.0 -1.0 0.0 -0.5 0.0 -0.9 0.0 -0.5 0.0 -1.0 0.0 -0.5 0.0 -0.9 0.0 -0.5 0.0 -1.0 0.0 -0.4 0.0 -1.0 0.0 -0.5 0.0 -0.9 0.0 -1.1 -0.0 -0.9 -0.0 -1.0 -0.0 -0.9 -0.2 -0.9 -0.2 -0.8 -0.4 -0.7 -0.6 -0.7 -0.6 -0.0 -0.0 -0.5 -0.8 -0.5 -0.7 -0.8 -1.5 -0.4 -0.7 -0.5 -0.8 -0.5 -0.8 -0.5 -0.8 -0.4 -0.9 -0.5 -0.9 -0.5 -0.9 -0.2 -0.9 -0.1 -1.0 -0.0 -0.0 0.1 -1.0 0.2 -0.9 0.5 -0.9 0.5 -0.9 0.4 -0.9 0.5 -0.8 0.5 -0.8 0.5 -0.8 0.4 -0.7 0.8 -1.5 0.5 -0.7 0.5 -0.8 0.0 -0.0 0.6 -0.6 0.8 -0.6 0.8 -0.4 0.8 -0.2 1.0 -0.2 1.0 0.0 0.9 0.0 1.1 0.0 0.9 0.0 0.5 0.0 1.0 0.0 0.4 0.0 1.0 0.0 0.5 0.0 0.9 0.0 0.5 0.0 1.0 0.0 0.5 0.0 0.9 0.0 0.5 0.0 1.0 0.0 0.4 0.0 1.0 0.0 0.5 0.0 0.9 0.0 1.1 0.0 0.9 0.0 1.0 0.0 0.9 0.2 0.9 0.2 0.8 0.4 0.7 0.6 0.7 0.6 0.0 0.0 0.5 0.8 0.5 0.7 0.8 1.5 0.4 0.7 0.5 0.8 0.5 0.8 0.5 0.8 0.4 0.9 0.5 0.9 0.5 0.9 0.2 0.9 0.1 1.0 z';
|
|
16
|
+
export const pathAnimatableSmallPentagon = 'm38.9 24.2 -0.2 0.8 -0.2 0.7 -0.3 0.8 -0.2 0.8 -0.3 0.7 -0.2 0.8 -0.3 0.8 -0.2 0.7 -0.3 0.8 -0.2 0.8 -0.3 0.7 -0.2 0.8 -0.4 1.0 -0.4 0.8 -0.4 0.8 -0.6 0.6 -0.7 0.5 0.0 0.1 -0.7 0.4 -0.8 0.3 -0.8 0.3 -0.9 0.1 -1.1 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -0.8 -0.0 -1.1 -0.0 -0.9 -0.1 -0.8 -0.3 -0.8 -0.3 -0.7 -0.5 -0.1 0.0 -0.6 -0.5 -0.6 -0.7 -0.4 -0.7 -0.4 -0.8 -0.4 -1.0 -0.2 -0.8 -0.3 -0.7 -0.2 -0.8 -0.3 -0.8 -0.2 -0.7 -0.3 -0.8 -0.2 -0.8 -0.3 -0.7 -0.2 -0.8 -0.3 -0.7 -0.2 -0.8 -0.3 -0.8 -0.2 -0.7 -0.3 -1.1 -0.2 -0.9 -0.0 -0.8 0.0 -0.9 0.2 -0.8 0.1 -0.1 0.3 -0.7 0.4 -0.8 0.6 -0.6 0.6 -0.6 0.9 -0.7 0.6 -0.5 0.7 -0.4 0.6 -0.5 0.7 -0.5 0.6 -0.4 0.7 -0.5 0.6 -0.5 0.7 -0.5 0.6 -0.4 0.7 -0.5 0.6 -0.5 0.7 -0.4 0.6 -0.5 0.9 -0.7 0.8 -0.4 0.8 -0.3 0.8 -0.2 0.8 -0.0 0.1 -0.0 0.9 0.0 0.8 0.2 0.8 0.3 0.8 0.4 0.9 0.7 0.6 0.5 0.7 0.4 0.6 0.5 0.7 0.5 0.6 0.4 0.7 0.5 0.6 0.5 0.7 0.5 0.6 0.4 0.7 0.5 0.6 0.5 0.7 0.4 0.6 0.5 0.9 0.7 0.6 0.6 0.6 0.7 0.4 0.7 0.3 0.7 0.0 0.1 0.2 0.8 0.1 0.9 -0.0 0.9 -0.2 0.8 -0.3 1.1 z';
|
|
17
|
+
export const pathAnimatableSmallGem = 'm38.0 24.6 0.1 0.8 0.2 0.8 0.1 0.8 0.1 0.9 0.1 0.8 -0.0 0.9 -0.1 0.8 -0.3 0.8 -0.3 0.8 -0.3 0.5 -0.2 0.3 -0.5 0.6 -0.6 0.6 -0.7 0.5 -0.7 0.4 -0.8 0.4 -0.7 0.3 -0.8 0.4 -0.8 0.3 -0.6 0.3 -0.8 0.3 -1.1 0.5 -0.8 0.4 -0.7 0.3 -0.7 0.3 -0.7 0.3 -0.8 0.2 -0.8 0.2 -0.8 0.1 -0.0 -0.0 -0.8 -0.1 -0.8 -0.1 -0.7 -0.3 -0.8 -0.3 -0.7 -0.3 -0.7 -0.3 -0.8 -0.4 -1.1 -0.5 -0.8 -0.3 -0.6 -0.3 -0.8 -0.3 -0.7 -0.4 -0.8 -0.3 -0.8 -0.4 -0.7 -0.4 -0.7 -0.5 -0.6 -0.6 -0.6 -0.6 -0.1 -0.3 -0.3 -0.5 -0.3 -0.8 -0.3 -0.8 -0.1 -0.8 0.0 -0.9 0.1 -0.8 0.1 -0.9 0.1 -0.8 0.1 -0.8 0.2 -0.8 0.1 -0.7 0.1 -0.8 0.1 -0.6 0.2 -1.4 0.1 -0.6 0.1 -0.8 0.1 -0.7 0.2 -0.7 0.3 -0.7 0.1 -0.1 0.3 -0.6 0.5 -0.6 0.5 -0.6 0.6 -0.4 0.5 -0.5 0.7 -0.5 0.6 -0.3 0.5 -0.4 1.0 -0.8 0.6 -0.4 0.6 -0.4 0.6 -0.5 0.6 -0.4 0.7 -0.5 0.6 -0.4 0.7 -0.4 0.7 -0.4 0.7 -0.2 0.8 -0.2 0.8 -0.0 0.0 -0.0 0.8 0.0 0.8 0.2 0.7 0.2 0.7 0.4 0.7 0.4 0.6 0.4 0.7 0.5 0.6 0.4 0.6 0.5 0.6 0.4 0.6 0.4 1.0 0.8 0.5 0.4 0.6 0.3 0.7 0.5 0.5 0.5 0.6 0.4 0.5 0.6 0.4 0.6 0.4 0.6 0.1 0.1 0.3 0.7 0.2 0.7 0.1 0.7 0.1 0.8 0.1 0.6 0.2 1.4 0.1 0.6 0.1 0.8 z';
|
|
18
|
+
export const pathAnimatableSmallVerySunny = 'm40.0 24.0 -0.1 0.8 -0.4 0.8 -0.8 0.7 -1.0 0.6 -0.9 0.6 -0.7 0.5 -0.6 1.1 -0.1 0.7 0.1 0.8 0.2 1.0 0.3 1.1 0.1 1.1 -0.3 0.8 -0.5 0.7 -0.0 0.0 -0.7 0.5 -0.8 0.3 -1.1 -0.1 -1.1 -0.3 -1.0 -0.2 -0.8 -0.1 -0.7 0.1 -1.1 0.6 -0.5 0.7 -0.6 0.9 -0.5 0.9 -0.8 0.9 -0.7 0.4 -0.9 0.1 -0.0 0.0 -0.8 -0.1 -0.8 -0.4 -0.7 -0.8 -0.6 -1.0 -0.6 -0.9 -0.5 -0.7 -1.1 -0.6 -0.7 -0.1 -0.8 0.1 -1.0 0.2 -1.1 0.3 -1.1 0.1 -0.8 -0.3 -0.7 -0.5 -0.0 -0.0 -0.5 -0.7 -0.3 -0.8 0.1 -1.1 0.3 -1.1 0.2 -1.0 0.1 -0.8 -0.1 -0.7 -0.6 -1.1 -0.7 -0.5 -0.9 -0.6 -1.0 -0.6 -0.8 -0.7 -0.4 -0.8 -0.1 -0.7 -0.0 -0.1 0.1 -0.8 0.4 -0.8 0.8 -0.7 1.0 -0.6 0.9 -0.6 0.7 -0.5 0.6 -1.1 0.1 -0.7 -0.1 -0.8 -0.2 -1.0 -0.3 -1.1 -0.1 -1.1 0.3 -0.8 0.4 -0.7 0.1 -0.0 0.7 -0.5 0.8 -0.3 1.1 0.1 1.1 0.3 1.0 0.2 0.8 0.1 0.7 -0.1 1.1 -0.6 0.5 -0.7 0.6 -0.9 0.6 -1.0 0.7 -0.8 0.8 -0.4 0.7 -0.1 0.1 -0.0 0.8 0.1 0.8 0.4 0.7 0.8 0.6 1.0 0.6 0.9 0.5 0.7 1.1 0.6 0.7 0.1 0.8 -0.1 1.0 -0.2 1.1 -0.3 1.1 -0.1 0.8 0.3 0.7 0.5 0.0 0.0 0.5 0.7 0.3 0.8 -0.1 1.1 -0.3 1.1 -0.2 1.0 -0.1 0.8 0.1 0.7 0.6 1.1 0.7 0.5 0.9 0.6 0.9 0.5 0.9 0.8 0.4 0.7 0.1 0.9 z';
|
|
19
|
+
export const pathAnimatableSmallSunny = 'm40.0 24.0 -0.1 0.8 -0.5 0.8 -0.6 0.8 -0.6 0.6 -0.6 0.7 -0.5 0.6 -0.7 1.2 -0.1 0.7 -0.1 0.8 -0.0 0.9 -0.1 0.9 -0.1 0.9 -0.2 0.9 -0.5 0.7 -0.0 0.0 -0.7 0.5 -0.9 0.2 -0.9 0.1 -0.9 0.1 -0.8 0.0 -0.8 0.1 -0.8 0.1 -1.2 0.7 -0.6 0.5 -0.7 0.6 -0.6 0.6 -0.8 0.6 -0.8 0.5 -0.8 0.1 -0.0 0.0 -0.8 -0.1 -0.8 -0.5 -0.8 -0.6 -0.6 -0.6 -0.7 -0.6 -0.6 -0.5 -1.2 -0.7 -0.7 -0.1 -0.8 -0.1 -0.9 -0.0 -0.9 -0.1 -0.9 -0.1 -0.9 -0.2 -0.7 -0.5 -0.0 0.0 -0.5 -0.7 -0.2 -0.9 -0.1 -0.9 -0.1 -0.9 -0.0 -0.8 -0.1 -0.8 -0.1 -0.8 -0.7 -1.2 -0.5 -0.6 -0.6 -0.7 -0.6 -0.6 -0.6 -0.8 -0.5 -0.8 -0.1 -0.8 -0.0 -0.0 0.1 -0.8 0.5 -0.8 0.6 -0.8 0.6 -0.6 0.6 -0.7 0.5 -0.6 0.7 -1.2 0.1 -0.7 0.1 -0.8 0.0 -0.9 0.1 -0.9 0.1 -0.9 0.2 -0.9 0.5 -0.7 -0.0 -0.0 0.7 -0.5 0.9 -0.2 0.9 -0.1 0.9 -0.1 0.8 -0.0 0.8 -0.1 0.8 -0.1 1.2 -0.7 0.6 -0.5 0.7 -0.6 0.6 -0.6 0.8 -0.6 0.8 -0.5 0.8 -0.1 0.0 -0.0 0.8 0.1 0.8 0.5 0.8 0.6 0.6 0.6 0.7 0.6 0.6 0.5 1.2 0.7 0.7 0.1 0.8 0.1 0.9 0.0 0.9 0.1 0.9 0.1 0.9 0.2 0.7 0.5 0.0 -0.0 0.5 0.7 0.2 0.9 0.1 0.9 0.1 0.9 0.0 0.8 0.1 0.8 0.1 0.8 0.7 1.2 0.5 0.6 0.6 0.7 0.6 0.6 0.6 0.8 0.5 0.8 0.1 0.8 z';
|
|
20
|
+
export const pathAnimatableSmallFourSidedCookie = 'm36.9 24.6 0.1 0.7 0.2 0.8 0.2 0.7 0.4 0.9 0.4 0.9 0.2 0.9 0.1 1.0 0.1 0.9 -0.1 0.9 -0.3 0.9 -0.3 0.9 -0.4 0.8 -0.5 0.8 -0.6 0.6 -0.1 0.1 -0.6 0.6 -0.8 0.5 -0.8 0.4 -0.9 0.3 -0.9 0.3 -0.9 0.1 -0.9 -0.1 -1.0 -0.1 -0.9 -0.2 -0.9 -0.4 -0.9 -0.4 -0.7 -0.2 -0.8 -0.2 -0.7 -0.1 -1.2 0.0 -0.7 0.1 -0.8 0.2 -0.7 0.2 -0.9 0.4 -0.9 0.4 -0.9 0.2 -1.0 0.1 -0.9 0.1 -0.9 -0.1 -0.9 -0.3 -0.9 -0.3 -0.8 -0.4 -0.8 -0.5 -0.6 -0.6 -0.1 -0.1 -0.6 -0.6 -0.5 -0.8 -0.4 -0.8 -0.3 -0.9 -0.3 -0.9 -0.1 -0.9 0.1 -0.9 0.1 -1.0 0.2 -0.9 0.4 -0.9 0.4 -0.9 0.2 -0.7 0.2 -0.8 0.1 -0.7 -0.0 -1.2 -0.1 -0.7 -0.2 -0.8 -0.2 -0.7 -0.4 -0.9 -0.4 -0.9 -0.2 -0.9 -0.1 -1.0 -0.1 -0.9 0.1 -0.9 0.3 -0.9 0.3 -0.9 0.4 -0.8 0.5 -0.8 0.6 -0.6 0.1 -0.1 0.6 -0.6 0.8 -0.5 0.8 -0.4 0.9 -0.3 0.9 -0.3 0.9 -0.1 0.9 0.1 1.0 0.1 0.9 0.2 0.9 0.4 0.9 0.4 0.7 0.2 0.8 0.2 0.7 0.1 1.2 -0.0 0.7 -0.1 0.8 -0.2 0.7 -0.2 0.9 -0.4 0.9 -0.4 0.9 -0.2 1.0 -0.1 0.9 -0.1 0.9 0.1 0.9 0.3 0.9 0.3 0.8 0.4 0.8 0.5 0.6 0.6 0.1 0.1 0.6 0.6 0.5 0.8 0.4 0.8 0.3 0.9 0.3 0.9 0.1 0.9 -0.1 0.9 -0.1 1.0 -0.2 0.9 -0.4 0.9 -0.4 0.9 -0.2 0.7 -0.2 0.8 -0.1 0.7 z';
|
|
21
|
+
export const pathAnimatableSmallSixSidedCookie = 'm38.3 24.7 0.2 0.8 0.1 0.8 0.2 0.8 -0.0 0.8 -0.1 0.9 -0.1 0.8 -0.2 0.8 -0.3 0.7 -0.4 0.8 -0.0 0.0 -0.5 0.7 -0.5 0.7 -0.6 0.5 -0.6 0.6 -0.7 0.4 -0.7 0.4 -0.8 0.3 -0.8 0.2 -0.7 0.3 -1.3 0.7 -0.6 0.5 -0.6 0.6 -0.6 0.5 -0.7 0.4 -0.8 0.4 -0.7 0.3 -0.8 0.2 -0.9 0.2 -0.8 -0.0 -0.0 -0.0 -0.8 -0.0 -0.9 -0.2 -0.8 -0.2 -0.8 -0.3 -0.7 -0.4 -0.7 -0.4 -0.6 -0.5 -0.6 -0.6 -0.6 -0.5 -1.3 -0.7 -0.7 -0.3 -0.8 -0.2 -0.8 -0.3 -0.7 -0.4 -0.7 -0.4 -0.6 -0.5 -0.6 -0.6 -0.6 -0.7 -0.4 -0.7 -0.0 -0.0 -0.4 -0.8 -0.3 -0.7 -0.2 -0.8 -0.1 -0.8 -0.1 -0.9 0.0 -0.8 0.2 -0.8 0.1 -0.8 0.2 -0.8 -0.0 -1.4 -0.2 -0.8 -0.1 -0.8 -0.2 -0.8 0.0 -0.8 0.1 -0.9 0.1 -0.8 0.2 -0.8 0.3 -0.7 0.4 -0.8 0.0 -0.1 0.4 -0.6 0.6 -0.7 0.6 -0.5 0.6 -0.6 0.7 -0.4 0.7 -0.4 0.8 -0.3 0.8 -0.3 0.7 -0.2 1.3 -0.8 0.6 -0.4 0.6 -0.6 0.6 -0.5 0.7 -0.4 0.8 -0.4 0.7 -0.3 0.8 -0.2 0.9 -0.2 0.8 0.0 0.0 0.0 0.8 0.0 0.9 0.2 0.8 0.2 0.8 0.3 0.7 0.4 0.7 0.4 0.6 0.5 0.6 0.6 0.6 0.5 1.3 0.7 0.7 0.3 0.8 0.2 0.8 0.3 0.7 0.4 0.7 0.4 0.6 0.5 0.6 0.6 0.6 0.7 0.4 0.7 0.0 0.0 0.4 0.8 0.3 0.7 0.2 0.8 0.1 0.8 0.1 0.9 -0.0 0.8 -0.2 0.8 -0.1 0.8 -0.2 0.8 z';
|
|
22
|
+
export const pathAnimatableSmallSevenSidedCookie = 'm39.7 24.8 0.2 0.9 0.1 0.8 -0.0 0.9 -0.2 0.8 -0.0 0.2 -0.3 0.7 -0.3 0.7 -0.5 0.8 -0.6 0.6 -0.6 0.6 -0.7 0.5 -0.6 0.5 -1.1 1.2 -0.4 0.7 -0.3 0.8 -0.4 0.8 -0.5 0.8 -0.5 0.7 -0.7 0.6 -0.7 0.5 -0.7 0.3 -0.1 0.1 -0.8 0.3 -0.9 0.2 -0.9 0.0 -0.9 -0.0 -0.8 -0.2 -0.9 -0.3 -0.8 -0.1 -1.6 -0.0 -0.8 0.1 -0.9 0.3 -0.8 0.2 -0.9 0.0 -0.9 -0.1 -0.8 -0.1 -0.9 -0.3 -0.1 -0.1 -0.7 -0.3 -0.7 -0.6 -0.7 -0.5 -0.5 -0.7 -0.5 -0.8 -0.4 -0.8 -0.3 -0.8 -0.4 -0.7 -1.0 -1.1 -0.7 -0.6 -0.7 -0.5 -0.6 -0.6 -0.6 -0.6 -0.5 -0.8 -0.3 -0.7 -0.3 -0.6 -0.0 -0.3 -0.2 -0.8 -0.0 -0.9 0.1 -0.8 0.2 -0.9 0.2 -0.8 0.5 -0.8 0.3 -0.8 0.3 -0.7 0.3 -1.4 -0.0 -0.9 -0.0 -0.8 -0.0 -0.8 0.1 -0.9 0.3 -0.8 0.3 -0.8 0.4 -0.6 0.1 -0.2 0.5 -0.5 0.6 -0.6 0.7 -0.5 0.8 -0.4 0.7 -0.3 0.9 -0.2 0.8 -0.2 0.8 -0.2 1.3 -0.6 0.6 -0.4 0.7 -0.6 0.6 -0.5 0.7 -0.5 0.7 -0.3 0.8 -0.3 0.9 -0.1 0.8 -0.1 0.0 -0.0 0.9 0.1 0.7 0.1 0.9 0.3 0.7 0.3 0.7 0.5 0.7 0.5 0.6 0.6 0.6 0.4 1.3 0.6 0.8 0.2 0.8 0.2 0.8 0.2 0.8 0.3 0.8 0.4 0.7 0.5 0.6 0.5 0.5 0.7 0.0 0.0 0.5 0.8 0.3 0.7 0.3 0.8 0.1 0.9 0.0 0.8 0.0 0.8 0.0 0.9 0.3 1.4 0.3 0.7 0.3 0.8 0.5 0.8 z';
|
|
23
|
+
export const pathAnimatableSmallNineSidedCookie = 'm39.9 24.0 -0.3 0.8 -0.4 0.8 -0.3 0.8 -0.2 1.5 0.1 0.9 0.1 0.9 -0.1 0.9 -0.2 0.8 -0.3 0.8 -0.2 0.4 -0.3 0.4 -0.5 0.7 -0.7 0.5 -0.8 0.4 -0.8 0.4 -0.8 0.4 -1.2 1.0 -0.5 0.7 -0.5 0.8 -0.6 0.6 -0.6 0.6 -0.8 0.4 -0.4 0.2 -0.5 0.1 -0.9 0.2 -0.8 -0.0 -0.9 -0.2 -0.9 -0.3 -0.8 -0.1 -1.6 -0.1 -0.8 0.2 -0.9 0.3 -0.9 0.2 -0.8 -0.0 -0.9 -0.2 -0.5 -0.1 -0.4 -0.2 -0.8 -0.4 -0.6 -0.5 -0.6 -0.7 -0.5 -0.8 -0.5 -0.7 -1.2 -1.0 -0.7 -0.4 -0.9 -0.4 -0.8 -0.4 -0.6 -0.5 -0.6 -0.7 -0.3 -0.4 -0.2 -0.4 -0.3 -0.8 -0.2 -0.8 -0.1 -0.9 0.1 -0.9 0.1 -0.9 -0.2 -1.5 -0.3 -0.8 -0.4 -0.8 -0.3 -0.8 -0.2 -0.8 -0.1 -0.9 0.1 -0.7 -0.0 -0.2 0.2 -0.8 0.4 -0.8 0.5 -0.7 0.6 -0.6 0.7 -0.7 0.5 -0.6 0.6 -1.3 0.3 -0.9 0.2 -0.8 0.3 -0.8 0.5 -0.7 0.5 -0.6 0.2 -0.2 0.5 -0.4 0.8 -0.4 0.8 -0.3 0.8 -0.2 0.9 -0.0 0.8 -0.1 1.4 -0.5 0.7 -0.4 0.7 -0.5 0.7 -0.5 0.8 -0.3 0.8 -0.2 0.9 -0.1 0.0 -0.0 0.8 0.1 0.9 0.2 0.8 0.3 0.7 0.5 0.7 0.5 0.7 0.4 1.4 0.5 0.8 0.1 0.9 0.0 0.9 0.2 0.8 0.3 0.7 0.4 0.5 0.4 0.2 0.1 0.5 0.7 0.5 0.7 0.3 0.8 0.2 0.8 0.3 0.9 0.6 1.3 0.5 0.6 0.7 0.7 0.6 0.6 0.5 0.7 0.4 0.8 0.2 0.8 0.0 0.2 0.1 0.7 -0.1 0.9 z';
|
|
24
|
+
export const pathAnimatableSmallTwelveSidedCookie = 'm40.0 24.0 -0.1 0.8 -0.3 0.9 -0.6 0.7 -0.5 0.7 -0.4 1.4 0.1 0.9 0.1 0.9 -0.1 0.9 -0.3 0.8 -0.1 0.0 -0.5 0.7 -0.6 0.5 -0.9 0.3 -0.8 0.4 -1.1 1.1 -0.3 0.8 -0.4 0.8 -0.5 0.7 -0.7 0.6 -0.0 -0.0 -0.8 0.3 -0.9 0.1 -0.9 -0.1 -0.8 -0.1 -1.5 0.4 -0.7 0.5 -0.8 0.6 -0.7 0.3 -0.9 0.1 -0.0 0.0 -0.9 -0.1 -0.8 -0.4 -0.7 -0.5 -0.7 -0.5 -1.4 -0.4 -0.9 0.1 -0.9 0.1 -0.9 -0.1 -0.8 -0.3 -0.0 -0.1 -0.7 -0.5 -0.5 -0.7 -0.4 -0.8 -0.3 -0.8 -1.1 -1.1 -0.8 -0.4 -0.8 -0.3 -0.7 -0.5 -0.5 -0.7 -0.1 -0.0 -0.3 -0.8 -0.1 -0.9 0.2 -0.9 0.1 -0.9 -0.4 -1.4 -0.6 -0.7 -0.5 -0.7 -0.4 -0.9 -0.1 -0.7 0.0 -0.1 0.1 -0.8 0.4 -0.9 0.5 -0.7 0.6 -0.7 0.4 -1.4 -0.1 -0.9 -0.2 -0.9 0.1 -0.9 0.3 -0.8 0.0 -0.0 0.6 -0.7 0.7 -0.5 0.8 -0.3 0.8 -0.4 1.1 -1.1 0.4 -0.8 0.3 -0.8 0.5 -0.7 0.7 -0.5 0.0 -0.1 0.8 -0.3 0.9 -0.1 0.9 0.1 0.9 0.1 1.4 -0.3 0.7 -0.6 0.7 -0.5 0.9 -0.4 0.7 -0.1 0.1 0.0 0.8 0.1 0.9 0.4 0.7 0.5 0.7 0.6 1.4 0.3 0.9 -0.1 0.9 -0.1 0.9 0.1 0.8 0.3 0.0 0.0 0.7 0.6 0.5 0.7 0.4 0.8 0.3 0.8 1.1 1.1 0.8 0.4 0.8 0.3 0.8 0.5 0.4 0.7 0.1 -0.0 0.3 0.8 0.1 0.9 -0.1 0.9 -0.1 0.9 0.4 1.4 0.5 0.7 0.6 0.7 0.3 0.9 0.1 0.7 z';
|
|
25
|
+
export const pathAnimatableSmallGhostish = 'm39.0 24.6 0.0 0.7 0.0 1.0 0.0 0.7 0.0 1.0 0.0 0.6 0.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 -0.0 1.1 -0.2 1.0 -0.3 1.0 -0.6 0.8 -0.5 0.7 -0.1 0.1 -0.8 0.6 -0.9 0.5 -0.9 0.4 -1.0 0.2 -1.1 -0.0 -1.1 -0.2 -1.1 -0.4 -1.1 -0.5 -1.0 -0.5 -0.9 -0.5 -0.8 -0.3 -0.7 -0.2 -0.6 -0.2 -0.7 -0.1 -1.2 0.0 -0.7 0.1 -0.6 0.2 -0.7 0.2 -0.8 0.3 -0.9 0.4 -1.0 0.6 -1.1 0.5 -1.1 0.4 -1.1 0.2 -1.1 -0.0 -1.0 -0.2 -0.9 -0.4 -0.9 -0.5 -0.8 -0.6 -0.1 -0.1 -0.5 -0.7 -0.6 -0.8 -0.3 -1.0 -0.2 -1.0 0.0 -1.1 0.0 -1.0 0.0 -1.0 0.0 -1.0 0.0 -1.0 0.0 -0.6 0.0 -1.0 0.0 -0.7 0.0 -1.0 0.0 -0.7 0.0 -1.4 0.0 -0.7 0.1 -0.8 0.1 -0.8 0.2 -0.8 0.2 -0.8 0.2 -0.7 0.3 -0.7 0.4 -0.8 0.3 -0.6 0.1 -0.1 0.4 -0.7 0.4 -0.7 0.5 -0.6 0.5 -0.6 0.6 -0.5 0.6 -0.6 0.6 -0.5 0.6 -0.4 0.7 -0.5 0.7 -0.4 0.7 -0.4 0.7 -0.3 0.7 -0.3 0.8 -0.2 0.7 -0.2 0.8 -0.2 0.8 -0.1 0.8 -0.1 0.7 -0.1 1.6 0.0 0.7 0.1 0.8 0.1 0.8 0.1 0.8 0.2 0.7 0.2 0.8 0.2 0.7 0.3 0.7 0.4 0.7 0.3 0.7 0.4 0.7 0.5 0.6 0.4 0.6 0.5 0.6 0.6 0.6 0.5 0.5 0.6 0.5 0.6 0.4 0.7 0.4 0.7 0.1 0.1 0.3 0.6 0.4 0.8 0.3 0.7 0.2 0.7 0.2 0.8 0.2 0.8 0.1 0.8 0.1 0.8 -0.0 0.7 z';
|
|
26
|
+
export const pathAnimatableSmallFourLeafClover = 'm37.2 24.7 0.5 0.7 0.4 0.8 0.3 0.8 0.2 0.9 0.1 0.9 0.1 0.8 -0.0 0.9 -0.2 1.0 -0.1 0.8 -0.3 0.9 -0.4 0.8 -0.5 0.8 -0.5 0.7 -0.6 0.6 -0.1 0.1 -0.6 0.6 -0.7 0.5 -0.8 0.5 -0.8 0.4 -0.9 0.3 -0.8 0.2 -1.0 0.1 -0.8 -0.0 -0.9 -0.1 -0.9 -0.1 -0.9 -0.3 -0.8 -0.3 -0.8 -0.4 -0.8 -0.5 -1.3 0.0 -0.7 0.5 -0.8 0.4 -0.8 0.3 -0.9 0.3 -0.9 0.1 -0.8 0.1 -0.9 -0.0 -0.9 -0.1 -0.9 -0.3 -0.9 -0.3 -0.8 -0.3 -0.8 -0.5 -0.7 -0.5 -0.7 -0.6 0.0 -0.1 -0.6 -0.6 -0.5 -0.8 -0.5 -0.7 -0.3 -0.8 -0.3 -0.9 -0.2 -0.9 -0.2 -0.8 0.0 -1.0 0.1 -0.9 0.1 -0.8 0.2 -0.9 0.3 -0.8 0.4 -0.8 0.5 -0.7 -0.0 -1.4 -0.5 -0.7 -0.4 -0.8 -0.3 -0.8 -0.2 -0.9 -0.1 -0.8 -0.1 -0.9 0.0 -0.9 0.2 -1.0 0.1 -0.8 0.3 -0.8 0.4 -0.9 0.5 -0.8 0.5 -0.7 0.6 -0.7 0.1 0.0 0.6 -0.6 0.8 -0.5 0.7 -0.5 0.8 -0.4 0.9 -0.3 0.9 -0.2 0.8 -0.1 1.0 0.0 0.8 0.1 0.9 0.1 0.9 0.3 0.8 0.3 0.8 0.4 0.7 0.5 1.3 -0.0 0.8 -0.5 0.8 -0.4 0.8 -0.3 0.9 -0.3 0.9 -0.1 0.9 -0.1 0.9 0.0 0.9 0.1 0.8 0.3 0.9 0.3 0.8 0.3 0.7 0.5 0.8 0.5 0.6 0.6 0.1 0.0 0.6 0.7 0.5 0.7 0.5 0.8 0.4 0.8 0.2 0.9 0.3 0.9 0.1 0.8 -0.0 1.0 -0.1 0.8 -0.1 0.9 -0.2 0.9 -0.3 0.8 -0.4 0.8 -0.5 0.7 z';
|
|
27
|
+
export const pathAnimatableSmallEightLeafClover = 'm39.3 24.8 0.4 0.8 0.2 0.9 0.2 0.9 -0.0 0.9 -0.1 0.9 -0.2 0.9 -0.2 0.4 -0.1 0.4 -0.5 0.8 -0.6 0.7 -0.6 0.6 -0.8 0.5 -0.8 0.4 -0.8 0.4 -1.1 1.1 -0.3 0.8 -0.5 0.9 -0.5 0.7 -0.7 0.6 -0.6 0.6 -0.8 0.4 -0.2 0.1 -0.7 0.2 -0.8 0.2 -0.9 0.1 -0.9 -0.1 -0.9 -0.1 -0.9 -0.3 -0.8 -0.3 -1.6 0.1 -0.8 0.3 -0.9 0.2 -0.9 0.2 -0.9 -0.0 -0.9 -0.1 -0.8 -0.2 -0.4 -0.2 -0.5 -0.2 -0.7 -0.4 -0.7 -0.6 -0.6 -0.6 -0.5 -0.8 -0.4 -0.8 -0.4 -0.8 -1.1 -1.1 -0.9 -0.3 -0.7 -0.5 -0.8 -0.5 -0.6 -0.6 -0.6 -0.7 -0.4 -0.8 -0.1 -0.2 -0.2 -0.6 -0.2 -0.9 -0.1 -0.8 0.0 -1.0 0.2 -0.8 0.2 -0.9 0.4 -0.9 -0.0 -1.5 -0.4 -0.8 -0.2 -0.9 -0.2 -0.8 -0.0 -0.9 0.1 -0.9 0.2 -0.9 0.2 -0.6 0.1 -0.2 0.4 -0.8 0.6 -0.7 0.6 -0.6 0.8 -0.5 0.8 -0.5 0.8 -0.3 1.1 -1.1 0.4 -0.8 0.4 -0.8 0.5 -0.8 0.6 -0.6 0.7 -0.6 0.7 -0.4 0.5 -0.3 0.4 -0.1 0.9 -0.2 0.8 -0.1 0.9 0.0 0.9 0.2 0.9 0.2 0.8 0.3 1.5 0.1 0.9 -0.3 0.9 -0.3 0.9 -0.2 0.9 -0.0 0.9 0.1 0.8 0.1 0.7 0.3 0.2 0.1 0.8 0.4 0.7 0.6 0.6 0.6 0.5 0.7 0.5 0.8 0.3 0.9 1.1 1.1 0.8 0.4 0.8 0.4 0.8 0.5 0.6 0.6 0.6 0.7 0.5 0.8 0.1 0.4 0.2 0.4 0.2 0.9 0.1 0.9 -0.0 0.9 -0.2 0.9 -0.2 0.9 -0.4 0.8 z';
|
|
28
|
+
export const pathAnimatableSmallFlower = 'm40.0 24.0 -0.2 0.8 -0.6 0.8 -0.8 0.7 -0.9 0.6 -1.1 0.5 -1.0 0.3 -0.9 0.3 0.2 1.5 0.5 0.9 0.4 1.1 0.2 1.1 0.1 1.0 -0.1 1.0 -0.5 0.7 -0.0 0.0 -0.7 0.5 -1.0 0.1 -1.0 -0.1 -1.1 -0.3 -1.1 -0.3 -1.0 -0.5 -0.9 -0.5 -0.8 1.2 -0.3 1.0 -0.5 1.0 -0.6 1.0 -0.7 0.9 -0.8 0.5 -0.8 0.2 0.0 -0.0 -0.8 -0.2 -0.8 -0.5 -0.7 -0.9 -0.6 -1.0 -0.5 -1.0 -0.3 -1.0 -0.8 -1.2 -0.9 0.5 -1.0 0.5 -1.1 0.3 -1.1 0.3 -1.0 0.1 -1.0 -0.1 -0.7 -0.5 -0.0 -0.0 -0.5 -0.7 -0.1 -0.9 0.1 -1.1 0.2 -1.1 0.4 -1.1 0.5 -0.9 0.5 -1.0 -1.3 -0.8 -0.9 -0.3 -1.1 -0.5 -0.9 -0.6 -0.9 -0.7 -0.5 -0.8 -0.2 -0.8 0.0 0.0 0.2 -0.8 0.6 -0.8 0.8 -0.7 0.9 -0.6 1.0 -0.4 1.1 -0.4 1.2 -0.8 -0.5 -0.9 -0.5 -1.0 -0.3 -1.1 -0.3 -1.1 -0.1 -1.0 0.1 -1.0 0.5 -0.7 0.0 -0.0 0.7 -0.5 0.9 -0.1 1.1 0.1 1.1 0.2 1.1 0.4 1.0 0.5 1.4 0.2 0.3 -1.0 0.3 -0.9 0.5 -1.1 0.6 -0.9 0.7 -0.9 0.8 -0.5 0.8 -0.2 0.0 0.0 0.8 0.2 0.8 0.5 0.7 0.9 0.6 0.9 0.5 1.1 0.3 0.9 0.3 1.0 1.5 -0.2 0.9 -0.5 1.1 -0.4 1.1 -0.2 1.1 -0.1 0.9 0.1 0.7 0.5 0.0 0.0 0.5 0.7 0.1 1.0 -0.1 1.0 -0.2 1.1 -0.4 1.1 -0.5 1.0 -0.5 0.8 1.3 0.9 1.0 0.4 1.0 0.4 0.9 0.6 0.9 0.7 0.5 0.8 0.2 0.8 z';
|
|
29
|
+
export const pathAnimatableSmallPuffy = 'm42.2 24.1 -0.1 0.9 -0.3 0.9 -0.6 0.9 -0.9 0.7 -1.4 0.5 0.1 1.8 0.3 1.0 -0.1 0.9 -0.2 0.9 -0.4 0.7 -0.1 0.2 -0.5 0.6 -0.8 0.7 -0.8 0.4 -1.1 0.2 -1.2 -0.1 -2.2 -0.4 -0.2 0.9 -0.4 0.8 -0.5 0.6 -0.7 0.5 -0.7 0.3 -0.0 0.1 -0.8 0.2 -0.8 0.0 -0.8 -0.1 -0.8 -0.2 -0.8 -0.4 -0.7 -0.7 -1.4 0.1 -0.7 0.6 -0.8 0.4 -0.8 0.3 -0.8 0.0 -0.8 -0.1 -0.7 -0.2 -0.1 -0.0 -0.7 -0.4 -0.6 -0.5 -0.5 -0.6 -0.4 -0.8 -0.9 -1.1 -1.6 0.7 -1.2 0.1 -1.0 -0.3 -0.9 -0.4 -0.7 -0.6 -0.6 -0.7 -0.0 -0.1 -0.4 -0.7 -0.2 -0.9 -0.0 -1.0 0.2 -1.0 0.0 -1.7 -1.3 -0.5 -0.9 -0.8 -0.6 -0.8 -0.3 -1.0 -0.1 -0.7 -0.0 -0.4 0.1 -0.8 0.3 -0.9 0.5 -0.8 0.8 -0.8 1.3 -0.6 0.3 -1.6 -0.3 -1.0 -0.0 -1.0 0.2 -0.9 0.4 -0.8 -0.0 -0.1 0.6 -0.7 0.6 -0.6 0.9 -0.4 1.0 -0.3 1.2 0.1 1.5 0.6 1.0 -0.9 0.4 -0.8 0.6 -0.7 0.6 -0.5 0.6 -0.4 0.2 -0.1 0.7 -0.1 0.7 -0.1 0.9 0.0 0.8 0.2 0.8 0.5 0.7 0.6 1.4 0.1 0.7 -0.7 0.8 -0.4 0.8 -0.2 0.8 -0.1 0.8 0.1 0.8 0.2 0.1 -0.0 0.7 0.4 0.6 0.5 0.5 0.6 0.4 0.8 0.9 1.2 1.6 -0.8 1.2 -0.1 1.0 0.3 0.9 0.4 0.7 0.6 0.6 0.7 0.0 0.1 0.4 0.8 0.2 0.9 0.0 1.0 -0.3 1.0 0.3 1.6 1.2 0.6 0.9 0.7 0.5 0.9 0.3 0.9 0.1 0.8 z';
|
|
30
|
+
export const pathAnimatableSmallPuffyDiamond = 'm40.0 24.0 -0.1 0.9 -0.2 0.8 -0.4 0.7 -0.5 0.8 -0.8 0.6 -0.8 0.5 -1.2 0.3 -1.7 0.6 0.0 0.7 -0.1 0.7 -0.2 0.7 -0.2 0.6 -0.4 0.5 -0.4 0.5 -0.1 0.1 -0.5 0.4 -0.5 0.4 -0.6 0.3 -0.7 0.1 -0.7 0.1 -0.7 0.0 -0.6 1.6 -0.3 1.2 -0.5 0.9 -0.6 0.7 -0.7 0.6 -0.9 0.4 -0.7 0.2 -0.9 0.1 -0.1 0.0 -0.8 -0.1 -0.8 -0.2 -0.7 -0.3 -0.8 -0.6 -0.6 -0.7 -0.5 -0.8 -0.4 -1.2 -0.5 -1.8 -0.7 0.0 -0.7 -0.1 -0.7 -0.2 -0.6 -0.2 -0.6 -0.4 -0.4 -0.4 -0.1 -0.1 -0.4 -0.5 -0.4 -0.5 -0.2 -0.7 -0.2 -0.6 -0.1 -0.7 0.0 -0.7 -1.7 -0.6 -1.2 -0.3 -0.9 -0.5 -0.7 -0.7 -0.5 -0.6 -0.4 -0.8 -0.2 -0.9 -0.1 -0.8 -0.0 -0.0 0.1 -0.8 0.2 -0.9 0.4 -0.7 0.5 -0.8 0.7 -0.6 0.9 -0.5 1.2 -0.3 1.7 -0.6 0.0 -0.7 0.1 -0.7 0.2 -0.7 0.3 -0.5 0.3 -0.6 0.4 -0.5 0.1 -0.0 0.5 -0.5 0.6 -0.3 0.6 -0.3 0.6 -0.2 0.7 -0.1 0.7 0.0 0.5 -1.8 0.4 -1.1 0.5 -0.9 0.6 -0.7 0.8 -0.5 0.7 -0.4 0.9 -0.2 0.7 -0.1 0.1 0.0 0.9 0.1 0.8 0.3 0.7 0.3 0.7 0.6 0.7 0.7 0.5 0.9 0.3 1.2 0.6 1.6 0.7 0.0 0.7 0.1 0.6 0.2 0.6 0.3 0.6 0.3 0.5 0.5 0.1 -0.0 0.4 0.5 0.3 0.5 0.3 0.7 0.2 0.6 0.1 0.7 -0.0 0.7 1.7 0.6 1.2 0.3 0.9 0.5 0.7 0.6 0.5 0.7 0.4 0.8 0.2 0.8 0.1 0.9 z';
|
|
31
|
+
export const pathAnimatableSmallBun = 'm34.6 24.5 1.2 0.7 0.9 0.8 0.7 0.9 0.6 0.8 0.5 1.0 0.3 1.0 0.2 1.0 0.1 1.0 -0.1 1.0 -0.2 0.9 -0.3 0.9 -0.4 0.9 -0.5 0.8 -0.6 0.8 -0.5 0.5 -0.2 0.2 -0.8 0.6 -0.8 0.4 -0.9 0.4 -0.9 0.3 -1.0 0.2 -1.2 0.0 -1.0 0.0 -0.9 0.0 -1.0 0.0 -0.9 0.0 -0.5 0.0 -1.0 0.0 -0.9 0.0 -1.0 0.0 -0.9 0.0 -1.0 0.0 -0.5 0.0 -0.9 0.0 -1.0 0.0 -0.9 0.0 -1.0 0.0 -1.2 -0.0 -1.0 -0.2 -0.9 -0.3 -0.9 -0.3 -0.8 -0.5 -0.8 -0.6 -0.3 -0.3 -0.5 -0.4 -0.6 -0.7 -0.5 -0.9 -0.4 -0.8 -0.3 -0.9 -0.2 -1.0 -0.0 -1.0 0.0 -1.0 0.2 -1.0 0.4 -1.0 0.4 -1.0 0.6 -0.9 0.8 -0.8 0.9 -0.8 1.1 -0.7 0.0 -1.0 -1.1 -0.7 -0.9 -0.8 -0.8 -0.9 -0.6 -0.8 -0.4 -1.0 -0.4 -1.0 -0.2 -1.0 -0.0 -1.0 0.1 -1.0 0.1 -0.9 0.3 -1.0 0.4 -0.8 0.6 -0.9 0.6 -0.7 0.4 -0.5 0.3 -0.2 0.8 -0.6 0.8 -0.5 0.9 -0.3 0.9 -0.3 1.0 -0.2 1.2 -0.0 1.0 -0.0 0.9 -0.0 1.0 -0.0 0.9 -0.0 0.5 -0.0 1.0 -0.0 0.9 -0.0 1.0 -0.0 0.9 -0.0 1.0 -0.0 0.5 -0.0 0.9 -0.0 1.0 -0.0 0.9 -0.0 1.0 -0.0 1.2 0.0 1.0 0.2 0.9 0.3 0.9 0.3 0.8 0.5 0.8 0.6 0.3 0.3 0.4 0.4 0.6 0.7 0.6 0.9 0.4 0.8 0.3 1.0 0.2 0.9 0.0 1.0 -0.0 1.0 -0.2 1.0 -0.3 1.0 -0.5 0.9 -0.6 1.0 -0.8 0.8 -0.9 0.8 -1.1 0.6 z';
|
|
32
|
+
export const pathAnimatableSmallHeart = 'm36.1 24.0 -0.6 0.6 -0.6 0.7 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.4 0.5 -0.2 0.2 -0.4 0.5 -0.5 0.5 -0.2 0.2 -0.4 0.5 -0.2 0.3 -0.4 0.5 -0.4 0.5 -0.2 0.2 -0.4 0.5 -0.4 0.5 -0.2 0.2 -0.4 0.5 -0.3 0.4 -0.5 0.5 -0.3 0.4 -0.5 0.5 -0.4 0.6 -0.5 0.5 -0.4 0.6 -0.7 0.7 -0.6 0.7 -0.8 1.0 -0.0 -0.0 -0.8 -1.0 -0.6 -0.7 -0.7 -0.8 -0.4 -0.5 -0.5 -0.5 -0.4 -0.6 -0.5 -0.5 -0.3 -0.4 -0.5 -0.5 -0.3 -0.4 -0.4 -0.5 -0.2 -0.2 -0.4 -0.5 -0.4 -0.5 -0.2 -0.3 -0.4 -0.4 -0.4 -0.5 -0.2 -0.3 -0.4 -0.5 -0.2 -0.2 -0.4 -0.5 -0.5 -0.5 -0.2 -0.2 -0.4 -0.5 -0.4 -0.5 -0.4 -0.5 -0.4 -0.5 -0.6 -0.7 -0.5 -0.6 -0.6 -0.6 -0.7 -0.8 -0.6 -0.8 -0.7 -0.9 -0.5 -0.9 -0.5 -1.1 -0.3 -1.0 -0.1 -1.0 0.0 -1.0 0.2 -1.0 0.3 -0.9 0.5 -0.9 0.5 -0.8 0.1 -0.1 0.6 -0.7 0.8 -0.6 0.8 -0.5 0.9 -0.4 1.0 -0.2 1.0 -0.1 1.1 0.1 1.1 0.2 1.1 0.4 1.1 0.7 1.1 1.1 0.9 1.1 0.9 0.9 0.6 0.7 0.5 0.6 0.5 0.5 0.8 0.0 0.5 -0.5 0.5 -0.6 0.6 -0.7 0.7 -0.8 1.1 -1.2 1.1 -1.0 1.1 -0.7 1.1 -0.5 1.1 -0.2 1.1 -0.1 1.0 0.1 1.0 0.3 0.9 0.3 0.8 0.5 0.8 0.7 0.6 0.6 0.1 0.1 0.5 0.8 0.4 0.9 0.4 0.9 0.2 1.0 -0.0 1.0 -0.1 1.0 -0.3 1.1 -0.5 0.9 -0.5 1.0 -0.7 0.9 -0.6 0.8 -0.7 0.8 z';
|
|
33
|
+
// Stats: ~1079 chars/shape avg (vs ~9000 for 720pt versions)
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import type { TransitionOptions } from './transitionTypes.js';
|
|
2
|
+
type SharedAxisOptions = {
|
|
3
|
+
direction: 'X' | 'Y';
|
|
4
|
+
/**
|
|
5
|
+
* true if this element is on the top/left of things
|
|
6
|
+
* if it's first, then use transition: and set it to true
|
|
7
|
+
* if it's last, then use transition: and set it to false
|
|
8
|
+
* if it's in between, use separate in: and out: statements:
|
|
9
|
+
* > set it to false when it's interacting with the left side, and true when interacting with its right
|
|
10
|
+
* > in order to implement this, try something like using a prevPage variable:
|
|
11
|
+
* > ```
|
|
12
|
+
* > {:else if page == 1}
|
|
13
|
+
* > <div
|
|
14
|
+
* > in:sharedAxisTransition={{
|
|
15
|
+
* > direction: "X",
|
|
16
|
+
* > rightSeam: prevPage > 1, (if we're transitioning from a page on the right, rightseam is true)
|
|
17
|
+
* > }}
|
|
18
|
+
* > out:sharedAxisTransition={{
|
|
19
|
+
* > direction: "X",
|
|
20
|
+
* > rightSeam: page > 1, (if we're transitioning to a page on the right, rightseam is true)
|
|
21
|
+
* > }}
|
|
22
|
+
* > >
|
|
23
|
+
* > ```
|
|
24
|
+
*
|
|
25
|
+
* i went insane over figuring this out :)
|
|
26
|
+
*/
|
|
27
|
+
rightSeam: boolean;
|
|
28
|
+
} | {
|
|
29
|
+
direction: 'Z';
|
|
30
|
+
leaving: boolean;
|
|
31
|
+
};
|
|
32
|
+
export declare const sharedAxisTransition: (node: Element, options: TransitionOptions & SharedAxisOptions) => {
|
|
33
|
+
delay: number | undefined;
|
|
34
|
+
duration: number;
|
|
35
|
+
easing: (t: number) => number;
|
|
36
|
+
css: (t: number, u: number) => string;
|
|
37
|
+
};
|
|
38
|
+
export {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { easeEmphasized } from './easing.js';
|
|
2
|
+
/* protip: set a background color on the items, and utilize position relative + absolute to let them overlap */
|
|
3
|
+
export const sharedAxisTransition = (node, options) => {
|
|
4
|
+
void node;
|
|
5
|
+
return {
|
|
6
|
+
delay: options.delay,
|
|
7
|
+
duration: options.duration ?? 500,
|
|
8
|
+
easing: options.easing ?? easeEmphasized,
|
|
9
|
+
css: (t, u) => {
|
|
10
|
+
const opacity = (t - 0.35) * (1 / 0.35);
|
|
11
|
+
if (options.direction == 'Z') {
|
|
12
|
+
const factor = options.leaving ? u * 0.1 + 1 : t * 0.2 + 0.8;
|
|
13
|
+
let css = `transform: scale(${factor.toFixed(3)});`;
|
|
14
|
+
if (!options.leaving)
|
|
15
|
+
css += `opacity: ${opacity.toFixed(3)};`;
|
|
16
|
+
return css;
|
|
17
|
+
}
|
|
18
|
+
const factor = u * (options.rightSeam ? -30 : 30);
|
|
19
|
+
return (`transform: translate${options.direction}(${factor.toFixed(3)}px);` +
|
|
20
|
+
`opacity: ${opacity.toFixed(3)}`);
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { cubicOut } from 'svelte/easing';
|
|
2
|
+
export type TransitionMode = 'fade' | 'scale' | 'slide-up' | 'dialog' | 'dialog-m3';
|
|
3
|
+
export interface TransitionOptions {
|
|
4
|
+
delay?: number;
|
|
5
|
+
duration?: number;
|
|
6
|
+
easing?: typeof cubicOut;
|
|
7
|
+
mode?: TransitionMode;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@component
|
|
3
|
+
Badges communicate a notification count or status for an element.
|
|
4
|
+
|
|
5
|
+
Small badges are used for a general notification.
|
|
6
|
+
Large badges are used for specific counts.
|
|
7
|
+
|
|
8
|
+
@see https://m3.material.io/components/badges/overview
|
|
9
|
+
-->
|
|
10
|
+
<script lang="ts">
|
|
11
|
+
import clsx from 'clsx';
|
|
12
|
+
import { badge } from './theme.js';
|
|
13
|
+
import type { BadgeProps } from './types.js';
|
|
14
|
+
|
|
15
|
+
const { number, size = 'lg', class: className, ...restProps }: BadgeProps = $props();
|
|
16
|
+
|
|
17
|
+
const styling = $derived(badge({ size }));
|
|
18
|
+
</script>
|
|
19
|
+
|
|
20
|
+
{#if number}
|
|
21
|
+
<div class={clsx(styling, className)} {...restProps}>
|
|
22
|
+
{#if size != 'sm'}
|
|
23
|
+
{number > 99 ? '99+' : number}
|
|
24
|
+
{/if}
|
|
25
|
+
</div>
|
|
26
|
+
{/if}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { BadgeProps } from './types.js';
|
|
2
|
+
/**
|
|
3
|
+
* Badges communicate a notification count or status for an element.
|
|
4
|
+
*
|
|
5
|
+
* Small badges are used for a general notification.
|
|
6
|
+
* Large badges are used for specific counts.
|
|
7
|
+
*
|
|
8
|
+
* @see https://m3.material.io/components/badges/overview
|
|
9
|
+
*/
|
|
10
|
+
declare const Badge: import("svelte").Component<BadgeProps, {}, "">;
|
|
11
|
+
type Badge = ReturnType<typeof Badge>;
|
|
12
|
+
export default Badge;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
// THIS FILE IS AUTO-GENERATED BY scripts/generate-components-index.ts - DO NOT EDIT MANUALLY
|
|
2
|
+
// re-export TS/JS modules from this folder
|
|
3
|
+
export * from './theme.js';
|
|
4
|
+
export * from './types.js';
|
|
5
|
+
// default exports for components in this folder
|
|
6
|
+
export { default as Badge } from './Badge.svelte';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
2
|
+
size: {
|
|
3
|
+
sm: string;
|
|
4
|
+
lg: string;
|
|
5
|
+
};
|
|
6
|
+
}, undefined, "bg-md-sys-color-error text-md-sys-color-on-error absolute rounded-full md-sys-typescale-label-small inline-flex items-center justify-center", {
|
|
7
|
+
size: {
|
|
8
|
+
sm: string;
|
|
9
|
+
lg: string;
|
|
10
|
+
};
|
|
11
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
12
|
+
size: {
|
|
13
|
+
sm: string;
|
|
14
|
+
lg: string;
|
|
15
|
+
};
|
|
16
|
+
}, undefined, "bg-md-sys-color-error text-md-sys-color-on-error absolute rounded-full md-sys-typescale-label-small inline-flex items-center justify-center", unknown, unknown, undefined>>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { tv } from 'tailwind-variants';
|
|
2
|
+
export const badge = tv({
|
|
3
|
+
base: 'bg-md-sys-color-error text-md-sys-color-on-error absolute rounded-full md-sys-typescale-label-small inline-flex items-center justify-center',
|
|
4
|
+
variants: {
|
|
5
|
+
size: {
|
|
6
|
+
sm: 'size-1.5 top-0 right-3',
|
|
7
|
+
lg: 'h-3 min-w-3 p-1 -top-1 right-1'
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { HTMLAttributes } from 'svelte/elements';
|
|
2
|
+
import type { VariantProps } from 'tailwind-variants';
|
|
3
|
+
import type { badge } from './theme.js';
|
|
4
|
+
export type BadgeVariants = VariantProps<typeof badge>;
|
|
5
|
+
export type BadgeProps = BadgeVariants & HTMLAttributes<HTMLDivElement> & {
|
|
6
|
+
/**
|
|
7
|
+
* The size of the badge.
|
|
8
|
+
* - 'sm': Small badge, no number displayed.
|
|
9
|
+
* - 'lg': Large badge, displays number.
|
|
10
|
+
*/
|
|
11
|
+
size?: BadgeVariants['size'];
|
|
12
|
+
/**
|
|
13
|
+
* The number to display in the badge.
|
|
14
|
+
* Values greater than 99 will be displayed as "99+".
|
|
15
|
+
* If size is 'sm', the number is not displayed.
|
|
16
|
+
*/
|
|
17
|
+
number?: number;
|
|
18
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@component
|
|
3
|
+
Buttons help people take actions, such as sending an email, sharing a document, or liking a comment.
|
|
4
|
+
|
|
5
|
+
- Filled: High emphasis
|
|
6
|
+
- Tonal: Medium-high emphasis
|
|
7
|
+
- Outlined: Medium emphasis
|
|
8
|
+
- Text: Low emphasis
|
|
9
|
+
- Elevated: High emphasis
|
|
10
|
+
|
|
11
|
+
@see https://m3.material.io/components/all-buttons
|
|
12
|
+
-->
|
|
13
|
+
<script lang="ts">
|
|
14
|
+
import type { ButtonMDProps } from './types.js';
|
|
15
|
+
import { Icon, LoadingIndicator, Layer } from '../../utils/index.js';
|
|
16
|
+
import { button } from './theme.js';
|
|
17
|
+
import clsx from 'clsx';
|
|
18
|
+
import { Button, type ButtonRootProps } from 'bits-ui';
|
|
19
|
+
|
|
20
|
+
let {
|
|
21
|
+
children,
|
|
22
|
+
iconProps,
|
|
23
|
+
variant = 'filled',
|
|
24
|
+
color = 'default',
|
|
25
|
+
size = 'md',
|
|
26
|
+
shape = 'round',
|
|
27
|
+
disabled,
|
|
28
|
+
selected,
|
|
29
|
+
formaction,
|
|
30
|
+
loading,
|
|
31
|
+
class: className,
|
|
32
|
+
...restProps
|
|
33
|
+
}: ButtonMDProps = $props();
|
|
34
|
+
|
|
35
|
+
const { base, icon } = $derived(button({ variant, color, shape, size, selected }));
|
|
36
|
+
const btnCls = $derived(base({ class: clsx(className) }));
|
|
37
|
+
</script>
|
|
38
|
+
|
|
39
|
+
<Button.Root {disabled} {formaction} class={btnCls} {...restProps as ButtonRootProps}>
|
|
40
|
+
{#if iconProps}
|
|
41
|
+
{#if loading}
|
|
42
|
+
<LoadingIndicator container={variant === 'filled'} class={icon()} />
|
|
43
|
+
{:else}
|
|
44
|
+
<Icon class={icon()} {...iconProps} />
|
|
45
|
+
{@render children?.()}
|
|
46
|
+
{/if}
|
|
47
|
+
{:else if loading}
|
|
48
|
+
<LoadingIndicator container={variant === 'filled'} />
|
|
49
|
+
{:else}
|
|
50
|
+
{@render children?.()}
|
|
51
|
+
{/if}
|
|
52
|
+
<Layer />
|
|
53
|
+
</Button.Root>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { ButtonMDProps } from './types.js';
|
|
2
|
+
import { Button } from 'bits-ui';
|
|
3
|
+
/**
|
|
4
|
+
* Buttons help people take actions, such as sending an email, sharing a document, or liking a comment.
|
|
5
|
+
*
|
|
6
|
+
* - Filled: High emphasis
|
|
7
|
+
* - Tonal: Medium-high emphasis
|
|
8
|
+
* - Outlined: Medium emphasis
|
|
9
|
+
* - Text: Low emphasis
|
|
10
|
+
* - Elevated: High emphasis
|
|
11
|
+
*
|
|
12
|
+
* @see https://m3.material.io/components/all-buttons
|
|
13
|
+
*/
|
|
14
|
+
declare const Button: import("svelte").Component<ButtonMDProps, {}, "">;
|
|
15
|
+
type Button = ReturnType<typeof Button>;
|
|
16
|
+
export default Button;
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@component
|
|
3
|
+
Icon buttons help people take minor actions and are often used in app bars.
|
|
4
|
+
|
|
5
|
+
- Standard: Low emphasis
|
|
6
|
+
- Filled: High emphasis
|
|
7
|
+
- Filled Tonal: Medium-high emphasis
|
|
8
|
+
- Outlined: Medium emphasis
|
|
9
|
+
|
|
10
|
+
@see https://m3.material.io/components/icon-buttons/overview
|
|
11
|
+
-->
|
|
12
|
+
<script lang="ts">
|
|
13
|
+
import type { ButtonIconProps } from './types.js';
|
|
14
|
+
import { Icon, LoadingIndicator, Layer } from '../../utils/index.js';
|
|
15
|
+
import { buttonIcon } from './theme.js';
|
|
16
|
+
import clsx from 'clsx';
|
|
17
|
+
import Tooltip from '../forms/tooltip/Tooltip.svelte';
|
|
18
|
+
import { Button, Toggle, type ButtonRootProps } from 'bits-ui';
|
|
19
|
+
import type { ToggleRootProps } from 'bits-ui';
|
|
20
|
+
|
|
21
|
+
let {
|
|
22
|
+
iconProps,
|
|
23
|
+
variant = 'text',
|
|
24
|
+
color = 'default',
|
|
25
|
+
size = 'md',
|
|
26
|
+
shape = 'round',
|
|
27
|
+
variation = 'default',
|
|
28
|
+
triggerClass = '',
|
|
29
|
+
triggerSide = 'top',
|
|
30
|
+
triggerAlign = 'center',
|
|
31
|
+
disabled,
|
|
32
|
+
formaction,
|
|
33
|
+
tooltipContent,
|
|
34
|
+
loading,
|
|
35
|
+
width = 'default',
|
|
36
|
+
pressed = false,
|
|
37
|
+
onPressedChange,
|
|
38
|
+
class: className,
|
|
39
|
+
...restProps
|
|
40
|
+
}: ButtonIconProps = $props();
|
|
41
|
+
|
|
42
|
+
const selected = $derived(variation === 'toggle' ? pressed : undefined);
|
|
43
|
+
|
|
44
|
+
const { base, icon } = $derived(
|
|
45
|
+
buttonIcon({ variant, color, shape, variation, size, width, selected })
|
|
46
|
+
);
|
|
47
|
+
|
|
48
|
+
const btnCls = $derived(base({ class: clsx(className) }));
|
|
49
|
+
</script>
|
|
50
|
+
|
|
51
|
+
<Tooltip {triggerClass} variant="snack" supportingText={tooltipContent}>
|
|
52
|
+
{#snippet trigger()}
|
|
53
|
+
{#if variation === 'toggle'}
|
|
54
|
+
<Toggle.Root
|
|
55
|
+
bind:pressed
|
|
56
|
+
{onPressedChange}
|
|
57
|
+
{disabled}
|
|
58
|
+
class={btnCls}
|
|
59
|
+
{...restProps as ToggleRootProps}
|
|
60
|
+
>
|
|
61
|
+
{#if loading}
|
|
62
|
+
<LoadingIndicator />
|
|
63
|
+
{:else}
|
|
64
|
+
<Icon class={icon()} {...iconProps} />
|
|
65
|
+
<Layer />
|
|
66
|
+
{/if}
|
|
67
|
+
</Toggle.Root>
|
|
68
|
+
{:else}
|
|
69
|
+
<Button.Root {disabled} {formaction} class={btnCls} {...restProps as ButtonRootProps}>
|
|
70
|
+
{#if loading}
|
|
71
|
+
<LoadingIndicator />
|
|
72
|
+
{:else}
|
|
73
|
+
<Icon class={icon()} {...iconProps} />
|
|
74
|
+
<Layer />
|
|
75
|
+
{/if}
|
|
76
|
+
</Button.Root>
|
|
77
|
+
{/if}
|
|
78
|
+
{/snippet}
|
|
79
|
+
</Tooltip>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { ButtonIconProps } from './types.js';
|
|
2
|
+
/**
|
|
3
|
+
* Icon buttons help people take minor actions and are often used in app bars.
|
|
4
|
+
*
|
|
5
|
+
* - Standard: Low emphasis
|
|
6
|
+
* - Filled: High emphasis
|
|
7
|
+
* - Filled Tonal: Medium-high emphasis
|
|
8
|
+
* - Outlined: Medium emphasis
|
|
9
|
+
*
|
|
10
|
+
* @see https://m3.material.io/components/icon-buttons/overview
|
|
11
|
+
*/
|
|
12
|
+
declare const ButtonIcon: import("svelte").Component<ButtonIconProps, {}, "">;
|
|
13
|
+
type ButtonIcon = ReturnType<typeof ButtonIcon>;
|
|
14
|
+
export default ButtonIcon;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
@component
|
|
3
|
+
Floating action buttons (FABs) help people take primary actions.
|
|
4
|
+
|
|
5
|
+
- Regular: Standard size
|
|
6
|
+
- Small: For secondary actions
|
|
7
|
+
- Large: For prominent actions
|
|
8
|
+
- Extended: Includes a text label
|
|
9
|
+
|
|
10
|
+
@see https://m3.material.io/components/floating-action-button/overview
|
|
11
|
+
-->
|
|
12
|
+
<script lang="ts">
|
|
13
|
+
import clsx from 'clsx';
|
|
14
|
+
import { fab } from './theme.js';
|
|
15
|
+
import type { FABProps } from './types.js';
|
|
16
|
+
import FABMenu from './FABMenu.svelte';
|
|
17
|
+
import ButtonIcon from './ButtonIcon.svelte';
|
|
18
|
+
import { Layer, Icon } from '../../utils/index.js';
|
|
19
|
+
import { clickOutside } from '../../actions/index.js';
|
|
20
|
+
import { Button, type ButtonRootProps } from 'bits-ui';
|
|
21
|
+
|
|
22
|
+
let {
|
|
23
|
+
children,
|
|
24
|
+
disabled,
|
|
25
|
+
formaction,
|
|
26
|
+
size = 'regular',
|
|
27
|
+
config = 'primary',
|
|
28
|
+
iconProps,
|
|
29
|
+
label,
|
|
30
|
+
expanded = false,
|
|
31
|
+
class: className,
|
|
32
|
+
withMenu,
|
|
33
|
+
...restProps
|
|
34
|
+
}: FABProps = $props();
|
|
35
|
+
|
|
36
|
+
const { base, icon, label: labelClass } = $derived(fab({ size, config, expanded }));
|
|
37
|
+
const btnCls = $derived(base({ class: clsx(className) }));
|
|
38
|
+
|
|
39
|
+
let showMenu = $state(false);
|
|
40
|
+
|
|
41
|
+
function handleClick(e: MouseEvent) {
|
|
42
|
+
if (disabled) {
|
|
43
|
+
e.preventDefault();
|
|
44
|
+
return;
|
|
45
|
+
}
|
|
46
|
+
if (withMenu) {
|
|
47
|
+
e.preventDefault();
|
|
48
|
+
showMenu = true;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
</script>
|
|
52
|
+
|
|
53
|
+
{#if withMenu && showMenu}
|
|
54
|
+
<div class="relative z-50" use:clickOutside={() => (showMenu = false)}>
|
|
55
|
+
<FABMenu>
|
|
56
|
+
{@render children?.()}
|
|
57
|
+
</FABMenu>
|
|
58
|
+
<ButtonIcon
|
|
59
|
+
variant="filled"
|
|
60
|
+
class="shadow-elevation-3"
|
|
61
|
+
iconProps={{ name: 'close' }}
|
|
62
|
+
onclick={() => (showMenu = !showMenu)}
|
|
63
|
+
/>
|
|
64
|
+
</div>
|
|
65
|
+
{:else}
|
|
66
|
+
<Button.Root
|
|
67
|
+
{disabled}
|
|
68
|
+
{formaction}
|
|
69
|
+
class={btnCls}
|
|
70
|
+
onclick={handleClick}
|
|
71
|
+
{...restProps as ButtonRootProps}
|
|
72
|
+
>
|
|
73
|
+
<Icon {...iconProps} class={icon()} />
|
|
74
|
+
<Layer />
|
|
75
|
+
{#if expanded}
|
|
76
|
+
<p class={labelClass()}>
|
|
77
|
+
{label}
|
|
78
|
+
</p>
|
|
79
|
+
{/if}
|
|
80
|
+
</Button.Root>
|
|
81
|
+
{/if}
|