voiptime-components 1.21.79 → 1.21.80

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 (67) hide show
  1. package/dist/components/editor/VEditor.d.ts +34 -0
  2. package/dist/components/editor/VEditor.d.ts.map +1 -0
  3. package/dist/components/editor/constants.d.ts +12 -0
  4. package/dist/components/editor/constants.d.ts.map +1 -0
  5. package/dist/components/editor/helpers.d.ts +9 -0
  6. package/dist/components/editor/helpers.d.ts.map +1 -0
  7. package/dist/components/editor/types.d.ts +47 -0
  8. package/dist/components/editor/types.d.ts.map +1 -0
  9. package/dist/icons/editor/AlignCenterIcon.d.ts +4 -0
  10. package/dist/icons/editor/AlignCenterIcon.d.ts.map +1 -0
  11. package/dist/icons/editor/AlignJustifyIcon.d.ts +4 -0
  12. package/dist/icons/editor/AlignJustifyIcon.d.ts.map +1 -0
  13. package/dist/icons/editor/AlignLeftIcon.d.ts +4 -0
  14. package/dist/icons/editor/AlignLeftIcon.d.ts.map +1 -0
  15. package/dist/icons/editor/AlignRightIcon.d.ts +4 -0
  16. package/dist/icons/editor/AlignRightIcon.d.ts.map +1 -0
  17. package/dist/icons/editor/BlockquoteIcon.d.ts +4 -0
  18. package/dist/icons/editor/BlockquoteIcon.d.ts.map +1 -0
  19. package/dist/icons/editor/ClearFormatIcon.d.ts +4 -0
  20. package/dist/icons/editor/ClearFormatIcon.d.ts.map +1 -0
  21. package/dist/icons/editor/FontNameIcon.d.ts +4 -0
  22. package/dist/icons/editor/FontNameIcon.d.ts.map +1 -0
  23. package/dist/icons/editor/HtmlIcon.d.ts +4 -0
  24. package/dist/icons/editor/HtmlIcon.d.ts.map +1 -0
  25. package/dist/icons/editor/ImageIcon.d.ts +4 -0
  26. package/dist/icons/editor/ImageIcon.d.ts.map +1 -0
  27. package/dist/icons/editor/IndentIcon.d.ts +4 -0
  28. package/dist/icons/editor/IndentIcon.d.ts.map +1 -0
  29. package/dist/icons/editor/LinkIcon.d.ts +4 -0
  30. package/dist/icons/editor/LinkIcon.d.ts.map +1 -0
  31. package/dist/icons/editor/OrderedListIcon.d.ts +4 -0
  32. package/dist/icons/editor/OrderedListIcon.d.ts.map +1 -0
  33. package/dist/icons/editor/OutdentIcon.d.ts +4 -0
  34. package/dist/icons/editor/OutdentIcon.d.ts.map +1 -0
  35. package/dist/icons/editor/RedoIcon.d.ts +4 -0
  36. package/dist/icons/editor/RedoIcon.d.ts.map +1 -0
  37. package/dist/icons/editor/SubscriptIcon.d.ts +4 -0
  38. package/dist/icons/editor/SubscriptIcon.d.ts.map +1 -0
  39. package/dist/icons/editor/SuperscriptIcon.d.ts +4 -0
  40. package/dist/icons/editor/SuperscriptIcon.d.ts.map +1 -0
  41. package/dist/icons/editor/TagTypeIcon.d.ts +4 -0
  42. package/dist/icons/editor/TagTypeIcon.d.ts.map +1 -0
  43. package/dist/icons/editor/TextBoldIcon.d.ts +4 -0
  44. package/dist/icons/editor/TextBoldIcon.d.ts.map +1 -0
  45. package/dist/icons/editor/TextItalicIcon.d.ts +4 -0
  46. package/dist/icons/editor/TextItalicIcon.d.ts.map +1 -0
  47. package/dist/icons/editor/TextStrikethroughIcon.d.ts +4 -0
  48. package/dist/icons/editor/TextStrikethroughIcon.d.ts.map +1 -0
  49. package/dist/icons/editor/TextUndelineIcon.d.ts +4 -0
  50. package/dist/icons/editor/TextUndelineIcon.d.ts.map +1 -0
  51. package/dist/icons/editor/UndoIcon.d.ts +4 -0
  52. package/dist/icons/editor/UndoIcon.d.ts.map +1 -0
  53. package/dist/icons/editor/UnorderedListIcon.d.ts +4 -0
  54. package/dist/icons/editor/UnorderedListIcon.d.ts.map +1 -0
  55. package/dist/icons/index.d.ts +26 -3
  56. package/dist/icons/index.d.ts.map +1 -1
  57. package/dist/index.cjs.js +2 -2
  58. package/dist/index.css +1 -1
  59. package/dist/index.d.ts +3 -1
  60. package/dist/index.d.ts.map +1 -1
  61. package/dist/index.es.js +7570 -6210
  62. package/dist/index.umd.js +2 -2
  63. package/dist/locales/translations.d.ts.map +1 -1
  64. package/dist/locales/types.d.ts +33 -1
  65. package/dist/locales/types.d.ts.map +1 -1
  66. package/package.json +1 -1
  67. package/src/assets/main.scss +1 -0
