@velastack/cms 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/LICENSE +21 -0
- package/README.md +644 -0
- package/dist/cms.d.ts +6 -0
- package/dist/cms.js +30 -0
- package/dist/components/admin-bar/admin-bar-internal.svelte +1697 -0
- package/dist/components/admin-bar/admin-bar-internal.svelte.d.ts +12 -0
- package/dist/components/admin-bar/admin-bar.css +5 -0
- package/dist/components/admin-bar/admin-bar.svelte +355 -0
- package/dist/components/admin-bar/admin-bar.svelte.d.ts +7 -0
- package/dist/components/admin-bar/click-outside.d.ts +8 -0
- package/dist/components/admin-bar/click-outside.js +17 -0
- package/dist/components/admin-bar/css-root.svelte +23 -0
- package/dist/components/admin-bar/css-root.svelte.d.ts +19 -0
- package/dist/components/admin-bar/delete-page-dialog.svelte +326 -0
- package/dist/components/admin-bar/delete-page-dialog.svelte.d.ts +32 -0
- package/dist/components/admin-bar/history-panel.svelte +264 -0
- package/dist/components/admin-bar/history-panel.svelte.d.ts +8 -0
- package/dist/components/admin-bar/icons/bold.svelte +13 -0
- package/dist/components/admin-bar/icons/bold.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/check.svelte +11 -0
- package/dist/components/admin-bar/icons/check.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/chevron-down.svelte +11 -0
- package/dist/components/admin-bar/icons/chevron-down.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/chevron-right.svelte +11 -0
- package/dist/components/admin-bar/icons/chevron-right.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/chevron-up.svelte +11 -0
- package/dist/components/admin-bar/icons/chevron-up.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/code.svelte +14 -0
- package/dist/components/admin-bar/icons/code.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/external-link.svelte +15 -0
- package/dist/components/admin-bar/icons/external-link.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/file.svelte +19 -0
- package/dist/components/admin-bar/icons/file.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/heading-2.svelte +16 -0
- package/dist/components/admin-bar/icons/heading-2.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/heading-3.svelte +17 -0
- package/dist/components/admin-bar/icons/heading-3.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/icon.svelte +41 -0
- package/dist/components/admin-bar/icons/icon.svelte.d.ts +21 -0
- package/dist/components/admin-bar/icons/images.svelte +16 -0
- package/dist/components/admin-bar/icons/images.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/italic.svelte +15 -0
- package/dist/components/admin-bar/icons/italic.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/link-2-off.svelte +16 -0
- package/dist/components/admin-bar/icons/link-2-off.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/link.svelte +14 -0
- package/dist/components/admin-bar/icons/link.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/list-ordered.svelte +18 -0
- package/dist/components/admin-bar/icons/list-ordered.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/list.svelte +18 -0
- package/dist/components/admin-bar/icons/list.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/loader-circle.svelte +11 -0
- package/dist/components/admin-bar/icons/loader-circle.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/minus.svelte +11 -0
- package/dist/components/admin-bar/icons/minus.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/quote.svelte +24 -0
- package/dist/components/admin-bar/icons/quote.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/search.svelte +14 -0
- package/dist/components/admin-bar/icons/search.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/trash-2.svelte +17 -0
- package/dist/components/admin-bar/icons/trash-2.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/triangle-alert.svelte +15 -0
- package/dist/components/admin-bar/icons/triangle-alert.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/types.d.ts +7 -0
- package/dist/components/admin-bar/icons/types.js +1 -0
- package/dist/components/admin-bar/icons/undo-2.svelte +14 -0
- package/dist/components/admin-bar/icons/undo-2.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/upload.svelte +15 -0
- package/dist/components/admin-bar/icons/upload.svelte.d.ts +3 -0
- package/dist/components/admin-bar/icons/x.svelte +14 -0
- package/dist/components/admin-bar/icons/x.svelte.d.ts +3 -0
- package/dist/components/admin-bar/keyboard-shortcuts-dialog.svelte +96 -0
- package/dist/components/admin-bar/keyboard-shortcuts-dialog.svelte.d.ts +7 -0
- package/dist/components/admin-bar/locales-panel.svelte +137 -0
- package/dist/components/admin-bar/locales-panel.svelte.d.ts +9 -0
- package/dist/components/admin-bar/media-panel.svelte +282 -0
- package/dist/components/admin-bar/media-panel.svelte.d.ts +7 -0
- package/dist/components/admin-bar/new-page-chooser-dialog.svelte +56 -0
- package/dist/components/admin-bar/new-page-chooser-dialog.svelte.d.ts +10 -0
- package/dist/components/admin-bar/new-page-dialog.svelte +126 -0
- package/dist/components/admin-bar/new-page-dialog.svelte.d.ts +14 -0
- package/dist/components/admin-bar/page-config.d.ts +61 -0
- package/dist/components/admin-bar/page-config.js +24 -0
- package/dist/components/admin-bar/pages-panel.svelte +639 -0
- package/dist/components/admin-bar/pages-panel.svelte.d.ts +13 -0
- package/dist/components/admin-bar/panel-footer.svelte +21 -0
- package/dist/components/admin-bar/panel-footer.svelte.d.ts +8 -0
- package/dist/components/admin-bar/panel-header.svelte +29 -0
- package/dist/components/admin-bar/panel-header.svelte.d.ts +10 -0
- package/dist/components/admin-bar/panel.svelte +41 -0
- package/dist/components/admin-bar/panel.svelte.d.ts +10 -0
- package/dist/components/admin-bar/publish-dialog.svelte +387 -0
- package/dist/components/admin-bar/publish-dialog.svelte.d.ts +16 -0
- package/dist/components/admin-bar/resolve-route.d.ts +20 -0
- package/dist/components/admin-bar/resolve-route.js +50 -0
- package/dist/components/admin-bar/seo-panel.svelte +387 -0
- package/dist/components/admin-bar/seo-panel.svelte.d.ts +7 -0
- package/dist/components/admin-bar/share-preview-link-dialog.svelte +97 -0
- package/dist/components/admin-bar/share-preview-link-dialog.svelte.d.ts +9 -0
- package/dist/components/admin-bar/site-settings-panel.svelte +225 -0
- package/dist/components/admin-bar/site-settings-panel.svelte.d.ts +7 -0
- package/dist/components/admin-bar/status-pill.svelte +49 -0
- package/dist/components/admin-bar/status-pill.svelte.d.ts +11 -0
- package/dist/components/admin-bar/theme.svelte.d.ts +16 -0
- package/dist/components/admin-bar/theme.svelte.js +39 -0
- package/dist/components/admin-bar/ui/badge/badge.svelte +57 -0
- package/dist/components/admin-bar/ui/badge/badge.svelte.d.ts +16 -0
- package/dist/components/admin-bar/ui/badge/index.d.ts +4 -0
- package/dist/components/admin-bar/ui/badge/index.js +4 -0
- package/dist/components/admin-bar/ui/button/button.svelte +73 -0
- package/dist/components/admin-bar/ui/button/button.svelte.d.ts +16 -0
- package/dist/components/admin-bar/ui/button/index.d.ts +4 -0
- package/dist/components/admin-bar/ui/button/index.js +4 -0
- package/dist/components/admin-bar/ui/collapsible/collapsible-content.svelte +7 -0
- package/dist/components/admin-bar/ui/collapsible/collapsible-content.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/collapsible/collapsible-trigger.svelte +7 -0
- package/dist/components/admin-bar/ui/collapsible/collapsible-trigger.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/collapsible/collapsible.svelte +7 -0
- package/dist/components/admin-bar/ui/collapsible/collapsible.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/collapsible/index.d.ts +4 -0
- package/dist/components/admin-bar/ui/collapsible/index.js +6 -0
- package/dist/components/admin-bar/ui/dialog/dialog-close.svelte +7 -0
- package/dist/components/admin-bar/ui/dialog/dialog-close.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/dialog/dialog-content.svelte +46 -0
- package/dist/components/admin-bar/ui/dialog/dialog-content.svelte.d.ts +11 -0
- package/dist/components/admin-bar/ui/dialog/dialog-description.svelte +17 -0
- package/dist/components/admin-bar/ui/dialog/dialog-description.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/dialog/dialog-footer.svelte +23 -0
- package/dist/components/admin-bar/ui/dialog/dialog-footer.svelte.d.ts +5 -0
- package/dist/components/admin-bar/ui/dialog/dialog-header.svelte +20 -0
- package/dist/components/admin-bar/ui/dialog/dialog-header.svelte.d.ts +5 -0
- package/dist/components/admin-bar/ui/dialog/dialog-overlay.svelte +20 -0
- package/dist/components/admin-bar/ui/dialog/dialog-overlay.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/dialog/dialog-portal.svelte +7 -0
- package/dist/components/admin-bar/ui/dialog/dialog-portal.svelte.d.ts +3 -0
- package/dist/components/admin-bar/ui/dialog/dialog-title.svelte +17 -0
- package/dist/components/admin-bar/ui/dialog/dialog-title.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/dialog/dialog-trigger.svelte +7 -0
- package/dist/components/admin-bar/ui/dialog/dialog-trigger.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/dialog/dialog.svelte +7 -0
- package/dist/components/admin-bar/ui/dialog/dialog.svelte.d.ts +3 -0
- package/dist/components/admin-bar/ui/dialog/index.d.ts +11 -0
- package/dist/components/admin-bar/ui/dialog/index.js +13 -0
- package/dist/components/admin-bar/ui/input/index.d.ts +3 -0
- package/dist/components/admin-bar/ui/input/index.js +3 -0
- package/dist/components/admin-bar/ui/input/input.svelte +24 -0
- package/dist/components/admin-bar/ui/input/input.svelte.d.ts +5 -0
- package/dist/components/admin-bar/ui/kbd/index.d.ts +4 -0
- package/dist/components/admin-bar/ui/kbd/index.js +6 -0
- package/dist/components/admin-bar/ui/kbd/kbd-group.svelte +20 -0
- package/dist/components/admin-bar/ui/kbd/kbd-group.svelte.d.ts +5 -0
- package/dist/components/admin-bar/ui/kbd/kbd-shortcut.svelte +52 -0
- package/dist/components/admin-bar/ui/kbd/kbd-shortcut.svelte.d.ts +8 -0
- package/dist/components/admin-bar/ui/kbd/kbd.svelte +27 -0
- package/dist/components/admin-bar/ui/kbd/kbd.svelte.d.ts +5 -0
- package/dist/components/admin-bar/ui/label/index.d.ts +3 -0
- package/dist/components/admin-bar/ui/label/index.js +3 -0
- package/dist/components/admin-bar/ui/label/label.svelte +20 -0
- package/dist/components/admin-bar/ui/label/label.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/menubar/index.d.ts +18 -0
- package/dist/components/admin-bar/ui/menubar/index.js +20 -0
- package/dist/components/admin-bar/ui/menubar/menubar-checkbox-item.svelte +46 -0
- package/dist/components/admin-bar/ui/menubar/menubar-checkbox-item.svelte.d.ts +10 -0
- package/dist/components/admin-bar/ui/menubar/menubar-content.svelte +28 -0
- package/dist/components/admin-bar/ui/menubar/menubar-content.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/menubar/menubar-group-heading.svelte +25 -0
- package/dist/components/admin-bar/ui/menubar/menubar-group-heading.svelte.d.ts +8 -0
- package/dist/components/admin-bar/ui/menubar/menubar-group.svelte +12 -0
- package/dist/components/admin-bar/ui/menubar/menubar-group.svelte.d.ts +7 -0
- package/dist/components/admin-bar/ui/menubar/menubar-item.svelte +27 -0
- package/dist/components/admin-bar/ui/menubar/menubar-item.svelte.d.ts +8 -0
- package/dist/components/admin-bar/ui/menubar/menubar-label.svelte +25 -0
- package/dist/components/admin-bar/ui/menubar/menubar-label.svelte.d.ts +8 -0
- package/dist/components/admin-bar/ui/menubar/menubar-menu.svelte +7 -0
- package/dist/components/admin-bar/ui/menubar/menubar-menu.svelte.d.ts +3 -0
- package/dist/components/admin-bar/ui/menubar/menubar-portal.svelte +7 -0
- package/dist/components/admin-bar/ui/menubar/menubar-portal.svelte.d.ts +3 -0
- package/dist/components/admin-bar/ui/menubar/menubar-radio-group.svelte +11 -0
- package/dist/components/admin-bar/ui/menubar/menubar-radio-group.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/menubar/menubar-radio-item.svelte +37 -0
- package/dist/components/admin-bar/ui/menubar/menubar-radio-item.svelte.d.ts +8 -0
- package/dist/components/admin-bar/ui/menubar/menubar-separator.svelte +17 -0
- package/dist/components/admin-bar/ui/menubar/menubar-separator.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/menubar/menubar-shortcut.svelte +23 -0
- package/dist/components/admin-bar/ui/menubar/menubar-shortcut.svelte.d.ts +5 -0
- package/dist/components/admin-bar/ui/menubar/menubar-sub-content.svelte +20 -0
- package/dist/components/admin-bar/ui/menubar/menubar-sub-content.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/menubar/menubar-sub-trigger.svelte +29 -0
- package/dist/components/admin-bar/ui/menubar/menubar-sub-trigger.svelte.d.ts +8 -0
- package/dist/components/admin-bar/ui/menubar/menubar-sub.svelte +7 -0
- package/dist/components/admin-bar/ui/menubar/menubar-sub.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/menubar/menubar-trigger.svelte +20 -0
- package/dist/components/admin-bar/ui/menubar/menubar-trigger.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/menubar/menubar.svelte +20 -0
- package/dist/components/admin-bar/ui/menubar/menubar.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/select/index.d.ts +12 -0
- package/dist/components/admin-bar/ui/select/index.js +14 -0
- package/dist/components/admin-bar/ui/select/select-content.svelte +45 -0
- package/dist/components/admin-bar/ui/select/select-content.svelte.d.ts +11 -0
- package/dist/components/admin-bar/ui/select/select-group-heading.svelte +21 -0
- package/dist/components/admin-bar/ui/select/select-group-heading.svelte.d.ts +10 -0
- package/dist/components/admin-bar/ui/select/select-group.svelte +17 -0
- package/dist/components/admin-bar/ui/select/select-group.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/select/select-item.svelte +40 -0
- package/dist/components/admin-bar/ui/select/select-item.svelte.d.ts +5 -0
- package/dist/components/admin-bar/ui/select/select-label.svelte +20 -0
- package/dist/components/admin-bar/ui/select/select-label.svelte.d.ts +6 -0
- package/dist/components/admin-bar/ui/select/select-portal.svelte +7 -0
- package/dist/components/admin-bar/ui/select/select-portal.svelte.d.ts +3 -0
- package/dist/components/admin-bar/ui/select/select-scroll-down-button.svelte +23 -0
- package/dist/components/admin-bar/ui/select/select-scroll-down-button.svelte.d.ts +5 -0
- package/dist/components/admin-bar/ui/select/select-scroll-up-button.svelte +23 -0
- package/dist/components/admin-bar/ui/select/select-scroll-up-button.svelte.d.ts +5 -0
- package/dist/components/admin-bar/ui/select/select-separator.svelte +21 -0
- package/dist/components/admin-bar/ui/select/select-separator.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/select/select-trigger.svelte +31 -0
- package/dist/components/admin-bar/ui/select/select-trigger.svelte.d.ts +8 -0
- package/dist/components/admin-bar/ui/select/select.svelte +11 -0
- package/dist/components/admin-bar/ui/select/select.svelte.d.ts +3 -0
- package/dist/components/admin-bar/ui/separator/index.d.ts +2 -0
- package/dist/components/admin-bar/ui/separator/index.js +4 -0
- package/dist/components/admin-bar/ui/separator/separator.svelte +21 -0
- package/dist/components/admin-bar/ui/separator/separator.svelte.d.ts +4 -0
- package/dist/components/admin-bar/ui/textarea/index.d.ts +3 -0
- package/dist/components/admin-bar/ui/textarea/index.js +3 -0
- package/dist/components/admin-bar/ui/textarea/textarea.svelte +21 -0
- package/dist/components/admin-bar/ui/textarea/textarea.svelte.d.ts +5 -0
- package/dist/components/admin-bar/user-avatar.svelte +29 -0
- package/dist/components/admin-bar/user-avatar.svelte.d.ts +7 -0
- package/dist/components/admin-bar/utils.d.ts +10 -0
- package/dist/components/admin-bar/utils.js +46 -0
- package/dist/components/admin-bar/variants.d.ts +20 -0
- package/dist/components/admin-bar/variants.js +14 -0
- package/dist/components/cms/cms-boolean.svelte +102 -0
- package/dist/components/cms/cms-boolean.svelte.d.ts +10 -0
- package/dist/components/cms/cms-date-time-editable.svelte +66 -0
- package/dist/components/cms/cms-date-time-editable.svelte.d.ts +11 -0
- package/dist/components/cms/cms-date-time.svelte +67 -0
- package/dist/components/cms/cms-date-time.svelte.d.ts +19 -0
- package/dist/components/cms/cms-entries.svelte +24 -0
- package/dist/components/cms/cms-entries.svelte.d.ts +31 -0
- package/dist/components/cms/cms-image-editable.svelte +439 -0
- package/dist/components/cms/cms-image-editable.svelte.d.ts +11 -0
- package/dist/components/cms/cms-image.svelte +78 -0
- package/dist/components/cms/cms-image.svelte.d.ts +18 -0
- package/dist/components/cms/cms-link-editable.svelte +429 -0
- package/dist/components/cms/cms-link-editable.svelte.d.ts +13 -0
- package/dist/components/cms/cms-link.svelte +92 -0
- package/dist/components/cms/cms-link.svelte.d.ts +25 -0
- package/dist/components/cms/cms-markdown-editable.svelte +74 -0
- package/dist/components/cms/cms-markdown-editable.svelte.d.ts +9 -0
- package/dist/components/cms/cms-markdown.svelte +56 -0
- package/dist/components/cms/cms-markdown.svelte.d.ts +10 -0
- package/dist/components/cms/cms-media-picker.svelte +150 -0
- package/dist/components/cms/cms-media-picker.svelte.d.ts +8 -0
- package/dist/components/cms/cms-number-editable.svelte +77 -0
- package/dist/components/cms/cms-number-editable.svelte.d.ts +13 -0
- package/dist/components/cms/cms-number.svelte +63 -0
- package/dist/components/cms/cms-number.svelte.d.ts +16 -0
- package/dist/components/cms/cms-repeater-editable.svelte +137 -0
- package/dist/components/cms/cms-repeater-editable.svelte.d.ts +31 -0
- package/dist/components/cms/cms-repeater.svelte +55 -0
- package/dist/components/cms/cms-repeater.svelte.d.ts +30 -0
- package/dist/components/cms/cms-rich-text-editable.svelte +101 -0
- package/dist/components/cms/cms-rich-text-editable.svelte.d.ts +9 -0
- package/dist/components/cms/cms-rich-text-toolbar.svelte +246 -0
- package/dist/components/cms/cms-rich-text-toolbar.svelte.d.ts +9 -0
- package/dist/components/cms/cms-rich-text.svelte +74 -0
- package/dist/components/cms/cms-rich-text.svelte.d.ts +10 -0
- package/dist/components/cms/cms-store.svelte.d.ts +294 -0
- package/dist/components/cms/cms-store.svelte.js +625 -0
- package/dist/components/cms/cms-text.svelte +131 -0
- package/dist/components/cms/cms-text.svelte.d.ts +11 -0
- package/dist/components/cms/index.d.ts +13 -0
- package/dist/components/cms/index.js +11 -0
- package/dist/components/cms/install-scope.svelte.d.ts +7 -0
- package/dist/components/cms/install-scope.svelte.js +33 -0
- package/dist/components/cms/locale-merge.d.ts +41 -0
- package/dist/components/cms/locale-merge.js +77 -0
- package/dist/components/cms/overlay-sync.d.ts +82 -0
- package/dist/components/cms/overlay-sync.js +76 -0
- package/dist/components/cms/path.d.ts +30 -0
- package/dist/components/cms/path.js +156 -0
- package/dist/components/cms/scope.d.ts +120 -0
- package/dist/components/cms/scope.js +23 -0
- package/dist/index.d.ts +27 -0
- package/dist/index.js +28 -0
- package/dist/srv/README.md +341 -0
- package/dist/srv/api-adapter.d.ts +20 -0
- package/dist/srv/api-adapter.js +178 -0
- package/dist/srv/cms.d.ts +62 -0
- package/dist/srv/cms.js +35 -0
- package/dist/srv/index.d.ts +5 -0
- package/dist/srv/index.js +4 -0
- package/dist/srv/load-cms.d.ts +105 -0
- package/dist/srv/load-cms.js +227 -0
- package/dist/srv/mock-adapter.d.ts +96 -0
- package/dist/srv/mock-adapter.js +171 -0
- package/dist/srv/types.d.ts +114 -0
- package/dist/srv/types.js +1 -0
- package/package.json +116 -0
- package/plugin/README.md +137 -0
- package/plugin/dist/adapter.d.ts +35 -0
- package/plugin/dist/adapter.js +346 -0
- package/plugin/dist/adapter.js.map +1 -0
- package/plugin/dist/build-state.d.ts +10 -0
- package/plugin/dist/build-state.js +26 -0
- package/plugin/dist/build-state.js.map +1 -0
- package/plugin/dist/fallback-shim.js +194 -0
- package/plugin/dist/index.d.ts +56 -0
- package/plugin/dist/index.js +396 -0
- package/plugin/dist/index.js.map +1 -0
- package/plugin/dist/manifest.d.ts +76 -0
- package/plugin/dist/manifest.js +367 -0
- package/plugin/dist/manifest.js.map +1 -0
- package/plugin/dist/media.d.ts +36 -0
- package/plugin/dist/media.js +153 -0
- package/plugin/dist/media.js.map +1 -0
- package/plugin/dist/parse-svelte.d.ts +35 -0
- package/plugin/dist/parse-svelte.js +120 -0
- package/plugin/dist/parse-svelte.js.map +1 -0
- package/plugin/dist/route-tree.d.ts +27 -0
- package/plugin/dist/route-tree.js +69 -0
- package/plugin/dist/route-tree.js.map +1 -0
- package/plugin/dist/transforms.d.ts +42 -0
- package/plugin/dist/transforms.js +95 -0
- package/plugin/dist/transforms.js.map +1 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `chevron-right` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [['path', { d: 'm9 18 6-6-6-6' }]];
|
|
8
|
+
let props = $props();
|
|
9
|
+
</script>
|
|
10
|
+
|
|
11
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `chevron-up` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [['path', { d: 'm18 15-6-6-6 6' }]];
|
|
8
|
+
let props = $props();
|
|
9
|
+
</script>
|
|
10
|
+
|
|
11
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `code` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
['path', { d: 'm16 18 6-6-6-6' }],
|
|
9
|
+
['path', { d: 'm8 6-6 6 6 6' }]
|
|
10
|
+
];
|
|
11
|
+
let props = $props();
|
|
12
|
+
</script>
|
|
13
|
+
|
|
14
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `external-link` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
['path', { d: 'M15 3h6v6' }],
|
|
9
|
+
['path', { d: 'M10 14 21 3' }],
|
|
10
|
+
['path', { d: 'M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6' }]
|
|
11
|
+
];
|
|
12
|
+
let props = $props();
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `file` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
[
|
|
9
|
+
'path',
|
|
10
|
+
{
|
|
11
|
+
d: 'M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z'
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
['path', { d: 'M14 2v5a1 1 0 0 0 1 1h5' }]
|
|
15
|
+
];
|
|
16
|
+
let props = $props();
|
|
17
|
+
</script>
|
|
18
|
+
|
|
19
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `heading-2` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
['path', { d: 'M4 12h8' }],
|
|
9
|
+
['path', { d: 'M4 18V6' }],
|
|
10
|
+
['path', { d: 'M12 18V6' }],
|
|
11
|
+
['path', { d: 'M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1' }]
|
|
12
|
+
];
|
|
13
|
+
let props = $props();
|
|
14
|
+
</script>
|
|
15
|
+
|
|
16
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `heading-3` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
['path', { d: 'M4 12h8' }],
|
|
9
|
+
['path', { d: 'M4 18V6' }],
|
|
10
|
+
['path', { d: 'M12 18V6' }],
|
|
11
|
+
['path', { d: 'M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2' }],
|
|
12
|
+
['path', { d: 'M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2' }]
|
|
13
|
+
];
|
|
14
|
+
let props = $props();
|
|
15
|
+
</script>
|
|
16
|
+
|
|
17
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
/**
|
|
3
|
+
* Minimal SVG renderer for the bar's icon set.
|
|
4
|
+
*
|
|
5
|
+
* The icons are Lucide path data, vendored so the package doesn't carry an
|
|
6
|
+
* icon dependency for the 25 glyphs the bar actually uses. Sibling modules
|
|
7
|
+
* hold one `iconNode` each and render through this component.
|
|
8
|
+
*
|
|
9
|
+
* Icon path data from Lucide (https://lucide.dev) — ISC License,
|
|
10
|
+
* Copyright (c) Lucide Icons and Contributors.
|
|
11
|
+
*/
|
|
12
|
+
import type { SVGAttributes } from 'svelte/elements';
|
|
13
|
+
import type { IconNode } from './types.js';
|
|
14
|
+
|
|
15
|
+
type Props = SVGAttributes<SVGSVGElement> & {
|
|
16
|
+
iconNode: IconNode;
|
|
17
|
+
size?: number | string;
|
|
18
|
+
color?: string;
|
|
19
|
+
strokeWidth?: number | string;
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
let { iconNode, size = 24, color = 'currentColor', strokeWidth = 2, ...rest }: Props = $props();
|
|
23
|
+
</script>
|
|
24
|
+
|
|
25
|
+
<svg
|
|
26
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
27
|
+
viewBox="0 0 24 24"
|
|
28
|
+
fill="none"
|
|
29
|
+
stroke-linecap="round"
|
|
30
|
+
stroke-linejoin="round"
|
|
31
|
+
aria-hidden="true"
|
|
32
|
+
{...rest}
|
|
33
|
+
width={size}
|
|
34
|
+
height={size}
|
|
35
|
+
stroke={color}
|
|
36
|
+
stroke-width={strokeWidth}
|
|
37
|
+
>
|
|
38
|
+
{#each iconNode as [tag, attrs] (tag + JSON.stringify(attrs))}
|
|
39
|
+
<svelte:element this={tag} {...attrs} />
|
|
40
|
+
{/each}
|
|
41
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Minimal SVG renderer for the bar's icon set.
|
|
3
|
+
*
|
|
4
|
+
* The icons are Lucide path data, vendored so the package doesn't carry an
|
|
5
|
+
* icon dependency for the 25 glyphs the bar actually uses. Sibling modules
|
|
6
|
+
* hold one `iconNode` each and render through this component.
|
|
7
|
+
*
|
|
8
|
+
* Icon path data from Lucide (https://lucide.dev) — ISC License,
|
|
9
|
+
* Copyright (c) Lucide Icons and Contributors.
|
|
10
|
+
*/
|
|
11
|
+
import type { SVGAttributes } from 'svelte/elements';
|
|
12
|
+
import type { IconNode } from './types.js';
|
|
13
|
+
type Props = SVGAttributes<SVGSVGElement> & {
|
|
14
|
+
iconNode: IconNode;
|
|
15
|
+
size?: number | string;
|
|
16
|
+
color?: string;
|
|
17
|
+
strokeWidth?: number | string;
|
|
18
|
+
};
|
|
19
|
+
declare const Icon: import("svelte").Component<Props, {}, "">;
|
|
20
|
+
type Icon = ReturnType<typeof Icon>;
|
|
21
|
+
export default Icon;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `images` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
['path', { d: 'm22 11-1.296-1.296a2.4 2.4 0 0 0-3.408 0L11 16' }],
|
|
9
|
+
['path', { d: 'M4 8a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2' }],
|
|
10
|
+
['circle', { cx: '13', cy: '7', r: '1', fill: 'currentColor' }],
|
|
11
|
+
['rect', { x: '8', y: '2', width: '14', height: '14', rx: '2' }]
|
|
12
|
+
];
|
|
13
|
+
let props = $props();
|
|
14
|
+
</script>
|
|
15
|
+
|
|
16
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `italic` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
['line', { x1: '19', x2: '10', y1: '4', y2: '4' }],
|
|
9
|
+
['line', { x1: '14', x2: '5', y1: '20', y2: '20' }],
|
|
10
|
+
['line', { x1: '15', x2: '9', y1: '4', y2: '20' }]
|
|
11
|
+
];
|
|
12
|
+
let props = $props();
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `link-2-off` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
['path', { d: 'M9 17H7A5 5 0 0 1 7 7' }],
|
|
9
|
+
['path', { d: 'M15 7h2a5 5 0 0 1 4 8' }],
|
|
10
|
+
['line', { x1: '8', x2: '12', y1: '12', y2: '12' }],
|
|
11
|
+
['line', { x1: '2', x2: '22', y1: '2', y2: '22' }]
|
|
12
|
+
];
|
|
13
|
+
let props = $props();
|
|
14
|
+
</script>
|
|
15
|
+
|
|
16
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `link` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
['path', { d: 'M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71' }],
|
|
9
|
+
['path', { d: 'M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71' }]
|
|
10
|
+
];
|
|
11
|
+
let props = $props();
|
|
12
|
+
</script>
|
|
13
|
+
|
|
14
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `list-ordered` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
['path', { d: 'M11 5h10' }],
|
|
9
|
+
['path', { d: 'M11 12h10' }],
|
|
10
|
+
['path', { d: 'M11 19h10' }],
|
|
11
|
+
['path', { d: 'M4 4h1v5' }],
|
|
12
|
+
['path', { d: 'M4 9h2' }],
|
|
13
|
+
['path', { d: 'M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02' }]
|
|
14
|
+
];
|
|
15
|
+
let props = $props();
|
|
16
|
+
</script>
|
|
17
|
+
|
|
18
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `list` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
['path', { d: 'M3 5h.01' }],
|
|
9
|
+
['path', { d: 'M3 12h.01' }],
|
|
10
|
+
['path', { d: 'M3 19h.01' }],
|
|
11
|
+
['path', { d: 'M8 5h13' }],
|
|
12
|
+
['path', { d: 'M8 12h13' }],
|
|
13
|
+
['path', { d: 'M8 19h13' }]
|
|
14
|
+
];
|
|
15
|
+
let props = $props();
|
|
16
|
+
</script>
|
|
17
|
+
|
|
18
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `loader-circle` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [['path', { d: 'M21 12a9 9 0 1 1-6.219-8.56' }]];
|
|
8
|
+
let props = $props();
|
|
9
|
+
</script>
|
|
10
|
+
|
|
11
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `minus` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [['path', { d: 'M5 12h14' }]];
|
|
8
|
+
let props = $props();
|
|
9
|
+
</script>
|
|
10
|
+
|
|
11
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `quote` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
[
|
|
9
|
+
'path',
|
|
10
|
+
{
|
|
11
|
+
d: 'M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z'
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
[
|
|
15
|
+
'path',
|
|
16
|
+
{
|
|
17
|
+
d: 'M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z'
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
];
|
|
21
|
+
let props = $props();
|
|
22
|
+
</script>
|
|
23
|
+
|
|
24
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `search` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
['path', { d: 'm21 21-4.34-4.34' }],
|
|
9
|
+
['circle', { cx: '11', cy: '11', r: '8' }]
|
|
10
|
+
];
|
|
11
|
+
let props = $props();
|
|
12
|
+
</script>
|
|
13
|
+
|
|
14
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `trash-2` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
['path', { d: 'M10 11v6' }],
|
|
9
|
+
['path', { d: 'M14 11v6' }],
|
|
10
|
+
['path', { d: 'M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6' }],
|
|
11
|
+
['path', { d: 'M3 6h18' }],
|
|
12
|
+
['path', { d: 'M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2' }]
|
|
13
|
+
];
|
|
14
|
+
let props = $props();
|
|
15
|
+
</script>
|
|
16
|
+
|
|
17
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `triangle-alert` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
['path', { d: 'm21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3' }],
|
|
9
|
+
['path', { d: 'M12 9v4' }],
|
|
10
|
+
['path', { d: 'M12 17h.01' }]
|
|
11
|
+
];
|
|
12
|
+
let props = $props();
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Icon path data shape shared by `icon.svelte` and the vendored glyphs.
|
|
3
|
+
*
|
|
4
|
+
* Icon path data from Lucide (https://lucide.dev) — ISC License,
|
|
5
|
+
* Copyright (c) Lucide Icons and Contributors.
|
|
6
|
+
*/
|
|
7
|
+
export type IconNode = [tag: string, attrs: Record<string, string | number>][];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `undo-2` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
['path', { d: 'M9 14 4 9l5-5' }],
|
|
9
|
+
['path', { d: 'M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11' }]
|
|
10
|
+
];
|
|
11
|
+
let props = $props();
|
|
12
|
+
</script>
|
|
13
|
+
|
|
14
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `upload` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
['path', { d: 'M12 3v12' }],
|
|
9
|
+
['path', { d: 'm17 8-5-5-5 5' }],
|
|
10
|
+
['path', { d: 'M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4' }]
|
|
11
|
+
];
|
|
12
|
+
let props = $props();
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<Icon {iconNode} {...props} />
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// Lucide `x` icon path data (https://lucide.dev) — ISC License,
|
|
3
|
+
// Copyright (c) Lucide Icons and Contributors. See ./types.ts.
|
|
4
|
+
import Icon from './icon.svelte';
|
|
5
|
+
import type { IconNode } from './types.js';
|
|
6
|
+
|
|
7
|
+
const iconNode: IconNode = [
|
|
8
|
+
['path', { d: 'M18 6 6 18' }],
|
|
9
|
+
['path', { d: 'm6 6 12 12' }]
|
|
10
|
+
];
|
|
11
|
+
let props = $props();
|
|
12
|
+
</script>
|
|
13
|
+
|
|
14
|
+
<Icon {iconNode} {...props} />
|