@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.
Files changed (327) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +644 -0
  3. package/dist/cms.d.ts +6 -0
  4. package/dist/cms.js +30 -0
  5. package/dist/components/admin-bar/admin-bar-internal.svelte +1697 -0
  6. package/dist/components/admin-bar/admin-bar-internal.svelte.d.ts +12 -0
  7. package/dist/components/admin-bar/admin-bar.css +5 -0
  8. package/dist/components/admin-bar/admin-bar.svelte +355 -0
  9. package/dist/components/admin-bar/admin-bar.svelte.d.ts +7 -0
  10. package/dist/components/admin-bar/click-outside.d.ts +8 -0
  11. package/dist/components/admin-bar/click-outside.js +17 -0
  12. package/dist/components/admin-bar/css-root.svelte +23 -0
  13. package/dist/components/admin-bar/css-root.svelte.d.ts +19 -0
  14. package/dist/components/admin-bar/delete-page-dialog.svelte +326 -0
  15. package/dist/components/admin-bar/delete-page-dialog.svelte.d.ts +32 -0
  16. package/dist/components/admin-bar/history-panel.svelte +264 -0
  17. package/dist/components/admin-bar/history-panel.svelte.d.ts +8 -0
  18. package/dist/components/admin-bar/icons/bold.svelte +13 -0
  19. package/dist/components/admin-bar/icons/bold.svelte.d.ts +3 -0
  20. package/dist/components/admin-bar/icons/check.svelte +11 -0
  21. package/dist/components/admin-bar/icons/check.svelte.d.ts +3 -0
  22. package/dist/components/admin-bar/icons/chevron-down.svelte +11 -0
  23. package/dist/components/admin-bar/icons/chevron-down.svelte.d.ts +3 -0
  24. package/dist/components/admin-bar/icons/chevron-right.svelte +11 -0
  25. package/dist/components/admin-bar/icons/chevron-right.svelte.d.ts +3 -0
  26. package/dist/components/admin-bar/icons/chevron-up.svelte +11 -0
  27. package/dist/components/admin-bar/icons/chevron-up.svelte.d.ts +3 -0
  28. package/dist/components/admin-bar/icons/code.svelte +14 -0
  29. package/dist/components/admin-bar/icons/code.svelte.d.ts +3 -0
  30. package/dist/components/admin-bar/icons/external-link.svelte +15 -0
  31. package/dist/components/admin-bar/icons/external-link.svelte.d.ts +3 -0
  32. package/dist/components/admin-bar/icons/file.svelte +19 -0
  33. package/dist/components/admin-bar/icons/file.svelte.d.ts +3 -0
  34. package/dist/components/admin-bar/icons/heading-2.svelte +16 -0
  35. package/dist/components/admin-bar/icons/heading-2.svelte.d.ts +3 -0
  36. package/dist/components/admin-bar/icons/heading-3.svelte +17 -0
  37. package/dist/components/admin-bar/icons/heading-3.svelte.d.ts +3 -0
  38. package/dist/components/admin-bar/icons/icon.svelte +41 -0
  39. package/dist/components/admin-bar/icons/icon.svelte.d.ts +21 -0
  40. package/dist/components/admin-bar/icons/images.svelte +16 -0
  41. package/dist/components/admin-bar/icons/images.svelte.d.ts +3 -0
  42. package/dist/components/admin-bar/icons/italic.svelte +15 -0
  43. package/dist/components/admin-bar/icons/italic.svelte.d.ts +3 -0
  44. package/dist/components/admin-bar/icons/link-2-off.svelte +16 -0
  45. package/dist/components/admin-bar/icons/link-2-off.svelte.d.ts +3 -0
  46. package/dist/components/admin-bar/icons/link.svelte +14 -0
  47. package/dist/components/admin-bar/icons/link.svelte.d.ts +3 -0
  48. package/dist/components/admin-bar/icons/list-ordered.svelte +18 -0
  49. package/dist/components/admin-bar/icons/list-ordered.svelte.d.ts +3 -0
  50. package/dist/components/admin-bar/icons/list.svelte +18 -0
  51. package/dist/components/admin-bar/icons/list.svelte.d.ts +3 -0
  52. package/dist/components/admin-bar/icons/loader-circle.svelte +11 -0
  53. package/dist/components/admin-bar/icons/loader-circle.svelte.d.ts +3 -0
  54. package/dist/components/admin-bar/icons/minus.svelte +11 -0
  55. package/dist/components/admin-bar/icons/minus.svelte.d.ts +3 -0
  56. package/dist/components/admin-bar/icons/quote.svelte +24 -0
  57. package/dist/components/admin-bar/icons/quote.svelte.d.ts +3 -0
  58. package/dist/components/admin-bar/icons/search.svelte +14 -0
  59. package/dist/components/admin-bar/icons/search.svelte.d.ts +3 -0
  60. package/dist/components/admin-bar/icons/trash-2.svelte +17 -0
  61. package/dist/components/admin-bar/icons/trash-2.svelte.d.ts +3 -0
  62. package/dist/components/admin-bar/icons/triangle-alert.svelte +15 -0
  63. package/dist/components/admin-bar/icons/triangle-alert.svelte.d.ts +3 -0
  64. package/dist/components/admin-bar/icons/types.d.ts +7 -0
  65. package/dist/components/admin-bar/icons/types.js +1 -0
  66. package/dist/components/admin-bar/icons/undo-2.svelte +14 -0
  67. package/dist/components/admin-bar/icons/undo-2.svelte.d.ts +3 -0
  68. package/dist/components/admin-bar/icons/upload.svelte +15 -0
  69. package/dist/components/admin-bar/icons/upload.svelte.d.ts +3 -0
  70. package/dist/components/admin-bar/icons/x.svelte +14 -0
  71. package/dist/components/admin-bar/icons/x.svelte.d.ts +3 -0
  72. package/dist/components/admin-bar/keyboard-shortcuts-dialog.svelte +96 -0
  73. package/dist/components/admin-bar/keyboard-shortcuts-dialog.svelte.d.ts +7 -0
  74. package/dist/components/admin-bar/locales-panel.svelte +137 -0
  75. package/dist/components/admin-bar/locales-panel.svelte.d.ts +9 -0
  76. package/dist/components/admin-bar/media-panel.svelte +282 -0
  77. package/dist/components/admin-bar/media-panel.svelte.d.ts +7 -0
  78. package/dist/components/admin-bar/new-page-chooser-dialog.svelte +56 -0
  79. package/dist/components/admin-bar/new-page-chooser-dialog.svelte.d.ts +10 -0
  80. package/dist/components/admin-bar/new-page-dialog.svelte +126 -0
  81. package/dist/components/admin-bar/new-page-dialog.svelte.d.ts +14 -0
  82. package/dist/components/admin-bar/page-config.d.ts +61 -0
  83. package/dist/components/admin-bar/page-config.js +24 -0
  84. package/dist/components/admin-bar/pages-panel.svelte +639 -0
  85. package/dist/components/admin-bar/pages-panel.svelte.d.ts +13 -0
  86. package/dist/components/admin-bar/panel-footer.svelte +21 -0
  87. package/dist/components/admin-bar/panel-footer.svelte.d.ts +8 -0
  88. package/dist/components/admin-bar/panel-header.svelte +29 -0
  89. package/dist/components/admin-bar/panel-header.svelte.d.ts +10 -0
  90. package/dist/components/admin-bar/panel.svelte +41 -0
  91. package/dist/components/admin-bar/panel.svelte.d.ts +10 -0
  92. package/dist/components/admin-bar/publish-dialog.svelte +387 -0
  93. package/dist/components/admin-bar/publish-dialog.svelte.d.ts +16 -0
  94. package/dist/components/admin-bar/resolve-route.d.ts +20 -0
  95. package/dist/components/admin-bar/resolve-route.js +50 -0
  96. package/dist/components/admin-bar/seo-panel.svelte +387 -0
  97. package/dist/components/admin-bar/seo-panel.svelte.d.ts +7 -0
  98. package/dist/components/admin-bar/share-preview-link-dialog.svelte +97 -0
  99. package/dist/components/admin-bar/share-preview-link-dialog.svelte.d.ts +9 -0
  100. package/dist/components/admin-bar/site-settings-panel.svelte +225 -0
  101. package/dist/components/admin-bar/site-settings-panel.svelte.d.ts +7 -0
  102. package/dist/components/admin-bar/status-pill.svelte +49 -0
  103. package/dist/components/admin-bar/status-pill.svelte.d.ts +11 -0
  104. package/dist/components/admin-bar/theme.svelte.d.ts +16 -0
  105. package/dist/components/admin-bar/theme.svelte.js +39 -0
  106. package/dist/components/admin-bar/ui/badge/badge.svelte +57 -0
  107. package/dist/components/admin-bar/ui/badge/badge.svelte.d.ts +16 -0
  108. package/dist/components/admin-bar/ui/badge/index.d.ts +4 -0
  109. package/dist/components/admin-bar/ui/badge/index.js +4 -0
  110. package/dist/components/admin-bar/ui/button/button.svelte +73 -0
  111. package/dist/components/admin-bar/ui/button/button.svelte.d.ts +16 -0
  112. package/dist/components/admin-bar/ui/button/index.d.ts +4 -0
  113. package/dist/components/admin-bar/ui/button/index.js +4 -0
  114. package/dist/components/admin-bar/ui/collapsible/collapsible-content.svelte +7 -0
  115. package/dist/components/admin-bar/ui/collapsible/collapsible-content.svelte.d.ts +4 -0
  116. package/dist/components/admin-bar/ui/collapsible/collapsible-trigger.svelte +7 -0
  117. package/dist/components/admin-bar/ui/collapsible/collapsible-trigger.svelte.d.ts +4 -0
  118. package/dist/components/admin-bar/ui/collapsible/collapsible.svelte +7 -0
  119. package/dist/components/admin-bar/ui/collapsible/collapsible.svelte.d.ts +4 -0
  120. package/dist/components/admin-bar/ui/collapsible/index.d.ts +4 -0
  121. package/dist/components/admin-bar/ui/collapsible/index.js +6 -0
  122. package/dist/components/admin-bar/ui/dialog/dialog-close.svelte +7 -0
  123. package/dist/components/admin-bar/ui/dialog/dialog-close.svelte.d.ts +4 -0
  124. package/dist/components/admin-bar/ui/dialog/dialog-content.svelte +46 -0
  125. package/dist/components/admin-bar/ui/dialog/dialog-content.svelte.d.ts +11 -0
  126. package/dist/components/admin-bar/ui/dialog/dialog-description.svelte +17 -0
  127. package/dist/components/admin-bar/ui/dialog/dialog-description.svelte.d.ts +4 -0
  128. package/dist/components/admin-bar/ui/dialog/dialog-footer.svelte +23 -0
  129. package/dist/components/admin-bar/ui/dialog/dialog-footer.svelte.d.ts +5 -0
  130. package/dist/components/admin-bar/ui/dialog/dialog-header.svelte +20 -0
  131. package/dist/components/admin-bar/ui/dialog/dialog-header.svelte.d.ts +5 -0
  132. package/dist/components/admin-bar/ui/dialog/dialog-overlay.svelte +20 -0
  133. package/dist/components/admin-bar/ui/dialog/dialog-overlay.svelte.d.ts +4 -0
  134. package/dist/components/admin-bar/ui/dialog/dialog-portal.svelte +7 -0
  135. package/dist/components/admin-bar/ui/dialog/dialog-portal.svelte.d.ts +3 -0
  136. package/dist/components/admin-bar/ui/dialog/dialog-title.svelte +17 -0
  137. package/dist/components/admin-bar/ui/dialog/dialog-title.svelte.d.ts +4 -0
  138. package/dist/components/admin-bar/ui/dialog/dialog-trigger.svelte +7 -0
  139. package/dist/components/admin-bar/ui/dialog/dialog-trigger.svelte.d.ts +4 -0
  140. package/dist/components/admin-bar/ui/dialog/dialog.svelte +7 -0
  141. package/dist/components/admin-bar/ui/dialog/dialog.svelte.d.ts +3 -0
  142. package/dist/components/admin-bar/ui/dialog/index.d.ts +11 -0
  143. package/dist/components/admin-bar/ui/dialog/index.js +13 -0
  144. package/dist/components/admin-bar/ui/input/index.d.ts +3 -0
  145. package/dist/components/admin-bar/ui/input/index.js +3 -0
  146. package/dist/components/admin-bar/ui/input/input.svelte +24 -0
  147. package/dist/components/admin-bar/ui/input/input.svelte.d.ts +5 -0
  148. package/dist/components/admin-bar/ui/kbd/index.d.ts +4 -0
  149. package/dist/components/admin-bar/ui/kbd/index.js +6 -0
  150. package/dist/components/admin-bar/ui/kbd/kbd-group.svelte +20 -0
  151. package/dist/components/admin-bar/ui/kbd/kbd-group.svelte.d.ts +5 -0
  152. package/dist/components/admin-bar/ui/kbd/kbd-shortcut.svelte +52 -0
  153. package/dist/components/admin-bar/ui/kbd/kbd-shortcut.svelte.d.ts +8 -0
  154. package/dist/components/admin-bar/ui/kbd/kbd.svelte +27 -0
  155. package/dist/components/admin-bar/ui/kbd/kbd.svelte.d.ts +5 -0
  156. package/dist/components/admin-bar/ui/label/index.d.ts +3 -0
  157. package/dist/components/admin-bar/ui/label/index.js +3 -0
  158. package/dist/components/admin-bar/ui/label/label.svelte +20 -0
  159. package/dist/components/admin-bar/ui/label/label.svelte.d.ts +4 -0
  160. package/dist/components/admin-bar/ui/menubar/index.d.ts +18 -0
  161. package/dist/components/admin-bar/ui/menubar/index.js +20 -0
  162. package/dist/components/admin-bar/ui/menubar/menubar-checkbox-item.svelte +46 -0
  163. package/dist/components/admin-bar/ui/menubar/menubar-checkbox-item.svelte.d.ts +10 -0
  164. package/dist/components/admin-bar/ui/menubar/menubar-content.svelte +28 -0
  165. package/dist/components/admin-bar/ui/menubar/menubar-content.svelte.d.ts +4 -0
  166. package/dist/components/admin-bar/ui/menubar/menubar-group-heading.svelte +25 -0
  167. package/dist/components/admin-bar/ui/menubar/menubar-group-heading.svelte.d.ts +8 -0
  168. package/dist/components/admin-bar/ui/menubar/menubar-group.svelte +12 -0
  169. package/dist/components/admin-bar/ui/menubar/menubar-group.svelte.d.ts +7 -0
  170. package/dist/components/admin-bar/ui/menubar/menubar-item.svelte +27 -0
  171. package/dist/components/admin-bar/ui/menubar/menubar-item.svelte.d.ts +8 -0
  172. package/dist/components/admin-bar/ui/menubar/menubar-label.svelte +25 -0
  173. package/dist/components/admin-bar/ui/menubar/menubar-label.svelte.d.ts +8 -0
  174. package/dist/components/admin-bar/ui/menubar/menubar-menu.svelte +7 -0
  175. package/dist/components/admin-bar/ui/menubar/menubar-menu.svelte.d.ts +3 -0
  176. package/dist/components/admin-bar/ui/menubar/menubar-portal.svelte +7 -0
  177. package/dist/components/admin-bar/ui/menubar/menubar-portal.svelte.d.ts +3 -0
  178. package/dist/components/admin-bar/ui/menubar/menubar-radio-group.svelte +11 -0
  179. package/dist/components/admin-bar/ui/menubar/menubar-radio-group.svelte.d.ts +4 -0
  180. package/dist/components/admin-bar/ui/menubar/menubar-radio-item.svelte +37 -0
  181. package/dist/components/admin-bar/ui/menubar/menubar-radio-item.svelte.d.ts +8 -0
  182. package/dist/components/admin-bar/ui/menubar/menubar-separator.svelte +17 -0
  183. package/dist/components/admin-bar/ui/menubar/menubar-separator.svelte.d.ts +4 -0
  184. package/dist/components/admin-bar/ui/menubar/menubar-shortcut.svelte +23 -0
  185. package/dist/components/admin-bar/ui/menubar/menubar-shortcut.svelte.d.ts +5 -0
  186. package/dist/components/admin-bar/ui/menubar/menubar-sub-content.svelte +20 -0
  187. package/dist/components/admin-bar/ui/menubar/menubar-sub-content.svelte.d.ts +4 -0
  188. package/dist/components/admin-bar/ui/menubar/menubar-sub-trigger.svelte +29 -0
  189. package/dist/components/admin-bar/ui/menubar/menubar-sub-trigger.svelte.d.ts +8 -0
  190. package/dist/components/admin-bar/ui/menubar/menubar-sub.svelte +7 -0
  191. package/dist/components/admin-bar/ui/menubar/menubar-sub.svelte.d.ts +4 -0
  192. package/dist/components/admin-bar/ui/menubar/menubar-trigger.svelte +20 -0
  193. package/dist/components/admin-bar/ui/menubar/menubar-trigger.svelte.d.ts +4 -0
  194. package/dist/components/admin-bar/ui/menubar/menubar.svelte +20 -0
  195. package/dist/components/admin-bar/ui/menubar/menubar.svelte.d.ts +4 -0
  196. package/dist/components/admin-bar/ui/select/index.d.ts +12 -0
  197. package/dist/components/admin-bar/ui/select/index.js +14 -0
  198. package/dist/components/admin-bar/ui/select/select-content.svelte +45 -0
  199. package/dist/components/admin-bar/ui/select/select-content.svelte.d.ts +11 -0
  200. package/dist/components/admin-bar/ui/select/select-group-heading.svelte +21 -0
  201. package/dist/components/admin-bar/ui/select/select-group-heading.svelte.d.ts +10 -0
  202. package/dist/components/admin-bar/ui/select/select-group.svelte +17 -0
  203. package/dist/components/admin-bar/ui/select/select-group.svelte.d.ts +4 -0
  204. package/dist/components/admin-bar/ui/select/select-item.svelte +40 -0
  205. package/dist/components/admin-bar/ui/select/select-item.svelte.d.ts +5 -0
  206. package/dist/components/admin-bar/ui/select/select-label.svelte +20 -0
  207. package/dist/components/admin-bar/ui/select/select-label.svelte.d.ts +6 -0
  208. package/dist/components/admin-bar/ui/select/select-portal.svelte +7 -0
  209. package/dist/components/admin-bar/ui/select/select-portal.svelte.d.ts +3 -0
  210. package/dist/components/admin-bar/ui/select/select-scroll-down-button.svelte +23 -0
  211. package/dist/components/admin-bar/ui/select/select-scroll-down-button.svelte.d.ts +5 -0
  212. package/dist/components/admin-bar/ui/select/select-scroll-up-button.svelte +23 -0
  213. package/dist/components/admin-bar/ui/select/select-scroll-up-button.svelte.d.ts +5 -0
  214. package/dist/components/admin-bar/ui/select/select-separator.svelte +21 -0
  215. package/dist/components/admin-bar/ui/select/select-separator.svelte.d.ts +4 -0
  216. package/dist/components/admin-bar/ui/select/select-trigger.svelte +31 -0
  217. package/dist/components/admin-bar/ui/select/select-trigger.svelte.d.ts +8 -0
  218. package/dist/components/admin-bar/ui/select/select.svelte +11 -0
  219. package/dist/components/admin-bar/ui/select/select.svelte.d.ts +3 -0
  220. package/dist/components/admin-bar/ui/separator/index.d.ts +2 -0
  221. package/dist/components/admin-bar/ui/separator/index.js +4 -0
  222. package/dist/components/admin-bar/ui/separator/separator.svelte +21 -0
  223. package/dist/components/admin-bar/ui/separator/separator.svelte.d.ts +4 -0
  224. package/dist/components/admin-bar/ui/textarea/index.d.ts +3 -0
  225. package/dist/components/admin-bar/ui/textarea/index.js +3 -0
  226. package/dist/components/admin-bar/ui/textarea/textarea.svelte +21 -0
  227. package/dist/components/admin-bar/ui/textarea/textarea.svelte.d.ts +5 -0
  228. package/dist/components/admin-bar/user-avatar.svelte +29 -0
  229. package/dist/components/admin-bar/user-avatar.svelte.d.ts +7 -0
  230. package/dist/components/admin-bar/utils.d.ts +10 -0
  231. package/dist/components/admin-bar/utils.js +46 -0
  232. package/dist/components/admin-bar/variants.d.ts +20 -0
  233. package/dist/components/admin-bar/variants.js +14 -0
  234. package/dist/components/cms/cms-boolean.svelte +102 -0
  235. package/dist/components/cms/cms-boolean.svelte.d.ts +10 -0
  236. package/dist/components/cms/cms-date-time-editable.svelte +66 -0
  237. package/dist/components/cms/cms-date-time-editable.svelte.d.ts +11 -0
  238. package/dist/components/cms/cms-date-time.svelte +67 -0
  239. package/dist/components/cms/cms-date-time.svelte.d.ts +19 -0
  240. package/dist/components/cms/cms-entries.svelte +24 -0
  241. package/dist/components/cms/cms-entries.svelte.d.ts +31 -0
  242. package/dist/components/cms/cms-image-editable.svelte +439 -0
  243. package/dist/components/cms/cms-image-editable.svelte.d.ts +11 -0
  244. package/dist/components/cms/cms-image.svelte +78 -0
  245. package/dist/components/cms/cms-image.svelte.d.ts +18 -0
  246. package/dist/components/cms/cms-link-editable.svelte +429 -0
  247. package/dist/components/cms/cms-link-editable.svelte.d.ts +13 -0
  248. package/dist/components/cms/cms-link.svelte +92 -0
  249. package/dist/components/cms/cms-link.svelte.d.ts +25 -0
  250. package/dist/components/cms/cms-markdown-editable.svelte +74 -0
  251. package/dist/components/cms/cms-markdown-editable.svelte.d.ts +9 -0
  252. package/dist/components/cms/cms-markdown.svelte +56 -0
  253. package/dist/components/cms/cms-markdown.svelte.d.ts +10 -0
  254. package/dist/components/cms/cms-media-picker.svelte +150 -0
  255. package/dist/components/cms/cms-media-picker.svelte.d.ts +8 -0
  256. package/dist/components/cms/cms-number-editable.svelte +77 -0
  257. package/dist/components/cms/cms-number-editable.svelte.d.ts +13 -0
  258. package/dist/components/cms/cms-number.svelte +63 -0
  259. package/dist/components/cms/cms-number.svelte.d.ts +16 -0
  260. package/dist/components/cms/cms-repeater-editable.svelte +137 -0
  261. package/dist/components/cms/cms-repeater-editable.svelte.d.ts +31 -0
  262. package/dist/components/cms/cms-repeater.svelte +55 -0
  263. package/dist/components/cms/cms-repeater.svelte.d.ts +30 -0
  264. package/dist/components/cms/cms-rich-text-editable.svelte +101 -0
  265. package/dist/components/cms/cms-rich-text-editable.svelte.d.ts +9 -0
  266. package/dist/components/cms/cms-rich-text-toolbar.svelte +246 -0
  267. package/dist/components/cms/cms-rich-text-toolbar.svelte.d.ts +9 -0
  268. package/dist/components/cms/cms-rich-text.svelte +74 -0
  269. package/dist/components/cms/cms-rich-text.svelte.d.ts +10 -0
  270. package/dist/components/cms/cms-store.svelte.d.ts +294 -0
  271. package/dist/components/cms/cms-store.svelte.js +625 -0
  272. package/dist/components/cms/cms-text.svelte +131 -0
  273. package/dist/components/cms/cms-text.svelte.d.ts +11 -0
  274. package/dist/components/cms/index.d.ts +13 -0
  275. package/dist/components/cms/index.js +11 -0
  276. package/dist/components/cms/install-scope.svelte.d.ts +7 -0
  277. package/dist/components/cms/install-scope.svelte.js +33 -0
  278. package/dist/components/cms/locale-merge.d.ts +41 -0
  279. package/dist/components/cms/locale-merge.js +77 -0
  280. package/dist/components/cms/overlay-sync.d.ts +82 -0
  281. package/dist/components/cms/overlay-sync.js +76 -0
  282. package/dist/components/cms/path.d.ts +30 -0
  283. package/dist/components/cms/path.js +156 -0
  284. package/dist/components/cms/scope.d.ts +120 -0
  285. package/dist/components/cms/scope.js +23 -0
  286. package/dist/index.d.ts +27 -0
  287. package/dist/index.js +28 -0
  288. package/dist/srv/README.md +341 -0
  289. package/dist/srv/api-adapter.d.ts +20 -0
  290. package/dist/srv/api-adapter.js +178 -0
  291. package/dist/srv/cms.d.ts +62 -0
  292. package/dist/srv/cms.js +35 -0
  293. package/dist/srv/index.d.ts +5 -0
  294. package/dist/srv/index.js +4 -0
  295. package/dist/srv/load-cms.d.ts +105 -0
  296. package/dist/srv/load-cms.js +227 -0
  297. package/dist/srv/mock-adapter.d.ts +96 -0
  298. package/dist/srv/mock-adapter.js +171 -0
  299. package/dist/srv/types.d.ts +114 -0
  300. package/dist/srv/types.js +1 -0
  301. package/package.json +116 -0
  302. package/plugin/README.md +137 -0
  303. package/plugin/dist/adapter.d.ts +35 -0
  304. package/plugin/dist/adapter.js +346 -0
  305. package/plugin/dist/adapter.js.map +1 -0
  306. package/plugin/dist/build-state.d.ts +10 -0
  307. package/plugin/dist/build-state.js +26 -0
  308. package/plugin/dist/build-state.js.map +1 -0
  309. package/plugin/dist/fallback-shim.js +194 -0
  310. package/plugin/dist/index.d.ts +56 -0
  311. package/plugin/dist/index.js +396 -0
  312. package/plugin/dist/index.js.map +1 -0
  313. package/plugin/dist/manifest.d.ts +76 -0
  314. package/plugin/dist/manifest.js +367 -0
  315. package/plugin/dist/manifest.js.map +1 -0
  316. package/plugin/dist/media.d.ts +36 -0
  317. package/plugin/dist/media.js +153 -0
  318. package/plugin/dist/media.js.map +1 -0
  319. package/plugin/dist/parse-svelte.d.ts +35 -0
  320. package/plugin/dist/parse-svelte.js +120 -0
  321. package/plugin/dist/parse-svelte.js.map +1 -0
  322. package/plugin/dist/route-tree.d.ts +27 -0
  323. package/plugin/dist/route-tree.js +69 -0
  324. package/plugin/dist/route-tree.js.map +1 -0
  325. package/plugin/dist/transforms.d.ts +42 -0
  326. package/plugin/dist/transforms.js +95 -0
  327. 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,3 @@
