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