@hcengineering/view 0.7.0
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/lib/index.js +299 -0
- package/lib/index.js.map +7 -0
- package/lib/types.js +31 -0
- package/lib/types.js.map +7 -0
- package/lib/utils.js +45 -0
- package/lib/utils.js.map +7 -0
- package/package.json +49 -0
- package/tsconfig.json +12 -0
- package/types/index.d.ts +334 -0
- package/types/index.d.ts.map +1 -0
- package/types/types.d.ts +653 -0
- package/types/types.d.ts.map +1 -0
- package/types/utils.d.ts +5 -0
- package/types/utils.d.ts.map +1 -0
package/types/index.d.ts
ADDED
|
@@ -0,0 +1,334 @@
|
|
|
1
|
+
import { Class, Doc, DocumentQuery, FindOptions, Mixin, Ref } from '@hcengineering/core';
|
|
2
|
+
import { Asset, IntlString, Plugin, Resource } from '@hcengineering/platform';
|
|
3
|
+
import { AnyComponent, PopupAlignment, PopupPosAlignment } from '@hcengineering/ui/src/types';
|
|
4
|
+
import { Action, ActionCategory, ActivityAttributePresenter, Aggregation, AllValuesFunc, ArrayEditor, AttributeEditor, AttributeFilter, AttributeFilterPresenter, AttributePresenter, ClassFilters, ClassSortFuncs, CollectionEditor, CollectionPresenter, FilterMode, FilteredView, Groupping, IgnoreActions, InlineAttributEditor, LinkPresenter, LinkProvider, ListHeaderExtra, ListItemPresenter, ObjectEditor, ObjectEditorFooter, ObjectEditorHeader, ObjectFactory, ObjectIcon, ObjectIdentifier, ObjectPanel, ObjectPresenter, ObjectTitle, ObjectTooltip, ObjectValidator, ReferenceObjectProvider, AttrPresenter, PreviewPresenter, SpaceHeader, SpaceName, SpacePresenter, ViewAction, Viewlet, ViewletDescriptor, ViewletPreference, LinkIdProvider, CustomObjectLinkProvider, OpenDocumentFunction } from './types';
|
|
5
|
+
export * from './types';
|
|
6
|
+
export * from './utils';
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export declare const viewId: Plugin;
|
|
11
|
+
/**
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
declare const view: {
|
|
15
|
+
mixin: {
|
|
16
|
+
ClassFilters: Ref<Mixin<ClassFilters>>;
|
|
17
|
+
AttributeFilter: Ref<Mixin<AttributeFilter>>;
|
|
18
|
+
AttributeEditor: Ref<Mixin<AttributeEditor>>;
|
|
19
|
+
CollectionPresenter: Ref<Mixin<CollectionPresenter>>;
|
|
20
|
+
CollectionEditor: Ref<Mixin<CollectionEditor>>;
|
|
21
|
+
InlineAttributEditor: Ref<Mixin<InlineAttributEditor>>;
|
|
22
|
+
ArrayEditor: Ref<Mixin<ArrayEditor>>;
|
|
23
|
+
AttributePresenter: Ref<Mixin<AttributePresenter>>;
|
|
24
|
+
ActivityAttributePresenter: Ref<Mixin<ActivityAttributePresenter>>;
|
|
25
|
+
ListItemPresenter: Ref<Mixin<ListItemPresenter>>;
|
|
26
|
+
ObjectEditor: Ref<Mixin<ObjectEditor>>;
|
|
27
|
+
ObjectPresenter: Ref<Mixin<ObjectPresenter>>;
|
|
28
|
+
ObjectEditorHeader: Ref<Mixin<ObjectEditorHeader>>;
|
|
29
|
+
ObjectEditorFooter: Ref<Mixin<ObjectEditorFooter>>;
|
|
30
|
+
ObjectPanelFooter: Ref<Mixin<ObjectEditorFooter>>;
|
|
31
|
+
ObjectValidator: Ref<Mixin<ObjectValidator>>;
|
|
32
|
+
ObjectFactory: Ref<Mixin<ObjectFactory>>;
|
|
33
|
+
ObjectTitle: Ref<Mixin<ObjectTitle>>;
|
|
34
|
+
ObjectIdentifier: Ref<Mixin<ObjectIdentifier>>;
|
|
35
|
+
ReferenceObjectProvider: Ref<Mixin<ReferenceObjectProvider>>;
|
|
36
|
+
ObjectTooltip: Ref<Mixin<ObjectTooltip>>;
|
|
37
|
+
SpaceHeader: Ref<Mixin<SpaceHeader>>;
|
|
38
|
+
SpaceName: Ref<Mixin<SpaceName>>;
|
|
39
|
+
IgnoreActions: Ref<Mixin<IgnoreActions>>;
|
|
40
|
+
PreviewPresenter: Ref<Mixin<PreviewPresenter>>;
|
|
41
|
+
ListHeaderExtra: Ref<Mixin<ListHeaderExtra>>;
|
|
42
|
+
SortFuncs: Ref<Mixin<ClassSortFuncs>>;
|
|
43
|
+
AllValuesFunc: Ref<Mixin<AllValuesFunc>>;
|
|
44
|
+
ObjectPanel: Ref<Mixin<ObjectPanel>>;
|
|
45
|
+
LinkProvider: Ref<Mixin<LinkProvider>>;
|
|
46
|
+
LinkIdProvider: Ref<Mixin<LinkIdProvider>>;
|
|
47
|
+
SpacePresenter: Ref<Mixin<SpacePresenter>>;
|
|
48
|
+
AttributeFilterPresenter: Ref<Mixin<AttributeFilterPresenter>>;
|
|
49
|
+
Aggregation: Ref<Mixin<Aggregation>>;
|
|
50
|
+
Groupping: Ref<Mixin<Groupping>>;
|
|
51
|
+
ObjectIcon: Ref<Mixin<ObjectIcon>>;
|
|
52
|
+
CustomObjectLinkProvider: Ref<Mixin<CustomObjectLinkProvider>>;
|
|
53
|
+
};
|
|
54
|
+
class: {
|
|
55
|
+
ViewletPreference: Ref<Class<ViewletPreference>>;
|
|
56
|
+
ViewletDescriptor: Ref<Class<ViewletDescriptor>>;
|
|
57
|
+
Viewlet: Ref<Class<Viewlet>>;
|
|
58
|
+
Action: Ref<Class<Action>>;
|
|
59
|
+
ActionCategory: Ref<Class<ActionCategory>>;
|
|
60
|
+
LinkPresenter: Ref<Class<LinkPresenter>>;
|
|
61
|
+
FilterMode: Ref<Class<FilterMode>>;
|
|
62
|
+
FilteredView: Ref<Class<FilteredView>>;
|
|
63
|
+
AttrPresenter: Ref<Class<AttrPresenter>>;
|
|
64
|
+
};
|
|
65
|
+
action: {
|
|
66
|
+
Delete: Ref<Action>;
|
|
67
|
+
Archive: Ref<Action>;
|
|
68
|
+
UnArchive: Ref<Action>;
|
|
69
|
+
Join: Ref<Action>;
|
|
70
|
+
Leave: Ref<Action>;
|
|
71
|
+
Move: Ref<Action>;
|
|
72
|
+
MoveLeft: Ref<Action>;
|
|
73
|
+
MoveRight: Ref<Action>;
|
|
74
|
+
MoveUp: Ref<Action>;
|
|
75
|
+
MoveDown: Ref<Action>;
|
|
76
|
+
SelectItem: Ref<Action>;
|
|
77
|
+
SelectItemAll: Ref<Action>;
|
|
78
|
+
SelectItemNone: Ref<Action>;
|
|
79
|
+
SelectUp: Ref<Action>;
|
|
80
|
+
SelectDown: Ref<Action>;
|
|
81
|
+
ShowPreview: Ref<Action>;
|
|
82
|
+
ShowActions: Ref<Action>;
|
|
83
|
+
Preview: Ref<Action>;
|
|
84
|
+
Open: Ref<Action>;
|
|
85
|
+
OpenInNewTab: Ref<Action>;
|
|
86
|
+
RemoveRelation: Ref<Action>;
|
|
87
|
+
CopyLink: Ref<Action<Doc, any>>;
|
|
88
|
+
};
|
|
89
|
+
viewlet: {
|
|
90
|
+
Table: Ref<ViewletDescriptor>;
|
|
91
|
+
List: Ref<ViewletDescriptor>;
|
|
92
|
+
MasterDetail: Ref<ViewletDescriptor>;
|
|
93
|
+
Tree: Ref<ViewletDescriptor>;
|
|
94
|
+
Document: Ref<ViewletDescriptor>;
|
|
95
|
+
};
|
|
96
|
+
component: {
|
|
97
|
+
ActionsPopup: AnyComponent;
|
|
98
|
+
ObjectPresenter: AnyComponent;
|
|
99
|
+
EditDoc: AnyComponent;
|
|
100
|
+
SpacePresenter: AnyComponent;
|
|
101
|
+
BooleanTruePresenter: AnyComponent;
|
|
102
|
+
ValueSelector: AnyComponent;
|
|
103
|
+
GrowPresenter: AnyComponent;
|
|
104
|
+
DividerPresenter: AnyComponent;
|
|
105
|
+
IconWithEmoji: AnyComponent;
|
|
106
|
+
AttachedDocPanel: AnyComponent;
|
|
107
|
+
ObjectMention: AnyComponent;
|
|
108
|
+
SearchSelector: AnyComponent;
|
|
109
|
+
FoldersBrowser: AnyComponent;
|
|
110
|
+
PersonIdPresenter: AnyComponent;
|
|
111
|
+
PersonIdFilter: AnyComponent;
|
|
112
|
+
RolePresenter: AnyComponent;
|
|
113
|
+
ReadOnlyNotification: AnyComponent;
|
|
114
|
+
ForbiddenNotification: AnyComponent;
|
|
115
|
+
DatePresenter: AnyComponent;
|
|
116
|
+
DateEditor: AnyComponent;
|
|
117
|
+
};
|
|
118
|
+
ids: {
|
|
119
|
+
IconWithEmoji: Asset;
|
|
120
|
+
};
|
|
121
|
+
string: {
|
|
122
|
+
CustomizeView: IntlString;
|
|
123
|
+
LabelNA: IntlString;
|
|
124
|
+
View: IntlString;
|
|
125
|
+
FilteredViews: IntlString;
|
|
126
|
+
NewFilteredView: IntlString;
|
|
127
|
+
FilteredViewName: IntlString;
|
|
128
|
+
Move: IntlString;
|
|
129
|
+
MoveClass: IntlString;
|
|
130
|
+
SelectToMove: IntlString;
|
|
131
|
+
Cancel: IntlString;
|
|
132
|
+
List: IntlString;
|
|
133
|
+
Grid: IntlString;
|
|
134
|
+
AddSavedView: IntlString;
|
|
135
|
+
Timeline: IntlString;
|
|
136
|
+
Public: IntlString;
|
|
137
|
+
Hide: IntlString;
|
|
138
|
+
Rename: IntlString;
|
|
139
|
+
Assigned: IntlString;
|
|
140
|
+
Open: IntlString;
|
|
141
|
+
OpenInNewTab: IntlString;
|
|
142
|
+
Created: IntlString;
|
|
143
|
+
Delete: IntlString;
|
|
144
|
+
Then: IntlString;
|
|
145
|
+
Or: IntlString;
|
|
146
|
+
Subscribed: IntlString;
|
|
147
|
+
HyperlinkPlaceholder: IntlString;
|
|
148
|
+
CopyToClipboard: IntlString;
|
|
149
|
+
NoGrouping: IntlString;
|
|
150
|
+
Type: IntlString;
|
|
151
|
+
UnArchive: IntlString;
|
|
152
|
+
Archive: IntlString;
|
|
153
|
+
Save: IntlString;
|
|
154
|
+
PublicView: IntlString;
|
|
155
|
+
Archived: IntlString;
|
|
156
|
+
MoreActions: IntlString;
|
|
157
|
+
Pin: IntlString;
|
|
158
|
+
Unpin: IntlString;
|
|
159
|
+
Join: IntlString;
|
|
160
|
+
Leave: IntlString;
|
|
161
|
+
Copied: IntlString;
|
|
162
|
+
And: IntlString;
|
|
163
|
+
Title: IntlString;
|
|
164
|
+
DeleteObject: IntlString;
|
|
165
|
+
DeleteObjectConfirm: IntlString;
|
|
166
|
+
RemoveRelationConfirmation: IntlString;
|
|
167
|
+
RemoveRelation: IntlString;
|
|
168
|
+
MasterDetail: IntlString;
|
|
169
|
+
Tree: IntlString;
|
|
170
|
+
Document: IntlString;
|
|
171
|
+
Loading: IntlString;
|
|
172
|
+
ReadOnlyWarningTitle: IntlString;
|
|
173
|
+
ReadOnlyWarningMessage: IntlString;
|
|
174
|
+
ReadOnlySignUp: IntlString;
|
|
175
|
+
ReadOnlyJoinWorkspace: IntlString;
|
|
176
|
+
PermissionWarningTitle: IntlString;
|
|
177
|
+
PermissionWarningMessage: IntlString;
|
|
178
|
+
Icon: IntlString;
|
|
179
|
+
Select: IntlString;
|
|
180
|
+
Color: IntlString;
|
|
181
|
+
AutomationOnly: IntlString;
|
|
182
|
+
};
|
|
183
|
+
icon: {
|
|
184
|
+
Table: Asset;
|
|
185
|
+
List: Asset;
|
|
186
|
+
Card: Asset;
|
|
187
|
+
Timeline: Asset;
|
|
188
|
+
Delete: Asset;
|
|
189
|
+
MoreH: Asset;
|
|
190
|
+
Move: Asset;
|
|
191
|
+
Archive: Asset;
|
|
192
|
+
Statuses: Asset;
|
|
193
|
+
Setting: Asset;
|
|
194
|
+
Open: Asset;
|
|
195
|
+
Edit: Asset;
|
|
196
|
+
CopyId: Asset;
|
|
197
|
+
CopyLink: Asset;
|
|
198
|
+
ArrowRight: Asset;
|
|
199
|
+
Views: Asset;
|
|
200
|
+
Pin: Asset;
|
|
201
|
+
Model: Asset;
|
|
202
|
+
DevModel: Asset;
|
|
203
|
+
ViewButton: Asset;
|
|
204
|
+
Filter: Asset;
|
|
205
|
+
Configure: Asset;
|
|
206
|
+
Database: Asset;
|
|
207
|
+
Star: Asset;
|
|
208
|
+
Eye: Asset;
|
|
209
|
+
EyeCrossed: Asset;
|
|
210
|
+
Bubble: Asset;
|
|
211
|
+
CheckCircle: Asset;
|
|
212
|
+
Add: Asset;
|
|
213
|
+
Image: Asset;
|
|
214
|
+
Table2: Asset;
|
|
215
|
+
CodeBlock: Asset;
|
|
216
|
+
SeparatorLine: Asset;
|
|
217
|
+
Circle: Asset;
|
|
218
|
+
Join: Asset;
|
|
219
|
+
Leave: Asset;
|
|
220
|
+
Copy: Asset;
|
|
221
|
+
TodoList: Asset;
|
|
222
|
+
DetailsFilled: Asset;
|
|
223
|
+
Translate: Asset;
|
|
224
|
+
Undo: Asset;
|
|
225
|
+
Video: Asset;
|
|
226
|
+
Audio: Asset;
|
|
227
|
+
File: Asset;
|
|
228
|
+
PinTack: Asset;
|
|
229
|
+
Feather: Asset;
|
|
230
|
+
MasterDetail: Asset;
|
|
231
|
+
Tree: Asset;
|
|
232
|
+
Document: Asset;
|
|
233
|
+
};
|
|
234
|
+
category: {
|
|
235
|
+
General: Ref<ActionCategory>;
|
|
236
|
+
GeneralNavigation: Ref<ActionCategory>;
|
|
237
|
+
Navigation: Ref<ActionCategory>;
|
|
238
|
+
Editor: Ref<ActionCategory>;
|
|
239
|
+
MarkdownFormatting: Ref<ActionCategory>;
|
|
240
|
+
};
|
|
241
|
+
filter: {
|
|
242
|
+
FilterArrayAll: Ref<FilterMode>;
|
|
243
|
+
FilterArrayAny: Ref<FilterMode>;
|
|
244
|
+
FilterObjectIn: Ref<FilterMode>;
|
|
245
|
+
FilterObjectNin: Ref<FilterMode>;
|
|
246
|
+
FilterValueIn: Ref<FilterMode>;
|
|
247
|
+
FilterValueNin: Ref<FilterMode>;
|
|
248
|
+
FilterBefore: Ref<FilterMode>;
|
|
249
|
+
FilterAfter: Ref<FilterMode>;
|
|
250
|
+
FilterContains: Ref<FilterMode>;
|
|
251
|
+
FilterNestedMatch: Ref<FilterMode>;
|
|
252
|
+
FilterNestedDontMatch: Ref<FilterMode>;
|
|
253
|
+
FilterDateOutdated: Ref<FilterMode>;
|
|
254
|
+
FilterDateToday: Ref<FilterMode>;
|
|
255
|
+
FilterDateYesterday: Ref<FilterMode>;
|
|
256
|
+
FilterDateWeek: Ref<FilterMode>;
|
|
257
|
+
FilterDateNextW: Ref<FilterMode>;
|
|
258
|
+
FilterDateM: Ref<FilterMode>;
|
|
259
|
+
FilterDateNextM: Ref<FilterMode>;
|
|
260
|
+
FilterDateNotSpecified: Ref<FilterMode>;
|
|
261
|
+
FilterDateCustom: Ref<FilterMode>;
|
|
262
|
+
FilterDateBetween: Ref<FilterMode>;
|
|
263
|
+
};
|
|
264
|
+
popup: {
|
|
265
|
+
PositionElementAlignment: Resource<(e?: Event) => PopupAlignment | undefined>;
|
|
266
|
+
};
|
|
267
|
+
function: {
|
|
268
|
+
OpenDocument: Resource<OpenDocumentFunction>;
|
|
269
|
+
};
|
|
270
|
+
actionImpl: {
|
|
271
|
+
CopyTextToClipboard: ViewAction<{
|
|
272
|
+
textProvider: Resource<(doc: Doc, props: Record<string, any>) => Promise<string>>;
|
|
273
|
+
props?: Record<string, any>;
|
|
274
|
+
}>;
|
|
275
|
+
UpdateDocument: ViewAction<{
|
|
276
|
+
key: string;
|
|
277
|
+
value: any;
|
|
278
|
+
ask?: boolean;
|
|
279
|
+
label?: IntlString;
|
|
280
|
+
message?: IntlString;
|
|
281
|
+
}>;
|
|
282
|
+
ShowPanel: ViewAction<{
|
|
283
|
+
component?: AnyComponent;
|
|
284
|
+
element?: PopupPosAlignment;
|
|
285
|
+
rightSection?: AnyComponent;
|
|
286
|
+
}>;
|
|
287
|
+
ShowPopup: ViewAction<{
|
|
288
|
+
component: AnyComponent;
|
|
289
|
+
element?: PopupPosAlignment | Resource<(e?: Event) => PopupAlignment | undefined>;
|
|
290
|
+
_id?: string;
|
|
291
|
+
_class?: string;
|
|
292
|
+
_space?: string;
|
|
293
|
+
value?: string;
|
|
294
|
+
values?: string;
|
|
295
|
+
props?: Record<string, any>;
|
|
296
|
+
fillProps?: Record<string, string>;
|
|
297
|
+
}>;
|
|
298
|
+
ShowEditor: ViewAction<{
|
|
299
|
+
element?: PopupPosAlignment | Resource<(e?: Event) => PopupAlignment | undefined>;
|
|
300
|
+
attribute: string;
|
|
301
|
+
props?: Record<string, any>;
|
|
302
|
+
}>;
|
|
303
|
+
ValueSelector: ViewAction<{
|
|
304
|
+
attribute: string;
|
|
305
|
+
_class?: Ref<Class<Doc>>;
|
|
306
|
+
query?: DocumentQuery<Doc>;
|
|
307
|
+
queryOptions?: FindOptions<Doc>;
|
|
308
|
+
fillQuery?: Record<string, string>;
|
|
309
|
+
docMatches?: string[];
|
|
310
|
+
searchField?: string;
|
|
311
|
+
castRequest?: Ref<Mixin<Doc>>;
|
|
312
|
+
values?: {
|
|
313
|
+
icon?: Asset;
|
|
314
|
+
label: IntlString;
|
|
315
|
+
id: number | string;
|
|
316
|
+
}[];
|
|
317
|
+
placeholder?: IntlString;
|
|
318
|
+
}>;
|
|
319
|
+
AttributeSelector: ViewAction<{
|
|
320
|
+
attribute: string;
|
|
321
|
+
isAction?: boolean;
|
|
322
|
+
fillProps?: Record<string, string>;
|
|
323
|
+
values?: {
|
|
324
|
+
icon?: Asset;
|
|
325
|
+
label: IntlString;
|
|
326
|
+
id: number | string;
|
|
327
|
+
}[];
|
|
328
|
+
valueKey?: string;
|
|
329
|
+
}>;
|
|
330
|
+
Delete: ViewAction;
|
|
331
|
+
};
|
|
332
|
+
};
|
|
333
|
+
export default view;
|
|
334
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAE,KAAK,EAAE,GAAG,EAAE,aAAa,EAAE,WAAW,EAAE,KAAK,EAAE,GAAG,EAAE,MAAM,qBAAqB,CAAA;AACxF,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAU,MAAM,yBAAyB,CAAA;AACrF,OAAO,EAAE,YAAY,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAC7F,OAAO,EACL,MAAM,EACN,cAAc,EACd,0BAA0B,EAC1B,WAAW,EACX,aAAa,EACb,WAAW,EACX,eAAe,EACf,eAAe,EACf,wBAAwB,EACxB,kBAAkB,EAClB,YAAY,EACZ,cAAc,EACd,gBAAgB,EAChB,mBAAmB,EACnB,UAAU,EACV,YAAY,EACZ,SAAS,EACT,aAAa,EACb,oBAAoB,EACpB,aAAa,EACb,YAAY,EACZ,eAAe,EACf,iBAAiB,EACjB,YAAY,EACZ,kBAAkB,EAClB,kBAAkB,EAClB,aAAa,EACb,UAAU,EACV,gBAAgB,EAChB,WAAW,EACX,eAAe,EACf,WAAW,EACX,aAAa,EACb,eAAe,EACf,uBAAuB,EACvB,aAAa,EACb,gBAAgB,EAChB,WAAW,EACX,SAAS,EACT,cAAc,EACd,UAAU,EACV,OAAO,EACP,iBAAiB,EACjB,iBAAiB,EACjB,cAAc,EACd,wBAAwB,EACxB,oBAAoB,EACrB,MAAM,SAAS,CAAA;AAEhB,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AAEvB;;GAEG;AACH,eAAO,MAAM,MAAM,EAAa,MAAM,CAAA;AAEtC;;GAEG;AACH,QAAA,MAAM,IAAI;;sBAEc,GAAG,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;yBACrB,GAAG,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC;yBAC3B,GAAG,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC;6BACvB,GAAG,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC;0BAClC,GAAG,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC;8BACxB,GAAG,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC;qBACzC,GAAG,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;4BAChB,GAAG,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC;oCACtB,GAAG,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAAC;2BAC/C,GAAG,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC;sBAClC,GAAG,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;yBACrB,GAAG,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC;4BACxB,GAAG,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC;4BAC9B,GAAG,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC;2BAC/B,GAAG,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC;yBAChC,GAAG,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC;uBAC7B,GAAG,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;qBAC3B,GAAG,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;0BAClB,GAAG,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC;iCACrB,GAAG,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC;uBAC7C,GAAG,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;qBAC3B,GAAG,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;mBACzB,GAAG,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;uBACjB,GAAG,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;0BACtB,GAAG,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC;yBAC7B,GAAG,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC;mBACjC,GAAG,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;uBACtB,GAAG,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;qBAC3B,GAAG,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;sBACtB,GAAG,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;wBACtB,GAAG,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;wBAC1B,GAAG,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;kCAChB,GAAG,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAC;qBACjD,GAAG,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;mBACzB,GAAG,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;oBACpB,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC;kCACR,GAAG,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAC;;;2BAG3C,GAAG,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC;2BAC7B,GAAG,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC;iBACvC,GAAG,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;gBACpB,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;wBACV,GAAG,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;uBAC3B,GAAG,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;oBAC5B,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC;sBACpB,GAAG,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;uBACvB,GAAG,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;;;gBAGhC,GAAG,CAAC,MAAM,CAAC;iBACV,GAAG,CAAC,MAAM,CAAC;mBACT,GAAG,CAAC,MAAM,CAAC;cAChB,GAAG,CAAC,MAAM,CAAC;eACV,GAAG,CAAC,MAAM,CAAC;cACZ,GAAG,CAAC,MAAM,CAAC;kBACP,GAAG,CAAC,MAAM,CAAC;mBACV,GAAG,CAAC,MAAM,CAAC;gBACd,GAAG,CAAC,MAAM,CAAC;kBACT,GAAG,CAAC,MAAM,CAAC;oBAET,GAAG,CAAC,MAAM,CAAC;uBACR,GAAG,CAAC,MAAM,CAAC;wBACV,GAAG,CAAC,MAAM,CAAC;kBACjB,GAAG,CAAC,MAAM,CAAC;oBACT,GAAG,CAAC,MAAM,CAAC;qBAEV,GAAG,CAAC,MAAM,CAAC;qBACX,GAAG,CAAC,MAAM,CAAC;iBACf,GAAG,CAAC,MAAM,CAAC;cAGd,GAAG,CAAC,MAAM,CAAC;sBACH,GAAG,CAAC,MAAM,CAAC;wBACT,GAAG,CAAC,MAAM,CAAC;kBAEjB,GAAG,CAAC,MAAM,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;;;eAGxB,GAAG,CAAC,iBAAiB,CAAC;cACvB,GAAG,CAAC,iBAAiB,CAAC;sBACd,GAAG,CAAC,iBAAiB,CAAC;cAC9B,GAAG,CAAC,iBAAiB,CAAC;kBAClB,GAAG,CAAC,iBAAiB,CAAC;;;sBAGlB,YAAY;yBACT,YAAY;iBACpB,YAAY;wBACL,YAAY;8BACN,YAAY;uBACnB,YAAY;uBACZ,YAAY;0BACT,YAAY;uBACf,YAAY;0BACT,YAAY;uBACf,YAAY;wBACX,YAAY;wBACZ,YAAY;2BACT,YAAY;wBACf,YAAY;uBACb,YAAY;8BACL,YAAY;+BACX,YAAY;uBACpB,YAAY;oBACf,YAAY;;;uBAGT,KAAK;;;uBAGL,UAAU;iBAChB,UAAU;cACb,UAAU;uBACD,UAAU;yBACR,UAAU;0BACT,UAAU;cACtB,UAAU;mBACL,UAAU;sBACP,UAAU;gBAChB,UAAU;cACZ,UAAU;cACV,UAAU;sBACF,UAAU;kBACd,UAAU;gBACZ,UAAU;cACZ,UAAU;gBACR,UAAU;kBACR,UAAU;cACd,UAAU;sBACF,UAAU;iBACf,UAAU;gBACX,UAAU;cACZ,UAAU;YACZ,UAAU;oBACF,UAAU;8BACA,UAAU;yBACf,UAAU;oBACf,UAAU;cAChB,UAAU;mBACL,UAAU;iBACZ,UAAU;cACb,UAAU;oBACJ,UAAU;kBACZ,UAAU;qBACP,UAAU;aAClB,UAAU;eACR,UAAU;cACX,UAAU;eACT,UAAU;gBACT,UAAU;aACb,UAAU;eACR,UAAU;sBACH,UAAU;6BACH,UAAU;oCACH,UAAU;wBACtB,UAAU;sBACZ,UAAU;cAClB,UAAU;kBACN,UAAU;iBACX,UAAU;8BACG,UAAU;gCACR,UAAU;wBAClB,UAAU;+BACH,UAAU;gCACT,UAAU;kCACR,UAAU;cAC9B,UAAU;gBACR,UAAU;eACX,UAAU;wBACD,UAAU;;;eAGnB,KAAK;cACN,KAAK;cACL,KAAK;kBACD,KAAK;gBACP,KAAK;eACN,KAAK;cACN,KAAK;iBACF,KAAK;kBACJ,KAAK;iBACN,KAAK;cACR,KAAK;cACL,KAAK;gBACH,KAAK;kBACH,KAAK;oBACH,KAAK;eACV,KAAK;aACP,KAAK;eACH,KAAK;kBACF,KAAK;oBACH,KAAK;gBACT,KAAK;mBACF,KAAK;kBACN,KAAK;cACT,KAAK;aACN,KAAK;oBACE,KAAK;gBACT,KAAK;qBACA,KAAK;aACb,KAAK;eACH,KAAK;gBACJ,KAAK;mBACF,KAAK;uBACD,KAAK;gBACZ,KAAK;cACP,KAAK;eACJ,KAAK;cACN,KAAK;kBACD,KAAK;uBACA,KAAK;mBACT,KAAK;cACV,KAAK;eACJ,KAAK;eACL,KAAK;cACN,KAAK;iBACF,KAAK;iBACL,KAAK;sBACA,KAAK;cACb,KAAK;kBACD,KAAK;;;iBAGN,GAAG,CAAC,cAAc,CAAC;2BACT,GAAG,CAAC,cAAc,CAAC;oBAC1B,GAAG,CAAC,cAAc,CAAC;gBACvB,GAAG,CAAC,cAAc,CAAC;4BACP,GAAG,CAAC,cAAc,CAAC;;;wBAGvB,GAAG,CAAC,UAAU,CAAC;wBACf,GAAG,CAAC,UAAU,CAAC;wBACf,GAAG,CAAC,UAAU,CAAC;yBACd,GAAG,CAAC,UAAU,CAAC;uBACjB,GAAG,CAAC,UAAU,CAAC;wBACd,GAAG,CAAC,UAAU,CAAC;sBACjB,GAAG,CAAC,UAAU,CAAC;qBAChB,GAAG,CAAC,UAAU,CAAC;wBACZ,GAAG,CAAC,UAAU,CAAC;2BACZ,GAAG,CAAC,UAAU,CAAC;+BACX,GAAG,CAAC,UAAU,CAAC;4BAClB,GAAG,CAAC,UAAU,CAAC;yBAClB,GAAG,CAAC,UAAU,CAAC;6BACX,GAAG,CAAC,UAAU,CAAC;wBACpB,GAAG,CAAC,UAAU,CAAC;yBACd,GAAG,CAAC,UAAU,CAAC;qBACnB,GAAG,CAAC,UAAU,CAAC;yBACX,GAAG,CAAC,UAAU,CAAC;gCACR,GAAG,CAAC,UAAU,CAAC;0BACrB,GAAG,CAAC,UAAU,CAAC;2BACd,GAAG,CAAC,UAAU,CAAC;;;kCAGR,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,KAAK,cAAc,GAAG,SAAS,CAAC;;;sBAG/D,QAAQ,CAAC,oBAAoB,CAAC;;;6BAGvB,UAAU,CAAC;YACpC,YAAY,EAAE,QAAQ,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC,CAAA;YACjF,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;SAC5B,CAAC;wBACoB,UAAU,CAAC;YAC/B,GAAG,EAAE,MAAM,CAAA;YACX,KAAK,EAAE,GAAG,CAAA;YACV,GAAG,CAAC,EAAE,OAAO,CAAA;YACb,KAAK,CAAC,EAAE,UAAU,CAAA;YAClB,OAAO,CAAC,EAAE,UAAU,CAAA;SACrB,CAAC;mBACe,UAAU,CAAC;YAC1B,SAAS,CAAC,EAAE,YAAY,CAAA;YACxB,OAAO,CAAC,EAAE,iBAAiB,CAAA;YAC3B,YAAY,CAAC,EAAE,YAAY,CAAA;SAC5B,CAAC;mBACe,UAAU,CAAC;YAC1B,SAAS,EAAE,YAAY,CAAA;YACvB,OAAO,CAAC,EAAE,iBAAiB,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,KAAK,cAAc,GAAG,SAAS,CAAC,CAAA;YACjF,GAAG,CAAC,EAAE,MAAM,CAAA;YACZ,MAAM,CAAC,EAAE,MAAM,CAAA;YACf,MAAM,CAAC,EAAE,MAAM,CAAA;YACf,KAAK,CAAC,EAAE,MAAM,CAAA;YACd,MAAM,CAAC,EAAE,MAAM,CAAA;YACf,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;YAE3B,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;SACnC,CAAC;oBACgB,UAAU,CAAC;YAC3B,OAAO,CAAC,EAAE,iBAAiB,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,KAAK,cAAc,GAAG,SAAS,CAAC,CAAA;YACjF,SAAS,EAAE,MAAM,CAAA;YACjB,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;SAC5B,CAAC;uBACmB,UAAU,CAAC;YAC9B,SAAS,EAAE,MAAM,CAAA;YAGjB,MAAM,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;YACxB,KAAK,CAAC,EAAE,aAAa,CAAC,GAAG,CAAC,CAAA;YAC1B,YAAY,CAAC,EAAE,WAAW,CAAC,GAAG,CAAC,CAAA;YAG/B,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;YAGlC,UAAU,CAAC,EAAE,MAAM,EAAE,CAAA;YACrB,WAAW,CAAC,EAAE,MAAM,CAAA;YAGpB,WAAW,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;YAG7B,MAAM,CAAC,EAAE;gBAAE,IAAI,CAAC,EAAE,KAAK,CAAC;gBAAC,KAAK,EAAE,UAAU,CAAC;gBAAC,EAAE,EAAE,MAAM,GAAG,MAAM,CAAA;aAAE,EAAE,CAAA;YAEnE,WAAW,CAAC,EAAE,UAAU,CAAA;SACzB,CAAC;2BACuB,UAAU,CAAC;YAClC,SAAS,EAAE,MAAM,CAAA;YACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;YAElB,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;YAGlC,MAAM,CAAC,EAAE;gBAAE,IAAI,CAAC,EAAE,KAAK,CAAC;gBAAC,KAAK,EAAE,UAAU,CAAC;gBAAC,EAAE,EAAE,MAAM,GAAG,MAAM,CAAA;aAAE,EAAE,CAAA;YAGnE,QAAQ,CAAC,EAAE,MAAM,CAAA;SAClB,CAAC;gBACY,UAAU;;CAE1B,CAAA;AACF,eAAe,IAAI,CAAA"}
|