@privateaim/client-vue 0.8.10 → 0.8.12
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/components/analysis/FAnalyses.d.ts.map +1 -1
- package/dist/components/analysis/FAnalysisItemCard.vue.d.ts.map +1 -1
- package/dist/components/analysis/wizard/FAnalysisWizard.vue.d.ts +345 -13
- package/dist/components/analysis/wizard/FAnalysisWizard.vue.d.ts.map +1 -1
- package/dist/components/analysis/wizard/FAnalysisWizardLockModal.vue.d.ts.map +1 -1
- package/dist/components/analysis/wizard/FAnalysisWizardStepFiles.vue.d.ts +3 -13
- package/dist/components/analysis/wizard/FAnalysisWizardStepFiles.vue.d.ts.map +1 -1
- package/dist/components/analysis/wizard/FAnalysisWizardStepNodes.vue.d.ts.map +1 -1
- package/dist/components/analysis/wizard/FAnalysisWizardStepSecurity.vue.d.ts +346 -0
- package/dist/components/analysis/wizard/FAnalysisWizardStepSecurity.vue.d.ts.map +1 -0
- package/dist/components/analysis-bucket-file/FAnalysisBucketFile.vue.d.ts +2 -10
- package/dist/components/analysis-bucket-file/FAnalysisBucketFile.vue.d.ts.map +1 -1
- package/dist/components/analysis-bucket-file/FAnalysisBucketFileManager.vue.d.ts +14 -24
- package/dist/components/analysis-bucket-file/FAnalysisBucketFileManager.vue.d.ts.map +1 -1
- package/dist/components/analysis-node/FAnalysisNodeManager.vue.d.ts.map +1 -1
- package/dist/components/analysis-permission/FAnalysisPermissionAssignment.d.ts +18 -0
- package/dist/components/analysis-permission/FAnalysisPermissionAssignment.d.ts.map +1 -0
- package/dist/components/analysis-permission/FAnalysisPermissionAssignments.d.ts +86 -0
- package/dist/components/analysis-permission/FAnalysisPermissionAssignments.d.ts.map +1 -0
- package/dist/components/analysis-permission/index.d.ts +3 -0
- package/dist/components/analysis-permission/index.d.ts.map +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/project-node/FProjectNodeInCard.vue.d.ts.map +1 -1
- package/dist/core/entity-picker/index.d.ts +3 -0
- package/dist/core/entity-picker/index.d.ts.map +1 -0
- package/dist/core/entity-picker/module.d.ts +48 -0
- package/dist/core/entity-picker/module.d.ts.map +1 -0
- package/dist/core/entity-picker/types.d.ts +27 -0
- package/dist/core/entity-picker/types.d.ts.map +1 -0
- package/dist/core/list/module.d.ts.map +1 -1
- package/dist/core/list/utils/handlers.d.ts +2 -2
- package/dist/core/list/utils/handlers.d.ts.map +1 -1
- package/dist/index.cjs +692 -597
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +8 -0
- package/dist/index.mjs +692 -599
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
|
@@ -0,0 +1,346 @@
|
|
|
1
|
+
import type { Analysis } from '@privateaim/core-kit';
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
entity: {
|
|
5
|
+
type: PropType<Analysis>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
}>, {
|
|
9
|
+
filters: Record<string, unknown>;
|
|
10
|
+
load: (meta: any) => Promise<void>;
|
|
11
|
+
vNode: import("vue").Ref<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
12
|
+
entityId: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
query: {
|
|
17
|
+
type: PropType<import("rapiq").BuildInput<import("@authup/core-kit").Permission>>;
|
|
18
|
+
default(): {};
|
|
19
|
+
};
|
|
20
|
+
realmId: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: any;
|
|
23
|
+
};
|
|
24
|
+
loadOnSetup: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
loading: {
|
|
29
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListLoadingOptions<import("@authup/core-kit").Permission>>;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
noMore: {
|
|
33
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListNoMoreOptions<import("@authup/core-kit").Permission>>;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
footer: {
|
|
37
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListFooterOptions<import("@authup/core-kit").Permission>>;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
header: {
|
|
41
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListHeaderOptions<import("@authup/core-kit").Permission>>;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
44
|
+
body: {
|
|
45
|
+
type: PropType<import("@authup/client-web-kit").ListBodyOptions<import("@authup/core-kit").Permission>>;
|
|
46
|
+
};
|
|
47
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
48
|
+
[key: string]: any;
|
|
49
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
50
|
+
entityId: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
required: true;
|
|
53
|
+
};
|
|
54
|
+
query: {
|
|
55
|
+
type: PropType<import("rapiq").BuildInput<import("@authup/core-kit").Permission>>;
|
|
56
|
+
default(): {};
|
|
57
|
+
};
|
|
58
|
+
realmId: {
|
|
59
|
+
type: StringConstructor;
|
|
60
|
+
default: any;
|
|
61
|
+
};
|
|
62
|
+
loadOnSetup: {
|
|
63
|
+
type: BooleanConstructor;
|
|
64
|
+
default: boolean;
|
|
65
|
+
};
|
|
66
|
+
loading: {
|
|
67
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListLoadingOptions<import("@authup/core-kit").Permission>>;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
70
|
+
noMore: {
|
|
71
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListNoMoreOptions<import("@authup/core-kit").Permission>>;
|
|
72
|
+
default: boolean;
|
|
73
|
+
};
|
|
74
|
+
footer: {
|
|
75
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListFooterOptions<import("@authup/core-kit").Permission>>;
|
|
76
|
+
default: boolean;
|
|
77
|
+
};
|
|
78
|
+
header: {
|
|
79
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListHeaderOptions<import("@authup/core-kit").Permission>>;
|
|
80
|
+
default: boolean;
|
|
81
|
+
};
|
|
82
|
+
body: {
|
|
83
|
+
type: PropType<import("@authup/client-web-kit").ListBodyOptions<import("@authup/core-kit").Permission>>;
|
|
84
|
+
};
|
|
85
|
+
}>> & Readonly<{}>, {
|
|
86
|
+
realmId: string;
|
|
87
|
+
footer: boolean;
|
|
88
|
+
header: boolean;
|
|
89
|
+
noMore: boolean;
|
|
90
|
+
loading: boolean;
|
|
91
|
+
query: import("rapiq").BuildInput<import("@authup/core-kit").Permission>;
|
|
92
|
+
loadOnSetup: boolean;
|
|
93
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
94
|
+
entityId: {
|
|
95
|
+
type: StringConstructor;
|
|
96
|
+
required: true;
|
|
97
|
+
};
|
|
98
|
+
query: {
|
|
99
|
+
type: PropType<import("rapiq").BuildInput<import("@authup/core-kit").Permission>>;
|
|
100
|
+
default(): {};
|
|
101
|
+
};
|
|
102
|
+
realmId: {
|
|
103
|
+
type: StringConstructor;
|
|
104
|
+
default: any;
|
|
105
|
+
};
|
|
106
|
+
loadOnSetup: {
|
|
107
|
+
type: BooleanConstructor;
|
|
108
|
+
default: boolean;
|
|
109
|
+
};
|
|
110
|
+
loading: {
|
|
111
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListLoadingOptions<import("@authup/core-kit").Permission>>;
|
|
112
|
+
default: boolean;
|
|
113
|
+
};
|
|
114
|
+
noMore: {
|
|
115
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListNoMoreOptions<import("@authup/core-kit").Permission>>;
|
|
116
|
+
default: boolean;
|
|
117
|
+
};
|
|
118
|
+
footer: {
|
|
119
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListFooterOptions<import("@authup/core-kit").Permission>>;
|
|
120
|
+
default: boolean;
|
|
121
|
+
};
|
|
122
|
+
header: {
|
|
123
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListHeaderOptions<import("@authup/core-kit").Permission>>;
|
|
124
|
+
default: boolean;
|
|
125
|
+
};
|
|
126
|
+
body: {
|
|
127
|
+
type: PropType<import("@authup/client-web-kit").ListBodyOptions<import("@authup/core-kit").Permission>>;
|
|
128
|
+
};
|
|
129
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
130
|
+
[key: string]: any;
|
|
131
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
132
|
+
entityId: {
|
|
133
|
+
type: StringConstructor;
|
|
134
|
+
required: true;
|
|
135
|
+
};
|
|
136
|
+
query: {
|
|
137
|
+
type: PropType<import("rapiq").BuildInput<import("@authup/core-kit").Permission>>;
|
|
138
|
+
default(): {};
|
|
139
|
+
};
|
|
140
|
+
realmId: {
|
|
141
|
+
type: StringConstructor;
|
|
142
|
+
default: any;
|
|
143
|
+
};
|
|
144
|
+
loadOnSetup: {
|
|
145
|
+
type: BooleanConstructor;
|
|
146
|
+
default: boolean;
|
|
147
|
+
};
|
|
148
|
+
loading: {
|
|
149
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListLoadingOptions<import("@authup/core-kit").Permission>>;
|
|
150
|
+
default: boolean;
|
|
151
|
+
};
|
|
152
|
+
noMore: {
|
|
153
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListNoMoreOptions<import("@authup/core-kit").Permission>>;
|
|
154
|
+
default: boolean;
|
|
155
|
+
};
|
|
156
|
+
footer: {
|
|
157
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListFooterOptions<import("@authup/core-kit").Permission>>;
|
|
158
|
+
default: boolean;
|
|
159
|
+
};
|
|
160
|
+
header: {
|
|
161
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListHeaderOptions<import("@authup/core-kit").Permission>>;
|
|
162
|
+
default: boolean;
|
|
163
|
+
};
|
|
164
|
+
body: {
|
|
165
|
+
type: PropType<import("@authup/client-web-kit").ListBodyOptions<import("@authup/core-kit").Permission>>;
|
|
166
|
+
};
|
|
167
|
+
}>> & Readonly<{}>, {
|
|
168
|
+
realmId: string;
|
|
169
|
+
footer: boolean;
|
|
170
|
+
header: boolean;
|
|
171
|
+
noMore: boolean;
|
|
172
|
+
loading: boolean;
|
|
173
|
+
query: import("rapiq").BuildInput<import("@authup/core-kit").Permission>;
|
|
174
|
+
loadOnSetup: boolean;
|
|
175
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
|
176
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
177
|
+
entity: {
|
|
178
|
+
type: PropType<Analysis>;
|
|
179
|
+
required: true;
|
|
180
|
+
};
|
|
181
|
+
}>> & Readonly<{}>, {}, {}, {
|
|
182
|
+
FPagination: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
183
|
+
total: {
|
|
184
|
+
type: NumberConstructor;
|
|
185
|
+
};
|
|
186
|
+
meta: {
|
|
187
|
+
type: ObjectConstructor;
|
|
188
|
+
};
|
|
189
|
+
busy: {
|
|
190
|
+
type: BooleanConstructor;
|
|
191
|
+
};
|
|
192
|
+
load: {
|
|
193
|
+
type: PropType<(data?: any) => (Promise<void> | void)>;
|
|
194
|
+
required: true;
|
|
195
|
+
};
|
|
196
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
197
|
+
[key: string]: any;
|
|
198
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
199
|
+
total: {
|
|
200
|
+
type: NumberConstructor;
|
|
201
|
+
};
|
|
202
|
+
meta: {
|
|
203
|
+
type: ObjectConstructor;
|
|
204
|
+
};
|
|
205
|
+
busy: {
|
|
206
|
+
type: BooleanConstructor;
|
|
207
|
+
};
|
|
208
|
+
load: {
|
|
209
|
+
type: PropType<(data?: any) => (Promise<void> | void)>;
|
|
210
|
+
required: true;
|
|
211
|
+
};
|
|
212
|
+
}>> & Readonly<{}>, {
|
|
213
|
+
busy: boolean;
|
|
214
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
215
|
+
FSearch: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
216
|
+
icon: {
|
|
217
|
+
type: BooleanConstructor;
|
|
218
|
+
};
|
|
219
|
+
iconPosition: {
|
|
220
|
+
type: PropType<"start" | "end">;
|
|
221
|
+
};
|
|
222
|
+
iconClass: {
|
|
223
|
+
type: StringConstructor;
|
|
224
|
+
};
|
|
225
|
+
busy: {
|
|
226
|
+
type: BooleanConstructor;
|
|
227
|
+
};
|
|
228
|
+
load: {
|
|
229
|
+
type: PropType<import("@vuecs/list-controls").ListLoadFn<import("../../..").ListMeta<any>>>;
|
|
230
|
+
};
|
|
231
|
+
meta: {
|
|
232
|
+
type: PropType<import("../../..").ListMeta<any>>;
|
|
233
|
+
};
|
|
234
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
235
|
+
[key: string]: any;
|
|
236
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
237
|
+
icon: {
|
|
238
|
+
type: BooleanConstructor;
|
|
239
|
+
};
|
|
240
|
+
iconPosition: {
|
|
241
|
+
type: PropType<"start" | "end">;
|
|
242
|
+
};
|
|
243
|
+
iconClass: {
|
|
244
|
+
type: StringConstructor;
|
|
245
|
+
};
|
|
246
|
+
busy: {
|
|
247
|
+
type: BooleanConstructor;
|
|
248
|
+
};
|
|
249
|
+
load: {
|
|
250
|
+
type: PropType<import("@vuecs/list-controls").ListLoadFn<import("../../..").ListMeta<any>>>;
|
|
251
|
+
};
|
|
252
|
+
meta: {
|
|
253
|
+
type: PropType<import("../../..").ListMeta<any>>;
|
|
254
|
+
};
|
|
255
|
+
}>> & Readonly<{}>, {
|
|
256
|
+
icon: boolean;
|
|
257
|
+
busy: boolean;
|
|
258
|
+
}, import("vue").SlotsType<{
|
|
259
|
+
default: Record<string, any>;
|
|
260
|
+
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
261
|
+
FAnalysisPermissionAssignments: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
262
|
+
entityId: {
|
|
263
|
+
type: StringConstructor;
|
|
264
|
+
required: true;
|
|
265
|
+
};
|
|
266
|
+
query: {
|
|
267
|
+
type: PropType<import("rapiq").BuildInput<import("@authup/core-kit").Permission>>;
|
|
268
|
+
default(): {};
|
|
269
|
+
};
|
|
270
|
+
realmId: {
|
|
271
|
+
type: StringConstructor;
|
|
272
|
+
default: any;
|
|
273
|
+
};
|
|
274
|
+
loadOnSetup: {
|
|
275
|
+
type: BooleanConstructor;
|
|
276
|
+
default: boolean;
|
|
277
|
+
};
|
|
278
|
+
loading: {
|
|
279
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListLoadingOptions<import("@authup/core-kit").Permission>>;
|
|
280
|
+
default: boolean;
|
|
281
|
+
};
|
|
282
|
+
noMore: {
|
|
283
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListNoMoreOptions<import("@authup/core-kit").Permission>>;
|
|
284
|
+
default: boolean;
|
|
285
|
+
};
|
|
286
|
+
footer: {
|
|
287
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListFooterOptions<import("@authup/core-kit").Permission>>;
|
|
288
|
+
default: boolean;
|
|
289
|
+
};
|
|
290
|
+
header: {
|
|
291
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListHeaderOptions<import("@authup/core-kit").Permission>>;
|
|
292
|
+
default: boolean;
|
|
293
|
+
};
|
|
294
|
+
body: {
|
|
295
|
+
type: PropType<import("@authup/client-web-kit").ListBodyOptions<import("@authup/core-kit").Permission>>;
|
|
296
|
+
};
|
|
297
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
298
|
+
[key: string]: any;
|
|
299
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
300
|
+
entityId: {
|
|
301
|
+
type: StringConstructor;
|
|
302
|
+
required: true;
|
|
303
|
+
};
|
|
304
|
+
query: {
|
|
305
|
+
type: PropType<import("rapiq").BuildInput<import("@authup/core-kit").Permission>>;
|
|
306
|
+
default(): {};
|
|
307
|
+
};
|
|
308
|
+
realmId: {
|
|
309
|
+
type: StringConstructor;
|
|
310
|
+
default: any;
|
|
311
|
+
};
|
|
312
|
+
loadOnSetup: {
|
|
313
|
+
type: BooleanConstructor;
|
|
314
|
+
default: boolean;
|
|
315
|
+
};
|
|
316
|
+
loading: {
|
|
317
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListLoadingOptions<import("@authup/core-kit").Permission>>;
|
|
318
|
+
default: boolean;
|
|
319
|
+
};
|
|
320
|
+
noMore: {
|
|
321
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListNoMoreOptions<import("@authup/core-kit").Permission>>;
|
|
322
|
+
default: boolean;
|
|
323
|
+
};
|
|
324
|
+
footer: {
|
|
325
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListFooterOptions<import("@authup/core-kit").Permission>>;
|
|
326
|
+
default: boolean;
|
|
327
|
+
};
|
|
328
|
+
header: {
|
|
329
|
+
type: PropType<boolean | import("@authup/client-web-kit").ListHeaderOptions<import("@authup/core-kit").Permission>>;
|
|
330
|
+
default: boolean;
|
|
331
|
+
};
|
|
332
|
+
body: {
|
|
333
|
+
type: PropType<import("@authup/client-web-kit").ListBodyOptions<import("@authup/core-kit").Permission>>;
|
|
334
|
+
};
|
|
335
|
+
}>> & Readonly<{}>, {
|
|
336
|
+
realmId: string;
|
|
337
|
+
footer: boolean;
|
|
338
|
+
header: boolean;
|
|
339
|
+
noMore: boolean;
|
|
340
|
+
loading: boolean;
|
|
341
|
+
query: import("rapiq").BuildInput<import("@authup/core-kit").Permission>;
|
|
342
|
+
loadOnSetup: boolean;
|
|
343
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
344
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
345
|
+
export default _default;
|
|
346
|
+
//# sourceMappingURL=FAnalysisWizardStepSecurity.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FAnalysisWizardStepSecurity.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/analysis/wizard/FAnalysisWizardStepSecurity.vue"],"names":[],"mappings":"AAoFA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;cAcR,QAAQ,CAAC,QAAQ,CAAC;;;;;iBAUZ,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAVT,QAAQ,CAAC,QAAQ,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAJ9C,wBAiCG"}
|
|
@@ -9,18 +9,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
9
9
|
type: ArrayConstructor;
|
|
10
10
|
required: true;
|
|
11
11
|
};
|
|
12
|
-
fileSelectedId: {
|
|
13
|
-
type: StringConstructor;
|
|
14
|
-
};
|
|
15
12
|
}>, {
|
|
16
13
|
drop: () => Promise<void>;
|
|
17
14
|
marked: import("vue").ComputedRef<boolean>;
|
|
18
15
|
markToggle: () => void;
|
|
19
|
-
isMatch: import("vue").
|
|
20
|
-
toggle: () => void
|
|
16
|
+
isMatch: import("vue").Ref<boolean, boolean>;
|
|
17
|
+
toggle: () => Promise<void>;
|
|
21
18
|
busy: import("vue").Ref<boolean, boolean>;
|
|
22
19
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
|
-
toggle: (_entity?: AnalysisBucketFile) => true;
|
|
24
20
|
check: (_entity?: AnalysisBucketFile) => true;
|
|
25
21
|
failed: (item: Error) => true;
|
|
26
22
|
created: (item: AnalysisBucketFile) => true;
|
|
@@ -36,15 +32,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
36
32
|
type: ArrayConstructor;
|
|
37
33
|
required: true;
|
|
38
34
|
};
|
|
39
|
-
fileSelectedId: {
|
|
40
|
-
type: StringConstructor;
|
|
41
|
-
};
|
|
42
35
|
}>> & Readonly<{
|
|
43
36
|
onFailed?: (item: Error) => any;
|
|
44
37
|
onCreated?: (item: AnalysisBucketFile) => any;
|
|
45
38
|
onUpdated?: (item: AnalysisBucketFile) => any;
|
|
46
39
|
onCheck?: (_entity?: AnalysisBucketFile) => any;
|
|
47
|
-
onToggle?: (_entity?: AnalysisBucketFile) => any;
|
|
48
40
|
onDeleted?: (item: AnalysisBucketFile) => any;
|
|
49
41
|
onResolved?: (_item: AnalysisBucketFile) => any;
|
|
50
42
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FAnalysisBucketFile.vue.d.ts","sourceRoot":"","sources":["../../../src/components/analysis-bucket-file/FAnalysisBucketFile.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FAnalysisBucketFile.vue.d.ts","sourceRoot":"","sources":["../../../src/components/analysis-bucket-file/FAnalysisBucketFile.vue"],"names":[],"mappings":"AA4IA,OAAO,KAAK,EACR,kBAAkB,EACrB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;cAYR,QAAQ,CAAC,kBAAkB,CAAC;;;;;;;;;;;;;;;sBAW9B,kBAAkB;;;;;;;;cAXhB,QAAQ,CAAC,kBAAkB,CAAC;;;;;;;;;;;;;;;AAHxD,wBAiEG"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { AnalysisBucket, AnalysisBucketFile } from '@privateaim/core-kit';
|
|
2
|
-
import type { PropType
|
|
2
|
+
import type { PropType } from 'vue';
|
|
3
3
|
import type { BuildInput } from 'rapiq';
|
|
4
4
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5
5
|
entity: {
|
|
@@ -10,9 +10,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
10
10
|
type: PropType<AnalysisBucketFile>;
|
|
11
11
|
};
|
|
12
12
|
}>, {
|
|
13
|
-
busy: Ref<boolean, boolean>;
|
|
14
|
-
selected: Ref<string[], string[]>;
|
|
15
|
-
selectAll: Ref<boolean, boolean>;
|
|
13
|
+
busy: import("vue").Ref<boolean, boolean>;
|
|
14
|
+
selected: import("vue").Ref<string[], string[]>;
|
|
15
|
+
selectAll: import("vue").Ref<boolean, boolean>;
|
|
16
16
|
dropSelected: () => Promise<void>;
|
|
17
17
|
selectAllFiles: () => void;
|
|
18
18
|
handleCreated: (entity: AnalysisBucketFile) => void;
|
|
@@ -22,10 +22,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
22
22
|
handleUploaded: () => void;
|
|
23
23
|
handleFileUploaded: (entity: AnalysisBucketFile) => void;
|
|
24
24
|
toggleFile: (file: AnalysisBucketFile) => void;
|
|
25
|
-
|
|
26
|
-
entrypointFileId: import("vue").ComputedRef<string>;
|
|
27
|
-
changeEntryPointFile: (file: AnalysisBucketFile) => Promise<void>;
|
|
28
|
-
fileListNode: Ref<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
25
|
+
fileListNode: import("vue").Ref<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
29
26
|
realmId: {
|
|
30
27
|
type: StringConstructor;
|
|
31
28
|
default: any;
|
|
@@ -263,8 +260,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
263
260
|
loading: undefined;
|
|
264
261
|
}>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
|
265
262
|
fileListQuery: import("vue").ComputedRef<BuildInput<AnalysisBucketFile>>;
|
|
266
|
-
modal: Ref<boolean, boolean>;
|
|
263
|
+
modal: import("vue").Ref<boolean, boolean>;
|
|
267
264
|
toggleModal: () => void;
|
|
265
|
+
entrypointFile: import("vue").Ref<AnalysisBucketFile, AnalysisBucketFile>;
|
|
268
266
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("failed" | "created" | "updated" | "deleted" | "uploaded" | "setEntrypointFile")[], "failed" | "created" | "updated" | "deleted" | "uploaded" | "setEntrypointFile", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
269
267
|
entity: {
|
|
270
268
|
type: PropType<AnalysisBucket>;
|
|
@@ -1371,10 +1369,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1371
1369
|
required: true;
|
|
1372
1370
|
};
|
|
1373
1371
|
}>, {
|
|
1374
|
-
directoryMode: Ref<boolean, boolean>;
|
|
1375
|
-
busy: Ref<boolean, boolean>;
|
|
1376
|
-
vNode: Ref<string, string>;
|
|
1377
|
-
tempFiles: Ref<{
|
|
1372
|
+
directoryMode: import("vue").Ref<boolean, boolean>;
|
|
1373
|
+
busy: import("vue").Ref<boolean, boolean>;
|
|
1374
|
+
vNode: import("vue").Ref<string, string>;
|
|
1375
|
+
tempFiles: import("vue").Ref<{
|
|
1378
1376
|
readonly lastModified: number;
|
|
1379
1377
|
readonly name: string;
|
|
1380
1378
|
readonly webkitRelativePath: string;
|
|
@@ -1565,18 +1563,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1565
1563
|
type: ArrayConstructor;
|
|
1566
1564
|
required: true;
|
|
1567
1565
|
};
|
|
1568
|
-
fileSelectedId: {
|
|
1569
|
-
type: StringConstructor;
|
|
1570
|
-
};
|
|
1571
1566
|
}>, {
|
|
1572
1567
|
drop: () => Promise<void>;
|
|
1573
1568
|
marked: import("vue").ComputedRef<boolean>;
|
|
1574
1569
|
markToggle: () => void;
|
|
1575
|
-
isMatch: import("vue").
|
|
1576
|
-
toggle: () => void
|
|
1577
|
-
busy: Ref<boolean, boolean>;
|
|
1570
|
+
isMatch: import("vue").Ref<boolean, boolean>;
|
|
1571
|
+
toggle: () => Promise<void>;
|
|
1572
|
+
busy: import("vue").Ref<boolean, boolean>;
|
|
1578
1573
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1579
|
-
toggle: (_entity?: AnalysisBucketFile) => true;
|
|
1580
1574
|
check: (_entity?: AnalysisBucketFile) => true;
|
|
1581
1575
|
failed: (item: Error) => true;
|
|
1582
1576
|
created: (item: AnalysisBucketFile) => true;
|
|
@@ -1592,15 +1586,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1592
1586
|
type: ArrayConstructor;
|
|
1593
1587
|
required: true;
|
|
1594
1588
|
};
|
|
1595
|
-
fileSelectedId: {
|
|
1596
|
-
type: StringConstructor;
|
|
1597
|
-
};
|
|
1598
1589
|
}>> & Readonly<{
|
|
1599
1590
|
onFailed?: (item: Error) => any;
|
|
1600
1591
|
onCreated?: (item: AnalysisBucketFile) => any;
|
|
1601
1592
|
onUpdated?: (item: AnalysisBucketFile) => any;
|
|
1602
1593
|
onCheck?: (_entity?: AnalysisBucketFile) => any;
|
|
1603
|
-
onToggle?: (_entity?: AnalysisBucketFile) => any;
|
|
1604
1594
|
onDeleted?: (item: AnalysisBucketFile) => any;
|
|
1605
1595
|
onResolved?: (_item: AnalysisBucketFile) => any;
|
|
1606
1596
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FAnalysisBucketFileManager.vue.d.ts","sourceRoot":"","sources":["../../../src/components/analysis-bucket-file/FAnalysisBucketFileManager.vue"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"FAnalysisBucketFileManager.vue.d.ts","sourceRoot":"","sources":["../../../src/components/analysis-bucket-file/FAnalysisBucketFileManager.vue"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FAnalysisNodeManager.vue.d.ts","sourceRoot":"","sources":["../../../src/components/analysis-node/FAnalysisNodeManager.vue"],"names":[],"mappings":"AAAA,OA2RO,EACH,KAAK,QAAQ,EAIhB,MAAM,KAAK,CAAC;AACb,OAAO,KAAK,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACnE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;;;cAqBZ,QAAQ,CAAC,QAAQ,CAAC;;;;;;4BA6BP,YAAY;4BAWZ,YAAY;4BAYZ,YAAY;sBAYlB,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAhEV,QAAQ,CAAC,QAAQ,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"FAnalysisNodeManager.vue.d.ts","sourceRoot":"","sources":["../../../src/components/analysis-node/FAnalysisNodeManager.vue"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { AnalysisPermission } from '@privateaim/core-kit';
|
|
2
|
+
export declare const FAnalysisPermissionAssignment: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
analysisId: StringConstructor;
|
|
4
|
+
permissionId: StringConstructor;
|
|
5
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("../../core").EntityManagerEventsType<AnalysisPermission>, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
+
analysisId: StringConstructor;
|
|
9
|
+
permissionId: StringConstructor;
|
|
10
|
+
}>> & Readonly<{
|
|
11
|
+
onFailed?: (item: Error) => any;
|
|
12
|
+
onCreated?: (item: AnalysisPermission) => any;
|
|
13
|
+
onUpdated?: (item: AnalysisPermission) => any;
|
|
14
|
+
onDeleted?: (item: AnalysisPermission) => any;
|
|
15
|
+
onResolved?: (_item: AnalysisPermission) => any;
|
|
16
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
17
|
+
export default FAnalysisPermissionAssignment;
|
|
18
|
+
//# sourceMappingURL=FAnalysisPermissionAssignment.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FAnalysisPermissionAssignment.d.ts","sourceRoot":"","sources":["../../../src/components/analysis-permission/FAnalysisPermissionAssignment.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAK/D,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;iFA0CxC,CAAC;AAEH,eAAe,6BAA6B,CAAC"}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import type { Permission } from '@authup/core-kit';
|
|
2
|
+
export declare const FAnalysisPermissionAssignments: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
entityId: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
query: {
|
|
8
|
+
type: import("vue").PropType<import("rapiq").BuildInput<Permission>>;
|
|
9
|
+
default(): {};
|
|
10
|
+
};
|
|
11
|
+
realmId: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: any;
|
|
14
|
+
};
|
|
15
|
+
loadOnSetup: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
loading: {
|
|
20
|
+
type: import("vue").PropType<boolean | import("@authup/client-web-kit").ListLoadingOptions<Permission>>;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
23
|
+
noMore: {
|
|
24
|
+
type: import("vue").PropType<boolean | import("@authup/client-web-kit").ListNoMoreOptions<Permission>>;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
footer: {
|
|
28
|
+
type: import("vue").PropType<boolean | import("@authup/client-web-kit").ListFooterOptions<Permission>>;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
header: {
|
|
32
|
+
type: import("vue").PropType<boolean | import("@authup/client-web-kit").ListHeaderOptions<Permission>>;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
body: {
|
|
36
|
+
type: import("vue").PropType<import("@authup/client-web-kit").ListBodyOptions<Permission>>;
|
|
37
|
+
};
|
|
38
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
39
|
+
[key: string]: any;
|
|
40
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
41
|
+
entityId: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
45
|
+
query: {
|
|
46
|
+
type: import("vue").PropType<import("rapiq").BuildInput<Permission>>;
|
|
47
|
+
default(): {};
|
|
48
|
+
};
|
|
49
|
+
realmId: {
|
|
50
|
+
type: StringConstructor;
|
|
51
|
+
default: any;
|
|
52
|
+
};
|
|
53
|
+
loadOnSetup: {
|
|
54
|
+
type: BooleanConstructor;
|
|
55
|
+
default: boolean;
|
|
56
|
+
};
|
|
57
|
+
loading: {
|
|
58
|
+
type: import("vue").PropType<boolean | import("@authup/client-web-kit").ListLoadingOptions<Permission>>;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
61
|
+
noMore: {
|
|
62
|
+
type: import("vue").PropType<boolean | import("@authup/client-web-kit").ListNoMoreOptions<Permission>>;
|
|
63
|
+
default: boolean;
|
|
64
|
+
};
|
|
65
|
+
footer: {
|
|
66
|
+
type: import("vue").PropType<boolean | import("@authup/client-web-kit").ListFooterOptions<Permission>>;
|
|
67
|
+
default: boolean;
|
|
68
|
+
};
|
|
69
|
+
header: {
|
|
70
|
+
type: import("vue").PropType<boolean | import("@authup/client-web-kit").ListHeaderOptions<Permission>>;
|
|
71
|
+
default: boolean;
|
|
72
|
+
};
|
|
73
|
+
body: {
|
|
74
|
+
type: import("vue").PropType<import("@authup/client-web-kit").ListBodyOptions<Permission>>;
|
|
75
|
+
};
|
|
76
|
+
}>> & Readonly<{}>, {
|
|
77
|
+
realmId: string;
|
|
78
|
+
footer: boolean;
|
|
79
|
+
header: boolean;
|
|
80
|
+
noMore: boolean;
|
|
81
|
+
loading: boolean;
|
|
82
|
+
query: import("rapiq").BuildInput<Permission>;
|
|
83
|
+
loadOnSetup: boolean;
|
|
84
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
85
|
+
export default FAnalysisPermissionAssignments;
|
|
86
|
+
//# sourceMappingURL=FAnalysisPermissionAssignments.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FAnalysisPermissionAssignments.d.ts","sourceRoot":"","sources":["../../../src/components/analysis-permission/FAnalysisPermissionAssignments.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAOnD,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EA+BzC,CAAC;AAEH,eAAe,8BAA8B,CAAC"}
|