kwikid-agent-dashboard 0.0.21 → 0.0.22
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/bundles/kwikid-agent-dashboard.umd.js +411 -812
- package/bundles/kwikid-agent-dashboard.umd.js.map +1 -1
- package/esm2015/lib/components/customer-details/customer-details.component.js +27 -14
- package/esm2015/lib/components/customer-list/customer-list.component.js +21 -20
- package/esm2015/lib/components/customer-tile/customer-tile.component.js +22 -85
- package/esm2015/lib/kwikid-agent-dashboard.component.js +26 -32
- package/esm2015/lib/services/agent.service.js +118 -0
- package/esm2015/lib/services/map.service.js +214 -61
- package/fesm2015/kwikid-agent-dashboard.js +336 -754
- package/fesm2015/kwikid-agent-dashboard.js.map +1 -1
- package/lib/components/customer-details/customer-details.component.d.ts +9 -6
- package/lib/components/customer-list/customer-list.component.d.ts +5 -5
- package/lib/components/customer-tile/customer-tile.component.d.ts +6 -52
- package/lib/kwikid-agent-dashboard.component.d.ts +8 -10
- package/lib/services/agent.service.d.ts +70 -0
- package/lib/services/map.service.d.ts +29 -13
- package/package.json +3 -1
- package/esm2015/lib/services/info-window.service.js +0 -185
- package/esm2015/lib/services/user.service.js +0 -453
- package/lib/services/info-window.service.d.ts +0 -98
- package/lib/services/user.service.d.ts +0 -192
|
@@ -1,192 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class UserService {
|
|
3
|
-
agentConfig: any;
|
|
4
|
-
isListOpen: boolean;
|
|
5
|
-
isMobileView: any;
|
|
6
|
-
showMapview: boolean;
|
|
7
|
-
showTaskDetails: any;
|
|
8
|
-
addTaskFormConfig: {
|
|
9
|
-
key: string;
|
|
10
|
-
title: string;
|
|
11
|
-
fields: ({
|
|
12
|
-
key: string;
|
|
13
|
-
label: string;
|
|
14
|
-
disabled: boolean;
|
|
15
|
-
messages: any[];
|
|
16
|
-
default: {
|
|
17
|
-
value: {
|
|
18
|
-
is_found: boolean;
|
|
19
|
-
value: string;
|
|
20
|
-
sources: {
|
|
21
|
-
key: string;
|
|
22
|
-
props: {
|
|
23
|
-
object: {
|
|
24
|
-
key: string;
|
|
25
|
-
path: string;
|
|
26
|
-
};
|
|
27
|
-
};
|
|
28
|
-
value: string;
|
|
29
|
-
validation: {
|
|
30
|
-
is_valid: boolean;
|
|
31
|
-
triggers: string[];
|
|
32
|
-
rules: {
|
|
33
|
-
id: string;
|
|
34
|
-
key: string;
|
|
35
|
-
props: {
|
|
36
|
-
value: {
|
|
37
|
-
source: {
|
|
38
|
-
key: string;
|
|
39
|
-
props: {
|
|
40
|
-
object: {
|
|
41
|
-
key: string;
|
|
42
|
-
path: string;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
};
|
|
46
|
-
};
|
|
47
|
-
pattern: {
|
|
48
|
-
key: string;
|
|
49
|
-
};
|
|
50
|
-
};
|
|
51
|
-
}[];
|
|
52
|
-
actions: {
|
|
53
|
-
id: string;
|
|
54
|
-
key: string;
|
|
55
|
-
condition: string;
|
|
56
|
-
props: {
|
|
57
|
-
fieldKey: string;
|
|
58
|
-
value: {
|
|
59
|
-
source: {
|
|
60
|
-
key: string;
|
|
61
|
-
props: {
|
|
62
|
-
object: {
|
|
63
|
-
key: string;
|
|
64
|
-
path: string;
|
|
65
|
-
};
|
|
66
|
-
};
|
|
67
|
-
};
|
|
68
|
-
};
|
|
69
|
-
};
|
|
70
|
-
}[];
|
|
71
|
-
};
|
|
72
|
-
}[];
|
|
73
|
-
};
|
|
74
|
-
};
|
|
75
|
-
validators: {
|
|
76
|
-
required: boolean;
|
|
77
|
-
};
|
|
78
|
-
properties: {
|
|
79
|
-
placeholder: string;
|
|
80
|
-
readOnly: boolean;
|
|
81
|
-
case: string;
|
|
82
|
-
countryCode?: undefined;
|
|
83
|
-
removeCountryCodeFromValue?: undefined;
|
|
84
|
-
phoneMaskAfterCountryCode?: undefined;
|
|
85
|
-
};
|
|
86
|
-
type: string;
|
|
87
|
-
} | {
|
|
88
|
-
key: string;
|
|
89
|
-
label: string;
|
|
90
|
-
disabled: boolean;
|
|
91
|
-
messages: any[];
|
|
92
|
-
default: {
|
|
93
|
-
value: {
|
|
94
|
-
is_found: boolean;
|
|
95
|
-
value: string;
|
|
96
|
-
sources: {
|
|
97
|
-
key: string;
|
|
98
|
-
props: {
|
|
99
|
-
object: {
|
|
100
|
-
key: string;
|
|
101
|
-
path: string;
|
|
102
|
-
};
|
|
103
|
-
};
|
|
104
|
-
value: string;
|
|
105
|
-
validation: {
|
|
106
|
-
is_valid: boolean;
|
|
107
|
-
triggers: string[];
|
|
108
|
-
rules: {
|
|
109
|
-
id: string;
|
|
110
|
-
key: string;
|
|
111
|
-
props: {
|
|
112
|
-
value: {
|
|
113
|
-
source: {
|
|
114
|
-
key: string;
|
|
115
|
-
props: {
|
|
116
|
-
object: {
|
|
117
|
-
key: string;
|
|
118
|
-
path: string;
|
|
119
|
-
};
|
|
120
|
-
};
|
|
121
|
-
};
|
|
122
|
-
};
|
|
123
|
-
pattern: {
|
|
124
|
-
key: string;
|
|
125
|
-
};
|
|
126
|
-
};
|
|
127
|
-
}[];
|
|
128
|
-
actions: {
|
|
129
|
-
id: string;
|
|
130
|
-
key: string;
|
|
131
|
-
condition: string;
|
|
132
|
-
props: {
|
|
133
|
-
fieldKey: string;
|
|
134
|
-
value: {
|
|
135
|
-
source: {
|
|
136
|
-
key: string;
|
|
137
|
-
props: {
|
|
138
|
-
object: {
|
|
139
|
-
key: string;
|
|
140
|
-
path: string;
|
|
141
|
-
};
|
|
142
|
-
};
|
|
143
|
-
};
|
|
144
|
-
};
|
|
145
|
-
};
|
|
146
|
-
}[];
|
|
147
|
-
};
|
|
148
|
-
}[];
|
|
149
|
-
};
|
|
150
|
-
};
|
|
151
|
-
validators: {
|
|
152
|
-
required: boolean;
|
|
153
|
-
};
|
|
154
|
-
properties: {
|
|
155
|
-
countryCode: string;
|
|
156
|
-
removeCountryCodeFromValue: boolean;
|
|
157
|
-
phoneMaskAfterCountryCode: string;
|
|
158
|
-
placeholder: string;
|
|
159
|
-
readOnly: boolean;
|
|
160
|
-
case?: undefined;
|
|
161
|
-
};
|
|
162
|
-
type: string;
|
|
163
|
-
})[];
|
|
164
|
-
properties: {
|
|
165
|
-
header: {
|
|
166
|
-
title: {
|
|
167
|
-
hidden: boolean;
|
|
168
|
-
label: string;
|
|
169
|
-
};
|
|
170
|
-
steps: {
|
|
171
|
-
hidden: boolean;
|
|
172
|
-
};
|
|
173
|
-
};
|
|
174
|
-
footer: {
|
|
175
|
-
viewFormsButton: {
|
|
176
|
-
hidden: boolean;
|
|
177
|
-
label: string;
|
|
178
|
-
};
|
|
179
|
-
saveButton: {
|
|
180
|
-
hidden: boolean;
|
|
181
|
-
label: string;
|
|
182
|
-
};
|
|
183
|
-
};
|
|
184
|
-
};
|
|
185
|
-
};
|
|
186
|
-
constructor();
|
|
187
|
-
ngOnInit(): void;
|
|
188
|
-
setAgentConfig(agentConfig: any): void;
|
|
189
|
-
toggleMapview(): void;
|
|
190
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
|
|
191
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
192
|
-
}
|