eservices-core 1.0.309 → 1.0.310
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 +7 -15
- package/dist/index.js +1406 -1199
- package/dist/services/data-service.d.ts +1 -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 +3 -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 {
|
|
@@ -93,18 +96,6 @@ declare const _default: {
|
|
|
93
96
|
actionService: typeof import("./services/action-service").default;
|
|
94
97
|
};
|
|
95
98
|
widgets: {
|
|
96
|
-
interface: {
|
|
97
|
-
default: {
|
|
98
|
-
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<{} & {} & {}>, {}>;
|
|
99
|
-
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<{} & {} & {}>, {}>;
|
|
100
|
-
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<{} & {} & {}>, {}>;
|
|
101
|
-
};
|
|
102
|
-
naomi: {
|
|
103
|
-
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<{} & {} & {}>, {}>;
|
|
104
|
-
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<{} & {} & {}>, {}>;
|
|
105
|
-
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<{} & {} & {}>, {}>;
|
|
106
|
-
};
|
|
107
|
-
};
|
|
108
99
|
inputs: {
|
|
109
100
|
default: {
|
|
110
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<{} & {} & {}>, {}>;
|
|
@@ -168,6 +159,7 @@ declare const _default: {
|
|
|
168
159
|
Table: typeof Table;
|
|
169
160
|
ErrorStorageSystem: typeof import("./classes/ErrorStorageSystem").default;
|
|
170
161
|
form: {
|
|
162
|
+
/**WIDGETS**/
|
|
171
163
|
render: typeof import("./classes/ViewForm/render").default;
|
|
172
164
|
};
|
|
173
165
|
InterfaceWorker: typeof import("./classes/InterfaceWorker").default;
|