@lobb-js/studio 0.1.32 → 0.1.34

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 (294) hide show
  1. package/package.json +2 -2
  2. package/{dist → src/lib/components}/LlmButton.svelte +2 -2
  3. package/{dist → src/lib/components}/Studio.svelte +10 -10
  4. package/{dist → src/lib/components}/alertView.svelte +1 -1
  5. package/{dist → src/lib/components}/breadCrumbs.svelte +2 -2
  6. package/{dist → src/lib/components}/combobox.svelte +4 -4
  7. package/{dist → src/lib/components}/confirmationDialog/confirmationDialog.svelte +1 -1
  8. package/src/lib/components/confirmationDialog/store.svelte.ts +28 -0
  9. package/{dist → src/lib/components}/createManyButton.svelte +2 -2
  10. package/{dist → src/lib/components}/dataTable/childRecords.svelte +2 -2
  11. package/{dist → src/lib/components}/dataTable/dataTable.svelte +3 -3
  12. package/{dist → src/lib/components}/dataTable/fieldCell.svelte +1 -1
  13. package/{dist → src/lib/components}/dataTable/filter.svelte +2 -2
  14. package/{dist → src/lib/components}/dataTable/filterButton.svelte +1 -1
  15. package/{dist → src/lib/components}/dataTable/header.svelte +2 -2
  16. package/{dist → src/lib/components}/dataTable/sort.svelte +2 -2
  17. package/{dist → src/lib/components}/dataTable/sortButton.svelte +2 -2
  18. package/src/lib/components/dataTable/utils.ts +127 -0
  19. package/{dist → src/lib/components}/detailView/create/children.svelte +3 -3
  20. package/{dist → src/lib/components}/detailView/create/createDetailView.svelte +6 -6
  21. package/{dist → src/lib/components}/detailView/create/createDetailViewButton.svelte +2 -2
  22. package/{dist → src/lib/components}/detailView/create/createManyView.svelte +5 -5
  23. package/{dist → src/lib/components}/detailView/create/subRecords.svelte +1 -1
  24. package/{dist → src/lib/components}/detailView/fieldInput.svelte +4 -4
  25. package/{dist → src/lib/components}/detailView/fieldInputReplacement.svelte +1 -1
  26. package/src/lib/components/detailView/store.svelte.ts +61 -0
  27. package/{dist → src/lib/components}/detailView/update/children.svelte +4 -4
  28. package/{dist → src/lib/components}/detailView/update/updateDetailView.svelte +6 -6
  29. package/{dist → src/lib/components}/detailView/update/updateDetailViewButton.svelte +2 -2
  30. package/src/lib/components/detailView/utils.ts +177 -0
  31. package/{dist → src/lib/components}/diffViewer.svelte +1 -1
  32. package/{dist → src/lib/components}/drawer.svelte +1 -1
  33. package/{dist → src/lib/components}/extensionsComponents.svelte +1 -1
  34. package/{dist → src/lib/components}/header.svelte +1 -1
  35. package/src/lib/components/loadingTypesForMonacoEditor.ts +36 -0
  36. package/{dist → src/lib/components}/miniSidebar.svelte +7 -7
  37. package/{dist → src/lib/components}/monacoEditor.svelte +1 -1
  38. package/{dist → src/lib/components}/rangeCalendarButton.svelte +4 -4
  39. package/{dist → src/lib/components}/selectRecord.svelte +1 -1
  40. package/{dist → src/lib/components}/setServerPage.svelte +2 -2
  41. package/{dist/sidebar/index.d.ts → src/lib/components/sidebar/index.ts} +2 -1
  42. package/{dist → src/lib/components}/sidebar/sidebar.svelte +1 -1
  43. package/{dist → src/lib/components}/singletone.svelte +1 -1
  44. package/{dist → src/lib/components}/ui/accordion/accordion-content.svelte +1 -1
  45. package/{dist → src/lib/components}/ui/accordion/accordion-item.svelte +1 -1
  46. package/{dist → src/lib/components}/ui/accordion/accordion-trigger.svelte +1 -1
  47. package/{dist/ui/accordion/index.js → src/lib/components/ui/accordion/index.ts} +13 -4
  48. package/{dist → src/lib/components}/ui/alert/alert-description.svelte +1 -1
  49. package/{dist → src/lib/components}/ui/alert/alert-title.svelte +1 -1
  50. package/{dist → src/lib/components}/ui/alert/alert.svelte +1 -1
  51. package/{dist/ui/alert/index.d.ts → src/lib/components/ui/alert/index.ts} +10 -1
  52. package/{dist → src/lib/components}/ui/alert-dialog/alert-dialog-action.svelte +2 -2
  53. package/{dist → src/lib/components}/ui/alert-dialog/alert-dialog-cancel.svelte +2 -2
  54. package/{dist → src/lib/components}/ui/alert-dialog/alert-dialog-content.svelte +1 -1
  55. package/{dist → src/lib/components}/ui/alert-dialog/alert-dialog-description.svelte +1 -1
  56. package/{dist → src/lib/components}/ui/alert-dialog/alert-dialog-footer.svelte +1 -1
  57. package/{dist → src/lib/components}/ui/alert-dialog/alert-dialog-header.svelte +1 -1
  58. package/{dist → src/lib/components}/ui/alert-dialog/alert-dialog-overlay.svelte +1 -1
  59. package/{dist → src/lib/components}/ui/alert-dialog/alert-dialog-title.svelte +1 -1
  60. package/src/lib/components/ui/alert-dialog/index.ts +40 -0
  61. package/{dist → src/lib/components}/ui/breadcrumb/breadcrumb-ellipsis.svelte +1 -1
  62. package/{dist → src/lib/components}/ui/breadcrumb/breadcrumb-item.svelte +1 -1
  63. package/{dist → src/lib/components}/ui/breadcrumb/breadcrumb-link.svelte +1 -1
  64. package/{dist → src/lib/components}/ui/breadcrumb/breadcrumb-list.svelte +1 -1
  65. package/{dist → src/lib/components}/ui/breadcrumb/breadcrumb-page.svelte +1 -1
  66. package/{dist → src/lib/components}/ui/breadcrumb/breadcrumb-separator.svelte +1 -1
  67. package/{dist/ui/breadcrumb/index.d.ts → src/lib/components/ui/breadcrumb/index.ts} +18 -1
  68. package/{dist → src/lib/components}/ui/button/button.svelte +1 -1
  69. package/src/lib/components/ui/button/index.ts +17 -0
  70. package/{dist → src/lib/components}/ui/checkbox/checkbox.svelte +1 -1
  71. package/src/lib/components/ui/checkbox/index.ts +6 -0
  72. package/{dist → src/lib/components}/ui/command/command-dialog.svelte +1 -1
  73. package/{dist → src/lib/components}/ui/command/command-empty.svelte +1 -1
  74. package/{dist → src/lib/components}/ui/command/command-group.svelte +1 -1
  75. package/{dist → src/lib/components}/ui/command/command-input.svelte +1 -1
  76. package/{dist → src/lib/components}/ui/command/command-item.svelte +1 -1
  77. package/{dist → src/lib/components}/ui/command/command-link-item.svelte +1 -1
  78. package/{dist → src/lib/components}/ui/command/command-list.svelte +1 -1
  79. package/{dist → src/lib/components}/ui/command/command-separator.svelte +1 -1
  80. package/{dist → src/lib/components}/ui/command/command-shortcut.svelte +1 -1
  81. package/{dist → src/lib/components}/ui/command/command.svelte +1 -1
  82. package/{dist/ui/command/index.d.ts → src/lib/components/ui/command/index.ts} +29 -2
  83. package/{dist → src/lib/components}/ui/dialog/dialog-content.svelte +1 -1
  84. package/{dist → src/lib/components}/ui/dialog/dialog-description.svelte +1 -1
  85. package/{dist → src/lib/components}/ui/dialog/dialog-footer.svelte +1 -1
  86. package/{dist → src/lib/components}/ui/dialog/dialog-header.svelte +1 -1
  87. package/{dist → src/lib/components}/ui/dialog/dialog-overlay.svelte +1 -1
  88. package/{dist → src/lib/components}/ui/dialog/dialog-title.svelte +1 -1
  89. package/src/lib/components/ui/dialog/index.ts +37 -0
  90. package/src/lib/components/ui/input/index.ts +7 -0
  91. package/{dist → src/lib/components}/ui/input/input.svelte +1 -1
  92. package/src/lib/components/ui/label/index.ts +7 -0
  93. package/{dist → src/lib/components}/ui/label/label.svelte +1 -1
  94. package/src/lib/components/ui/popover/index.ts +17 -0
  95. package/{dist → src/lib/components}/ui/popover/popover-content.svelte +1 -1
  96. package/{dist/ui/range-calendar/index.d.ts → src/lib/components/ui/range-calendar/index.ts} +17 -1
  97. package/{dist → src/lib/components}/ui/range-calendar/range-calendar-cell.svelte +1 -1
  98. package/{dist → src/lib/components}/ui/range-calendar/range-calendar-day.svelte +2 -2
  99. package/{dist → src/lib/components}/ui/range-calendar/range-calendar-grid-body.svelte +1 -1
  100. package/{dist → src/lib/components}/ui/range-calendar/range-calendar-grid-head.svelte +1 -1
  101. package/{dist → src/lib/components}/ui/range-calendar/range-calendar-grid-row.svelte +1 -1
  102. package/{dist → src/lib/components}/ui/range-calendar/range-calendar-grid.svelte +1 -1
  103. package/{dist → src/lib/components}/ui/range-calendar/range-calendar-head-cell.svelte +1 -1
  104. package/{dist → src/lib/components}/ui/range-calendar/range-calendar-header.svelte +1 -1
  105. package/{dist → src/lib/components}/ui/range-calendar/range-calendar-heading.svelte +1 -1
  106. package/{dist → src/lib/components}/ui/range-calendar/range-calendar-months.svelte +1 -1
  107. package/{dist → src/lib/components}/ui/range-calendar/range-calendar-next-button.svelte +2 -2
  108. package/{dist → src/lib/components}/ui/range-calendar/range-calendar-prev-button.svelte +2 -2
  109. package/{dist → src/lib/components}/ui/range-calendar/range-calendar.svelte +1 -1
  110. package/src/lib/components/ui/select/index.ts +34 -0
  111. package/{dist → src/lib/components}/ui/select/select-content.svelte +1 -1
  112. package/{dist → src/lib/components}/ui/select/select-group-heading.svelte +1 -1
  113. package/{dist → src/lib/components}/ui/select/select-item.svelte +1 -1
  114. package/{dist → src/lib/components}/ui/select/select-scroll-down-button.svelte +1 -1
  115. package/{dist → src/lib/components}/ui/select/select-scroll-up-button.svelte +1 -1
  116. package/{dist → src/lib/components}/ui/select/select-separator.svelte +2 -2
  117. package/{dist → src/lib/components}/ui/select/select-trigger.svelte +1 -1
  118. package/src/lib/components/ui/separator/index.ts +7 -0
  119. package/{dist → src/lib/components}/ui/separator/separator.svelte +1 -1
  120. package/src/lib/components/ui/skeleton/index.ts +7 -0
  121. package/{dist → src/lib/components}/ui/skeleton/skeleton.svelte +1 -1
  122. package/src/lib/components/ui/switch/index.ts +7 -0
  123. package/{dist → src/lib/components}/ui/switch/switch.svelte +1 -1
  124. package/src/lib/components/ui/textarea/index.ts +7 -0
  125. package/{dist → src/lib/components}/ui/textarea/textarea.svelte +1 -1
  126. package/src/lib/components/ui/tooltip/index.ts +18 -0
  127. package/{dist → src/lib/components}/ui/tooltip/tooltip-content.svelte +1 -1
  128. package/{dist → src/lib/components}/workflowEditor.svelte +5 -5
  129. package/vite-plugins/contextual-lib-alias.js +7 -2
  130. package/dist/LlmButton.svelte.d.ts +0 -17
  131. package/dist/Studio.svelte.d.ts +0 -6
  132. package/dist/alertView.svelte.d.ts +0 -8
  133. package/dist/breadCrumbs.svelte.d.ts +0 -3
  134. package/dist/combobox.svelte.d.ts +0 -15
  135. package/dist/confirmationDialog/confirmationDialog.svelte.d.ts +0 -8
  136. package/dist/confirmationDialog/store.svelte.d.ts +0 -1
  137. package/dist/confirmationDialog/store.svelte.js +0 -69
  138. package/dist/createManyButton.svelte.d.ts +0 -8
  139. package/dist/dataTable/childRecords.svelte.d.ts +0 -9
  140. package/dist/dataTable/dataTable.svelte.d.ts +0 -15
  141. package/dist/dataTable/fieldCell.svelte.d.ts +0 -10
  142. package/dist/dataTable/filter.svelte.d.ts +0 -10
  143. package/dist/dataTable/filterButton.svelte.d.ts +0 -8
  144. package/dist/dataTable/footer.svelte.d.ts +0 -8
  145. package/dist/dataTable/header.svelte.d.ts +0 -10
  146. package/dist/dataTable/sort.svelte.d.ts +0 -8
  147. package/dist/dataTable/sortButton.svelte.d.ts +0 -8
  148. package/dist/dataTable/table.svelte.d.ts +0 -32
  149. package/dist/dataTable/utils.d.ts +0 -7
  150. package/dist/dataTable/utils.js +0 -111
  151. package/dist/detailView/create/children.svelte.d.ts +0 -8
  152. package/dist/detailView/create/createDetailView.svelte.d.ts +0 -18
  153. package/dist/detailView/create/createDetailViewButton.svelte.d.ts +0 -11
  154. package/dist/detailView/create/createManyView.svelte.d.ts +0 -16
  155. package/dist/detailView/create/subRecords.svelte.d.ts +0 -8
  156. package/dist/detailView/detailViewForm.svelte.d.ts +0 -48
  157. package/dist/detailView/fieldCustomInput.svelte.d.ts +0 -10
  158. package/dist/detailView/fieldInput.svelte.d.ts +0 -10
  159. package/dist/detailView/fieldInputReplacement.svelte.d.ts +0 -11
  160. package/dist/detailView/store.svelte.d.ts +0 -4
  161. package/dist/detailView/store.svelte.js +0 -125
  162. package/dist/detailView/update/children.svelte.d.ts +0 -7
  163. package/dist/detailView/update/updateDetailView.svelte.d.ts +0 -19
  164. package/dist/detailView/update/updateDetailViewButton.svelte.d.ts +0 -11
  165. package/dist/detailView/utils.d.ts +0 -8
  166. package/dist/detailView/utils.js +0 -165
  167. package/dist/diffViewer.svelte.d.ts +0 -9
  168. package/dist/drawer.svelte.d.ts +0 -8
  169. package/dist/extensionsComponents.svelte.d.ts +0 -11
  170. package/dist/foreingKeyInput.svelte.d.ts +0 -11
  171. package/dist/header.svelte.d.ts +0 -6
  172. package/dist/loadingTypesForMonacoEditor.d.ts +0 -7
  173. package/dist/loadingTypesForMonacoEditor.js +0 -72
  174. package/dist/miniSidebar.svelte.d.ts +0 -20
  175. package/dist/monacoEditor.svelte.d.ts +0 -13
  176. package/dist/rangeCalendarButton.svelte.d.ts +0 -7
  177. package/dist/selectRecord.svelte.d.ts +0 -15
  178. package/dist/setServerPage.svelte.d.ts +0 -18
  179. package/dist/sidebar/index.js +0 -3
  180. package/dist/sidebar/sidebar.svelte.d.ts +0 -17
  181. package/dist/sidebar/sidebarElements.svelte.d.ts +0 -19
  182. package/dist/sidebar/sidebarTrigger.svelte.d.ts +0 -7
  183. package/dist/singletone.svelte.d.ts +0 -6
  184. package/dist/ui/accordion/accordion-content.svelte.d.ts +0 -4
  185. package/dist/ui/accordion/accordion-item.svelte.d.ts +0 -4
  186. package/dist/ui/accordion/accordion-trigger.svelte.d.ts +0 -7
  187. package/dist/ui/accordion/index.d.ts +0 -6
  188. package/dist/ui/alert/alert-description.svelte.d.ts +0 -5
  189. package/dist/ui/alert/alert-title.svelte.d.ts +0 -8
  190. package/dist/ui/alert/alert.svelte.d.ts +0 -26
  191. package/dist/ui/alert/index.js +0 -7
  192. package/dist/ui/alert-dialog/alert-dialog-action.svelte.d.ts +0 -4
  193. package/dist/ui/alert-dialog/alert-dialog-cancel.svelte.d.ts +0 -4
  194. package/dist/ui/alert-dialog/alert-dialog-content.svelte.d.ts +0 -7
  195. package/dist/ui/alert-dialog/alert-dialog-description.svelte.d.ts +0 -4
  196. package/dist/ui/alert-dialog/alert-dialog-footer.svelte.d.ts +0 -5
  197. package/dist/ui/alert-dialog/alert-dialog-header.svelte.d.ts +0 -5
  198. package/dist/ui/alert-dialog/alert-dialog-overlay.svelte.d.ts +0 -4
  199. package/dist/ui/alert-dialog/alert-dialog-title.svelte.d.ts +0 -4
  200. package/dist/ui/alert-dialog/index.d.ts +0 -13
  201. package/dist/ui/alert-dialog/index.js +0 -15
  202. package/dist/ui/breadcrumb/breadcrumb-ellipsis.svelte.d.ts +0 -5
  203. package/dist/ui/breadcrumb/breadcrumb-item.svelte.d.ts +0 -5
  204. package/dist/ui/breadcrumb/breadcrumb-link.svelte.d.ts +0 -11
  205. package/dist/ui/breadcrumb/breadcrumb-list.svelte.d.ts +0 -5
  206. package/dist/ui/breadcrumb/breadcrumb-page.svelte.d.ts +0 -5
  207. package/dist/ui/breadcrumb/breadcrumb-separator.svelte.d.ts +0 -5
  208. package/dist/ui/breadcrumb/breadcrumb.svelte.d.ts +0 -5
  209. package/dist/ui/breadcrumb/index.js +0 -10
  210. package/dist/ui/button/button.svelte.d.ts +0 -60
  211. package/dist/ui/button/index.d.ts +0 -2
  212. package/dist/ui/button/index.js +0 -4
  213. package/dist/ui/checkbox/checkbox.svelte.d.ts +0 -4
  214. package/dist/ui/checkbox/index.d.ts +0 -2
  215. package/dist/ui/checkbox/index.js +0 -4
  216. package/dist/ui/command/command-dialog.svelte.d.ts +0 -9
  217. package/dist/ui/command/command-empty.svelte.d.ts +0 -4
  218. package/dist/ui/command/command-group.svelte.d.ts +0 -7
  219. package/dist/ui/command/command-input.svelte.d.ts +0 -4
  220. package/dist/ui/command/command-item.svelte.d.ts +0 -4
  221. package/dist/ui/command/command-link-item.svelte.d.ts +0 -4
  222. package/dist/ui/command/command-list.svelte.d.ts +0 -4
  223. package/dist/ui/command/command-separator.svelte.d.ts +0 -4
  224. package/dist/ui/command/command-shortcut.svelte.d.ts +0 -5
  225. package/dist/ui/command/command.svelte.d.ts +0 -4
  226. package/dist/ui/command/index.js +0 -15
  227. package/dist/ui/dialog/dialog-content.svelte.d.ts +0 -9
  228. package/dist/ui/dialog/dialog-description.svelte.d.ts +0 -4
  229. package/dist/ui/dialog/dialog-footer.svelte.d.ts +0 -5
  230. package/dist/ui/dialog/dialog-header.svelte.d.ts +0 -5
  231. package/dist/ui/dialog/dialog-overlay.svelte.d.ts +0 -4
  232. package/dist/ui/dialog/dialog-title.svelte.d.ts +0 -4
  233. package/dist/ui/dialog/index.d.ts +0 -12
  234. package/dist/ui/dialog/index.js +0 -14
  235. package/dist/ui/input/index.d.ts +0 -2
  236. package/dist/ui/input/index.js +0 -4
  237. package/dist/ui/input/input.svelte.d.ts +0 -13
  238. package/dist/ui/label/index.d.ts +0 -2
  239. package/dist/ui/label/index.js +0 -4
  240. package/dist/ui/label/label.svelte.d.ts +0 -4
  241. package/dist/ui/popover/index.d.ts +0 -6
  242. package/dist/ui/popover/index.js +0 -8
  243. package/dist/ui/popover/popover-content.svelte.d.ts +0 -7
  244. package/dist/ui/range-calendar/index.js +0 -16
  245. package/dist/ui/range-calendar/range-calendar-cell.svelte.d.ts +0 -4
  246. package/dist/ui/range-calendar/range-calendar-day.svelte.d.ts +0 -6
  247. package/dist/ui/range-calendar/range-calendar-grid-body.svelte.d.ts +0 -4
  248. package/dist/ui/range-calendar/range-calendar-grid-head.svelte.d.ts +0 -4
  249. package/dist/ui/range-calendar/range-calendar-grid-row.svelte.d.ts +0 -4
  250. package/dist/ui/range-calendar/range-calendar-grid.svelte.d.ts +0 -4
  251. package/dist/ui/range-calendar/range-calendar-head-cell.svelte.d.ts +0 -4
  252. package/dist/ui/range-calendar/range-calendar-header.svelte.d.ts +0 -4
  253. package/dist/ui/range-calendar/range-calendar-heading.svelte.d.ts +0 -4
  254. package/dist/ui/range-calendar/range-calendar-months.svelte.d.ts +0 -5
  255. package/dist/ui/range-calendar/range-calendar-next-button.svelte.d.ts +0 -4
  256. package/dist/ui/range-calendar/range-calendar-prev-button.svelte.d.ts +0 -4
  257. package/dist/ui/range-calendar/range-calendar.svelte.d.ts +0 -5
  258. package/dist/ui/select/index.d.ts +0 -11
  259. package/dist/ui/select/index.js +0 -13
  260. package/dist/ui/select/select-content.svelte.d.ts +0 -7
  261. package/dist/ui/select/select-group-heading.svelte.d.ts +0 -4
  262. package/dist/ui/select/select-item.svelte.d.ts +0 -4
  263. package/dist/ui/select/select-scroll-down-button.svelte.d.ts +0 -4
  264. package/dist/ui/select/select-scroll-up-button.svelte.d.ts +0 -4
  265. package/dist/ui/select/select-separator.svelte.d.ts +0 -4
  266. package/dist/ui/select/select-trigger.svelte.d.ts +0 -4
  267. package/dist/ui/separator/index.d.ts +0 -2
  268. package/dist/ui/separator/index.js +0 -4
  269. package/dist/ui/separator/separator.svelte.d.ts +0 -4
  270. package/dist/ui/skeleton/index.d.ts +0 -2
  271. package/dist/ui/skeleton/index.js +0 -4
  272. package/dist/ui/skeleton/skeleton.svelte.d.ts +0 -5
  273. package/dist/ui/sonner/index.js +0 -1
  274. package/dist/ui/sonner/sonner.svelte.d.ts +0 -4
  275. package/dist/ui/switch/index.d.ts +0 -2
  276. package/dist/ui/switch/index.js +0 -4
  277. package/dist/ui/switch/switch.svelte.d.ts +0 -4
  278. package/dist/ui/textarea/index.d.ts +0 -2
  279. package/dist/ui/textarea/index.js +0 -4
  280. package/dist/ui/textarea/textarea.svelte.d.ts +0 -5
  281. package/dist/ui/tooltip/index.d.ts +0 -6
  282. package/dist/ui/tooltip/index.js +0 -8
  283. package/dist/ui/tooltip/tooltip-content.svelte.d.ts +0 -4
  284. package/dist/workflowEditor.svelte.d.ts +0 -16
  285. /package/{dist → src/lib/components}/dataTable/footer.svelte +0 -0
  286. /package/{dist → src/lib/components}/dataTable/table.svelte +0 -0
  287. /package/{dist → src/lib/components}/detailView/detailViewForm.svelte +0 -0
  288. /package/{dist → src/lib/components}/detailView/fieldCustomInput.svelte +0 -0
  289. /package/{dist → src/lib/components}/foreingKeyInput.svelte +0 -0
  290. /package/{dist → src/lib/components}/sidebar/sidebarElements.svelte +0 -0
  291. /package/{dist → src/lib/components}/sidebar/sidebarTrigger.svelte +0 -0
  292. /package/{dist → src/lib/components}/ui/breadcrumb/breadcrumb.svelte +0 -0
  293. /package/{dist/ui/sonner/index.d.ts → src/lib/components/ui/sonner/index.ts} +0 -0
  294. /package/{dist → src/lib/components}/ui/sonner/sonner.svelte +0 -0
