@deskhero/dh_ui 2.50.0 → 2.51.0

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 (106) hide show
  1. package/dist/adapters/editorjs/EditorjsTransformer.d.ts +3 -0
  2. package/dist/adapters/editorjs/EditorjsView.vue.d.ts +7 -7
  3. package/dist/adapters/tiptap/SimpleTemplate.vue.d.ts +29 -0
  4. package/dist/adapters/tiptap/TiptapTransformer.d.ts +3 -0
  5. package/dist/adapters/tiptap/TiptapView.vue.d.ts +73 -0
  6. package/dist/adapters/tiptap/components/BlockquoteButton.vue.d.ts +2 -0
  7. package/dist/adapters/tiptap/components/CodeblockButton.vue.d.ts +2 -0
  8. package/dist/adapters/tiptap/components/ColorHighlightDropdown.vue.d.ts +2 -0
  9. package/dist/adapters/tiptap/components/Dropdown.vue.d.ts +35 -0
  10. package/dist/adapters/tiptap/components/FileUploadButton.vue.d.ts +11 -0
  11. package/dist/adapters/tiptap/components/HeadingDropdown.vue.d.ts +2 -0
  12. package/dist/adapters/tiptap/components/ImageUploadButton.vue.d.ts +11 -0
  13. package/dist/adapters/tiptap/components/Input.vue.d.ts +16 -0
  14. package/dist/adapters/tiptap/components/LinkDropdown.vue.d.ts +2 -0
  15. package/dist/adapters/tiptap/components/ListDropdown.vue.d.ts +2 -0
  16. package/dist/adapters/tiptap/components/MarkButton.vue.d.ts +12 -0
  17. package/dist/adapters/tiptap/components/Separator.vue.d.ts +33 -0
  18. package/dist/adapters/tiptap/components/TableButton.vue.d.ts +2 -0
  19. package/dist/adapters/tiptap/components/TextAlignButton.vue.d.ts +3 -3
  20. package/dist/adapters/tiptap/components/TextAlignDropdown.vue.d.ts +2 -0
  21. package/dist/adapters/tiptap/components/Toolbar.vue.d.ts +9 -0
  22. package/dist/adapters/tiptap/components/ToolbarGroup.vue.d.ts +3 -3
  23. package/dist/adapters/tiptap/components/button/Button.vue.d.ts +41 -0
  24. package/dist/adapters/tiptap/components/button/ButtonGroup.vue.d.ts +3 -3
  25. package/dist/adapters/tiptap/components/tiptap-icons/AlignCenterIcon.vue.d.ts +2 -0
  26. package/dist/adapters/tiptap/components/tiptap-icons/AlignJustifyIcon.vue.d.ts +2 -0
  27. package/dist/adapters/tiptap/components/tiptap-icons/AlignLeftIcon.vue.d.ts +2 -0
  28. package/dist/adapters/tiptap/components/tiptap-icons/AlignRightIcon.vue.d.ts +2 -0
  29. package/dist/adapters/tiptap/components/tiptap-icons/BanIcon.vue.d.ts +2 -0
  30. package/dist/adapters/tiptap/components/tiptap-icons/BlockquoteIcon.vue.d.ts +2 -0
  31. package/dist/adapters/tiptap/components/tiptap-icons/BoldIcon.vue.d.ts +2 -0
  32. package/dist/adapters/tiptap/components/tiptap-icons/ChevronDownIcon.vue.d.ts +2 -0
  33. package/dist/adapters/tiptap/components/tiptap-icons/CodeIcon.vue.d.ts +2 -0
  34. package/dist/adapters/tiptap/components/tiptap-icons/CodeblockIcon.vue.d.ts +2 -0
  35. package/dist/adapters/tiptap/components/tiptap-icons/CornerDownLeftIcon.vue.d.ts +2 -0
  36. package/dist/adapters/tiptap/components/tiptap-icons/ExternalLinkIcon.vue.d.ts +2 -0
  37. package/dist/adapters/tiptap/components/tiptap-icons/FileIcon.vue.d.ts +2 -0
  38. package/dist/adapters/tiptap/components/tiptap-icons/HeadingFiveIcon.vue.d.ts +1 -1
  39. package/dist/adapters/tiptap/components/tiptap-icons/HeadingFourIcon.vue.d.ts +2 -0
  40. package/dist/adapters/tiptap/components/tiptap-icons/HeadingIcon.vue.d.ts +2 -0
  41. package/dist/adapters/tiptap/components/tiptap-icons/HeadingOneIcon.vue.d.ts +2 -0
  42. package/dist/adapters/tiptap/components/tiptap-icons/HeadingSixIcon.vue.d.ts +1 -1
  43. package/dist/adapters/tiptap/components/tiptap-icons/HeadingThreeIcon.vue.d.ts +2 -0
  44. package/dist/adapters/tiptap/components/tiptap-icons/HeadingTwoIcon.vue.d.ts +2 -0
  45. package/dist/adapters/tiptap/components/tiptap-icons/HighlighterIcon.vue.d.ts +2 -0
  46. package/dist/adapters/tiptap/components/tiptap-icons/ImagePlusIcon.vue.d.ts +2 -0
  47. package/dist/adapters/tiptap/components/tiptap-icons/ItalicIcon.vue.d.ts +2 -0
  48. package/dist/adapters/tiptap/components/tiptap-icons/LinkIcon.vue.d.ts +2 -0
  49. package/dist/adapters/tiptap/components/tiptap-icons/ListIcon.vue.d.ts +2 -0
  50. package/dist/adapters/tiptap/components/tiptap-icons/ListOrderedIcon.vue.d.ts +2 -0
  51. package/dist/adapters/tiptap/components/tiptap-icons/ListTodoIcon.vue.d.ts +2 -0
  52. package/dist/adapters/tiptap/components/tiptap-icons/RedoIcon.vue.d.ts +2 -0
  53. package/dist/adapters/tiptap/components/tiptap-icons/StrikeIcon.vue.d.ts +2 -0
  54. package/dist/adapters/tiptap/components/tiptap-icons/SubscriptIcon.vue.d.ts +2 -0
  55. package/dist/adapters/tiptap/components/tiptap-icons/SuperscriptIcon.vue.d.ts +2 -0
  56. package/dist/adapters/tiptap/components/tiptap-icons/TableIcon.vue.d.ts +2 -0
  57. package/dist/adapters/tiptap/components/tiptap-icons/TrashIcon.vue.d.ts +2 -0
  58. package/dist/adapters/tiptap/components/tiptap-icons/UnderlineIcon.vue.d.ts +2 -0
  59. package/dist/adapters/tiptap/components/tiptap-icons/UndoIcon.vue.d.ts +2 -0
  60. package/dist/adapters/tiptap/components/undo-redo-button/UndoRedoButton.vue.d.ts +30 -0
  61. package/dist/adapters/tiptap/composables/useScrollDetector.d.ts +8 -0
  62. package/dist/adapters/tiptap/extensions/attachment.d.ts +2 -0
  63. package/dist/adapters/tiptap/extensions/file-upload-node/file-upload-node-extension.d.ts +80 -0
  64. package/dist/adapters/tiptap/extensions/file-upload-node/index.d.ts +1 -0
  65. package/dist/adapters/tiptap/extensions/image-resize/constants/index.d.ts +22 -0
  66. package/dist/adapters/tiptap/extensions/image-resize/controllers/image-node-view.d.ts +32 -0
  67. package/dist/adapters/tiptap/extensions/image-resize/controllers/position-controller.d.ts +12 -0
  68. package/dist/adapters/tiptap/extensions/image-resize/controllers/resize-controller.d.ts +12 -0
  69. package/dist/adapters/tiptap/extensions/image-resize/image-resize.d.ts +1 -0
  70. package/dist/adapters/tiptap/extensions/image-resize/index.d.ts +3 -0
  71. package/dist/adapters/tiptap/extensions/image-resize/types/index.d.ts +16 -0
  72. package/dist/adapters/tiptap/extensions/image-resize/utils/attribute-parser.d.ts +4 -0
  73. package/dist/adapters/tiptap/extensions/image-resize/utils/index.d.ts +7 -0
  74. package/dist/adapters/tiptap/extensions/image-resize/utils/style-manager.d.ts +6 -0
  75. package/dist/adapters/tiptap/extensions/signature.d.ts +2 -0
  76. package/dist/adapters/tiptap/extensions/table/index.d.ts +2 -0
  77. package/dist/adapters/tiptap/utils/tiptap-utils.d.ts +122 -0
  78. package/dist/components/ColorPicker.vue.d.ts +5 -5
  79. package/dist/components/IconWithText.vue.d.ts +104 -6
  80. package/dist/components/ImageCropper.vue.d.ts +6 -6
  81. package/dist/components/InputList.vue.d.ts +23 -0
  82. package/dist/components/InputWithList/DropdownList.vue.d.ts +5 -5
  83. package/dist/components/InputWithList/MultipleInput.vue.d.ts +5 -5
  84. package/dist/components/InputWithList/SingleInput.vue.d.ts +5 -5
  85. package/dist/components/InputWithList/TagItem.vue.d.ts +5 -5
  86. package/dist/components/InputWithList.vue.d.ts +7 -7
  87. package/dist/components/LineChart.vue.d.ts +1 -1
  88. package/dist/components/Modal.vue.d.ts +216 -0
  89. package/dist/components/Notification.vue.d.ts +293 -0
  90. package/dist/components/PasswordField.vue.d.ts +62 -0
  91. package/dist/components/RadioBox.vue.d.ts +9 -0
  92. package/dist/components/RadioBoxGroup.vue.d.ts +8 -0
  93. package/dist/components/SearchInput.vue.d.ts +36 -0
  94. package/dist/components/Stepper.vue.d.ts +23 -0
  95. package/dist/components/Tag.vue.d.ts +48 -0
  96. package/dist/components/Tags.vue.d.ts +52 -6
  97. package/dist/components/TextEditor.vue.d.ts +81 -0
  98. package/dist/components/TextEditorLegacy.vue.d.ts +1 -1
  99. package/dist/components/VerificationCode.vue.d.ts +45 -0
  100. package/dist/dh_ui.es.js +19419 -20347
  101. package/dist/dh_ui.umd.js +138 -138
  102. package/dist/factories/EditorFactory.d.ts +19 -0
  103. package/dist/models/EditorTransformer.d.ts +5 -0
  104. package/dist/models/Tag.model.d.ts +7 -0
  105. package/dist/style.css +1 -1
  106. package/package.json +9 -3
