svelte-ag 0.0.2-dev.81 → 0.0.2-dev.83

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 (163) hide show
  1. package/dist/lib/components/animated/animated.svelte +16 -30
  2. package/dist/lib/components/animated/animated.svelte.d.ts +1 -1
  3. package/dist/lib/components/animated/animated.svelte.d.ts.map +1 -1
  4. package/dist/lib/components/carousel/carousel-content.svelte +5 -24
  5. package/dist/lib/components/carousel/carousel-content.svelte.d.ts +6 -1
  6. package/dist/lib/components/carousel/carousel-content.svelte.d.ts.map +1 -1
  7. package/dist/lib/components/carousel/carousel-dots.svelte +1 -3
  8. package/dist/lib/components/carousel/carousel-dots.svelte.d.ts +6 -1
  9. package/dist/lib/components/carousel/carousel-dots.svelte.d.ts.map +1 -1
  10. package/dist/lib/components/carousel/carousel-item.svelte.d.ts +6 -1
  11. package/dist/lib/components/carousel/carousel-item.svelte.d.ts.map +1 -1
  12. package/dist/lib/components/carousel/carousel-next.svelte +21 -9
  13. package/dist/lib/components/carousel/carousel-next.svelte.d.ts +21 -1
  14. package/dist/lib/components/carousel/carousel-next.svelte.d.ts.map +1 -1
  15. package/dist/lib/components/carousel/carousel-previous.svelte +21 -9
  16. package/dist/lib/components/carousel/carousel-previous.svelte.d.ts +21 -1
  17. package/dist/lib/components/carousel/carousel-previous.svelte.d.ts.map +1 -1
  18. package/dist/lib/components/carousel/carousel.svelte +21 -1
  19. package/dist/lib/components/carousel/carousel.svelte.d.ts +2 -1
  20. package/dist/lib/components/carousel/carousel.svelte.d.ts.map +1 -1
  21. package/dist/lib/components/carousel/context.d.ts +1 -0
  22. package/dist/lib/components/carousel/context.d.ts.map +1 -1
  23. package/dist/lib/components/dnd/Droppable.svelte.d.ts +8 -1
  24. package/dist/lib/components/dnd/Droppable.svelte.d.ts.map +1 -1
  25. package/dist/lib/components/dnd/dnd-context.svelte.d.ts +1 -1
  26. package/dist/lib/components/dnd/dnd-drag-overlay.svelte.d.ts +1 -1
  27. package/dist/lib/components/dnd/dnd-drag-placeholder.svelte.d.ts +1 -1
  28. package/dist/lib/components/dnd/dnd-drag-placeholder.svelte.d.ts.map +1 -1
  29. package/dist/lib/components/dnd/dnd-draghandle.svelte.d.ts +1 -1
  30. package/dist/lib/components/dnd/dnd-draghandle.svelte.d.ts.map +1 -1
  31. package/dist/lib/components/dnd/dnd-overlay.svelte.d.ts +11 -3
  32. package/dist/lib/components/dnd/dnd-overlay.svelte.d.ts.map +1 -1
  33. package/dist/lib/components/dnd/dnd-sortable-context.svelte.d.ts +1 -1
  34. package/dist/lib/components/dnd/dnd-sortable-context.svelte.d.ts.map +1 -1
  35. package/dist/lib/components/dnd/dnd-sortable-item.svelte.d.ts +1 -1
  36. package/dist/lib/components/dnd/dnd-sortable-item.svelte.d.ts.map +1 -1
  37. package/dist/lib/components/dnd/example.svelte.d.ts +1 -1
  38. package/dist/lib/components/dnd/example.svelte.d.ts.map +1 -1
  39. package/dist/lib/components/form/form-button.svelte.d.ts +2 -1
  40. package/dist/lib/components/form/form-button.svelte.d.ts.map +1 -1
  41. package/dist/lib/components/form/form-description.svelte.d.ts +2 -1
  42. package/dist/lib/components/form/form-description.svelte.d.ts.map +1 -1
  43. package/dist/lib/components/form/form-element-field.svelte.d.ts +1 -1
  44. package/dist/lib/components/form/form-field-errors.svelte.d.ts +1 -1
  45. package/dist/lib/components/form/form-field-errors.svelte.d.ts.map +1 -1
  46. package/dist/lib/components/form/form-field.svelte.d.ts +1 -1
  47. package/dist/lib/components/form/form-fieldset.svelte.d.ts +1 -1
  48. package/dist/lib/components/form/form-label.svelte.d.ts +2 -1
  49. package/dist/lib/components/form/form-label.svelte.d.ts.map +1 -1
  50. package/dist/lib/components/form/form-legend.svelte.d.ts +2 -1
  51. package/dist/lib/components/form/form-legend.svelte.d.ts.map +1 -1
  52. package/dist/lib/components/form/form.svelte.d.ts +6 -1
  53. package/dist/lib/components/form/form.svelte.d.ts.map +1 -1
  54. package/dist/lib/components/gallery/gallery.svelte +67 -0
  55. package/dist/lib/components/gallery/gallery.svelte.d.ts +35 -0
  56. package/dist/lib/components/gallery/gallery.svelte.d.ts.map +1 -0
  57. package/dist/lib/components/gallery/index.d.ts +3 -0
  58. package/dist/lib/components/gallery/index.d.ts.map +1 -0
  59. package/dist/lib/components/gallery/index.js +2 -0
  60. package/dist/lib/components/gallery/utils.d.ts +17 -0
  61. package/dist/lib/components/gallery/utils.d.ts.map +1 -0
  62. package/dist/lib/components/gallery/utils.js +94 -0
  63. package/dist/lib/components/gradient/Gradient.svelte +45 -51
  64. package/dist/lib/components/gradient/Gradient.svelte.d.ts +10 -1
  65. package/dist/lib/components/gradient/Gradient.svelte.d.ts.map +1 -1
  66. package/dist/lib/components/gradient/gradient.frag +43 -0
  67. package/dist/lib/components/safe/safe.svelte.d.ts +1 -1
  68. package/dist/lib/components/safe/safe.svelte.d.ts.map +1 -1
  69. package/dist/lib/components/search/combinations/searchPopover.svelte.d.ts +11 -1
  70. package/dist/lib/components/search/combinations/searchPopover.svelte.d.ts.map +1 -1
  71. package/dist/lib/components/search/components/search-empty.svelte.d.ts +2 -1
  72. package/dist/lib/components/search/components/search-empty.svelte.d.ts.map +1 -1
  73. package/dist/lib/components/search/components/search-input.svelte.d.ts +2 -1
  74. package/dist/lib/components/search/components/search-input.svelte.d.ts.map +1 -1
  75. package/dist/lib/components/search/components/search-list.svelte.d.ts +2 -1
  76. package/dist/lib/components/search/components/search-list.svelte.d.ts.map +1 -1
  77. package/dist/lib/components/search/components/search-pagnation.svelte.d.ts +6 -1
  78. package/dist/lib/components/search/components/search-pagnation.svelte.d.ts.map +1 -1
  79. package/dist/lib/components/search/components/search.svelte.d.ts +2 -1
  80. package/dist/lib/components/search/components/search.svelte.d.ts.map +1 -1
  81. package/dist/lib/components/sidebar/sidebar-content.svelte.d.ts +3 -1
  82. package/dist/lib/components/sidebar/sidebar-content.svelte.d.ts.map +1 -1
  83. package/dist/lib/components/sidebar/sidebar-footer.svelte.d.ts +3 -1
  84. package/dist/lib/components/sidebar/sidebar-footer.svelte.d.ts.map +1 -1
  85. package/dist/lib/components/sidebar/sidebar-group-action.svelte.d.ts +9 -1
  86. package/dist/lib/components/sidebar/sidebar-group-action.svelte.d.ts.map +1 -1
  87. package/dist/lib/components/sidebar/sidebar-group-content.svelte.d.ts +3 -1
  88. package/dist/lib/components/sidebar/sidebar-group-content.svelte.d.ts.map +1 -1
  89. package/dist/lib/components/sidebar/sidebar-group-label.svelte.d.ts +9 -1
  90. package/dist/lib/components/sidebar/sidebar-group-label.svelte.d.ts.map +1 -1
  91. package/dist/lib/components/sidebar/sidebar-group.svelte.d.ts +3 -1
  92. package/dist/lib/components/sidebar/sidebar-group.svelte.d.ts.map +1 -1
  93. package/dist/lib/components/sidebar/sidebar-header.svelte.d.ts +3 -1
  94. package/dist/lib/components/sidebar/sidebar-header.svelte.d.ts.map +1 -1
  95. package/dist/lib/components/sidebar/sidebar-input.svelte.d.ts +9 -1
  96. package/dist/lib/components/sidebar/sidebar-input.svelte.d.ts.map +1 -1
  97. package/dist/lib/components/sidebar/sidebar-inset.svelte.d.ts +3 -1
  98. package/dist/lib/components/sidebar/sidebar-inset.svelte.d.ts.map +1 -1
  99. package/dist/lib/components/sidebar/sidebar-menu-action.svelte.d.ts +10 -1
  100. package/dist/lib/components/sidebar/sidebar-menu-action.svelte.d.ts.map +1 -1
  101. package/dist/lib/components/sidebar/sidebar-menu-badge.svelte.d.ts +3 -1
  102. package/dist/lib/components/sidebar/sidebar-menu-badge.svelte.d.ts.map +1 -1
  103. package/dist/lib/components/sidebar/sidebar-menu-button.svelte.d.ts +20 -1
  104. package/dist/lib/components/sidebar/sidebar-menu-button.svelte.d.ts.map +1 -1
  105. package/dist/lib/components/sidebar/sidebar-menu-item.svelte.d.ts +3 -1
  106. package/dist/lib/components/sidebar/sidebar-menu-item.svelte.d.ts.map +1 -1
  107. package/dist/lib/components/sidebar/sidebar-menu-skeleton.svelte.d.ts +6 -1
  108. package/dist/lib/components/sidebar/sidebar-menu-skeleton.svelte.d.ts.map +1 -1
  109. package/dist/lib/components/sidebar/sidebar-menu-sub-button.svelte.d.ts +11 -1
  110. package/dist/lib/components/sidebar/sidebar-menu-sub-button.svelte.d.ts.map +1 -1
  111. package/dist/lib/components/sidebar/sidebar-menu-sub-item.svelte.d.ts +3 -1
  112. package/dist/lib/components/sidebar/sidebar-menu-sub-item.svelte.d.ts.map +1 -1
  113. package/dist/lib/components/sidebar/sidebar-menu-sub.svelte.d.ts +3 -1
  114. package/dist/lib/components/sidebar/sidebar-menu-sub.svelte.d.ts.map +1 -1
  115. package/dist/lib/components/sidebar/sidebar-menu.svelte.d.ts +3 -1
  116. package/dist/lib/components/sidebar/sidebar-menu.svelte.d.ts.map +1 -1
  117. package/dist/lib/components/sidebar/sidebar-provider.svelte.d.ts +10 -1
  118. package/dist/lib/components/sidebar/sidebar-provider.svelte.d.ts.map +1 -1
  119. package/dist/lib/components/sidebar/sidebar-rail.svelte.d.ts +6 -1
  120. package/dist/lib/components/sidebar/sidebar-rail.svelte.d.ts.map +1 -1
  121. package/dist/lib/components/sidebar/sidebar-separator.svelte.d.ts +1 -1
  122. package/dist/lib/components/sidebar/sidebar-separator.svelte.d.ts.map +1 -1
  123. package/dist/lib/components/sidebar/sidebar-trigger.svelte.d.ts +7 -1
  124. package/dist/lib/components/sidebar/sidebar-trigger.svelte.d.ts.map +1 -1
  125. package/dist/lib/components/sidebar/sidebar.svelte.d.ts +8 -1
  126. package/dist/lib/components/sidebar/sidebar.svelte.d.ts.map +1 -1
  127. package/dist/lib/components/utilities/arrow/arrow.svelte.d.ts +1 -1
  128. package/dist/lib/components/utilities/arrow/arrow.svelte.d.ts.map +1 -1
  129. package/dist/lib/components/utilities/floating-layer/components/floating-layer-anchor.svelte.d.ts +2 -1
  130. package/dist/lib/components/utilities/floating-layer/components/floating-layer-anchor.svelte.d.ts.map +1 -1
  131. package/dist/lib/components/utilities/floating-layer/components/floating-layer-arrow.svelte.d.ts +1 -1
  132. package/dist/lib/components/utilities/floating-layer/components/floating-layer-arrow.svelte.d.ts.map +1 -1
  133. package/dist/lib/components/utilities/floating-layer/components/floating-layer-content-static.svelte.d.ts +11 -1
  134. package/dist/lib/components/utilities/floating-layer/components/floating-layer-content-static.svelte.d.ts.map +1 -1
  135. package/dist/lib/components/utilities/floating-layer/components/floating-layer-content.svelte.d.ts +2 -1
  136. package/dist/lib/components/utilities/floating-layer/components/floating-layer-content.svelte.d.ts.map +1 -1
  137. package/dist/lib/components/utilities/floating-layer/components/floating-layer.svelte.d.ts +5 -1
  138. package/dist/lib/components/utilities/floating-layer/components/floating-layer.svelte.d.ts.map +1 -1
  139. package/dist/lib/styles/underline.css +10 -0
  140. package/dist/lib/utils/glsl.d.ts +4 -0
  141. package/dist/lib/utils/glsl.d.ts.map +1 -0
  142. package/dist/lib/utils/glsl.js +1 -0
  143. package/dist/lib/utils/index.d.ts +1 -0
  144. package/dist/lib/utils/index.d.ts.map +1 -1
  145. package/dist/lib/utils/index.js +1 -0
  146. package/dist/routes/+layout.svelte.d.ts +11 -3
  147. package/dist/routes/+layout.svelte.d.ts.map +1 -1
  148. package/package.json +3 -2
  149. package/src/lib/components/animated/animated.svelte +16 -30
  150. package/src/lib/components/carousel/carousel-content.svelte +5 -24
  151. package/src/lib/components/carousel/carousel-dots.svelte +1 -3
  152. package/src/lib/components/carousel/carousel-next.svelte +21 -9
  153. package/src/lib/components/carousel/carousel-previous.svelte +21 -9
  154. package/src/lib/components/carousel/carousel.svelte +21 -1
  155. package/src/lib/components/carousel/context.ts +1 -0
  156. package/src/lib/components/gallery/gallery.svelte +67 -0
  157. package/src/lib/components/gallery/index.ts +3 -0
  158. package/src/lib/components/gallery/utils.ts +103 -0
  159. package/src/lib/components/gradient/Gradient.svelte +45 -51
  160. package/src/lib/components/gradient/gradient.frag +43 -0
  161. package/src/lib/styles/underline.css +10 -0
  162. package/src/lib/utils/glsl.ts +3 -0
  163. package/src/lib/utils/index.ts +1 -0
