@yiitap/vue 1.0.2 → 1.0.3

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 (81) hide show
  1. package/dist/index.cjs +35 -32
  2. package/dist/index.js +35 -32
  3. package/dist/index.mjs +10878 -12230
  4. package/dist/vue.css +1 -1
  5. package/package.json +3 -2
  6. package/types/components/YiiEditor.vue.d.ts +244 -14
  7. package/types/components/buttons/OAlignDropdown.vue.d.ts +3 -3
  8. package/types/components/buttons/OAlignGroup.vue.d.ts +3 -3
  9. package/types/components/buttons/OBackColorDropdown.vue.d.ts +3 -3
  10. package/types/components/buttons/OFontFamilyDropdown.vue.d.ts +3 -3
  11. package/types/components/buttons/OForeColorDropdown.vue.d.ts +3 -3
  12. package/types/components/buttons/OHeadingDropdown.vue.d.ts +3 -3
  13. package/types/components/buttons/OLinkBtn.vue.d.ts +3 -3
  14. package/types/components/buttons/OLinkEditBtn.vue.d.ts +3 -3
  15. package/types/components/buttons/OLinkOpenBtn.vue.d.ts +3 -3
  16. package/types/components/buttons/OListDropdown.vue.d.ts +3 -3
  17. package/types/components/buttons/OListGroup.vue.d.ts +3 -3
  18. package/types/components/buttons/OMoreBubble.vue.d.ts +3 -3
  19. package/types/components/buttons/OSimpleCommandBtn.vue.d.ts +4 -4
  20. package/types/components/buttons/OStyleDropdown.vue.d.ts +3 -3
  21. package/types/components/buttons/OTableBtn.vue.d.ts +3 -3
  22. package/types/components/buttons/OTableGroup.vue.d.ts +3 -3
  23. package/types/components/buttons/OTextColorDropdown.vue.d.ts +3 -3
  24. package/types/components/buttons/OTextFormatDropdown.vue.d.ts +3 -3
  25. package/types/components/common/OBlockMenu.vue.d.ts +69 -0
  26. package/types/components/common/OBlockPlaceholder.vue.d.ts +5 -5
  27. package/types/components/common/OBlockPopover.vue.d.ts +379 -11
  28. package/types/components/common/OBlockToolbar.vue.d.ts +521 -0
  29. package/types/components/common/OCalloutColorBoard.vue.d.ts +6 -6
  30. package/types/components/common/OCalloutColorDropdown.vue.d.ts +5 -5
  31. package/types/components/common/OColorBoard.vue.d.ts +6 -6
  32. package/types/components/common/OCommandBtn.vue.d.ts +108 -9
  33. package/types/components/common/OCommonBtn.vue.d.ts +108 -9
  34. package/types/components/common/OContextMenu.vue.d.ts +354 -9
  35. package/types/components/common/OLanguageDropdown.vue.d.ts +6 -6
  36. package/types/components/common/OMediaInput.vue.d.ts +6 -6
  37. package/types/components/common/OMenubarBtn.vue.d.ts +7 -7
  38. package/types/components/common/OMetaInput.vue.d.ts +92 -9
  39. package/types/components/common/ONodeView.vue.d.ts +213 -0
  40. package/types/components/common/OTableCellBackground.vue.d.ts +3 -3
  41. package/types/components/common/OTableGrid.vue.d.ts +2 -2
  42. package/types/components/common/OTextColorBoard.vue.d.ts +6 -6
  43. package/types/components/common/o-side-menu/AddNode.vue.d.ts +46 -0
  44. package/types/components/common/o-side-menu/AddNodeView.vue.d.ts +50 -0
  45. package/types/components/common/o-side-menu/DragNode.vue.d.ts +54 -0
  46. package/types/components/common/o-side-menu/DragNodeMenu.vue.d.ts +6 -6
  47. package/types/components/common/o-side-menu/DragNodeView.vue.d.ts +50 -0
  48. package/types/components/common/o-side-node/AddNode.vue.d.ts +92 -0
  49. package/types/components/common/o-side-node/AddNodeView.vue.d.ts +96 -0
  50. package/types/components/common/o-side-node/DragNode.vue.d.ts +96 -0
  51. package/types/components/common/o-side-node/DragNodeView.vue.d.ts +96 -0
  52. package/types/components/common/o-side-node/index.vue.d.ts +96 -0
  53. package/types/components/menus/OBubbleMenu.vue.d.ts +7 -6
  54. package/types/components/menus/OFloatingMenu.vue.d.ts +7 -6
  55. package/types/components/menus/OMainMenu.vue.d.ts +39 -8
  56. package/types/components/menus/OSideMenu.vue.d.ts +4 -4
  57. package/types/components/ui/OBtn.vue.d.ts +53 -9
  58. package/types/components/ui/OCheckbox.vue.d.ts +6 -6
  59. package/types/components/ui/ODivider.vue.d.ts +4 -4
  60. package/types/components/ui/OIcon.vue.d.ts +4 -4
  61. package/types/components/ui/OInput.vue.d.ts +63 -11
  62. package/types/components/ui/OList.vue.d.ts +33 -7
  63. package/types/components/ui/OListItem.vue.d.ts +28 -9
  64. package/types/components/ui/OPopover.vue.d.ts +93 -12
  65. package/types/components/ui/OTooltip.d.ts +5 -5
  66. package/types/components/ui/OTooltip.vue.d.ts +40 -8
  67. package/types/extensions/blockquote/view.vue.d.ts +92 -0
  68. package/types/extensions/callout/index.d.ts +3 -21
  69. package/types/extensions/callout/index.old.d.ts +21 -0
  70. package/types/extensions/callout/view.vue.d.ts +92 -0
  71. package/types/extensions/code-block/view.vue.d.ts +92 -0
  72. package/types/extensions/dynamic.d.ts +1 -1
  73. package/types/extensions/heading/view.vue.d.ts +92 -0
  74. package/types/extensions/horizontal-rule/view.vue.d.ts +92 -0
  75. package/types/extensions/image/view.vue.d.ts +92 -0
  76. package/types/extensions/paragraph/view.vue.d.ts +92 -0
  77. package/types/extensions/slash/view.vue.d.ts +143 -5
  78. package/types/extensions/table-cell/view.vue.d.ts +92 -0
  79. package/types/extensions/table-header/view.vue.d.ts +92 -0
  80. package/types/extensions/table-wrapper/view.vue.d.ts +92 -0
  81. package/types/extensions/video/view.vue.d.ts +92 -0