@@ -1,6 +0,0 @@
1
- interface Props {
2
- collectionName: string;
3
- }
4
- declare const Singletone: import("svelte").Component<Props, {}, "">;
5
- type Singletone = ReturnType<typeof Singletone>;
6
- export default Singletone;
@@ -1,4 +0,0 @@
1
- import { Accordion as AccordionPrimitive } from "bits-ui";
2
- declare const AccordionContent: import("svelte").Component<Omit<AccordionPrimitive.ContentProps, "child">, {}, "ref">;
3
- type AccordionContent = ReturnType<typeof AccordionContent>;
4
- export default AccordionContent;
@@ -1,4 +0,0 @@
1
- import { Accordion as AccordionPrimitive } from "bits-ui";
2
- declare const AccordionItem: import("svelte").Component<AccordionPrimitive.ItemProps, {}, "ref">;
3
- type AccordionItem = ReturnType<typeof AccordionItem>;
4
- export default AccordionItem;
@@ -1,7 +0,0 @@
1
- import { Accordion as AccordionPrimitive, type WithoutChild } from "bits-ui";
2
- type $$ComponentProps = WithoutChild<AccordionPrimitive.TriggerProps> & {
3
- level?: AccordionPrimitive.HeaderProps["level"];
4
- };
5
- declare const AccordionTrigger: import("svelte").Component<$$ComponentProps, {}, "ref">;
6
- type AccordionTrigger = ReturnType<typeof AccordionTrigger>;
7
- export default AccordionTrigger;
@@ -1,6 +0,0 @@
1
- import { Accordion as AccordionPrimitive } from "bits-ui";
2
- import Content from "./accordion-content.svelte";
3
- import Item from "./accordion-item.svelte";
4
- import Trigger from "./accordion-trigger.svelte";
5
- declare const Root: import("svelte").Component<AccordionPrimitive.RootProps, {}, "value" | "ref">;
6
- export { Root, Content, Item, Trigger, Root as Accordion, Content as AccordionContent, Item as AccordionItem, Trigger as AccordionTrigger, };
@@ -1,5 +0,0 @@
1
- import type { WithElementRef } from "bits-ui";
2
- import type { HTMLAttributes } from "svelte/elements";
3
- declare const AlertDescription: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
4
- type AlertDescription = ReturnType<typeof AlertDescription>;
5
- export default AlertDescription;
@@ -1,8 +0,0 @@
1
- import type { HTMLAttributes } from "svelte/elements";
2
- import type { WithElementRef } from "bits-ui";
3
- type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
4
- level?: 1 | 2 | 3 | 4 | 5 | 6;
5
- };
6
- declare const AlertTitle: import("svelte").Component<$$ComponentProps, {}, "ref">;
7
- type AlertTitle = ReturnType<typeof AlertTitle>;
8
- export default AlertTitle;
@@ -1,26 +0,0 @@
1
- import { type VariantProps } from "tailwind-variants";
2
- export declare const alertVariants: import("tailwind-variants").TVReturnType<{
3
- variant: {
4
- default: string;
5
- destructive: string;
6
- };
7
- }, undefined, "[&>svg]:text-foreground relative w-full rounded-lg border px-4 py-3 text-sm [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg~*]:pl-7", {
8
- variant: {
9
- default: string;
10
- destructive: string;
11
- };
12
- }, undefined, import("tailwind-variants").TVReturnType<{
13
- variant: {
14
- default: string;
15
- destructive: string;
16
- };
17
- }, undefined, "[&>svg]:text-foreground relative w-full rounded-lg border px-4 py-3 text-sm [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg~*]:pl-7", unknown, unknown, undefined>>;
18
- export type AlertVariant = VariantProps<typeof alertVariants>["variant"];
19
- import type { HTMLAttributes } from "svelte/elements";
20
- import type { WithElementRef } from "bits-ui";
21
- type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
22
- variant?: AlertVariant;
23
- };
24
- declare const Alert: import("svelte").Component<$$ComponentProps, {}, "ref">;
25
- type Alert = ReturnType<typeof Alert>;
26
- export default Alert;
@@ -1,7 +0,0 @@
1
- import Root from "./alert.svelte";
2
- import Description from "./alert-description.svelte";
3
- import Title from "./alert-title.svelte";
4
- export { alertVariants } from "./alert.svelte";
5
- export { Root, Description, Title,
6
- //
7
- Root as Alert, Description as AlertDescription, Title as AlertTitle, };
@@ -1,4 +0,0 @@
1
- import { AlertDialog as AlertDialogPrimitive } from "bits-ui";
2
- declare const AlertDialogAction: import("svelte").Component<AlertDialogPrimitive.TriggerProps, {}, "ref">;
3
- type AlertDialogAction = ReturnType<typeof AlertDialogAction>;
4
- export default AlertDialogAction;
@@ -1,4 +0,0 @@
1
- import { AlertDialog as AlertDialogPrimitive } from "bits-ui";
2
- declare const AlertDialogCancel: import("svelte").Component<AlertDialogPrimitive.TriggerProps, {}, "ref">;
3
- type AlertDialogCancel = ReturnType<typeof AlertDialogCancel>;
4
- export default AlertDialogCancel;
@@ -1,7 +0,0 @@
1
- import { AlertDialog as AlertDialogPrimitive, type WithoutChild } from "bits-ui";
2
- type $$ComponentProps = WithoutChild<AlertDialogPrimitive.ContentProps> & {
3
- portalProps?: AlertDialogPrimitive.PortalProps;
4
- };
5
- declare const AlertDialogContent: import("svelte").Component<$$ComponentProps, {}, "ref">;
6
- type AlertDialogContent = ReturnType<typeof AlertDialogContent>;
7
- export default AlertDialogContent;
@@ -1,4 +0,0 @@
1
- import { AlertDialog as AlertDialogPrimitive } from "bits-ui";
2
- declare const AlertDialogDescription: import("svelte").Component<AlertDialogPrimitive.DescriptionProps, {}, "ref">;
3
- type AlertDialogDescription = ReturnType<typeof AlertDialogDescription>;
4
- export default AlertDialogDescription;
@@ -1,5 +0,0 @@
1
- import type { WithElementRef } from "bits-ui";
2
- import type { HTMLAttributes } from "svelte/elements";
3
- declare const AlertDialogFooter: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
4
- type AlertDialogFooter = ReturnType<typeof AlertDialogFooter>;
5
- export default AlertDialogFooter;
@@ -1,5 +0,0 @@
1
- import type { WithElementRef } from "bits-ui";
2
- import type { HTMLAttributes } from "svelte/elements";
3
- declare const AlertDialogHeader: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
4
- type AlertDialogHeader = ReturnType<typeof AlertDialogHeader>;
5
- export default AlertDialogHeader;
@@ -1,4 +0,0 @@
1
- import { AlertDialog as AlertDialogPrimitive } from "bits-ui";
2
- declare const AlertDialogOverlay: import("svelte").Component<AlertDialogPrimitive.OverlayProps, {}, "ref">;
3
- type AlertDialogOverlay = ReturnType<typeof AlertDialogOverlay>;
4
- export default AlertDialogOverlay;
@@ -1,4 +0,0 @@
1
- import { AlertDialog as AlertDialogPrimitive } from "bits-ui";
2
- declare const AlertDialogTitle: import("svelte").Component<AlertDialogPrimitive.TitleProps, {}, "ref">;
3
- type AlertDialogTitle = ReturnType<typeof AlertDialogTitle>;
4
- export default AlertDialogTitle;
@@ -1,13 +0,0 @@
1
- import { AlertDialog as AlertDialogPrimitive } from "bits-ui";
2
- import Title from "./alert-dialog-title.svelte";
3
- import Action from "./alert-dialog-action.svelte";
4
- import Cancel from "./alert-dialog-cancel.svelte";
5
- import Footer from "./alert-dialog-footer.svelte";
6
- import Header from "./alert-dialog-header.svelte";
7
- import Overlay from "./alert-dialog-overlay.svelte";
8
- import Content from "./alert-dialog-content.svelte";
9
- import Description from "./alert-dialog-description.svelte";
10
- declare const Root: import("svelte").Component<import("bits-ui").AlertDialogRootPropsWithoutHTML, {}, "open">;
11
- declare const Trigger: import("svelte").Component<AlertDialogPrimitive.TriggerProps, {}, "ref">;
12
- declare const Portal: import("svelte").Component<import("bits-ui").PortalProps, {}, "">;
13
- export { Root, Title, Action, Cancel, Portal, Footer, Header, Trigger, Overlay, Content, Description, Root as AlertDialog, Title as AlertDialogTitle, Action as AlertDialogAction, Cancel as AlertDialogCancel, Portal as AlertDialogPortal, Footer as AlertDialogFooter, Header as AlertDialogHeader, Trigger as AlertDialogTrigger, Overlay as AlertDialogOverlay, Content as AlertDialogContent, Description as AlertDialogDescription, };
@@ -1,15 +0,0 @@
1
- import { AlertDialog as AlertDialogPrimitive } from "bits-ui";
2
- import Title from "./alert-dialog-title.svelte";
3
- import Action from "./alert-dialog-action.svelte";
4
- import Cancel from "./alert-dialog-cancel.svelte";
5
- import Footer from "./alert-dialog-footer.svelte";
6
- import Header from "./alert-dialog-header.svelte";
7
- import Overlay from "./alert-dialog-overlay.svelte";
8
- import Content from "./alert-dialog-content.svelte";
9
- import Description from "./alert-dialog-description.svelte";
10
- var Root = AlertDialogPrimitive.Root;
11
- var Trigger = AlertDialogPrimitive.Trigger;
12
- var Portal = AlertDialogPrimitive.Portal;
13
- export { Root, Title, Action, Cancel, Portal, Footer, Header, Trigger, Overlay, Content, Description,
14
- //
15
- Root as AlertDialog, Title as AlertDialogTitle, Action as AlertDialogAction, Cancel as AlertDialogCancel, Portal as AlertDialogPortal, Footer as AlertDialogFooter, Header as AlertDialogHeader, Trigger as AlertDialogTrigger, Overlay as AlertDialogOverlay, Content as AlertDialogContent, Description as AlertDialogDescription, };
@@ -1,5 +0,0 @@
1
- import type { WithElementRef } from "bits-ui";
2
- import type { HTMLAttributes } from "svelte/elements";
3
- declare const BreadcrumbEllipsis: import("svelte").Component<Omit<WithElementRef<HTMLAttributes<HTMLSpanElement>>, "children">, {}, "ref">;
4
- type BreadcrumbEllipsis = ReturnType<typeof BreadcrumbEllipsis>;
5
- export default BreadcrumbEllipsis;
@@ -1,5 +0,0 @@
1
- import type { WithElementRef } from "bits-ui";
2
- import type { HTMLLiAttributes } from "svelte/elements";
3
- declare const BreadcrumbItem: import("svelte").Component<WithElementRef<HTMLLiAttributes>, {}, "ref">;
4
- type BreadcrumbItem = ReturnType<typeof BreadcrumbItem>;
5
- export default BreadcrumbItem;
@@ -1,11 +0,0 @@
1
- import type { HTMLAnchorAttributes } from "svelte/elements";
2
- import type { Snippet } from "svelte";
3
- import type { WithElementRef } from "bits-ui";
4
- type $$ComponentProps = WithElementRef<HTMLAnchorAttributes> & {
5
- child?: Snippet<[{
6
- props: HTMLAnchorAttributes;
7
- }]>;
8
- };
9
- declare const BreadcrumbLink: import("svelte").Component<$$ComponentProps, {}, "ref">;
10
- type BreadcrumbLink = ReturnType<typeof BreadcrumbLink>;
11
- export default BreadcrumbLink;
@@ -1,5 +0,0 @@
1
- import type { WithElementRef } from "bits-ui";
2
- import type { HTMLOlAttributes } from "svelte/elements";
3
- declare const BreadcrumbList: import("svelte").Component<WithElementRef<HTMLOlAttributes>, {}, "ref">;
4
- type BreadcrumbList = ReturnType<typeof BreadcrumbList>;
5
- export default BreadcrumbList;
@@ -1,5 +0,0 @@
1
- import type { WithElementRef } from "bits-ui";
2
- import type { HTMLAttributes } from "svelte/elements";
3
- declare const BreadcrumbPage: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLSpanElement>>, {}, "ref">;
4
- type BreadcrumbPage = ReturnType<typeof BreadcrumbPage>;
5
- export default BreadcrumbPage;
@@ -1,5 +0,0 @@
1
- import type { WithElementRef } from "bits-ui";
2
- import type { HTMLLiAttributes } from "svelte/elements";
3
- declare const BreadcrumbSeparator: import("svelte").Component<WithElementRef<HTMLLiAttributes>, {}, "ref">;
4
- type BreadcrumbSeparator = ReturnType<typeof BreadcrumbSeparator>;
5
- export default BreadcrumbSeparator;
@@ -1,5 +0,0 @@
1
- import type { WithElementRef } from "bits-ui";
2
- import type { HTMLAttributes } from "svelte/elements";
3
- declare const Breadcrumb: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLElement>>, {}, "ref">;
4
- type Breadcrumb = ReturnType<typeof Breadcrumb>;
5
- export default Breadcrumb;
@@ -1,10 +0,0 @@
1
- import Root from "./breadcrumb.svelte";
2
- import Ellipsis from "./breadcrumb-ellipsis.svelte";
3
- import Item from "./breadcrumb-item.svelte";
4
- import Separator from "./breadcrumb-separator.svelte";
5
- import Link from "./breadcrumb-link.svelte";
6
- import List from "./breadcrumb-list.svelte";
7
- import Page from "./breadcrumb-page.svelte";
8
- export { Root, Ellipsis, Item, Separator, Link, List, Page,
9
- //
10
- Root as Breadcrumb, Ellipsis as BreadcrumbEllipsis, Item as BreadcrumbItem, Separator as BreadcrumbSeparator, Link as BreadcrumbLink, List as BreadcrumbList, Page as BreadcrumbPage, };
@@ -1,60 +0,0 @@
1
- import type { WithElementRef } from "bits-ui";
2
- import type { HTMLAnchorAttributes, HTMLButtonAttributes } from "svelte/elements";
3
- import { type VariantProps } from "tailwind-variants";
4
- export declare const buttonVariants: import("tailwind-variants").TVReturnType<{
5
- variant: {
6
- default: string;
7
- destructive: string;
8
- outline: string;
9
- secondary: string;
10
- ghost: string;
11
- link: string;
12
- };
13
- size: {
14
- default: string;
15
- sm: string;
16
- lg: string;
17
- icon: string;
18
- };
19
- }, undefined, "focus-visible:ring-ring inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0", {
20
- variant: {
21
- default: string;
22
- destructive: string;
23
- outline: string;
24
- secondary: string;
25
- ghost: string;
26
- link: string;
27
- };
28
- size: {
29
- default: string;
30
- sm: string;
31
- lg: string;
32
- icon: string;
33
- };
34
- }, undefined, import("tailwind-variants").TVReturnType<{
35
- variant: {
36
- default: string;
37
- destructive: string;
38
- outline: string;
39
- secondary: string;
40
- ghost: string;
41
- link: string;
42
- };
43
- size: {
44
- default: string;
45
- sm: string;
46
- lg: string;
47
- icon: string;
48
- };
49
- }, undefined, "focus-visible:ring-ring inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0", unknown, unknown, undefined>>;
50
- export type ButtonVariant = VariantProps<typeof buttonVariants>["variant"];
51
- export type ButtonSize = VariantProps<typeof buttonVariants>["size"];
52
- export type ButtonProps = WithElementRef<HTMLButtonAttributes> & WithElementRef<HTMLAnchorAttributes> & {
53
- variant?: ButtonVariant;
54
- size?: ButtonSize;
55
- Icon?: any;
56
- href?: string;
57
- };
58
- declare const Button: import("svelte").Component<ButtonProps, {}, "ref">;
59
- type Button = ReturnType<typeof Button>;
60
- export default Button;
@@ -1,2 +0,0 @@
1
- import Root, { type ButtonProps, type ButtonSize, type ButtonVariant, buttonVariants } from "./button.svelte";
2
- export { Root, type ButtonProps as Props, Root as Button, buttonVariants, type ButtonProps, type ButtonSize, type ButtonVariant, };
@@ -1,4 +0,0 @@
1
- import Root, { buttonVariants, } from "./button.svelte";
2
- export { Root,
3
- //
4
- Root as Button, buttonVariants, };
@@ -1,4 +0,0 @@
1
- import { Checkbox as CheckboxPrimitive } from "bits-ui";
2
- declare const Checkbox: import("svelte").Component<Omit<Omit<CheckboxPrimitive.RootProps, "child">, "children">, {}, "checked" | "indeterminate" | "ref">;
3
- type Checkbox = ReturnType<typeof Checkbox>;
4
- export default Checkbox;
@@ -1,2 +0,0 @@
1
- import Root from "./checkbox.svelte";
2
- export { Root, Root as Checkbox, };
@@ -1,4 +0,0 @@
1
- import Root from "./checkbox.svelte";
2
- export { Root,
3
- //
4
- Root as Checkbox, };
@@ -1,9 +0,0 @@
1
- import { Command as CommandPrimitive, Dialog as DialogPrimitive, type WithoutChildrenOrChild } from "bits-ui";
2
- import type { Snippet } from "svelte";
3
- type $$ComponentProps = WithoutChildrenOrChild<DialogPrimitive.RootProps> & WithoutChildrenOrChild<CommandPrimitive.RootProps> & {
4
- portalProps?: DialogPrimitive.PortalProps;
5
- children: Snippet;
6
- };
7
- declare const CommandDialog: import("svelte").Component<$$ComponentProps, {}, "open" | "value" | "ref">;
8
- type CommandDialog = ReturnType<typeof CommandDialog>;
9
- export default CommandDialog;
@@ -1,4 +0,0 @@
1
- import { Command as CommandPrimitive } from "bits-ui";
2
- declare const CommandEmpty: import("svelte").Component<CommandPrimitive.EmptyProps, {}, "ref">;
3
- type CommandEmpty = ReturnType<typeof CommandEmpty>;
4
- export default CommandEmpty;
@@ -1,7 +0,0 @@
1
- import { Command as CommandPrimitive } from "bits-ui";
2
- type $$ComponentProps = CommandPrimitive.GroupProps & {
3
- heading?: string;
4
- };
5
- declare const CommandGroup: import("svelte").Component<$$ComponentProps, {}, "ref">;
6
- type CommandGroup = ReturnType<typeof CommandGroup>;
7
- export default CommandGroup;
@@ -1,4 +0,0 @@
1
- import { Command as CommandPrimitive } from "bits-ui";
2
- declare const CommandInput: import("svelte").Component<CommandPrimitive.InputProps, {}, "value" | "ref">;
3
- type CommandInput = ReturnType<typeof CommandInput>;
4
- export default CommandInput;
@@ -1,4 +0,0 @@
1
- import { Command as CommandPrimitive } from "bits-ui";
2
- declare const CommandItem: import("svelte").Component<CommandPrimitive.ItemProps, {}, "ref">;
3
- type CommandItem = ReturnType<typeof CommandItem>;
4
- export default CommandItem;
@@ -1,4 +0,0 @@
1
- import { Command as CommandPrimitive } from "bits-ui";
2
- declare const CommandLinkItem: import("svelte").Component<CommandPrimitive.LinkItemProps, {}, "ref">;
3
- type CommandLinkItem = ReturnType<typeof CommandLinkItem>;
4
- export default CommandLinkItem;
@@ -1,4 +0,0 @@
1
- import { Command as CommandPrimitive } from "bits-ui";
2
- declare const CommandList: import("svelte").Component<CommandPrimitive.ListProps, {}, "ref">;
3
- type CommandList = ReturnType<typeof CommandList>;
4
- export default CommandList;
@@ -1,4 +0,0 @@
1
- import { Command as CommandPrimitive } from "bits-ui";
2
- declare const CommandSeparator: import("svelte").Component<CommandPrimitive.SeparatorProps, {}, "ref">;
3
- type CommandSeparator = ReturnType<typeof CommandSeparator>;
4
- export default CommandSeparator;
@@ -1,5 +0,0 @@
1
- import type { WithElementRef } from "bits-ui";
2
- import type { HTMLAttributes } from "svelte/elements";
3
- declare const CommandShortcut: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLSpanElement>>, {}, "ref">;
4
- type CommandShortcut = ReturnType<typeof CommandShortcut>;
5
- export default CommandShortcut;
@@ -1,4 +0,0 @@
1
- import { Command as CommandPrimitive } from "bits-ui";
2
- declare const Command: import("svelte").Component<CommandPrimitive.RootProps, {}, "value" | "ref">;
3
- type Command = ReturnType<typeof Command>;
4
- export default Command;
@@ -1,15 +0,0 @@
1
- import { Command as CommandPrimitive } from "bits-ui";
2
- import Root from "./command.svelte";
3
- import Dialog from "./command-dialog.svelte";
4
- import Empty from "./command-empty.svelte";
5
- import Group from "./command-group.svelte";
6
- import Item from "./command-item.svelte";
7
- import Input from "./command-input.svelte";
8
- import List from "./command-list.svelte";
9
- import Separator from "./command-separator.svelte";
10
- import Shortcut from "./command-shortcut.svelte";
11
- import LinkItem from "./command-link-item.svelte";
12
- var Loading = CommandPrimitive.Loading;
13
- export { Root, Dialog, Empty, Group, Item, LinkItem, Input, List, Separator, Shortcut, Loading,
14
- //
15
- Root as Command, Dialog as CommandDialog, Empty as CommandEmpty, Group as CommandGroup, Item as CommandItem, LinkItem as CommandLinkItem, Input as CommandInput, List as CommandList, Separator as CommandSeparator, Shortcut as CommandShortcut, Loading as CommandLoading, };
@@ -1,9 +0,0 @@
1
- import { Dialog as DialogPrimitive, type WithoutChildrenOrChild } from "bits-ui";
2
- import type { Snippet } from "svelte";
3
- type $$ComponentProps = WithoutChildrenOrChild<DialogPrimitive.ContentProps> & {
4
- portalProps?: DialogPrimitive.PortalProps;
5
- children: Snippet;
6
- };
7
- declare const DialogContent: import("svelte").Component<$$ComponentProps, {}, "ref">;
8
- type DialogContent = ReturnType<typeof DialogContent>;
9
- export default DialogContent;
@@ -1,4 +0,0 @@
1
- import { Dialog as DialogPrimitive } from "bits-ui";
2
- declare const DialogDescription: import("svelte").Component<DialogPrimitive.DescriptionProps, {}, "ref">;
3
- type DialogDescription = ReturnType<typeof DialogDescription>;
4
- export default DialogDescription;
@@ -1,5 +0,0 @@
1
- import type { WithElementRef } from "bits-ui";
2
- import type { HTMLAttributes } from "svelte/elements";
3
- declare const DialogFooter: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
4
- type DialogFooter = ReturnType<typeof DialogFooter>;
5
- export default DialogFooter;
@@ -1,5 +0,0 @@
1
- import type { HTMLAttributes } from "svelte/elements";
2
- import type { WithElementRef } from "bits-ui";
3
- declare const DialogHeader: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
4
- type DialogHeader = ReturnType<typeof DialogHeader>;
5
- export default DialogHeader;
@@ -1,4 +0,0 @@
1
- import { Dialog as DialogPrimitive } from "bits-ui";
2
- declare const DialogOverlay: import("svelte").Component<DialogPrimitive.OverlayProps, {}, "ref">;
3
- type DialogOverlay = ReturnType<typeof DialogOverlay>;
4
- export default DialogOverlay;
@@ -1,4 +0,0 @@
1
- import { Dialog as DialogPrimitive } from "bits-ui";
2
- declare const DialogTitle: import("svelte").Component<DialogPrimitive.TitleProps, {}, "ref">;
3
- type DialogTitle = ReturnType<typeof DialogTitle>;
4
- export default DialogTitle;
@@ -1,12 +0,0 @@
1
- import { Dialog as DialogPrimitive } from "bits-ui";
2
- import Title from "./dialog-title.svelte";
3
- import Footer from "./dialog-footer.svelte";
4
- import Header from "./dialog-header.svelte";
5
- import Overlay from "./dialog-overlay.svelte";
6
- import Content from "./dialog-content.svelte";
7
- import Description from "./dialog-description.svelte";
8
- declare const Root: typeof DialogPrimitive.Root;
9
- declare const Trigger: typeof DialogPrimitive.Trigger;
10
- declare const Close: typeof DialogPrimitive.Close;
11
- declare const Portal: typeof DialogPrimitive.Portal;
12
- export { Root, Title, Portal, Footer, Header, Trigger, Overlay, Content, Description, Close, Root as Dialog, Title as DialogTitle, Portal as DialogPortal, Footer as DialogFooter, Header as DialogHeader, Trigger as DialogTrigger, Overlay as DialogOverlay, Content as DialogContent, Description as DialogDescription, Close as DialogClose, };
@@ -1,14 +0,0 @@
1
- import { Dialog as DialogPrimitive } from "bits-ui";
2
- import Title from "./dialog-title.svelte";
3
- import Footer from "./dialog-footer.svelte";
4
- import Header from "./dialog-header.svelte";
5
- import Overlay from "./dialog-overlay.svelte";
6
- import Content from "./dialog-content.svelte";
7
- import Description from "./dialog-description.svelte";
8
- var Root = DialogPrimitive.Root;
9
- var Trigger = DialogPrimitive.Trigger;
10
- var Close = DialogPrimitive.Close;
11
- var Portal = DialogPrimitive.Portal;
12
- export { Root, Title, Portal, Footer, Header, Trigger, Overlay, Content, Description, Close,
13
- //
14
- Root as Dialog, Title as DialogTitle, Portal as DialogPortal, Footer as DialogFooter, Header as DialogHeader, Trigger as DialogTrigger, Overlay as DialogOverlay, Content as DialogContent, Description as DialogDescription, Close as DialogClose, };
@@ -1,2 +0,0 @@
1
- import Root from "./input.svelte";
2
- export { Root, Root as Input, };
@@ -1,4 +0,0 @@
1
- import Root from "./input.svelte";
2
- export { Root,
3
- //
4
- Root as Input, };
@@ -1,13 +0,0 @@
1
- import type { HTMLInputAttributes, HTMLInputTypeAttribute } from "svelte/elements";
2
- import type { WithElementRef } from "bits-ui";
3
- type InputType = Exclude<HTMLInputTypeAttribute, "file">;
4
- type Props = WithElementRef<Omit<HTMLInputAttributes, "type"> & ({
5
- type: "file";
6
- files?: FileList;
7
- } | {
8
- type?: InputType;
9
- files?: undefined;
10
- })>;
11
- declare const Input: import("svelte").Component<Props, {}, "value" | "files" | "ref">;
12
- type Input = ReturnType<typeof Input>;
13
- export default Input;
@@ -1,2 +0,0 @@
1
- import Root from "./label.svelte";
2
- export { Root, Root as Label, };
@@ -1,4 +0,0 @@
1
- import Root from "./label.svelte";
2
- export { Root,
3
- //
4
- Root as Label, };
@@ -1,4 +0,0 @@
1
- import { Label as LabelPrimitive } from "bits-ui";
2
- declare const Label: import("svelte").Component<LabelPrimitive.RootProps, {}, "ref">;
3
- type Label = ReturnType<typeof Label>;
4
- export default Label;
@@ -1,6 +0,0 @@
1
- import { Popover as PopoverPrimitive } from "bits-ui";
2
- import Content from "./popover-content.svelte";
3
- declare const Root: import("svelte").Component<import("bits-ui").PopoverRootPropsWithoutHTML, {}, "open">;
4
- declare const Trigger: import("svelte").Component<PopoverPrimitive.TriggerProps, {}, "ref">;
5
- declare const Close: import("svelte").Component<PopoverPrimitive.CloseProps, {}, "ref">;
6
- export { Root, Content, Trigger, Close, Root as Popover, Content as PopoverContent, Trigger as PopoverTrigger, Close as PopoverClose, };
@@ -1,8 +0,0 @@
1
- import { Popover as PopoverPrimitive } from "bits-ui";
2
- import Content from "./popover-content.svelte";
3
- var Root = PopoverPrimitive.Root;
4
- var Trigger = PopoverPrimitive.Trigger;
5
- var Close = PopoverPrimitive.Close;
6
- export { Root, Content, Trigger, Close,
7
- //
8
- Root as Popover, Content as PopoverContent, Trigger as PopoverTrigger, Close as PopoverClose, };
@@ -1,7 +0,0 @@
1
- import { Popover as PopoverPrimitive } from "bits-ui";
2
- type $$ComponentProps = PopoverPrimitive.ContentProps & {
3
- portalProps?: PopoverPrimitive.PortalProps;
4
- };
5
- declare const PopoverContent: import("svelte").Component<$$ComponentProps, {}, "ref">;
6
- type PopoverContent = ReturnType<typeof PopoverContent>;
7
- export default PopoverContent;
@@ -1,16 +0,0 @@
1
- import Root from "./range-calendar.svelte";
2
- import Cell from "./range-calendar-cell.svelte";
3
- import Day from "./range-calendar-day.svelte";
4
- import Grid from "./range-calendar-grid.svelte";
5
- import Header from "./range-calendar-header.svelte";
6
- import Months from "./range-calendar-months.svelte";
7
- import GridRow from "./range-calendar-grid-row.svelte";
8
- import Heading from "./range-calendar-heading.svelte";
9
- import GridBody from "./range-calendar-grid-body.svelte";
10
- import GridHead from "./range-calendar-grid-head.svelte";
11
- import HeadCell from "./range-calendar-head-cell.svelte";
12
- import NextButton from "./range-calendar-next-button.svelte";
13
- import PrevButton from "./range-calendar-prev-button.svelte";
14
- export { Day, Cell, Grid, Header, Months, GridRow, Heading, GridBody, GridHead, HeadCell, NextButton, PrevButton,
15
- //
16
- Root as RangeCalendar, };
@@ -1,4 +0,0 @@
1
- import { RangeCalendar as RangeCalendarPrimitive } from "bits-ui";
2
- declare const RangeCalendarCell: import("svelte").Component<RangeCalendarPrimitive.CellProps, {}, "ref">;
3
- type RangeCalendarCell = ReturnType<typeof RangeCalendarCell>;
4
- export default RangeCalendarCell;
@@ -1,6 +0,0 @@
1
- import { RangeCalendar as RangeCalendarPrimitive } from "bits-ui";
2
- declare const RangeCalendarDay: import("svelte").Component<RangeCalendarPrimitive.DayProps, {
3
- class: import("svelte/elements").ClassValue;
4
- }, "ref">;
5
- type RangeCalendarDay = ReturnType<typeof RangeCalendarDay>;
6
- export default RangeCalendarDay;
@@ -1,4 +0,0 @@
1
- import { RangeCalendar as RangeCalendarPrimitive } from "bits-ui";
2
- declare const RangeCalendarGridBody: import("svelte").Component<RangeCalendarPrimitive.GridBodyProps, {}, "ref">;
3
- type RangeCalendarGridBody = ReturnType<typeof RangeCalendarGridBody>;
4
- export default RangeCalendarGridBody;
@@ -1,4 +0,0 @@
1
- import { RangeCalendar as RangeCalendarPrimitive } from "bits-ui";
2
- declare const RangeCalendarGridHead: import("svelte").Component<RangeCalendarPrimitive.GridHeadProps, {}, "ref">;
3
- type RangeCalendarGridHead = ReturnType<typeof RangeCalendarGridHead>;
4
- export default RangeCalendarGridHead;