@@ -1 +1 @@
1
- {"version":3,"file":"search.svelte.d.ts","sourceRoot":"","sources":["../../../../../src/lib/components/search/components/search.svelte.ts"],"names":[],"mappings":"AA2DA,QAAA,MAAM,MAAM,KAAwC,CAAC;AACrD,KAAK,MAAM,GAAG,UAAU,CAAC,OAAO,MAAM,CAAC,CAAC;AACxC,eAAe,MAAM,CAAC"}
1
+ {"version":3,"file":"search.svelte.d.ts","sourceRoot":"","sources":["../../../../../src/lib/components/search/components/search.svelte.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAuD5C,QAAA,MAAM,MAAM,uFAAwC,CAAC;AACrD,KAAK,MAAM,GAAG,UAAU,CAAC,OAAO,MAAM,CAAC,CAAC;AACxC,eAAe,MAAM,CAAC"}
@@ -1,4 +1,6 @@
1
- declare const SidebarContent: any;
1
+ import type { HTMLAttributes } from "svelte/elements";
2
+ import type { WithElementRef } from "bits-ui";
3
+ declare const SidebarContent: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLElement>>, {}, "ref">;
2
4
  type SidebarContent = ReturnType<typeof SidebarContent>;
3
5
  export default SidebarContent;
4
6
  //# sourceMappingURL=sidebar-content.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-content.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-content.svelte.ts"],"names":[],"mappings":"AA6BA,QAAA,MAAM,cAAc,KAAwC,CAAC;AAC7D,KAAK,cAAc,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AACxD,eAAe,cAAc,CAAC"}
1
+ {"version":3,"file":"sidebar-content.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-content.svelte.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAyB9C,QAAA,MAAM,cAAc,oFAAwC,CAAC;AAC7D,KAAK,cAAc,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AACxD,eAAe,cAAc,CAAC"}
@@ -1,4 +1,6 @@
1
- declare const SidebarFooter: any;
1
+ import type { HTMLAttributes } from "svelte/elements";
2
+ import type { WithElementRef } from "bits-ui";
3
+ declare const SidebarFooter: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLElement>>, {}, "ref">;
2
4
  type SidebarFooter = ReturnType<typeof SidebarFooter>;
3
5
  export default SidebarFooter;
4
6
  //# sourceMappingURL=sidebar-footer.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-footer.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-footer.svelte.ts"],"names":[],"mappings":"AA0BA,QAAA,MAAM,aAAa,KAAwC,CAAC;AAC5D,KAAK,aAAa,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC;AACtD,eAAe,aAAa,CAAC"}
1
+ {"version":3,"file":"sidebar-footer.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-footer.svelte.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAsB9C,QAAA,MAAM,aAAa,oFAAwC,CAAC;AAC5D,KAAK,aAAa,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC;AACtD,eAAe,aAAa,CAAC"}
@@ -1,4 +1,12 @@
1
- declare const SidebarGroupAction: any;
1
+ import type { WithElementRef } from "bits-ui";
2
+ import type { Snippet } from "svelte";
3
+ import type { HTMLButtonAttributes } from "svelte/elements";
4
+ type $$ComponentProps = WithElementRef<HTMLButtonAttributes> & {
5
+ child?: Snippet<[{
6
+ props: Record<string, unknown>;
7
+ }]>;
8
+ };
9
+ declare const SidebarGroupAction: import("svelte").Component<$$ComponentProps, {}, "ref">;
2
10
  type SidebarGroupAction = ReturnType<typeof SidebarGroupAction>;
3
11
  export default SidebarGroupAction;
4
12
  //# sourceMappingURL=sidebar-group-action.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-group-action.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-group-action.svelte.ts"],"names":[],"mappings":"AAgDA,QAAA,MAAM,kBAAkB,KAAwC,CAAC;AACjE,KAAK,kBAAkB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAChE,eAAe,kBAAkB,CAAC"}
1
+ {"version":3,"file":"sidebar-group-action.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-group-action.svelte.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAC;AACtC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AAE3D,KAAK,gBAAgB,GAAI,cAAc,CAAC,oBAAoB,CAAC,GAAG;IAC/D,KAAK,CAAC,EAAE,OAAO,CAAC,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;KAAE,CAAC,CAAC,CAAC;CACtD,CAAC;AAsCH,QAAA,MAAM,kBAAkB,yDAAwC,CAAC;AACjE,KAAK,kBAAkB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAChE,eAAe,kBAAkB,CAAC"}
@@ -1,4 +1,6 @@
1
- declare const SidebarGroupContent: any;
1
+ import type { WithElementRef } from "bits-ui";
2
+ import type { HTMLAttributes } from "svelte/elements";
3
+ declare const SidebarGroupContent: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
2
4
  type SidebarGroupContent = ReturnType<typeof SidebarGroupContent>;
3
5
  export default SidebarGroupContent;
4
6
  //# sourceMappingURL=sidebar-group-content.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-group-content.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-group-content.svelte.ts"],"names":[],"mappings":"AA0BA,QAAA,MAAM,mBAAmB,KAAwC,CAAC;AAClE,KAAK,mBAAmB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAClE,eAAe,mBAAmB,CAAC"}
1
+ {"version":3,"file":"sidebar-group-content.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-group-content.svelte.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAqBtD,QAAA,MAAM,mBAAmB,uFAAwC,CAAC;AAClE,KAAK,mBAAmB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAClE,eAAe,mBAAmB,CAAC"}
@@ -1,4 +1,12 @@
1
- declare const SidebarGroupLabel: any;
1
+ import type { WithElementRef } from "bits-ui";
2
+ import type { Snippet } from "svelte";
3
+ import type { HTMLAttributes } from "svelte/elements";
4
+ type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLElement>> & {
5
+ child?: Snippet<[{
6
+ props: Record<string, unknown>;
7
+ }]>;
8
+ };
9
+ declare const SidebarGroupLabel: import("svelte").Component<$$ComponentProps, {}, "ref">;
2
10
  type SidebarGroupLabel = ReturnType<typeof SidebarGroupLabel>;
3
11
  export default SidebarGroupLabel;
4
12
  //# sourceMappingURL=sidebar-group-label.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-group-label.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-group-label.svelte.ts"],"names":[],"mappings":"AA8CA,QAAA,MAAM,iBAAiB,KAAwC,CAAC;AAChE,KAAK,iBAAiB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC9D,eAAe,iBAAiB,CAAC"}
1
+ {"version":3,"file":"sidebar-group-label.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-group-label.svelte.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAC;AACtC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAErD,KAAK,gBAAgB,GAAI,cAAc,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC,GAAG;IACtE,KAAK,CAAC,EAAE,OAAO,CAAC,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;KAAE,CAAC,CAAC,CAAC;CACtD,CAAC;AAoCH,QAAA,MAAM,iBAAiB,yDAAwC,CAAC;AAChE,KAAK,iBAAiB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC9D,eAAe,iBAAiB,CAAC"}
@@ -1,4 +1,6 @@
1
- declare const SidebarGroup: any;
1
+ import type { HTMLAttributes } from "svelte/elements";
2
+ import type { WithElementRef } from "bits-ui";
3
+ declare const SidebarGroup: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLElement>>, {}, "ref">;
2
4
  type SidebarGroup = ReturnType<typeof SidebarGroup>;
3
5
  export default SidebarGroup;
4
6
  //# sourceMappingURL=sidebar-group.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-group.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-group.svelte.ts"],"names":[],"mappings":"AA0BA,QAAA,MAAM,YAAY,KAAwC,CAAC;AAC3D,KAAK,YAAY,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AACpD,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"sidebar-group.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-group.svelte.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAsB9C,QAAA,MAAM,YAAY,oFAAwC,CAAC;AAC3D,KAAK,YAAY,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AACpD,eAAe,YAAY,CAAC"}
@@ -1,4 +1,6 @@
1
- declare const SidebarHeader: any;
1
+ import type { HTMLAttributes } from "svelte/elements";
2
+ import type { WithElementRef } from "bits-ui";
3
+ declare const SidebarHeader: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLElement>>, {}, "ref">;
2
4
  type SidebarHeader = ReturnType<typeof SidebarHeader>;
3
5
  export default SidebarHeader;
4
6
  //# sourceMappingURL=sidebar-header.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-header.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-header.svelte.ts"],"names":[],"mappings":"AA0BA,QAAA,MAAM,aAAa,KAAwC,CAAC;AAC5D,KAAK,aAAa,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC;AACtD,eAAe,aAAa,CAAC"}
1
+ {"version":3,"file":"sidebar-header.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-header.svelte.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAsB9C,QAAA,MAAM,aAAa,oFAAwC,CAAC;AAC5D,KAAK,aAAa,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC;AACtD,eAAe,aAAa,CAAC"}
@@ -1,4 +1,12 @@
1
- declare const SidebarInput: any;
1
+ declare const SidebarInput: import("svelte").Component<(Omit<import("svelte/elements").HTMLInputAttributes, "type"> & ({
2
+ type: "file";
3
+ files?: FileList;
4
+ } | {
5
+ type?: "number" | "search" | "time" | "button" | "url" | "color" | "hidden" | "image" | "text" | "reset" | "submit" | "email" | "tel" | "month" | "week" | "date" | (string & {}) | "checkbox" | "radio" | "datetime-local" | "password" | "range";
6
+ files?: undefined;
7
+ })) & {
8
+ ref?: HTMLElement | null | undefined;
9
+ }, {}, "value" | "ref">;
2
10
  type SidebarInput = ReturnType<typeof SidebarInput>;
3
11
  export default SidebarInput;
4
12
  //# sourceMappingURL=sidebar-input.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-input.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-input.svelte.ts"],"names":[],"mappings":"AA2BA,QAAA,MAAM,YAAY,KAAwC,CAAC;AAC3D,KAAK,YAAY,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AACpD,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"sidebar-input.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-input.svelte.ts"],"names":[],"mappings":"AA2BA,QAAA,MAAM,YAAY;;;;;;;;uBAAwC,CAAC;AAC3D,KAAK,YAAY,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AACpD,eAAe,YAAY,CAAC"}
@@ -1,4 +1,6 @@
1
- declare const SidebarInset: any;
1
+ import type { WithElementRef } from 'bits-ui';
2
+ import type { HTMLAttributes } from 'svelte/elements';
3
+ declare const SidebarInset: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLElement>>, {}, "ref">;
2
4
  type SidebarInset = ReturnType<typeof SidebarInset>;
3
5
  export default SidebarInset;
4
6
  //# sourceMappingURL=sidebar-inset.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-inset.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-inset.svelte.ts"],"names":[],"mappings":"AAqCA,QAAA,MAAM,YAAY,KAAwC,CAAC;AAC3D,KAAK,YAAY,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AACpD,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"sidebar-inset.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-inset.svelte.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAgCtD,QAAA,MAAM,YAAY,oFAAwC,CAAC;AAC3D,KAAK,YAAY,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AACpD,eAAe,YAAY,CAAC"}
@@ -1,4 +1,13 @@
1
- declare const SidebarMenuAction: any;
1
+ import type { WithElementRef } from 'bits-ui';
2
+ import type { Snippet } from 'svelte';
3
+ import type { HTMLButtonAttributes } from 'svelte/elements';
4
+ type $$ComponentProps = WithElementRef<HTMLButtonAttributes> & {
5
+ child?: Snippet<[{
6
+ props: Record<string, unknown>;
7
+ }]>;
8
+ showOnHover?: boolean;
9
+ };
10
+ declare const SidebarMenuAction: import("svelte").Component<$$ComponentProps, {}, "ref">;
2
11
  type SidebarMenuAction = ReturnType<typeof SidebarMenuAction>;
3
12
  export default SidebarMenuAction;
4
13
  //# sourceMappingURL=sidebar-menu-action.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-menu-action.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu-action.svelte.ts"],"names":[],"mappings":"AAoEA,QAAA,MAAM,iBAAiB,KAAwC,CAAC;AAChE,KAAK,iBAAiB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC9D,eAAe,iBAAiB,CAAC"}
1
+ {"version":3,"file":"sidebar-menu-action.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu-action.svelte.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAC;AACtC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AAE3D,KAAK,gBAAgB,GAAI,cAAc,CAAC,oBAAoB,CAAC,GAAG;IAC7D,KAAK,CAAC,EAAE,OAAO,CAAC,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;KAAE,CAAC,CAAC,CAAC;IACtD,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB,CAAC;AAyDJ,QAAA,MAAM,iBAAiB,yDAAwC,CAAC;AAChE,KAAK,iBAAiB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC9D,eAAe,iBAAiB,CAAC"}
@@ -1,4 +1,6 @@
1
- declare const SidebarMenuBadge: any;
1
+ import type { WithElementRef } from "bits-ui";
2
+ import type { HTMLAttributes } from "svelte/elements";
3
+ declare const SidebarMenuBadge: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLElement>>, {}, "ref">;
2
4
  type SidebarMenuBadge = ReturnType<typeof SidebarMenuBadge>;
3
5
  export default SidebarMenuBadge;
4
6
  //# sourceMappingURL=sidebar-menu-badge.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-menu-badge.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu-badge.svelte.ts"],"names":[],"mappings":"AAkCA,QAAA,MAAM,gBAAgB,KAAwC,CAAC;AAC/D,KAAK,gBAAgB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC5D,eAAe,gBAAgB,CAAC"}
1
+ {"version":3,"file":"sidebar-menu-badge.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu-badge.svelte.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AA6BtD,QAAA,MAAM,gBAAgB,oFAAwC,CAAC;AAC/D,KAAK,gBAAgB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC5D,eAAe,gBAAgB,CAAC"}
@@ -32,7 +32,26 @@ export declare const sidebarMenuButtonVariants: import("tailwind-variants").TVRe
32
32
  }, undefined, string, unknown, unknown, undefined>>;
