eservices-core 1.0.294

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 (108) hide show
  1. package/dist/TEST/index.d.ts +5 -0
  2. package/dist/classes/Action.d.ts +3 -0
  3. package/dist/classes/ApplicationManager.d.ts +41 -0
  4. package/dist/classes/ClassMetadata.d.ts +32 -0
  5. package/dist/classes/Communication.d.ts +4 -0
  6. package/dist/classes/CoreError.d.ts +39 -0
  7. package/dist/classes/ErrorStorageSystem.d.ts +12 -0
  8. package/dist/classes/EventEmitter.d.ts +20 -0
  9. package/dist/classes/Form.d.ts +78 -0
  10. package/dist/classes/InterfaceForm.d.ts +106 -0
  11. package/dist/classes/InterfaceWorker.d.ts +15 -0
  12. package/dist/classes/List.d.ts +63 -0
  13. package/dist/classes/ListWorker.d.ts +2 -0
  14. package/dist/classes/Metadata.d.ts +51 -0
  15. package/dist/classes/ProcessWrap.d.ts +8 -0
  16. package/dist/classes/RenderForm.d.ts +37 -0
  17. package/dist/classes/StepWorker.d.ts +9 -0
  18. package/dist/classes/Table.d.ts +91 -0
  19. package/dist/classes/ViewForm/ViewForm.d.ts +8 -0
  20. package/dist/classes/ViewForm/container-form-element-render.d.ts +1 -0
  21. package/dist/classes/ViewForm/container-form-render.d.ts +1 -0
  22. package/dist/classes/ViewForm/container-render.d.ts +1 -0
  23. package/dist/classes/ViewForm/getInputComponent.d.ts +1 -0
  24. package/dist/classes/ViewForm/render-form-body.d.ts +1 -0
  25. package/dist/classes/ViewForm/render-form-section.d.ts +1 -0
  26. package/dist/classes/ViewForm/render-form.d.ts +2 -0
  27. package/dist/classes/ViewForm/render-input.d.ts +8 -0
  28. package/dist/classes/ViewForm/render.d.ts +8 -0
  29. package/dist/classes/index.d.ts +59 -0
  30. package/dist/config.d.ts +14 -0
  31. package/dist/errors/communication-error.d.ts +7 -0
  32. package/dist/index.d.ts +207 -0
  33. package/dist/index.js +5662 -0
  34. package/dist/init.d.ts +1 -0
  35. package/dist/mixins/index.d.ts +4 -0
  36. package/dist/services/AuthService.d.ts +20 -0
  37. package/dist/services/FileService.d.ts +7 -0
  38. package/dist/services/MetadataService.d.ts +5 -0
  39. package/dist/services/action-service.d.ts +8 -0
  40. package/dist/services/communication-service.d.ts +42 -0
  41. package/dist/services/data-service.d.ts +57 -0
  42. package/dist/services/index.d.ts +11 -0
  43. package/dist/styles/index.d.ts +2 -0
  44. package/dist/styles/types.d.ts +164 -0
  45. package/dist/types/index.d.ts +92 -0
  46. package/dist/types/metadata-types.d.ts +19 -0
  47. package/dist/useMethods/index.d.ts +5 -0
  48. package/dist/useMethods/useInput.d.ts +15 -0
  49. package/dist/utils/GraphQL/index.d.ts +21 -0
  50. package/dist/utils/Journal.d.ts +34 -0
  51. package/dist/utils/Request.d.ts +4 -0
  52. package/dist/utils/clickOutside.d.ts +2 -0
  53. package/dist/utils/firstChapterToLowerCase.d.ts +5 -0
  54. package/dist/utils/getPropFromObject.d.ts +15 -0
  55. package/dist/utils/index.d.ts +9 -0
  56. package/dist/utils/mergeObjects.d.ts +6 -0
  57. package/dist/utils/prettyDate.d.ts +13 -0
  58. package/dist/utils/recursive-object-wrap.d.ts +16 -0
  59. package/dist/utils/requestHandler.d.ts +7 -0
  60. package/dist/utils/runPromiseQueue.d.ts +1 -0
  61. package/dist/widgets/breadcrumbs/widget-breadcrumb-item.vue.d.ts +25 -0
  62. package/dist/widgets/breadcrumbs/widget-breadcrumbs.vue.d.ts +13 -0
  63. package/dist/widgets/buttons/WidgetButton.vue.d.ts +19 -0
  64. package/dist/widgets/buttons/index.d.ts +5 -0
  65. package/dist/widgets/buttons/multi-button/WidgetMultiButton.vue.d.ts +20 -0
  66. package/dist/widgets/communication/communication-chat-message.vue.d.ts +31 -0
  67. package/dist/widgets/communication/communication-chat.vue.d.ts +19 -0
  68. package/dist/widgets/communication/communication-head-create.vue.d.ts +13 -0
  69. package/dist/widgets/communication/communication-head.vue.d.ts +25 -0
  70. package/dist/widgets/communication/communication-input.vue.d.ts +13 -0
  71. package/dist/widgets/communication/widget-communication-head.vue.d.ts +19 -0
  72. package/dist/widgets/communication/widget-communication-message.vue.d.ts +4 -0
  73. package/dist/widgets/communication/widget-communication.vue.d.ts +37 -0
  74. package/dist/widgets/containers/index.d.ts +9 -0
  75. package/dist/widgets/errorSystem/index.d.ts +4 -0
  76. package/dist/widgets/forms/FormSection.vue.d.ts +13 -0
  77. package/dist/widgets/forms/index.d.ts +9 -0
  78. package/dist/widgets/forms/naomi/WidgetForm.vue.d.ts +46 -0
  79. package/dist/widgets/forms/naomi/WidgetFormImage.vue.d.ts +19 -0
  80. package/dist/widgets/forms/naomi/WidgetFormInfo.vue.d.ts +25 -0
  81. package/dist/widgets/icons/index.d.ts +4 -0
  82. package/dist/widgets/index.d.ts +63 -0
  83. package/dist/widgets/inputs/default-style/index.d.ts +7 -0
  84. package/dist/widgets/inputs/index.d.ts +15 -0
  85. package/dist/widgets/inputs/line-style/index.d.ts +4 -0
  86. package/dist/widgets/inputs/naomi-style/index.d.ts +4 -0
  87. package/dist/widgets/interface/default/index.d.ts +6 -0
  88. package/dist/widgets/interface/index.d.ts +13 -0
  89. package/dist/widgets/interface/naomi/InterfaceNavigationRow.vue.d.ts +19 -0
  90. package/dist/widgets/interface/naomi/WidgetInterfaceNavigation.vue.d.ts +13 -0
  91. package/dist/widgets/interface/naomi/WidgetInterfaceUserCard.vue.d.ts +25 -0
  92. package/dist/widgets/interface/naomi/WidgetInterfaceUserPopup/WidgetInterfaceUserPopup.vue.d.ts +37 -0
  93. package/dist/widgets/interface/naomi/WidgetInterfaceUserPopup/WidgetInterfaceUserPopupEvent.vue.d.ts +27 -0
  94. package/dist/widgets/interface/naomi/index.d.ts +6 -0
  95. package/dist/widgets/interface/naomi/useInterfaceNavigation.d.ts +6 -0
  96. package/dist/widgets/spinner/WidgetSpinner.vue.d.ts +13 -0
  97. package/dist/widgets/spinner/index.d.ts +4 -0
  98. package/dist/widgets/tables/WidgetCell.vue.d.ts +16 -0
  99. package/dist/widgets/tables/WidgetList.vue.d.ts +28 -0
  100. package/dist/widgets/tables/WidgetListHead.vue.d.ts +15 -0
  101. package/dist/widgets/tables/getCell.d.ts +4 -0
  102. package/dist/widgets/tables/index.d.ts +6 -0
  103. package/dist/widgets/tables/table-with-form/WidgetTableController.vue.d.ts +13 -0
  104. package/dist/widgets/tables/table-with-form/widget-table-form.vue.d.ts +19 -0
  105. package/dist/widgets/tables/table-with-form/widget-table-row.vue.d.ts +11 -0
  106. package/dist/widgets/tables/table-with-form/widget-table.vue.d.ts +21 -0
  107. package/package.json +65 -0
  108. package/readme.md +39 -0