@@ -1,4 +1,14 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
1
+ import { getComponent } from '../menu';
2
+ import { ODivider } from '../index';
3
+ declare const dynamicMenu: import("vue").ComputedRef<unknown[]>;
4
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
5
+ declare var __VLS_13: {}, __VLS_15: {};
6
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
7
+ left?: (props: typeof __VLS_13) => any;
8
+ } & {
9
+ right?: (props: typeof __VLS_15) => any;
10
+ }>;
11
+ declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
12
  editor: {
3
13
  type: ObjectConstructor;
4
14
  };
@@ -6,7 +16,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
6
16
  type: ArrayConstructor;
7
17
  default: () => any[];
8
18
  };
9
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
19
+ }>, {
20
+ getComponent: typeof getComponent;
21
+ ODivider: typeof ODivider;
22
+ dynamicMenu: typeof dynamicMenu;
23
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
10
24
  editor: {
11
25
  type: ObjectConstructor;
12
26
  };
@@ -14,14 +28,31 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
14
28
  type: ArrayConstructor;
15
29
  default: () => any[];
16
30
  };
17
- }>>, {
31
+ }>> & Readonly<{}>, {
18
32
  menu: unknown[];
19
- }, {}>, {
20
- left?(_: {}): any;
21
- right?(_: {}): any;
22
- }>;
33
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
34
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
35
+ editor: {
36
+ type: ObjectConstructor;
37
+ };
38
+ menu: {
39
+ type: ArrayConstructor;
40
+ default: () => any[];
41
+ };
42
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
43
+ editor: {
44
+ type: ObjectConstructor;
45
+ };
46
+ menu: {
47
+ type: ArrayConstructor;
48
+ default: () => any[];
49
+ };
50
+ }>> & Readonly<{}>, {
51
+ menu: unknown[];
52
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
53
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
23
54
  export default _default;
24
- type __VLS_WithTemplateSlots<T, S> = T & {
55
+ type __VLS_WithSlots<T, S> = T & {
25
56
  new (): {
26
57
  $slots: S;
27
58
  };
@@ -1,5 +1,5 @@
1
1
  import { Editor } from '@tiptap/core';
2
- declare const _default: import("vue").DefineComponent<{
2
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
3
  editor: {
4
4
  type: typeof Editor;
5
5
  required: true;
@@ -8,7 +8,7 @@ declare const _default: import("vue").DefineComponent<{
8
8
  type: StringConstructor;
9
9
  default: string;
10
10
  };
11
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
11
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
12
12
  editor: {
13
13
  type: typeof Editor;
14
14
  required: true;
@@ -17,7 +17,7 @@ declare const _default: import("vue").DefineComponent<{
17
17
  type: StringConstructor;
18
18
  default: string;
19
19
  };
20
- }>>, {
20
+ }>> & Readonly<{}>, {
21
21
  menuClass: string;
22
- }, {}>;
22
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
23
23
  export default _default;
@@ -1,4 +1,11 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
1
+ import { OIcon } from '../index';
2
+ declare const emit: (event: "click", ...args: any[]) => void;
3
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
4
+ declare var __VLS_5: {};
5
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
6
+ default?: (props: typeof __VLS_5) => any;
7
+ }>;
8
+ declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
9
  icon: {
3
10
  type: StringConstructor;
4
11
  default: string;
@@ -11,9 +18,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
11
18
  type: StringConstructor;
12
19
  default: string;
13
20
  };
14
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
21
+ }>, {
22
+ OIcon: typeof OIcon;
23
+ emit: typeof emit;
24
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
25
  click: (...args: any[]) => void;
16
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
26
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
17
27
  icon: {
18
28
  type: StringConstructor;
19
29
  default: string;
@@ -26,17 +36,51 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
26
36
  type: StringConstructor;
27
37
  default: string;
28
38
  };
29
- }>> & {
39
+ }>> & Readonly<{
30
40
  onClick?: (...args: any[]) => any;
31
- }, {
41
+ }>, {
32
42
  type: string;
33
43
  icon: string;
34
44
  iconClass: string | Record<string, any>;
35
- }, {}>, {
36
- default?(_: {}): any;
37
- }>;
45
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
46
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
47
+ icon: {
48
+ type: StringConstructor;
49
+ default: string;
50
+ };
51
+ iconClass: {
52
+ type: (StringConstructor | ObjectConstructor)[];
53
+ default: string;
54
+ };
55
+ type: {
56
+ type: StringConstructor;
57
+ default: string;
58
+ };
59
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
60
+ click: (...args: any[]) => void;
61
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
62
+ icon: {
63
+ type: StringConstructor;
64
+ default: string;
65
+ };
66
+ iconClass: {
67
+ type: (StringConstructor | ObjectConstructor)[];
68
+ default: string;
69
+ };
70
+ type: {
71
+ type: StringConstructor;
72
+ default: string;
73
+ };
74
+ }>> & Readonly<{
75
+ onClick?: (...args: any[]) => any;
76
+ }>, {
77
+ type: string;
78
+ icon: string;
79
+ iconClass: string | Record<string, any>;
80
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
81
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
38
82
  export default _default;
39
- type __VLS_WithTemplateSlots<T, S> = T & {
83
+ type __VLS_WithSlots<T, S> = T & {
40
84
  new (): {
41
85
  $slots: S;
42
86
  };
@@ -1,4 +1,4 @@
1
- declare const _default: import("vue").DefineComponent<{
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
2
  modelValue: {
3
3
  type: BooleanConstructor;
4
4
  default: boolean;
@@ -7,9 +7,9 @@ declare const _default: import("vue").DefineComponent<{
7
7
  type: StringConstructor;
8
8
  default: string;
9
9
  };
10
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
11
  "update:modelValue": (...args: any[]) => void;
12
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
12
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
13
13
  modelValue: {
14
14
  type: BooleanConstructor;
15
15
  default: boolean;
@@ -18,10 +18,10 @@ declare const _default: import("vue").DefineComponent<{
18
18
  type: StringConstructor;
19
19
  default: string;
20
20
  };
21
- }>> & {
21
+ }>> & Readonly<{
22
22
  "onUpdate:modelValue"?: (...args: any[]) => any;
23
- }, {
23
+ }>, {
24
24
  label: string;
25
25
  modelValue: boolean;
26
- }, {}>;
26
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
27
27
  export default _default;
@@ -1,14 +1,14 @@
1
- declare const _default: import("vue").DefineComponent<{
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
2
  vertical: {
3
3
  type: BooleanConstructor;
4
4
  default: boolean;
5
5
  };
6
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
6
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
7
7
  vertical: {
8
8
  type: BooleanConstructor;
9
9
  default: boolean;
10
10
  };
11
- }>>, {
11
+ }>> & Readonly<{}>, {
12
12
  vertical: boolean;
13
- }, {}>;
13
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
14
14
  export default _default;
@@ -1,4 +1,4 @@
1
- declare const _default: import("vue").DefineComponent<{
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
2
  name: {
3
3
  type: StringConstructor;
4
4
  default: string;
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<{
11
11
  type: BooleanConstructor;
12
12
  default: boolean;
13
13
  };
14
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
14
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
15
  name: {
16
16
  type: StringConstructor;
17
17
  default: string;
@@ -24,9 +24,9 @@ declare const _default: import("vue").DefineComponent<{
24
24
  type: BooleanConstructor;
25
25
  default: boolean;
26
26
  };
27
- }>>, {
27
+ }>> & Readonly<{}>, {
28
28
  name: string;
29
29
  color: string;
30
30
  small: boolean;
31
- }, {}>;
31
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
32
32
  export default _default;
@@ -1,6 +1,60 @@
1
+ import OIcon from './OIcon.vue';
2
+ declare const emit: (event: "blur" | "update:modelValue", ...args: any[]) => void;
3
+ declare const input: import("vue").Ref<HTMLInputElement, HTMLInputElement>;
4
+ declare const value: import("vue").WritableComputedRef<string, string>;
1
5
  declare function focus(): void;
2
6
  declare function clear(): void;
3
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
7
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
8
+ declare var __VLS_1: {}, __VLS_3: {};
9
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
10
+ prefix?: (props: typeof __VLS_1) => any;
11
+ } & {
12
+ suffix?: (props: typeof __VLS_3) => any;
13
+ }>;
14
+ declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
15
+ modelValue: {
16
+ type: StringConstructor;
17
+ default: string;
18
+ };
19
+ clearable: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
23
+ type: {
24
+ type: StringConstructor;
25
+ default: string;
26
+ };
27
+ }>, {
28
+ OIcon: typeof OIcon;
29
+ emit: typeof emit;
30
+ input: typeof input;
31
+ value: typeof value;
32
+ clear: typeof clear;
33
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
34
+ blur: (...args: any[]) => void;
35
+ "update:modelValue": (...args: any[]) => void;
36
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
37
+ modelValue: {
38
+ type: StringConstructor;
39
+ default: string;
40
+ };
41
+ clearable: {
42
+ type: BooleanConstructor;
43
+ default: boolean;
44
+ };
45
+ type: {
46
+ type: StringConstructor;
47
+ default: string;
48
+ };
49
+ }>> & Readonly<{
50
+ onBlur?: (...args: any[]) => any;
51
+ "onUpdate:modelValue"?: (...args: any[]) => any;
52
+ }>, {
53
+ type: string;
54
+ modelValue: string;
55
+ clearable: boolean;
56
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
57
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
58
  modelValue: {
5
59
  type: StringConstructor;
6
60
  default: string;
@@ -13,13 +67,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
13
67
  type: StringConstructor;
14
68
  default: string;
15
69
  };
16
- }, {
70
+ }>, {
17
71
  clear: typeof clear;
18
72
  focus: typeof focus;
19
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
73
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
74
  blur: (...args: any[]) => void;
21
75
  "update:modelValue": (...args: any[]) => void;
22
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
76
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
23
77
  modelValue: {
24
78
  type: StringConstructor;
25
79
  default: string;
@@ -32,19 +86,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
32
86
  type: StringConstructor;
33
87
  default: string;
34
88
  };
35
- }>> & {
89
+ }>> & Readonly<{
36
90
  onBlur?: (...args: any[]) => any;
37
91
  "onUpdate:modelValue"?: (...args: any[]) => any;
38
- }, {
92
+ }>, {
39
93
  type: string;
40
94
  modelValue: string;
41
95
  clearable: boolean;
42
- }, {}>, {
43
- prefix?(_: {}): any;
44
- suffix?(_: {}): any;
45
- }>;
96
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
97
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
46
98
  export default _default;
47
- type __VLS_WithTemplateSlots<T, S> = T & {
99
+ type __VLS_WithSlots<T, S> = T & {
48
100
  new (): {
49
101
  $slots: S;
50
102
  };
@@ -1,4 +1,9 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
1
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
2
+ declare var __VLS_1: {};
3
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
4
+ default?: (props: typeof __VLS_1) => any;
5
+ }>;
6
+ declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
7
  clickable: {
3
8
  type: BooleanConstructor;
4
9
  default: boolean;
@@ -7,7 +12,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
7
12
  type: BooleanConstructor;
8
13
  default: boolean;
9
14
  };
10
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
15
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
16
  clickable: {
12
17
  type: BooleanConstructor;
13
18
  default: boolean;
@@ -16,14 +21,35 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
16
21
  type: BooleanConstructor;
17
22
  default: boolean;
18
23
  };
19
- }>>, {
24
+ }>> & Readonly<{}>, {
20
25
  clickable: boolean;
21
26
  hoverable: boolean;
22
- }, {}>, {
23
- default?(_: {}): any;
24
- }>;
27
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
28
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
29
+ clickable: {
30
+ type: BooleanConstructor;
31
+ default: boolean;
32
+ };
33
+ hoverable: {
34
+ type: BooleanConstructor;
35
+ default: boolean;
36
+ };
37
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
38
+ clickable: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
42
+ hoverable: {
43
+ type: BooleanConstructor;
44
+ default: boolean;
45
+ };
46
+ }>> & Readonly<{}>, {
47
+ clickable: boolean;
48
+ hoverable: boolean;
49
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
50
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
25
51
  export default _default;
26
- type __VLS_WithTemplateSlots<T, S> = T & {
52
+ type __VLS_WithSlots<T, S> = T & {
27
53
  new (): {
28
54
  $slots: S;
29
55
  };
@@ -1,22 +1,41 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
1
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
2
+ declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {};
3
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
4
+ prefix?: (props: typeof __VLS_1) => any;
5
+ } & {
6
+ default?: (props: typeof __VLS_3) => any;
7
+ } & {
8
+ suffix?: (props: typeof __VLS_5) => any;
9
+ }>;
10
+ declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
11
  hoverable: {
3
12
  type: BooleanConstructor;
4
13
  default: boolean;
5
14
  };
6
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
15
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
7
16
  hoverable: {
8
17
  type: BooleanConstructor;
9
18
  default: boolean;
10
19
  };
11
- }>>, {
20
+ }>> & Readonly<{}>, {
12
21
  hoverable: boolean;
13
- }, {}>, {
14
- prefix?(_: {}): any;
15
- default?(_: {}): any;
16
- suffix?(_: {}): any;
17
- }>;
22
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
23
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
24
+ hoverable: {
25
+ type: BooleanConstructor;
26
+ default: boolean;
27
+ };
28
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
29
+ hoverable: {
30
+ type: BooleanConstructor;
31
+ default: boolean;
32
+ };
33
+ }>> & Readonly<{}>, {
34
+ hoverable: boolean;
35
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
36
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
18
37
  export default _default;
19
- type __VLS_WithTemplateSlots<T, S> = T & {
38
+ type __VLS_WithSlots<T, S> = T & {
20
39
  new (): {
21
40
  $slots: S;
22
41
  };
@@ -1,8 +1,17 @@
1
1
  import 'tippy.js/animations/scale.css';
2
2
  import 'tippy.js/animations/shift-away.css';
3
3
  import 'tippy.js/animations/perspective.css';
4
+ declare const triggerRef: import("vue").Ref<HTMLElement, HTMLElement>;
5
+ declare const contentRef: import("vue").Ref<HTMLElement, HTMLElement>;
4
6
  declare function setShow(show: boolean): void;
5
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
7
+ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
8
+ declare var __VLS_1: {}, __VLS_3: {};
9
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
10
+ trigger?: (props: typeof __VLS_1) => any;
11
+ } & {
12
+ default?: (props: typeof __VLS_3) => any;
13
+ }>;
14
+ declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
6
15
  show: {
7
16
  type: BooleanConstructor;
8
17
  default: boolean;
@@ -31,11 +40,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
31
40
  type: ObjectConstructor;
32
41
  default: () => {};
33
42
  };
34
- }, {
35
- setShow: typeof setShow;
36
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
43
+ }>, {
44
+ triggerRef: typeof triggerRef;
45
+ contentRef: typeof contentRef;
46
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
37
47
  "update:show": (...args: any[]) => void;
38
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
48
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
39
49
  show: {
40
50
  type: BooleanConstructor;
41
51
  default: boolean;
@@ -64,22 +74,93 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
64
74
  type: ObjectConstructor;
65
75
  default: () => {};
66
76
  };
67
- }>> & {
77
+ }>> & Readonly<{
68
78
  "onUpdate:show"?: (...args: any[]) => any;
69
- }, {
79
+ }>, {
70
80
  show: boolean;
81
+ arrow: boolean;
71
82
  offset: number[];
83
+ placement: string;
84
+ trigger: string;
85
+ tippyClass: string;
86
+ event: Record<string, any>;
87
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
88
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
89
+ show: {
90
+ type: BooleanConstructor;
91
+ default: boolean;
92
+ };
93
+ arrow: {
94
+ type: BooleanConstructor;
95
+ default: boolean;
96
+ };
97
+ offset: {
98
+ type: () => number[];
99
+ default: () => number[];
100
+ };
101
+ placement: {
102
+ type: StringConstructor;
103
+ default: string;
104
+ };
105
+ trigger: {
106
+ type: StringConstructor;
107
+ default: string;
108
+ };
109
+ tippyClass: {
110
+ type: StringConstructor;
111
+ default: string;
112
+ };
113
+ event: {
114
+ type: ObjectConstructor;
115
+ default: () => {};
116
+ };
117
+ }>, {
118
+ setShow: typeof setShow;
119
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
120
+ "update:show": (...args: any[]) => void;
121
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
122
+ show: {
123
+ type: BooleanConstructor;
124
+ default: boolean;
125
+ };
126
+ arrow: {
127
+ type: BooleanConstructor;
128
+ default: boolean;
129
+ };
130
+ offset: {
131
+ type: () => number[];
132
+ default: () => number[];
133
+ };
134
+ placement: {
135
+ type: StringConstructor;
136
+ default: string;
137
+ };
138
+ trigger: {
139
+ type: StringConstructor;
140
+ default: string;
141
+ };
142
+ tippyClass: {
143
+ type: StringConstructor;
144
+ default: string;
145
+ };
146
+ event: {
147
+ type: ObjectConstructor;
148
+ default: () => {};
149
+ };
150
+ }>> & Readonly<{
151
+ "onUpdate:show"?: (...args: any[]) => any;
152
+ }>, {
153
+ show: boolean;
72
154
  arrow: boolean;
155
+ offset: number[];
73
156
  placement: string;
74
157
  trigger: string;
75
158
  tippyClass: string;
76
159
  event: Record<string, any>;
77
- }, {}>, {
78
- trigger?(_: {}): any;
79
- default?(_: {}): any;
80
- }>;
160
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
161
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
81
162
  export default _default;
82
- type __VLS_WithTemplateSlots<T, S> = T & {
163
+ type __VLS_WithSlots<T, S> = T & {
83
164
  new (): {
84
165
  $slots: S;
85
166
  };
@@ -1,16 +1,16 @@
1
1
  import 'tippy.js/animations/perspective.css';
2
- export declare const OTooltip: import("vue").DefineComponent<{
2
+ export declare const OTooltip: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
3
  placement: {
4
4
  type: StringConstructor;
5
5
  default: string;
6
6
  };
7
- }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
7
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
8
8
  [key: string]: any;
9
- }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
9
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
10
10
  placement: {
11
11
  type: StringConstructor;
12
12
  default: string;
13
13
  };
14
- }>>, {
14
+ }>> & Readonly<{}>, {
15
15
  placement: string;
16
- }, {}>;
16
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;