33
33
  export type SidebarMenuButtonVariant = VariantProps<typeof sidebarMenuButtonVariants>['variant'];
34
34
  export type SidebarMenuButtonSize = VariantProps<typeof sidebarMenuButtonVariants>['size'];
35
- declare const SidebarMenuButton: any;
35
+ import { type WithElementRef, type WithoutChildrenOrChild } from 'bits-ui';
36
+ import * as Tooltip from '$shadcn/tooltip/index.js';
37
+ import * as AlertDialog from '$shadcn/alert-dialog/index.js';
38
+ import type { ComponentProps, Snippet } from 'svelte';
39
+ import type { HTMLAttributes } from 'svelte/elements';
40
+ type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLButtonElement>, HTMLButtonElement> & {
41
+ isActive?: boolean;
42
+ variant?: SidebarMenuButtonVariant;
43
+ size?: SidebarMenuButtonSize;
44
+ side?: 'left' | 'right';
45
+ tooltipContent?: Snippet;
46
+ tooltipContentProps?: WithoutChildrenOrChild<ComponentProps<typeof Tooltip.Content>>;
47
+ alertContent?: Snippet;
48
+ alertContentProps?: WithoutChildrenOrChild<ComponentProps<typeof AlertDialog.Content>>;
49
+ alertOpen?: boolean;
50
+ child?: Snippet<[{
51
+ props: Record<string, unknown>;
52
+ }]>;
53
+ };
54
+ declare const SidebarMenuButton: import("svelte").Component<$$ComponentProps, {}, "ref" | "alertOpen">;
36
55
  type SidebarMenuButton = ReturnType<typeof SidebarMenuButton>;
