vue-editify 0.2.13 → 0.2.15

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 (190) hide show
  1. package/examples/App.vue +49 -67
  2. package/lib/components/button/button.vue.d.ts +62 -60
  3. package/lib/components/button/index.d.ts +4 -0
  4. package/lib/components/button/props.d.ts +12 -1
  5. package/lib/components/checkbox/checkbox.vue.d.ts +9 -9
  6. package/lib/components/checkbox/index.d.ts +4 -0
  7. package/lib/components/checkbox/props.d.ts +2 -2
  8. package/lib/components/colors/colors.vue.d.ts +4 -4
  9. package/lib/components/colors/index.d.ts +4 -0
  10. package/lib/components/colors/props.d.ts +2 -2
  11. package/lib/components/icon/index.d.ts +4 -0
  12. package/lib/components/insertAttachment/index.d.ts +4 -0
  13. package/lib/{plugins/attachment → components}/insertAttachment/insertAttachment.vue.d.ts +3 -3
  14. package/lib/{plugins/attachment → components}/insertAttachment/props.d.ts +1 -1
  15. package/lib/components/insertImage/index.d.ts +4 -0
  16. package/lib/components/insertImage/insertImage.vue.d.ts +3 -3
  17. package/lib/components/insertImage/props.d.ts +1 -1
  18. package/lib/components/insertLink/index.d.ts +4 -0
  19. package/lib/components/insertLink/insertLink.vue.d.ts +6 -6
  20. package/lib/components/insertLink/props.d.ts +3 -3
  21. package/lib/components/insertMathformula/index.d.ts +4 -0
  22. package/lib/{plugins/mathformula → components}/insertMathformula/insertMathformula.vue.d.ts +3 -3
  23. package/lib/{plugins/mathformula → components}/insertMathformula/props.d.ts +2 -2
  24. package/lib/components/insertTable/index.d.ts +4 -0
  25. package/lib/components/insertTable/insertTable.vue.d.ts +3 -3
  26. package/lib/components/insertTable/props.d.ts +2 -2
  27. package/lib/components/insertVideo/index.d.ts +4 -0
  28. package/lib/components/insertVideo/insertVideo.vue.d.ts +3 -3
  29. package/lib/components/insertVideo/props.d.ts +1 -1
  30. package/lib/components/layer/index.d.ts +4 -0
  31. package/lib/components/layer/layer.vue.d.ts +10 -8
  32. package/lib/components/tooltip/index.d.ts +4 -0
  33. package/lib/components/tooltip/tooltip.vue.d.ts +6 -4
  34. package/lib/components/triangle/index.d.ts +4 -0
  35. package/lib/components/triangle/triangle.vue.d.ts +1 -1
  36. package/lib/components/updateLink/index.d.ts +4 -0
  37. package/lib/components/updateLink/props.d.ts +17 -0
  38. package/lib/components/updateLink/updateLink.vue.d.ts +38 -0
  39. package/lib/core/function.d.ts +113 -36
  40. package/lib/core/rule.d.ts +20 -0
  41. package/lib/core/tool.d.ts +36 -34
  42. package/lib/editify/editify.vue.d.ts +86 -53
  43. package/lib/editify/menu/index.d.ts +4 -0
  44. package/lib/{components → editify}/menu/menu.vue.d.ts +3 -4
  45. package/lib/{components → editify}/menu/props.d.ts +1 -1
  46. package/lib/editify/props.d.ts +3 -7
  47. package/lib/editify/toolbar/index.d.ts +4 -0
  48. package/lib/{components → editify}/toolbar/props.d.ts +2 -2
  49. package/lib/{components → editify}/toolbar/toolbar.vue.d.ts +53 -53
  50. package/lib/editify.es.js +8879 -7668
  51. package/lib/editify.umd.js +2 -2
  52. package/lib/feature/align.d.ts +32 -0
  53. package/lib/feature/attachment.d.ts +18 -0
  54. package/lib/feature/backColor.d.ts +32 -0
  55. package/lib/feature/bold.d.ts +32 -0
  56. package/lib/feature/code.d.ts +32 -0
  57. package/lib/feature/codeBlock.d.ts +32 -0
  58. package/lib/feature/fontFamily.d.ts +32 -0
  59. package/lib/feature/fontSize.d.ts +32 -0
  60. package/lib/feature/foreColor.d.ts +32 -0
  61. package/lib/feature/formatClear.d.ts +32 -0
  62. package/lib/feature/fullScreen.d.ts +18 -0
  63. package/lib/feature/heading.d.ts +32 -0
  64. package/lib/feature/image.d.ts +32 -0
  65. package/lib/feature/indent.d.ts +18 -0
  66. package/lib/feature/infoBlock.d.ts +18 -0
  67. package/lib/feature/italic.d.ts +32 -0
  68. package/lib/feature/lineHeight.d.ts +32 -0
  69. package/lib/feature/link.d.ts +26 -0
  70. package/lib/feature/mathformula.d.ts +22 -0
  71. package/lib/feature/orderList.d.ts +32 -0
  72. package/lib/feature/panel.d.ts +18 -0
  73. package/lib/feature/quote.d.ts +18 -0
  74. package/lib/feature/redo.d.ts +18 -0
  75. package/lib/feature/separator.d.ts +18 -0
  76. package/lib/feature/sourceView.d.ts +18 -0
  77. package/lib/feature/strikethrough.d.ts +32 -0
  78. package/lib/feature/sub.d.ts +32 -0
  79. package/lib/feature/super.d.ts +32 -0
  80. package/lib/feature/table.d.ts +32 -0
  81. package/lib/feature/task.d.ts +32 -0
  82. package/lib/feature/underline.d.ts +32 -0
  83. package/lib/feature/undo.d.ts +18 -0
  84. package/lib/feature/unorderList.d.ts +32 -0
  85. package/lib/feature/video.d.ts +38 -0
  86. package/lib/index.d.ts +104 -69
  87. package/package.json +5 -5
  88. package/src/components/button/button.vue +21 -24
  89. package/src/components/button/index.ts +5 -0
  90. package/src/components/button/props.ts +14 -1
  91. package/src/components/checkbox/checkbox.vue +1 -1
  92. package/src/components/checkbox/index.ts +5 -0
  93. package/src/components/checkbox/props.ts +1 -1
  94. package/src/components/colors/colors.vue +3 -3
  95. package/src/components/colors/index.ts +5 -0
  96. package/src/components/colors/props.ts +2 -2
  97. package/src/components/icon/index.ts +5 -0
  98. package/src/components/insertAttachment/index.ts +5 -0
  99. package/src/{plugins/attachment → components}/insertAttachment/insertAttachment.vue +4 -2
  100. package/src/{plugins/attachment → components}/insertAttachment/props.ts +1 -1
  101. package/src/components/insertImage/index.ts +5 -0
  102. package/src/components/insertImage/insertImage.vue +5 -5
  103. package/src/components/insertImage/props.ts +1 -1
  104. package/src/components/insertLink/index.ts +5 -0
  105. package/src/components/insertLink/insertLink.vue +10 -10
  106. package/src/components/insertLink/props.ts +3 -3
  107. package/src/components/insertMathformula/index.ts +5 -0
  108. package/src/{plugins/mathformula → components}/insertMathformula/props.ts +2 -2
  109. package/src/components/insertTable/index.ts +5 -0
  110. package/src/components/insertTable/props.ts +2 -2
  111. package/src/components/insertVideo/index.ts +5 -0
  112. package/src/components/insertVideo/insertVideo.vue +2 -2
  113. package/src/components/insertVideo/props.ts +1 -1
  114. package/src/components/layer/index.ts +5 -0
  115. package/src/components/layer/layer.vue +42 -4
  116. package/src/components/tooltip/index.ts +5 -0
  117. package/src/components/tooltip/tooltip.vue +1 -1
  118. package/src/components/triangle/index.ts +5 -0
  119. package/src/components/triangle/triangle.vue +1 -1
  120. package/src/components/updateLink/index.ts +5 -0
  121. package/src/components/updateLink/props.ts +21 -0
  122. package/src/components/{toolbar/toolbar.less → updateLink/updateLink.less} +4 -20
  123. package/src/components/updateLink/updateLink.vue +74 -0
  124. package/src/core/function.ts +289 -97
  125. package/src/core/rule.ts +96 -7
  126. package/src/core/tool.ts +234 -78
  127. package/src/editify/editify.less +2 -0
  128. package/src/editify/editify.vue +182 -185
  129. package/src/editify/menu/index.ts +5 -0
  130. package/src/editify/menu/menu.vue +215 -0
  131. package/src/{components → editify}/menu/props.ts +1 -1
  132. package/src/editify/props.ts +7 -11
  133. package/src/editify/toolbar/index.ts +5 -0
  134. package/src/{components → editify}/toolbar/props.ts +1 -1
  135. package/src/editify/toolbar/toolbar.less +10 -0
  136. package/src/editify/toolbar/toolbar.vue +103 -0
  137. package/src/feature/align.ts +128 -0
  138. package/src/feature/attachment.ts +109 -0
  139. package/src/feature/backColor.ts +171 -0
  140. package/src/feature/bold.ts +136 -0
  141. package/src/feature/code.ts +136 -0
  142. package/src/feature/codeBlock.ts +204 -0
  143. package/src/feature/fontFamily.ts +140 -0
  144. package/src/feature/fontSize.ts +142 -0
  145. package/src/feature/foreColor.ts +173 -0
  146. package/src/feature/formatClear.ts +118 -0
  147. package/src/feature/fullScreen.ts +57 -0
  148. package/src/feature/heading.ts +154 -0
  149. package/src/feature/image.ts +225 -0
  150. package/src/feature/indent.ts +73 -0
  151. package/src/feature/infoBlock.ts +94 -0
  152. package/src/feature/italic.ts +136 -0
  153. package/src/feature/lineHeight.ts +165 -0
  154. package/src/feature/link.ts +149 -0
  155. package/src/feature/mathformula.ts +147 -0
  156. package/src/feature/orderList.ts +116 -0
  157. package/src/feature/panel.ts +108 -0
  158. package/src/feature/quote.ts +61 -0
  159. package/src/feature/redo.ts +56 -0
  160. package/src/feature/separator.ts +62 -0
  161. package/src/feature/sourceView.ts +59 -0
  162. package/src/feature/strikethrough.ts +136 -0
  163. package/src/feature/sub.ts +136 -0
  164. package/src/feature/super.ts +136 -0
  165. package/src/feature/table.ts +994 -0
  166. package/src/feature/task.ts +116 -0
  167. package/src/feature/underline.ts +136 -0
  168. package/src/feature/undo.ts +56 -0
  169. package/src/feature/unorderList.ts +116 -0
  170. package/src/feature/video.ts +339 -0
  171. package/src/hljs/index.ts +1 -1
  172. package/src/index.ts +69 -21
  173. package/src/locale/en_US.ts +3 -3
  174. package/src/locale/zh_CN.ts +3 -3
  175. package/lib/plugins/attachment/index.d.ts +0 -37
  176. package/lib/plugins/infoBlock/index.d.ts +0 -55
  177. package/lib/plugins/mathformula/index.d.ts +0 -49
  178. package/lib/plugins/panel/index.d.ts +0 -48
  179. package/src/components/menu/menu.vue +0 -1655
  180. package/src/components/toolbar/toolbar.vue +0 -1677
  181. package/src/plugins/attachment/index.ts +0 -237
  182. package/src/plugins/infoBlock/index.ts +0 -238
  183. package/src/plugins/mathformula/index.ts +0 -295
  184. package/src/plugins/panel/index.ts +0 -228
  185. package/tsconfig.json +0 -31
  186. package/tsconfig.node.json +0 -11
  187. /package/src/{plugins/attachment → components}/insertAttachment/insertAttachment.less +0 -0
  188. /package/src/{plugins/mathformula → components}/insertMathformula/insertMathformula.less +0 -0
  189. /package/src/{plugins/mathformula → components}/insertMathformula/insertMathformula.vue +0 -0
  190. /package/src/{components → editify}/menu/menu.less +0 -0