@@ -0,0 +1,2 @@
1
+ import { ViewFormState } from "./ViewForm";
2
+ export default function renderForm(this: ViewFormState, WidgetForm: any, props: any, children: any[]): () => any;
@@ -0,0 +1,8 @@
1
+ import { ViewFormState } from "./ViewForm";
2
+ declare type PropsInput = {
3
+ [name: string]: any;
4
+ };
5
+ export default function renderInput(this: ViewFormState, inputProps: PropsInput | string, type?: string): () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
6
+ [key: string]: any;
7
+ }>;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ import { Ref } from "vue";
2
+ interface RenderItemInterface {
3
+ children: any[];
4
+ }
5
+ declare type FunctionRenderItem = () => () => any;
6
+ declare type RenderItem = RenderItemInterface | FunctionRenderItem;
7
+ export default function render(array: RenderItem[] | Ref<RenderItem>): any;
8
+ export {};
@@ -0,0 +1,59 @@
1
+ import EventEmitter from "./EventEmitter";
2
+ import Form from "./Form";
3
+ import CoreError from "./CoreError";
4
+ import ListWorker from "./ListWorker";
5
+ import { ViewForm } from "./ViewForm/ViewForm";
6
+ import render from "./ViewForm/render";
7
+ import StepWorker from "./StepWorker";
8
+ import ErrorStorageSystem from "./ErrorStorageSystem";
9
+ import InterfaceWorker from "./InterfaceWorker";
10
+ import Table from "./Table";
11
+ declare const _default: {
12
+ StepWorker: typeof StepWorker;
13
+ Errors: typeof CoreError;
14
+ CoreError: typeof CoreError;
15
+ Form: typeof Form;
16
+ EventEmitter: typeof EventEmitter;
17
+ ListWorker: typeof ListWorker;
18
+ ViewForm: typeof ViewForm;
19
+ Table: typeof Table;
20
+ ErrorStorageSystem: typeof ErrorStorageSystem;
21
+ form: {
22
+ render: typeof render;
23
+ };
24
+ InterfaceWorker: typeof InterfaceWorker;
25
+ ApplicationManager: {
26
+ state: {
27
+ legalEntityTypes: {
28
+ code: string;
29
+ name: string;
30
+ }[];
31
+ identityDocumentTypes: {
32
+ code: string;
33
+ name: string;
34
+ }[];
35
+ countries: {
36
+ code: string;
37
+ name: string;
38
+ }[];
39
+ phoneCountryCodes: string[];
40
+ documentTypes: {
41
+ id: number;
42
+ name: string;
43
+ }[];
44
+ };
45
+ clientContent: {
46
+ email: string;
47
+ name: string;
48
+ photo: string;
49
+ id: number;
50
+ };
51
+ currentContext: import("vue").Ref<number>;
52
+ currentContextProfile: import("vue").ComputedRef<import("..").ContextProfile>;
53
+ isReady: import("vue").Ref<boolean>;
54
+ setCurrentContext(id: number): void;
55
+ initialization(): Promise<void>;
56
+ updateFullClientData(): Promise<void>;
57
+ };
58
+ };
59
+ export default _default;
@@ -0,0 +1,14 @@
1
+ import StylesInterface from "./styles/types";
2
+ interface ConfigurationInterface {
3
+ webServerURL?: string;
4
+ identityServerURL?: string;
5
+ applicationName?: 'BAP' | 'SCP';
6
+ styles?: StylesInterface;
7
+ [name: string]: any;
8
+ renderInputs?: {
9
+ [name: string]: any;
10
+ };
11
+ }
12
+ export declare const configuration: ConfigurationInterface;
13
+ export default function config(v: ConfigurationInterface): void;
14
+ export {};
@@ -0,0 +1,7 @@
1
+ export default class CommunicationError extends Error {
2
+ /**
3
+ * @description В текущей операции не был указан идентификатор Разговора aka
4
+ * Inquire.
5
+ */
6
+ static UndefinedTalkId(): CommunicationError;
7
+ }
@@ -0,0 +1,207 @@
1
+ import * as utils from "./utils";
2
+ import * as mixins from "./mixins";
3
+ import config from "./config";
4
+ import * as types from "./types";
5
+ import Table from "./classes/Table";
6
+ import Form from "./classes/Form";
7
+ import "./../styles/index.css";
8
+ import { Component } from "vue";
9
+ import StylesInterface from "./styles/types";
10
+ import { Values } from "./types";
11
+ export { StylesInterface };
12
+ export interface StepRecordRow {
13
+ next?: () => Promise<any>;
14
+ component?: Component;
15
+ }
16
+ export interface NavigationRecordRow {
17
+ title: string;
18
+ icon: string;
19
+ link?: any;
20
+ id?: number;
21
+ children: NavigationRecordRow[];
22
+ }
23
+ export interface InterfaceBreadcrumb {
24
+ link: any;
25
+ title: string;
26
+ }
27
+ export interface InterfaceNotificationRecordRow {
28
+ title?: string;
29
+ icon: string;
30
+ count: number;
31
+ }
32
+ export interface InterfaceUserPopupRecordRow {
33
+ title: string;
34
+ icon: string;
35
+ link?: any;
36
+ }
37
+ export interface LabelForm {
38
+ title: string;
39
+ icon?: string;
40
+ type?: 'error' | 'warning' | 'correct';
41
+ }
42
+ export interface CodeEntity {
43
+ code: string;
44
+ name: string;
45
+ }
46
+ export declare type ContextProfileKey = number;
47
+ export interface ContextProfile {
48
+ name: string;
49
+ id: ContextProfileKey | null;
50
+ photo: string | null;
51
+ }
52
+ export interface ValuesInterface {
53
+ [name: string]: Values;
54
+ }
55
+ export interface TableController {
56
+ save: (v: ValuesInterface) => void;
57
+ create: (v: ValuesInterface) => void;
58
+ hide: () => void;
59
+ delete: (v: number) => void;
60
+ }
61
+ export interface ButtonRow {
62
+ title: string;
63
+ callback: () => any;
64
+ }
65
+ import CoreError from "./classes/CoreError";
66
+ import List, { ListCell } from "./classes/List";
67
+ export {
68
+ /**
69
+ * Some classes, test: 22.03.2022
70
+ * */
71
+ Table, Form, CoreError, List, ListCell };
72
+ import { requestHandler } from "./utils";
73
+ export { requestHandler };
74
+ import authService from "./services/AuthService";
75
+ import dataService from "./services/data-service";
76
+ import { CommunicationService as communicationService } from "./services/communication-service";
77
+ export { authService, dataService, communicationService };
78
+ import WidgetBreadcrumbs from "./widgets/breadcrumbs/widget-breadcrumbs.vue";
79
+ import WidgetCommunication from "./widgets/communication/widget-communication.vue";
80
+ import WidgetList from "./widgets/tables/WidgetList.vue";
81
+ export { WidgetBreadcrumbs, WidgetCommunication, WidgetList };
82
+ declare const _default: {
83
+ services: {
84
+ authService: typeof authService;
85
+ dataService: typeof dataService;
86
+ fileService: typeof import("./services/FileService").default;
87
+ actionService: typeof import("./services/action-service").default;
88
+ };
89
+ widgets: {
90
+ interface: {
91
+ default: {
92
+ ContainerInterface: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
93
+ WidgetInterfaceNavigation: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
94
+ WidgetInterfaceNotification: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
95
+ };
96
+ naomi: {
97
+ WidgetInterfaceNavigation: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
98
+ WidgetInterfaceUserPopup: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
99
+ WidgetInterfaceUserCard: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
100
+ };
101
+ };
102
+ inputs: {
103
+ default: {
104
+ InputText: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
105
+ InputToggle: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
106
+ InputSelect: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
107
+ InputLoadFile: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
108
+ };
109
+ line: {
110
+ InputText: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
111
+ };
112
+ naomi: {
113
+ InputText: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
114
+ };
115
+ };
116
+ forms: {
117
+ default: {
118
+ WidgetForm: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
119
+ };
120
+ naomi: {
121
+ WidgetFormNaomi: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
122
+ };
123
+ };
124
+ spinners: {
125
+ WidgetSpinner: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
126
+ };
127
+ containers: {
128
+ ContainerForm: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
129
+ ContainerFormElem: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
130
+ ContainerAuthView: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
131
+ auth: {
132
+ ContainerStep: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
133
+ };
134
+ };
135
+ buttons: {
136
+ WidgetButton: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
137
+ WidgetMultiButton: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
138
+ };
139
+ icons: {
140
+ Icon: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
141
+ };
142
+ tables: {
143
+ WidgetList: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
144
+ WidgetTable: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
145
+ WidgetTableController: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
146
+ };
147
+ errorSystem: {
148
+ default: import("vue").DefineComponent<{}, {}, any, Record<string, import("vue").ComputedGetter<any> | import("vue").WritableComputedOptions<any>>, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
149
+ };
150
+ };
151
+ usage: {
152
+ inputs: typeof import("./useMethods/useInput");
153
+ };
154
+ utils: typeof utils;
155
+ classes: {
156
+ StepWorker: typeof import("./classes/StepWorker").default;
157
+ Errors: typeof CoreError;
158
+ CoreError: typeof CoreError;
159
+ Form: typeof Form;
160
+ EventEmitter: typeof import("./classes/EventEmitter").default;
161
+ ListWorker: typeof import("./classes/ListWorker").default;
162
+ ViewForm: typeof import("./classes/ViewForm/ViewForm").ViewForm;
163
+ Table: typeof Table;
164
+ ErrorStorageSystem: typeof import("./classes/ErrorStorageSystem").default;
165
+ form: {
166
+ render: typeof import("./classes/ViewForm/render").default;
167
+ };
168
+ InterfaceWorker: typeof import("./classes/InterfaceWorker").default;
169
+ ApplicationManager: {
170
+ state: {
171
+ legalEntityTypes: {
172
+ code: string;
173
+ name: string;
174
+ }[];
175
+ identityDocumentTypes: {
176
+ code: string;
177
+ name: string;
178
+ }[];
179
+ countries: {
180
+ code: string;
181
+ name: string;
182
+ }[];
183
+ phoneCountryCodes: string[];
184
+ documentTypes: {
185
+ id: number;
186
+ name: string;
187
+ }[];
188
+ };
189
+ clientContent: {
190
+ email: string;
191
+ name: string;
192
+ photo: string;
193
+ id: number;
194
+ };
195
+ currentContext: import("vue").Ref<number>;
196
+ currentContextProfile: import("vue").ComputedRef<ContextProfile>;
197
+ isReady: import("vue").Ref<boolean>;
198
+ setCurrentContext(id: number): void;
199
+ initialization(): Promise<void>;
200
+ updateFullClientData(): Promise<void>;
201
+ };
202
+ };
203
+ mixins: typeof mixins;
204
+ config: typeof config;
205
+ types: typeof types;
206
+ };
207
+ export default _default;