37
56
  export default SidebarMenuButton;
38
57
  //# sourceMappingURL=sidebar-menu-button.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-menu-button.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu-button.svelte.ts"],"names":[],"mappings":"AAGE,OAAO,EAAM,KAAK,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAE1D,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mDAuCpC,CAAC;AAEH,MAAM,MAAM,wBAAwB,GAAG,YAAY,CAAC,OAAO,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC;AACjG,MAAM,MAAM,qBAAqB,GAAG,YAAY,CAAC,OAAO,yBAAyB,CAAC,CAAC,MAAM,CAAC,CAAC;AA4G7F,QAAA,MAAM,iBAAiB,KAAwC,CAAC;AAChE,KAAK,iBAAiB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC9D,eAAe,iBAAiB,CAAC"}
1
+ {"version":3,"file":"sidebar-menu-button.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu-button.svelte.ts"],"names":[],"mappings":"AAGE,OAAO,EAAM,KAAK,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAE1D,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mDAuCpC,CAAC;AAEH,MAAM,MAAM,wBAAwB,GAAG,YAAY,CAAC,OAAO,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC;AACjG,MAAM,MAAM,qBAAqB,GAAG,YAAY,CAAC,OAAO,yBAAyB,CAAC,CAAC,MAAM,CAAC,CAAC;AAG7F,OAAO,EAAc,KAAK,cAAc,EAAE,KAAK,sBAAsB,EAAE,MAAM,SAAS,CAAC;AACvF,OAAO,KAAK,OAAO,MAAM,0BAA0B,CAAC;AACpD,OAAO,KAAK,WAAW,MAAM,+BAA+B,CAAC;AAG7D,OAAO,KAAK,EAAE,cAAc,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAC;AACtD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAGrD,KAAK,gBAAgB,GAAI,cAAc,CAAC,cAAc,CAAC,iBAAiB,CAAC,EAAE,iBAAiB,CAAC,GAAG;IAC7F,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,wBAAwB,CAAC;IACnC,IAAI,CAAC,EAAE,qBAAqB,CAAC;IAC7B,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACxB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,mBAAmB,CAAC,EAAE,sBAAsB,CAAC,cAAc,CAAC,OAAO,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;IACrF,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,iBAAiB,CAAC,EAAE,sBAAsB,CAAC,cAAc,CAAC,OAAO,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC;IACvF,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,KAAK,CAAC,EAAE,OAAO,CAAC,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;KAAE,CAAC,CAAC,CAAC;CACvD,CAAC;AAqFJ,QAAA,MAAM,iBAAiB,uEAAwC,CAAC;AAChE,KAAK,iBAAiB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC9D,eAAe,iBAAiB,CAAC"}
@@ -1,4 +1,6 @@
1
- declare const SidebarMenuItem: any;
1
+ import type { WithElementRef } from "bits-ui";
2
+ import type { HTMLAttributes } from "svelte/elements";
3
+ declare const SidebarMenuItem: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLLIElement>, HTMLLIElement>, {}, "ref">;
2
4
  type SidebarMenuItem = ReturnType<typeof SidebarMenuItem>;