@@ -0,0 +1,3 @@
1
+ import { SysContentRich } from "@/models/Editor.model";
2
+ import { EditorTransformer } from "@/models/EditorTransformer";
3
+ export declare const EditorjsTransformer: EditorTransformer<SysContentRich>;
@@ -1,6 +1,6 @@
1
1
  import type { SysContentRich, SysAttachment } from "@/models/Editor.model";
2
2
  import { FileRegistration, UploadEventPayload } from "@/models/UploadedFile.model";
3
- declare const _default: import("vue").DefineComponent<{
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
4
  data: {
5
5
  type: import("vue").PropType<SysContentRich>;
6
6
  required: true;
@@ -26,16 +26,16 @@ declare const _default: import("vue").DefineComponent<{
26
26
  suggestedReply: {
27
27
  type: import("vue").PropType<SysContentRich>;
28
28
  };
29
- }, {
29
+ }>, {
30
30
  acceptSuggestion: () => void;
31
31
  isEmpty: () => Promise<boolean>;
32
32
  registerFiles: (payload: FileRegistration) => void;
33
33
  insertSignature: (payload: SysContentRich, att: SysAttachment[]) => void;
34
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
34
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
35
35
  "update:data": (value: SysContentRich) => void;
36
36
  "update:attachments": (value: SysAttachment[]) => void;
37
37
  "file-upload": (val: UploadEventPayload) => void;
38
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
38
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
39
39
  data: {
40
40
  type: import("vue").PropType<SysContentRich>;
41
41
  required: true;
@@ -61,12 +61,12 @@ declare const _default: import("vue").DefineComponent<{
61
61
  suggestedReply: {
62
62
  type: import("vue").PropType<SysContentRich>;
63
63
  };
64
- }>> & {
64
+ }>> & Readonly<{
65
65
  "onFile-upload"?: ((val: UploadEventPayload) => any) | undefined;
66
66
  "onUpdate:data"?: ((value: SysContentRich) => any) | undefined;
67
67
  "onUpdate:attachments"?: ((value: SysAttachment[]) => any) | undefined;
68
- }, {
68
+ }>, {
69
69
  readOnly: boolean;
70
70
  toolbarPosition: "left" | "right";
71
- }, {}>;
71
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
72
72
  export default _default;
@@ -0,0 +1,29 @@
1
+ import type { EditorI18n } from "@/models/Editor.model";
2
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ readOnly: {
4
+ type: import("vue").PropType<boolean>;
5
+ };
6
+ isOverlayVisible: {
7
+ type: import("vue").PropType<boolean>;
8
+ };
9
+ i18n: {
10
+ type: import("vue").PropType<EditorI18n>;
11
+ };
12
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
+ "accept-suggestion": () => void;
14
+ "dismiss-suggestion": () => void;
15
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
16
+ readOnly: {
17
+ type: import("vue").PropType<boolean>;
18
+ };
19
+ isOverlayVisible: {
20
+ type: import("vue").PropType<boolean>;
21
+ };
22
+ i18n: {
23
+ type: import("vue").PropType<EditorI18n>;
24
+ };
25
+ }>> & Readonly<{
26
+ "onAccept-suggestion"?: (() => any) | undefined;
27
+ "onDismiss-suggestion"?: (() => any) | undefined;
28
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
29
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import { EditorTransformer } from "@/models/EditorTransformer";
2
+ import type { JSONContent } from "@tiptap/vue-3";
3
+ export declare const TiptapTransformer: EditorTransformer<JSONContent>;
@@ -0,0 +1,73 @@
1
+ import { SysAttachment } from "@/models/Editor.model";
2
+ import { FileRegistration, UploadEventPayload } from "@/models/UploadedFile.model";
3
+ import type { JSONContent } from "@tiptap/vue-3";
4
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
5
+ data: {
6
+ type: import("vue").PropType<JSONContent>;
7
+ required: true;
8
+ };
9
+ i18n: {
10
+ type: import("vue").PropType<import("@/models/Editor.model").EditorI18n>;
11
+ };
12
+ readOnly: {
13
+ type: import("vue").PropType<boolean>;
14
+ default: boolean;
15
+ };
16
+ fileUpload: {
17
+ type: import("vue").PropType<(e: UploadEventPayload) => void>;
18
+ };
19
+ attachments: {
20
+ type: import("vue").PropType<SysAttachment[]>;
21
+ required: true;
22
+ };
23
+ toolbarPosition: {
24
+ type: import("vue").PropType<"left" | "right">;
25
+ default: string;
26
+ };
27
+ suggestedReply: {
28
+ type: import("vue").PropType<JSONContent>;
29
+ };
30
+ }>, {
31
+ acceptSuggestion: () => void;
32
+ registerFiles: (payload: FileRegistration) => void;
33
+ isEmpty: () => boolean;
34
+ insertSignature: (payload: JSONContent, att: SysAttachment[]) => void;
35
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
36
+ "update:data": (value: JSONContent | JSONContent[] | undefined) => void;
37
+ "update:attachments": (value: SysAttachment[]) => void;
38
+ "file-upload": (val: UploadEventPayload) => void;
39
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
40
+ data: {
41
+ type: import("vue").PropType<JSONContent>;
42
+ required: true;
43
+ };
44
+ i18n: {
45
+ type: import("vue").PropType<import("@/models/Editor.model").EditorI18n>;
46
+ };
47
+ readOnly: {
48
+ type: import("vue").PropType<boolean>;
49
+ default: boolean;
50
+ };
51
+ fileUpload: {
52
+ type: import("vue").PropType<(e: UploadEventPayload) => void>;
53
+ };
54
+ attachments: {
55
+ type: import("vue").PropType<SysAttachment[]>;
56
+ required: true;
57
+ };
58
+ toolbarPosition: {
59
+ type: import("vue").PropType<"left" | "right">;
60
+ default: string;
61
+ };
62
+ suggestedReply: {
63
+ type: import("vue").PropType<JSONContent>;
64
+ };
65
+ }>> & Readonly<{
66
+ "onFile-upload"?: ((val: UploadEventPayload) => any) | undefined;
67
+ "onUpdate:data"?: ((value: JSONContent | JSONContent[] | undefined) => any) | undefined;
68
+ "onUpdate:attachments"?: ((value: SysAttachment[]) => any) | undefined;
69
+ }>, {
70
+ readOnly: boolean;
71
+ toolbarPosition: "left" | "right";
72
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
73
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,35 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ open: {
3
+ type: import("vue").PropType<boolean>;
4
+ default: boolean;
5
+ };
6
+ orientation: {
7
+ type: import("vue").PropType<"row" | "column">;
8
+ default: string;
9
+ };
10
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ open: {
12
+ type: import("vue").PropType<boolean>;
13
+ default: boolean;
14
+ };
15
+ orientation: {
16
+ type: import("vue").PropType<"row" | "column">;
17
+ default: string;
18
+ };
19
+ }>> & Readonly<{}>, {
20
+ open: boolean;
21
+ orientation: "row" | "column";
22
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
23
+ trigger?(_: {
24
+ isOpen: boolean;
25
+ }): any;
26
+ items?(_: {
27
+ close: () => boolean;
28
+ }): any;
29
+ }>;
30
+ export default _default;
31
+ type __VLS_WithTemplateSlots<T, S> = T & {
32
+ new (): {
33
+ $slots: S;
34
+ };
35
+ };
@@ -0,0 +1,11 @@
1
+ import type { EditorI18n } from "@/models/Editor.model";
2
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ i18n: {
4
+ type: import("vue").PropType<EditorI18n>;
5
+ };
6
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
7
+ i18n: {
8
+ type: import("vue").PropType<EditorI18n>;
9
+ };
10
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
11
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { EditorI18n } from "@/models/Editor.model";
2
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ i18n: {
4
+ type: import("vue").PropType<EditorI18n>;
5
+ };
6
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
7
+ i18n: {
8
+ type: import("vue").PropType<EditorI18n>;
9
+ };
10
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
11
+ export default _default;
@@ -0,0 +1,16 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ modelValue: {
3
+ type: import("vue").PropType<string>;
4
+ required: true;
5
+ };
6
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ "update:modelValue": (value: string) => void;
8
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
9
+ modelValue: {
10
+ type: import("vue").PropType<string>;
11
+ required: true;
12
+ };
13
+ }>> & Readonly<{
14
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
15
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
16
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,12 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ type: {
3
+ type: import("vue").PropType<"code" | "strike" | "underline" | "bold" | "italic" | "subscript" | "superscript">;
4
+ required: true;
5
+ };
6
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
7
+ type: {
8
+ type: import("vue").PropType<"code" | "strike" | "underline" | "bold" | "italic" | "subscript" | "superscript">;
9
+ required: true;
10
+ };
11
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
12
+ export default _default;
@@ -0,0 +1,33 @@
1
+ export type Orientation = "horizontal" | "vertical";
2
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ class: {
4
+ type: import("vue").PropType<string>;
5
+ default: string;
6
+ };
7
+ orientation: {
8
+ type: import("vue").PropType<Orientation>;
9
+ default: string;
10
+ };
11
+ decorative: {
12
+ type: import("vue").PropType<boolean>;
13
+ default: boolean;
14
+ };
15
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
16
+ class: {
17
+ type: import("vue").PropType<string>;
18
+ default: string;
19
+ };
20
+ orientation: {
21
+ type: import("vue").PropType<Orientation>;
22
+ default: string;
23
+ };
24
+ decorative: {
25
+ type: import("vue").PropType<boolean>;
26
+ default: boolean;
27
+ };
28
+ }>> & Readonly<{}>, {
29
+ class: string;
30
+ orientation: Orientation;
31
+ decorative: boolean;
32
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
33
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -1,12 +1,12 @@
1
- declare const _default: import("vue").DefineComponent<{
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
2
  align: {
3
3
  type: import("vue").PropType<"center" | "left" | "right" | "justify">;
4
4
  required: true;
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
  align: {
8
8
  type: import("vue").PropType<"center" | "left" | "right" | "justify">;
9
9
  required: true;
10
10
  };
11
- }>>, {}, {}>;
11
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
12
12
  export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,9 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -1,12 +1,12 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
2
  class: {
3
3
  type: import("vue").PropType<string>;
4
4
  };
5
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
5
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
6
6
  class: {
7
7
  type: import("vue").PropType<string>;
8
8
  };
9
- }>>, {}, {}>, {
9
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
10
10
  default?(_: {}): any;
11
11
  }>;
12
12
  export default _default;
@@ -0,0 +1,41 @@
1
+ export interface ButtonProps {
2
+ class?: string;
3
+ ariaLabel?: string;
4
+ type?: "button" | "submit" | "reset";
5
+ disabled?: boolean;
6
+ }
7
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
+ class: {
9
+ type: import("vue").PropType<string>;
10
+ };
11
+ ariaLabel: {
12
+ type: import("vue").PropType<string>;
13
+ };
14
+ type: {
15
+ type: import("vue").PropType<"button" | "reset" | "submit">;
16
+ };
17
+ disabled: {
18
+ type: import("vue").PropType<boolean>;
19
+ };
20
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
21
+ class: {
22
+ type: import("vue").PropType<string>;
23
+ };
24
+ ariaLabel: {
25
+ type: import("vue").PropType<string>;
26
+ };
27
+ type: {
28
+ type: import("vue").PropType<"button" | "reset" | "submit">;
29
+ };
30
+ disabled: {
31
+ type: import("vue").PropType<boolean>;
32
+ };
33
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
34
+ default?(_: {}): any;
35
+ }>;
36
+ export default _default;
37
+ type __VLS_WithTemplateSlots<T, S> = T & {
38
+ new (): {
39
+ $slots: S;
40
+ };
41
+ };
@@ -1,4 +1,4 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
2
  class: {
3
3
  type: import("vue").PropType<string>;
4
4
  };
@@ -8,7 +8,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
8
8
  role: {
9
9
  type: import("vue").PropType<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
  class: {
13
13
  type: import("vue").PropType<string>;
14
14
  };
@@ -18,7 +18,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
18
18
  role: {
19
19
  type: import("vue").PropType<string>;
20
20
  };
21
- }>>, {}, {}>, {
21
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
22
22
  default?(_: {}): any;
23
23
  }>;
24
24
  export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;