@blokkli/editor 2.0.0-alpha.28 → 2.0.0-alpha.29

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 (1647) hide show
  1. package/dist/global/constants/index.d.ts +6 -0
  2. package/dist/global/constants/index.js +10 -0
  3. package/dist/global/types/adapter.d.ts +6 -0
  4. package/dist/global/types/blockOptions.d.ts +348 -0
  5. package/dist/global/types/definitions.d.ts +278 -0
  6. package/dist/global/types/features.d.ts +87 -0
  7. package/dist/module.d.mts +25 -7
  8. package/dist/module.json +1 -1
  9. package/dist/module.mjs +1026 -187
  10. package/dist/modules/drupal/graphql/features/import-existing.graphql +9 -2
  11. package/dist/modules/drupal/graphql/features/library.graphql +9 -2
  12. package/dist/modules/drupal/graphql/features/media-library.graphql +6 -14
  13. package/dist/modules/drupal/graphql/features/publishNew.graphql +3 -0
  14. package/dist/modules/drupal/index.d.mts +6 -5
  15. package/dist/modules/drupal/index.mjs +2 -4
  16. package/dist/modules/drupal/runtime/adapter/index.d.ts +1 -2
  17. package/dist/modules/drupal/runtime/adapter/index.js +36 -28
  18. package/dist/runtime/components/Blocks/Fragment/index.d.vue.ts +7 -0
  19. package/dist/runtime/components/Blocks/Fragment/index.vue +3 -2
  20. package/dist/runtime/components/Blocks/Fragment/index.vue.d.ts +2 -1
  21. package/dist/runtime/components/Blocks/FromLibrary/index.d.vue.ts +7 -0
  22. package/dist/runtime/components/Blocks/FromLibrary/index.vue +7 -3
  23. package/dist/runtime/components/Blocks/FromLibrary/index.vue.d.ts +3 -2
  24. package/dist/runtime/components/Blocks/NotImplemented/index.d.vue.ts +7 -0
  25. package/dist/runtime/components/Blocks/NotImplemented/index.vue +3 -3
  26. package/dist/runtime/components/Blocks/NotImplemented/index.vue.d.ts +2 -1
  27. package/dist/runtime/components/BlokkliEditable.d.vue.ts +33 -0
  28. package/dist/runtime/components/BlokkliEditable.vue +12 -3
  29. package/dist/runtime/components/BlokkliEditable.vue.d.ts +3 -2
  30. package/dist/runtime/components/BlokkliField.d.vue.ts +96 -0
  31. package/dist/runtime/components/BlokkliField.vue +6 -23
  32. package/dist/runtime/components/BlokkliField.vue.d.ts +8 -5
  33. package/dist/runtime/components/BlokkliItem.d.vue.ts +31 -0
  34. package/dist/runtime/components/BlokkliItem.vue +25 -26
  35. package/dist/runtime/components/BlokkliItem.vue.d.ts +8 -7
  36. package/dist/runtime/components/BlokkliProvider.d.vue.ts +77 -0
  37. package/dist/runtime/components/BlokkliProvider.vue +6 -6
  38. package/dist/runtime/components/BlokkliProvider.vue.d.ts +12 -7
  39. package/dist/runtime/composables/defineBlokkli.d.ts +1 -1
  40. package/dist/runtime/composables/defineBlokkli.js +19 -22
  41. package/dist/runtime/composables/defineBlokkliFeature.d.ts +3 -3
  42. package/dist/runtime/composables/defineBlokkliFeature.js +2 -2
  43. package/dist/runtime/composables/defineBlokkliFragment.d.ts +1 -1
  44. package/dist/runtime/composables/defineBlokkliFragment.js +2 -5
  45. package/dist/runtime/composables/defineBlokkliProvider.d.ts +1 -1
  46. package/dist/runtime/composables/defineBlokkliProvider.js +1 -1
  47. package/dist/runtime/composables/useBlokkli.d.ts +1 -1
  48. package/dist/runtime/composables/useBlokkli.js +1 -1
  49. package/dist/runtime/composables/useBlokkliHelper.d.ts +2 -1
  50. package/dist/runtime/composables/useBlokkliHelper.js +5 -11
  51. package/dist/runtime/editor/adapter/index.d.ts +121 -0
  52. package/dist/runtime/editor/components/Actions/ItemDropdown.d.vue.ts +7 -0
  53. package/dist/runtime/editor/components/Actions/ItemDropdown.vue +66 -0
  54. package/dist/runtime/editor/components/Actions/ItemDropdown.vue.d.ts +7 -0
  55. package/dist/runtime/editor/components/Actions/index.d.vue.ts +3 -0
  56. package/dist/runtime/editor/components/Actions/index.vue +216 -0
  57. package/dist/runtime/editor/components/Actions/index.vue.d.ts +3 -0
  58. package/dist/runtime/editor/components/AddListItem/index.d.vue.ts +20 -0
  59. package/dist/runtime/editor/components/AddListItem/index.vue +66 -0
  60. package/dist/runtime/editor/components/AddListItem/index.vue.d.ts +20 -0
  61. package/dist/runtime/editor/components/AnimationCanvas/index.d.vue.ts +3 -0
  62. package/dist/runtime/editor/components/AnimationCanvas/index.vue +455 -0
  63. package/dist/runtime/editor/components/AnimationCanvas/index.vue.d.ts +3 -0
  64. package/dist/runtime/editor/components/AppMenu/MenuButton.d.vue.ts +29 -0
  65. package/dist/runtime/editor/components/AppMenu/MenuButton.vue +39 -0
  66. package/dist/runtime/editor/components/AppMenu/MenuButton.vue.d.ts +29 -0
  67. package/dist/runtime/editor/components/AppMenu/index.d.vue.ts +3 -0
  68. package/dist/runtime/editor/components/AppMenu/index.vue +85 -0
  69. package/dist/runtime/editor/components/AppMenu/index.vue.d.ts +3 -0
  70. package/dist/runtime/editor/components/ArtboardTooltip/index.d.vue.ts +33 -0
  71. package/dist/runtime/editor/components/ArtboardTooltip/index.vue +89 -0
  72. package/dist/runtime/editor/components/ArtboardTooltip/index.vue.d.ts +33 -0
  73. package/dist/runtime/editor/components/Banner/index.d.vue.ts +19 -0
  74. package/dist/runtime/editor/components/Banner/index.vue +51 -0
  75. package/dist/runtime/editor/components/Banner/index.vue.d.ts +19 -0
  76. package/dist/runtime/editor/components/BlockProxy/index.d.vue.ts +11 -0
  77. package/dist/runtime/editor/components/BlockProxy/index.vue +88 -0
  78. package/dist/runtime/editor/components/BlockProxy/index.vue.d.ts +11 -0
  79. package/dist/runtime/editor/components/BlokkliErrorBoundary.d.vue.ts +27 -0
  80. package/dist/runtime/editor/components/BlokkliErrorBoundary.vue +47 -0
  81. package/dist/runtime/editor/components/BlokkliErrorBoundary.vue.d.ts +27 -0
  82. package/dist/runtime/editor/components/BlokkliRootErrorBoundary.d.vue.ts +13 -0
  83. package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue +96 -0
  84. package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue.d.ts +13 -0
  85. package/dist/runtime/editor/components/BundleSelector/index.d.vue.ts +19 -0
  86. package/dist/runtime/editor/components/BundleSelector/index.vue +187 -0
  87. package/dist/runtime/editor/components/BundleSelector/index.vue.d.ts +19 -0
  88. package/dist/runtime/editor/components/Dialog/index.d.vue.ts +49 -0
  89. package/dist/runtime/editor/components/Dialog/index.vue +134 -0
  90. package/dist/runtime/editor/components/Dialog/index.vue.d.ts +49 -0
  91. package/dist/runtime/editor/components/DiffViewer/State.d.vue.ts +17 -0
  92. package/dist/runtime/editor/components/DiffViewer/State.vue +276 -0
  93. package/dist/runtime/editor/components/DiffViewer/State.vue.d.ts +17 -0
  94. package/dist/runtime/editor/components/DraggableList.d.vue.ts +29 -0
  95. package/dist/runtime/editor/components/DraggableList.vue +145 -0
  96. package/dist/runtime/editor/components/DraggableList.vue.d.ts +29 -0
  97. package/dist/runtime/editor/components/EditIndicator.d.vue.ts +15 -0
  98. package/dist/runtime/editor/components/EditIndicator.vue +151 -0
  99. package/dist/runtime/editor/components/EditIndicator.vue.d.ts +15 -0
  100. package/dist/runtime/editor/components/EditProvider.d.vue.ts +34 -0
  101. package/dist/runtime/editor/components/EditProvider.vue +388 -0
  102. package/dist/runtime/editor/components/EditProvider.vue.d.ts +34 -0
  103. package/dist/runtime/editor/components/FeaturesRenderer/index.d.vue.ts +7 -0
  104. package/dist/runtime/editor/components/FeaturesRenderer/index.vue.d.ts +7 -0
  105. package/dist/runtime/editor/components/Form/Checkboxes/index.d.vue.ts +23 -0
  106. package/dist/runtime/editor/components/Form/Checkboxes/index.vue +49 -0
  107. package/dist/runtime/editor/components/Form/Checkboxes/index.vue.d.ts +23 -0
  108. package/dist/runtime/editor/components/Form/Datepicker/index.d.vue.ts +17 -0
  109. package/dist/runtime/editor/components/Form/Datepicker/index.vue +198 -0
  110. package/dist/runtime/editor/components/Form/Datepicker/index.vue.d.ts +17 -0
  111. package/dist/runtime/editor/components/Form/Group/index.d.vue.ts +19 -0
  112. package/dist/runtime/editor/components/Form/Group/index.vue.d.ts +19 -0
  113. package/dist/runtime/editor/components/Form/Item/index.d.vue.ts +13 -0
  114. package/dist/runtime/editor/components/Form/Item/index.vue.d.ts +13 -0
  115. package/dist/runtime/editor/components/Form/Radio/index.d.vue.ts +22 -0
  116. package/dist/runtime/editor/components/Form/Radio/index.vue.d.ts +22 -0
  117. package/dist/runtime/editor/components/Form/RadioTabs/index.d.vue.ts +24 -0
  118. package/dist/runtime/editor/components/Form/RadioTabs/index.vue.d.ts +24 -0
  119. package/dist/runtime/editor/components/Form/Select/index.d.vue.ts +22 -0
  120. package/dist/runtime/editor/components/Form/Select/index.vue.d.ts +22 -0
  121. package/dist/runtime/editor/components/Form/Text/index.d.vue.ts +22 -0
  122. package/dist/runtime/editor/components/Form/Text/index.vue.d.ts +22 -0
  123. package/dist/runtime/editor/components/Form/Textarea/index.d.vue.ts +22 -0
  124. package/dist/runtime/editor/components/Form/Textarea/index.vue.d.ts +22 -0
  125. package/dist/runtime/editor/components/Form/Toggle/index.d.vue.ts +26 -0
  126. package/dist/runtime/editor/components/Form/Toggle/index.vue.d.ts +26 -0
  127. package/dist/runtime/editor/components/FormOverlay/Header/index.d.vue.ts +19 -0
  128. package/dist/runtime/editor/components/FormOverlay/Header/index.vue +28 -0
  129. package/dist/runtime/editor/components/FormOverlay/Header/index.vue.d.ts +19 -0
  130. package/dist/runtime/editor/components/FormOverlay/index.d.vue.ts +27 -0
  131. package/dist/runtime/editor/components/FormOverlay/index.vue +55 -0
  132. package/dist/runtime/editor/components/FormOverlay/index.vue.d.ts +27 -0
  133. package/dist/runtime/editor/components/Highlight/index.d.vue.ts +21 -0
  134. package/dist/runtime/editor/components/Highlight/index.vue.d.ts +21 -0
  135. package/dist/runtime/editor/components/Icon/index.d.vue.ts +8 -0
  136. package/dist/runtime/editor/components/Icon/index.vue +20 -0
  137. package/dist/runtime/editor/components/Icon/index.vue.d.ts +8 -0
  138. package/dist/runtime/editor/components/Indicators/index.d.vue.ts +3 -0
  139. package/dist/runtime/editor/components/Indicators/index.vue +123 -0
  140. package/dist/runtime/editor/components/Indicators/index.vue.d.ts +3 -0
  141. package/dist/runtime/editor/components/InfoBox/index.d.vue.ts +21 -0
  142. package/dist/runtime/editor/components/InfoBox/index.vue +18 -0
  143. package/dist/runtime/editor/components/InfoBox/index.vue.d.ts +21 -0
  144. package/dist/runtime/editor/components/ItemIcon/index.d.vue.ts +7 -0
  145. package/dist/runtime/editor/components/ItemIcon/index.vue +36 -0
  146. package/dist/runtime/editor/components/ItemIcon/index.vue.d.ts +7 -0
  147. package/dist/runtime/editor/components/ItemIconBox/index.d.vue.ts +18 -0
  148. package/dist/runtime/editor/components/ItemIconBox/index.vue +40 -0
  149. package/dist/runtime/editor/components/ItemIconBox/index.vue.d.ts +18 -0
  150. package/dist/runtime/editor/components/Konami/Game/PixelGrid.d.vue.ts +8 -0
  151. package/dist/runtime/editor/components/Konami/Game/PixelGrid.vue +66 -0
  152. package/dist/runtime/editor/components/Konami/Game/PixelGrid.vue.d.ts +8 -0
  153. package/dist/runtime/editor/components/Konami/Game/index.d.vue.ts +7 -0
  154. package/dist/runtime/editor/components/Konami/Game/index.vue +751 -0
  155. package/dist/runtime/editor/components/Konami/Game/index.vue.d.ts +7 -0
  156. package/dist/runtime/editor/components/Konami/Game/useIconRendering.d.ts +9 -0
  157. package/dist/runtime/editor/components/Konami/Game/useIconRendering.js +131 -0
  158. package/dist/runtime/editor/components/Konami/index.d.vue.ts +3 -0
  159. package/dist/runtime/editor/components/Konami/index.vue +42 -0
  160. package/dist/runtime/editor/components/Konami/index.vue.d.ts +3 -0
  161. package/dist/runtime/editor/components/Loading/index.d.vue.ts +9 -0
  162. package/dist/runtime/editor/components/Loading/index.vue +22 -0
  163. package/dist/runtime/editor/components/Loading/index.vue.d.ts +9 -0
  164. package/dist/runtime/editor/components/Messages/Item/index.d.vue.ts +12 -0
  165. package/dist/runtime/editor/components/Messages/Item/index.vue +105 -0
  166. package/dist/runtime/editor/components/Messages/Item/index.vue.d.ts +12 -0
  167. package/dist/runtime/editor/components/Messages/index.d.vue.ts +3 -0
  168. package/dist/runtime/editor/components/Messages/index.vue +41 -0
  169. package/dist/runtime/editor/components/Messages/index.vue.d.ts +3 -0
  170. package/dist/runtime/editor/components/Overlay/index.d.vue.ts +3 -0
  171. package/dist/runtime/editor/components/Overlay/index.vue +70 -0
  172. package/dist/runtime/editor/components/Overlay/index.vue.d.ts +3 -0
  173. package/dist/runtime/editor/components/Pagination/index.d.vue.ts +14 -0
  174. package/dist/runtime/editor/components/Pagination/index.vue +19 -0
  175. package/dist/runtime/editor/components/Pagination/index.vue.d.ts +14 -0
  176. package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.d.vue.ts +5 -0
  177. package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.vue +17 -0
  178. package/dist/runtime/editor/components/PluginConfigForm/Checkbox/index.vue.d.ts +5 -0
  179. package/dist/runtime/editor/components/PluginConfigForm/Options/index.d.vue.ts +5 -0
  180. package/dist/runtime/editor/components/PluginConfigForm/Options/index.vue +37 -0
  181. package/dist/runtime/editor/components/PluginConfigForm/Options/index.vue.d.ts +5 -0
  182. package/dist/runtime/editor/components/PluginConfigForm/Text/index.d.vue.ts +5 -0
  183. package/dist/runtime/editor/components/PluginConfigForm/Text/index.vue +43 -0
  184. package/dist/runtime/editor/components/PluginConfigForm/Text/index.vue.d.ts +5 -0
  185. package/dist/runtime/editor/components/PluginConfigForm/index.d.vue.ts +30 -0
  186. package/dist/runtime/editor/components/PluginConfigForm/index.vue +59 -0
  187. package/dist/runtime/editor/components/PluginConfigForm/index.vue.d.ts +30 -0
  188. package/dist/runtime/editor/components/PreviewProvider.d.vue.ts +29 -0
  189. package/dist/runtime/editor/components/PreviewProvider.vue +176 -0
  190. package/dist/runtime/editor/components/PreviewProvider.vue.d.ts +29 -0
  191. package/dist/runtime/editor/components/RelativeTime/index.d.vue.ts +16 -0
  192. package/dist/runtime/editor/components/RelativeTime/index.vue +59 -0
  193. package/dist/runtime/editor/components/RelativeTime/index.vue.d.ts +16 -0
  194. package/dist/runtime/editor/components/Resizable/index.d.vue.ts +14 -0
  195. package/dist/runtime/editor/components/Resizable/index.vue.d.ts +14 -0
  196. package/dist/runtime/editor/components/ScaleToFit/index.d.vue.ts +16 -0
  197. package/dist/runtime/editor/components/ScaleToFit/index.vue +70 -0
  198. package/dist/runtime/editor/components/ScaleToFit/index.vue.d.ts +16 -0
  199. package/dist/runtime/editor/components/ScheduleDate/index.d.vue.ts +25 -0
  200. package/dist/runtime/editor/components/ScheduleDate/index.vue +131 -0
  201. package/dist/runtime/editor/components/ScheduleDate/index.vue.d.ts +25 -0
  202. package/dist/runtime/editor/components/ScrollBoundary/index.d.vue.ts +19 -0
  203. package/dist/runtime/editor/components/ScrollBoundary/index.vue +23 -0
  204. package/dist/runtime/editor/components/ScrollBoundary/index.vue.d.ts +19 -0
  205. package/dist/runtime/editor/components/ShortcutIndicator/index.d.vue.ts +21 -0
  206. package/dist/runtime/editor/components/ShortcutIndicator/index.vue +85 -0
  207. package/dist/runtime/editor/components/ShortcutIndicator/index.vue.d.ts +21 -0
  208. package/dist/runtime/editor/components/Sortli/index.d.vue.ts +17 -0
  209. package/dist/runtime/editor/components/Sortli/index.vue +81 -0
  210. package/dist/runtime/editor/components/Sortli/index.vue.d.ts +17 -0
  211. package/dist/runtime/editor/components/SystemRequirements/index.d.vue.ts +3 -0
  212. package/dist/runtime/editor/components/SystemRequirements/index.vue +81 -0
  213. package/dist/runtime/editor/components/SystemRequirements/index.vue.d.ts +3 -0
  214. package/dist/runtime/editor/components/Toolbar/index.d.vue.ts +7 -0
  215. package/dist/runtime/editor/components/Toolbar/index.vue +89 -0
  216. package/dist/runtime/editor/components/Toolbar/index.vue.d.ts +7 -0
  217. package/dist/runtime/editor/components/Transition/Height.d.vue.ts +37 -0
  218. package/dist/runtime/editor/components/Transition/Height.vue.d.ts +37 -0
  219. package/dist/runtime/editor/components/Transition/index.d.vue.ts +20 -0
  220. package/dist/runtime/editor/components/Transition/index.vue.d.ts +20 -0
  221. package/dist/runtime/editor/components/ViewportBlockingRect/index.d.vue.ts +19 -0
  222. package/dist/runtime/editor/components/ViewportBlockingRect/index.vue +60 -0
  223. package/dist/runtime/editor/components/ViewportBlockingRect/index.vue.d.ts +19 -0
  224. package/dist/runtime/editor/components/index.d.ts +37 -0
  225. package/dist/runtime/editor/components/index.js +74 -0
  226. package/dist/runtime/editor/composables/defineAddAction.d.ts +2 -0
  227. package/dist/runtime/editor/composables/defineAddAction.js +10 -0
  228. package/dist/runtime/editor/composables/defineCommands.d.ts +2 -0
  229. package/dist/runtime/editor/composables/defineCommands.js +10 -0
  230. package/dist/runtime/editor/composables/defineDropAreas.d.ts +3 -0
  231. package/dist/runtime/editor/composables/defineDropAreas.js +10 -0
  232. package/dist/runtime/editor/composables/defineItemDropdownAction.d.ts +2 -0
  233. package/dist/runtime/editor/composables/defineItemDropdownAction.js +10 -0
  234. package/dist/runtime/editor/composables/defineMenuButton.d.ts +2 -0
  235. package/dist/runtime/editor/composables/defineMenuButton.js +10 -0
  236. package/dist/runtime/editor/composables/defineRenderer.d.ts +11 -0
  237. package/dist/runtime/editor/composables/defineRenderer.js +9 -0
  238. package/dist/runtime/editor/composables/defineShortcut.d.ts +2 -0
  239. package/dist/runtime/editor/composables/defineShortcut.js +18 -0
  240. package/dist/runtime/editor/composables/defineTourItem.d.ts +2 -0
  241. package/dist/runtime/editor/composables/defineTourItem.js +10 -0
  242. package/dist/runtime/editor/composables/index.d.ts +22 -0
  243. package/dist/runtime/editor/composables/index.js +22 -0
  244. package/dist/runtime/editor/composables/onBlokkliEvent.d.ts +2 -0
  245. package/dist/runtime/editor/composables/onBlokkliEvent.js +10 -0
  246. package/dist/runtime/editor/composables/onBroadcastEvent.d.ts +2 -0
  247. package/dist/runtime/editor/composables/onBroadcastEvent.js +10 -0
  248. package/dist/runtime/editor/composables/useAnimationFrame.d.ts +1 -0
  249. package/dist/runtime/editor/composables/useAnimationFrame.js +14 -0
  250. package/dist/runtime/editor/composables/useDebugLogger.d.ts +2 -0
  251. package/dist/runtime/editor/composables/useDebugLogger.js +5 -0
  252. package/dist/runtime/editor/composables/useDelayedIntersectionObserver.d.ts +5 -0
  253. package/dist/runtime/editor/composables/useDelayedIntersectionObserver.js +27 -0
  254. package/dist/runtime/editor/composables/useDialog.d.ts +3 -0
  255. package/dist/runtime/editor/composables/useFocusTrap.d.ts +52 -0
  256. package/dist/runtime/editor/composables/useFocusTrap.js +59 -0
  257. package/dist/runtime/editor/composables/useGlobalBlokkliObject.d.ts +16 -0
  258. package/dist/runtime/editor/composables/useStateBasedCache.d.ts +4 -0
  259. package/dist/runtime/editor/composables/useStateBasedCache.js +13 -0
  260. package/dist/runtime/editor/composables/useStickyToolbar.d.ts +23 -0
  261. package/dist/runtime/editor/composables/useStickyToolbar.js +234 -0
  262. package/dist/runtime/editor/composables/useTransitionedValue.d.ts +18 -0
  263. package/dist/runtime/editor/composables/useTransitionedValue.js +57 -0
  264. package/dist/runtime/editor/css/output.css +1 -0
  265. package/dist/runtime/editor/events/index.d.ts +228 -0
  266. package/dist/runtime/editor/events/index.js +6 -0
  267. package/dist/runtime/editor/features/add-list/Actions/Action.d.vue.ts +8 -0
  268. package/dist/runtime/editor/features/add-list/Actions/Action.vue +53 -0
  269. package/dist/runtime/editor/features/add-list/Actions/Action.vue.d.ts +8 -0
  270. package/dist/runtime/editor/features/add-list/Actions/index.d.vue.ts +6 -0
  271. package/dist/runtime/editor/features/add-list/Actions/index.vue +41 -0
  272. package/dist/runtime/editor/features/add-list/Actions/index.vue.d.ts +6 -0
  273. package/dist/runtime/editor/features/add-list/Blocks/index.d.vue.ts +12 -0
  274. package/dist/runtime/editor/features/add-list/Blocks/index.vue +274 -0
  275. package/dist/runtime/editor/features/add-list/Blocks/index.vue.d.ts +12 -0
  276. package/dist/runtime/editor/features/add-list/index.d.vue.ts +3 -0
  277. package/dist/runtime/editor/features/add-list/index.vue +148 -0
  278. package/dist/runtime/editor/features/add-list/index.vue.d.ts +3 -0
  279. package/dist/runtime/editor/features/add-list/types.d.ts +19 -0
  280. package/dist/runtime/editor/features/add-list/types.js +0 -0
  281. package/dist/runtime/editor/features/analyze/Icon.d.vue.ts +6 -0
  282. package/dist/runtime/editor/features/analyze/Icon.vue.d.ts +6 -0
  283. package/dist/runtime/editor/features/analyze/Main.d.vue.ts +16 -0
  284. package/dist/runtime/editor/features/analyze/Main.vue +385 -0
  285. package/dist/runtime/editor/features/analyze/Main.vue.d.ts +16 -0
  286. package/dist/runtime/editor/features/analyze/Renderer/index.d.vue.ts +22 -0
  287. package/dist/runtime/editor/features/analyze/Renderer/index.vue +259 -0
  288. package/dist/runtime/editor/features/analyze/Renderer/index.vue.d.ts +22 -0
  289. package/dist/runtime/editor/features/analyze/Results/Results.d.vue.ts +15 -0
  290. package/dist/runtime/editor/features/analyze/Results/Results.vue +102 -0
  291. package/dist/runtime/editor/features/analyze/Results/Results.vue.d.ts +15 -0
  292. package/dist/runtime/editor/features/analyze/Results/ResultsItem.d.vue.ts +23 -0
  293. package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue +56 -0
  294. package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue.d.ts +23 -0
  295. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.d.vue.ts +16 -0
  296. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue +80 -0
  297. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue.d.ts +16 -0
  298. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.d.vue.ts +16 -0
  299. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue +123 -0
  300. package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue.d.ts +16 -0
  301. package/dist/runtime/editor/features/analyze/Results/Status.d.vue.ts +9 -0
  302. package/dist/runtime/editor/features/analyze/Results/Status.vue.d.ts +9 -0
  303. package/dist/runtime/editor/features/analyze/Summary/Chart.d.vue.ts +18 -0
  304. package/dist/runtime/editor/features/analyze/Summary/Chart.vue.d.ts +18 -0
  305. package/dist/runtime/editor/features/analyze/Summary/index.d.vue.ts +7 -0
  306. package/dist/runtime/editor/features/analyze/Summary/index.vue +77 -0
  307. package/dist/runtime/editor/features/analyze/Summary/index.vue.d.ts +7 -0
  308. package/dist/runtime/editor/features/analyze/analyzers/axe.d.ts +12 -0
  309. package/dist/runtime/editor/features/analyze/analyzers/axe.js +78 -0
  310. package/dist/runtime/editor/features/analyze/analyzers/helpers/Context.d.ts +33 -0
  311. package/dist/runtime/editor/features/analyze/analyzers/readability.js +206 -0
  312. package/dist/runtime/editor/features/analyze/analyzers/types.js +0 -0
  313. package/dist/runtime/editor/features/analyze/index.d.vue.ts +3 -0
  314. package/dist/runtime/editor/features/analyze/index.vue +69 -0
  315. package/dist/runtime/editor/features/analyze/index.vue.d.ts +3 -0
  316. package/dist/runtime/editor/features/analyze/types.d.ts +6 -0
  317. package/dist/runtime/editor/features/analyze/types.js +0 -0
  318. package/dist/runtime/editor/features/anchors/Overlay/index.d.vue.ts +3 -0
  319. package/dist/runtime/editor/features/anchors/Overlay/index.vue +53 -0
  320. package/dist/runtime/editor/features/anchors/Overlay/index.vue.d.ts +3 -0
  321. package/dist/runtime/editor/features/anchors/index.d.vue.ts +3 -0
  322. package/dist/runtime/editor/features/anchors/index.vue +32 -0
  323. package/dist/runtime/editor/features/anchors/index.vue.d.ts +3 -0
  324. package/dist/runtime/editor/features/anchors/types.d.ts +8 -0
  325. package/dist/runtime/editor/features/anchors/types.js +0 -0
  326. package/dist/runtime/editor/features/artboard/Overview/index.d.vue.ts +7 -0
  327. package/dist/runtime/editor/features/artboard/Overview/index.vue +122 -0
  328. package/dist/runtime/editor/features/artboard/Overview/index.vue.d.ts +7 -0
  329. package/dist/runtime/editor/features/artboard/Renderer.d.vue.ts +8 -0
  330. package/dist/runtime/editor/features/artboard/Renderer.vue +322 -0
  331. package/dist/runtime/editor/features/artboard/Renderer.vue.d.ts +8 -0
  332. package/dist/runtime/editor/features/artboard/Scrollbar/index.d.vue.ts +8 -0
  333. package/dist/runtime/editor/features/artboard/Scrollbar/index.vue.d.ts +8 -0
  334. package/dist/runtime/editor/features/artboard/index.d.vue.ts +3 -0
  335. package/dist/runtime/editor/features/artboard/index.vue +92 -0
  336. package/dist/runtime/editor/features/artboard/index.vue.d.ts +3 -0
  337. package/dist/runtime/editor/features/assistant/Overlay/ResultMarkup/index.d.vue.ts +7 -0
  338. package/dist/runtime/editor/features/assistant/Overlay/ResultMarkup/index.vue.d.ts +7 -0
  339. package/dist/runtime/editor/features/assistant/Overlay/index.d.vue.ts +9 -0
  340. package/dist/runtime/editor/features/assistant/Overlay/index.vue +108 -0
  341. package/dist/runtime/editor/features/assistant/Overlay/index.vue.d.ts +9 -0
  342. package/dist/runtime/editor/features/assistant/index.d.vue.ts +3 -0
  343. package/dist/runtime/editor/features/assistant/index.vue +65 -0
  344. package/dist/runtime/editor/features/assistant/index.vue.d.ts +3 -0
  345. package/dist/runtime/editor/features/assistant/types.d.ts +37 -0
  346. package/dist/runtime/editor/features/assistant/types.js +0 -0
  347. package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.d.vue.ts +29 -0
  348. package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.vue +154 -0
  349. package/dist/runtime/editor/features/block-scheduler/Dialog/ScheduleSection.vue.d.ts +29 -0
  350. package/dist/runtime/editor/features/block-scheduler/Dialog/index.d.vue.ts +12 -0
  351. package/dist/runtime/editor/features/block-scheduler/Dialog/index.vue +232 -0
  352. package/dist/runtime/editor/features/block-scheduler/Dialog/index.vue.d.ts +12 -0
  353. package/dist/runtime/editor/features/block-scheduler/index.d.vue.ts +3 -0
  354. package/dist/runtime/editor/features/block-scheduler/index.vue +96 -0
  355. package/dist/runtime/editor/features/block-scheduler/index.vue.d.ts +3 -0
  356. package/dist/runtime/editor/features/block-scheduler/types.d.ts +25 -0
  357. package/dist/runtime/editor/features/block-scheduler/types.js +0 -0
  358. package/dist/runtime/editor/features/breadcrumbs/index.d.vue.ts +3 -0
  359. package/dist/runtime/editor/features/breadcrumbs/index.vue +206 -0
  360. package/dist/runtime/editor/features/breadcrumbs/index.vue.d.ts +3 -0
  361. package/dist/runtime/editor/features/clipboard/List/Item/File.d.vue.ts +4 -0
  362. package/dist/runtime/editor/features/clipboard/List/Item/File.vue.d.ts +4 -0
  363. package/dist/runtime/editor/features/clipboard/List/Item/Video.d.vue.ts +4 -0
  364. package/dist/runtime/editor/features/clipboard/List/Item/Video.vue +54 -0
  365. package/dist/runtime/editor/features/clipboard/List/Item/Video.vue.d.ts +4 -0
  366. package/dist/runtime/editor/features/clipboard/List/index.d.vue.ts +11 -0
  367. package/dist/runtime/editor/features/clipboard/List/index.vue +72 -0
  368. package/dist/runtime/editor/features/clipboard/List/index.vue.d.ts +11 -0
  369. package/dist/runtime/editor/features/clipboard/index.d.vue.ts +3 -0
  370. package/dist/runtime/editor/features/clipboard/index.vue +606 -0
  371. package/dist/runtime/editor/features/clipboard/index.vue.d.ts +3 -0
  372. package/dist/runtime/editor/features/clipboard/types.d.ts +99 -0
  373. package/dist/runtime/editor/features/clipboard/types.js +0 -0
  374. package/dist/runtime/editor/features/command-palette/Palette/Item/index.d.vue.ts +20 -0
  375. package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue +49 -0
  376. package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue.d.ts +20 -0
  377. package/dist/runtime/editor/features/command-palette/Palette/index.d.vue.ts +7 -0
  378. package/dist/runtime/editor/features/command-palette/Palette/index.vue +229 -0
  379. package/dist/runtime/editor/features/command-palette/Palette/index.vue.d.ts +7 -0
  380. package/dist/runtime/editor/features/command-palette/index.d.vue.ts +3 -0
  381. package/dist/runtime/editor/features/command-palette/index.vue +51 -0
  382. package/dist/runtime/editor/features/command-palette/index.vue.d.ts +3 -0
  383. package/dist/runtime/editor/features/command-palette/types.d.ts +11 -0
  384. package/dist/runtime/editor/features/command-palette/types.js +0 -0
  385. package/dist/runtime/editor/features/comments/AddForm/index.d.vue.ts +11 -0
  386. package/dist/runtime/editor/features/comments/AddForm/index.vue +44 -0
  387. package/dist/runtime/editor/features/comments/AddForm/index.vue.d.ts +11 -0
  388. package/dist/runtime/editor/features/comments/Comment/index.d.vue.ts +24 -0
  389. package/dist/runtime/editor/features/comments/Comment/index.vue +45 -0
  390. package/dist/runtime/editor/features/comments/Comment/index.vue.d.ts +24 -0
  391. package/dist/runtime/editor/features/comments/CommentInput/index.d.vue.ts +15 -0
  392. package/dist/runtime/editor/features/comments/CommentInput/index.vue.d.ts +15 -0
  393. package/dist/runtime/editor/features/comments/Overlay/Item/index.d.vue.ts +21 -0
  394. package/dist/runtime/editor/features/comments/Overlay/Item/index.vue +94 -0
  395. package/dist/runtime/editor/features/comments/Overlay/Item/index.vue.d.ts +21 -0
  396. package/dist/runtime/editor/features/comments/Overlay/index.d.vue.ts +19 -0
  397. package/dist/runtime/editor/features/comments/Overlay/index.vue +113 -0
  398. package/dist/runtime/editor/features/comments/Overlay/index.vue.d.ts +19 -0
  399. package/dist/runtime/editor/features/comments/index.d.vue.ts +3 -0
  400. package/dist/runtime/editor/features/comments/index.vue +112 -0
  401. package/dist/runtime/editor/features/comments/index.vue.d.ts +3 -0
  402. package/dist/runtime/editor/features/comments/types.d.ts +26 -0
  403. package/dist/runtime/editor/features/comments/types.js +0 -0
  404. package/dist/runtime/editor/features/conversions/index.d.vue.ts +3 -0
  405. package/dist/runtime/editor/features/conversions/index.vue +84 -0
  406. package/dist/runtime/editor/features/conversions/index.vue.d.ts +3 -0
  407. package/dist/runtime/editor/features/conversions/types.d.ts +16 -0
  408. package/dist/runtime/editor/features/conversions/types.js +0 -0
  409. package/dist/runtime/editor/features/debug/DebugSection.d.vue.ts +17 -0
  410. package/dist/runtime/editor/features/debug/DebugSection.vue.d.ts +17 -0
  411. package/dist/runtime/editor/features/debug/Main.d.vue.ts +7 -0
  412. package/dist/runtime/editor/features/debug/Main.vue +80 -0
  413. package/dist/runtime/editor/features/debug/Main.vue.d.ts +7 -0
  414. package/dist/runtime/editor/features/debug/Rects/index.d.vue.ts +3 -0
  415. package/dist/runtime/editor/features/debug/Rects/index.vue +61 -0
  416. package/dist/runtime/editor/features/debug/Rects/index.vue.d.ts +3 -0
  417. package/dist/runtime/editor/features/debug/Section/Features.d.vue.ts +3 -0
  418. package/dist/runtime/editor/features/debug/Section/Features.vue.d.ts +3 -0
  419. package/dist/runtime/editor/features/debug/Section/Icons.d.vue.ts +3 -0
  420. package/dist/runtime/editor/features/debug/Section/Icons.vue +17 -0
  421. package/dist/runtime/editor/features/debug/Section/Icons.vue.d.ts +3 -0
  422. package/dist/runtime/editor/features/debug/Section/Keyboard.d.vue.ts +3 -0
  423. package/dist/runtime/editor/features/debug/Section/Keyboard.vue.d.ts +3 -0
  424. package/dist/runtime/editor/features/debug/Section/Logging.d.vue.ts +7 -0
  425. package/dist/runtime/editor/features/debug/Section/Logging.vue +66 -0
  426. package/dist/runtime/editor/features/debug/Section/Logging.vue.d.ts +7 -0
  427. package/dist/runtime/editor/features/debug/Section/Rendering.d.vue.ts +3 -0
  428. package/dist/runtime/editor/features/debug/Section/Rendering.vue +96 -0
  429. package/dist/runtime/editor/features/debug/Section/Rendering.vue.d.ts +3 -0
  430. package/dist/runtime/editor/features/debug/Section/Selection.d.vue.ts +3 -0
  431. package/dist/runtime/editor/features/debug/Section/Selection.vue.d.ts +3 -0
  432. package/dist/runtime/editor/features/debug/Viewport/index.d.vue.ts +3 -0
  433. package/dist/runtime/editor/features/debug/Viewport/index.vue +98 -0
  434. package/dist/runtime/editor/features/debug/Viewport/index.vue.d.ts +3 -0
  435. package/dist/runtime/editor/features/debug/index.d.vue.ts +3 -0
  436. package/dist/runtime/editor/features/debug/index.vue +31 -0
  437. package/dist/runtime/editor/features/debug/index.vue.d.ts +3 -0
  438. package/dist/runtime/editor/features/delete/index.d.vue.ts +3 -0
  439. package/dist/runtime/editor/features/delete/index.vue +68 -0
  440. package/dist/runtime/editor/features/delete/index.vue.d.ts +3 -0
  441. package/dist/runtime/editor/features/delete/types.d.ts +8 -0
  442. package/dist/runtime/editor/features/delete/types.js +0 -0
  443. package/dist/runtime/editor/features/dev-mode/index.d.vue.ts +3 -0
  444. package/dist/runtime/editor/features/dev-mode/index.vue +38 -0
  445. package/dist/runtime/editor/features/dev-mode/index.vue.d.ts +3 -0
  446. package/dist/runtime/editor/features/diff/DiffView/index.d.vue.ts +3 -0
  447. package/dist/runtime/editor/features/diff/DiffView/index.vue +20 -0
  448. package/dist/runtime/editor/features/diff/DiffView/index.vue.d.ts +3 -0
  449. package/dist/runtime/editor/features/diff/index.d.vue.ts +3 -0
  450. package/dist/runtime/editor/features/diff/index.vue +35 -0
  451. package/dist/runtime/editor/features/diff/index.vue.d.ts +3 -0
  452. package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.d.vue.ts +26 -0
  453. package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.vue +113 -0
  454. package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.vue.d.ts +26 -0
  455. package/dist/runtime/editor/features/dragging-overlay/DragItems/index.d.vue.ts +29 -0
  456. package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue +254 -0
  457. package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue.d.ts +29 -0
  458. package/dist/runtime/editor/features/dragging-overlay/Renderer/index.d.vue.ts +29 -0
  459. package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue +818 -0
  460. package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue.d.ts +29 -0
  461. package/dist/runtime/editor/features/dragging-overlay/index.d.vue.ts +3 -0
  462. package/dist/runtime/editor/features/dragging-overlay/index.vue +438 -0
  463. package/dist/runtime/editor/features/dragging-overlay/index.vue.d.ts +3 -0
  464. package/dist/runtime/editor/features/duplicate/index.d.vue.ts +3 -0
  465. package/dist/runtime/editor/features/duplicate/index.vue +105 -0
  466. package/dist/runtime/editor/features/duplicate/index.vue.d.ts +3 -0
  467. package/dist/runtime/editor/features/duplicate/types.d.ts +8 -0
  468. package/dist/runtime/editor/features/duplicate/types.js +0 -0
  469. package/dist/runtime/editor/features/edit/index.d.vue.ts +3 -0
  470. package/dist/runtime/editor/features/edit/index.vue +76 -0
  471. package/dist/runtime/editor/features/edit/index.vue.d.ts +3 -0
  472. package/dist/runtime/editor/features/edit/types.d.ts +9 -0
  473. package/dist/runtime/editor/features/edit/types.js +0 -0
  474. package/dist/runtime/editor/features/edit-form/Frame/index.d.vue.ts +12 -0
  475. package/dist/runtime/editor/features/edit-form/Frame/index.vue +70 -0
  476. package/dist/runtime/editor/features/edit-form/Frame/index.vue.d.ts +12 -0
  477. package/dist/runtime/editor/features/edit-form/index.d.vue.ts +3 -0
  478. package/dist/runtime/editor/features/edit-form/index.vue +176 -0
  479. package/dist/runtime/editor/features/edit-form/index.vue.d.ts +3 -0
  480. package/dist/runtime/editor/features/editable-field/Overlay/Contenteditable/index.d.vue.ts +13 -0
  481. package/dist/runtime/editor/features/editable-field/Overlay/Contenteditable/index.vue.d.ts +13 -0
  482. package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.d.vue.ts +19 -0
  483. package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue +116 -0
  484. package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue.d.ts +19 -0
  485. package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.d.vue.ts +20 -0
  486. package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue +81 -0
  487. package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue.d.ts +20 -0
  488. package/dist/runtime/editor/features/editable-field/Overlay/index.d.vue.ts +17 -0
  489. package/dist/runtime/editor/features/editable-field/Overlay/index.vue +317 -0
  490. package/dist/runtime/editor/features/editable-field/Overlay/index.vue.d.ts +17 -0
  491. package/dist/runtime/editor/features/editable-field/index.d.vue.ts +3 -0
  492. package/dist/runtime/editor/features/editable-field/index.vue +150 -0
  493. package/dist/runtime/editor/features/editable-field/index.vue.d.ts +3 -0
  494. package/dist/runtime/editor/features/editable-field/types.d.ts +54 -0
  495. package/dist/runtime/editor/features/editable-field/types.js +0 -0
  496. package/dist/runtime/editor/features/editable-mask/index.d.vue.ts +3 -0
  497. package/dist/runtime/editor/features/editable-mask/index.vue +39 -0
  498. package/dist/runtime/editor/features/editable-mask/index.vue.d.ts +3 -0
  499. package/dist/runtime/editor/features/entity-title/index.d.vue.ts +3 -0
  500. package/dist/runtime/editor/features/entity-title/index.vue +136 -0
  501. package/dist/runtime/editor/features/entity-title/index.vue.d.ts +3 -0
  502. package/dist/runtime/editor/features/exit/index.d.vue.ts +3 -0
  503. package/dist/runtime/editor/features/exit/index.vue +38 -0
  504. package/dist/runtime/editor/features/exit/index.vue.d.ts +3 -0
  505. package/dist/runtime/editor/features/fragments/Dialog/Item/index.d.vue.ts +9 -0
  506. package/dist/runtime/editor/features/fragments/Dialog/Item/index.vue +58 -0
  507. package/dist/runtime/editor/features/fragments/Dialog/Item/index.vue.d.ts +9 -0
  508. package/dist/runtime/editor/features/fragments/Dialog/index.d.vue.ts +13 -0
  509. package/dist/runtime/editor/features/fragments/Dialog/index.vue +122 -0
  510. package/dist/runtime/editor/features/fragments/Dialog/index.vue.d.ts +13 -0
  511. package/dist/runtime/editor/features/fragments/index.d.vue.ts +3 -0
  512. package/dist/runtime/editor/features/fragments/index.vue +75 -0
  513. package/dist/runtime/editor/features/fragments/index.vue.d.ts +3 -0
  514. package/dist/runtime/editor/features/fragments/types.d.ts +14 -0
  515. package/dist/runtime/editor/features/fragments/types.js +0 -0
  516. package/dist/runtime/editor/features/grid/index.d.vue.ts +3 -0
  517. package/dist/runtime/editor/features/grid/index.vue +37 -0
  518. package/dist/runtime/editor/features/grid/index.vue.d.ts +3 -0
  519. package/dist/runtime/editor/features/grid/types.d.ts +8 -0
  520. package/dist/runtime/editor/features/grid/types.js +0 -0
  521. package/dist/runtime/editor/features/help/Shortcuts/index.d.vue.ts +3 -0
  522. package/dist/runtime/editor/features/help/Shortcuts/index.vue +60 -0
  523. package/dist/runtime/editor/features/help/Shortcuts/index.vue.d.ts +3 -0
  524. package/dist/runtime/editor/features/help/index.d.vue.ts +3 -0
  525. package/dist/runtime/editor/features/help/index.vue +49 -0
  526. package/dist/runtime/editor/features/help/index.vue.d.ts +3 -0
  527. package/dist/runtime/editor/features/history/List/index.d.vue.ts +6 -0
  528. package/dist/runtime/editor/features/history/List/index.vue +128 -0
  529. package/dist/runtime/editor/features/history/List/index.vue.d.ts +6 -0
  530. package/dist/runtime/editor/features/history/index.d.vue.ts +3 -0
  531. package/dist/runtime/editor/features/history/index.vue +151 -0
  532. package/dist/runtime/editor/features/history/index.vue.d.ts +3 -0
  533. package/dist/runtime/editor/features/history/types.d.ts +12 -0
  534. package/dist/runtime/editor/features/history/types.js +0 -0
  535. package/dist/runtime/editor/features/hover/Renderer/index.d.vue.ts +3 -0
  536. package/dist/runtime/editor/features/hover/Renderer/index.vue +448 -0
  537. package/dist/runtime/editor/features/hover/Renderer/index.vue.d.ts +3 -0
  538. package/dist/runtime/editor/features/hover/index.d.vue.ts +3 -0
  539. package/dist/runtime/editor/features/hover/index.vue +28 -0
  540. package/dist/runtime/editor/features/hover/index.vue.d.ts +3 -0
  541. package/dist/runtime/editor/features/import-existing/Dialog/index.d.vue.ts +15 -0
  542. package/dist/runtime/editor/features/import-existing/Dialog/index.vue +122 -0
  543. package/dist/runtime/editor/features/import-existing/Dialog/index.vue.d.ts +15 -0
  544. package/dist/runtime/editor/features/import-existing/index.d.vue.ts +3 -0
  545. package/dist/runtime/editor/features/import-existing/index.vue +80 -0
  546. package/dist/runtime/editor/features/import-existing/index.vue.d.ts +3 -0
  547. package/dist/runtime/editor/features/import-existing/types.d.ts +23 -0
  548. package/dist/runtime/editor/features/import-existing/types.js +0 -0
  549. package/dist/runtime/editor/features/library/EditReusable/index.d.vue.ts +14 -0
  550. package/dist/runtime/editor/features/library/EditReusable/index.vue +165 -0
  551. package/dist/runtime/editor/features/library/EditReusable/index.vue.d.ts +14 -0
  552. package/dist/runtime/editor/features/library/LibraryDialog/Item/index.d.vue.ts +10 -0
  553. package/dist/runtime/editor/features/library/LibraryDialog/Item/index.vue +67 -0
  554. package/dist/runtime/editor/features/library/LibraryDialog/Item/index.vue.d.ts +10 -0
  555. package/dist/runtime/editor/features/library/LibraryDialog/index.d.vue.ts +13 -0
  556. package/dist/runtime/editor/features/library/LibraryDialog/index.vue +143 -0
  557. package/dist/runtime/editor/features/library/LibraryDialog/index.vue.d.ts +13 -0
  558. package/dist/runtime/editor/features/library/ReusableDialog/index.d.vue.ts +13 -0
  559. package/dist/runtime/editor/features/library/ReusableDialog/index.vue +99 -0
  560. package/dist/runtime/editor/features/library/ReusableDialog/index.vue.d.ts +13 -0
  561. package/dist/runtime/editor/features/library/index.d.vue.ts +3 -0
  562. package/dist/runtime/editor/features/library/index.vue +195 -0
  563. package/dist/runtime/editor/features/library/index.vue.d.ts +3 -0
  564. package/dist/runtime/editor/features/library/types.d.ts +80 -0
  565. package/dist/runtime/editor/features/library/types.js +0 -0
  566. package/dist/runtime/editor/features/media-library/Library/Item.d.vue.ts +22 -0
  567. package/dist/runtime/editor/features/media-library/Library/Item.vue +41 -0
  568. package/dist/runtime/editor/features/media-library/Library/Item.vue.d.ts +22 -0
  569. package/dist/runtime/editor/features/media-library/Library/index.d.vue.ts +6 -0
  570. package/dist/runtime/editor/features/media-library/Library/index.vue +195 -0
  571. package/dist/runtime/editor/features/media-library/Library/index.vue.d.ts +6 -0
  572. package/dist/runtime/editor/features/media-library/index.d.vue.ts +3 -0
  573. package/dist/runtime/editor/features/media-library/index.vue +108 -0
  574. package/dist/runtime/editor/features/media-library/index.vue.d.ts +3 -0
  575. package/dist/runtime/editor/features/media-library/types.d.ts +85 -0
  576. package/dist/runtime/editor/features/media-library/types.js +0 -0
  577. package/dist/runtime/editor/features/multi-select/Renderer/index.d.vue.ts +12 -0
  578. package/dist/runtime/editor/features/multi-select/Renderer/index.vue +297 -0
  579. package/dist/runtime/editor/features/multi-select/Renderer/index.vue.d.ts +12 -0
  580. package/dist/runtime/editor/features/multi-select/index.d.vue.ts +3 -0
  581. package/dist/runtime/editor/features/multi-select/index.vue +69 -0
  582. package/dist/runtime/editor/features/multi-select/index.vue.d.ts +3 -0
  583. package/dist/runtime/editor/features/options/Form/Checkbox/index.d.vue.ts +17 -0
  584. package/dist/runtime/editor/features/options/Form/Checkbox/index.vue +46 -0
  585. package/dist/runtime/editor/features/options/Form/Checkbox/index.vue.d.ts +17 -0
  586. package/dist/runtime/editor/features/options/Form/Checkboxes/index.d.vue.ts +25 -0
  587. package/dist/runtime/editor/features/options/Form/Checkboxes/index.vue +112 -0
  588. package/dist/runtime/editor/features/options/Form/Checkboxes/index.vue.d.ts +25 -0
  589. package/dist/runtime/editor/features/options/Form/Color/index.d.vue.ts +13 -0
  590. package/dist/runtime/editor/features/options/Form/Color/index.vue.d.ts +13 -0
  591. package/dist/runtime/editor/features/options/Form/DateTimeLocal/index.d.vue.ts +21 -0
  592. package/dist/runtime/editor/features/options/Form/DateTimeLocal/index.vue.d.ts +21 -0
  593. package/dist/runtime/editor/features/options/Form/Group.d.vue.ts +21 -0
  594. package/dist/runtime/editor/features/options/Form/Group.vue +23 -0
  595. package/dist/runtime/editor/features/options/Form/Group.vue.d.ts +21 -0
  596. package/dist/runtime/editor/features/options/Form/Item.d.vue.ts +14 -0
  597. package/dist/runtime/editor/features/options/Form/Item.vue +186 -0
  598. package/dist/runtime/editor/features/options/Form/Item.vue.d.ts +14 -0
  599. package/dist/runtime/editor/features/options/Form/Number/index.d.vue.ts +22 -0
  600. package/dist/runtime/editor/features/options/Form/Number/index.vue +64 -0
  601. package/dist/runtime/editor/features/options/Form/Number/index.vue.d.ts +22 -0
  602. package/dist/runtime/editor/features/options/Form/Radios/index.d.vue.ts +37 -0
  603. package/dist/runtime/editor/features/options/Form/Radios/index.vue +129 -0
  604. package/dist/runtime/editor/features/options/Form/Radios/index.vue.d.ts +37 -0
  605. package/dist/runtime/editor/features/options/Form/Range/index.d.vue.ts +19 -0
  606. package/dist/runtime/editor/features/options/Form/Range/index.vue.d.ts +19 -0
  607. package/dist/runtime/editor/features/options/Form/Text/index.d.vue.ts +18 -0
  608. package/dist/runtime/editor/features/options/Form/Text/index.vue.d.ts +18 -0
  609. package/dist/runtime/editor/features/options/Form/index.d.vue.ts +10 -0
  610. package/dist/runtime/editor/features/options/Form/index.vue +382 -0
  611. package/dist/runtime/editor/features/options/Form/index.vue.d.ts +10 -0
  612. package/dist/runtime/editor/features/options/index.d.vue.ts +3 -0
  613. package/dist/runtime/editor/features/options/index.vue +85 -0
  614. package/dist/runtime/editor/features/options/index.vue.d.ts +3 -0
  615. package/dist/runtime/editor/features/options/types.d.ts +21 -0
  616. package/dist/runtime/editor/features/options/types.js +0 -0
  617. package/dist/runtime/editor/features/ownership/Banner/index.d.vue.ts +7 -0
  618. package/dist/runtime/editor/features/ownership/Banner/index.vue +35 -0
  619. package/dist/runtime/editor/features/ownership/Banner/index.vue.d.ts +7 -0
  620. package/dist/runtime/editor/features/ownership/index.d.vue.ts +3 -0
  621. package/dist/runtime/editor/features/ownership/index.vue +32 -0
  622. package/dist/runtime/editor/features/ownership/index.vue.d.ts +3 -0
  623. package/dist/runtime/editor/features/ownership/types.d.ts +8 -0
  624. package/dist/runtime/editor/features/ownership/types.js +0 -0
  625. package/dist/runtime/editor/features/preview/index.d.vue.ts +3 -0
  626. package/dist/runtime/editor/features/preview/index.vue +41 -0
  627. package/dist/runtime/editor/features/preview/index.vue.d.ts +3 -0
  628. package/dist/runtime/editor/features/preview-grant/QrCode/index.d.vue.ts +6 -0
  629. package/dist/runtime/editor/features/preview-grant/QrCode/index.vue.d.ts +6 -0
  630. package/dist/runtime/editor/features/preview-grant/index.d.vue.ts +3 -0
  631. package/dist/runtime/editor/features/preview-grant/index.vue +71 -0
  632. package/dist/runtime/editor/features/preview-grant/index.vue.d.ts +3 -0
  633. package/dist/runtime/editor/features/preview-grant/types.d.ts +10 -0
  634. package/dist/runtime/editor/features/preview-grant/types.js +0 -0
  635. package/dist/runtime/editor/features/proxy-view/index.d.vue.ts +3 -0
  636. package/dist/runtime/editor/features/proxy-view/index.vue +40 -0
  637. package/dist/runtime/editor/features/proxy-view/index.vue.d.ts +3 -0
  638. package/dist/runtime/editor/features/publish/Dialog/Item.d.vue.ts +22 -0
  639. package/dist/runtime/editor/features/publish/Dialog/Item.vue +145 -0
  640. package/dist/runtime/editor/features/publish/Dialog/Item.vue.d.ts +22 -0
  641. package/dist/runtime/editor/features/publish/Dialog/PublishOption.d.vue.ts +21 -0
  642. package/dist/runtime/editor/features/publish/Dialog/PublishOption.vue +47 -0
  643. package/dist/runtime/editor/features/publish/Dialog/PublishOption.vue.d.ts +21 -0
  644. package/dist/runtime/editor/features/publish/Dialog/Summary.d.vue.ts +10 -0
  645. package/dist/runtime/editor/features/publish/Dialog/Summary.vue +83 -0
  646. package/dist/runtime/editor/features/publish/Dialog/Summary.vue.d.ts +10 -0
  647. package/dist/runtime/editor/features/publish/Dialog/index.d.vue.ts +9 -0
  648. package/dist/runtime/editor/features/publish/Dialog/index.vue +579 -0
  649. package/dist/runtime/editor/features/publish/Dialog/index.vue.d.ts +9 -0
  650. package/dist/runtime/editor/features/publish/Dialog/types.d.ts +7 -0
  651. package/dist/runtime/editor/features/publish/Dialog/types.js +0 -0
  652. package/dist/runtime/editor/features/publish/index.d.vue.ts +3 -0
  653. package/dist/runtime/editor/features/publish/index.vue +131 -0
  654. package/dist/runtime/editor/features/publish/index.vue.d.ts +3 -0
  655. package/dist/runtime/editor/features/publish/types.d.ts +109 -0
  656. package/dist/runtime/editor/features/publish/types.js +0 -0
  657. package/dist/runtime/editor/features/responsive-preview/Frame/index.d.vue.ts +17 -0
  658. package/dist/runtime/editor/features/responsive-preview/Frame/index.vue +76 -0
  659. package/dist/runtime/editor/features/responsive-preview/Frame/index.vue.d.ts +17 -0
  660. package/dist/runtime/editor/features/responsive-preview/index.d.vue.ts +3 -0
  661. package/dist/runtime/editor/features/responsive-preview/index.vue +193 -0
  662. package/dist/runtime/editor/features/responsive-preview/index.vue.d.ts +3 -0
  663. package/dist/runtime/editor/features/revert/index.d.vue.ts +3 -0
  664. package/dist/runtime/editor/features/revert/index.vue +68 -0
  665. package/dist/runtime/editor/features/revert/index.vue.d.ts +3 -0
  666. package/dist/runtime/editor/features/revert/types.d.ts +8 -0
  667. package/dist/runtime/editor/features/revert/types.js +0 -0
  668. package/dist/runtime/editor/features/search/Overlay/Results/Content/index.d.vue.ts +18 -0
  669. package/dist/runtime/editor/features/search/Overlay/Results/Content/index.vue +167 -0
  670. package/dist/runtime/editor/features/search/Overlay/Results/Content/index.vue.d.ts +18 -0
  671. package/dist/runtime/editor/features/search/Overlay/Results/Page/index.d.vue.ts +19 -0
  672. package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue +172 -0
  673. package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue.d.ts +19 -0
  674. package/dist/runtime/editor/features/search/Overlay/index.d.vue.ts +14 -0
  675. package/dist/runtime/editor/features/search/Overlay/index.vue +183 -0
  676. package/dist/runtime/editor/features/search/Overlay/index.vue.d.ts +14 -0
  677. package/dist/runtime/editor/features/search/index.d.vue.ts +3 -0
  678. package/dist/runtime/editor/features/search/index.vue +76 -0
  679. package/dist/runtime/editor/features/search/index.vue.d.ts +3 -0
  680. package/dist/runtime/editor/features/search/types.d.ts +73 -0
  681. package/dist/runtime/editor/features/search/types.js +0 -0
  682. package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.d.vue.ts +33 -0
  683. package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue +591 -0
  684. package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue.d.ts +33 -0
  685. package/dist/runtime/editor/features/selection/AddButtons/index.d.vue.ts +7 -0
  686. package/dist/runtime/editor/features/selection/AddButtons/index.vue +395 -0
  687. package/dist/runtime/editor/features/selection/AddButtons/index.vue.d.ts +7 -0
  688. package/dist/runtime/editor/features/selection/Renderer/index.d.vue.ts +10 -0
  689. package/dist/runtime/editor/features/selection/Renderer/index.vue +279 -0
  690. package/dist/runtime/editor/features/selection/Renderer/index.vue.d.ts +10 -0
  691. package/dist/runtime/editor/features/selection/index.d.vue.ts +3 -0
  692. package/dist/runtime/editor/features/selection/index.vue +304 -0
  693. package/dist/runtime/editor/features/selection/index.vue.d.ts +3 -0
  694. package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.d.vue.ts +10 -0
  695. package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.vue +126 -0
  696. package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.vue.d.ts +10 -0
  697. package/dist/runtime/editor/features/settings/Dialog/index.d.vue.ts +7 -0
  698. package/dist/runtime/editor/features/settings/Dialog/index.vue +130 -0
  699. package/dist/runtime/editor/features/settings/Dialog/index.vue.d.ts +7 -0
  700. package/dist/runtime/editor/features/settings/index.d.vue.ts +3 -0
  701. package/dist/runtime/editor/features/settings/index.vue +77 -0
  702. package/dist/runtime/editor/features/settings/index.vue.d.ts +3 -0
  703. package/dist/runtime/editor/features/structure/List/Field/index.d.vue.ts +16 -0
  704. package/dist/runtime/editor/features/structure/List/Field/index.vue +145 -0
  705. package/dist/runtime/editor/features/structure/List/Field/index.vue.d.ts +16 -0
  706. package/dist/runtime/editor/features/structure/List/Item/index.d.vue.ts +13 -0
  707. package/dist/runtime/editor/features/structure/List/Item/index.vue +129 -0
  708. package/dist/runtime/editor/features/structure/List/Item/index.vue.d.ts +13 -0
  709. package/dist/runtime/editor/features/structure/List/index.d.vue.ts +13 -0
  710. package/dist/runtime/editor/features/structure/List/index.vue.d.ts +13 -0
  711. package/dist/runtime/editor/features/structure/index.d.vue.ts +3 -0
  712. package/dist/runtime/editor/features/structure/index.vue +75 -0
  713. package/dist/runtime/editor/features/structure/index.vue.d.ts +3 -0
  714. package/dist/runtime/editor/features/structure/types.d.ts +11 -0
  715. package/dist/runtime/editor/features/structure/types.js +0 -0
  716. package/dist/runtime/editor/features/theme/Color/index.d.vue.ts +8 -0
  717. package/dist/runtime/editor/features/theme/Color/index.vue +64 -0
  718. package/dist/runtime/editor/features/theme/Color/index.vue.d.ts +8 -0
  719. package/dist/runtime/editor/features/theme/GeneratedCode/index.d.vue.ts +3 -0
  720. package/dist/runtime/editor/features/theme/GeneratedCode/index.vue.d.ts +3 -0
  721. package/dist/runtime/editor/features/theme/index.d.vue.ts +3 -0
  722. package/dist/runtime/editor/features/theme/index.vue +109 -0
  723. package/dist/runtime/editor/features/theme/index.vue.d.ts +3 -0
  724. package/dist/runtime/editor/features/touch-action-bar/Bar/index.d.vue.ts +13 -0
  725. package/dist/runtime/editor/features/touch-action-bar/Bar/index.vue.d.ts +13 -0
  726. package/dist/runtime/editor/features/touch-action-bar/index.d.vue.ts +3 -0
  727. package/dist/runtime/editor/features/touch-action-bar/index.vue +40 -0
  728. package/dist/runtime/editor/features/touch-action-bar/index.vue.d.ts +3 -0
  729. package/dist/runtime/editor/features/tour/Overlay/index.d.vue.ts +7 -0
  730. package/dist/runtime/editor/features/tour/Overlay/index.vue +218 -0
  731. package/dist/runtime/editor/features/tour/Overlay/index.vue.d.ts +7 -0
  732. package/dist/runtime/editor/features/tour/Popup/index.d.vue.ts +9 -0
  733. package/dist/runtime/editor/features/tour/Popup/index.vue +34 -0
  734. package/dist/runtime/editor/features/tour/Popup/index.vue.d.ts +9 -0
  735. package/dist/runtime/editor/features/tour/docs.md +0 -0
  736. package/dist/runtime/editor/features/tour/index.d.vue.ts +3 -0
  737. package/dist/runtime/editor/features/tour/index.vue +44 -0
  738. package/dist/runtime/editor/features/tour/index.vue.d.ts +3 -0
  739. package/dist/runtime/editor/features/tour/types.d.ts +6 -0
  740. package/dist/runtime/editor/features/tour/types.js +0 -0
  741. package/dist/runtime/editor/features/transform/Dialog/index.d.vue.ts +14 -0
  742. package/dist/runtime/editor/features/transform/Dialog/index.vue +221 -0
  743. package/dist/runtime/editor/features/transform/Dialog/index.vue.d.ts +14 -0
  744. package/dist/runtime/editor/features/transform/index.d.vue.ts +3 -0
  745. package/dist/runtime/editor/features/transform/index.vue +247 -0
  746. package/dist/runtime/editor/features/transform/index.vue.d.ts +3 -0
  747. package/dist/runtime/editor/features/transform/types.d.ts +105 -0
  748. package/dist/runtime/editor/features/transform/types.js +0 -0
  749. package/dist/runtime/editor/features/translations/Banner/index.d.vue.ts +7 -0
  750. package/dist/runtime/editor/features/translations/Banner/index.vue +48 -0
  751. package/dist/runtime/editor/features/translations/Banner/index.vue.d.ts +7 -0
  752. package/dist/runtime/editor/features/translations/index.d.vue.ts +3 -0
  753. package/dist/runtime/editor/features/translations/index.vue +211 -0
  754. package/dist/runtime/editor/features/translations/index.vue.d.ts +3 -0
  755. package/dist/runtime/editor/features/translations/types.d.ts +16 -0
  756. package/dist/runtime/editor/features/translations/types.js +0 -0
  757. package/dist/runtime/editor/features/validations/Overlay/Item.d.vue.ts +7 -0
  758. package/dist/runtime/editor/features/validations/Overlay/Item.vue +36 -0
  759. package/dist/runtime/editor/features/validations/Overlay/Item.vue.d.ts +7 -0
  760. package/dist/runtime/editor/features/validations/Overlay/index.d.vue.ts +7 -0
  761. package/dist/runtime/editor/features/validations/Overlay/index.vue +42 -0
  762. package/dist/runtime/editor/features/validations/Overlay/index.vue.d.ts +7 -0
  763. package/dist/runtime/editor/features/validations/SidebarItem/index.d.vue.ts +10 -0
  764. package/dist/runtime/editor/features/validations/SidebarItem/index.vue +41 -0
  765. package/dist/runtime/editor/features/validations/SidebarItem/index.vue.d.ts +10 -0
  766. package/dist/runtime/editor/features/validations/index.d.vue.ts +3 -0
  767. package/dist/runtime/editor/features/validations/index.vue +64 -0
  768. package/dist/runtime/editor/features/validations/index.vue.d.ts +3 -0
  769. package/dist/runtime/editor/helpers/array/index.d.ts +1 -0
  770. package/dist/runtime/editor/helpers/array/index.js +4 -0
  771. package/dist/runtime/editor/helpers/bundles/index.js +8 -0
  772. package/dist/runtime/editor/helpers/color/index.d.ts +6 -0
  773. package/dist/runtime/editor/helpers/color/index.js +48 -0
  774. package/dist/runtime/editor/helpers/date/index.d.ts +0 -0
  775. package/dist/runtime/editor/helpers/date/index.js +0 -0
  776. package/dist/runtime/editor/helpers/dom/index.d.ts +75 -0
  777. package/dist/runtime/editor/helpers/dom/index.js +107 -0
  778. package/dist/runtime/editor/helpers/dragStyle/index.d.ts +12 -0
  779. package/dist/runtime/editor/helpers/dragStyle/index.js +93 -0
  780. package/dist/runtime/editor/helpers/dropTargets/index.d.ts +6 -0
  781. package/dist/runtime/editor/helpers/dropTargets/index.js +68 -0
  782. package/dist/runtime/editor/helpers/geometry/index.d.ts +43 -0
  783. package/dist/runtime/editor/helpers/geometry/index.js +191 -0
  784. package/dist/runtime/editor/helpers/math/index.d.ts +3 -0
  785. package/dist/runtime/editor/helpers/math/index.js +10 -0
  786. package/dist/runtime/editor/helpers/uuid/index.d.ts +1 -0
  787. package/dist/runtime/editor/helpers/uuid/index.js +18 -0
  788. package/dist/runtime/editor/helpers/webgl/index.d.ts +45 -0
  789. package/dist/runtime/editor/helpers/webgl/index.js +315 -0
  790. package/dist/runtime/editor/icons/material-icons.d.ts +12 -0
  791. package/dist/runtime/editor/icons/material-icons.js +1 -0
  792. package/dist/runtime/editor/plugins/BlockIndicator/index.d.vue.ts +65 -0
  793. package/dist/runtime/editor/plugins/BlockIndicator/index.vue +65 -0
  794. package/dist/runtime/editor/plugins/BlockIndicator/index.vue.d.ts +65 -0
  795. package/dist/runtime/editor/plugins/ContextMenu/Menu/index.d.vue.ts +13 -0
  796. package/dist/runtime/editor/plugins/ContextMenu/Menu/index.vue +75 -0
  797. package/dist/runtime/editor/plugins/ContextMenu/Menu/index.vue.d.ts +13 -0
  798. package/dist/runtime/editor/plugins/ContextMenu/index.d.vue.ts +36 -0
  799. package/dist/runtime/editor/plugins/ContextMenu/index.vue +39 -0
  800. package/dist/runtime/editor/plugins/ContextMenu/index.vue.d.ts +36 -0
  801. package/dist/runtime/editor/plugins/DebugOverlay/index.d.vue.ts +23 -0
  802. package/dist/runtime/editor/plugins/DebugOverlay/index.vue.d.ts +23 -0
  803. package/dist/runtime/editor/plugins/ItemAction/index.d.vue.ts +85 -0
  804. package/dist/runtime/editor/plugins/ItemAction/index.vue +93 -0
  805. package/dist/runtime/editor/plugins/ItemAction/index.vue.d.ts +85 -0
  806. package/dist/runtime/editor/plugins/Sidebar/Detached/index.d.vue.ts +47 -0
  807. package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue +281 -0
  808. package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue.d.ts +47 -0
  809. package/dist/runtime/editor/plugins/Sidebar/index.d.vue.ts +228 -0
  810. package/dist/runtime/editor/plugins/Sidebar/index.vue +267 -0
  811. package/dist/runtime/editor/plugins/Sidebar/index.vue.d.ts +228 -0
  812. package/dist/runtime/editor/plugins/ToolbarButton/index.d.vue.ts +165 -0
  813. package/dist/runtime/editor/plugins/ToolbarButton/index.vue +91 -0
  814. package/dist/runtime/editor/plugins/ToolbarButton/index.vue.d.ts +165 -0
  815. package/dist/runtime/editor/plugins/TourItem/index.d.vue.ts +41 -0
  816. package/dist/runtime/editor/plugins/TourItem/index.vue +50 -0
  817. package/dist/runtime/editor/plugins/TourItem/index.vue.d.ts +41 -0
  818. package/dist/runtime/editor/plugins/ViewOption/index.d.vue.ts +139 -0
  819. package/dist/runtime/editor/plugins/ViewOption/index.vue +98 -0
  820. package/dist/runtime/editor/plugins/ViewOption/index.vue.d.ts +139 -0
  821. package/dist/runtime/editor/providers/animation.d.ts +204 -0
  822. package/dist/runtime/editor/providers/animation.js +518 -0
  823. package/dist/runtime/editor/providers/blocks.d.ts +32 -0
  824. package/dist/runtime/editor/providers/blocks.js +113 -0
  825. package/dist/runtime/editor/providers/commands.d.ts +41 -0
  826. package/dist/runtime/editor/providers/commands.js +16 -0
  827. package/dist/runtime/editor/providers/debug.d.ts +126 -0
  828. package/dist/runtime/editor/providers/debug.js +132 -0
  829. package/dist/runtime/editor/providers/definition.d.ts +87 -0
  830. package/dist/runtime/editor/providers/directive.d.ts +116 -0
  831. package/dist/runtime/editor/providers/directive.js +241 -0
  832. package/dist/runtime/editor/providers/dom.d.ts +228 -0
  833. package/dist/runtime/editor/providers/dom.js +519 -0
  834. package/dist/runtime/editor/providers/dropArea.d.ts +48 -0
  835. package/dist/runtime/editor/providers/dropArea.js +22 -0
  836. package/dist/runtime/editor/providers/features.d.ts +57 -0
  837. package/dist/runtime/editor/providers/features.js +53 -0
  838. package/dist/runtime/editor/providers/fields.d.ts +23 -0
  839. package/dist/runtime/editor/providers/fields.js +47 -0
  840. package/dist/runtime/editor/providers/icons.d.ts +6 -0
  841. package/dist/runtime/editor/providers/icons.js +16 -0
  842. package/dist/runtime/editor/providers/indicators.d.ts +44 -0
  843. package/dist/runtime/editor/providers/keyboard.d.ts +77 -0
  844. package/dist/runtime/editor/providers/keyboard.js +98 -0
  845. package/dist/runtime/editor/providers/plugin.d.ts +81 -0
  846. package/dist/runtime/editor/providers/selection.d.ts +84 -0
  847. package/dist/runtime/editor/providers/selection.js +159 -0
  848. package/dist/runtime/editor/providers/state.d.ts +248 -0
  849. package/dist/runtime/editor/providers/state.js +408 -0
  850. package/dist/runtime/editor/providers/storage.d.ts +64 -0
  851. package/dist/runtime/editor/providers/storage.js +118 -0
  852. package/dist/runtime/editor/providers/texts.d.ts +4 -0
  853. package/dist/runtime/editor/providers/texts.js +29 -0
  854. package/dist/runtime/editor/providers/theme.d.ts +119 -0
  855. package/dist/runtime/editor/providers/theme.js +140 -0
  856. package/dist/runtime/editor/providers/tour.d.ts +49 -0
  857. package/dist/runtime/editor/providers/tour.js +19 -0
  858. package/dist/runtime/editor/providers/types.d.ts +174 -0
  859. package/dist/runtime/editor/providers/types.js +166 -0
  860. package/dist/runtime/editor/providers/ui.d.ts +350 -0
  861. package/dist/runtime/editor/providers/ui.js +406 -0
  862. package/dist/runtime/editor/types/actions.d.ts +18 -0
  863. package/dist/runtime/editor/types/actions.js +0 -0
  864. package/dist/runtime/editor/types/app.d.ts +59 -0
  865. package/dist/runtime/editor/types/app.js +0 -0
  866. package/dist/runtime/editor/types/definitions.d.ts +18 -0
  867. package/dist/runtime/editor/types/definitions.js +0 -0
  868. package/dist/runtime/editor/types/draggable.d.ts +9 -0
  869. package/dist/runtime/editor/types/draggable.js +0 -0
  870. package/dist/runtime/editor/types/features.d.ts +9 -0
  871. package/dist/runtime/editor/types/features.js +0 -0
  872. package/dist/runtime/editor/types/field.d.ts +58 -0
  873. package/dist/runtime/editor/types/field.js +0 -0
  874. package/dist/runtime/editor/types/geometry.d.ts +9 -0
  875. package/dist/runtime/editor/types/geometry.js +0 -0
  876. package/dist/runtime/editor/types/index.d.ts +1 -0
  877. package/dist/runtime/editor/types/index.js +0 -0
  878. package/dist/runtime/editor/types/pluginConfig.d.ts +48 -0
  879. package/dist/runtime/editor/types/pluginConfig.js +0 -0
  880. package/dist/runtime/editor/types/selection.d.ts +6 -0
  881. package/dist/runtime/editor/types/selection.js +0 -0
  882. package/dist/runtime/editor/types/state.d.ts +76 -0
  883. package/dist/runtime/editor/types/state.js +0 -0
  884. package/dist/runtime/editor/types/style.d.ts +29 -0
  885. package/dist/runtime/editor/types/style.js +0 -0
  886. package/dist/runtime/editor/types/ui.d.ts +44 -0
  887. package/dist/runtime/editor/types/ui.js +0 -0
  888. package/dist/runtime/helpers/index.d.ts +0 -71
  889. package/dist/runtime/helpers/index.js +0 -326
  890. package/dist/runtime/helpers/injections.d.ts +127 -0
  891. package/dist/runtime/helpers/injections.js +69 -0
  892. package/dist/runtime/helpers/runtimeHelpers/index.js +8 -5
  893. package/dist/runtime/plugins/blokkliDirectives.d.ts +1 -1
  894. package/dist/runtime/plugins/blokkliDirectives.js +1 -1
  895. package/dist/runtime/types/blockOptions.d.ts +2 -348
  896. package/dist/runtime/types/definitions.d.ts +124 -0
  897. package/dist/runtime/types/definitions.js +0 -0
  898. package/dist/runtime/types/directives.d.ts +1 -0
  899. package/dist/runtime/types/directives.js +0 -0
  900. package/dist/runtime/types/field.d.ts +26 -0
  901. package/dist/runtime/types/field.js +0 -0
  902. package/dist/runtime/types/index.d.ts +2 -1400
  903. package/dist/runtime/types/provider.d.ts +5 -0
  904. package/dist/runtime/types/provider.js +0 -0
  905. package/dist/runtime/types/vue.d.ts +1 -0
  906. package/dist/runtime/types/vue.js +0 -0
  907. package/dist/shared/editor.DHqea16T.d.mts +462 -0
  908. package/dist/types.d.mts +3 -1
  909. package/package.json +87 -53
  910. package/dist/runtime/adapter/index.d.ts +0 -516
  911. package/dist/runtime/blokkliPlugins/BlockIndicator/index.vue +0 -65
  912. package/dist/runtime/blokkliPlugins/BlockIndicator/index.vue.d.ts +0 -64
  913. package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue +0 -75
  914. package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue.d.ts +0 -12
  915. package/dist/runtime/blokkliPlugins/ContextMenu/index.vue +0 -39
  916. package/dist/runtime/blokkliPlugins/ContextMenu/index.vue.d.ts +0 -35
  917. package/dist/runtime/blokkliPlugins/DebugOverlay/index.vue.d.ts +0 -22
  918. package/dist/runtime/blokkliPlugins/ItemAction/index.vue +0 -94
  919. package/dist/runtime/blokkliPlugins/ItemAction/index.vue.d.ts +0 -85
  920. package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue +0 -278
  921. package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue.d.ts +0 -46
  922. package/dist/runtime/blokkliPlugins/Sidebar/index.vue +0 -270
  923. package/dist/runtime/blokkliPlugins/Sidebar/index.vue.d.ts +0 -227
  924. package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue +0 -92
  925. package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue.d.ts +0 -164
  926. package/dist/runtime/blokkliPlugins/TourItem/index.vue +0 -50
  927. package/dist/runtime/blokkliPlugins/TourItem/index.vue.d.ts +0 -40
  928. package/dist/runtime/blokkliPlugins/ViewOption/index.vue +0 -99
  929. package/dist/runtime/blokkliPlugins/ViewOption/index.vue.d.ts +0 -138
  930. package/dist/runtime/components/Blocks/Fragment/icon.svg +0 -1
  931. package/dist/runtime/components/Edit/Actions/ItemDropdown.vue +0 -66
  932. package/dist/runtime/components/Edit/Actions/ItemDropdown.vue.d.ts +0 -6
  933. package/dist/runtime/components/Edit/Actions/index.vue +0 -195
  934. package/dist/runtime/components/Edit/Actions/index.vue.d.ts +0 -2
  935. package/dist/runtime/components/Edit/AddListItem/index.vue +0 -66
  936. package/dist/runtime/components/Edit/AddListItem/index.vue.d.ts +0 -19
  937. package/dist/runtime/components/Edit/AnimationCanvas/index.vue +0 -453
  938. package/dist/runtime/components/Edit/AnimationCanvas/index.vue.d.ts +0 -2
  939. package/dist/runtime/components/Edit/AppMenu/MenuButton.vue +0 -39
  940. package/dist/runtime/components/Edit/AppMenu/MenuButton.vue.d.ts +0 -28
  941. package/dist/runtime/components/Edit/AppMenu/index.vue +0 -79
  942. package/dist/runtime/components/Edit/AppMenu/index.vue.d.ts +0 -2
  943. package/dist/runtime/components/Edit/ArtboardTooltip/index.vue +0 -89
  944. package/dist/runtime/components/Edit/ArtboardTooltip/index.vue.d.ts +0 -32
  945. package/dist/runtime/components/Edit/Banner/index.vue +0 -51
  946. package/dist/runtime/components/Edit/Banner/index.vue.d.ts +0 -18
  947. package/dist/runtime/components/Edit/BlockProxy/index.vue +0 -88
  948. package/dist/runtime/components/Edit/BlockProxy/index.vue.d.ts +0 -10
  949. package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue +0 -47
  950. package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue.d.ts +0 -25
  951. package/dist/runtime/components/Edit/BlokkliRootErrorBoundary.vue +0 -96
  952. package/dist/runtime/components/Edit/BlokkliRootErrorBoundary.vue.d.ts +0 -12
  953. package/dist/runtime/components/Edit/Dialog/index.vue +0 -135
  954. package/dist/runtime/components/Edit/Dialog/index.vue.d.ts +0 -48
  955. package/dist/runtime/components/Edit/DiffViewer/State.vue +0 -276
  956. package/dist/runtime/components/Edit/DiffViewer/State.vue.d.ts +0 -16
  957. package/dist/runtime/components/Edit/DraggableList.vue +0 -142
  958. package/dist/runtime/components/Edit/DraggableList.vue.d.ts +0 -27
  959. package/dist/runtime/components/Edit/EditIndicator.vue +0 -151
  960. package/dist/runtime/components/Edit/EditIndicator.vue.d.ts +0 -14
  961. package/dist/runtime/components/Edit/EditProvider.vue +0 -382
  962. package/dist/runtime/components/Edit/EditProvider.vue.d.ts +0 -29
  963. package/dist/runtime/components/Edit/Features/AddList/Actions/Action.vue +0 -53
  964. package/dist/runtime/components/Edit/Features/AddList/Actions/Action.vue.d.ts +0 -7
  965. package/dist/runtime/components/Edit/Features/AddList/Actions/index.vue +0 -41
  966. package/dist/runtime/components/Edit/Features/AddList/Actions/index.vue.d.ts +0 -5
  967. package/dist/runtime/components/Edit/Features/AddList/Blocks/index.vue +0 -274
  968. package/dist/runtime/components/Edit/Features/AddList/Blocks/index.vue.d.ts +0 -11
  969. package/dist/runtime/components/Edit/Features/AddList/index.vue +0 -147
  970. package/dist/runtime/components/Edit/Features/AddList/index.vue.d.ts +0 -2
  971. package/dist/runtime/components/Edit/Features/Analyze/Icon.vue.d.ts +0 -5
  972. package/dist/runtime/components/Edit/Features/Analyze/Main.vue +0 -385
  973. package/dist/runtime/components/Edit/Features/Analyze/Main.vue.d.ts +0 -14
  974. package/dist/runtime/components/Edit/Features/Analyze/Renderer/index.vue +0 -260
  975. package/dist/runtime/components/Edit/Features/Analyze/Renderer/index.vue.d.ts +0 -21
  976. package/dist/runtime/components/Edit/Features/Analyze/Results/Results.vue +0 -102
  977. package/dist/runtime/components/Edit/Features/Analyze/Results/Results.vue.d.ts +0 -13
  978. package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItem.vue +0 -56
  979. package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItem.vue.d.ts +0 -21
  980. package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodes.vue +0 -80
  981. package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodes.vue.d.ts +0 -14
  982. package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodesTarget.vue +0 -123
  983. package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodesTarget.vue.d.ts +0 -14
  984. package/dist/runtime/components/Edit/Features/Analyze/Results/Status.vue.d.ts +0 -8
  985. package/dist/runtime/components/Edit/Features/Analyze/Summary/Chart.vue.d.ts +0 -17
  986. package/dist/runtime/components/Edit/Features/Analyze/Summary/index.vue +0 -77
  987. package/dist/runtime/components/Edit/Features/Analyze/Summary/index.vue.d.ts +0 -6
  988. package/dist/runtime/components/Edit/Features/Analyze/analyzers/axe.d.ts +0 -12
  989. package/dist/runtime/components/Edit/Features/Analyze/analyzers/axe.js +0 -76
  990. package/dist/runtime/components/Edit/Features/Analyze/analyzers/helpers/Context.d.ts +0 -33
  991. package/dist/runtime/components/Edit/Features/Analyze/analyzers/readability.js +0 -206
  992. package/dist/runtime/components/Edit/Features/Analyze/index.vue +0 -69
  993. package/dist/runtime/components/Edit/Features/Analyze/index.vue.d.ts +0 -2
  994. package/dist/runtime/components/Edit/Features/Anchors/Overlay/index.vue +0 -53
  995. package/dist/runtime/components/Edit/Features/Anchors/Overlay/index.vue.d.ts +0 -2
  996. package/dist/runtime/components/Edit/Features/Anchors/index.vue +0 -32
  997. package/dist/runtime/components/Edit/Features/Anchors/index.vue.d.ts +0 -2
  998. package/dist/runtime/components/Edit/Features/Artboard/Overview/index.vue +0 -119
  999. package/dist/runtime/components/Edit/Features/Artboard/Overview/index.vue.d.ts +0 -6
  1000. package/dist/runtime/components/Edit/Features/Artboard/Renderer.vue +0 -320
  1001. package/dist/runtime/components/Edit/Features/Artboard/Renderer.vue.d.ts +0 -7
  1002. package/dist/runtime/components/Edit/Features/Artboard/Scrollbar/index.vue.d.ts +0 -7
  1003. package/dist/runtime/components/Edit/Features/Artboard/index.vue +0 -92
  1004. package/dist/runtime/components/Edit/Features/Artboard/index.vue.d.ts +0 -2
  1005. package/dist/runtime/components/Edit/Features/Assistant/Overlay/ResultMarkup/index.vue.d.ts +0 -6
  1006. package/dist/runtime/components/Edit/Features/Assistant/Overlay/index.vue +0 -108
  1007. package/dist/runtime/components/Edit/Features/Assistant/Overlay/index.vue.d.ts +0 -8
  1008. package/dist/runtime/components/Edit/Features/Assistant/index.vue +0 -65
  1009. package/dist/runtime/components/Edit/Features/Assistant/index.vue.d.ts +0 -2
  1010. package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/ScheduleSection.vue +0 -154
  1011. package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/ScheduleSection.vue.d.ts +0 -27
  1012. package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/index.vue +0 -232
  1013. package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/index.vue.d.ts +0 -11
  1014. package/dist/runtime/components/Edit/Features/BlockScheduler/index.vue +0 -96
  1015. package/dist/runtime/components/Edit/Features/BlockScheduler/index.vue.d.ts +0 -2
  1016. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/File.vue.d.ts +0 -3
  1017. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/Video.vue +0 -54
  1018. package/dist/runtime/components/Edit/Features/Clipboard/List/Item/Video.vue.d.ts +0 -3
  1019. package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue +0 -72
  1020. package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue.d.ts +0 -10
  1021. package/dist/runtime/components/Edit/Features/Clipboard/index.vue +0 -606
  1022. package/dist/runtime/components/Edit/Features/Clipboard/index.vue.d.ts +0 -2
  1023. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Item/index.vue +0 -49
  1024. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Item/index.vue.d.ts +0 -19
  1025. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue +0 -229
  1026. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue.d.ts +0 -6
  1027. package/dist/runtime/components/Edit/Features/CommandPalette/index.vue +0 -52
  1028. package/dist/runtime/components/Edit/Features/CommandPalette/index.vue.d.ts +0 -2
  1029. package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue +0 -44
  1030. package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue.d.ts +0 -10
  1031. package/dist/runtime/components/Edit/Features/Comments/Comment/index.vue +0 -45
  1032. package/dist/runtime/components/Edit/Features/Comments/Comment/index.vue.d.ts +0 -23
  1033. package/dist/runtime/components/Edit/Features/Comments/CommentInput/index.vue.d.ts +0 -13
  1034. package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue +0 -94
  1035. package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue.d.ts +0 -20
  1036. package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue +0 -112
  1037. package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue.d.ts +0 -18
  1038. package/dist/runtime/components/Edit/Features/Comments/index.vue +0 -111
  1039. package/dist/runtime/components/Edit/Features/Comments/index.vue.d.ts +0 -2
  1040. package/dist/runtime/components/Edit/Features/Conversions/index.vue +0 -84
  1041. package/dist/runtime/components/Edit/Features/Conversions/index.vue.d.ts +0 -2
  1042. package/dist/runtime/components/Edit/Features/Debug/DebugSection.vue.d.ts +0 -16
  1043. package/dist/runtime/components/Edit/Features/Debug/Main.vue +0 -80
  1044. package/dist/runtime/components/Edit/Features/Debug/Main.vue.d.ts +0 -6
  1045. package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue +0 -60
  1046. package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue.d.ts +0 -2
  1047. package/dist/runtime/components/Edit/Features/Debug/Section/Features.vue.d.ts +0 -2
  1048. package/dist/runtime/components/Edit/Features/Debug/Section/Icons.vue +0 -15
  1049. package/dist/runtime/components/Edit/Features/Debug/Section/Icons.vue.d.ts +0 -2
  1050. package/dist/runtime/components/Edit/Features/Debug/Section/Keyboard.vue.d.ts +0 -2
  1051. package/dist/runtime/components/Edit/Features/Debug/Section/Logging.vue +0 -66
  1052. package/dist/runtime/components/Edit/Features/Debug/Section/Logging.vue.d.ts +0 -6
  1053. package/dist/runtime/components/Edit/Features/Debug/Section/Rendering.vue +0 -96
  1054. package/dist/runtime/components/Edit/Features/Debug/Section/Rendering.vue.d.ts +0 -2
  1055. package/dist/runtime/components/Edit/Features/Debug/Section/Selection.vue.d.ts +0 -2
  1056. package/dist/runtime/components/Edit/Features/Debug/Viewport/index.vue +0 -98
  1057. package/dist/runtime/components/Edit/Features/Debug/Viewport/index.vue.d.ts +0 -2
  1058. package/dist/runtime/components/Edit/Features/Debug/index.vue +0 -31
  1059. package/dist/runtime/components/Edit/Features/Debug/index.vue.d.ts +0 -2
  1060. package/dist/runtime/components/Edit/Features/Delete/index.vue +0 -66
  1061. package/dist/runtime/components/Edit/Features/Delete/index.vue.d.ts +0 -2
  1062. package/dist/runtime/components/Edit/Features/Diff/DiffView/index.vue +0 -20
  1063. package/dist/runtime/components/Edit/Features/Diff/DiffView/index.vue.d.ts +0 -2
  1064. package/dist/runtime/components/Edit/Features/Diff/index.vue +0 -35
  1065. package/dist/runtime/components/Edit/Features/Diff/index.vue.d.ts +0 -2
  1066. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/DragItem.vue +0 -113
  1067. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/DragItem.vue.d.ts +0 -25
  1068. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +0 -219
  1069. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue.d.ts +0 -27
  1070. package/dist/runtime/components/Edit/Features/DraggingOverlay/Renderer/index.vue +0 -749
  1071. package/dist/runtime/components/Edit/Features/DraggingOverlay/Renderer/index.vue.d.ts +0 -27
  1072. package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue +0 -335
  1073. package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue.d.ts +0 -2
  1074. package/dist/runtime/components/Edit/Features/Duplicate/index.vue +0 -91
  1075. package/dist/runtime/components/Edit/Features/Duplicate/index.vue.d.ts +0 -2
  1076. package/dist/runtime/components/Edit/Features/Edit/index.vue +0 -76
  1077. package/dist/runtime/components/Edit/Features/Edit/index.vue.d.ts +0 -2
  1078. package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue +0 -70
  1079. package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue.d.ts +0 -11
  1080. package/dist/runtime/components/Edit/Features/EditForm/index.vue +0 -176
  1081. package/dist/runtime/components/Edit/Features/EditForm/index.vue.d.ts +0 -2
  1082. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Contenteditable/index.vue.d.ts +0 -12
  1083. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue +0 -117
  1084. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue.d.ts +0 -16
  1085. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue +0 -74
  1086. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue.d.ts +0 -16
  1087. package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue +0 -248
  1088. package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue.d.ts +0 -15
  1089. package/dist/runtime/components/Edit/Features/EditableField/index.vue +0 -151
  1090. package/dist/runtime/components/Edit/Features/EditableField/index.vue.d.ts +0 -2
  1091. package/dist/runtime/components/Edit/Features/EditableMask/index.vue +0 -39
  1092. package/dist/runtime/components/Edit/Features/EditableMask/index.vue.d.ts +0 -2
  1093. package/dist/runtime/components/Edit/Features/EntityTitle/index.vue +0 -137
  1094. package/dist/runtime/components/Edit/Features/EntityTitle/index.vue.d.ts +0 -2
  1095. package/dist/runtime/components/Edit/Features/Exit/index.vue +0 -38
  1096. package/dist/runtime/components/Edit/Features/Exit/index.vue.d.ts +0 -2
  1097. package/dist/runtime/components/Edit/Features/Fragments/Dialog/Item/index.vue +0 -57
  1098. package/dist/runtime/components/Edit/Features/Fragments/Dialog/Item/index.vue.d.ts +0 -8
  1099. package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue +0 -122
  1100. package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue.d.ts +0 -12
  1101. package/dist/runtime/components/Edit/Features/Fragments/index.vue +0 -74
  1102. package/dist/runtime/components/Edit/Features/Fragments/index.vue.d.ts +0 -2
  1103. package/dist/runtime/components/Edit/Features/Grid/index.vue +0 -37
  1104. package/dist/runtime/components/Edit/Features/Grid/index.vue.d.ts +0 -2
  1105. package/dist/runtime/components/Edit/Features/Help/Shortcuts/index.vue +0 -60
  1106. package/dist/runtime/components/Edit/Features/Help/Shortcuts/index.vue.d.ts +0 -2
  1107. package/dist/runtime/components/Edit/Features/Help/index.vue +0 -49
  1108. package/dist/runtime/components/Edit/Features/Help/index.vue.d.ts +0 -2
  1109. package/dist/runtime/components/Edit/Features/History/List/index.vue +0 -128
  1110. package/dist/runtime/components/Edit/Features/History/List/index.vue.d.ts +0 -5
  1111. package/dist/runtime/components/Edit/Features/History/index.vue +0 -149
  1112. package/dist/runtime/components/Edit/Features/History/index.vue.d.ts +0 -2
  1113. package/dist/runtime/components/Edit/Features/Hover/Renderer/index.vue +0 -448
  1114. package/dist/runtime/components/Edit/Features/Hover/Renderer/index.vue.d.ts +0 -2
  1115. package/dist/runtime/components/Edit/Features/Hover/index.vue +0 -28
  1116. package/dist/runtime/components/Edit/Features/Hover/index.vue.d.ts +0 -2
  1117. package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue +0 -127
  1118. package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue.d.ts +0 -14
  1119. package/dist/runtime/components/Edit/Features/ImportExisting/index.vue +0 -81
  1120. package/dist/runtime/components/Edit/Features/ImportExisting/index.vue.d.ts +0 -2
  1121. package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue +0 -166
  1122. package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue.d.ts +0 -13
  1123. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/Item/index.vue +0 -67
  1124. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/Item/index.vue.d.ts +0 -9
  1125. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue +0 -155
  1126. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue.d.ts +0 -12
  1127. package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +0 -99
  1128. package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue.d.ts +0 -12
  1129. package/dist/runtime/components/Edit/Features/Library/index.vue +0 -197
  1130. package/dist/runtime/components/Edit/Features/Library/index.vue.d.ts +0 -2
  1131. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/Item.vue +0 -40
  1132. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/Item.vue.d.ts +0 -19
  1133. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue +0 -187
  1134. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue.d.ts +0 -5
  1135. package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue +0 -108
  1136. package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue.d.ts +0 -2
  1137. package/dist/runtime/components/Edit/Features/MediaLibrary/types.d.ts +0 -57
  1138. package/dist/runtime/components/Edit/Features/MultiSelect/Renderer/index.vue +0 -297
  1139. package/dist/runtime/components/Edit/Features/MultiSelect/Renderer/index.vue.d.ts +0 -11
  1140. package/dist/runtime/components/Edit/Features/MultiSelect/index.vue +0 -69
  1141. package/dist/runtime/components/Edit/Features/MultiSelect/index.vue.d.ts +0 -2
  1142. package/dist/runtime/components/Edit/Features/Options/Form/Checkbox/index.vue +0 -46
  1143. package/dist/runtime/components/Edit/Features/Options/Form/Checkbox/index.vue.d.ts +0 -16
  1144. package/dist/runtime/components/Edit/Features/Options/Form/Checkboxes/index.vue +0 -112
  1145. package/dist/runtime/components/Edit/Features/Options/Form/Checkboxes/index.vue.d.ts +0 -24
  1146. package/dist/runtime/components/Edit/Features/Options/Form/Color/index.vue.d.ts +0 -12
  1147. package/dist/runtime/components/Edit/Features/Options/Form/DateTimeLocal/index.vue.d.ts +0 -20
  1148. package/dist/runtime/components/Edit/Features/Options/Form/Group.vue +0 -23
  1149. package/dist/runtime/components/Edit/Features/Options/Form/Group.vue.d.ts +0 -20
  1150. package/dist/runtime/components/Edit/Features/Options/Form/Item.vue +0 -186
  1151. package/dist/runtime/components/Edit/Features/Options/Form/Item.vue.d.ts +0 -13
  1152. package/dist/runtime/components/Edit/Features/Options/Form/Number/index.vue +0 -64
  1153. package/dist/runtime/components/Edit/Features/Options/Form/Number/index.vue.d.ts +0 -21
  1154. package/dist/runtime/components/Edit/Features/Options/Form/Radios/index.vue +0 -129
  1155. package/dist/runtime/components/Edit/Features/Options/Form/Radios/index.vue.d.ts +0 -36
  1156. package/dist/runtime/components/Edit/Features/Options/Form/Range/index.vue.d.ts +0 -18
  1157. package/dist/runtime/components/Edit/Features/Options/Form/Text/index.vue.d.ts +0 -17
  1158. package/dist/runtime/components/Edit/Features/Options/Form/index.vue +0 -383
  1159. package/dist/runtime/components/Edit/Features/Options/Form/index.vue.d.ts +0 -9
  1160. package/dist/runtime/components/Edit/Features/Options/index.vue +0 -84
  1161. package/dist/runtime/components/Edit/Features/Options/index.vue.d.ts +0 -2
  1162. package/dist/runtime/components/Edit/Features/Ownership/Banner/index.vue +0 -35
  1163. package/dist/runtime/components/Edit/Features/Ownership/Banner/index.vue.d.ts +0 -6
  1164. package/dist/runtime/components/Edit/Features/Ownership/index.vue +0 -32
  1165. package/dist/runtime/components/Edit/Features/Ownership/index.vue.d.ts +0 -2
  1166. package/dist/runtime/components/Edit/Features/Preview/index.vue +0 -41
  1167. package/dist/runtime/components/Edit/Features/Preview/index.vue.d.ts +0 -2
  1168. package/dist/runtime/components/Edit/Features/PreviewGrant/QrCode/index.vue.d.ts +0 -5
  1169. package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue +0 -71
  1170. package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue.d.ts +0 -2
  1171. package/dist/runtime/components/Edit/Features/ProxyView/index.vue +0 -40
  1172. package/dist/runtime/components/Edit/Features/ProxyView/index.vue.d.ts +0 -2
  1173. package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue +0 -145
  1174. package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue.d.ts +0 -20
  1175. package/dist/runtime/components/Edit/Features/Publish/Dialog/PublishOption.vue +0 -47
  1176. package/dist/runtime/components/Edit/Features/Publish/Dialog/PublishOption.vue.d.ts +0 -19
  1177. package/dist/runtime/components/Edit/Features/Publish/Dialog/Summary.vue +0 -83
  1178. package/dist/runtime/components/Edit/Features/Publish/Dialog/Summary.vue.d.ts +0 -9
  1179. package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue +0 -577
  1180. package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue.d.ts +0 -8
  1181. package/dist/runtime/components/Edit/Features/Publish/Dialog/types.d.ts +0 -7
  1182. package/dist/runtime/components/Edit/Features/Publish/index.vue +0 -133
  1183. package/dist/runtime/components/Edit/Features/Publish/index.vue.d.ts +0 -2
  1184. package/dist/runtime/components/Edit/Features/ResponsivePreview/Frame/index.vue +0 -76
  1185. package/dist/runtime/components/Edit/Features/ResponsivePreview/Frame/index.vue.d.ts +0 -16
  1186. package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue +0 -193
  1187. package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue.d.ts +0 -2
  1188. package/dist/runtime/components/Edit/Features/Revert/index.vue +0 -69
  1189. package/dist/runtime/components/Edit/Features/Revert/index.vue.d.ts +0 -2
  1190. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue +0 -167
  1191. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue.d.ts +0 -17
  1192. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue +0 -171
  1193. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue.d.ts +0 -18
  1194. package/dist/runtime/components/Edit/Features/Search/Overlay/index.vue +0 -183
  1195. package/dist/runtime/components/Edit/Features/Search/Overlay/index.vue.d.ts +0 -12
  1196. package/dist/runtime/components/Edit/Features/Search/index.vue +0 -76
  1197. package/dist/runtime/components/Edit/Features/Search/index.vue.d.ts +0 -2
  1198. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue +0 -182
  1199. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue.d.ts +0 -17
  1200. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue +0 -551
  1201. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue.d.ts +0 -32
  1202. package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue +0 -392
  1203. package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue.d.ts +0 -6
  1204. package/dist/runtime/components/Edit/Features/Selection/Renderer/index.vue +0 -281
  1205. package/dist/runtime/components/Edit/Features/Selection/Renderer/index.vue.d.ts +0 -9
  1206. package/dist/runtime/components/Edit/Features/Selection/index.vue +0 -306
  1207. package/dist/runtime/components/Edit/Features/Selection/index.vue.d.ts +0 -2
  1208. package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue +0 -126
  1209. package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue.d.ts +0 -9
  1210. package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue +0 -130
  1211. package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue.d.ts +0 -6
  1212. package/dist/runtime/components/Edit/Features/Settings/index.vue +0 -78
  1213. package/dist/runtime/components/Edit/Features/Settings/index.vue.d.ts +0 -2
  1214. package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue +0 -145
  1215. package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue.d.ts +0 -15
  1216. package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue +0 -128
  1217. package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue.d.ts +0 -12
  1218. package/dist/runtime/components/Edit/Features/Structure/List/index.vue.d.ts +0 -12
  1219. package/dist/runtime/components/Edit/Features/Structure/index.vue +0 -75
  1220. package/dist/runtime/components/Edit/Features/Structure/index.vue.d.ts +0 -2
  1221. package/dist/runtime/components/Edit/Features/Theme/Color/index.vue +0 -64
  1222. package/dist/runtime/components/Edit/Features/Theme/Color/index.vue.d.ts +0 -7
  1223. package/dist/runtime/components/Edit/Features/Theme/GeneratedCode/index.vue.d.ts +0 -2
  1224. package/dist/runtime/components/Edit/Features/Theme/index.vue +0 -109
  1225. package/dist/runtime/components/Edit/Features/Theme/index.vue.d.ts +0 -2
  1226. package/dist/runtime/components/Edit/Features/TouchActionBar/Bar/index.vue.d.ts +0 -12
  1227. package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue +0 -40
  1228. package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue.d.ts +0 -2
  1229. package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue +0 -218
  1230. package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue.d.ts +0 -6
  1231. package/dist/runtime/components/Edit/Features/Tour/Popup/index.vue +0 -34
  1232. package/dist/runtime/components/Edit/Features/Tour/Popup/index.vue.d.ts +0 -8
  1233. package/dist/runtime/components/Edit/Features/Tour/index.vue +0 -44
  1234. package/dist/runtime/components/Edit/Features/Tour/index.vue.d.ts +0 -2
  1235. package/dist/runtime/components/Edit/Features/Transform/Dialog/index.vue +0 -221
  1236. package/dist/runtime/components/Edit/Features/Transform/Dialog/index.vue.d.ts +0 -13
  1237. package/dist/runtime/components/Edit/Features/Transform/index.vue +0 -234
  1238. package/dist/runtime/components/Edit/Features/Transform/index.vue.d.ts +0 -2
  1239. package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue +0 -48
  1240. package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue.d.ts +0 -6
  1241. package/dist/runtime/components/Edit/Features/Translations/index.vue +0 -212
  1242. package/dist/runtime/components/Edit/Features/Translations/index.vue.d.ts +0 -2
  1243. package/dist/runtime/components/Edit/Features/Validations/Overlay/Item.vue +0 -36
  1244. package/dist/runtime/components/Edit/Features/Validations/Overlay/Item.vue.d.ts +0 -6
  1245. package/dist/runtime/components/Edit/Features/Validations/Overlay/index.vue +0 -42
  1246. package/dist/runtime/components/Edit/Features/Validations/Overlay/index.vue.d.ts +0 -6
  1247. package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue +0 -42
  1248. package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue.d.ts +0 -9
  1249. package/dist/runtime/components/Edit/Features/Validations/index.vue +0 -64
  1250. package/dist/runtime/components/Edit/Features/Validations/index.vue.d.ts +0 -2
  1251. package/dist/runtime/components/Edit/Features/index.vue.d.ts +0 -6
  1252. package/dist/runtime/components/Edit/Form/Checkboxes/index.vue +0 -43
  1253. package/dist/runtime/components/Edit/Form/Checkboxes/index.vue.d.ts +0 -20
  1254. package/dist/runtime/components/Edit/Form/Datepicker/index.vue +0 -198
  1255. package/dist/runtime/components/Edit/Form/Datepicker/index.vue.d.ts +0 -15
  1256. package/dist/runtime/components/Edit/Form/Group/index.vue.d.ts +0 -18
  1257. package/dist/runtime/components/Edit/Form/Item/index.vue.d.ts +0 -12
  1258. package/dist/runtime/components/Edit/Form/Radio/index.vue.d.ts +0 -20
  1259. package/dist/runtime/components/Edit/Form/RadioTabs/index.vue.d.ts +0 -22
  1260. package/dist/runtime/components/Edit/Form/Select/index.vue.d.ts +0 -20
  1261. package/dist/runtime/components/Edit/Form/Text/index.vue.d.ts +0 -20
  1262. package/dist/runtime/components/Edit/Form/Textarea/index.vue.d.ts +0 -20
  1263. package/dist/runtime/components/Edit/Form/Toggle/index.vue.d.ts +0 -24
  1264. package/dist/runtime/components/Edit/FormOverlay/Header/index.vue +0 -28
  1265. package/dist/runtime/components/Edit/FormOverlay/Header/index.vue.d.ts +0 -18
  1266. package/dist/runtime/components/Edit/FormOverlay/index.vue +0 -55
  1267. package/dist/runtime/components/Edit/FormOverlay/index.vue.d.ts +0 -26
  1268. package/dist/runtime/components/Edit/Highlight/index.vue.d.ts +0 -20
  1269. package/dist/runtime/components/Edit/Icon/index.vue +0 -18
  1270. package/dist/runtime/components/Edit/Icon/index.vue.d.ts +0 -7
  1271. package/dist/runtime/components/Edit/Indicators/index.vue +0 -123
  1272. package/dist/runtime/components/Edit/Indicators/index.vue.d.ts +0 -2
  1273. package/dist/runtime/components/Edit/InfoBox/index.vue +0 -18
  1274. package/dist/runtime/components/Edit/InfoBox/index.vue.d.ts +0 -20
  1275. package/dist/runtime/components/Edit/ItemIcon/index.vue +0 -28
  1276. package/dist/runtime/components/Edit/ItemIcon/index.vue.d.ts +0 -6
  1277. package/dist/runtime/components/Edit/ItemIconBox/index.vue +0 -41
  1278. package/dist/runtime/components/Edit/ItemIconBox/index.vue.d.ts +0 -15
  1279. package/dist/runtime/components/Edit/Konami/Game/PixelGrid.vue +0 -66
  1280. package/dist/runtime/components/Edit/Konami/Game/PixelGrid.vue.d.ts +0 -7
  1281. package/dist/runtime/components/Edit/Konami/Game/index.vue +0 -751
  1282. package/dist/runtime/components/Edit/Konami/Game/index.vue.d.ts +0 -6
  1283. package/dist/runtime/components/Edit/Konami/Game/useIconRendering.d.ts +0 -9
  1284. package/dist/runtime/components/Edit/Konami/Game/useIconRendering.js +0 -130
  1285. package/dist/runtime/components/Edit/Konami/index.vue +0 -42
  1286. package/dist/runtime/components/Edit/Konami/index.vue.d.ts +0 -2
  1287. package/dist/runtime/components/Edit/Loading/index.vue +0 -22
  1288. package/dist/runtime/components/Edit/Loading/index.vue.d.ts +0 -8
  1289. package/dist/runtime/components/Edit/Messages/Item/index.vue +0 -105
  1290. package/dist/runtime/components/Edit/Messages/Item/index.vue.d.ts +0 -11
  1291. package/dist/runtime/components/Edit/Messages/index.vue +0 -41
  1292. package/dist/runtime/components/Edit/Messages/index.vue.d.ts +0 -2
  1293. package/dist/runtime/components/Edit/Overlay/index.vue +0 -70
  1294. package/dist/runtime/components/Edit/Overlay/index.vue.d.ts +0 -2
  1295. package/dist/runtime/components/Edit/Pagination/index.vue +0 -19
  1296. package/dist/runtime/components/Edit/Pagination/index.vue.d.ts +0 -12
  1297. package/dist/runtime/components/Edit/PluginConfigForm/Checkbox/index.vue +0 -17
  1298. package/dist/runtime/components/Edit/PluginConfigForm/Checkbox/index.vue.d.ts +0 -11
  1299. package/dist/runtime/components/Edit/PluginConfigForm/Options/index.vue +0 -37
  1300. package/dist/runtime/components/Edit/PluginConfigForm/Options/index.vue.d.ts +0 -11
  1301. package/dist/runtime/components/Edit/PluginConfigForm/Text/index.vue +0 -43
  1302. package/dist/runtime/components/Edit/PluginConfigForm/Text/index.vue.d.ts +0 -11
  1303. package/dist/runtime/components/Edit/PluginConfigForm/index.vue +0 -57
  1304. package/dist/runtime/components/Edit/PluginConfigForm/index.vue.d.ts +0 -16
  1305. package/dist/runtime/components/Edit/PreviewProvider.vue +0 -176
  1306. package/dist/runtime/components/Edit/PreviewProvider.vue.d.ts +0 -24
  1307. package/dist/runtime/components/Edit/RelativeTime/index.vue +0 -32
  1308. package/dist/runtime/components/Edit/RelativeTime/index.vue.d.ts +0 -15
  1309. package/dist/runtime/components/Edit/Resizable/index.vue.d.ts +0 -13
  1310. package/dist/runtime/components/Edit/ScaleToFit/index.vue +0 -70
  1311. package/dist/runtime/components/Edit/ScaleToFit/index.vue.d.ts +0 -15
  1312. package/dist/runtime/components/Edit/ScheduleDate/index.vue +0 -131
  1313. package/dist/runtime/components/Edit/ScheduleDate/index.vue.d.ts +0 -23
  1314. package/dist/runtime/components/Edit/ScrollBoundary/index.vue +0 -23
  1315. package/dist/runtime/components/Edit/ScrollBoundary/index.vue.d.ts +0 -18
  1316. package/dist/runtime/components/Edit/ShortcutIndicator/index.vue +0 -86
  1317. package/dist/runtime/components/Edit/ShortcutIndicator/index.vue.d.ts +0 -20
  1318. package/dist/runtime/components/Edit/Sortli/index.vue +0 -80
  1319. package/dist/runtime/components/Edit/Sortli/index.vue.d.ts +0 -16
  1320. package/dist/runtime/components/Edit/SystemRequirements/index.vue +0 -77
  1321. package/dist/runtime/components/Edit/SystemRequirements/index.vue.d.ts +0 -2
  1322. package/dist/runtime/components/Edit/Toolbar/index.vue +0 -88
  1323. package/dist/runtime/components/Edit/Toolbar/index.vue.d.ts +0 -6
  1324. package/dist/runtime/components/Edit/Transition/Height.vue.d.ts +0 -36
  1325. package/dist/runtime/components/Edit/Transition/index.vue.d.ts +0 -19
  1326. package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue +0 -60
  1327. package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue.d.ts +0 -18
  1328. package/dist/runtime/components/Edit/index.d.ts +0 -36
  1329. package/dist/runtime/components/Edit/index.js +0 -72
  1330. package/dist/runtime/constants/index.d.ts +0 -7
  1331. package/dist/runtime/constants/index.js +0 -11
  1332. package/dist/runtime/css/output.css +0 -1
  1333. package/dist/runtime/helpers/DragStyle/index.d.ts +0 -12
  1334. package/dist/runtime/helpers/DragStyle/index.js +0 -86
  1335. package/dist/runtime/helpers/bundles/index.js +0 -4
  1336. package/dist/runtime/helpers/composables/defineAddAction.d.ts +0 -2
  1337. package/dist/runtime/helpers/composables/defineAddAction.js +0 -10
  1338. package/dist/runtime/helpers/composables/defineCommands.d.ts +0 -2
  1339. package/dist/runtime/helpers/composables/defineCommands.js +0 -10
  1340. package/dist/runtime/helpers/composables/defineDropAreas.d.ts +0 -2
  1341. package/dist/runtime/helpers/composables/defineDropAreas.js +0 -10
  1342. package/dist/runtime/helpers/composables/defineItemDropdownAction.d.ts +0 -2
  1343. package/dist/runtime/helpers/composables/defineItemDropdownAction.js +0 -10
  1344. package/dist/runtime/helpers/composables/defineMenuButton.d.ts +0 -2
  1345. package/dist/runtime/helpers/composables/defineMenuButton.js +0 -10
  1346. package/dist/runtime/helpers/composables/defineRenderer.d.ts +0 -11
  1347. package/dist/runtime/helpers/composables/defineRenderer.js +0 -9
  1348. package/dist/runtime/helpers/composables/defineShortcut.d.ts +0 -2
  1349. package/dist/runtime/helpers/composables/defineShortcut.js +0 -19
  1350. package/dist/runtime/helpers/composables/defineTourItem.d.ts +0 -2
  1351. package/dist/runtime/helpers/composables/defineTourItem.js +0 -10
  1352. package/dist/runtime/helpers/composables/onBlokkliEvent.d.ts +0 -2
  1353. package/dist/runtime/helpers/composables/onBlokkliEvent.js +0 -10
  1354. package/dist/runtime/helpers/composables/onBroadcastEvent.d.ts +0 -2
  1355. package/dist/runtime/helpers/composables/onBroadcastEvent.js +0 -10
  1356. package/dist/runtime/helpers/composables/useAnimationFrame.d.ts +0 -1
  1357. package/dist/runtime/helpers/composables/useAnimationFrame.js +0 -14
  1358. package/dist/runtime/helpers/composables/useDebugLogger.d.ts +0 -2
  1359. package/dist/runtime/helpers/composables/useDebugLogger.js +0 -5
  1360. package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.d.ts +0 -5
  1361. package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.js +0 -27
  1362. package/dist/runtime/helpers/composables/useDialog.d.ts +0 -3
  1363. package/dist/runtime/helpers/composables/useFocusTrap.d.ts +0 -52
  1364. package/dist/runtime/helpers/composables/useFocusTrap.js +0 -59
  1365. package/dist/runtime/helpers/composables/useGlobalBlokkliObject.d.ts +0 -16
  1366. package/dist/runtime/helpers/composables/useStateBasedCache.d.ts +0 -4
  1367. package/dist/runtime/helpers/composables/useStateBasedCache.js +0 -13
  1368. package/dist/runtime/helpers/composables/useStickyToolbar.d.ts +0 -23
  1369. package/dist/runtime/helpers/composables/useStickyToolbar.js +0 -233
  1370. package/dist/runtime/helpers/composables/useTransitionedValue.d.ts +0 -18
  1371. package/dist/runtime/helpers/composables/useTransitionedValue.js +0 -57
  1372. package/dist/runtime/helpers/dom/index.d.ts +0 -65
  1373. package/dist/runtime/helpers/dom/index.js +0 -85
  1374. package/dist/runtime/helpers/dropTargets/index.d.ts +0 -6
  1375. package/dist/runtime/helpers/dropTargets/index.js +0 -63
  1376. package/dist/runtime/helpers/eventBus.d.ts +0 -3
  1377. package/dist/runtime/helpers/eventBus.js +0 -5
  1378. package/dist/runtime/helpers/frameEventBus.d.ts +0 -9
  1379. package/dist/runtime/helpers/frameEventBus.js +0 -2
  1380. package/dist/runtime/helpers/providers/animation.d.ts +0 -203
  1381. package/dist/runtime/helpers/providers/animation.js +0 -517
  1382. package/dist/runtime/helpers/providers/blocks.d.ts +0 -32
  1383. package/dist/runtime/helpers/providers/blocks.js +0 -110
  1384. package/dist/runtime/helpers/providers/commands.d.ts +0 -41
  1385. package/dist/runtime/helpers/providers/commands.js +0 -16
  1386. package/dist/runtime/helpers/providers/debug.d.ts +0 -125
  1387. package/dist/runtime/helpers/providers/debug.js +0 -133
  1388. package/dist/runtime/helpers/providers/definition.d.ts +0 -87
  1389. package/dist/runtime/helpers/providers/directive.d.ts +0 -114
  1390. package/dist/runtime/helpers/providers/directive.js +0 -239
  1391. package/dist/runtime/helpers/providers/dom.d.ts +0 -225
  1392. package/dist/runtime/helpers/providers/dom.js +0 -517
  1393. package/dist/runtime/helpers/providers/dropArea.d.ts +0 -47
  1394. package/dist/runtime/helpers/providers/dropArea.js +0 -22
  1395. package/dist/runtime/helpers/providers/features.d.ts +0 -56
  1396. package/dist/runtime/helpers/providers/features.js +0 -53
  1397. package/dist/runtime/helpers/providers/fields.d.ts +0 -23
  1398. package/dist/runtime/helpers/providers/fields.js +0 -47
  1399. package/dist/runtime/helpers/providers/indicators.d.ts +0 -44
  1400. package/dist/runtime/helpers/providers/keyboard.d.ts +0 -76
  1401. package/dist/runtime/helpers/providers/keyboard.js +0 -99
  1402. package/dist/runtime/helpers/providers/plugin.d.ts +0 -81
  1403. package/dist/runtime/helpers/providers/selection.d.ts +0 -82
  1404. package/dist/runtime/helpers/providers/selection.js +0 -159
  1405. package/dist/runtime/helpers/providers/state.d.ts +0 -227
  1406. package/dist/runtime/helpers/providers/state.js +0 -398
  1407. package/dist/runtime/helpers/providers/storage.d.ts +0 -64
  1408. package/dist/runtime/helpers/providers/storage.js +0 -118
  1409. package/dist/runtime/helpers/providers/texts.d.ts +0 -4
  1410. package/dist/runtime/helpers/providers/texts.js +0 -26
  1411. package/dist/runtime/helpers/providers/theme.d.ts +0 -119
  1412. package/dist/runtime/helpers/providers/theme.js +0 -140
  1413. package/dist/runtime/helpers/providers/tour.d.ts +0 -49
  1414. package/dist/runtime/helpers/providers/tour.js +0 -19
  1415. package/dist/runtime/helpers/providers/types.d.ts +0 -170
  1416. package/dist/runtime/helpers/providers/types.js +0 -166
  1417. package/dist/runtime/helpers/providers/ui.d.ts +0 -339
  1418. package/dist/runtime/helpers/providers/ui.js +0 -393
  1419. package/dist/runtime/helpers/symbols.d.ts +0 -26
  1420. package/dist/runtime/helpers/symbols.js +0 -30
  1421. package/dist/runtime/helpers/transform.d.ts +0 -2
  1422. package/dist/runtime/helpers/transform.js +0 -15
  1423. package/dist/runtime/helpers/webgl/index.d.ts +0 -45
  1424. package/dist/runtime/helpers/webgl/index.js +0 -315
  1425. package/dist/runtime/icons/alert.svg +0 -6
  1426. package/dist/runtime/icons/anchor.svg +0 -1
  1427. package/dist/runtime/icons/area.svg +0 -5
  1428. package/dist/runtime/icons/arrow-down.svg +0 -1
  1429. package/dist/runtime/icons/arrow-left.svg +0 -1
  1430. package/dist/runtime/icons/arrow-right.svg +0 -1
  1431. package/dist/runtime/icons/arrow-top-right.svg +0 -1
  1432. package/dist/runtime/icons/arrow-up.svg +0 -1
  1433. package/dist/runtime/icons/artboard-disabled.svg +0 -9
  1434. package/dist/runtime/icons/artboard-enabled.svg +0 -29
  1435. package/dist/runtime/icons/bug.svg +0 -1
  1436. package/dist/runtime/icons/button-pointer.svg +0 -1
  1437. package/dist/runtime/icons/calendar-clock.svg +0 -1
  1438. package/dist/runtime/icons/calendar.svg +0 -1
  1439. package/dist/runtime/icons/caret.svg +0 -12
  1440. package/dist/runtime/icons/cellphone.svg +0 -1
  1441. package/dist/runtime/icons/chart.svg +0 -1
  1442. package/dist/runtime/icons/chat-question.svg +0 -1
  1443. package/dist/runtime/icons/check.svg +0 -1
  1444. package/dist/runtime/icons/checkbox.svg +0 -5
  1445. package/dist/runtime/icons/checks.svg +0 -1
  1446. package/dist/runtime/icons/chevron-left.svg +0 -1
  1447. package/dist/runtime/icons/chevron-right.svg +0 -1
  1448. package/dist/runtime/icons/click.svg +0 -1
  1449. package/dist/runtime/icons/clipboard.svg +0 -5
  1450. package/dist/runtime/icons/clock.svg +0 -1
  1451. package/dist/runtime/icons/close.svg +0 -5
  1452. package/dist/runtime/icons/cog.svg +0 -5
  1453. package/dist/runtime/icons/command.svg +0 -1
  1454. package/dist/runtime/icons/comment.svg +0 -5
  1455. package/dist/runtime/icons/comment_add.svg +0 -1
  1456. package/dist/runtime/icons/convert.svg +0 -1
  1457. package/dist/runtime/icons/copy.svg +0 -1
  1458. package/dist/runtime/icons/cursor-move.svg +0 -1
  1459. package/dist/runtime/icons/dead.svg +0 -1
  1460. package/dist/runtime/icons/delete.svg +0 -1
  1461. package/dist/runtime/icons/diff.svg +0 -1
  1462. package/dist/runtime/icons/dock-left.svg +0 -1
  1463. package/dist/runtime/icons/dock-right.svg +0 -1
  1464. package/dist/runtime/icons/drag.svg +0 -1
  1465. package/dist/runtime/icons/edit.svg +0 -1
  1466. package/dist/runtime/icons/exit.svg +0 -6
  1467. package/dist/runtime/icons/expand.svg +0 -1
  1468. package/dist/runtime/icons/eye-off.svg +0 -1
  1469. package/dist/runtime/icons/eye.svg +0 -1
  1470. package/dist/runtime/icons/file.svg +0 -1
  1471. package/dist/runtime/icons/form.svg +0 -1
  1472. package/dist/runtime/icons/fragment.svg +0 -1
  1473. package/dist/runtime/icons/grid.svg +0 -13
  1474. package/dist/runtime/icons/group.svg +0 -5
  1475. package/dist/runtime/icons/help.svg +0 -1
  1476. package/dist/runtime/icons/history.svg +0 -1
  1477. package/dist/runtime/icons/image.svg +0 -1
  1478. package/dist/runtime/icons/import.svg +0 -5
  1479. package/dist/runtime/icons/info.svg +0 -1
  1480. package/dist/runtime/icons/laptop.svg +0 -1
  1481. package/dist/runtime/icons/link.svg +0 -1
  1482. package/dist/runtime/icons/list-view-grid.svg +0 -1
  1483. package/dist/runtime/icons/list-view-horizontal.svg +0 -1
  1484. package/dist/runtime/icons/magnifier.svg +0 -5
  1485. package/dist/runtime/icons/menu.svg +0 -1
  1486. package/dist/runtime/icons/minus.svg +0 -1
  1487. package/dist/runtime/icons/monitor.svg +0 -1
  1488. package/dist/runtime/icons/multi-select.svg +0 -1
  1489. package/dist/runtime/icons/multimedia.svg +0 -1
  1490. package/dist/runtime/icons/opacity.svg +0 -5
  1491. package/dist/runtime/icons/open_in_new.svg +0 -3
  1492. package/dist/runtime/icons/palette.svg +0 -1
  1493. package/dist/runtime/icons/plus-box.svg +0 -1
  1494. package/dist/runtime/icons/plus.svg +0 -1
  1495. package/dist/runtime/icons/preview.svg +0 -5
  1496. package/dist/runtime/icons/publish.svg +0 -12
  1497. package/dist/runtime/icons/puzzle.svg +0 -1
  1498. package/dist/runtime/icons/qrcode.svg +0 -5
  1499. package/dist/runtime/icons/question.svg +0 -5
  1500. package/dist/runtime/icons/redo.svg +0 -12
  1501. package/dist/runtime/icons/resize.svg +0 -1
  1502. package/dist/runtime/icons/revert.svg +0 -5
  1503. package/dist/runtime/icons/rotate-phone.svg +0 -1
  1504. package/dist/runtime/icons/sad.svg +0 -1
  1505. package/dist/runtime/icons/save.svg +0 -1
  1506. package/dist/runtime/icons/script.svg +0 -1
  1507. package/dist/runtime/icons/scrolltotop.svg +0 -6
  1508. package/dist/runtime/icons/search.svg +0 -1
  1509. package/dist/runtime/icons/selection.svg +0 -5
  1510. package/dist/runtime/icons/speedometer.svg +0 -1
  1511. package/dist/runtime/icons/swap-horizontal.svg +0 -1
  1512. package/dist/runtime/icons/tablet.svg +0 -1
  1513. package/dist/runtime/icons/textbox.svg +0 -1
  1514. package/dist/runtime/icons/texturebox.svg +0 -5
  1515. package/dist/runtime/icons/title.svg +0 -1
  1516. package/dist/runtime/icons/tools.svg +0 -1
  1517. package/dist/runtime/icons/translate.svg +0 -5
  1518. package/dist/runtime/icons/tree.svg +0 -5
  1519. package/dist/runtime/icons/tutor.svg +0 -1
  1520. package/dist/runtime/icons/ui-list-horizontal.svg +0 -19
  1521. package/dist/runtime/icons/ui-list-sidebar.svg +0 -21
  1522. package/dist/runtime/icons/ui-list-vertical.svg +0 -9
  1523. package/dist/runtime/icons/undo.svg +0 -12
  1524. package/dist/runtime/icons/upload.svg +0 -1
  1525. package/dist/runtime/icons/user.svg +0 -1
  1526. package/dist/runtime/icons/video-outline.svg +0 -1
  1527. package/dist/shared/editor.CKsrTpc1.d.mts +0 -431
  1528. /package/dist/{runtime/components/Edit/Features/Analyze/analyzers/types.js → global/types/adapter.js} +0 -0
  1529. /package/dist/{runtime/components/Edit/Features/MediaLibrary/types.js → global/types/blockOptions.js} +0 -0
  1530. /package/dist/{runtime/components/Edit/Features/Publish/Dialog/types.js → global/types/definitions.js} +0 -0
  1531. /package/dist/{runtime/components/Edit/Features/Tour/docs.md → global/types/features.js} +0 -0
  1532. /package/dist/{runtime → global}/types/theme.d.ts +0 -0
  1533. /package/dist/{runtime → global}/types/theme.js +0 -0
  1534. /package/dist/runtime/{adapter → editor/adapter}/index.js +0 -0
  1535. /package/dist/runtime/{components/Edit/Features → editor/components/FeaturesRenderer}/index.vue +0 -0
  1536. /package/dist/runtime/{components/Edit → editor/components}/Form/Group/index.vue +0 -0
  1537. /package/dist/runtime/{components/Edit → editor/components}/Form/Item/index.vue +0 -0
  1538. /package/dist/runtime/{components/Edit → editor/components}/Form/Radio/index.vue +0 -0
  1539. /package/dist/runtime/{components/Edit → editor/components}/Form/RadioTabs/index.vue +0 -0
  1540. /package/dist/runtime/{components/Edit → editor/components}/Form/Select/index.vue +0 -0
  1541. /package/dist/runtime/{components/Edit → editor/components}/Form/Text/index.vue +0 -0
  1542. /package/dist/runtime/{components/Edit → editor/components}/Form/Textarea/index.vue +0 -0
  1543. /package/dist/runtime/{components/Edit → editor/components}/Form/Toggle/index.vue +0 -0
  1544. /package/dist/runtime/{components/Edit → editor/components}/Highlight/index.vue +0 -0
  1545. /package/dist/runtime/{components/Edit → editor/components}/Konami/Game/blokkli.png +0 -0
  1546. /package/dist/runtime/{components/Edit → editor/components}/Konami/Game/charmap.d.ts +0 -0
  1547. /package/dist/runtime/{components/Edit → editor/components}/Konami/Game/charmap.js +0 -0
  1548. /package/dist/runtime/{components/Edit → editor/components}/Konami/Game/textRendering.d.ts +0 -0
  1549. /package/dist/runtime/{components/Edit → editor/components}/Konami/Game/textRendering.js +0 -0
  1550. /package/dist/runtime/{components/Edit → editor/components}/Resizable/index.vue +0 -0
  1551. /package/dist/runtime/{components/Edit → editor/components}/Transition/Height.vue +0 -0
  1552. /package/dist/runtime/{components/Edit → editor/components}/Transition/index.vue +0 -0
  1553. /package/dist/runtime/{helpers → editor}/composables/addElementClasses.d.ts +0 -0
  1554. /package/dist/runtime/{helpers → editor}/composables/addElementClasses.js +0 -0
  1555. /package/dist/runtime/{helpers → editor}/composables/defineElementStyle.d.ts +0 -0
  1556. /package/dist/runtime/{helpers → editor}/composables/defineElementStyle.js +0 -0
  1557. /package/dist/runtime/{helpers → editor}/composables/useBlockRegistration.d.ts +0 -0
  1558. /package/dist/runtime/{helpers → editor}/composables/useBlockRegistration.js +0 -0
  1559. /package/dist/runtime/{helpers → editor}/composables/useDialog.js +0 -0
  1560. /package/dist/runtime/{helpers → editor}/composables/useGlobalBlokkliObject.js +0 -0
  1561. /package/dist/runtime/{components/Edit/Features/AddList → editor/features/add-list}/docs.md +0 -0
  1562. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/Icon.vue +0 -0
  1563. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/Renderer/fragment.glsl +0 -0
  1564. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/Renderer/vertex.glsl +0 -0
  1565. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/Results/Status.vue +0 -0
  1566. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/Summary/Chart.vue +0 -0
  1567. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/defineAnalyzer.d.ts +0 -0
  1568. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/defineAnalyzer.js +0 -0
  1569. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/helpers/Context.js +0 -0
  1570. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/helpers/collectTextElements.d.ts +0 -0
  1571. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/helpers/collectTextElements.js +0 -0
  1572. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/helpers/normalizeArray.d.ts +0 -0
  1573. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/helpers/normalizeArray.js +0 -0
  1574. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/index.d.ts +0 -0
  1575. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/index.js +0 -0
  1576. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/readability.d.ts +0 -0
  1577. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/analyzers/types.d.ts +0 -0
  1578. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/helper.d.ts +0 -0
  1579. /package/dist/runtime/{components/Edit/Features/Analyze → editor/features/analyze}/helper.js +0 -0
  1580. /package/dist/runtime/{components/Edit/Features/Artboard → editor/features/artboard}/Scrollbar/index.vue +0 -0
  1581. /package/dist/runtime/{components/Edit/Features/Assistant → editor/features/assistant}/Overlay/ResultMarkup/index.vue +0 -0
  1582. /package/dist/runtime/{components/Edit/Features/Assistant → editor/features/assistant}/docs.md +0 -0
  1583. /package/dist/runtime/{components/Edit/Features/Clipboard → editor/features/clipboard}/List/Item/File.vue +0 -0
  1584. /package/dist/runtime/{components/Edit/Features/Clipboard → editor/features/clipboard}/docs.md +0 -0
  1585. /package/dist/runtime/{components/Edit/Features/Comments → editor/features/comments}/CommentInput/index.vue +0 -0
  1586. /package/dist/runtime/{components/Edit/Features/Comments → editor/features/comments}/docs.md +0 -0
  1587. /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/DebugSection.vue +0 -0
  1588. /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/Section/Features.vue +0 -0
  1589. /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/Section/Keyboard.vue +0 -0
  1590. /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/Section/Selection.vue +0 -0
  1591. /package/dist/runtime/{components/Edit/Features/Debug → editor/features/debug}/docs.md +0 -0
  1592. /package/dist/runtime/{components/Edit/Features/DraggingOverlay → editor/features/dragging-overlay}/Renderer/fragment.glsl +0 -0
  1593. /package/dist/runtime/{components/Edit/Features/DraggingOverlay → editor/features/dragging-overlay}/Renderer/vertex.glsl +0 -0
  1594. /package/dist/runtime/{components/Edit/Features/EditableField → editor/features/editable-field}/Overlay/Contenteditable/index.vue +0 -0
  1595. /package/dist/runtime/{components/Edit/Features/Fragments → editor/features/fragments}/docs.md +0 -0
  1596. /package/dist/runtime/{components/Edit/Features/Hover → editor/features/hover}/Renderer/fragment.glsl +0 -0
  1597. /package/dist/runtime/{components/Edit/Features/Hover → editor/features/hover}/Renderer/vertex.glsl +0 -0
  1598. /package/dist/runtime/{components/Edit/Features/Library → editor/features/library}/docs.md +0 -0
  1599. /package/dist/runtime/{components/Edit/Features/MultiSelect → editor/features/multi-select}/Renderer/fragment.glsl +0 -0
  1600. /package/dist/runtime/{components/Edit/Features/MultiSelect → editor/features/multi-select}/Renderer/vertex.glsl +0 -0
  1601. /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/Color/index.vue +0 -0
  1602. /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/DateTimeLocal/index.vue +0 -0
  1603. /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/Range/index.vue +0 -0
  1604. /package/dist/runtime/{components/Edit/Features/Options → editor/features/options}/Form/Text/index.vue +0 -0
  1605. /package/dist/runtime/{components/Edit/Features/PreviewGrant → editor/features/preview-grant}/QrCode/index.vue +0 -0
  1606. /package/dist/runtime/{components/Edit/Features/Selection → editor/features/selection}/AddButtons/Renderer/fragment.glsl +0 -0
  1607. /package/dist/runtime/{components/Edit/Features/Selection → editor/features/selection}/AddButtons/Renderer/vertex.glsl +0 -0
  1608. /package/dist/runtime/{components/Edit/Features/Selection → editor/features/selection}/Renderer/fragment.glsl +0 -0
  1609. /package/dist/runtime/{components/Edit/Features/Selection → editor/features/selection}/Renderer/vertex.glsl +0 -0
  1610. /package/dist/runtime/{components/Edit/Features/Structure → editor/features/structure}/List/index.vue +0 -0
  1611. /package/dist/runtime/{components/Edit/Features/Theme → editor/features/theme}/GeneratedCode/index.vue +0 -0
  1612. /package/dist/runtime/{components/Edit/Features/TouchActionBar → editor/features/touch-action-bar}/Bar/index.vue +0 -0
  1613. /package/dist/runtime/{components/Edit/Features/Transform → editor/features/transform}/docs.md +0 -0
  1614. /package/dist/runtime/{helpers → editor/helpers}/bundles/index.d.ts +0 -0
  1615. /package/dist/runtime/{helpers/easing.d.ts → editor/helpers/easing/index.d.ts} +0 -0
  1616. /package/dist/runtime/{helpers/easing.js → editor/helpers/easing/index.js} +0 -0
  1617. /package/dist/runtime/{helpers/editComponents → editor/helpers/edit-components}/index.d.ts +0 -0
  1618. /package/dist/runtime/{helpers/editComponents → editor/helpers/edit-components}/index.js +0 -0
  1619. /package/dist/runtime/{helpers/renderCycle.d.ts → editor/helpers/vue/index.d.ts} +0 -0
  1620. /package/dist/runtime/{helpers/renderCycle.js → editor/helpers/vue/index.js} +0 -0
  1621. /package/dist/runtime/{icons → editor/icons/svg}/arrow-right-thin.svg +0 -0
  1622. /package/dist/runtime/{icons → editor/icons/svg}/artboard.svg +0 -0
  1623. /package/dist/runtime/{icons → editor/icons/svg}/dock-window.svg +0 -0
  1624. /package/dist/runtime/{icons → editor/icons/svg}/duplicate.svg +0 -0
  1625. /package/dist/runtime/{icons → editor/icons/svg}/loader.svg +0 -0
  1626. /package/dist/runtime/{icons → editor/icons/svg}/logo.svg +0 -0
  1627. /package/dist/runtime/{icons/detach.svg → editor/icons/svg/reusable-detach.svg} +0 -0
  1628. /package/dist/runtime/{icons → editor/icons/svg}/reusable.svg +0 -0
  1629. /package/dist/runtime/{icons → editor/icons/svg}/robot.svg +0 -0
  1630. /package/dist/runtime/{icons → editor/icons/svg}/spinner.svg +0 -0
  1631. /package/dist/runtime/{icons → editor/icons/svg}/star.svg +0 -0
  1632. /package/dist/runtime/{icons → editor/icons/svg}/tiktok.svg +0 -0
  1633. /package/dist/runtime/{icons → editor/icons/svg}/unstar.svg +0 -0
  1634. /package/dist/runtime/{icons → editor/icons/svg}/vimeo.svg +0 -0
  1635. /package/dist/runtime/{icons → editor/icons/svg}/window-maximize.svg +0 -0
  1636. /package/dist/runtime/{icons → editor/icons/svg}/window-minimize.svg +0 -0
  1637. /package/dist/runtime/{icons → editor/icons/svg}/youtube.svg +0 -0
  1638. /package/dist/runtime/{blokkliPlugins → editor/plugins}/DebugOverlay/index.vue +0 -0
  1639. /package/dist/runtime/{blokkliPlugins → editor/plugins}/index.d.ts +0 -0
  1640. /package/dist/runtime/{blokkliPlugins → editor/plugins}/index.js +0 -0
  1641. /package/dist/runtime/{helpers → editor}/providers/broadcast.d.ts +0 -0
  1642. /package/dist/runtime/{helpers → editor}/providers/broadcast.js +0 -0
  1643. /package/dist/runtime/{helpers → editor}/providers/definition.js +0 -0
  1644. /package/dist/runtime/{helpers → editor}/providers/element.d.ts +0 -0
  1645. /package/dist/runtime/{helpers → editor}/providers/element.js +0 -0
  1646. /package/dist/runtime/{helpers → editor}/providers/indicators.js +0 -0
  1647. /package/dist/runtime/{helpers → editor}/providers/plugin.js +0 -0