3
5
  export default SidebarMenuItem;
4
6
  //# sourceMappingURL=sidebar-menu-item.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-menu-item.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu-item.svelte.ts"],"names":[],"mappings":"AA0BA,QAAA,MAAM,eAAe,KAAwC,CAAC;AAC9D,KAAK,eAAe,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,CAAC;AAC1D,eAAe,eAAe,CAAC"}
1
+ {"version":3,"file":"sidebar-menu-item.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu-item.svelte.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAqBtD,QAAA,MAAM,eAAe,qGAAwC,CAAC;AAC9D,KAAK,eAAe,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,CAAC;AAC1D,eAAe,eAAe,CAAC"}
@@ -1,4 +1,9 @@
1
- declare const SidebarMenuSkeleton: any;
1
+ import type { WithElementRef } from "bits-ui";
2
+ import type { HTMLAttributes } from "svelte/elements";
3
+ type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLElement>> & {
4
+ showIcon?: boolean;
5
+ };
6
+ declare const SidebarMenuSkeleton: import("svelte").Component<$$ComponentProps, {}, "ref">;
2
7
  type SidebarMenuSkeleton = ReturnType<typeof SidebarMenuSkeleton>;
3
8
  export default SidebarMenuSkeleton;
4
9
  //# sourceMappingURL=sidebar-menu-skeleton.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-menu-skeleton.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu-skeleton.svelte.ts"],"names":[],"mappings":"AAuCA,QAAA,MAAM,mBAAmB,KAAwC,CAAC;AAClE,KAAK,mBAAmB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAClE,eAAe,mBAAmB,CAAC"}
1
+ {"version":3,"file":"sidebar-menu-skeleton.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu-skeleton.svelte.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAErD,KAAK,gBAAgB,GAAI,cAAc,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC,GAAG;IACtE,QAAQ,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AA6BH,QAAA,MAAM,mBAAmB,yDAAwC,CAAC;AAClE,KAAK,mBAAmB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAClE,eAAe,mBAAmB,CAAC"}
@@ -1,4 +1,14 @@
1
- declare const SidebarMenuSubButton: any;
1
+ import type { WithElementRef } from 'bits-ui';
2
+ import type { Snippet } from 'svelte';
3
+ import type { HTMLAnchorAttributes } from 'svelte/elements';
4
+ type $$ComponentProps = WithElementRef<HTMLAnchorAttributes> & {
5
+ child?: Snippet<[{
6
+ props: Record<string, unknown>;
7
+ }]>;
8
+ size?: 'sm' | 'md';
9
+ isActive?: boolean;
10
+ };
11
+ declare const SidebarMenuSubButton: import("svelte").Component<$$ComponentProps, {}, "ref">;
2
12
  type SidebarMenuSubButton = ReturnType<typeof SidebarMenuSubButton>;
