@vtj/ui 0.10.6 → 0.10.7
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/index.mjs +9 -8
- package/dist/index.umd.js +3 -3
- package/package.json +5 -5
- package/types/components/action/Action.d.ts +10 -3
- package/types/components/attachment/Attachment.d.ts +805 -274
- package/types/components/container/Container.d.ts +15 -178
- package/types/components/data-item/DataItem.d.ts +18 -517
- package/types/components/dialog/Dialog.d.ts +1203 -432
- package/types/components/dialog-form/DialogForm.d.ts +3049 -104
- package/types/components/dialog-grid/DialogGrid.d.ts +4907 -69
- package/types/components/field/Field.d.ts +353 -222
- package/types/components/field/editors/SelectEditor.d.ts +12 -21
- package/types/components/form/Form.d.ts +389 -116
- package/types/components/grid/Grid.d.ts +57 -787
- package/types/components/grid/renderers/components/DateEdit.d.ts +255 -2
- package/types/components/grid/renderers/components/DateFilter.d.ts +1 -1
- package/types/components/grid/renderers/components/GridEdit.d.ts +410 -2
- package/types/components/grid/renderers/components/InputFilter.d.ts +1 -1
- package/types/components/grid/renderers/components/NumberFilter.d.ts +1 -1
- package/types/components/grid/renderers/components/PickerEdit.d.ts +1926 -2
- package/types/components/grid/renderers/components/SelectFilter.d.ts +1 -1
- package/types/components/grid-editor/GridEditor.d.ts +375 -2
- package/types/components/header/Header.d.ts +14 -76
- package/types/components/icon/Icon.d.ts +74 -0
- package/types/components/import-button/ImportButton.d.ts +10 -47
- package/types/components/list/List.d.ts +30 -155
- package/types/components/mask/Mask.d.ts +562 -546
- package/types/components/mask/components/Avatar.d.ts +11 -16
- package/types/components/mask/components/Brand.d.ts +12 -17
- package/types/components/mask/components/Content.d.ts +12 -13
- package/types/components/mask/components/Sidebar.d.ts +12 -15
- package/types/components/mask/components/Tabs.d.ts +255 -2
- package/types/components/mask/components/ThemeSwitch.d.ts +1 -1
- package/types/components/mask/components/Toolbar.d.ts +13 -55
- package/types/components/panel/Panel.d.ts +521 -124
- package/types/components/picker/Dialog.d.ts +1291 -2
- package/types/components/picker/Picker.d.ts +1730 -2
- package/types/components/qr-code/QrCode.d.ts +13 -35
- package/types/components/query-form/QueryForm.d.ts +1105 -418
- package/types/components/startup/Startup.d.ts +1 -1
- package/types/components/tabs/Tabs.d.ts +53 -297
- package/types/components/test/Test.d.ts +41 -268
- package/types/utils/auto-update.d.ts +1 -1
- package/types/version.d.ts +2 -2
@@ -1,36 +1,14 @@
|
|
1
|
-
import { XIcon } from '../icon';
|
2
|
-
import { Refresh } from '@vtj/icons';
|
3
1
|
import { QrCodeProps } from './types';
|
4
|
-
import {
|
5
|
-
declare
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
}
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
15
|
-
tip?: (props: typeof __VLS_9) => any;
|
16
|
-
}>;
|
17
|
-
declare const __VLS_self: DefineComponent<QrCodeProps, {
|
18
|
-
XIcon: typeof XIcon;
|
19
|
-
Refresh: typeof Refresh;
|
20
|
-
image: typeof image;
|
21
|
-
isExpired: typeof isExpired;
|
22
|
-
comptedStyle: typeof comptedStyle;
|
23
|
-
refresh: typeof refresh;
|
24
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
25
|
-
expired: () => any;
|
26
|
-
draw: (value: string) => any;
|
27
|
-
}, string, PublicProps, Readonly<QrCodeProps> & Readonly<{
|
28
|
-
onExpired?: (() => any) | undefined;
|
29
|
-
onDraw?: ((value: string) => any) | undefined;
|
30
|
-
}>, {
|
31
|
-
size: number;
|
32
|
-
tip: string;
|
33
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
3
|
+
declare function __VLS_template(): {
|
4
|
+
attrs: Partial<{}>;
|
5
|
+
slots: {
|
6
|
+
tip?(_: {}): any;
|
7
|
+
};
|
8
|
+
refs: {};
|
9
|
+
rootEl: HTMLDivElement;
|
10
|
+
};
|
11
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
34
12
|
declare const __VLS_component: DefineComponent<QrCodeProps, {
|
35
13
|
refresh: () => void;
|
36
14
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
@@ -42,10 +20,10 @@ declare const __VLS_component: DefineComponent<QrCodeProps, {
|
|
42
20
|
}>, {
|
43
21
|
size: number;
|
44
22
|
tip: string;
|
45
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
46
|
-
declare const _default:
|
23
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
24
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
47
25
|
export default _default;
|
48
|
-
type
|
26
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
49
27
|
new (): {
|
50
28
|
$slots: S;
|
51
29
|
};
|