@@ -0,0 +1,76 @@
1
+ import type { MutationResponseLike } from '#blokkli/editor/adapter';
2
+ import type { FieldListItem } from '#blokkli/types';
3
+ import type { PublishOptions } from '../features/publish/types.js';
4
+ export type MutatedField = {
5
+ name: string;
6
+ entityType: string;
7
+ entityUuid: string;
8
+ list: FieldListItem[];
9
+ };
10
+ export type EditEntity = {
11
+ label?: string;
12
+ status?: boolean;
13
+ bundleLabel?: string;
14
+ };
15
+ export interface Language {
16
+ id: string;
17
+ name: string;
18
+ }
19
+ export interface EntityTranslation {
20
+ id: string;
21
+ url: string;
22
+ editUrl?: string;
23
+ exists: boolean;
24
+ status: boolean;
25
+ }
26
+ export interface TranslationState {
27
+ isTranslatable?: boolean | null;
28
+ sourceLanguage?: string | null;
29
+ availableLanguages?: Language[];
30
+ translations?: EntityTranslation[];
31
+ }
32
+ export interface MutationItem {
33
+ timestamp?: string;
34
+ pluginId?: string;
35
+ plugin?: {
36
+ label?: string;
37
+ affectedItemUuid?: string;
38
+ };
39
+ enabled?: boolean;
40
+ }
41
+ export interface Validation {
42
+ message: string;
43
+ code?: string;
44
+ propertyPath?: string;
45
+ entityType?: string;
46
+ entityUuid?: string;
47
+ }
48
+ export interface MappedState {
49
+ currentIndex: number;
50
+ mutations: MutationItem[];
51
+ currentUserIsOwner: boolean;
52
+ ownerName: string;
53
+ mutatedState?: {
54
+ mutatedOptions?: any;
55
+ mutatedHostOptions?: Record<string, string>;
56
+ fields?: MutatedField[];
57
+ violations?: Validation[];
58
+ };
59
+ publishOptions: PublishOptions;
60
+ entity: EditEntity;
61
+ mutatedEntity?: any;
62
+ translationState: TranslationState;
63
+ previewUrl?: string;
64
+ }
65
+ export type MutateWithLoadingStateFunction = (promise: () => Promise<MutationResponseLike<any>> | undefined, errorMessage?: string | false, successMessage?: string) => Promise<boolean>;
66
+ export type MutatedOptions = {
67
+ [uuid: string]: {
68
+ [key: string]: string;
69
+ };
70
+ };
71
+ export type MutatedItemProps = {
72
+ [uuid: string]: {
73
+ [key: string]: string;
74
+ } | undefined;
75
+ };
76
+ export type EditMode = 'readonly' | 'editing' | 'translating' | 'review';
File without changes
@@ -0,0 +1,29 @@
1
+ import type { RGB } from './../../../global/types/theme.js';
2
+ export type DraggableStyle = {
3
+ /**
4
+ * The border radius for every corner, starting from top left.
5
+ */
6
+ radius: [number, number, number, number];
7
+ /**
8
+ * The smallest radius of the element.
9
+ */
10
+ radiusMin: number;
11
+ /**
12
+ * The border radius as a CSS property value.
13
+ */
14
+ radiusString: string;
15
+ /**
16
+ * The contrast color for highlighting.
17
+ */
18
+ contrastColor: string;
19
+ /**
20
+ * The translucent contrast color for highlighting.
21
+ */
22
+ contrastColorTranslucent: string;
23
+ /**
24
+ * The color to make a text (mostly) readable when put on top of the element.
25
+ */
26
+ textColor: string;
27
+ contrastColorRGB: RGB;
28
+ isInverted: boolean;
29
+ };
File without changes
@@ -0,0 +1,44 @@
1
+ import type { BlokkliIcon } from '#blokkli-build/icons';
2
+ export type Message = {
3
+ type: 'success' | 'error' | 'warning';
4
+ message: string;
5
+ additional?: string | Error | unknown;
6
+ replace?: boolean;
7
+ };
8
+ export type SidebarRegion = 'left' | 'right';
9
+ export type GlobalUiDialog = {
10
+ id: string;
11
+ alignment: 'left' | 'right' | 'center';
12
+ confirmClose?: boolean;
13
+ };
14
+ export type ContextMenuRule = {
15
+ type: 'rule';
16
+ };
17
+ export type ContextMenuButton = {
18
+ type: 'button';
19
+ label: string;
20
+ icon: BlokkliIcon;
21
+ callback: () => void;
22
+ };
23
+ export type ContextMenu = ContextMenuButton | ContextMenuRule;
24
+ export type KeyboardShortcut = {
25
+ group?: string;
26
+ meta?: boolean;
27
+ shift?: boolean;
28
+ code: string;
29
+ label: string;
30
+ };
31
+ export type DropArea = {
32
+ id: string;
33
+ label: string;
34
+ icon?: BlokkliIcon;
35
+ element: HTMLElement;
36
+ onDrop: () => Promise<any> | any;
37
+ };
38
+ export type InteractionMode = 'mouse' | 'touch';
39
+ export type BlockIndicator = {
40
+ id: string;
41
+ uuid: string;
42
+ element: HTMLElement;
43
+ position: 'left' | 'right';
44
+ };
File without changes
@@ -1,5 +1,3 @@
1
- import type { Rectangle, Coord, Size } from '#blokkli/types';
2
- import type { RGB } from '#blokkli/types/theme';
3
1
  /**
4
2
  * Type check for falsy values.
5
3
  *
@@ -8,73 +6,4 @@ import type { RGB } from '#blokkli/types/theme';
8
6
  */