3
13
  export default SidebarMenuSubButton;
4
14
  //# sourceMappingURL=sidebar-menu-sub-button.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-menu-sub-button.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu-sub-button.svelte.ts"],"names":[],"mappings":"AAiEA,QAAA,MAAM,oBAAoB,KAAwC,CAAC;AACnE,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,oBAAoB,CAAC,CAAC;AACpE,eAAe,oBAAoB,CAAC"}
1
+ {"version":3,"file":"sidebar-menu-sub-button.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu-sub-button.svelte.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAC;AACtC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AAE3D,KAAK,gBAAgB,GAAI,cAAc,CAAC,oBAAoB,CAAC,GAAG;IAC7D,KAAK,CAAC,EAAE,OAAO,CAAC,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;KAAE,CAAC,CAAC,CAAC;IACtD,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAqDJ,QAAA,MAAM,oBAAoB,yDAAwC,CAAC;AACnE,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,oBAAoB,CAAC,CAAC;AACpE,eAAe,oBAAoB,CAAC"}
@@ -1,4 +1,6 @@
1
- declare const SidebarMenuSubItem: any;
1
+ import type { WithElementRef } from 'bits-ui';
2
+ import type { HTMLAttributes } from 'svelte/elements';
3
+ declare const SidebarMenuSubItem: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLLIElement>>, {}, "ref">;
2
4
  type SidebarMenuSubItem = ReturnType<typeof SidebarMenuSubItem>;
3
5
  export default SidebarMenuSubItem;
4
6
  //# sourceMappingURL=sidebar-menu-sub-item.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-menu-sub-item.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu-sub-item.svelte.ts"],"names":[],"mappings":"AA0BA,QAAA,MAAM,kBAAkB,KAAwC,CAAC;AACjE,KAAK,kBAAkB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAChE,eAAe,kBAAkB,CAAC"}
1
+ {"version":3,"file":"sidebar-menu-sub-item.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu-sub-item.svelte.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAqBtD,QAAA,MAAM,kBAAkB,sFAAwC,CAAC;AACjE,KAAK,kBAAkB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAChE,eAAe,kBAAkB,CAAC"}
@@ -1,4 +1,6 @@
1
- declare const SidebarMenuSub: any;
1
+ import type { WithElementRef } from "bits-ui";
2
+ import type { HTMLAttributes } from "svelte/elements";
3
+ declare const SidebarMenuSub: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLUListElement>>, {}, "ref">;
2
4
  type SidebarMenuSub = ReturnType<typeof SidebarMenuSub>;
3
5
  export default SidebarMenuSub;
4
6
  //# sourceMappingURL=sidebar-menu-sub.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-menu-sub.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu-sub.svelte.ts"],"names":[],"mappings":"AA8BA,QAAA,MAAM,cAAc,KAAwC,CAAC;AAC7D,KAAK,cAAc,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AACxD,eAAe,cAAc,CAAC"}
1
+ {"version":3,"file":"sidebar-menu-sub.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu-sub.svelte.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAyBtD,QAAA,MAAM,cAAc,yFAAwC,CAAC;AAC7D,KAAK,cAAc,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AACxD,eAAe,cAAc,CAAC"}
@@ -1,4 +1,6 @@
1
- declare const SidebarMenu: any;
1
+ import type { WithElementRef } from "bits-ui";
2
+ import type { HTMLAttributes } from "svelte/elements";
3
+ declare const SidebarMenu: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLUListElement>, HTMLUListElement>, {}, "ref">;
2
4
  type SidebarMenu = ReturnType<typeof SidebarMenu>;
3
5
  export default SidebarMenu;
4
6
  //# sourceMappingURL=sidebar-menu.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-menu.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu.svelte.ts"],"names":[],"mappings":"AA0BA,QAAA,MAAM,WAAW,KAAwC,CAAC;AAC1D,KAAK,WAAW,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,CAAC;AAClD,eAAe,WAAW,CAAC"}
1
+ {"version":3,"file":"sidebar-menu.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-menu.svelte.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAqBtD,QAAA,MAAM,WAAW,2GAAwC,CAAC;AAC1D,KAAK,WAAW,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,CAAC;AAClD,eAAe,WAAW,CAAC"}
@@ -1,4 +1,13 @@
1
- declare const SidebarProvider: any;
1
+ import type { WithElementRef } from 'bits-ui';
2
+ import type { HTMLAttributes } from 'svelte/elements';
3
+ type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
4
+ open?: {
5
+ left: boolean;
6
+ right: boolean;
7
+ };
8
+ onOpenChange?: (open: boolean, side: 'left' | 'right') => void;
9
+ };
10
+ declare const SidebarProvider: import("svelte").Component<$$ComponentProps, {}, "open" | "ref">;
2
11
  type SidebarProvider = ReturnType<typeof SidebarProvider>;
3
12
  export default SidebarProvider;
4
13
  //# sourceMappingURL=sidebar-provider.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-provider.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-provider.svelte.ts"],"names":[],"mappings":"AAkEA,QAAA,MAAM,eAAe,KAAwC,CAAC;AAC9D,KAAK,eAAe,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,CAAC;AAC1D,eAAe,eAAe,CAAC"}
1
+ {"version":3,"file":"sidebar-provider.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-provider.svelte.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAIrD,KAAK,gBAAgB,GAAI,cAAc,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC,GAAG;IACvE,IAAI,CAAC,EAAE;QACL,IAAI,EAAE,OAAO,CAAC;QACd,KAAK,EAAE,OAAO,CAAC;KAChB,CAAC;IACF,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,KAAK,IAAI,CAAC;CAChE,CAAC;AAkDJ,QAAA,MAAM,eAAe,kEAAwC,CAAC;AAC9D,KAAK,eAAe,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,CAAC;AAC1D,eAAe,eAAe,CAAC"}
@@ -1,4 +1,9 @@
1
- declare const SidebarRail: any;
1
+ import type { WithElementRef } from 'bits-ui';
2
+ import type { HTMLAttributes } from 'svelte/elements';
3
+ type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLButtonElement>, HTMLButtonElement> & {
4
+ side?: 'left' | 'right';
5
+ };
6
+ declare const SidebarRail: import("svelte").Component<$$ComponentProps, {}, "ref">;
2
7
  type SidebarRail = ReturnType<typeof SidebarRail>;
3
8
  export default SidebarRail;
4
9
  //# sourceMappingURL=sidebar-rail.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-rail.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-rail.svelte.ts"],"names":[],"mappings":"AA0DA,QAAA,MAAM,WAAW,KAAwC,CAAC;AAC1D,KAAK,WAAW,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,CAAC;AAClD,eAAe,WAAW,CAAC"}