@@ -0,0 +1,34 @@
1
+ import { VtEditorProps, VtEditorToolbarGroup, VtEditorValidationResult } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<VtEditorProps, {
4
+ focus(): void;
5
+ blur(): void;
6
+ clear(): void;
7
+ getHTML(): string;
8
+ getText(): string;
9
+ setHTML(html: string): void;
10
+ insertHTML(html: string): void;
11
+ validate(): boolean;
12
+ clearValidation(): void;
13
+ getValidationState(): VtEditorValidationResult;
14
+ getEditorElement(): HTMLElement | null;
15
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
16
+ blur: (event: FocusEvent) => any;
17
+ change: (html: string) => any;
18
+ focus: (event: FocusEvent) => any;
19
+ input: (html: string) => any;
20
+ "update:modelValue": (value: string) => any;
21
+ validation: (result: VtEditorValidationResult) => any;
22
+ }, string, PublicProps, Readonly<VtEditorProps> & Readonly<{
23
+ onBlur?: ((event: FocusEvent) => any) | undefined;
24
+ onChange?: ((html: string) => any) | undefined;
25
+ onFocus?: ((event: FocusEvent) => any) | undefined;
26
+ onInput?: ((html: string) => any) | undefined;
27
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
28
+ onValidation?: ((result: VtEditorValidationResult) => any) | undefined;
29
+ }>, {
30
+ disabled: boolean;
31
+ toolbar: VtEditorToolbarGroup[];
32
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
33
+ export default _default;
34
+ //# sourceMappingURL=VEditor.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"VEditor.vue.d.ts","sourceRoot":"","sources":["../../../src/components/editor/VEditor.vue"],"names":[],"mappings":";AAm2BE,OAAO,KAAK,EAMV,aAAa,EACb,oBAAoB,EACpB,wBAAwB,EACzB,MAAM,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2sCnB,wBASG"}
@@ -0,0 +1,12 @@
1
+ export declare const ALLOWED_TAGS: Set<string>;
2
+ export declare const ALLOWED_ATTRS: Set<string>;
3
+ export declare const TOOLBAR_ICONS: Record<string, string>;
4
+ export declare const HEADING_GROUPS: {
5
+ value: string;
6
+ label: string;
7
+ }[];
8
+ export declare const FONT_GROUPS: {
9
+ value: string;
10
+ label: string;
11
+ }[];
12
+ //# sourceMappingURL=constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../src/components/editor/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,aAkBvB,CAAC;AAEH,eAAO,MAAM,aAAa,aAAqE,CAAC;AAEhG,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAuBhD,CAAC;AAEF,eAAO,MAAM,cAAc;;;GAM1B,CAAC;AAEF,eAAO,MAAM,WAAW;;;GAMvB,CAAC"}
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Очищає HTML від потенційно небезпечних тегів та атрибутів (проста XSS санітизація)
3
+ */
4
+ export declare function customSanitizeHtml(html: string): string;
5
+ /**
6
+ * Видаляє абсолютно всі HTML теги, повертаючи чистий текст
7
+ */
8
+ export declare function stripHtml(html: string): string;
9
+ //# sourceMappingURL=helpers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../src/components/editor/helpers.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAmCvD;AAED;;GAEG;AACH,wBAAgB,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAI9C"}
@@ -0,0 +1,47 @@
1
+ export type VtEditorToolbarGroup = 'history' | 'format' | 'script' | 'heading' | 'fontName' | 'foreColor' | 'align' | 'list' | 'indent' | 'link' | 'image' | 'blockquote' | 'clear' | 'html';
2
+ export interface VtEditorLinkState {
3
+ visible: boolean;
4
+ url: string;
5
+ text: string;
6
+ openInNewTab: boolean;
7
+ }
8
+ export interface VtEditorImageState {
9
+ visible: boolean;
10
+ url: string;
11
+ alt: string;
12
+ }
13
+ export interface VtEditorValidationResult {
14
+ isValid: boolean;
15
+ errors: string[];
16
+ }
17
+ export interface VtEditorProps {
18
+ modelValue?: string;
19
+ placeholder?: string;
20
+ toolbar?: VtEditorToolbarGroup[];
21
+ disabled?: boolean;
22
+ required?: boolean;
23
+ errorMessage?: string;
24
+ }
25
+ export interface VtEditorEmits {
26
+ 'update:modelValue': [value: string];
27
+ input: [html: string];
28
+ change: [html: string];
29
+ focus: [event: FocusEvent];
30
+ blur: [event: FocusEvent];
31
+ validation: [result: VtEditorValidationResult];
32
+ }
33
+ export interface VtEditorMethods {
34
+ focus(): void;
35
+ blur(): void;
36
+ clear(): void;
37
+ getHTML(): string;
38
+ getText(): string;
39
+ setHTML(html: string): void;
40
+ insertHTML(html: string): void;
41
+ validate(): boolean;
42
+ clearValidation(): void;
43
+ getValidationState(): VtEditorValidationResult;
44
+ getEditorElement(): HTMLElement | null;
45
+ }
46
+ export type VtEditorCommand = 'bold' | 'italic' | 'underline' | 'strikethrough' | 'subscript' | 'superscript' | 'undo' | 'redo' | 'insertOrderedList' | 'insertUnorderedList' | 'justifyLeft' | 'justifyCenter' | 'justifyRight' | 'justifyFull' | 'removeFormat' | 'insertHTML' | 'fontName' | 'foreColor';
47
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/editor/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,oBAAoB,GAC5B,SAAS,GACT,QAAQ,GACR,QAAQ,GACR,SAAS,GACT,UAAU,GACV,WAAW,GACX,OAAO,GACP,MAAM,GACN,QAAQ,GACR,MAAM,GACN,OAAO,GACP,YAAY,GACZ,OAAO,GACP,MAAM,CAAC;AAGX,MAAM,WAAW,iBAAiB;IAChC,OAAO,EAAE,OAAO,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,OAAO,CAAC;CACvB;AAGD,MAAM,WAAW,kBAAkB;IACjC,OAAO,EAAE,OAAO,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;CACb;AAGD,MAAM,WAAW,wBAAwB;IACvC,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,MAAM,EAAE,CAAC;CAClB;AAGD,MAAM,WAAW,aAAa;IAC5B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,oBAAoB,EAAE,CAAC;IACjC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAGD,MAAM,WAAW,aAAa;IAC5B,mBAAmB,EAAE,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;IACrC,KAAK,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;IACtB,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;IACvB,KAAK,EAAE,CAAC,KAAK,EAAE,UAAU,CAAC,CAAC;IAC3B,IAAI,EAAE,CAAC,KAAK,EAAE,UAAU,CAAC,CAAC;IAC1B,UAAU,EAAE,CAAC,MAAM,EAAE,wBAAwB,CAAC,CAAC;CAChD;AAGD,MAAM,WAAW,eAAe;IAC9B,KAAK,IAAI,IAAI,CAAC;IAEd,IAAI,IAAI,IAAI,CAAC;IAEb,KAAK,IAAI,IAAI,CAAC;IAEd,OAAO,IAAI,MAAM,CAAC;IAElB,OAAO,IAAI,MAAM,CAAC;IAElB,OAAO,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IAE5B,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IAE/B,QAAQ,IAAI,OAAO,CAAC;IAEpB,eAAe,IAAI,IAAI,CAAC;IAExB,kBAAkB,IAAI,wBAAwB,CAAC;IAE/C,gBAAgB,IAAI,WAAW,GAAG,IAAI,CAAC;CACxC;AAGD,MAAM,MAAM,eAAe,GACvB,MAAM,GACN,QAAQ,GACR,WAAW,GACX,eAAe,GACf,WAAW,GACX,aAAa,GACb,MAAM,GACN,MAAM,GACN,mBAAmB,GACnB,qBAAqB,GACrB,aAAa,GACb,eAAe,GACf,cAAc,GACd,aAAa,GACb,cAAc,GACd,YAAY,GACZ,UAAU,GACV,WAAW,CAAC"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=AlignCenterIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AlignCenterIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/AlignCenterIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=AlignJustifyIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AlignJustifyIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/AlignJustifyIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=AlignLeftIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AlignLeftIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/AlignLeftIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=AlignRightIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AlignRightIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/AlignRightIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=BlockquoteIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BlockquoteIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/BlockquoteIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=ClearFormatIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ClearFormatIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/ClearFormatIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=FontNameIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FontNameIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/FontNameIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=HtmlIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HtmlIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/HtmlIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=ImageIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ImageIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/ImageIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=IndentIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IndentIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/IndentIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=LinkIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LinkIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/LinkIcon.vue"],"names":[],"mappings":";AAiBA;;AAwEA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=OrderedListIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"OrderedListIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/OrderedListIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=OutdentIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"OutdentIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/OutdentIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=RedoIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RedoIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/RedoIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=SubscriptIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SubscriptIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/SubscriptIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=SuperscriptIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SuperscriptIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/SuperscriptIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=TagTypeIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TagTypeIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/TagTypeIcon.vue"],"names":[],"mappings":";AAMA;;AAwDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=TextBoldIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TextBoldIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/TextBoldIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=TextItalicIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TextItalicIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/TextItalicIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=TextStrikethroughIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TextStrikethroughIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/TextStrikethroughIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=TextUndelineIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TextUndelineIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/TextUndelineIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=UndoIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UndoIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/UndoIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -0,0 +1,4 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
4
+ //# sourceMappingURL=UnorderedListIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UnorderedListIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/icons/editor/UnorderedListIcon.vue"],"names":[],"mappings":";AAWA;;AAsDA,wBAKG"}
@@ -18,8 +18,8 @@ export declare const icons: {
18
18
  readonly logOut: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
19
19
  readonly paperClip: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
20
20
  readonly plusRound: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
21
- readonly prompter: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
22
21
  readonly prompt: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
22
+ readonly prompter: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
23
23
  readonly reply: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
24
24
  readonly save: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
25
25
  readonly settingsFilled: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -126,6 +126,29 @@ export declare const icons: {
126
126
  readonly thailand: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
127
127
  readonly ukraine: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
128
128
  readonly unitedKingdom: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
129
+ readonly alignCenter: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
130
+ readonly alignJustify: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
131
+ readonly alignLeft: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
132
+ readonly alignRight: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
133
+ readonly blockquote: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
134
+ readonly clearFormat: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
135
+ readonly fontName: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
136
+ readonly html: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
137
+ readonly image: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
138
+ readonly indent: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
139
+ readonly link: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
140
+ readonly orderedList: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
141
+ readonly outdent: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
142
+ readonly redo: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
143
+ readonly subscript: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
144
+ readonly superscript: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
145
+ readonly tagType: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
146
+ readonly textBold: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
147
+ readonly textItalic: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
148
+ readonly textStrikethrough: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
149
+ readonly textUndeline: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
150
+ readonly undo: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
151
+ readonly unorderedList: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
129
152
  readonly ellipseGreen: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
130
153
  readonly fieldBoolean: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
131
154
  readonly fieldEnum: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -205,7 +228,6 @@ export declare const icons: {
205
228
  readonly nodeTree: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
206
229
  readonly notification: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
207
230
  readonly notificationRead: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
208
- readonly operator: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
209
231
  readonly operatorSkill: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
210
232
  readonly playFile: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
211
233
  readonly plus: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -236,6 +258,7 @@ export declare const icons: {
236
258
  readonly wait: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
237
259
  readonly week: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
238
260
  readonly windowStart: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
261
+ readonly operator: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
239
262
  readonly circleDownload: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
240
263
  readonly pause: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
241
264
  readonly start: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -257,8 +280,8 @@ export declare const icons: {
257
280
  readonly dashboard: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
258
281
  readonly group: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
259
282
  readonly home: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
260
- readonly integration: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
261
283
  readonly iTR: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
284
+ readonly integration: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
262
285
  readonly pbx: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
263
286
  readonly scenarios: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
264
287
  readonly settings: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/icons/index.ts"],"names":[],"mappings":";AA4RA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgUR,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,KAAK,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/icons/index.ts"],"names":[],"mappings":";AAmTA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyVR,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,KAAK,CAAC"}