9
7
  export declare function falsy<T>(value: T): value is NonNullable<T>;
10
8
  export declare function onlyUnique(value: string, index: number, self: Array<string>): boolean;
11
- /**
12
- * Convert a date to a relative time string, such as
13
- * "a minute ago", "in 2 hours", "yesterday", "3 months ago", etc.
14
- * using Intl.RelativeTimeFormat
15
- */
16
- export declare function getRelativeTimeString(date: Date | number, lang?: string): string;
17
- export declare function modulo(n: number, m: number): number;
18
- export declare function getBounds(rects: Rectangle[]): Rectangle | undefined;
19
- export declare function intersects(a: Rectangle, b: Rectangle): boolean;
20
- export declare function isInsideRect(x: number, y: number, rect: Rectangle): boolean;
21
- /**
22
- * Calculate the intersection amount of two rectangles as a value from 0 to 1.
23
- */
24
- export declare function calculateIntersection(rectA: Rectangle, rectB: Rectangle): number;
25
- /**
26
- * Return the closest rectangle.
27
- */
28
- export declare function findClosestRectangle<T extends Rectangle>(x: number, y: number, rects: T[]): T;
29
- /**
30
- * Return the distance from the given coordinates to the center of the rectangle.
31
- */
32
- export declare function distanceToRectangle(x: number, y: number, rect: Rectangle): number;
33
- /**
34
- * Return the distance from the given coordinates to the center of the rectangle.
35
- */
36
- export declare function distanceToClosestRectangleEdge(x: number, y: number, rect: Rectangle): number;
37
- /**
38
- * Subtracts a rectangle from a viewport and returns the remaining area as rectangles.
39
- * The viewport is assumed to have x=0 and y=0.
40
- *
41
- * @param viewport - The size of the viewport to subtract from
42
- * @param rect - The rectangle to subtract
43
- * @returns An array of 0 to 4 rectangles representing the area outside of rect
44
- */
45
- export declare function subtractRectFromViewport(viewport: Size, rect: Rectangle): Rectangle[];
46
- export declare function getDistance(a: Coord, b: Coord): number;
47
- export declare const parseColorString: (color: string) => RGB | undefined;
48
- /**
49
- * Determine the visual background color of an element.
50
- *
51
- * If the element defines a background color itself, it will be returned.
52
- * If the element has no explicit background color, we iterate over the
53
- * ancestors until we find an element with a background color. If no background
54
- * color can be determined, a transparent color is returned.
55
- */
56
- export declare const realBackgroundColor: (el: HTMLElement | SVGElement | null) => string;
57
- export declare const lerp: (s: number, e: number, t: number) => number;
58
- /**
59
- * Calculate the ideal X coordinate for placing a rectangle.
60
- *
61
- * Coordinates are assumed to be 0,0 for top-left. The method returns a number that can be used to set the
62
- */
63
- export declare const calculateCenterPosition: (blockingRects: Rectangle[], viewport: Rectangle, widthToPlace: number) => number;
64
- export declare function getContrastRatio(color1: RGB, color2: RGB): number;
65
- export declare function findHighestContrastColor(colors: RGB[], backgroundColor?: RGB): RGB;
66
- export declare const rgbaToString: (color: RGB, alpha?: number) => string;
67
- export declare const getNumericStyleValue: (str: string, fallback?: number) => number;
68
- /**
69
- * Position the given rectToPlace so that it doesn't overlap with any of the blockingRects.
70
- */
71
- export declare function findIdealRectPosition(blockingRects: Rectangle[], rectToPlace: Rectangle, viewport: Rectangle, maxOverlap?: number): {
72
- x: number;
73
- y: number;
74
- };
75
- export declare const originatesFromTextInput: (e: Event) => boolean;
76
9
  export declare function getFieldKey(uuid: string, fieldName: string): string;