1
+ {"version":3,"file":"sidebar-rail.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-rail.svelte.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAGrD,KAAK,gBAAgB,GAAI,cAAc,CAAC,cAAc,CAAC,iBAAiB,CAAC,EAAE,iBAAiB,CAAC,GAAG;IAC7F,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;CACzB,CAAC;AAgDJ,QAAA,MAAM,WAAW,yDAAwC,CAAC;AAC1D,KAAK,WAAW,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,CAAC;AAClD,eAAe,WAAW,CAAC"}
@@ -1,4 +1,4 @@
1
- declare const SidebarSeparator: any;
1
+ declare const SidebarSeparator: import("svelte").Component<any, {}, "ref">;
2
2
  type SidebarSeparator = ReturnType<typeof SidebarSeparator>;
3
3
  export default SidebarSeparator;
4
4
  //# sourceMappingURL=sidebar-separator.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-separator.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-separator.svelte.ts"],"names":[],"mappings":"AAuBA,QAAA,MAAM,gBAAgB,KAAwC,CAAC;AAC/D,KAAK,gBAAgB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC5D,eAAe,gBAAgB,CAAC"}
1
+ {"version":3,"file":"sidebar-separator.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-separator.svelte.ts"],"names":[],"mappings":"AAuBA,QAAA,MAAM,gBAAgB,4CAAwC,CAAC;AAC/D,KAAK,gBAAgB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC5D,eAAe,gBAAgB,CAAC"}
@@ -1,4 +1,10 @@
1
- declare const SidebarTrigger: any;
1
+ import { Button } from '$shadcn/button/index.js';
2
+ import type { ComponentProps } from 'svelte';
3
+ type $$ComponentProps = ComponentProps<typeof Button> & {
4
+ onclick?: (e: MouseEvent) => void;
5
+ side?: 'left' | 'right';
6
+ };
7
+ declare const SidebarTrigger: import("svelte").Component<$$ComponentProps, {}, "ref">;
2
8
  type SidebarTrigger = ReturnType<typeof SidebarTrigger>;
3
9
  export default SidebarTrigger;
4
10
  //# sourceMappingURL=sidebar-trigger.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar-trigger.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-trigger.svelte.ts"],"names":[],"mappings":"AAyCA,QAAA,MAAM,cAAc,KAAwC,CAAC;AAC7D,KAAK,cAAc,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AACxD,eAAe,cAAc,CAAC"}
1
+ {"version":3,"file":"sidebar-trigger.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar-trigger.svelte.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AAGjD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAG5C,KAAK,gBAAgB,GAAI,cAAc,CAAC,OAAO,MAAM,CAAC,GAAG;IACtD,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,UAAU,KAAK,IAAI,CAAC;IAClC,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;CACzB,CAAC;AA6BJ,QAAA,MAAM,cAAc,yDAAwC,CAAC;AAC7D,KAAK,cAAc,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AACxD,eAAe,cAAc,CAAC"}
@@ -1,4 +1,11 @@
1
- declare const Sidebar: any;
1
+ import type { WithElementRef } from 'bits-ui';
2
+ import type { HTMLAttributes } from 'svelte/elements';
3
+ type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
4
+ side?: 'left' | 'right';
5
+ variant?: 'sidebar' | 'floating' | 'inset';
6
+ collapsible?: 'offcanvas' | 'icon' | 'none';
7
+ };
8
+ declare const Sidebar: import("svelte").Component<$$ComponentProps, {}, "ref">;
2
9
  type Sidebar = ReturnType<typeof Sidebar>;
3
10
  export default Sidebar;
4
11
  //# sourceMappingURL=sidebar.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sidebar.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar.svelte.ts"],"names":[],"mappings":"AA0FA,QAAA,MAAM,OAAO,KAAwC,CAAC;AACtD,KAAK,OAAO,GAAG,UAAU,CAAC,OAAO,OAAO,CAAC,CAAC;AAC1C,eAAe,OAAO,CAAC"}
1
+ {"version":3,"file":"sidebar.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/sidebar/sidebar.svelte.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAIrD,KAAK,gBAAgB,GAAI,cAAc,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC,GAAG;IACvE,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACxB,OAAO,CAAC,EAAE,SAAS,GAAG,UAAU,GAAG,OAAO,CAAC;IAC3C,WAAW,CAAC,EAAE,WAAW,GAAG,MAAM,GAAG,MAAM,CAAC;CAC7C,CAAC;AA4EJ,QAAA,MAAM,OAAO,yDAAwC,CAAC;AACtD,KAAK,OAAO,GAAG,UAAU,CAAC,OAAO,OAAO,CAAC,CAAC;AAC1C,eAAe,OAAO,CAAC"}
@@ -1,4 +1,4 @@
1
- declare const Arrow: any;
1
+ declare const Arrow: import("svelte").Component<any, {}, "">;
2
2
  type Arrow = ReturnType<typeof Arrow>;
3
3
  export default Arrow;
4
4
  //# sourceMappingURL=arrow.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"arrow.svelte.d.ts","sourceRoot":"","sources":["../../../../../src/lib/components/utilities/arrow/arrow.svelte.ts"],"names":[],"mappings":"AAiCA,QAAA,MAAM,KAAK,KAAwC,CAAC;AACpD,KAAK,KAAK,GAAG,UAAU,CAAC,OAAO,KAAK,CAAC,CAAC;AACtC,eAAe,KAAK,CAAC"}
1
+ {"version":3,"file":"arrow.svelte.d.ts","sourceRoot":"","sources":["../../../../../src/lib/components/utilities/arrow/arrow.svelte.ts"],"names":[],"mappings":"AAiCA,QAAA,MAAM,KAAK,yCAAwC,CAAC;AACpD,KAAK,KAAK,GAAG,UAAU,CAAC,OAAO,KAAK,CAAC,CAAC;AACtC,eAAe,KAAK,CAAC"}
@@ -1,4 +1,5 @@
1
- declare const FloatingLayerAnchor: any;
1
+ import type { AnchorProps } from './index.js';
2
+ declare const FloatingLayerAnchor: import("svelte").Component<AnchorProps, {}, "">;
2
3
  type FloatingLayerAnchor = ReturnType<typeof FloatingLayerAnchor>;
3
4
  export default FloatingLayerAnchor;
4
5
  //# sourceMappingURL=floating-layer-anchor.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"floating-layer-anchor.svelte.d.ts","sourceRoot":"","sources":["../../../../../../src/lib/components/utilities/floating-layer/components/floating-layer-anchor.svelte.ts"],"names":[],"mappings":"AA0BA,QAAA,MAAM,mBAAmB,KAAwC,CAAC;AAClE,KAAK,mBAAmB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAClE,eAAe,mBAAmB,CAAC"}
