eservices-core 1.0.308 → 1.0.311
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.
- package/dist/index.d.ts +9 -15
- package/dist/index.js +1581 -1410
- package/dist/services/data-service.d.ts +4 -0
- package/dist/widgets/index.d.ts +0 -12
- package/dist/widgets/interface/interface-container.vue.d.ts +49 -0
- package/dist/widgets/interface/interface-header.vue.d.ts +37 -0
- package/dist/widgets/interface/interface-navigation-row.vue.d.ts +15 -0
- package/dist/widgets/interface/interface-navigation.vue.d.ts +13 -0
- package/dist/widgets/interface/interface-user-card.vue.d.ts +37 -0
- package/dist/widgets/interface/interface-user-popup.vue.d.ts +39 -0
- package/dist/widgets/interface/user-popup-link.vue.d.ts +27 -0
- package/package.json +4 -1
package/dist/index.d.ts
CHANGED
|
@@ -9,15 +9,18 @@ import { Component } from "vue";
|
|
|
9
9
|
import StylesInterface from "./styles/types";
|
|
10
10
|
import { Values } from "./types";
|
|
11
11
|
export { StylesInterface };
|
|
12
|
+
import InterfaceContainer from "./widgets/interface/interface-container.vue";
|
|
13
|
+
/**WIDGETS**/
|
|
14
|
+
export { InterfaceContainer };
|
|
12
15
|
export interface StepRecordRow {
|
|
13
16
|
next?: () => Promise<any>;
|
|
14
17
|
component?: Component;
|
|
15
18
|
}
|
|
16
19
|
export interface NavigationRecordRow {
|
|
17
20
|
title: string;
|
|
18
|
-
icon
|
|
19
|
-
link?:
|
|
20
|
-
|
|
21
|
+
icon?: string;
|
|
22
|
+
link?: string;
|
|
23
|
+
activeMatch?: string;
|
|
21
24
|
children: NavigationRecordRow[];
|
|
22
25
|
}
|
|
23
26
|
export interface InterfaceBreadcrumb {
|
|
@@ -62,6 +65,8 @@ export interface ButtonRow {
|
|
|
62
65
|
title: string;
|
|
63
66
|
callback: () => any;
|
|
64
67
|
}
|
|
68
|
+
import { clickOutside } from "./utils";
|
|
69
|
+
export { clickOutside };
|
|
65
70
|
import CoreError from "./classes/CoreError";
|
|
66
71
|
import List, { ListCell } from "./classes/List";
|
|
67
72
|
import ProcessWrap from "./classes/ProcessWrap";
|
|
@@ -91,18 +96,6 @@ declare const _default: {
|
|
|
91
96
|
actionService: typeof import("./services/action-service").default;
|
|
92
97
|
};
|
|
93
98
|
widgets: {
|
|
94
|
-
interface: {
|
|
95
|
-
default: {
|
|
96
|
-
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<{} & {} & {}>, {}>;
|
|
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
|
-
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<{} & {} & {}>, {}>;
|
|
99
|
-
};
|
|
100
|
-
naomi: {
|
|
101
|
-
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<{} & {} & {}>, {}>;
|
|
102
|
-
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<{} & {} & {}>, {}>;
|
|
103
|
-
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<{} & {} & {}>, {}>;
|
|
104
|
-
};
|
|
105
|
-
};
|
|
106
99
|
inputs: {
|
|
107
100
|
default: {
|
|
108
101
|
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<{} & {} & {}>, {}>;
|
|
@@ -166,6 +159,7 @@ declare const _default: {
|
|
|
166
159
|
Table: typeof Table;
|
|
167
160
|
ErrorStorageSystem: typeof import("./classes/ErrorStorageSystem").default;
|
|
168
161
|
form: {
|
|
162
|
+
/**WIDGETS**/
|
|
169
163
|
render: typeof import("./classes/ViewForm/render").default;
|
|
170
164
|
};
|
|
171
165
|
InterfaceWorker: typeof import("./classes/InterfaceWorker").default;
|