77
- export declare function getInteractionCoordinates(e: MouseEvent | TouchEvent): Coord;
78
- export declare function toShaderColor(rgba: RGB): RGB;
79
- export declare function generateUUID(): string;
80
- export declare function asValidNumber(v: unknown, defaultValue: number): number;
@@ -1,335 +1,9 @@
1
- import { easeOutSine } from "./easing.js";
2
1
  export function falsy(value) {
3
2
  return value !== null && value !== void 0;
4
3
  }
5
4
  export function onlyUnique(value, index, self) {
6
5
  return self.indexOf(value) === index;
7
6
  }
8
- export function getRelativeTimeString(date, lang = navigator.language) {
9
- const timeMs = typeof date === "number" ? date : date.getTime();
10
- const deltaSeconds = Math.round((timeMs - Date.now()) / 1e3);
11
- const cutoffs = [
12
- 60,
13
- 3600,
14
- 86400,
15
- 86400 * 7,
16
- 86400 * 30,
17
- 86400 * 365,
18
- Infinity
19
- ];
20
- const units = [
21
- "second",
22
- "minute",
23
- "hour",
24
- "day",
25
- "week",
26
- "month",
27
- "year"
28
- ];
29
- const unitIndex = cutoffs.findIndex(
30
- (cutoff) => cutoff > Math.abs(deltaSeconds)
31
- );
32
- const divisor = unitIndex ? cutoffs[unitIndex - 1] : 1;
33
- const rtf = new Intl.RelativeTimeFormat(lang, { numeric: "auto" });
34
- return rtf.format(Math.floor(deltaSeconds / divisor), units[unitIndex]);
35
- }
36
- export function modulo(n, m) {
37
- return (n % m + m) % m;
38
- }
39
- export function getBounds(rects) {
40
- if (!rects.length) {
41
- return;
42
- }
43
- const firstRect = rects[0];
44
- let minX = firstRect.x;
45
- let minY = firstRect.y;
46
- let maxX = minX + firstRect.width;
47
- let maxY = minY + firstRect.height;
48
- for (const rect of rects.slice(1)) {
49
- minX = Math.min(minX, rect.x);
50
- minY = Math.min(minY, rect.y);
51
- maxX = Math.max(maxX, rect.x + rect.width);
52
- maxY = Math.max(maxY, rect.y + rect.height);
53
- }
54
- return {
55
- x: minX,
56
- y: minY,
57
- width: maxX - minX,
58
- height: maxY - minY
59
- };
60
- }
61
- export function intersects(a, b) {
62
- return a.x < b.x + b.width && a.x + a.width > b.x && a.y < b.y + b.height && a.y + a.height > b.y;
63
- }
64
- export function isInsideRect(x, y, rect) {
65
- return x > rect.x && x < rect.x + rect.width && y > rect.y && y < rect.y + rect.height;
66
- }
67
- export function calculateIntersection(rectA, rectB) {
68
- if (!intersects(rectA, rectB)) {
69
- return 0;
70
- }
71
- const xOverlap = Math.max(
72
- 0,
73
- Math.min(rectA.x + rectA.width, rectB.x + rectB.width) - Math.max(rectA.x, rectB.x)
74
- );
75
- const yOverlap = Math.max(
76
- 0,
77
- Math.min(rectA.y + rectA.height, rectB.y + rectB.height) - Math.max(rectA.y, rectB.y)
78
- );
79
- const intersectionArea = xOverlap * yOverlap;
80
- const rectAArea = rectA.width * rectA.height;
81
- return intersectionArea / rectAArea;
82
- }
83
- export function findClosestRectangle(x, y, rects) {
84
- let closestRect = rects[0];
85
- if (!closestRect) {
86
- throw new Error("Need at least one rect.");
87
- }
88
- let minDistance = distanceToClosestRectangleEdge(x, y, closestRect);
89
- for (let i = 1; i < rects.length; i++) {
90
- const rect = rects[i];
91
- const distance = distanceToClosestRectangleEdge(x, y, rect);
92
- if (distance < minDistance) {
93
- closestRect = rect;
94
- minDistance = distance;
95
- }
96
- }
97
- return closestRect;
98
- }
99
- export function distanceToRectangle(x, y, rect) {
100
- const minX = rect.x;
101
- const minY = rect.y;
102
- const maxX = rect.x + rect.width;
103
- const maxY = rect.y + rect.height;
104
- const dx = Math.max(minX - x, 0, x - maxX);
105
- const dy = Math.max(minY - y, 0, y - maxY);
106
- return Math.sqrt(dx * dx + dy * dy);
107
- }
108
- export function distanceToClosestRectangleEdge(x, y, rect) {
109
- if (isInsideRect(x, y, rect)) {
110
- return 0;
111
- }
112
- const minX = rect.x;
113
- const minY = rect.y;
114
- const maxX = rect.x + rect.width;
115
- const maxY = rect.y + rect.height;
116
- const dx = Math.max(minX - x, 0, x - maxX);
117
- const dy = Math.max(minY - y, 0, y - maxY);
118
- return Math.sqrt(dx * dx + dy * dy);
119
- }
120
- export function subtractRectFromViewport(viewport, rect) {
121
- const viewportLeft = 0;
122
- const viewportTop = 0;
123
- const viewportRight = viewport.width;
124
- const viewportBottom = viewport.height;
125
- const intersectLeft = Math.max(viewportLeft, rect.x);
126
- const intersectTop = Math.max(viewportTop, rect.y);
127
- const intersectRight = Math.min(viewportRight, rect.x + rect.width);
128
- const intersectBottom = Math.min(viewportBottom, rect.y + rect.height);
129
- if (intersectLeft >= intersectRight || intersectTop >= intersectBottom) {
130
- return [
131
- {
132
- x: 0,
133
- y: 0,
134
- width: viewport.width,
135
- height: viewport.height
136
- }
137
- ];
138
- }
139
- if (intersectLeft <= viewportLeft && intersectTop <= viewportTop && intersectRight >= viewportRight && intersectBottom >= viewportBottom) {
140
- return [];
141
- }
142
- const result = [];
143
- if (intersectTop > viewportTop) {
144
- result.push({
145
- x: viewportLeft,
146
- y: viewportTop,
147
- width: viewport.width,
148
- height: intersectTop - viewportTop
149
- });
150
- }
151
- if (intersectBottom < viewportBottom) {
152
- result.push({
153
- x: viewportLeft,
154
- y: intersectBottom,
155
- width: viewport.width,
156
- height: viewportBottom - intersectBottom
157
- });
158
- }
159
- if (intersectLeft > viewportLeft) {
160
- result.push({
161
- x: viewportLeft,
162
- y: intersectTop,
163
- width: intersectLeft - viewportLeft,
164
- height: intersectBottom - intersectTop
165
- });
166
- }
167
- if (intersectRight < viewportRight) {
168
- result.push({
169
- x: intersectRight,
170
- y: intersectTop,
171
- width: viewportRight - intersectRight,
172
- height: intersectBottom - intersectTop
173
- });
174
- }
175
- return result;
176
- }
177
- export function getDistance(a, b) {
178
- const dx = a.x - b.x;
179
- const dy = a.y - b.y;
180
- return Math.sqrt(dx * dx + dy * dy);
181
- }
182
- export const parseColorString = (color) => {
183
- const rgbaRegex = /^rgba?\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})(?:,\s*(0|1|0?\.\d+))?\)$/;
184
- const match = color.match(rgbaRegex);
185
- if (!match) {
186
- return;
187
- }
188
- const r = Number.parseInt(match[1]);
189
- const g = Number.parseInt(match[2]);
190
- const b = Number.parseInt(match[3]);
191
- const a = match[4] !== void 0 ? Number.parseFloat(match[4]) : 1;
192
- if ([r, g, b, a].some((val) => Number.isNaN(val))) {
193
- throw new Error("Invalid color values");
194
- }
195
- if (r < 0 || r > 255 || g < 0 || g > 255 || b < 0 || b > 255) {
196
- return;
197
- }
198
- return [r, g, b];
199
- };
200
- export const realBackgroundColor = (el) => {
201
- const transparent = "rgba(0, 0, 0, 0)";
202
- if (!el) return transparent;
203
- const bg = getComputedStyle(el).backgroundColor;
204
- if (bg === transparent || bg === "transparent") {
205
- return realBackgroundColor(el.parentElement);
206
- }
207
- return bg;
208
- };
209
- export const lerp = (s, e, t) => s * (1 - t) + e * t;
210
- export const calculateCenterPosition = (blockingRects, viewport, widthToPlace) => {
211
- const viewportCenterX = (viewport.x + viewport.width) / 2;
212
- const blockingThreshold = viewport.width / 7;
213
- const x = blockingRects.reduce((acc, rect) => {
214
- if (rect.x < viewportCenterX && viewportCenterX - rect.x > blockingThreshold && rect.x + rect.width > acc) {
215
- return rect.x + rect.width;
216
- }
217
- return acc;
218
- }, viewport.x);
219
- const width = blockingRects.reduce((acc, rect) => {
220
- if (rect.x > viewportCenterX && rect.x - viewportCenterX > blockingThreshold && rect.x < acc) {
221
- return rect.x;
222
- }
223
- return acc;
224
- }, viewport.width + viewport.x);
225
- return (x + width) / 2 - widthToPlace / 2;
226
- };
227
- export function getContrastRatio(color1, color2) {
228
- const luminance1 = getLuminance(color1);
229
- const luminance2 = getLuminance(color2);
230
- const lighter = Math.max(luminance1, luminance2);
231
- const darker = Math.min(luminance1, luminance2);
232
- return (lighter + 0.05) / (darker + 0.05);
233
- }
234
- function getLuminance(color) {
235
- const [r, g, b] = color.map((val) => {
236
- val /= 255;
237
- return val <= 0.03928 ? val / 12.92 : Math.pow((val + 0.055) / 1.055, 2.4);
238
- });
239
- return 0.2126 * r + 0.7152 * g + 0.0722 * b;
240
- }
241
- export function findHighestContrastColor(colors, backgroundColor = [255, 255, 255]) {
242
- let maxContrast = 0;
243
- let maxContrastColor = colors[0];
244
- for (const color of colors) {
245
- const contrast = getContrastRatio(color, backgroundColor);
246
- if (contrast > maxContrast) {
247
- maxContrast = contrast;
248
- maxContrastColor = color;
249
- }
250
- }
251
- return maxContrastColor;
252
- }
253
- export const rgbaToString = (color, alpha = 1) => `rgba(${[...color, alpha].join(", ")})`;
254
- export const getNumericStyleValue = (str, fallback = 0) => {
255
- const v = str.replace("px", "");
256
- const num = Number.parseFloat(v);
257
- if (Number.isNaN(num) || num === 0) {
258
- return fallback;
259
- }
260
- return num;
261
- };
262
- export function findIdealRectPosition(blockingRects, rectToPlace, viewport, maxOverlap = 60) {
263
- let targetX = rectToPlace.x;
264
- for (const blockingRect of blockingRects) {
265
- if (intersects(rectToPlace, blockingRect)) {
266
- const a = Math.abs(rectToPlace.y + rectToPlace.height - blockingRect.y);
267
- const b = Math.abs(blockingRect.y + blockingRect.height - rectToPlace.y);
268
- const verticalOverlap = Math.min(a, b);
269
- const smoothingFactor = easeOutSine(
270
- Math.min(verticalOverlap, maxOverlap) / maxOverlap
271
- );
272
- if (rectToPlace.x + rectToPlace.width / 2 > blockingRect.x + blockingRect.width / 2) {
273
- targetX = blockingRect.x + blockingRect.width;
274
- } else {
275
- targetX = blockingRect.x - rectToPlace.width;
276
- }
277
- targetX = rectToPlace.x + smoothingFactor * (targetX - rectToPlace.x);
278
- break;
279
- }
280
- }
281
- return {
282
- x: Math.min(
283
- Math.max(targetX, viewport.x),
284
- viewport.x + viewport.width - rectToPlace.width
285
- ),
286
- y: Math.min(
287
- Math.max(viewport.y, rectToPlace.y),
288
- viewport.height + viewport.y - rectToPlace.height
289
- )
290
- };
291
- }
292
- export const originatesFromTextInput = (e) => e.target instanceof HTMLInputElement || e.target instanceof HTMLTextAreaElement;
293
7
  export function getFieldKey(uuid, fieldName) {
294
8
  return uuid + ":" + fieldName;
295
9
  }