1
+ {"version":3,"file":"floating-layer-anchor.svelte.d.ts","sourceRoot":"","sources":["../../../../../../src/lib/components/utilities/floating-layer/components/floating-layer-anchor.svelte.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAqB9C,QAAA,MAAM,mBAAmB,iDAAwC,CAAC;AAClE,KAAK,mBAAmB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAClE,eAAe,mBAAmB,CAAC"}
@@ -1,4 +1,4 @@
1
- declare const FloatingLayerArrow: any;
1
+ declare const FloatingLayerArrow: import("svelte").Component<any, {}, "ref">;
2
2
  type FloatingLayerArrow = ReturnType<typeof FloatingLayerArrow>;
3
3
  export default FloatingLayerArrow;
4
4
  //# sourceMappingURL=floating-layer-arrow.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"floating-layer-arrow.svelte.d.ts","sourceRoot":"","sources":["../../../../../../src/lib/components/utilities/floating-layer/components/floating-layer-arrow.svelte.ts"],"names":[],"mappings":"AA+BA,QAAA,MAAM,kBAAkB,KAAwC,CAAC;AACjE,KAAK,kBAAkB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAChE,eAAe,kBAAkB,CAAC"}
1
+ {"version":3,"file":"floating-layer-arrow.svelte.d.ts","sourceRoot":"","sources":["../../../../../../src/lib/components/utilities/floating-layer/components/floating-layer-arrow.svelte.ts"],"names":[],"mappings":"AA+BA,QAAA,MAAM,kBAAkB,4CAAwC,CAAC;AACjE,KAAK,kBAAkB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAChE,eAAe,kBAAkB,CAAC"}
@@ -1,4 +1,14 @@
1
- declare const FloatingLayerContentStatic: any;
1
+ import { type Snippet } from "svelte";
2
+ type $$ComponentProps = {
3
+ content?: Snippet<[
4
+ {
5
+ props: Record<string, unknown>;
6
+ wrapperProps: Record<string, unknown>;
7
+ }
8
+ ]>;
9
+ onPlaced?: () => void;
10
+ };
11
+ declare const FloatingLayerContentStatic: import("svelte").Component<$$ComponentProps, {}, "">;
2
12
  type FloatingLayerContentStatic = ReturnType<typeof FloatingLayerContentStatic>;
3
13
  export default FloatingLayerContentStatic;
4
14
  //# sourceMappingURL=floating-layer-content-static.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"floating-layer-content-static.svelte.d.ts","sourceRoot":"","sources":["../../../../../../src/lib/components/utilities/floating-layer/components/floating-layer-content-static.svelte.ts"],"names":[],"mappings":"AA4BA,QAAA,MAAM,0BAA0B,KAAwC,CAAC;AACzE,KAAK,0BAA0B,GAAG,UAAU,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAChF,eAAe,0BAA0B,CAAC"}
1
+ {"version":3,"file":"floating-layer-content-static.svelte.d.ts","sourceRoot":"","sources":["../../../../../../src/lib/components/utilities/floating-layer/components/floating-layer-content-static.svelte.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,OAAO,EAAW,MAAM,QAAQ,CAAC;AAE9C,KAAK,gBAAgB,GAAI;IACxB,OAAO,CAAC,EAAE,OAAO,CAChB;QAAC;YAAE,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;YAAC,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;SAAE;KAAC,CAC3E,CAAC;IACF,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB,CAAC;AAkBH,QAAA,MAAM,0BAA0B,sDAAwC,CAAC;AACzE,KAAK,0BAA0B,GAAG,UAAU,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAChF,eAAe,0BAA0B,CAAC"}
@@ -1,4 +1,5 @@
1
- declare const FloatingLayerContent: any;
1
+ import type { ContentImplProps } from './index.js';
2
+ declare const FloatingLayerContent: import("svelte").Component<ContentImplProps, {}, "">;
2
3
  type FloatingLayerContent = ReturnType<typeof FloatingLayerContent>;
3
4
  export default FloatingLayerContent;
4
5
  //# sourceMappingURL=floating-layer-content.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"floating-layer-content.svelte.d.ts","sourceRoot":"","sources":["../../../../../../src/lib/components/utilities/floating-layer/components/floating-layer-content.svelte.ts"],"names":[],"mappings":"AAwEA,QAAA,MAAM,oBAAoB,KAAwC,CAAC;AACnE,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,oBAAoB,CAAC,CAAC;AACpE,eAAe,oBAAoB,CAAC"}
1
+ {"version":3,"file":"floating-layer-content.svelte.d.ts","sourceRoot":"","sources":["../../../../../../src/lib/components/utilities/floating-layer/components/floating-layer-content.svelte.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAmEnD,QAAA,MAAM,oBAAoB,sDAAwC,CAAC;AACnE,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,oBAAoB,CAAC,CAAC;AACpE,eAAe,oBAAoB,CAAC"}
@@ -1,4 +1,8 @@
1
- declare const FloatingLayer: any;
1
+ import type { Snippet } from "svelte";
2
+ type $$ComponentProps = {
3
+ children?: Snippet;
4
+ };
5
+ declare const FloatingLayer: import("svelte").Component<$$ComponentProps, {}, "">;
2
6
  type FloatingLayer = ReturnType<typeof FloatingLayer>;
3
7
  export default FloatingLayer;
4
8
  //# sourceMappingURL=floating-layer.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"floating-layer.svelte.d.ts","sourceRoot":"","sources":["../../../../../../src/lib/components/utilities/floating-layer/components/floating-layer.svelte.ts"],"names":[],"mappings":"AAoBA,QAAA,MAAM,aAAa,KAAwC,CAAC;AAC5D,KAAK,aAAa,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC;AACtD,eAAe,aAAa,CAAC"}
1
+ {"version":3,"file":"floating-layer.svelte.d.ts","sourceRoot":"","sources":["../../../../../../src/lib/components/utilities/floating-layer/components/floating-layer.svelte.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAC;AAGrC,KAAK,gBAAgB,GAAI;IAAE,QAAQ,CAAC,EAAE,OAAO,CAAA;CAAE,CAAC;AAcjD,QAAA,MAAM,aAAa,sDAAwC,CAAC;AAC5D,KAAK,aAAa,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC;AACtD,eAAe,aAAa,CAAC"}
@@ -0,0 +1,10 @@
1
+ @layer components {
2
+ .underline-animation {
3
+ @apply relative hover:after:scale-x-100 hover:after:origin-bottom-left;
4
+ }
5
+ .underline-animation::after {
6
+ @apply absolute content-[''] w-full h-[2px] left-0 bottom-0
7
+ bg-primary scale-x-0 origin-bottom-right
8
+ transition-transform duration-300 rounded-xl;
9
+ }
10
+ }
@@ -0,0 +1,4 @@
1
+ export type Vec4 = [number, number, number, number];
2
+ export type Vec3 = [number, number, number];
3
+ export type Vec2 = [number, number];
4
+ //# sourceMappingURL=glsl.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"glsl.d.ts","sourceRoot":"","sources":["../../../src/lib/utils/glsl.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,IAAI,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;AACpD,MAAM,MAAM,IAAI,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;AAC5C,MAAM,MAAM,IAAI,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC"}
@@ -0,0 +1 @@
1
+ export {};
@@ -2,4 +2,5 @@ export * from './utils.js';
2
2
  export * from './bits.js';
3
3
  export * from './asyncDerived.svelte.js';
4
4
  export * from './reactive.svelte.js';
5
+ export * from './glsl.js';
5
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/lib/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/lib/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,WAAW,CAAC"}
@@ -2,3 +2,4 @@ export * from './utils.js';
2
2
  export * from './bits.js';
3
3
  export * from './asyncDerived.svelte.js';
4
4
  export * from './reactive.svelte.js';
5
+ export * from './glsl.js';