geekin-devtoys 0.2.21 → 0.2.22
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/lib/GInputTreeTag/index.js +1 -1
- package/lib/GInputTreeTag/index.mjs +191 -194
- package/lib/GInputTreeTag/style.css +1 -1
- package/lib/components/GDialog/index.d.ts +8 -24
- package/lib/components/GInputTreeTag/index.d.ts +2012 -2
- package/lib/components/GScreen/index.d.ts +55 -3
- package/package.json +1 -1
|
@@ -1,3 +1,55 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
interface Props {
|
|
3
|
+
/**
|
|
4
|
+
* @description 设计稿宽度
|
|
5
|
+
* @version 0.1.8
|
|
6
|
+
* @default 1920
|
|
7
|
+
*/
|
|
8
|
+
width?: number;
|
|
9
|
+
/**
|
|
10
|
+
* @description 设计稿高度
|
|
11
|
+
* @version 0.1.8
|
|
12
|
+
* @default 1080
|
|
13
|
+
*/
|
|
14
|
+
height?: number;
|
|
15
|
+
/**
|
|
16
|
+
* @description 防抖延迟时间(ms),设为 0 则关闭防抖
|
|
17
|
+
* @version 0.1.8
|
|
18
|
+
* @default 166
|
|
19
|
+
*/
|
|
20
|
+
debounceDelay?: number;
|
|
21
|
+
}
|
|
22
|
+
declare function __VLS_template(): {
|
|
23
|
+
attrs: Partial<{}>;
|
|
24
|
+
slots: {
|
|
25
|
+
default?(_: {}): any;
|
|
26
|
+
};
|
|
27
|
+
refs: {};
|
|
28
|
+
rootEl: any;
|
|
29
|
+
};
|
|
30
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
31
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
32
|
+
scale: Ref<{
|
|
33
|
+
x: number;
|
|
34
|
+
y: number;
|
|
35
|
+
}, {
|
|
36
|
+
x: number;
|
|
37
|
+
y: number;
|
|
38
|
+
} | {
|
|
39
|
+
x: number;
|
|
40
|
+
y: number;
|
|
41
|
+
}>;
|
|
42
|
+
safeScaleX: import('vue').ComputedRef<number>;
|
|
43
|
+
yScaleRatio: import('vue').ComputedRef<number>;
|
|
44
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
45
|
+
width: number;
|
|
46
|
+
height: number;
|
|
47
|
+
debounceDelay: number;
|
|
48
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
49
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
50
|
+
export default _default;
|
|
51
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
52
|
+
new (): {
|
|
53
|
+
$slots: S;
|
|
54
|
+
};
|
|
55
|
+
};
|