yuyeon 0.2.3-rc.8 → 0.2.3-rc.9
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.
- package/dist/yuyeon.js +553 -550
- package/dist/yuyeon.umd.cjs +2 -2
- package/lib/components/layer/YLayer.mjs +1 -1
- package/lib/components/layer/YLayer.mjs.map +1 -1
- package/lib/components/select/YSelect.mjs.map +1 -1
- package/lib/components/tooltip/YTooltip.mjs +4 -4
- package/lib/components/tooltip/YTooltip.mjs.map +1 -1
- package/lib/composables/layer-group.mjs +10 -4
- package/lib/composables/layer-group.mjs.map +1 -1
- package/lib/util/component/component.mjs +4 -0
- package/lib/util/component/component.mjs.map +1 -1
- package/package.json +1 -1
- package/types/components/checkbox/YCheckbox.d.ts +1 -1
- package/types/components/date-picker/YDateCalendar.d.ts +5 -5
- package/types/components/dialog/YDialog.d.ts +4909 -7
- package/types/components/draggable/YDraggable.d.ts +8 -8
- package/types/components/field-input/YFieldInput.d.ts +2 -2
- package/types/components/layer/YLayer.d.ts +1599 -6
- package/types/components/layer/active-stack.d.ts +1 -1
- package/types/components/layer/base.d.ts +3 -3
- package/types/components/menu/YMenu.d.ts +4910 -8
- package/types/components/pagination/YPagination.d.ts +3 -3
- package/types/components/panel/YDividePanel.d.ts +2 -2
- package/types/components/progress-bar/YProgressBar.d.ts +1 -1
- package/types/components/snackbar/YSnackbar.d.ts +2 -2
- package/types/components/tab/YTabs.d.ts +1 -1
- package/types/components/table/composibles/header.d.ts +38 -2
- package/types/components/table/composibles/measure.d.ts +6 -6
- package/types/components/table/composibles/pagination.d.ts +8 -8
- package/types/components/table/composibles/sorting.d.ts +3 -3
- package/types/components/textarea/YTextarea.d.ts +92 -5
- package/types/components/transitions/expand-transition.d.ts +5 -5
- package/types/components/transitions/index.d.ts +10 -10
- package/types/components/tree-view/YTreeView.d.ts +13 -13
- package/types/components/tree-view/YTreeViewNode.d.ts +4 -4
- package/types/composables/communication.d.ts +2 -2
- package/types/composables/coordinate/index.d.ts +1595 -2
- package/types/composables/defaults/index.d.ts +3 -3
- package/types/composables/focus.d.ts +1 -1
- package/types/composables/form.d.ts +17 -2
- package/types/composables/layer-group.d.ts +4 -2
- package/types/composables/progress.d.ts +1 -1
- package/types/composables/ref.d.ts +1 -1
- package/types/composables/resize-observer.d.ts +11 -1
- package/types/composables/theme/index.d.ts +7 -7
- package/types/composables/timing.d.ts +3 -3
- package/types/composables/validation.d.ts +3 -3
- package/types/mixins/di.d.ts +1 -1
- package/types/mixins/rebind-attrs.d.ts +1 -1
|
@@ -4,7 +4,7 @@ type Coord = {
|
|
|
4
4
|
x: number;
|
|
5
5
|
y: number;
|
|
6
6
|
};
|
|
7
|
-
export declare const YDraggable: import('vue').DefineComponent<{
|
|
7
|
+
export declare const YDraggable: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
8
8
|
as: PropType<string | object>;
|
|
9
9
|
handle: PropType<MaybeRef<string | HTMLElement>>;
|
|
10
10
|
disabled: BooleanConstructor;
|
|
@@ -12,12 +12,12 @@ export declare const YDraggable: import('vue').DefineComponent<{
|
|
|
12
12
|
exact: BooleanConstructor;
|
|
13
13
|
container: PropType<string | MaybeRef<HTMLElement | SVGElement | null>>;
|
|
14
14
|
onDragStart: PropType<(pos: Coord, e: PointerEvent) => boolean | undefined>;
|
|
15
|
-
}
|
|
15
|
+
}>, {
|
|
16
16
|
targetEl: import('vue').ComputedRef<any>;
|
|
17
17
|
handleEl: import('vue').ComputedRef<any>;
|
|
18
|
-
dragging: import('vue').Ref<boolean>;
|
|
19
|
-
position: import('vue').Ref<any>;
|
|
20
|
-
},
|
|
18
|
+
dragging: import('vue').Ref<boolean, boolean>;
|
|
19
|
+
position: import('vue').Ref<any, any>;
|
|
20
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "start"[], "start", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
21
21
|
as: PropType<string | object>;
|
|
22
22
|
handle: PropType<MaybeRef<string | HTMLElement>>;
|
|
23
23
|
disabled: BooleanConstructor;
|
|
@@ -25,12 +25,12 @@ export declare const YDraggable: import('vue').DefineComponent<{
|
|
|
25
25
|
exact: BooleanConstructor;
|
|
26
26
|
container: PropType<string | MaybeRef<HTMLElement | SVGElement | null>>;
|
|
27
27
|
onDragStart: PropType<(pos: Coord, e: PointerEvent) => boolean | undefined>;
|
|
28
|
-
}>> & {
|
|
28
|
+
}>> & Readonly<{
|
|
29
29
|
onStart?: ((...args: any[]) => any) | undefined;
|
|
30
|
-
}
|
|
30
|
+
}>, {
|
|
31
31
|
disabled: boolean;
|
|
32
32
|
exact: boolean;
|
|
33
33
|
capture: boolean;
|
|
34
|
-
}, {}>;
|
|
34
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
35
35
|
export type YDraggable = InstanceType<typeof YDraggable>;
|
|
36
36
|
export {};
|
|
@@ -302,9 +302,9 @@ export declare const YFieldInput: import('vue').DefineComponent<{
|
|
|
302
302
|
default: string;
|
|
303
303
|
};
|
|
304
304
|
}, {
|
|
305
|
-
focused: import('vue').Ref<any> & {
|
|
305
|
+
focused: import('vue').Ref<any, any> & {
|
|
306
306
|
readonly rxValue: any;
|
|
307
307
|
};
|
|
308
|
-
inValue: import('vue').Ref<any>;
|
|
308
|
+
inValue: import('vue').Ref<any, any>;
|
|
309
309
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("input" | "blur" | "change" | "click" | "focus" | "keydown" | "keyup" | "mousedown" | "mouseup" | "mousedown:display" | "keydown:display" | "update:modelValue" | "update:focused")[], "input" | "blur" | "change" | "click" | "focus" | "keydown" | "keyup" | "mousedown" | "mouseup" | "mousedown:display" | "keydown:display" | "update:modelValue" | "update:focused">;
|
|
310
310
|
export type YFieldInput = InstanceType<typeof YFieldInput>;
|