@@ -1,6 +1,6 @@
1
1
  declare const _default: import('vue').DefineComponent<{
2
2
  color: {
3
- type: import('vue').PropType<string | null>;
3
+ type: StringConstructor;
4
4
  default: string;
5
5
  };
6
6
  accept: {
@@ -36,7 +36,7 @@ declare const _default: import('vue').DefineComponent<{
36
36
  change: (...args: any[]) => void;
37
37
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
38
38
  color: {
39
- type: import('vue').PropType<string | null>;
39
+ type: StringConstructor;
40
40
  default: string;
41
41
  };
42
42
  accept: {
@@ -71,7 +71,7 @@ declare const _default: import('vue').DefineComponent<{
71
71
  onChange?: ((...args: any[]) => any) | undefined;
72
72
  onInsert?: ((...args: any[]) => any) | undefined;
73
73
  }, {
74
- color: string | null;
74
+ color: string;
75
75
  allowedFileType: string[];
76
76
  multiple: boolean;
77
77
  maxSize: number;
@@ -3,7 +3,7 @@ import { ExtractPublicPropTypes, PropType } from 'vue';
3
3
  export type InsertAttachmentUploadErrorType = 'suffixError' | 'maxSizeError' | 'minSizeError';
4
4
  export declare const InsertAttachmentProps: {
5
5
  color: {
6
- type: PropType<string | null>;
6
+ type: StringConstructor;
7
7
  default: string;
8
8
  };
9
9
  accept: {
@@ -0,0 +1,4 @@
1
+ import { default as InsertImage } from './insertImage.vue';
2
+
3
+ export type * from './props';
4
+ export { InsertImage };
@@ -1,6 +1,6 @@
1
1
  declare const _default: import('vue').DefineComponent<{
2
2
  color: {
3
- type: import('vue').PropType<string | null>;
3
+ type: StringConstructor;
4
4
  default: string;
5
5
  };
6
6
  allowedFileType: {
@@ -32,7 +32,7 @@ declare const _default: import('vue').DefineComponent<{
32
32
  change: (...args: any[]) => void;
33
33
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
34
34
  color: {
35
- type: import('vue').PropType<string | null>;
35
+ type: StringConstructor;
36
36
  default: string;
37
37
  };
38
38
  allowedFileType: {
@@ -63,7 +63,7 @@ declare const _default: import('vue').DefineComponent<{
63
63
  onChange?: ((...args: any[]) => any) | undefined;
64
64
  onInsert?: ((...args: any[]) => any) | undefined;
65
65
  }, {
66
- color: string | null;
66
+ color: string;
67
67
  allowedFileType: string[];
68
68
  multiple: boolean;
69
69
  maxSize: number;
@@ -3,7 +3,7 @@ import { ExtractPublicPropTypes, PropType } from 'vue';
3
3
  export type InsertImageUploadErrorType = 'suffixError' | 'maxSizeError' | 'minSizeError';
4
4
  export declare const InsertImageProps: {
5
5
  color: {
6
- type: PropType<string | null>;
6
+ type: StringConstructor;
7
7
  default: string;
8
8
  };
9
9
  allowedFileType: {
@@ -0,0 +1,4 @@
1
+ import { default as InsertLink } from './insertLink.vue';
2
+
3
+ export type * from './props';
4
+ export { InsertLink };
@@ -1,9 +1,9 @@
1
1
  declare const _default: import('vue').DefineComponent<{
2
2
  color: {
3
- type: import('vue').PropType<string | null>;
3
+ type: StringConstructor;
4
4
  default: string;
5
5
  };
6
- text: {
6
+ presetText: {
7
7
  type: StringConstructor;
8
8
  default: string;
9
9
  };
@@ -11,17 +11,17 @@ declare const _default: import('vue').DefineComponent<{
11
11
  insert: (...args: any[]) => void;
12
12
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
13
13
  color: {
14
- type: import('vue').PropType<string | null>;
14
+ type: StringConstructor;
15
15
  default: string;
16
16
  };
17
- text: {
17
+ presetText: {
18
18
  type: StringConstructor;
19
19
  default: string;
20
20
  };
21
21
  }>> & {
22
22
  onInsert?: ((...args: any[]) => any) | undefined;
23
23
  }, {
24
- color: string | null;
25
- text: string;
24
+ color: string;
25
+ presetText: string;
26
26
  }, {}>;
27
27
  export default _default;
@@ -1,11 +1,11 @@
1
- import { ExtractPublicPropTypes, PropType } from 'vue';
1
+ import { ExtractPublicPropTypes } from 'vue';
2
2
 
3
3
  export declare const InsertLinkProps: {
4
4
  color: {
5
- type: PropType<string | null>;
5
+ type: StringConstructor;
6
6
  default: string;
7
7
  };
8
- text: {
8
+ presetText: {
9
9
  type: StringConstructor;
10
10
  default: string;
11
11
  };
@@ -0,0 +1,4 @@
1
+ import { default as InsertMathformula } from './insertMathformula.vue';
2
+
3
+ export type * from './props';
4
+ export { InsertMathformula };
@@ -1,6 +1,6 @@
1
1
  declare const _default: import('vue').DefineComponent<{
2
2
  color: {
3
- type: import('vue').PropType<string | null>;
3
+ type: StringConstructor;
4
4
  default: string;
5
5
  };
6
6
  defaultLaTexContent: {
@@ -11,7 +11,7 @@ declare const _default: import('vue').DefineComponent<{
11
11
  insert: (...args: any[]) => void;
12
12
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
13
13
  color: {
14
- type: import('vue').PropType<string | null>;
14
+ type: StringConstructor;
15
15
  default: string;
16
16
  };
17
17
  defaultLaTexContent: {
@@ -21,7 +21,7 @@ declare const _default: import('vue').DefineComponent<{
21
21
  }>> & {
22
22
  onInsert?: ((...args: any[]) => any) | undefined;
23
23
  }, {
24
- color: string | null;
24
+ color: string;
25
25
  defaultLaTexContent: string;
26
26
  }, {}>;
27
27
  export default _default;
@@ -1,8 +1,8 @@
1
- import { ExtractPublicPropTypes, PropType } from 'vue';
1
+ import { ExtractPublicPropTypes } from 'vue';
2
2
 
3
3
  export declare const InsertMathformulaProps: {
4
4
  color: {
5
- type: PropType<string | null>;
5
+ type: StringConstructor;
6
6
  default: string;
7
7
  };
8
8
  defaultLaTexContent: {
@@ -0,0 +1,4 @@
1
+ import { default as InsertTable } from './insertTable.vue';
2
+
3
+ export type * from './props';
4
+ export { InsertTable };
@@ -1,6 +1,6 @@
1
1
  declare const _default: import('vue').DefineComponent<{
2
2
  color: {
3
- type: import('vue').PropType<string | null>;
3
+ type: StringConstructor;
4
4
  default: string;
5
5
  };
6
6
  maxRows: {
@@ -15,7 +15,7 @@ declare const _default: import('vue').DefineComponent<{
15
15
  insert: (...args: any[]) => void;
16
16
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
17
17
  color: {
18
- type: import('vue').PropType<string | null>;
18
+ type: StringConstructor;
19
19
  default: string;
20
20
  };
21
21
  maxRows: {
@@ -29,7 +29,7 @@ declare const _default: import('vue').DefineComponent<{
29
29
  }>> & {
30
30
  onInsert?: ((...args: any[]) => any) | undefined;
31
31
  }, {
32
- color: string | null;
32
+ color: string;
33
33
  maxRows: number;
34
34
  maxColumns: number;
35
35
  }, {}>;
@@ -1,4 +1,4 @@
1
- import { ExtractPublicPropTypes, PropType } from 'vue';
1
+ import { ExtractPublicPropTypes } from 'vue';
2
2
 
3
3
  export type InsertTableGridType = {
4
4
  x: number;
@@ -7,7 +7,7 @@ export type InsertTableGridType = {
7
7
  };
8
8
  export declare const InsertTableProps: {
9
9
  color: {
10
- type: PropType<string | null>;
10
+ type: StringConstructor;
11
11
  default: string;
12
12
  };
13
13
  maxRows: {
@@ -0,0 +1,4 @@
1
+ import { default as InsertVideo } from './insertVideo.vue';
2
+
3
+ export type * from './props';
4
+ export { InsertVideo };
@@ -1,6 +1,6 @@
1
1
  declare const _default: import('vue').DefineComponent<{
2
2
  color: {
3
- type: import('vue').PropType<string | null>;
3
+ type: StringConstructor;
4
4
  default: string;
5
5
  };
6
6
  allowedFileType: {
@@ -32,7 +32,7 @@ declare const _default: import('vue').DefineComponent<{
32
32
  change: (...args: any[]) => void;
33
33
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
34
34
  color: {
35
- type: import('vue').PropType<string | null>;
35
+ type: StringConstructor;
36
36
  default: string;
37
37
  };
38
38
  allowedFileType: {
@@ -63,7 +63,7 @@ declare const _default: import('vue').DefineComponent<{
63
63
  onChange?: ((...args: any[]) => any) | undefined;
64
64
  onInsert?: ((...args: any[]) => any) | undefined;
65
65
  }, {
66
- color: string | null;
66
+ color: string;
67
67
  allowedFileType: string[];
68
68
  multiple: boolean;
69
69
  maxSize: number;
@@ -3,7 +3,7 @@ import { ExtractPublicPropTypes, PropType } from 'vue';
3
3
  export type InsertVideoUploadErrorType = 'suffixError' | 'maxSizeError' | 'minSizeError';
4
4
  export declare const InsertVideoProps: {
5
5
  color: {
6
- type: PropType<string | null>;
6
+ type: StringConstructor;
7
7
  default: string;
8
8
  };
9
9
  allowedFileType: {
@@ -0,0 +1,4 @@
1
+ import { default as Layer } from './layer.vue';
2
+
3
+ export type * from './props';
4
+ export { Layer };
@@ -1,6 +1,9 @@
1
1
  import { LayerPlacementType } from './props';
2
2
 
3
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
3
+ declare function __VLS_template(): {
4
+ default?(_: {}): any;
5
+ };
6
+ declare const __VLS_component: import('vue').DefineComponent<{
4
7
  modelValue: {
5
8
  type: BooleanConstructor;
6
9
  default: boolean;
@@ -59,10 +62,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
59
62
  setPosition: () => void;
60
63
  elRef: import('vue').Ref<HTMLElement | null>;
61
64
  }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
65
+ hidden: (...args: any[]) => void;
62
66
  "update:modelValue": (...args: any[]) => void;
63
67
  show: (...args: any[]) => void;
64
68
  shown: (...args: any[]) => void;
65
- hidden: (...args: any[]) => void;
66
69
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
67
70
  modelValue: {
68
71
  type: BooleanConstructor;
@@ -119,27 +122,26 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
119
122
  default: () => never[];
120
123
  };
121
124
  }>> & {
125
+ onHidden?: ((...args: any[]) => any) | undefined;
122
126
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
123
127
  onShow?: ((...args: any[]) => any) | undefined;
124
128
  onShown?: ((...args: any[]) => any) | undefined;
125
- onHidden?: ((...args: any[]) => any) | undefined;
126
129
  }, {
127
- placement: LayerPlacementType;
128
130
  color: string;
129
- background: string;
130
131
  zIndex: number;
131
132
  modelValue: boolean;
132
133
  node: string | HTMLElement | null;
133
134
  scrollNode: string | HTMLElement | null;
134
135
  border: boolean;
135
136
  borderColor: string;
137
+ background: string;
138
+ placement: LayerPlacementType;
136
139
  showTriangle: boolean;
137
140
  animation: import('./props').LayerAnimationType;
138
141
  useRange: boolean;
139
142
  insideElements: HTMLElement[];
140
- }, {}>, {
141
- default?(_: {}): any;
142
- }>;
143
+ }, {}>;
144
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
143
145
  export default _default;
144
146
  type __VLS_WithTemplateSlots<T, S> = T & {
145
147
  new (): {
@@ -0,0 +1,4 @@
1
+ import { default as Tooltip } from './tooltip.vue';
2
+
3
+ export type * from './props';
4
+ export { Tooltip };
@@ -1,4 +1,7 @@
1
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
1
+ declare function __VLS_template(): {
2
+ default?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<{
2
5
  content: {
3
6
  type: StringConstructor;
4
7
  default: string;
@@ -37,9 +40,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
37
40
  zIndex: number;
38
41
  content: string;
39
42
  block: boolean;
40
- }, {}>, {
41
- default?(_: {}): any;
42
- }>;
43
+ }, {}>;
44
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
43
45
  export default _default;
44
46
  type __VLS_WithTemplateSlots<T, S> = T & {
45
47
  new (): {
@@ -0,0 +1,4 @@
1
+ import { default as Triangle } from './triangle.vue';
2
+
3
+ export type * from './props';
4
+ export { Triangle };
@@ -27,8 +27,8 @@ declare const _default: import('vue').DefineComponent<{
27
27
  default: null;
28
28
  };
29
29
  }>>, {
30
- placement: import('./props').TrianglePlacementType;
31
30
  color: string;
32
31
  background: string;
32
+ placement: import('./props').TrianglePlacementType;
33
33
  }, {}>;
34
34
  export default _default;
@@ -0,0 +1,4 @@
1
+ import { default as UpdateLink } from './updateLink.vue';
2
+
3
+ export type * from './props';
4
+ export { UpdateLink };
@@ -0,0 +1,17 @@
1
+ import { ExtractPublicPropTypes } from 'vue';
2
+
3
+ export declare const UpdateLinkProps: {
4
+ color: {
5
+ type: StringConstructor;
6
+ default: string;
7
+ };
8
+ presetUrl: {
9
+ type: StringConstructor;
10
+ default: string;
11
+ };
12
+ presetNewOpen: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
16
+ };
17
+ export type UpdateLinkPropsType = ExtractPublicPropTypes<typeof UpdateLinkProps>;
@@ -0,0 +1,38 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ color: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ presetUrl: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ presetNewOpen: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
15
+ remove: (...args: any[]) => void;
16
+ modify: (...args: any[]) => void;
17
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
18
+ color: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ presetUrl: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ presetNewOpen: {
27
+ type: BooleanConstructor;
28
+ default: boolean;
29
+ };
30
+ }>> & {
31
+ onRemove?: ((...args: any[]) => any) | undefined;
32
+ onModify?: ((...args: any[]) => any) | undefined;
33
+ }, {
34
+ color: string;
35
+ presetUrl: string;
36
+ presetNewOpen: boolean;
37
+ }, {}>;
38
+ export default _default;