1
+ declare const ChevronRight: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type ChevronRight = ReturnType<typeof ChevronRight>;
3
+ export default ChevronRight;
@@ -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,3 @@
1
+ declare const ChevronUp: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type ChevronUp = ReturnType<typeof ChevronUp>;
3
+ export default ChevronUp;
@@ -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,3 @@
1
+ declare const Code: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type Code = ReturnType<typeof Code>;
3
+ export default Code;
@@ -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,3 @@
1
+ declare const ExternalLink: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type ExternalLink = ReturnType<typeof ExternalLink>;
3
+ export default ExternalLink;
@@ -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,3 @@
1
+ declare const File: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type File = ReturnType<typeof File>;
3
+ export default File;
@@ -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,3 @@
1
+ declare const Heading2: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type Heading2 = ReturnType<typeof Heading2>;
3
+ export default Heading2;
@@ -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,3 @@
1
+ declare const Heading3: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type Heading3 = ReturnType<typeof Heading3>;
3
+ export default Heading3;
@@ -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,3 @@
1
+ declare const Images: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type Images = ReturnType<typeof Images>;
3
+ export default Images;
@@ -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,3 @@
1
+ declare const Italic: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type Italic = ReturnType<typeof Italic>;
3
+ export default Italic;
@@ -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,3 @@
1
+ declare const Link2Off: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type Link2Off = ReturnType<typeof Link2Off>;
3
+ export default Link2Off;
@@ -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,3 @@
1
+ declare const Link: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type Link = ReturnType<typeof Link>;
3
+ export default Link;
@@ -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,3 @@
1
+ declare const ListOrdered: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type ListOrdered = ReturnType<typeof ListOrdered>;
3
+ export default ListOrdered;
@@ -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,3 @@
1
+ declare const List: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type List = ReturnType<typeof List>;
3
+ export default List;
@@ -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,3 @@
1
+ declare const LoaderCircle: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type LoaderCircle = ReturnType<typeof LoaderCircle>;
3
+ export default LoaderCircle;
@@ -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,3 @@
1
+ declare const Minus: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type Minus = ReturnType<typeof Minus>;
3
+ export default Minus;
@@ -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,3 @@
1
+ declare const Quote: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type Quote = ReturnType<typeof Quote>;
3
+ export default Quote;
@@ -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,3 @@
1
+ declare const Search: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type Search = ReturnType<typeof Search>;
3
+ export default Search;
@@ -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,3 @@
1
+ declare const Trash2: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type Trash2 = ReturnType<typeof Trash2>;
3
+ export default Trash2;
@@ -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,3 @@
1
+ declare const TriangleAlert: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type TriangleAlert = ReturnType<typeof TriangleAlert>;
3
+ export default TriangleAlert;
@@ -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,3 @@
1
+ declare const Undo2: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type Undo2 = ReturnType<typeof Undo2>;
3
+ export default Undo2;
@@ -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,3 @@
1
+ declare const Upload: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type Upload = ReturnType<typeof Upload>;
3
+ export default Upload;
@@ -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} />
@@ -0,0 +1,3 @@
1
+ declare const X: import("svelte").Component<$$ComponentProps, {}, "">;
2
+ type X = ReturnType<typeof X>;
3
+ export default X;