@milaboratories/uikit 2.2.35 → 2.2.37

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.
@@ -0,0 +1,8 @@
1
+ import './pl-loader-circular.scss';
2
+ type __VLS_Props = {
3
+ size?: '16' | '24' | '48' | string;
4
+ };
5
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
6
+ size: "16" | "24" | "48" | string;
7
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
8
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as PlLoaderCircular } from './PlLoaderCircular.vue';
@@ -0,0 +1,18 @@
1
+ import type { Ref } from 'vue';
2
+ export type SortableSettings = {
3
+ onChange: (indices: number[]) => void;
4
+ handle?: string;
5
+ shakeBuffer?: number;
6
+ reorderDelay?: number;
7
+ transitionDelay?: string;
8
+ };
9
+ /**
10
+ * Description: Scroll support has been added to the container where sorting takes place.
11
+ * Some functionality duplicates the behavior of useScrollable.
12
+ *
13
+ * Purpose: To enable automatic scrolling when dragging items beyond the visible area of the container.
14
+ * Future Plan:
15
+ * - Verify the behavior of the new scrolling functionality within blocks and text elements.
16
+ * - Merge the current implementation with useScrollable to eliminate code duplication and create a unified scrolling solution.
17
+ */
18
+ export declare function useSortable2(listRef: Ref<HTMLElement | undefined>, settings: SortableSettings): void;
@@ -44,6 +44,7 @@ export * from './components/PlTabs';
44
44
  export * from './components/PlSectionSeparator';
45
45
  export * from './components/PlAccordion';
46
46
  export * from './components/PlStatusTag';
47
+ export * from './components/PlLoaderCircular';
47
48
  export * from './components/PlFileDialog';
48
49
  export * from './components/PlFileInput';
49
50
  export * from './components/PlNotificationAlert';
@@ -69,6 +70,7 @@ export { useMouseCapture } from './composition/useMouseCapture';
69
70
  export { useHover } from './composition/useHover';
70
71
  export { useMouse } from './composition/useMouse';
71
72
  export { useSortable } from './composition/useSortable';
73
+ export { useSortable2 } from './composition/useSortable2';
72
74
  export { useInterval } from './composition/useInterval';
73
75
  export { useFormState } from './composition/useFormState';
74
76
  export { useQuery } from './composition/useQuery.ts';