@xleddyl/nuxt-cms 0.1.11 → 0.1.13
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/module.json +1 -1
- package/dist/module.mjs +6 -27
- package/dist/runtime/app/components/cms/Alert.d.vue.ts +18 -0
- package/dist/runtime/app/components/cms/Alert.vue +14 -0
- package/dist/runtime/app/components/cms/Alert.vue.d.ts +18 -0
- package/dist/runtime/app/components/cms/BlocksField.vue +23 -26
- package/dist/runtime/app/components/cms/Button.d.vue.ts +25 -0
- package/dist/runtime/app/components/cms/Button.vue +33 -0
- package/dist/runtime/app/components/cms/Button.vue.d.ts +25 -0
- package/dist/runtime/app/components/cms/ConfirmModal.d.vue.ts +1 -18
- package/dist/runtime/app/components/cms/ConfirmModal.vue +20 -21
- package/dist/runtime/app/components/cms/ConfirmModal.vue.d.ts +1 -18
- package/dist/runtime/app/components/cms/DropdownMenu.d.vue.ts +29 -0
- package/dist/runtime/app/components/cms/DropdownMenu.vue +57 -0
- package/dist/runtime/app/components/cms/DropdownMenu.vue.d.ts +29 -0
- package/dist/runtime/app/components/cms/EmptyState.vue +3 -3
- package/dist/runtime/app/components/cms/EntryForm.vue +9 -22
- package/dist/runtime/app/components/cms/FieldInput.vue +15 -8
- package/dist/runtime/app/components/cms/Form.d.vue.ts +35 -0
- package/dist/runtime/app/components/cms/Form.vue +42 -0
- package/dist/runtime/app/components/cms/Form.vue.d.ts +35 -0
- package/dist/runtime/app/components/cms/FormField.d.vue.ts +21 -0
- package/dist/runtime/app/components/cms/FormField.vue +22 -0
- package/dist/runtime/app/components/cms/FormField.vue.d.ts +21 -0
- package/dist/runtime/app/components/cms/Icon.d.vue.ts +6 -0
- package/dist/runtime/app/components/cms/Icon.vue +18 -0
- package/dist/runtime/app/components/cms/Icon.vue.d.ts +6 -0
- package/dist/runtime/app/components/cms/Input.d.vue.ts +28 -0
- package/dist/runtime/app/components/cms/Input.vue +43 -0
- package/dist/runtime/app/components/cms/Input.vue.d.ts +28 -0
- package/dist/runtime/app/components/cms/JsonField.vue +3 -6
- package/dist/runtime/app/components/cms/MediaField.vue +14 -15
- package/dist/runtime/app/components/cms/MediaGallery.vue +52 -49
- package/dist/runtime/app/components/cms/MediaUpload.vue +9 -8
- package/dist/runtime/app/components/cms/Modal.d.vue.ts +34 -0
- package/dist/runtime/app/components/cms/Modal.vue +54 -0
- package/dist/runtime/app/components/cms/Modal.vue.d.ts +34 -0
- package/dist/runtime/app/components/cms/PageHeader.vue +1 -1
- package/dist/runtime/app/components/cms/Pagination.d.vue.ts +15 -0
- package/dist/runtime/app/components/cms/Pagination.vue +51 -0
- package/dist/runtime/app/components/cms/Pagination.vue.d.ts +15 -0
- package/dist/runtime/app/components/cms/Popover.d.vue.ts +22 -0
- package/dist/runtime/app/components/cms/Popover.vue +27 -0
- package/dist/runtime/app/components/cms/Popover.vue.d.ts +22 -0
- package/dist/runtime/app/components/cms/RelationField.vue +6 -6
- package/dist/runtime/app/components/cms/RichTextField.vue +38 -39
- package/dist/runtime/app/components/cms/Select.d.vue.ts +16 -0
- package/dist/runtime/app/components/cms/Select.vue +19 -0
- package/dist/runtime/app/components/cms/Select.vue.d.ts +16 -0
- package/dist/runtime/app/components/cms/SelectMenu.d.vue.ts +25 -0
- package/dist/runtime/app/components/cms/SelectMenu.vue +110 -0
- package/dist/runtime/app/components/cms/SelectMenu.vue.d.ts +25 -0
- package/dist/runtime/app/components/cms/SlugField.vue +4 -4
- package/dist/runtime/app/components/cms/Switch.d.vue.ts +10 -0
- package/dist/runtime/app/components/cms/Switch.vue +14 -0
- package/dist/runtime/app/components/cms/Switch.vue.d.ts +10 -0
- package/dist/runtime/app/components/cms/Table.d.vue.ts +48 -0
- package/dist/runtime/app/components/cms/Table.vue +47 -0
- package/dist/runtime/app/components/cms/Table.vue.d.ts +48 -0
- package/dist/runtime/app/components/cms/Textarea.d.vue.ts +16 -0
- package/dist/runtime/app/components/cms/Textarea.vue +17 -0
- package/dist/runtime/app/components/cms/Textarea.vue.d.ts +16 -0
- package/dist/runtime/app/components/cms/Toaster.d.vue.ts +3 -0
- package/dist/runtime/app/components/cms/Toaster.vue +42 -0
- package/dist/runtime/app/components/cms/Toaster.vue.d.ts +3 -0
- package/dist/runtime/app/components/cms/TranslatableField.vue +5 -5
- package/dist/runtime/app/composables/cms-confirm.d.ts +8 -0
- package/dist/runtime/app/composables/cms-confirm.js +14 -5
- package/dist/runtime/app/composables/cms-toast.d.ts +13 -0
- package/dist/runtime/app/composables/cms-toast.js +18 -0
- package/dist/runtime/app/layouts/cms-admin.vue +21 -21
- package/dist/runtime/app/middleware/cms-auth.d.ts +1 -1
- package/dist/runtime/app/pages/admin-collection.vue +40 -53
- package/dist/runtime/app/pages/admin-entry.vue +15 -19
- package/dist/runtime/app/pages/admin-login.vue +16 -24
- package/dist/runtime/app/pages/admin-media.vue +2 -3
- package/dist/runtime/app/utils/ui.d.ts +4 -0
- package/dist/runtime/app/utils/ui.js +1 -0
- package/dist/runtime/assets/main.css +1 -1
- package/dist/runtime/assets/svg/academic-cap.svg +3 -0
- package/dist/runtime/assets/svg/adjustments-horizontal.svg +3 -0
- package/dist/runtime/assets/svg/adjustments-vertical.svg +3 -0
- package/dist/runtime/assets/svg/archive-box-arrow-down.svg +3 -0
- package/dist/runtime/assets/svg/archive-box-x-mark.svg +3 -0
- package/dist/runtime/assets/svg/archive-box.svg +3 -0
- package/dist/runtime/assets/svg/arrow-down-circle.svg +3 -0
- package/dist/runtime/assets/svg/arrow-down-left.svg +3 -0
- package/dist/runtime/assets/svg/arrow-down-on-square-stack.svg +3 -0
- package/dist/runtime/assets/svg/arrow-down-on-square.svg +3 -0
- package/dist/runtime/assets/svg/arrow-down-right.svg +3 -0
- package/dist/runtime/assets/svg/arrow-down-tray.svg +3 -0
- package/dist/runtime/assets/svg/arrow-down.svg +3 -0
- package/dist/runtime/assets/svg/arrow-left-circle.svg +3 -0
- package/dist/runtime/assets/svg/arrow-left-end-on-rectangle.svg +3 -0
- package/dist/runtime/assets/svg/arrow-left-on-rectangle.svg +3 -0
- package/dist/runtime/assets/svg/arrow-left-start-on-rectangle.svg +3 -0
- package/dist/runtime/assets/svg/arrow-left.svg +3 -0
- package/dist/runtime/assets/svg/arrow-long-down.svg +3 -0
- package/dist/runtime/assets/svg/arrow-long-left.svg +3 -0
- package/dist/runtime/assets/svg/arrow-long-right.svg +3 -0
- package/dist/runtime/assets/svg/arrow-long-up.svg +3 -0
- package/dist/runtime/assets/svg/arrow-path-rounded-square.svg +3 -0
- package/dist/runtime/assets/svg/arrow-path.svg +3 -0
- package/dist/runtime/assets/svg/arrow-right-circle.svg +3 -0
- package/dist/runtime/assets/svg/arrow-right-end-on-rectangle.svg +3 -0
- package/dist/runtime/assets/svg/arrow-right-on-rectangle.svg +3 -0
- package/dist/runtime/assets/svg/arrow-right-start-on-rectangle.svg +3 -0
- package/dist/runtime/assets/svg/arrow-right.svg +3 -0
- package/dist/runtime/assets/svg/arrow-small-down.svg +3 -0
- package/dist/runtime/assets/svg/arrow-small-left.svg +3 -0
- package/dist/runtime/assets/svg/arrow-small-right.svg +3 -0
- package/dist/runtime/assets/svg/arrow-small-up.svg +3 -0
- package/dist/runtime/assets/svg/arrow-top-right-on-square.svg +3 -0
- package/dist/runtime/assets/svg/arrow-trending-down.svg +3 -0
- package/dist/runtime/assets/svg/arrow-trending-up.svg +3 -0
- package/dist/runtime/assets/svg/arrow-turn-down-left.svg +3 -0
- package/dist/runtime/assets/svg/arrow-turn-down-right.svg +3 -0
- package/dist/runtime/assets/svg/arrow-turn-left-down.svg +3 -0
- package/dist/runtime/assets/svg/arrow-turn-left-up.svg +3 -0
- package/dist/runtime/assets/svg/arrow-turn-right-down.svg +3 -0
- package/dist/runtime/assets/svg/arrow-turn-right-up.svg +3 -0
- package/dist/runtime/assets/svg/arrow-turn-up-left.svg +3 -0
- package/dist/runtime/assets/svg/arrow-turn-up-right.svg +3 -0
- package/dist/runtime/assets/svg/arrow-up-circle.svg +3 -0
- package/dist/runtime/assets/svg/arrow-up-left.svg +3 -0
- package/dist/runtime/assets/svg/arrow-up-on-square-stack.svg +3 -0
- package/dist/runtime/assets/svg/arrow-up-on-square.svg +3 -0
- package/dist/runtime/assets/svg/arrow-up-right.svg +3 -0
- package/dist/runtime/assets/svg/arrow-up-tray.svg +3 -0
- package/dist/runtime/assets/svg/arrow-up.svg +3 -0
- package/dist/runtime/assets/svg/arrow-uturn-down.svg +3 -0
- package/dist/runtime/assets/svg/arrow-uturn-left.svg +3 -0
- package/dist/runtime/assets/svg/arrow-uturn-right.svg +3 -0
- package/dist/runtime/assets/svg/arrow-uturn-up.svg +3 -0
- package/dist/runtime/assets/svg/arrows-pointing-in.svg +3 -0
- package/dist/runtime/assets/svg/arrows-pointing-out.svg +3 -0
- package/dist/runtime/assets/svg/arrows-right-left.svg +3 -0
- package/dist/runtime/assets/svg/arrows-up-down.svg +3 -0
- package/dist/runtime/assets/svg/at-symbol.svg +3 -0
- package/dist/runtime/assets/svg/backspace.svg +3 -0
- package/dist/runtime/assets/svg/backward.svg +3 -0
- package/dist/runtime/assets/svg/banknotes.svg +3 -0
- package/dist/runtime/assets/svg/bars-2.svg +3 -0
- package/dist/runtime/assets/svg/bars-3-bottom-left.svg +3 -0
- package/dist/runtime/assets/svg/bars-3-bottom-right.svg +3 -0
- package/dist/runtime/assets/svg/bars-3-center-left.svg +3 -0
- package/dist/runtime/assets/svg/bars-3.svg +3 -0
- package/dist/runtime/assets/svg/bars-4.svg +3 -0
- package/dist/runtime/assets/svg/bars-arrow-down.svg +3 -0
- package/dist/runtime/assets/svg/bars-arrow-up.svg +3 -0
- package/dist/runtime/assets/svg/battery-0.svg +3 -0
- package/dist/runtime/assets/svg/battery-100.svg +3 -0
- package/dist/runtime/assets/svg/battery-50.svg +3 -0
- package/dist/runtime/assets/svg/beaker.svg +3 -0
- package/dist/runtime/assets/svg/bell-alert.svg +3 -0
- package/dist/runtime/assets/svg/bell-slash.svg +3 -0
- package/dist/runtime/assets/svg/bell-snooze.svg +3 -0
- package/dist/runtime/assets/svg/bell.svg +3 -0
- package/dist/runtime/assets/svg/bold.svg +3 -0
- package/dist/runtime/assets/svg/bolt-slash.svg +3 -0
- package/dist/runtime/assets/svg/bolt.svg +3 -0
- package/dist/runtime/assets/svg/book-open.svg +3 -0
- package/dist/runtime/assets/svg/bookmark-slash.svg +3 -0
- package/dist/runtime/assets/svg/bookmark-square.svg +3 -0
- package/dist/runtime/assets/svg/bookmark.svg +3 -0
- package/dist/runtime/assets/svg/briefcase.svg +3 -0
- package/dist/runtime/assets/svg/bug-ant.svg +3 -0
- package/dist/runtime/assets/svg/building-library.svg +3 -0
- package/dist/runtime/assets/svg/building-office-2.svg +3 -0
- package/dist/runtime/assets/svg/building-office.svg +3 -0
- package/dist/runtime/assets/svg/building-storefront.svg +3 -0
- package/dist/runtime/assets/svg/cake.svg +3 -0
- package/dist/runtime/assets/svg/calculator.svg +3 -0
- package/dist/runtime/assets/svg/calendar-date-range.svg +3 -0
- package/dist/runtime/assets/svg/calendar-days.svg +3 -0
- package/dist/runtime/assets/svg/calendar.svg +3 -0
- package/dist/runtime/assets/svg/camera.svg +4 -0
- package/dist/runtime/assets/svg/chart-bar-square.svg +3 -0
- package/dist/runtime/assets/svg/chart-bar.svg +3 -0
- package/dist/runtime/assets/svg/chart-pie.svg +4 -0
- package/dist/runtime/assets/svg/chat-bubble-bottom-center-text.svg +3 -0
- package/dist/runtime/assets/svg/chat-bubble-bottom-center.svg +3 -0
- package/dist/runtime/assets/svg/chat-bubble-left-ellipsis.svg +3 -0
- package/dist/runtime/assets/svg/chat-bubble-left-right.svg +3 -0
- package/dist/runtime/assets/svg/chat-bubble-left.svg +3 -0
- package/dist/runtime/assets/svg/chat-bubble-oval-left-ellipsis.svg +3 -0
- package/dist/runtime/assets/svg/chat-bubble-oval-left.svg +3 -0
- package/dist/runtime/assets/svg/check-badge.svg +3 -0
- package/dist/runtime/assets/svg/check-circle.svg +3 -0
- package/dist/runtime/assets/svg/check.svg +3 -0
- package/dist/runtime/assets/svg/chevron-double-down.svg +3 -0
- package/dist/runtime/assets/svg/chevron-double-left.svg +3 -0
- package/dist/runtime/assets/svg/chevron-double-right.svg +3 -0
- package/dist/runtime/assets/svg/chevron-double-up.svg +4 -0
- package/dist/runtime/assets/svg/chevron-down.svg +3 -0
- package/dist/runtime/assets/svg/chevron-left.svg +3 -0
- package/dist/runtime/assets/svg/chevron-right.svg +3 -0
- package/dist/runtime/assets/svg/chevron-up-down.svg +3 -0
- package/dist/runtime/assets/svg/chevron-up.svg +3 -0
- package/dist/runtime/assets/svg/circle-stack.svg +3 -0
- package/dist/runtime/assets/svg/clipboard-document-check.svg +3 -0
- package/dist/runtime/assets/svg/clipboard-document-list.svg +3 -0
- package/dist/runtime/assets/svg/clipboard-document.svg +3 -0
- package/dist/runtime/assets/svg/clipboard.svg +3 -0
- package/dist/runtime/assets/svg/clock.svg +3 -0
- package/dist/runtime/assets/svg/cloud-arrow-down.svg +3 -0
- package/dist/runtime/assets/svg/cloud-arrow-up.svg +3 -0
- package/dist/runtime/assets/svg/cloud.svg +3 -0
- package/dist/runtime/assets/svg/code-bracket-square.svg +3 -0
- package/dist/runtime/assets/svg/code-bracket.svg +3 -0
- package/dist/runtime/assets/svg/cog-6-tooth.svg +4 -0
- package/dist/runtime/assets/svg/cog-8-tooth.svg +4 -0
- package/dist/runtime/assets/svg/cog.svg +3 -0
- package/dist/runtime/assets/svg/command-line.svg +3 -0
- package/dist/runtime/assets/svg/computer-desktop.svg +3 -0
- package/dist/runtime/assets/svg/cpu-chip.svg +3 -0
- package/dist/runtime/assets/svg/credit-card.svg +3 -0
- package/dist/runtime/assets/svg/cube-transparent.svg +3 -0
- package/dist/runtime/assets/svg/cube.svg +3 -0
- package/dist/runtime/assets/svg/currency-bangladeshi.svg +3 -0
- package/dist/runtime/assets/svg/currency-dollar.svg +3 -0
- package/dist/runtime/assets/svg/currency-euro.svg +3 -0
- package/dist/runtime/assets/svg/currency-pound.svg +3 -0
- package/dist/runtime/assets/svg/currency-rupee.svg +3 -0
- package/dist/runtime/assets/svg/currency-yen.svg +3 -0
- package/dist/runtime/assets/svg/cursor-arrow-rays.svg +3 -0
- package/dist/runtime/assets/svg/cursor-arrow-ripple.svg +3 -0
- package/dist/runtime/assets/svg/device-phone-mobile.svg +3 -0
- package/dist/runtime/assets/svg/device-tablet.svg +3 -0
- package/dist/runtime/assets/svg/divide.svg +3 -0
- package/dist/runtime/assets/svg/document-arrow-down.svg +3 -0
- package/dist/runtime/assets/svg/document-arrow-up.svg +3 -0
- package/dist/runtime/assets/svg/document-chart-bar.svg +3 -0
- package/dist/runtime/assets/svg/document-check.svg +3 -0
- package/dist/runtime/assets/svg/document-currency-bangladeshi.svg +3 -0
- package/dist/runtime/assets/svg/document-currency-dollar.svg +3 -0
- package/dist/runtime/assets/svg/document-currency-euro.svg +3 -0
- package/dist/runtime/assets/svg/document-currency-pound.svg +3 -0
- package/dist/runtime/assets/svg/document-currency-rupee.svg +3 -0
- package/dist/runtime/assets/svg/document-currency-yen.svg +3 -0
- package/dist/runtime/assets/svg/document-duplicate.svg +3 -0
- package/dist/runtime/assets/svg/document-magnifying-glass.svg +3 -0
- package/dist/runtime/assets/svg/document-minus.svg +3 -0
- package/dist/runtime/assets/svg/document-plus.svg +3 -0
- package/dist/runtime/assets/svg/document-text.svg +3 -0
- package/dist/runtime/assets/svg/document.svg +3 -0
- package/dist/runtime/assets/svg/ellipsis-horizontal-circle.svg +3 -0
- package/dist/runtime/assets/svg/ellipsis-horizontal.svg +3 -0
- package/dist/runtime/assets/svg/ellipsis-vertical.svg +3 -0
- package/dist/runtime/assets/svg/envelope-open.svg +3 -0
- package/dist/runtime/assets/svg/envelope.svg +3 -0
- package/dist/runtime/assets/svg/equals.svg +3 -0
- package/dist/runtime/assets/svg/exclamation-circle.svg +3 -0
- package/dist/runtime/assets/svg/exclamation-triangle.svg +3 -0
- package/dist/runtime/assets/svg/eye-dropper.svg +3 -0
- package/dist/runtime/assets/svg/eye-slash.svg +3 -0
- package/dist/runtime/assets/svg/eye.svg +4 -0
- package/dist/runtime/assets/svg/face-frown.svg +3 -0
- package/dist/runtime/assets/svg/face-smile.svg +3 -0
- package/dist/runtime/assets/svg/film.svg +3 -0
- package/dist/runtime/assets/svg/finger-print.svg +3 -0
- package/dist/runtime/assets/svg/fire.svg +4 -0
- package/dist/runtime/assets/svg/flag.svg +3 -0
- package/dist/runtime/assets/svg/folder-arrow-down.svg +3 -0
- package/dist/runtime/assets/svg/folder-minus.svg +3 -0
- package/dist/runtime/assets/svg/folder-open.svg +3 -0
- package/dist/runtime/assets/svg/folder-plus.svg +3 -0
- package/dist/runtime/assets/svg/folder.svg +3 -0
- package/dist/runtime/assets/svg/forward.svg +3 -0
- package/dist/runtime/assets/svg/funnel.svg +3 -0
- package/dist/runtime/assets/svg/gif.svg +3 -0
- package/dist/runtime/assets/svg/gift-top.svg +3 -0
- package/dist/runtime/assets/svg/gift.svg +3 -0
- package/dist/runtime/assets/svg/globe-alt.svg +3 -0
- package/dist/runtime/assets/svg/globe-americas.svg +3 -0
- package/dist/runtime/assets/svg/globe-asia-australia.svg +3 -0
- package/dist/runtime/assets/svg/globe-europe-africa.svg +3 -0
- package/dist/runtime/assets/svg/h1.svg +3 -0
- package/dist/runtime/assets/svg/h2.svg +3 -0
- package/dist/runtime/assets/svg/h3.svg +3 -0
- package/dist/runtime/assets/svg/hand-raised.svg +3 -0
- package/dist/runtime/assets/svg/hand-thumb-down.svg +3 -0
- package/dist/runtime/assets/svg/hand-thumb-up.svg +3 -0
- package/dist/runtime/assets/svg/hashtag.svg +3 -0
- package/dist/runtime/assets/svg/heart.svg +3 -0
- package/dist/runtime/assets/svg/home-modern.svg +3 -0
- package/dist/runtime/assets/svg/home.svg +3 -0
- package/dist/runtime/assets/svg/identification.svg +3 -0
- package/dist/runtime/assets/svg/inbox-arrow-down.svg +3 -0
- package/dist/runtime/assets/svg/inbox-stack.svg +3 -0
- package/dist/runtime/assets/svg/inbox.svg +3 -0
- package/dist/runtime/assets/svg/information-circle.svg +3 -0
- package/dist/runtime/assets/svg/italic.svg +3 -0
- package/dist/runtime/assets/svg/key.svg +3 -0
- package/dist/runtime/assets/svg/language.svg +3 -0
- package/dist/runtime/assets/svg/lifebuoy.svg +3 -0
- package/dist/runtime/assets/svg/light-bulb.svg +3 -0
- package/dist/runtime/assets/svg/link-slash.svg +3 -0
- package/dist/runtime/assets/svg/link.svg +3 -0
- package/dist/runtime/assets/svg/list-bullet.svg +3 -0
- package/dist/runtime/assets/svg/lock-closed.svg +3 -0
- package/dist/runtime/assets/svg/lock-open.svg +3 -0
- package/dist/runtime/assets/svg/magnifying-glass-circle.svg +3 -0
- package/dist/runtime/assets/svg/magnifying-glass-minus.svg +3 -0
- package/dist/runtime/assets/svg/magnifying-glass-plus.svg +3 -0
- package/dist/runtime/assets/svg/magnifying-glass.svg +3 -0
- package/dist/runtime/assets/svg/map-pin.svg +4 -0
- package/dist/runtime/assets/svg/map.svg +3 -0
- package/dist/runtime/assets/svg/megaphone.svg +3 -0
- package/dist/runtime/assets/svg/microphone.svg +3 -0
- package/dist/runtime/assets/svg/minus-circle.svg +3 -0
- package/dist/runtime/assets/svg/minus-small.svg +3 -0
- package/dist/runtime/assets/svg/minus.svg +3 -0
- package/dist/runtime/assets/svg/moon.svg +3 -0
- package/dist/runtime/assets/svg/musical-note.svg +3 -0
- package/dist/runtime/assets/svg/newspaper.svg +3 -0
- package/dist/runtime/assets/svg/no-symbol.svg +3 -0
- package/dist/runtime/assets/svg/numbered-list.svg +3 -0
- package/dist/runtime/assets/svg/paint-brush.svg +3 -0
- package/dist/runtime/assets/svg/paper-airplane.svg +3 -0
- package/dist/runtime/assets/svg/paper-clip.svg +3 -0
- package/dist/runtime/assets/svg/pause-circle.svg +3 -0
- package/dist/runtime/assets/svg/pause.svg +3 -0
- package/dist/runtime/assets/svg/pencil-square.svg +3 -0
- package/dist/runtime/assets/svg/pencil.svg +3 -0
- package/dist/runtime/assets/svg/percent-badge.svg +3 -0
- package/dist/runtime/assets/svg/phone-arrow-down-left.svg +3 -0
- package/dist/runtime/assets/svg/phone-arrow-up-right.svg +3 -0
- package/dist/runtime/assets/svg/phone-x-mark.svg +3 -0
- package/dist/runtime/assets/svg/phone.svg +3 -0
- package/dist/runtime/assets/svg/photo.svg +3 -0
- package/dist/runtime/assets/svg/play-circle.svg +4 -0
- package/dist/runtime/assets/svg/play-pause.svg +3 -0
- package/dist/runtime/assets/svg/play.svg +3 -0
- package/dist/runtime/assets/svg/plus-circle.svg +3 -0
- package/dist/runtime/assets/svg/plus-small.svg +3 -0
- package/dist/runtime/assets/svg/plus.svg +3 -0
- package/dist/runtime/assets/svg/power.svg +3 -0
- package/dist/runtime/assets/svg/presentation-chart-bar.svg +3 -0
- package/dist/runtime/assets/svg/presentation-chart-line.svg +3 -0
- package/dist/runtime/assets/svg/printer.svg +3 -0
- package/dist/runtime/assets/svg/puzzle-piece.svg +3 -0
- package/dist/runtime/assets/svg/qr-code.svg +4 -0
- package/dist/runtime/assets/svg/question-mark-circle.svg +3 -0
- package/dist/runtime/assets/svg/queue-list.svg +3 -0
- package/dist/runtime/assets/svg/radio.svg +3 -0
- package/dist/runtime/assets/svg/receipt-percent.svg +3 -0
- package/dist/runtime/assets/svg/receipt-refund.svg +3 -0
- package/dist/runtime/assets/svg/rectangle-group.svg +3 -0
- package/dist/runtime/assets/svg/rectangle-stack.svg +3 -0
- package/dist/runtime/assets/svg/rocket-launch.svg +3 -0
- package/dist/runtime/assets/svg/rss.svg +3 -0
- package/dist/runtime/assets/svg/scale.svg +3 -0
- package/dist/runtime/assets/svg/scissors.svg +3 -0
- package/dist/runtime/assets/svg/server-stack.svg +3 -0
- package/dist/runtime/assets/svg/server.svg +3 -0
- package/dist/runtime/assets/svg/share.svg +3 -0
- package/dist/runtime/assets/svg/shield-check.svg +3 -0
- package/dist/runtime/assets/svg/shield-exclamation.svg +3 -0
- package/dist/runtime/assets/svg/shopping-bag.svg +3 -0
- package/dist/runtime/assets/svg/shopping-cart.svg +3 -0
- package/dist/runtime/assets/svg/signal-slash.svg +3 -0
- package/dist/runtime/assets/svg/signal.svg +3 -0
- package/dist/runtime/assets/svg/slash.svg +3 -0
- package/dist/runtime/assets/svg/sparkles.svg +3 -0
- package/dist/runtime/assets/svg/speaker-wave.svg +3 -0
- package/dist/runtime/assets/svg/speaker-x-mark.svg +3 -0
- package/dist/runtime/assets/svg/square-2-stack.svg +3 -0
- package/dist/runtime/assets/svg/square-3-stack-3d.svg +3 -0
- package/dist/runtime/assets/svg/squares-2x2.svg +3 -0
- package/dist/runtime/assets/svg/squares-plus.svg +3 -0
- package/dist/runtime/assets/svg/star.svg +3 -0
- package/dist/runtime/assets/svg/stop-circle.svg +4 -0
- package/dist/runtime/assets/svg/stop.svg +3 -0
- package/dist/runtime/assets/svg/strikethrough.svg +3 -0
- package/dist/runtime/assets/svg/sun.svg +3 -0
- package/dist/runtime/assets/svg/swatch.svg +3 -0
- package/dist/runtime/assets/svg/table-cells.svg +3 -0
- package/dist/runtime/assets/svg/tag.svg +4 -0
- package/dist/runtime/assets/svg/ticket.svg +3 -0
- package/dist/runtime/assets/svg/trash.svg +3 -0
- package/dist/runtime/assets/svg/trophy.svg +3 -0
- package/dist/runtime/assets/svg/truck.svg +3 -0
- package/dist/runtime/assets/svg/tv.svg +3 -0
- package/dist/runtime/assets/svg/underline.svg +3 -0
- package/dist/runtime/assets/svg/user-circle.svg +3 -0
- package/dist/runtime/assets/svg/user-group.svg +3 -0
- package/dist/runtime/assets/svg/user-minus.svg +3 -0
- package/dist/runtime/assets/svg/user-plus.svg +3 -0
- package/dist/runtime/assets/svg/user.svg +3 -0
- package/dist/runtime/assets/svg/users.svg +3 -0
- package/dist/runtime/assets/svg/variable.svg +3 -0
- package/dist/runtime/assets/svg/video-camera-slash.svg +3 -0
- package/dist/runtime/assets/svg/video-camera.svg +3 -0
- package/dist/runtime/assets/svg/view-columns.svg +3 -0
- package/dist/runtime/assets/svg/viewfinder-circle.svg +3 -0
- package/dist/runtime/assets/svg/wallet.svg +3 -0
- package/dist/runtime/assets/svg/wifi.svg +3 -0
- package/dist/runtime/assets/svg/window.svg +3 -0
- package/dist/runtime/assets/svg/wrench-screwdriver.svg +3 -0
- package/dist/runtime/assets/svg/wrench.svg +4 -0
- package/dist/runtime/assets/svg/x-circle.svg +3 -0
- package/dist/runtime/assets/svg/x-mark.svg +3 -0
- package/dist/runtime/shared/index.js +1 -1
- package/package.json +4 -3
- package/dist/runtime/app/i18n/en.json +0 -123
- package/dist/runtime/app/i18n/it.json +0 -123
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 3v11.25A2.25 2.25 0 0 0 6 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0 1 18 16.5h-2.25m-7.5 0h7.5m-7.5 0-1 3m8.5-3 1 3m0 0 .5 1.5m-.5-1.5h-9.5m0 0-.5 1.5M9 11.25v1.5M12 9v3.75m3-6v6"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 3v11.25A2.25 2.25 0 0 0 6 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0 1 18 16.5h-2.25m-7.5 0h7.5m-7.5 0-1 3m8.5-3 1 3m0 0 .5 1.5m-.5-1.5h-9.5m0 0-.5 1.5m.75-9 3-3 2.148 2.148A12.061 12.061 0 0 1 16.5 7.605"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M6.72 13.829c-.24.03-.48.062-.72.096m.72-.096a42.415 42.415 0 0 1 10.56 0m-10.56 0L6.34 18m10.94-4.171c.24.03.48.062.72.096m-.72-.096L17.66 18m0 0 .229 2.523a1.125 1.125 0 0 1-1.12 1.227H7.231c-.662 0-1.18-.568-1.12-1.227L6.34 18m11.318 0h1.091A2.25 2.25 0 0 0 21 15.75V9.456c0-1.081-.768-2.015-1.837-2.175a48.055 48.055 0 0 0-1.913-.247M6.34 18H5.25A2.25 2.25 0 0 1 3 15.75V9.456c0-1.081.768-2.015 1.837-2.175a48.041 48.041 0 0 1 1.913-.247m10.5 0a48.536 48.536 0 0 0-10.5 0m10.5 0V3.375c0-.621-.504-1.125-1.125-1.125h-8.25c-.621 0-1.125.504-1.125 1.125v3.659M18 10.5h.008v.008H18V10.5Zm-3 0h.008v.008H15V10.5Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M14.25 6.087c0-.355.186-.676.401-.959.221-.29.349-.634.349-1.003 0-1.036-1.007-1.875-2.25-1.875s-2.25.84-2.25 1.875c0 .369.128.713.349 1.003.215.283.401.604.401.959v0a.64.64 0 0 1-.657.643 48.39 48.39 0 0 1-4.163-.3c.186 1.613.293 3.25.315 4.907a.656.656 0 0 1-.658.663v0c-.355 0-.676-.186-.959-.401a1.647 1.647 0 0 0-1.003-.349c-1.036 0-1.875 1.007-1.875 2.25s.84 2.25 1.875 2.25c.369 0 .713-.128 1.003-.349.283-.215.604-.401.959-.401v0c.31 0 .555.26.532.57a48.039 48.039 0 0 1-.642 5.056c1.518.19 3.058.309 4.616.354a.64.64 0 0 0 .657-.643v0c0-.355-.186-.676-.401-.959a1.647 1.647 0 0 1-.349-1.003c0-1.035 1.008-1.875 2.25-1.875 1.243 0 2.25.84 2.25 1.875 0 .369-.128.713-.349 1.003-.215.283-.4.604-.4.959v0c0 .333.277.599.61.58a48.1 48.1 0 0 0 5.427-.63 48.05 48.05 0 0 0 .582-4.717.532.532 0 0 0-.533-.57v0c-.355 0-.676.186-.959.401-.29.221-.634.349-1.003.349-1.035 0-1.875-1.007-1.875-2.25s.84-2.25 1.875-2.25c.37 0 .713.128 1.003.349.283.215.604.401.96.401v0a.656.656 0 0 0 .658-.663 48.422 48.422 0 0 0-.37-5.36c-1.886.342-3.81.574-5.766.689a.578.578 0 0 1-.61-.58v0Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 4.875c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5A1.125 1.125 0 0 1 3.75 9.375v-4.5ZM3.75 14.625c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5a1.125 1.125 0 0 1-1.125-1.125v-4.5ZM13.5 4.875c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5A1.125 1.125 0 0 1 13.5 9.375v-4.5Z"/>
|
|
3
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M6.75 6.75h.75v.75h-.75v-.75ZM6.75 16.5h.75v.75h-.75v-.75ZM16.5 6.75h.75v.75h-.75v-.75ZM13.5 13.5h.75v.75h-.75v-.75ZM13.5 19.5h.75v.75h-.75v-.75ZM19.5 13.5h.75v.75h-.75v-.75ZM19.5 19.5h.75v.75h-.75v-.75ZM16.5 16.5h.75v.75h-.75v-.75Z"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M9.879 7.519c1.171-1.025 3.071-1.025 4.242 0 1.172 1.025 1.172 2.687 0 3.712-.203.179-.43.326-.67.442-.745.361-1.45.999-1.45 1.827v.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9 5.25h.008v.008H12v-.008Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 12h16.5m-16.5 3.75h16.5M3.75 19.5h16.5M5.625 4.5h12.75a1.875 1.875 0 0 1 0 3.75H5.625a1.875 1.875 0 0 1 0-3.75Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m3.75 7.5 16.5-4.125M12 6.75c-2.708 0-5.363.224-7.948.655C2.999 7.58 2.25 8.507 2.25 9.574v9.176A2.25 2.25 0 0 0 4.5 21h15a2.25 2.25 0 0 0 2.25-2.25V9.574c0-1.067-.75-1.994-1.802-2.169A48.329 48.329 0 0 0 12 6.75Zm-1.683 6.443-.005.005-.006-.005.006-.005.005.005Zm-.005 2.127-.005-.006.005-.005.005.005-.005.005Zm-2.116-.006-.005.006-.006-.006.005-.005.006.005Zm-.005-2.116-.006-.005.006-.005.005.005-.005.005ZM9.255 10.5v.008h-.008V10.5h.008Zm3.249 1.88-.007.004-.003-.007.006-.003.004.006Zm-1.38 5.126-.003-.006.006-.004.004.007-.006.003Zm.007-6.501-.003.006-.007-.003.004-.007.006.004Zm1.37 5.129-.007-.004.004-.006.006.003-.004.007Zm.504-1.877h-.008v-.007h.008v.007ZM9.255 18v.008h-.008V18h.008Zm-3.246-1.87-.007.004L6 16.127l.006-.003.004.006Zm1.366-5.119-.004-.006.006-.004.004.007-.006.003ZM7.38 17.5l-.003.006-.007-.003.004-.007.006.004Zm-1.376-5.116L6 12.38l.003-.007.007.004-.004.007Zm-.5 1.873h-.008v-.007h.008v.007ZM17.25 12.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Zm0 4.5a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m9 14.25 6-6m4.5-3.493V21.75l-3.75-1.5-3.75 1.5-3.75-1.5-3.75 1.5V4.757c0-1.108.806-2.057 1.907-2.185a48.507 48.507 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185ZM9.75 9h.008v.008H9.75V9Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm4.125 4.5h.008v.008h-.008V13.5Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 9.75h4.875a2.625 2.625 0 0 1 0 5.25H12M8.25 9.75 10.5 7.5M8.25 9.75 10.5 12m9-7.243V21.75l-3.75-1.5-3.75 1.5-3.75-1.5-3.75 1.5V4.757c0-1.108.806-2.057 1.907-2.185a48.507 48.507 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 7.125C2.25 6.504 2.754 6 3.375 6h6c.621 0 1.125.504 1.125 1.125v3.75c0 .621-.504 1.125-1.125 1.125h-6a1.125 1.125 0 0 1-1.125-1.125v-3.75ZM14.25 8.625c0-.621.504-1.125 1.125-1.125h5.25c.621 0 1.125.504 1.125 1.125v8.25c0 .621-.504 1.125-1.125 1.125h-5.25a1.125 1.125 0 0 1-1.125-1.125v-8.25ZM3.75 16.125c0-.621.504-1.125 1.125-1.125h5.25c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125h-5.25a1.125 1.125 0 0 1-1.125-1.125v-2.25Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M6 6.878V6a2.25 2.25 0 0 1 2.25-2.25h7.5A2.25 2.25 0 0 1 18 6v.878m-12 0c.235-.083.487-.128.75-.128h10.5c.263 0 .515.045.75.128m-12 0A2.25 2.25 0 0 0 4.5 9v.878m13.5-3A2.25 2.25 0 0 1 19.5 9v.878m0 0a2.246 2.246 0 0 0-.75-.128H5.25c-.263 0-.515.045-.75.128m15 0A2.25 2.25 0 0 1 21 12v6a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 18v-6c0-.98.626-1.813 1.5-2.122"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M15.59 14.37a6 6 0 0 1-5.84 7.38v-4.8m5.84-2.58a14.98 14.98 0 0 0 6.16-12.12A14.98 14.98 0 0 0 9.631 8.41m5.96 5.96a14.926 14.926 0 0 1-5.841 2.58m-.119-8.54a6 6 0 0 0-7.381 5.84h4.8m2.581-5.84a14.927 14.927 0 0 0-2.58 5.84m2.699 2.7c-.103.021-.207.041-.311.06a15.09 15.09 0 0 1-2.448-2.448 14.9 14.9 0 0 1 .06-.312m-2.24 2.39a4.493 4.493 0 0 0-1.757 4.306 4.493 4.493 0 0 0 4.306-1.758M16.5 9a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M12.75 19.5v-.75a7.5 7.5 0 0 0-7.5-7.5H4.5m0-6.75h.75c7.87 0 14.25 6.38 14.25 14.25v.75M6 18.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M12 3v17.25m0 0c-1.472 0-2.882.265-4.185.75M12 20.25c1.472 0 2.882.265 4.185.75M18.75 4.97A48.416 48.416 0 0 0 12 4.5c-2.291 0-4.545.16-6.75.47m13.5 0c1.01.143 2.01.317 3 .52m-3-.52 2.62 10.726c.122.499-.106 1.028-.589 1.202a5.988 5.988 0 0 1-2.031.352 5.988 5.988 0 0 1-2.031-.352c-.483-.174-.711-.703-.59-1.202L18.75 4.971Zm-16.5.52c.99-.203 1.99-.377 3-.52m0 0 2.62 10.726c.122.499-.106 1.028-.589 1.202a5.989 5.989 0 0 1-2.031.352 5.989 5.989 0 0 1-2.031-.352c-.483-.174-.711-.703-.59-1.202L5.25 4.971Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m7.848 8.25 1.536.887M7.848 8.25a3 3 0 1 1-5.196-3 3 3 0 0 1 5.196 3Zm1.536.887a2.165 2.165 0 0 1 1.083 1.839c.005.351.054.695.14 1.024M9.384 9.137l2.077 1.199M7.848 15.75l1.536-.887m-1.536.887a3 3 0 1 1-5.196 3 3 3 0 0 1 5.196-3Zm1.536-.887a2.165 2.165 0 0 0 1.083-1.838c.005-.352.054-.695.14-1.025m-1.223 2.863 2.077-1.199m0-3.328a4.323 4.323 0 0 1 2.068-1.379l5.325-1.628a4.5 4.5 0 0 1 2.48-.044l.803.215-7.794 4.5m-2.882-1.664A4.33 4.33 0 0 0 10.607 12m3.736 0 7.794 4.5-.802.215a4.5 4.5 0 0 1-2.48-.043l-5.326-1.629a4.324 4.324 0 0 1-2.068-1.379M14.343 12l-2.882 1.664"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M5.25 14.25h13.5m-13.5 0a3 3 0 0 1-3-3m3 3a3 3 0 1 0 0 6h13.5a3 3 0 1 0 0-6m-16.5-3a3 3 0 0 1 3-3h13.5a3 3 0 0 1 3 3m-19.5 0a4.5 4.5 0 0 1 .9-2.7L5.737 5.1a3.375 3.375 0 0 1 2.7-1.35h7.126c1.062 0 2.062.5 2.7 1.35l2.587 3.45a4.5 4.5 0 0 1 .9 2.7m0 0a3 3 0 0 1-3 3m0 3h.008v.008h-.008v-.008Zm0-6h.008v.008h-.008v-.008Zm-3 6h.008v.008h-.008v-.008Zm0-6h.008v.008h-.008v-.008Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M21.75 17.25v-.228a4.5 4.5 0 0 0-.12-1.03l-2.268-9.64a3.375 3.375 0 0 0-3.285-2.602H7.923a3.375 3.375 0 0 0-3.285 2.602l-2.268 9.64a4.5 4.5 0 0 0-.12 1.03v.228m19.5 0a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3m19.5 0a3 3 0 0 0-3-3H5.25a3 3 0 0 0-3 3m16.5 0h.008v.008h-.008v-.008Zm-3 0h.008v.008h-.008v-.008Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M7.217 10.907a2.25 2.25 0 1 0 0 2.186m0-2.186c.18.324.283.696.283 1.093s-.103.77-.283 1.093m0-2.186 9.566-5.314m-9.566 7.5 9.566 5.314m0 0a2.25 2.25 0 1 0 3.935 2.186 2.25 2.25 0 0 0-3.935-2.186Zm0-12.814a2.25 2.25 0 1 0 3.933-2.185 2.25 2.25 0 0 0-3.933 2.185Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75 11.25 15 15 9.75m-3-7.036A11.959 11.959 0 0 1 3.598 6 11.99 11.99 0 0 0 3 9.749c0 5.592 3.824 10.29 9 11.623 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M12 9v3.75m0-10.036A11.959 11.959 0 0 1 3.598 6 11.99 11.99 0 0 0 3 9.75c0 5.592 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.57-.598-3.75h-.152c-3.196 0-6.1-1.25-8.25-3.286Zm0 13.036h.008v.008H12v-.008Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 10.5V6a3.75 3.75 0 1 0-7.5 0v4.5m11.356-1.993 1.263 12c.07.665-.45 1.243-1.119 1.243H4.25a1.125 1.125 0 0 1-1.12-1.243l1.264-12A1.125 1.125 0 0 1 5.513 7.5h12.974c.576 0 1.059.435 1.119 1.007ZM8.625 10.5a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm7.5 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m3 3 8.735 8.735m0 0a.374.374 0 1 1 .53.53m-.53-.53.53.53m0 0L21 21M14.652 9.348a3.75 3.75 0 0 1 0 5.304m2.121-7.425a6.75 6.75 0 0 1 0 9.546m2.121-11.667c3.808 3.807 3.808 9.98 0 13.788m-9.546-4.242a3.733 3.733 0 0 1-1.06-2.122m-1.061 4.243a6.75 6.75 0 0 1-1.625-6.929m-.496 9.05c-3.068-3.067-3.664-7.67-1.79-11.334M12 12h.008v.008H12V12Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M9.348 14.652a3.75 3.75 0 0 1 0-5.304m5.304 0a3.75 3.75 0 0 1 0 5.304m-7.425 2.121a6.75 6.75 0 0 1 0-9.546m9.546 0a6.75 6.75 0 0 1 0 9.546M5.106 18.894c-3.808-3.807-3.808-9.98 0-13.788m13.788 0c3.808 3.807 3.808 9.98 0 13.788M12 12h.008v.008H12V12Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M9.813 15.904 9 18.75l-.813-2.846a4.5 4.5 0 0 0-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 0 0 3.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 0 0 3.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 0 0-3.09 3.09ZM18.259 8.715 18 9.75l-.259-1.035a3.375 3.375 0 0 0-2.455-2.456L14.25 6l1.036-.259a3.375 3.375 0 0 0 2.455-2.456L18 2.25l.259 1.035a3.375 3.375 0 0 0 2.456 2.456L21.75 6l-1.035.259a3.375 3.375 0 0 0-2.456 2.456ZM16.894 20.567 16.5 21.75l-.394-1.183a2.25 2.25 0 0 0-1.423-1.423L13.5 18.75l1.183-.394a2.25 2.25 0 0 0 1.423-1.423l.394-1.183.394 1.183a2.25 2.25 0 0 0 1.423 1.423l1.183.394-1.183.394a2.25 2.25 0 0 0-1.423 1.423Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M19.114 5.636a9 9 0 0 1 0 12.728M16.463 8.288a5.25 5.25 0 0 1 0 7.424M6.75 8.25l4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9.009 9.009 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25H6.75Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M17.25 9.75 19.5 12m0 0 2.25 2.25M19.5 12l2.25-2.25M19.5 12l-2.25 2.25m-10.5-6 4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9.009 9.009 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25H6.75Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 0 0-2.25-2.25H6A2.25 2.25 0 0 0 3.75 6v8.25A2.25 2.25 0 0 0 6 16.5h2.25m8.25-8.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-7.5A2.25 2.25 0 0 1 8.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 0 0-2.25 2.25v6"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M6.429 9.75 2.25 12l4.179 2.25m0-4.5 5.571 3 5.571-3m-11.142 0L2.25 7.5 12 2.25l9.75 5.25-4.179 2.25m0 0L21.75 12l-4.179 2.25m0 0 4.179 2.25L12 21.75 2.25 16.5l4.179-2.25m11.142 0-5.571 3-5.571-3"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6A2.25 2.25 0 0 1 6 3.75h2.25A2.25 2.25 0 0 1 10.5 6v2.25a2.25 2.25 0 0 1-2.25 2.25H6a2.25 2.25 0 0 1-2.25-2.25V6ZM3.75 15.75A2.25 2.25 0 0 1 6 13.5h2.25a2.25 2.25 0 0 1 2.25 2.25V18a2.25 2.25 0 0 1-2.25 2.25H6A2.25 2.25 0 0 1 3.75 18v-2.25ZM13.5 6a2.25 2.25 0 0 1 2.25-2.25H18A2.25 2.25 0 0 1 20.25 6v2.25A2.25 2.25 0 0 1 18 10.5h-2.25a2.25 2.25 0 0 1-2.25-2.25V6ZM13.5 15.75a2.25 2.25 0 0 1 2.25-2.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-2.25A2.25 2.25 0 0 1 13.5 18v-2.25Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M13.5 16.875h3.375m0 0h3.375m-3.375 0V13.5m0 3.375v3.375M6 10.5h2.25a2.25 2.25 0 0 0 2.25-2.25V6a2.25 2.25 0 0 0-2.25-2.25H6A2.25 2.25 0 0 0 3.75 6v2.25A2.25 2.25 0 0 0 6 10.5Zm0 9.75h2.25A2.25 2.25 0 0 0 10.5 18v-2.25a2.25 2.25 0 0 0-2.25-2.25H6a2.25 2.25 0 0 0-2.25 2.25V18A2.25 2.25 0 0 0 6 20.25Zm9.75-9.75H18a2.25 2.25 0 0 0 2.25-2.25V6A2.25 2.25 0 0 0 18 3.75h-2.25A2.25 2.25 0 0 0 13.5 6v2.25a2.25 2.25 0 0 0 2.25 2.25Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M11.48 3.499a.562.562 0 0 1 1.04 0l2.125 5.111a.563.563 0 0 0 .475.345l5.518.442c.499.04.701.663.321.988l-4.204 3.602a.563.563 0 0 0-.182.557l1.285 5.385a.562.562 0 0 1-.84.61l-4.725-2.885a.562.562 0 0 0-.586 0L6.982 20.54a.562.562 0 0 1-.84-.61l1.285-5.386a.562.562 0 0 0-.182-.557l-4.204-3.602a.562.562 0 0 1 .321-.988l5.518-.442a.563.563 0 0 0 .475-.345L11.48 3.5Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"/>
|
|
3
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M9 9.563C9 9.252 9.252 9 9.563 9h4.874c.311 0 .563.252.563.563v4.874c0 .311-.252.563-.563.563H9.564A.562.562 0 0 1 9 14.437V9.564Z"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M5.25 7.5A2.25 2.25 0 0 1 7.5 5.25h9a2.25 2.25 0 0 1 2.25 2.25v9a2.25 2.25 0 0 1-2.25 2.25h-9a2.25 2.25 0 0 1-2.25-2.25v-9Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M12 12a8.912 8.912 0 0 1-.318-.079c-1.585-.424-2.904-1.247-3.76-2.236-.873-1.009-1.265-2.19-.968-3.301.59-2.2 3.663-3.29 6.863-2.432A8.186 8.186 0 0 1 16.5 5.21M6.42 17.81c.857.99 2.176 1.812 3.761 2.237 3.2.858 6.274-.23 6.863-2.431.233-.868.044-1.779-.465-2.617M3.75 12h16.5"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M12 3v2.25m6.364.386-1.591 1.591M21 12h-2.25m-.386 6.364-1.591-1.591M12 18.75V21m-4.773-4.227-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M4.098 19.902a3.75 3.75 0 0 0 5.304 0l6.401-6.402M6.75 21A3.75 3.75 0 0 1 3 17.25V4.125C3 3.504 3.504 3 4.125 3h5.25c.621 0 1.125.504 1.125 1.125v4.072M6.75 21a3.75 3.75 0 0 0 3.75-3.75V8.197M6.75 21h13.125c.621 0 1.125-.504 1.125-1.125v-5.25c0-.621-.504-1.125-1.125-1.125h-4.072M10.5 8.197l2.88-2.88c.438-.439 1.15-.439 1.59 0l3.712 3.713c.44.44.44 1.152 0 1.59l-2.879 2.88M6.75 17.25h.008v.008H6.75v-.008Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M3.375 19.5h17.25m-17.25 0a1.125 1.125 0 0 1-1.125-1.125M3.375 19.5h7.5c.621 0 1.125-.504 1.125-1.125m-9.75 0V5.625m0 12.75v-1.5c0-.621.504-1.125 1.125-1.125m18.375 2.625V5.625m0 12.75c0 .621-.504 1.125-1.125 1.125m1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125m0 3.75h-7.5A1.125 1.125 0 0 1 12 18.375m9.75-12.75c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125m19.5 0v1.5c0 .621-.504 1.125-1.125 1.125M2.25 5.625v1.5c0 .621.504 1.125 1.125 1.125m0 0h17.25m-17.25 0h7.5c.621 0 1.125.504 1.125 1.125M3.375 8.25c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125m17.25-3.75h-7.5c-.621 0-1.125.504-1.125 1.125m8.625-1.125c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h7.5m-7.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125M12 10.875v-1.5m0 1.5c0 .621-.504 1.125-1.125 1.125M12 10.875c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125M13.125 12h7.5m-7.5 0c-.621 0-1.125.504-1.125 1.125M20.625 12c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h7.5M12 14.625v-1.5m0 1.5c0 .621-.504 1.125-1.125 1.125M12 14.625c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125m0 1.5v-1.5m0 0c0-.621.504-1.125 1.125-1.125m0 0h7.5"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M9.568 3H5.25A2.25 2.25 0 0 0 3 5.25v4.318c0 .597.237 1.17.659 1.591l9.581 9.581c.699.699 1.78.872 2.607.33a18.095 18.095 0 0 0 5.223-5.223c.542-.827.369-1.908-.33-2.607L11.16 3.66A2.25 2.25 0 0 0 9.568 3Z"/>
|
|
3
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M6 6h.008v.008H6V6Z"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M16.5 6v.75m0 3v.75m0 3v.75m0 3V18m-9-5.25h5.25M7.5 15h3M3.375 5.25c-.621 0-1.125.504-1.125 1.125v3.026a2.999 2.999 0 0 1 0 5.198v3.026c0 .621.504 1.125 1.125 1.125h17.25c.621 0 1.125-.504 1.125-1.125v-3.026a2.999 2.999 0 0 1 0-5.198V6.375c0-.621-.504-1.125-1.125-1.125H3.375Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m14.74 9-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 0 1-2.244 2.077H8.084a2.25 2.25 0 0 1-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 0 0-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 0 1 3.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 0 0-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 0 0-7.5 0"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M16.5 18.75h-9m9 0a3 3 0 0 1 3 3h-15a3 3 0 0 1 3-3m9 0v-3.375c0-.621-.503-1.125-1.125-1.125h-.871M7.5 18.75v-3.375c0-.621.504-1.125 1.125-1.125h.872m5.007 0H9.497m5.007 0a7.454 7.454 0 0 1-.982-3.172M9.497 14.25a7.454 7.454 0 0 0 .981-3.172M5.25 4.236c-.982.143-1.954.317-2.916.52A6.003 6.003 0 0 0 7.73 9.728M5.25 4.236V4.5c0 2.108.966 3.99 2.48 5.228M5.25 4.236V2.721C7.456 2.41 9.71 2.25 12 2.25c2.291 0 4.545.16 6.75.47v1.516M7.73 9.728a6.726 6.726 0 0 0 2.748 1.35m8.272-6.842V4.5c0 2.108-.966 3.99-2.48 5.228m2.48-5.492a46.32 46.32 0 0 1 2.916.52 6.003 6.003 0 0 1-5.395 4.972m0 0a6.726 6.726 0 0 1-2.749 1.35m0 0a6.772 6.772 0 0 1-3.044 0"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 18.75a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h6m-9 0H3.375a1.125 1.125 0 0 1-1.125-1.125V14.25m17.25 4.5a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h1.125c.621 0 1.129-.504 1.09-1.124a17.902 17.902 0 0 0-3.213-9.193 2.056 2.056 0 0 0-1.58-.86H14.25M16.5 18.75h-2.25m0-11.177v-.958c0-.568-.422-1.048-.987-1.106a48.554 48.554 0 0 0-10.026 0 1.106 1.106 0 0 0-.987 1.106v7.635m12-6.677v6.677m0 4.5v-4.5m0 0h-12"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M6 20.25h12m-7.5-3v3m3-3v3m-10.125-3h17.25c.621 0 1.125-.504 1.125-1.125V4.875c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M17.982 18.725A7.488 7.488 0 0 0 12 15.75a7.488 7.488 0 0 0-5.982 2.975m11.963 0a9 9 0 1 0-11.963 0m11.963 0A8.966 8.966 0 0 1 12 21a8.966 8.966 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M18 18.72a9.094 9.094 0 0 0 3.741-.479 3 3 0 0 0-4.682-2.72m.94 3.198.001.031c0 .225-.012.447-.037.666A11.944 11.944 0 0 1 12 21c-2.17 0-4.207-.576-5.963-1.584A6.062 6.062 0 0 1 6 18.719m12 0a5.971 5.971 0 0 0-.941-3.197m0 0A5.995 5.995 0 0 0 12 12.75a5.995 5.995 0 0 0-5.058 2.772m0 0a3 3 0 0 0-4.681 2.72 8.986 8.986 0 0 0 3.74.477m.94-3.197a5.971 5.971 0 0 0-.94 3.197M15 6.75a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm6 3a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Zm-13.5 0a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M22 10.5h-6m-2.25-4.125a3.375 3.375 0 1 1-6.75 0 3.375 3.375 0 0 1 6.75 0ZM4 19.235v-.11a6.375 6.375 0 0 1 12.75 0v.109A12.318 12.318 0 0 1 10.374 21c-2.331 0-4.512-.645-6.374-1.766Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M18 7.5v3m0 0v3m0-3h3m-3 0h-3m-2.25-4.125a3.375 3.375 0 1 1-6.75 0 3.375 3.375 0 0 1 6.75 0ZM3 19.235v-.11a6.375 6.375 0 0 1 12.75 0v.109A12.318 12.318 0 0 1 9.374 21c-2.331 0-4.512-.645-6.374-1.766Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 6a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0ZM4.501 20.118a7.5 7.5 0 0 1 14.998 0A17.933 17.933 0 0 1 12 21.75c-2.676 0-5.216-.584-7.499-1.632Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M15 19.128a9.38 9.38 0 0 0 2.625.372 9.337 9.337 0 0 0 4.121-.952 4.125 4.125 0 0 0-7.533-2.493M15 19.128v-.003c0-1.113-.285-2.16-.786-3.07M15 19.128v.106A12.318 12.318 0 0 1 8.624 21c-2.331 0-4.512-.645-6.374-1.766l-.001-.109a6.375 6.375 0 0 1 11.964-3.07M12 6.375a3.375 3.375 0 1 1-6.75 0 3.375 3.375 0 0 1 6.75 0Zm8.25 2.25a2.625 2.625 0 1 1-5.25 0 2.625 2.625 0 0 1 5.25 0Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M4.745 3A23.933 23.933 0 0 0 3 12c0 3.183.62 6.22 1.745 9M19.5 3c.967 2.78 1.5 5.817 1.5 9s-.533 6.22-1.5 9M8.25 8.885l1.444-.89a.75.75 0 0 1 1.105.402l2.402 7.206a.75.75 0 0 0 1.104.401l1.445-.889m-8.25.75.213.09a1.687 1.687 0 0 0 2.062-.617l4.45-6.676a1.688 1.688 0 0 1 2.062-.618l.213.09"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m15.75 10.5 4.72-4.72a.75.75 0 0 1 1.28.53v11.38a.75.75 0 0 1-1.28.53l-4.72-4.72M12 18.75H4.5a2.25 2.25 0 0 1-2.25-2.25V9m12.841 9.091L16.5 19.5m-1.409-1.409c.407-.407.659-.97.659-1.591v-9a2.25 2.25 0 0 0-2.25-2.25h-9c-.621 0-1.184.252-1.591.659m12.182 12.182L2.909 5.909M1.5 4.5l1.409 1.409"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m15.75 10.5 4.72-4.72a.75.75 0 0 1 1.28.53v11.38a.75.75 0 0 1-1.28.53l-4.72-4.72M4.5 18.75h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25h-9A2.25 2.25 0 0 0 2.25 7.5v9a2.25 2.25 0 0 0 2.25 2.25Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M9 4.5v15m6-15v15m-10.875 0h15.75c.621 0 1.125-.504 1.125-1.125V5.625c0-.621-.504-1.125-1.125-1.125H4.125C3.504 4.5 3 5.004 3 5.625v12.75c0 .621.504 1.125 1.125 1.125Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M7.5 3.75H6A2.25 2.25 0 0 0 3.75 6v1.5M16.5 3.75H18A2.25 2.25 0 0 1 20.25 6v1.5m0 9V18A2.25 2.25 0 0 1 18 20.25h-1.5m-9 0H6A2.25 2.25 0 0 1 3.75 18v-1.5M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M21 12a2.25 2.25 0 0 0-2.25-2.25H15a3 3 0 1 1-6 0H5.25A2.25 2.25 0 0 0 3 12m18 0v6a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 18v-6m18 0V9M3 12V9m18 0a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 9m18 0V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v3"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M8.288 15.038a5.25 5.25 0 0 1 7.424 0M5.106 11.856c3.807-3.808 9.98-3.808 13.788 0M1.924 8.674c5.565-5.565 14.587-5.565 20.152 0M12.53 18.22l-.53.53-.53-.53a.75.75 0 0 1 1.06 0Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M3 8.25V18a2.25 2.25 0 0 0 2.25 2.25h13.5A2.25 2.25 0 0 0 21 18V8.25m-18 0V6a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 6v2.25m-18 0h18M5.25 6h.008v.008H5.25V6ZM7.5 6h.008v.008H7.5V6Zm2.25 0h.008v.008H9.75V6Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M11.42 15.17 17.25 21A2.652 2.652 0 0 0 21 17.25l-5.877-5.877M11.42 15.17l2.496-3.03c.317-.384.74-.626 1.208-.766M11.42 15.17l-4.655 5.653a2.548 2.548 0 1 1-3.586-3.586l6.837-5.63m5.108-.233c.55-.164 1.163-.188 1.743-.14a4.5 4.5 0 0 0 4.486-6.336l-3.276 3.277a3.004 3.004 0 0 1-2.25-2.25l3.276-3.276a4.5 4.5 0 0 0-6.336 4.486c.091 1.076-.071 2.264-.904 2.95l-.102.085m-1.745 1.437L5.909 7.5H4.5L2.25 3.75l1.5-1.5L7.5 4.5v1.409l4.26 4.26m-1.745 1.437 1.745-1.437m6.615 8.206L15.75 15.75M4.867 19.125h.008v.008h-.008v-.008Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M21.75 6.75a4.5 4.5 0 0 1-4.884 4.484c-1.076-.091-2.264.071-2.95.904l-7.152 8.684a2.548 2.548 0 1 1-3.586-3.586l8.684-7.152c.833-.686.995-1.874.904-2.95a4.5 4.5 0 0 1 6.336-4.486l-3.276 3.276a3.004 3.004 0 0 0 2.25 2.25l3.276-3.276c.256.565.398 1.192.398 1.852Z"/>
|
|
3
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M4.867 19.125h.008v.008h-.008v-.008Z"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m9.75 9.75 4.5 4.5m0-4.5-4.5 4.5M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"/>
|
|
3
|
+
</svg>
|
|
@@ -36,7 +36,7 @@ export function mediaTypeFor(mime, key) {
|
|
|
36
36
|
return mediaTypeForKey(key);
|
|
37
37
|
}
|
|
38
38
|
export function mediaIconFor(type) {
|
|
39
|
-
return type === "image" ? "
|
|
39
|
+
return type === "image" ? "photo" : type === "video" ? "film" : "document";
|
|
40
40
|
}
|
|
41
41
|
export function mediaPublicUrl(baseUrl, key) {
|
|
42
42
|
return baseUrl ? `${baseUrl.replace(/\/+$/, "")}/${key}` : null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xleddyl/nuxt-cms",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "Lightweight CMS that ships with your Nuxt app: runs on the Nitro server, content types defined in code, /cms admin panel, GraphQL API, SQLite or Postgres. No external CMS needed!",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Edoardo Alberti (https://github.com/xleddyl)",
|
|
@@ -54,10 +54,10 @@
|
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@libsql/client": "^0.17.4",
|
|
56
56
|
"@nuxt/kit": "^4.4.8",
|
|
57
|
-
"@
|
|
58
|
-
"@nuxtjs/i18n": "^10.4.0",
|
|
57
|
+
"@tailwindcss/vite": "^4.3.2",
|
|
59
58
|
"@tiptap/starter-kit": "^3.0.0",
|
|
60
59
|
"@tiptap/vue-3": "^3.0.0",
|
|
60
|
+
"tailwindcss": "^4.3.2",
|
|
61
61
|
"aws4fetch": "^1.0.20",
|
|
62
62
|
"better-sqlite3": "^12.2.0",
|
|
63
63
|
"drizzle-kit": "^0.31.0",
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
"jiti": "^2.7.0",
|
|
69
69
|
"nuxt-auth-utils": "^0.5.29",
|
|
70
70
|
"pg": "^8.16.0",
|
|
71
|
+
"vite-svg-loader": "^5.1.0",
|
|
71
72
|
"zod": "^4.0.0"
|
|
72
73
|
},
|
|
73
74
|
"devDependencies": {
|
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"cms": {
|
|
3
|
-
"sidebar": {
|
|
4
|
-
"tagline": "content studio",
|
|
5
|
-
"collections": "Collections",
|
|
6
|
-
"singles": "Singles",
|
|
7
|
-
"library": "Library",
|
|
8
|
-
"media": "Media",
|
|
9
|
-
"signOut": "Sign out"
|
|
10
|
-
},
|
|
11
|
-
"login": {
|
|
12
|
-
"title": "Welcome back",
|
|
13
|
-
"subtitle": "Sign in to manage your content.",
|
|
14
|
-
"email": "Email",
|
|
15
|
-
"password": "Password",
|
|
16
|
-
"submit": "Sign in",
|
|
17
|
-
"invalid": "Invalid email or password.",
|
|
18
|
-
"failed": "Login failed. Please try again."
|
|
19
|
-
},
|
|
20
|
-
"collection": {
|
|
21
|
-
"kicker": "collection · {count} entry | collection · {count} entries",
|
|
22
|
-
"kickerSingle": "single document",
|
|
23
|
-
"new": "New entry",
|
|
24
|
-
"edit": "Edit entry",
|
|
25
|
-
"back": "Back",
|
|
26
|
-
"emptyTitle": "Nothing here yet",
|
|
27
|
-
"emptyBody": "Entries you create will show up here.",
|
|
28
|
-
"deleteConfirm": "Delete this row?",
|
|
29
|
-
"status": "Status",
|
|
30
|
-
"columns": "Columns",
|
|
31
|
-
"loadError": "Could not load entries",
|
|
32
|
-
"retry": "Retry",
|
|
33
|
-
"searchPlaceholder": "Search…",
|
|
34
|
-
"noResults": "No matching entries"
|
|
35
|
-
},
|
|
36
|
-
"confirm": {
|
|
37
|
-
"title": "Are you sure?",
|
|
38
|
-
"confirm": "Confirm",
|
|
39
|
-
"cancel": "Cancel"
|
|
40
|
-
},
|
|
41
|
-
"entry": {
|
|
42
|
-
"unsavedChanges": "You have unsaved changes. Leave anyway?"
|
|
43
|
-
},
|
|
44
|
-
"status": {
|
|
45
|
-
"published": "Published",
|
|
46
|
-
"draft": "Draft",
|
|
47
|
-
"publish": "Publish",
|
|
48
|
-
"unpublish": "Make draft"
|
|
49
|
-
},
|
|
50
|
-
"media": {
|
|
51
|
-
"kicker": "media library",
|
|
52
|
-
"title": "Media",
|
|
53
|
-
"emptyTitle": "No media yet",
|
|
54
|
-
"emptyBody": "Files you upload will show up here.",
|
|
55
|
-
"notConfiguredTitle": "Media storage not configured",
|
|
56
|
-
"notConfiguredBody": "Set cms.media in nuxt.config to enable uploads.",
|
|
57
|
-
"dropHint": "Drop files here or click to browse",
|
|
58
|
-
"dropHintSingle": "Drop a file here or click to browse",
|
|
59
|
-
"uploading": "Uploading {done} of {total}…",
|
|
60
|
-
"uploadFailed": "{count} upload failed | {count} uploads failed",
|
|
61
|
-
"tooLarge": "File too large (max 10 MB): {name}",
|
|
62
|
-
"filter": {
|
|
63
|
-
"all": "All",
|
|
64
|
-
"image": "Images",
|
|
65
|
-
"video": "Videos",
|
|
66
|
-
"file": "Files"
|
|
67
|
-
},
|
|
68
|
-
"loadError": "Could not load media",
|
|
69
|
-
"retry": "Retry",
|
|
70
|
-
"copy": "Copy URL",
|
|
71
|
-
"copied": "Copied",
|
|
72
|
-
"copyError": "Copy failed",
|
|
73
|
-
"delete": "Delete",
|
|
74
|
-
"deleteConfirm": "Delete this file? Entries referencing it will keep a broken link.",
|
|
75
|
-
"deleteFailed": "Delete failed",
|
|
76
|
-
"edit": "Edit details",
|
|
77
|
-
"alt": "Alt text",
|
|
78
|
-
"folder": "Folder"
|
|
79
|
-
},
|
|
80
|
-
"toast": {
|
|
81
|
-
"saved": "Saved",
|
|
82
|
-
"saveFailed": "Save failed",
|
|
83
|
-
"loadFailed": "Loading failed"
|
|
84
|
-
},
|
|
85
|
-
"form": {
|
|
86
|
-
"save": "Save",
|
|
87
|
-
"mediaChoose": "Choose from the gallery",
|
|
88
|
-
"mediaChange": "Change",
|
|
89
|
-
"mediaRemove": "Remove",
|
|
90
|
-
"invalidJson": "Invalid JSON",
|
|
91
|
-
"addBlock": "Add block",
|
|
92
|
-
"moveUp": "Move up",
|
|
93
|
-
"moveDown": "Move down",
|
|
94
|
-
"duplicateBlock": "Duplicate block",
|
|
95
|
-
"removeBlock": "Remove block",
|
|
96
|
-
"collapseBlock": "Collapse block",
|
|
97
|
-
"expandBlock": "Expand block"
|
|
98
|
-
},
|
|
99
|
-
"richtext": {
|
|
100
|
-
"bold": "Bold",
|
|
101
|
-
"italic": "Italic",
|
|
102
|
-
"strike": "Strikethrough",
|
|
103
|
-
"h2": "Heading 2",
|
|
104
|
-
"h3": "Heading 3",
|
|
105
|
-
"bulletList": "Bullet list",
|
|
106
|
-
"orderedList": "Numbered list",
|
|
107
|
-
"blockquote": "Quote",
|
|
108
|
-
"link": "Link",
|
|
109
|
-
"setLink": "Apply",
|
|
110
|
-
"unsetLink": "Remove link",
|
|
111
|
-
"undo": "Undo",
|
|
112
|
-
"redo": "Redo"
|
|
113
|
-
},
|
|
114
|
-
"validation": {
|
|
115
|
-
"required": "Required field",
|
|
116
|
-
"invalidDate": "Invalid date (yyyy-mm-dd)",
|
|
117
|
-
"invalidEmail": "Invalid email",
|
|
118
|
-
"invalidSlug": "Invalid slug (lowercase letters, numbers, dashes)",
|
|
119
|
-
"unknownLocale": "Unknown locale key",
|
|
120
|
-
"requiredLocale": "Required field (locale \"{locale}\")"
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
}
|