296
- export function getInteractionCoordinates(e) {
297
- if ("touches" in e) {
298
- const touch = e.touches[0] || e.changedTouches[0];
299
- return {
300
- x: touch.clientX,
301
- y: touch.clientY
302
- };
303
- }
304
- return {
305
- x: e.clientX,
306
- y: e.clientY
307
- };
308
- }
309
- export function toShaderColor(rgba) {
310
- return rgba.map((v) => v / 255);
311
- }
312
- export function generateUUID() {
313
- try {
314
- return crypto.randomUUID();
315
- } catch {
316
- }
317
- let d = (/* @__PURE__ */ new Date()).getTime(), d2 = typeof performance !== "undefined" && performance.now && performance.now() * 1e3 || 0;
318
- return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, (c) => {
319
- let r = Math.random() * 16;
320
- if (d > 0) {
321
- r = (d + r) % 16 | 0;
322
- d = Math.floor(d / 16);
323
- } else {
324
- r = (d2 + r) % 16 | 0;
325
- d2 = Math.floor(d2 / 16);
326
- }
327
- return (c == "x" ? r : r & 7 | 8).toString(16);
328
- });
329
- }
330
- export function asValidNumber(v, defaultValue) {
331
- if (typeof v === "number" && !Number.isNaN(v)) {
332
- return v;
333
- }
334
- return defaultValue;
335
- }
@@ -0,0 +1,127 @@
1
+ import type { InjectionKey, ComputedRef, Component } from 'vue';
2
+ import type { EntityContext } from './../types/index.js';
3
+ import type { DebugLogger } from '#blokkli/editor/providers/debug';
4
+ import type { FieldListItemTyped, ValidFieldListTypes } from '#blokkli-build/generated-types';
5
+ import type DraggableListComponent from '../editor/components/DraggableList.vue.js';
6
+ import type { BlokkliApp } from '#blokkli/editor/types/app';
7
+ import type { MutatedField, MutatedItemProps, MutatedOptions } from '#blokkli/editor/types/state';
8
+ import type { DefineBlokkliContext } from '#blokkli/types/definitions';
9
+ import type { InjectedBlokkliItem } from '#blokkli/types/field';
10
+ import type { Eventbus } from '#blokkli/editor/events';
11
+ import type { DomProvider } from '#blokkli/editor/providers/dom';
12
+ import type { DefinitionProvider } from '#blokkli/editor/providers/definition';
13
+ import type { BlokkliProviderEntityContext } from '#blokkli/types/provider';
14
+ type ItemEditContext = {
15
+ eventBus: Eventbus;
16
+ mutatedOptions: MutatedOptions;
17
+ dom?: DomProvider;
18
+ definitions: DefinitionProvider;
19
+ useBlockRegistration?: (dom: DomProvider, uuid: string) => void;
20
+ };
21
+ export declare const INJECT_APP: InjectionKey<BlokkliApp>;
22
+ /**
23
+ * The reduced edit context.
24
+ */
25
+ export declare const INJECT_EDIT_CONTEXT: InjectionKey<ItemEditContext>;
26
+ /**
27
+ * Whether we're currently editing (within the editor).
28
+ */
29
+ export declare const INJECT_IS_EDITING: InjectionKey<boolean>;
30
+ /**
31
+ * Whether the block is rendered within another block (nested).
32
+ */
33
+ export declare const INJECT_IS_NESTED: InjectionKey<boolean>;
34
+ /**
35
+ * The current nesting level, starting at 0.
36
+ */
37
+ export declare const INJECT_NESTING_LEVEL: InjectionKey<number>;
38
+ /**
39
+ * Whether we're currently in preview mode.
40
+ */
41
+ export declare const INJECT_IS_PREVIEW: InjectionKey<ComputedRef<boolean>>;
42
+ /**
43
+ * Whether the block is rendered inside a from_library block.
44
+ */
45
+ export declare const INJECT_IS_IN_REUSABLE: InjectionKey<boolean>;
46
+ /**
47
+ * The options provided by the from_library block.
48
+ */
49
+ export declare const INJECT_REUSABLE_OPTIONS: InjectionKey<ComputedRef<Record<string, string | number | boolean | string[] | undefined>>>;
50
+ /**
51
+ * The UUID of the parent from_library block.
52
+ */
53
+ export declare const INJECT_REUSABLE_UUID: InjectionKey<string>;
54
+ /**
55
+ * The field list type of the parent field.
56
+ */
57
+ export declare const INJECT_FIELD_LIST_TYPE: InjectionKey<ComputedRef<ValidFieldListTypes>>;
58
+ /**
59
+ * The field list items of the containing block.
60
+ */
61
+ export declare const INJECT_FIELD_LIST_BLOCKS: InjectionKey<ComputedRef<FieldListItemTyped[]>>;
62
+ /**
63
+ * Whether the parent field is rendering in proxy mode.
64
+ */
65
+ export declare const INJECT_FIELD_PROXY_MODE: InjectionKey<boolean>;
66
+ /**
67
+ * Whether the parent field is rendering in proxy mode.
68
+ *
69
+ * @todo: This is probably the ssame as INJECT_FIELD_PROXY_MODE.
70
+ */
71
+ export declare const INJECT_FIELD_USES_PROXY: InjectionKey<boolean>;
72
+ /**
73
+ * Whether the global proxy mode setting is enabled in the editor.
74
+ */
75
+ export declare const INJECT_GLOBAL_PROXY_MODE: InjectionKey<ComputedRef<boolean>>;
76
+ /**
77
+ * The blocks of the root field.
78
+ */
79
+ export declare const INJECT_PROVIDER_BLOCKS: InjectionKey<ComputedRef<FieldListItemTyped[]>>;
80
+ /**
81
+ * The item data provided by BlokkliItem.
82
+ */
83
+ export declare const INJECT_BLOCK_ITEM: InjectionKey<ComputedRef<InjectedBlokkliItem>>;
84
+ /**
85
+ * The mutated fields map provided in the editor.
86
+ *
87
+ * This is a reactive property with an objected keyed by field list key.
88
+ */
89
+ export declare const INJECT_MUTATED_FIELDS_MAP: InjectionKey<Record<string, MutatedField | undefined>>;
90
+ /**
91
+ * The current "entity context".
92
+ *
93
+ * For blocks rendered directly within the first BlokkliField inside BlokkliProvider, the entity is the provider.
94
+ * For nested blocks, the entity context will be the block that contains nested blocks.
95
+ */
96
+ export declare const INJECT_ENTITY_CONTEXT: InjectionKey<EntityContext>;
97
+ /**
98
+ * The entity context of the provider.
99
+ */
100
+ export declare const INJECT_PROVIDER_CONTEXT: InjectionKey<ComputedRef<BlokkliProviderEntityContext>>;
101
+ /**
102
+ * The defineBlokkli context of the "blokkli_fragment" block.
103
+ */
104
+ export declare const INJECT_FRAGMENT_CONTEXT: InjectionKey<DefineBlokkliContext<any, any>>;
105
+ /**
106
+ * The unique key of the current provider.
107
+ */
108
+ export declare const INJECT_PROVIDER_KEY: InjectionKey<string>;
109
+ /**
110
+ * The DraggableList component used during editing.
111
+ */
112
+ export declare const INJECT_EDIT_FIELD_LIST_COMPONENT: InjectionKey<typeof DraggableListComponent>;
113
+ /**
114
+ * The reactive item props override object, used to override props values (during editing).
115
+ */
116
+ export declare const INJECT_ITEM_PROPS_OVERRIDE: InjectionKey<MutatedItemProps>;
117
+ /**
118
+ * The debug logger instance.
119
+ */
120
+ export declare const INJECT_EDIT_LOGGER: InjectionKey<DebugLogger>;
121
+ /**
122
+ * An object containing block item component keys as properties and the Vue component as values.
123
+ *
124
+ * Used to prevent async loading of components in the editor.
125
+ */
126
+ export declare const INJECT_ALL_COMPONENTS_CHUNK: InjectionKey<Record<string, Component>>;
127
+ export {};