@deeksha2309/sunbird-collection-editor 8.0.7 → 8.0.8
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/deeksha2309-sunbird-collection-editor.d.ts.map +1 -0
- package/esm2022/deeksha2309-sunbird-collection-editor.mjs +5 -0
- package/esm2022/lib/collection-editor-library.module.mjs +30 -6
- package/esm2022/lib/components/answer/answer.component.mjs +6 -3
- package/esm2022/lib/components/app-loader/app-loader.component.mjs +30 -0
- package/esm2022/lib/components/asset-browser/asset-browser.component.mjs +30 -12
- package/esm2022/lib/components/assign-page-number/assign-page-number.component.mjs +1 -1
- package/esm2022/lib/components/bulk-upload/bulk-upload.component.mjs +447 -0
- package/esm2022/lib/components/ckeditor-tool/ckeditor-tool.component.mjs +30 -12
- package/esm2022/lib/components/collection-icon/collection-icon.component.mjs +3 -3
- package/esm2022/lib/components/csv-upload/csv-upload.component.mjs +2 -2
- package/esm2022/lib/components/editor/editor.component.mjs +143 -64
- package/esm2022/lib/components/fancy-tree/fancy-tree.component.mjs +91 -9
- package/esm2022/lib/components/header/header.component.mjs +27 -9
- package/esm2022/lib/components/library/library.component.mjs +4 -4
- package/esm2022/lib/components/library-list/library-list.component.mjs +4 -4
- package/esm2022/lib/components/library-player/library-player.component.mjs +4 -4
- package/esm2022/lib/components/meta-form/meta-form.component.mjs +10 -18
- package/esm2022/lib/components/options/options.component.mjs +40 -27
- package/esm2022/lib/components/progress-status/progress-status.component.mjs +1 -1
- package/esm2022/lib/components/publish-checklist/publish-checklist.component.mjs +6 -3
- package/esm2022/lib/components/question/question.component.mjs +185 -77
- package/esm2022/lib/components/question-option-sub-menu/question-option-sub-menu.component.mjs +36 -0
- package/esm2022/lib/components/quml-player/quml-player.component.mjs +2 -2
- package/esm2022/lib/components/qumlplayer-page/qumlplayer-page.component.mjs +3 -3
- package/esm2022/lib/components/relational-metadata/relational-metadata.component.mjs +80 -0
- package/esm2022/lib/components/resource-reorder/resource-reorder.component.mjs +3 -3
- package/esm2022/lib/components/slider/slider.component.mjs +46 -0
- package/esm2022/lib/components/template/template.component.mjs +3 -3
- package/esm2022/lib/components/translations/translations.component.mjs +132 -0
- package/esm2022/lib/directives/date-format/date-format.pipe.mjs +34 -0
- package/esm2022/lib/interfaces/CreationContext.mjs +2 -0
- package/esm2022/lib/interfaces/editor.mjs +1 -1
- package/esm2022/lib/interfaces/loader.mjs +2 -0
- package/esm2022/lib/pipes/interpolate.pipe.mjs +17 -0
- package/esm2022/lib/pipes/sanitize-html.pipe.mjs +6 -8
- package/esm2022/lib/services/bulk-job/bulk-job.service.mjs +67 -0
- package/esm2022/lib/services/config/category.config.json +1 -0
- package/esm2022/lib/services/config/editor.config.json +29 -2
- package/esm2022/lib/services/config/label.config.json +16 -3
- package/esm2022/lib/services/config/player.config.json +3 -0
- package/esm2022/lib/services/config/url.config.json +17 -1
- package/esm2022/lib/services/editor/editor.service.mjs +64 -26
- package/esm2022/lib/services/question/question.service.mjs +27 -35
- package/esm2022/lib/services/tree/tree.service.mjs +20 -5
- package/fesm2022/{project-sunbird-sunbird-collection-editor.mjs → deeksha2309-sunbird-collection-editor.mjs} +1779 -483
- package/fesm2022/deeksha2309-sunbird-collection-editor.mjs.map +1 -0
- package/index.d.ts +2 -2
- package/lib/collection-editor-library.module.d.ts +51 -43
- package/lib/collection-editor-library.module.d.ts.map +1 -1
- package/lib/components/answer/answer.component.d.ts +2 -1
- package/lib/components/answer/answer.component.d.ts.map +1 -1
- package/lib/components/app-loader/app-loader.component.d.ts +18 -0
- package/lib/components/app-loader/app-loader.component.d.ts.map +1 -0
- package/lib/components/asset-browser/asset-browser.component.d.ts.map +1 -1
- package/lib/components/bulk-upload/bulk-upload.component.d.ts +71 -0
- package/lib/components/bulk-upload/bulk-upload.component.d.ts.map +1 -0
- package/lib/components/ckeditor-tool/ckeditor-tool.component.d.ts +1 -1
- package/lib/components/ckeditor-tool/ckeditor-tool.component.d.ts.map +1 -1
- package/lib/components/editor/editor.component.d.ts +11 -7
- package/lib/components/editor/editor.component.d.ts.map +1 -1
- package/lib/components/fancy-tree/fancy-tree.component.d.ts +11 -3
- package/lib/components/fancy-tree/fancy-tree.component.d.ts.map +1 -1
- package/lib/components/header/header.component.d.ts +6 -2
- package/lib/components/header/header.component.d.ts.map +1 -1
- package/lib/components/library/library.component.d.ts +1 -1
- package/lib/components/library/library.component.d.ts.map +1 -1
- package/lib/components/meta-form/meta-form.component.d.ts +3 -4
- package/lib/components/meta-form/meta-form.component.d.ts.map +1 -1
- package/lib/components/options/options.component.d.ts +15 -7
- package/lib/components/options/options.component.d.ts.map +1 -1
- package/lib/components/publish-checklist/publish-checklist.component.d.ts +2 -1
- package/lib/components/publish-checklist/publish-checklist.component.d.ts.map +1 -1
- package/lib/components/question/question.component.d.ts +21 -28
- package/lib/components/question/question.component.d.ts.map +1 -1
- package/lib/components/question-option-sub-menu/question-option-sub-menu.component.d.ts +27 -0
- package/lib/components/question-option-sub-menu/question-option-sub-menu.component.d.ts.map +1 -0
- package/lib/components/relational-metadata/relational-metadata.component.d.ts +25 -0
- package/lib/components/relational-metadata/relational-metadata.component.d.ts.map +1 -0
- package/lib/components/slider/slider.component.d.ts +25 -0
- package/lib/components/slider/slider.component.d.ts.map +1 -0
- package/lib/components/translations/translations.component.d.ts +70 -0
- package/lib/components/translations/translations.component.d.ts.map +1 -0
- package/lib/directives/date-format/date-format.pipe.d.ts +20 -0
- package/lib/directives/date-format/date-format.pipe.d.ts.map +1 -0
- package/lib/interfaces/CreationContext.d.ts +11 -0
- package/lib/interfaces/CreationContext.d.ts.map +1 -0
- package/lib/interfaces/editor.d.ts +10 -5
- package/lib/interfaces/editor.d.ts.map +1 -1
- package/lib/interfaces/loader.d.ts +11 -0
- package/lib/interfaces/loader.d.ts.map +1 -0
- package/lib/pipes/interpolate.pipe.d.ts +8 -0
- package/lib/pipes/interpolate.pipe.d.ts.map +1 -0
- package/lib/pipes/sanitize-html.pipe.d.ts +4 -4
- package/lib/pipes/sanitize-html.pipe.d.ts.map +1 -1
- package/lib/services/bulk-job/bulk-job.service.d.ts +17 -0
- package/lib/services/bulk-job/bulk-job.service.d.ts.map +1 -0
- package/lib/services/editor/editor.service.d.ts +7 -4
- package/lib/services/editor/editor.service.d.ts.map +1 -1
- package/lib/services/question/question.service.d.ts +2 -2
- package/lib/services/question/question.service.d.ts.map +1 -1
- package/lib/services/tree/tree.service.d.ts +3 -1
- package/lib/services/tree/tree.service.d.ts.map +1 -1
- package/package.json +5 -5
- package/esm2022/project-sunbird-sunbird-collection-editor.mjs +0 -5
- package/fesm2022/project-sunbird-sunbird-collection-editor.mjs.map +0 -1
- package/project-sunbird-sunbird-collection-editor.d.ts.map +0 -1
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
|
-
/// <amd-module name="@
|
|
4
|
+
/// <amd-module name="@deeksha2309/sunbird-collection-editor" />
|
|
5
5
|
export * from './public-api';
|
|
6
|
-
//# sourceMappingURL=
|
|
6
|
+
//# sourceMappingURL=deeksha2309-sunbird-collection-editor.d.ts.map
|
|
@@ -1,50 +1,58 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./collection-editor-library.component";
|
|
3
|
-
import * as i2 from "./
|
|
4
|
-
import * as i3 from "./
|
|
5
|
-
import * as i4 from "./components/
|
|
6
|
-
import * as i5 from "./components/
|
|
7
|
-
import * as i6 from "./components/
|
|
8
|
-
import * as i7 from "./components/
|
|
9
|
-
import * as i8 from "./components/
|
|
10
|
-
import * as i9 from "./components/
|
|
11
|
-
import * as i10 from "./components/library
|
|
12
|
-
import * as i11 from "./components/
|
|
13
|
-
import * as i12 from "./components/
|
|
14
|
-
import * as i13 from "./components/
|
|
15
|
-
import * as i14 from "./components/
|
|
16
|
-
import * as i15 from "./components/
|
|
17
|
-
import * as i16 from "./components/
|
|
18
|
-
import * as i17 from "./components/
|
|
19
|
-
import * as i18 from "./components/
|
|
20
|
-
import * as i19 from "./
|
|
21
|
-
import * as i20 from "./components/
|
|
22
|
-
import * as i21 from "./
|
|
23
|
-
import * as i22 from "./
|
|
24
|
-
import * as i23 from "./components/
|
|
25
|
-
import * as i24 from "./components/
|
|
26
|
-
import * as i25 from "./components/
|
|
27
|
-
import * as i26 from "./components/
|
|
28
|
-
import * as i27 from "./components/
|
|
29
|
-
import * as i28 from "./components/
|
|
30
|
-
import * as i29 from "./components/
|
|
31
|
-
import * as i30 from "./components/
|
|
32
|
-
import * as i31 from "./components/
|
|
33
|
-
import * as i32 from "./
|
|
34
|
-
import * as i33 from "
|
|
35
|
-
import * as i34 from "
|
|
36
|
-
import * as i35 from "
|
|
37
|
-
import * as i36 from "
|
|
38
|
-
import * as i37 from "
|
|
39
|
-
import * as i38 from "
|
|
40
|
-
import * as i39 from "
|
|
41
|
-
import * as i40 from "
|
|
42
|
-
import * as i41 from "
|
|
43
|
-
import * as i42 from "@
|
|
44
|
-
import * as i43 from "@angular/
|
|
3
|
+
import * as i2 from "./pipes/interpolate.pipe";
|
|
4
|
+
import * as i3 from "./pipes/sanitize-html.pipe";
|
|
5
|
+
import * as i4 from "./components/contentplayer-page/contentplayer-page.component";
|
|
6
|
+
import * as i5 from "./components/editor/editor.component";
|
|
7
|
+
import * as i6 from "./components/qumlplayer-page/qumlplayer-page.component";
|
|
8
|
+
import * as i7 from "./components/header/header.component";
|
|
9
|
+
import * as i8 from "./components/fancy-tree/fancy-tree.component";
|
|
10
|
+
import * as i9 from "./components/meta-form/meta-form.component";
|
|
11
|
+
import * as i10 from "./components/library/library.component";
|
|
12
|
+
import * as i11 from "./components/library-filter/library-filter.component";
|
|
13
|
+
import * as i12 from "./components/library-list/library-list.component";
|
|
14
|
+
import * as i13 from "./components/question/question.component";
|
|
15
|
+
import * as i14 from "./components/options/options.component";
|
|
16
|
+
import * as i15 from "./components/answer/answer.component";
|
|
17
|
+
import * as i16 from "./components/ckeditor-tool/ckeditor-tool.component";
|
|
18
|
+
import * as i17 from "./components/library-player/library-player.component";
|
|
19
|
+
import * as i18 from "./components/resource-reorder/resource-reorder.component";
|
|
20
|
+
import * as i19 from "./components/skeleton-loader/skeleton-loader.component";
|
|
21
|
+
import * as i20 from "./components/template/template.component";
|
|
22
|
+
import * as i21 from "./directives/date-format/date-format.pipe";
|
|
23
|
+
import * as i22 from "./directives/telemetry-interact/telemetry-interact.directive";
|
|
24
|
+
import * as i23 from "./components/asset-browser/asset-browser.component";
|
|
25
|
+
import * as i24 from "./components/collection-icon/collection-icon.component";
|
|
26
|
+
import * as i25 from "./components/quml-player/quml-player.component";
|
|
27
|
+
import * as i26 from "./components/dialcode/dialcode.component";
|
|
28
|
+
import * as i27 from "./components/bulk-upload/bulk-upload.component";
|
|
29
|
+
import * as i28 from "./components/csv-upload/csv-upload.component";
|
|
30
|
+
import * as i29 from "./components/manage-collaborator/manage-collaborator.component";
|
|
31
|
+
import * as i30 from "./components/publish-checklist/publish-checklist.component";
|
|
32
|
+
import * as i31 from "./components/question-option-sub-menu/question-option-sub-menu.component";
|
|
33
|
+
import * as i32 from "./components/slider/slider.component";
|
|
34
|
+
import * as i33 from "./components/translations/translations.component";
|
|
35
|
+
import * as i34 from "./components/app-loader/app-loader.component";
|
|
36
|
+
import * as i35 from "./components/relational-metadata/relational-metadata.component";
|
|
37
|
+
import * as i36 from "./components/assign-page-number/assign-page-number.component";
|
|
38
|
+
import * as i37 from "./components/plain-tree/plain-tree.component";
|
|
39
|
+
import * as i38 from "./components/progress-status/progress-status.component";
|
|
40
|
+
import * as i39 from "./components/term-and-condition/term-and-condition.component";
|
|
41
|
+
import * as i40 from "./components/quality-params-modal/quality-params-modal.component";
|
|
42
|
+
import * as i41 from "@angular/common";
|
|
43
|
+
import * as i42 from "@angular/forms";
|
|
44
|
+
import * as i43 from "@angular/router";
|
|
45
|
+
import * as i44 from "@project-sunbird/ng2-semantic-ui";
|
|
46
|
+
import * as i45 from "@project-sunbird/common-form-elements-full";
|
|
47
|
+
import * as i46 from "ngx-infinite-scroll";
|
|
48
|
+
import * as i47 from "@angular/common/http";
|
|
49
|
+
import * as i48 from "@project-sunbird/sunbird-quml-player";
|
|
50
|
+
import * as i49 from "ngx-bootstrap/carousel";
|
|
51
|
+
import * as i50 from "@project-sunbird/sunbird-resource-library";
|
|
52
|
+
import * as i51 from "@angular/cdk/a11y";
|
|
45
53
|
export declare class CollectionEditorLibraryModule {
|
|
46
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<CollectionEditorLibraryModule, never>;
|
|
47
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CollectionEditorLibraryModule, [typeof i1.CollectionEditorLibraryComponent, typeof i2.
|
|
55
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CollectionEditorLibraryModule, [typeof i1.CollectionEditorLibraryComponent, typeof i2.InterpolatePipe, typeof i3.SanitizeHtmlPipe, typeof i4.ContentplayerPageComponent, typeof i5.EditorComponent, typeof i6.QumlplayerPageComponent, typeof i7.HeaderComponent, typeof i8.FancyTreeComponent, typeof i9.MetaFormComponent, typeof i10.LibraryComponent, typeof i11.LibraryFilterComponent, typeof i12.LibraryListComponent, typeof i13.QuestionComponent, typeof i14.OptionsComponent, typeof i15.AnswerComponent, typeof i16.CkeditorToolComponent, typeof i17.LibraryPlayerComponent, typeof i18.ResourceReorderComponent, typeof i19.SkeletonLoaderComponent, typeof i20.TemplateComponent, typeof i21.DateFormatPipe, typeof i22.TelemetryInteractDirective, typeof i23.AssetBrowserComponent, typeof i24.CollectionIconComponent, typeof i25.QumlPlayerComponent, typeof i26.DialcodeComponent, typeof i27.BulkUploadComponent, typeof i28.CsvUploadComponent, typeof i29.ManageCollaboratorComponent, typeof i30.PublishChecklistComponent, typeof i31.QuestionOptionSubMenuComponent, typeof i32.SliderComponent, typeof i33.TranslationsComponent, typeof i34.AppLoaderComponent, typeof i35.RelationalMetadataComponent, typeof i36.AssignPageNumberComponent, typeof i37.PlainTreeComponent, typeof i38.ProgressStatusComponent, typeof i39.TermAndConditionComponent, typeof i40.QualityParamsModalComponent], [typeof i41.CommonModule, typeof i42.FormsModule, typeof i42.ReactiveFormsModule, typeof i43.RouterModule, typeof i44.SuiModule, typeof i45.CommonFormElementsModule, typeof i46.InfiniteScrollModule, typeof i47.HttpClientModule, typeof i48.QumlLibraryModule, typeof i49.CarouselModule, typeof i50.ResourceLibraryModule, typeof i51.A11yModule], [typeof i5.EditorComponent]>;
|
|
48
56
|
static ɵinj: i0.ɵɵInjectorDeclaration<CollectionEditorLibraryModule>;
|
|
49
57
|
}
|
|
50
58
|
//# sourceMappingURL=collection-editor-library.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"collection-editor-library.module.d.ts","sourceRoot":"","sources":["../../../projects/collection-editor-library/src/lib/collection-editor-library.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"collection-editor-library.module.d.ts","sourceRoot":"","sources":["../../../projects/collection-editor-library/src/lib/collection-editor-library.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsDA,qBAoDa,6BAA6B;yCAA7B,6BAA6B;0CAA7B,6BAA6B;0CAA7B,6BAA6B;CAAG"}
|
|
@@ -5,6 +5,7 @@ export declare class AnswerComponent implements OnInit {
|
|
|
5
5
|
configService: ConfigService;
|
|
6
6
|
editorState: any;
|
|
7
7
|
showFormError: any;
|
|
8
|
+
isReadOnlyMode: any;
|
|
8
9
|
editorDataOutput: EventEmitter<any>;
|
|
9
10
|
constructor(configService: ConfigService);
|
|
10
11
|
ngOnInit(): void;
|
|
@@ -19,6 +20,6 @@ export declare class AnswerComponent implements OnInit {
|
|
|
19
20
|
primaryCategory: string;
|
|
20
21
|
};
|
|
21
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnswerComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AnswerComponent, "lib-answer", never, { "editorState": { "alias": "editorState"; "required": false; }; "showFormError": { "alias": "showFormError"; "required": false; }; }, { "editorDataOutput": "editorDataOutput"; }, never, never, false, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnswerComponent, "lib-answer", never, { "editorState": { "alias": "editorState"; "required": false; }; "showFormError": { "alias": "showFormError"; "required": false; }; "isReadOnlyMode": { "alias": "isReadOnlyMode"; "required": false; }; }, { "editorDataOutput": "editorDataOutput"; }, never, never, false, never>;
|
|
23
24
|
}
|
|
24
25
|
//# sourceMappingURL=answer.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"answer.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/answer/answer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAU,YAAY,EAAE,MAAM,eAAe,CAAC;AAC/E,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;;AACrE,qBAKa,eAAgB,YAAW,MAAM;
|
|
1
|
+
{"version":3,"file":"answer.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/answer/answer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAU,YAAY,EAAE,MAAM,eAAe,CAAC;AAC/E,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;;AACrE,qBAKa,eAAgB,YAAW,MAAM;IAKzB,aAAa,EAAE,aAAa;IAJtC,WAAW,MAAC;IACZ,aAAa,MAAC;IACd,cAAc,MAAC;IACd,gBAAgB,EAAE,YAAY,CAAC,GAAG,CAAC,CAA2B;gBACrD,aAAa,EAAE,aAAa;IAE/C,QAAQ;IAIR,iBAAiB,CAAC,KAAK,KAAA;IAKvB,iBAAiB,CAAC,KAAK,KAAA;;;;;;;;;yCAhBZ,eAAe;2CAAf,eAAe;CA2B3B"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ILoaderMessage } from '../../interfaces/loader';
|
|
3
|
+
import { ConfigService } from '../../services/config/config.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* loader component
|
|
7
|
+
*/
|
|
8
|
+
export declare class AppLoaderComponent implements OnInit {
|
|
9
|
+
configService: ConfigService;
|
|
10
|
+
data: ILoaderMessage;
|
|
11
|
+
headerMessage: string;
|
|
12
|
+
loaderMessage: string;
|
|
13
|
+
constructor(configService: ConfigService);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppLoaderComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppLoaderComponent, "app-loader", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=app-loader.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-loader.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/app-loader/app-loader.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AAElD,OAAO,EAAC,cAAc,EAAC,MAAM,yBAAyB,CAAC;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;;AAGrE;;GAEG;AACH,qBAIa,kBAAmB,YAAW,MAAM;IAK5B,aAAa,EAAE,aAAa;IAJtC,IAAI,EAAE,cAAc,CAAC;IAC9B,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,EAAE,MAAM,CAAC;gBAEH,aAAa,EAAE,aAAa;IAK/C,QAAQ;yCAVG,kBAAkB;2CAAlB,kBAAkB;CAgB9B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"asset-browser.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/asset-browser/asset-browser.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,MAAM,EAAqB,MAAM,eAAe,CAAC;AAGrG,OAAO,EAAc,UAAU,EAAE,MAAM,MAAM,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,eAAe,EAAE,MAAM,0CAA0C,CAAC;AAE3E,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;;AAGrE,qBAKa,qBAAsB,YAAW,MAAM,EAAE,SAAS;IAKjD,OAAO,CAAC,aAAa;IAAwB,aAAa,EAAE,aAAa;
|
|
1
|
+
{"version":3,"file":"asset-browser.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/asset-browser/asset-browser.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,MAAM,EAAqB,MAAM,eAAe,CAAC;AAGrG,OAAO,EAAc,UAAU,EAAE,MAAM,MAAM,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,eAAe,EAAE,MAAM,0CAA0C,CAAC;AAE3E,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;;AAGrE,qBAKa,qBAAsB,YAAW,MAAM,EAAE,SAAS;IAKjD,OAAO,CAAC,aAAa;IAAwB,aAAa,EAAE,aAAa;IACzE,OAAO,CAAC,eAAe;IAL1B,eAAe,MAAC;IACf,mBAAmB,oBAA2B;IAC9C,mBAAmB,oBAA2B;IACpC,OAAO,CAAC,KAAK,CAAC;gBACd,aAAa,EAAE,aAAa,EAAS,aAAa,EAAE,aAAa,EACjE,eAAe,EAAE,eAAe;IACpD,WAAW,EAAE,GAAG,CAAM;IACtB,QAAQ,QAAM;IACd,SAAS,QAAM;IACR,iBAAiB,UAAS;IACjC,oBAAoB,EAAE,OAAO,CAAC;IAC9B,eAAe,EAAE,GAAG,CAAC;IACrB,YAAY,EAAE,OAAO,CAAC;IACtB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,MAAC;IACT,UAAU,UAAQ;IAClB,OAAO,UAAS;IACT,QAAQ,MAAC;IACT,aAAa,SAAqB;IAClC,cAAc,EAAE,GAAG,CAAC;IACpB,WAAW,EAAE,GAAG,CAAC;IACjB,aAAa,SAAM;IACnB,cAAc,EAAE,GAAG,CAAC;IAC3B,aAAa,EAAE,OAAO,CAAC;IACvB,OAAO,MAAC;IACD,QAAQ,EAAE,GAAG,CAAC;IACd,UAAU,KAAM;IAChB,UAAU,EAAE,GAAG,CAAC;IAChB,iBAAiB,EAAE,GAAG,CAAC;IACvB,cAAc,EAAE,GAAG,CAAC;IACpB,iBAAiB,EAAE,GAAG,CAAC;IACvB,SAAS,EAAE,GAAG,CAAC;IACf,kBAAkB,EAAE,GAAG,CAAC;IACxB,SAAS,EAAE,GAAG,CAAC;IACtB,QAAQ;IASR,aAAa,CAAC,QAAQ,KAAA,EAAE,IAAI,KAAA;IAS5B,qBAAqB;IAIrB,kBAAkB,CAAC,KAAK,KAAA;IAIxB,WAAW,CAAC,MAAM,KAAA,EAAE,KAAK,CAAC,KAAA,EAAE,MAAM,CAAC,KAAA;IA+BnC,gBAAgB,CAAC,QAAQ,KAAA,EAAE,OAAO,KAAA;IAMlC,YAAY,CAAC,MAAM,KAAA,EAAE,KAAK,CAAC,KAAA,EAAE,MAAM,CAAC,KAAA;IA+BpC,gBAAgB;IAKhB;;OAEG;IACH,iBAAiB;IAIjB,WAAW,CAAC,KAAK,KAAA;IAiCjB,aAAa;IAKb,gBAAgB,CAAC,QAAQ,KAAA;IASzB,iBAAiB,CAAC,KAAK,KAAA;IA8DvB,0BAA0B,CAAC,QAAQ,KAAA,EAAE,QAAQ,KAAA,EAAE,SAAS,KAAA;;;;;;;;IAWxD,YAAY,CAAC,SAAS,KAAA,EAAE,IAAI,KAAA,EAAE,MAAM,KAAA,GAAG,UAAU,CAAC,GAAG,CAAC;IAkBtD,uBAAuB;IAMvB,oBAAoB;IAUpB,WAAW,CAAC,KAAK,KAAA;IAMjB,kBAAkB;IAIlB,YAAY,CAAC,KAAK,KAAA,EAAE,IAAI,KAAA;IAgBxB,eAAe,CAAC,KAAK,KAAA;IAOrB,YAAY,CAAC,KAAK,KAAA;IAIlB,WAAW;yCA7UA,qBAAqB;2CAArB,qBAAqB;CAmVjC"}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { OnInit, ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { ToasterService } from '../../services/toaster/toaster.service';
|
|
3
|
+
import { EditorService } from '../../services/editor/editor.service';
|
|
4
|
+
import { ConfigService } from '../../services/config/config.service';
|
|
5
|
+
import { BulkJobService } from '../../services/bulk-job/bulk-job.service';
|
|
6
|
+
import { TreeService } from '../../services/tree/tree.service';
|
|
7
|
+
import { EditorTelemetryService } from '../../services/telemetry/telemetry.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class BulkUploadComponent implements OnInit {
|
|
10
|
+
private toasterService;
|
|
11
|
+
private editorService;
|
|
12
|
+
configService: ConfigService;
|
|
13
|
+
private bulkJobService;
|
|
14
|
+
private treeService;
|
|
15
|
+
telemetryService: EditorTelemetryService;
|
|
16
|
+
collectionId: string;
|
|
17
|
+
fineUploaderUI: ElementRef;
|
|
18
|
+
bulkUploadEmitter: EventEmitter<any>;
|
|
19
|
+
storedCollectionData: any;
|
|
20
|
+
process: any;
|
|
21
|
+
oldProcessStatus: string;
|
|
22
|
+
stageStatus: string;
|
|
23
|
+
contents: Array<any>;
|
|
24
|
+
completionPercentage: number;
|
|
25
|
+
showBulkUploadModal: boolean;
|
|
26
|
+
bulkUploadState: number;
|
|
27
|
+
loading: boolean;
|
|
28
|
+
telemetryPageId: string;
|
|
29
|
+
assetConfig: any;
|
|
30
|
+
uploader: any;
|
|
31
|
+
bulkUploadErrorMsgs: any[];
|
|
32
|
+
bulkUploadValidationError: string;
|
|
33
|
+
sampleMetadataCsvUrl: string;
|
|
34
|
+
constructor(toasterService: ToasterService, editorService: EditorService, configService: ConfigService, bulkJobService: BulkJobService, treeService: TreeService, telemetryService: EditorTelemetryService);
|
|
35
|
+
ngOnInit(): void;
|
|
36
|
+
calculateCompletionPercentage(): void;
|
|
37
|
+
checkBulkUploadStatus(): void;
|
|
38
|
+
searchContentWithProcessId(): void;
|
|
39
|
+
downloadReport(): void;
|
|
40
|
+
updateJob(): void;
|
|
41
|
+
initiateDocumentUploadModal(): number;
|
|
42
|
+
initiateUploadModal(): void;
|
|
43
|
+
uploadContent(): void;
|
|
44
|
+
startBulkUpload(file: any, filename: any): void;
|
|
45
|
+
generatePreSignedUrl(filename: any): import("rxjs").Observable<import("../../interfaces/serverResponse").ServerResponse>;
|
|
46
|
+
uploadToBlob(signedURL: any, file: any): any;
|
|
47
|
+
createImportRequest(fileUrl: any): import("rxjs").Observable<any>;
|
|
48
|
+
get questionSetMetadata(): any;
|
|
49
|
+
viewDetails($event: any): void;
|
|
50
|
+
getContentStatus(): string;
|
|
51
|
+
createJobRequest(rowsCount: any): import("rxjs").Observable<any>;
|
|
52
|
+
openBulkUploadModal(): Promise<void>;
|
|
53
|
+
closeBulkUploadModal(): void;
|
|
54
|
+
updateBulkUploadState(action: any): void;
|
|
55
|
+
getParentsHelper(tree: any, id: string, parents?: string): {
|
|
56
|
+
found: boolean;
|
|
57
|
+
} | {
|
|
58
|
+
found: boolean;
|
|
59
|
+
parents: string;
|
|
60
|
+
};
|
|
61
|
+
getParents(data: Array<any>, id: string): {
|
|
62
|
+
found: boolean;
|
|
63
|
+
} | {
|
|
64
|
+
found: boolean;
|
|
65
|
+
parents: string;
|
|
66
|
+
};
|
|
67
|
+
downloadSampleCSVFile(): void;
|
|
68
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BulkUploadComponent, never>;
|
|
69
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BulkUploadComponent, "lib-bulk-upload", never, {}, { "bulkUploadEmitter": "bulkUploadEmitter"; }, never, never, false, never>;
|
|
70
|
+
}
|
|
71
|
+
//# sourceMappingURL=bulk-upload.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bulk-upload.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/bulk-upload/bulk-upload.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAa,UAAU,EAAU,YAAY,EAAE,MAAM,eAAe,CAAC;AAK/F,OAAO,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AACxE,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,cAAc,EAAE,MAAM,0CAA0C,CAAC;AAC1E,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,sBAAsB,EAAE,MAAM,4CAA4C,CAAC;;AAGpF,qBAKa,mBAAoB,YAAW,MAAM;IAmC9C,OAAO,CAAC,cAAc;IAAkB,OAAO,CAAC,aAAa;IAAwB,aAAa,EAAE,aAAa;IACjH,OAAO,CAAC,cAAc;IAAkB,OAAO,CAAC,WAAW;IAAsB,gBAAgB,EAAE,sBAAsB;IAnCpH,YAAY,EAAE,MAAM,CAAC;IACC,cAAc,EAAE,UAAU,CAAC;IAC9C,iBAAiB,oBAA2B;IAC/C,oBAAoB,MAAC;IACrB,OAAO,EAAE,GAAG,CAUjB;IACK,gBAAgB,SAAM;IACtB,WAAW,SAAM;IACjB,QAAQ,EAAE,KAAK,CAAC,GAAG,CAAC,CAAM;IAC1B,oBAAoB,SAAK;IACzB,mBAAmB,UAAS;IAC5B,eAAe,SAAK;IACpB,OAAO,UAAS;IAChB,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,GAAG,CAKrB;IACF,QAAQ,MAAC;IACF,mBAAmB,QAAM;IACzB,yBAAyB,SAAM;IAC/B,oBAAoB,SAAM;gBAEvB,cAAc,EAAE,cAAc,EAAU,aAAa,EAAE,aAAa,EAAS,aAAa,EAAE,aAAa,EACzG,cAAc,EAAE,cAAc,EAAU,WAAW,EAAE,WAAW,EAAS,gBAAgB,EAAE,sBAAsB;IAE1H,QAAQ;IAQT,6BAA6B;IAU7B,qBAAqB;IA0BrB,0BAA0B;IAgD1B,cAAc;IAgDd,SAAS;IAoBT,2BAA2B;IAS3B,mBAAmB;IAgCnB,aAAa;IAYb,eAAe,CAAC,IAAI,KAAA,EAAE,QAAQ,KAAA;IAqB9B,oBAAoB,CAAC,QAAQ,KAAA;IAc7B,YAAY,CAAC,SAAS,KAAA,EAAE,IAAI,KAAA;IAc5B,mBAAmB,CAAC,OAAO,KAAA;IA2B3B,IAAI,mBAAmB,QAGtB;IAED,WAAW,CAAC,MAAM,KAAA;IAWjB,gBAAgB;IAIjB,gBAAgB,CAAC,SAAS,KAAA;IA+BpB,mBAAmB;IAMzB,oBAAoB;IAQpB,qBAAqB,CAAC,MAAM,KAAA;IAa5B,gBAAgB,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,MAAM,EAAE,OAAO,GAAE,MAAW;;;;;;IA2B5D,UAAU,CAAC,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,EAAE,EAAE,MAAM;;;;;;IAOvC,qBAAqB;yCAvbV,mBAAmB;2CAAnB,mBAAmB;CAgc/B"}
|
|
@@ -93,7 +93,7 @@ export declare class CkeditorToolComponent implements OnInit, AfterViewInit, OnC
|
|
|
93
93
|
* @param offset page no
|
|
94
94
|
*/
|
|
95
95
|
getMyImages(offset: any, query?: any, search?: any): void;
|
|
96
|
-
addImageInEditor(imageUrl: any, imageId: any, imageName
|
|
96
|
+
addImageInEditor(imageUrl: any, imageId: any, imageName: any): void;
|
|
97
97
|
addVideoInEditor(videoModal?: any): void;
|
|
98
98
|
getAllImages(offset: any, query?: any, search?: any): void;
|
|
99
99
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ckeditor-tool.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/ckeditor-tool/ckeditor-tool.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,aAAa,EAAiB,YAAY,EAAE,SAAS,EAAa,UAAU,EAAE,MAAM,eAAe,CAAC;AAIhI,OAAO,EAAc,UAAU,EAAE,MAAM,MAAM,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,0CAA0C,CAAC;AAC3E,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AACxE,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;;AAGrE,qBAKa,qBAAsB,YAAW,MAAM,EAAE,aAAa,EAAE,SAAS;IAqBhE,OAAO,CAAC,eAAe;IAAmB,OAAO,CAAC,aAAa;
|
|
1
|
+
{"version":3,"file":"ckeditor-tool.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/ckeditor-tool/ckeditor-tool.component.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { OnDestroy, OnInit, ChangeDetectorRef, EventEmitter, AfterViewInit } from '@angular/core';
|
|
2
|
-
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
2
|
import { EditorService } from '../../services/editor/editor.service';
|
|
4
3
|
import { TreeService } from '../../services/tree/tree.service';
|
|
5
4
|
import { FrameworkService } from '../../services/framework/framework.service';
|
|
@@ -7,10 +6,12 @@ import { EditorTelemetryService } from '../../services/telemetry/telemetry.servi
|
|
|
7
6
|
import { ToasterService } from '../../services/toaster/toaster.service';
|
|
8
7
|
import { HelperService } from '../../services/helper/helper.service';
|
|
9
8
|
import { IEditorConfig } from '../../interfaces/editor';
|
|
9
|
+
import { ICreationContext } from '../../interfaces/CreationContext';
|
|
10
10
|
import { Router } from '@angular/router';
|
|
11
11
|
import { Observable, Subscription, Subject } from 'rxjs';
|
|
12
12
|
import { ConfigService } from '../../services/config/config.service';
|
|
13
13
|
import { DialcodeService } from '../../services/dialcode/dialcode.service';
|
|
14
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
14
15
|
import * as i0 from "@angular/core";
|
|
15
16
|
export declare class EditorComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
16
17
|
private editorService;
|
|
@@ -27,6 +28,7 @@ export declare class EditorComponent implements OnInit, OnDestroy, AfterViewInit
|
|
|
27
28
|
editorEmitter: EventEmitter<any>;
|
|
28
29
|
private modal;
|
|
29
30
|
questionComponentInput: any;
|
|
31
|
+
creationContext: ICreationContext;
|
|
30
32
|
collectionTreeNodes: any;
|
|
31
33
|
selectedNodeData: any;
|
|
32
34
|
templateList: any;
|
|
@@ -36,9 +38,12 @@ export declare class EditorComponent implements OnInit, OnDestroy, AfterViewInit
|
|
|
36
38
|
pageStartTime: any;
|
|
37
39
|
rootFormConfig: any;
|
|
38
40
|
unitFormConfig: any;
|
|
41
|
+
searchFormConfig: any;
|
|
39
42
|
leafFormConfig: any;
|
|
43
|
+
relationFormConfig: any;
|
|
40
44
|
showLibraryPage: boolean;
|
|
41
45
|
libraryComponentInput: any;
|
|
46
|
+
questionlibraryInput: any;
|
|
42
47
|
editorMode: any;
|
|
43
48
|
collectionId: any;
|
|
44
49
|
isCurrentNodeFolder: boolean;
|
|
@@ -53,6 +58,7 @@ export declare class EditorComponent implements OnInit, OnDestroy, AfterViewInit
|
|
|
53
58
|
targetFramework: any;
|
|
54
59
|
organisationFramework: any;
|
|
55
60
|
primaryCategoryDef: any;
|
|
61
|
+
collectionPrimaryCategoryDef: any;
|
|
56
62
|
toolbarConfig: any;
|
|
57
63
|
buttonLoaders: {
|
|
58
64
|
saveAsDraftButtonLoader: boolean;
|
|
@@ -66,6 +72,7 @@ export declare class EditorComponent implements OnInit, OnDestroy, AfterViewInit
|
|
|
66
72
|
showReviewModal: boolean;
|
|
67
73
|
csvDropDownOptions: any;
|
|
68
74
|
showCsvUploadPopup: boolean;
|
|
75
|
+
objectType: string;
|
|
69
76
|
isObjectTypeCollection: any;
|
|
70
77
|
isCreateCsv: boolean;
|
|
71
78
|
isStatusReviewMode: boolean;
|
|
@@ -83,15 +90,10 @@ export declare class EditorComponent implements OnInit, OnDestroy, AfterViewInit
|
|
|
83
90
|
onComponentDestroy$: Subject<any>;
|
|
84
91
|
outcomeDeclaration: any;
|
|
85
92
|
levelsArray: any;
|
|
86
|
-
objectType: any;
|
|
87
|
-
relationFormConfig: any;
|
|
88
|
-
questionlibraryInput: any;
|
|
89
|
-
creationContext: any;
|
|
90
|
-
private evidenceMimeType;
|
|
91
|
-
private ecm;
|
|
92
93
|
constructor(editorService: EditorService, treeService: TreeService, frameworkService: FrameworkService, helperService: HelperService, telemetryService: EditorTelemetryService, router: Router, toasterService: ToasterService, dialcodeService: DialcodeService, configService: ConfigService, changeDetectionRef: ChangeDetectorRef);
|
|
93
94
|
unloadHandler(event: any): void;
|
|
94
95
|
ngOnInit(): void;
|
|
96
|
+
initializeFrameworkAndChannel(collection?: any): void;
|
|
95
97
|
getFrameworkDetails(categoryDefinitionData: any): void;
|
|
96
98
|
setEditorForms(categoryDefinitionData: any): void;
|
|
97
99
|
ngAfterViewInit(): void;
|
|
@@ -106,6 +108,8 @@ export declare class EditorComponent implements OnInit, OnDestroy, AfterViewInit
|
|
|
106
108
|
showLibraryComponentPage(): void;
|
|
107
109
|
showQuestionLibraryComponentPage(): void;
|
|
108
110
|
libraryEventListener(event: any): void;
|
|
111
|
+
onQuestionLibraryChange(event: any): void;
|
|
112
|
+
addResourceToQuestionset(contentId: any, resourceType: any): void;
|
|
109
113
|
saveContent(): Promise<unknown>;
|
|
110
114
|
submitHandler(): void;
|
|
111
115
|
validateFormStatus(): boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"editor.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/editor/editor.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAC2B,SAAS,EAAE,MAAM,EAAE,iBAAiB,EACpE,YAAY,EAA6B,aAAa,EACvD,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"editor.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/editor/editor.component.ts"],"names":[],"mappings":"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"}
|
|
@@ -7,6 +7,7 @@ import { EditorTelemetryService } from '../../services/telemetry/telemetry.servi
|
|
|
7
7
|
import { ToasterService } from '../../services/toaster/toaster.service';
|
|
8
8
|
import { ConfigService } from '../../services/config/config.service';
|
|
9
9
|
import { DialcodeService } from '../../services/dialcode/dialcode.service';
|
|
10
|
+
import { Subject } from 'rxjs';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class FancyTreeComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
12
13
|
treeService: TreeService;
|
|
@@ -29,16 +30,19 @@ export declare class FancyTreeComponent implements OnInit, AfterViewInit, OnDest
|
|
|
29
30
|
showAddSiblingButton: boolean;
|
|
30
31
|
rootNode: any;
|
|
31
32
|
showLibraryButton: boolean;
|
|
33
|
+
unsubscribe$: Subject<void>;
|
|
34
|
+
bulkUploadProcessingStatus: boolean;
|
|
35
|
+
nodeParentDependentMap: {};
|
|
36
|
+
treeData: any;
|
|
37
|
+
branchingObject: {};
|
|
32
38
|
rootMenuTemplate: string;
|
|
33
39
|
folderMenuTemplate: string;
|
|
34
40
|
contentMenuTemplate: string;
|
|
35
|
-
nodeParentDependentMap: any;
|
|
36
|
-
bulkUploadProcessingStatus: any;
|
|
37
41
|
constructor(treeService: TreeService, editorService: EditorService, telemetryService: EditorTelemetryService, helperService: HelperService, toasterService: ToasterService, cdr: ChangeDetectorRef, configService: ConfigService, dialcodeService: DialcodeService);
|
|
38
42
|
private onComponentDestroy$;
|
|
39
43
|
ngOnInit(): void;
|
|
40
44
|
ngAfterViewInit(): void;
|
|
41
|
-
|
|
45
|
+
initialize(): void;
|
|
42
46
|
buildTreeFromFramework(data: any, tree?: any, level?: any): any;
|
|
43
47
|
removeIntermediateLevelsFromFramework(data: any, parentData?: any): any;
|
|
44
48
|
buildTree(data: any, tree?: any, level?: any): any;
|
|
@@ -60,6 +64,7 @@ export declare class FancyTreeComponent implements OnInit, AfterViewInit, OnDest
|
|
|
60
64
|
removeNode(isContent?: boolean): void;
|
|
61
65
|
handleActionButtons(el: any): void;
|
|
62
66
|
addFromLibrary(): void;
|
|
67
|
+
addQuestionFromLibrary(): void;
|
|
63
68
|
getTelemetryInteractEdata(id?: any): {
|
|
64
69
|
id: any;
|
|
65
70
|
type: string;
|
|
@@ -70,6 +75,9 @@ export declare class FancyTreeComponent implements OnInit, AfterViewInit, OnDest
|
|
|
70
75
|
};
|
|
71
76
|
};
|
|
72
77
|
createNewContent(): void;
|
|
78
|
+
moveDependentNodes(targetNode: any, currentNode: any): void;
|
|
79
|
+
rearrangeBranchingLogic(nodeId: any, currentSectionId: any, targetSectionId: any, dependentNodeIDs: any, movingNodeIds: any): void;
|
|
80
|
+
updateTreeCache(name: any, branchingLogic: any, id: any, additionalMetadata?: any): void;
|
|
73
81
|
ngOnDestroy(): void;
|
|
74
82
|
static ɵfac: i0.ɵɵFactoryDeclaration<FancyTreeComponent, never>;
|
|
75
83
|
static ɵcmp: i0.ɵɵComponentDeclaration<FancyTreeComponent, "lib-fancy-tree", never, { "nodes": { "alias": "nodes"; "required": false; }; "options": { "alias": "options"; "required": false; }; "buttonLoaders": { "alias": "buttonLoaders"; "required": false; }; }, { "treeEventEmitter": "treeEventEmitter"; }, never, never, false, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fancy-tree.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/fancy-tree/fancy-tree.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACM,aAAa,EAAoB,UAAU,EAAU,YAAY,EAC5E,SAAS,EAAE,MAAM,EAAqB,iBAAiB,EACxD,MAAM,eAAe,CAAC;AACvB,OAAO,kBAAkB,CAAC;AAE1B,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,sBAAsB,EAAE,MAAM,4CAA4C,CAAC;AACpF,OAAO,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AACxE,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAG,eAAe,EAAE,MAAM,0CAA0C,CAAC;;
|
|
1
|
+
{"version":3,"file":"fancy-tree.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/fancy-tree/fancy-tree.component.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,6 +3,7 @@ import { EditorService } from '../../services/editor/editor.service';
|
|
|
3
3
|
import { EditorTelemetryService } from '../../services/telemetry/telemetry.service';
|
|
4
4
|
import { ConfigService } from '../../services/config/config.service';
|
|
5
5
|
import { NgForm } from '@angular/forms';
|
|
6
|
+
import { Subject } from 'rxjs';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class HeaderComponent implements OnDestroy, OnInit {
|
|
8
9
|
private editorService;
|
|
@@ -15,6 +16,7 @@ export declare class HeaderComponent implements OnDestroy, OnInit {
|
|
|
15
16
|
publishchecklist: any;
|
|
16
17
|
set requestChange(action: string);
|
|
17
18
|
toolbarEmitter: EventEmitter<any>;
|
|
19
|
+
bulkUploadEmitter: EventEmitter<any>;
|
|
18
20
|
FormControl: NgForm;
|
|
19
21
|
modal: any;
|
|
20
22
|
qualityParamEmitter: EventEmitter<any>;
|
|
@@ -24,11 +26,13 @@ export declare class HeaderComponent implements OnDestroy, OnInit {
|
|
|
24
26
|
showRequestChangesPopup: boolean;
|
|
25
27
|
rejectComment: string;
|
|
26
28
|
actionType: string;
|
|
29
|
+
objectType: string;
|
|
27
30
|
sourcingStatusText: string;
|
|
28
31
|
sourcingStatusClass: string;
|
|
29
32
|
originPreviewUrl: string;
|
|
30
33
|
correctionComments: string;
|
|
31
|
-
|
|
34
|
+
unsubscribe$: Subject<void>;
|
|
35
|
+
bulkUploadStatus: boolean;
|
|
32
36
|
constructor(editorService: EditorService, telemetryService: EditorTelemetryService, configService: ConfigService);
|
|
33
37
|
ngOnInit(): Promise<void>;
|
|
34
38
|
handleActionButtons(): Promise<void>;
|
|
@@ -41,6 +45,6 @@ export declare class HeaderComponent implements OnDestroy, OnInit {
|
|
|
41
45
|
bulkUploadListener(event: any): void;
|
|
42
46
|
ngOnDestroy(): void;
|
|
43
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "lib-header", never, { "pageId": { "alias": "pageId"; "required": false; }; "labelConfigData": { "alias": "labelConfigData"; "required": false; }; "buttonLoaders": { "alias": "buttonLoaders"; "required": false; }; "showComment": { "alias": "showComment"; "required": false; }; "publishchecklist": { "alias": "publishchecklist"; "required": false; }; "requestChange": { "alias": "requestChange"; "required": false; }; }, { "toolbarEmitter": "toolbarEmitter"; "qualityParamEmitter": "qualityParamEmitter"; }, never, never, false, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "lib-header", never, { "pageId": { "alias": "pageId"; "required": false; }; "labelConfigData": { "alias": "labelConfigData"; "required": false; }; "buttonLoaders": { "alias": "buttonLoaders"; "required": false; }; "showComment": { "alias": "showComment"; "required": false; }; "publishchecklist": { "alias": "publishchecklist"; "required": false; }; "requestChange": { "alias": "requestChange"; "required": false; }; }, { "toolbarEmitter": "toolbarEmitter"; "bulkUploadEmitter": "bulkUploadEmitter"; "qualityParamEmitter": "qualityParamEmitter"; }, never, never, false, never>;
|
|
45
49
|
}
|
|
46
50
|
//# sourceMappingURL=header.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"header.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/header/header.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,MAAM,EAAwC,MAAM,eAAe,CAAC;AACxH,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,sBAAsB,EAAE,MAAM,4CAA4C,CAAC;AACpF,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AAErE,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;;
|
|
1
|
+
{"version":3,"file":"header.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/header/header.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,MAAM,EAAwC,MAAM,eAAe,CAAC;AACxH,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,sBAAsB,EAAE,MAAM,4CAA4C,CAAC;AACpF,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AAErE,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;;AAG/B,qBAMa,eAAgB,YAAW,SAAS,EAAE,MAAM;IA8B3C,OAAO,CAAC,aAAa;IACxB,gBAAgB,EAAE,sBAAsB;IACxC,aAAa,EAAE,aAAa;IA/B5B,MAAM,EAAE,GAAG,CAAC;IACZ,eAAe,EAAE,GAAG,CAAC;IACrB,aAAa,EAAE,GAAG,CAAC;IACnB,WAAW,EAAE,GAAG,CAAC;IACjB,gBAAgB,EAAE,GAAG,CAAC;IAC/B,IAAa,aAAa,CAAC,MAAM,EAAE,MAAM,EAIxC;IACS,cAAc,oBAA2B;IACzC,iBAAiB,oBAA2B;IAC5B,WAAW,EAAE,MAAM,CAAC;IACnB,KAAK,MAAC;IACvB,mBAAmB,oBAA2B;IACjD,UAAU,EAAE,GAAG,CAAC;IAChB,eAAe,EAAE,OAAO,CAAC;IACzB,0BAA0B,EAAE,OAAO,CAAC;IACpC,uBAAuB,EAAE,OAAO,CAAC;IACjC,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,mBAAmB,EAAE,MAAM,CAAC;IAC5B,gBAAgB,EAAE,MAAM,CAAC;IACzB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,YAAY,gBAAuB;IACnC,gBAAgB,UAAS;gBAEZ,aAAa,EAAE,aAAa,EACvC,gBAAgB,EAAE,sBAAsB,EACxC,aAAa,EAAE,aAAa;IAE/B,QAAQ;IAaR,mBAAmB;IAyBzB,eAAe;IAOf,sBAAsB,CAAC,MAAM,EAAE,MAAM;IAKrC,aAAa,CAAC,MAAM,KAAA;IAIpB,yBAAyB,CAAC,MAAM,KAAA;IAKhC,iBAAiB;IAQjB,cAAc,CAAC,KAAK,KAAA;IAOpB,kBAAkB,CAAC,KAAK,KAAA;IAIxB,WAAW;yCAhHA,eAAe;2CAAf,eAAe;CAuH3B"}
|
|
@@ -64,6 +64,6 @@ export declare class LibraryComponent implements OnInit, AfterViewInit, OnDestro
|
|
|
64
64
|
filterContentList(isContentAdded?: any): void;
|
|
65
65
|
ngOnDestroy(): void;
|
|
66
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibraryComponent, never>;
|
|
67
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibraryComponent, "lib-library", never, { "libraryInput": { "alias": "libraryInput"; "required": false; }; }, { "libraryEmitter": "libraryEmitter"; }, never, never, false, never>;
|
|
67
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibraryComponent, "lib-content-library", never, { "libraryInput": { "alias": "libraryInput"; "required": false; }; }, { "libraryEmitter": "libraryEmitter"; }, never, never, false, never>;
|
|
68
68
|
}
|
|
69
69
|
//# sourceMappingURL=library.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"library.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/library/library.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAAU,aAAa,EAAqB,SAAS,EAAE,MAAM,eAAe,CAAC;AAE5H,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AACxE,OAAO,EAAE,sBAAsB,EAAE,MAAM,4CAA4C,CAAC;AACpF,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;;AAErE,qBAMa,gBAAiB,YAAW,MAAM,EAAE,aAAa,EAAE,SAAS;IAoBpD,gBAAgB,EAAE,sBAAsB;IAC/C,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,cAAc;IACf,aAAa,EAAE,aAAa;IACnC,OAAO,CAAC,aAAa;IAzBxB,YAAY,EAAE,GAAG,CAAC;IACjB,cAAc,oBAA2B;IAC5C,gBAAgB,EAAE,GAAG,CAAC;IACtB,MAAM,SAAsB;IAC5B,WAAW,EAAE,GAAG,CAAC;IACjB,eAAe,EAAE,GAAG,CAAC;IACrB,UAAU,EAAE,GAAG,CAAC;IACvB,uBAAuB,UAAS;IAChC,eAAe,EAAE,GAAG,CAAC;IACrB,mBAAmB,QAAM;IACzB,YAAY,EAAE,MAAM,CAAC;IACd,gBAAgB,UAAS;IACzB,UAAU,UAAQ;IAClB,YAAY,UAAS;IAC5B,sBAAsB,EAAE,GAAG,CAAC;IACrB,cAAc,EAAE,GAAG,CAAC;IAC3B,aAAa,EAAE,GAAG,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,GAAG,CAAC;gBACL,gBAAgB,EAAE,sBAAsB,EACvC,aAAa,EAAE,aAAa,EAC5B,MAAM,EAAE,MAAM,EACd,WAAW,EAAE,WAAW,EACxB,cAAc,EAAE,cAAc,EAC/B,aAAa,EAAE,aAAa,EAC3B,aAAa,EAAE,aAAa;IAIhD,QAAQ;IAsBR,eAAe;IAOf,IAAI;IAKJ,cAAc,CAAC,KAAK,EAAE,GAAG;IAWzB,iBAAiB;IAoBjB,gBAAgB,CAAC,OAAO,CAAC,KAAA,EAAE,KAAK,CAAC,KAAA;
|
|
1
|
+
{"version":3,"file":"library.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/library/library.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAAU,aAAa,EAAqB,SAAS,EAAE,MAAM,eAAe,CAAC;AAE5H,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AACxE,OAAO,EAAE,sBAAsB,EAAE,MAAM,4CAA4C,CAAC;AACpF,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;;AAErE,qBAMa,gBAAiB,YAAW,MAAM,EAAE,aAAa,EAAE,SAAS;IAoBpD,gBAAgB,EAAE,sBAAsB;IAC/C,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,cAAc;IACf,aAAa,EAAE,aAAa;IACnC,OAAO,CAAC,aAAa;IAzBxB,YAAY,EAAE,GAAG,CAAC;IACjB,cAAc,oBAA2B;IAC5C,gBAAgB,EAAE,GAAG,CAAC;IACtB,MAAM,SAAsB;IAC5B,WAAW,EAAE,GAAG,CAAC;IACjB,eAAe,EAAE,GAAG,CAAC;IACrB,UAAU,EAAE,GAAG,CAAC;IACvB,uBAAuB,UAAS;IAChC,eAAe,EAAE,GAAG,CAAC;IACrB,mBAAmB,QAAM;IACzB,YAAY,EAAE,MAAM,CAAC;IACd,gBAAgB,UAAS;IACzB,UAAU,UAAQ;IAClB,YAAY,UAAS;IAC5B,sBAAsB,EAAE,GAAG,CAAC;IACrB,cAAc,EAAE,GAAG,CAAC;IAC3B,aAAa,EAAE,GAAG,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,GAAG,CAAC;gBACL,gBAAgB,EAAE,sBAAsB,EACvC,aAAa,EAAE,aAAa,EAC5B,MAAM,EAAE,MAAM,EACd,WAAW,EAAE,WAAW,EACxB,cAAc,EAAE,cAAc,EAC/B,aAAa,EAAE,aAAa,EAC3B,aAAa,EAAE,aAAa;IAIhD,QAAQ;IAsBR,eAAe;IAOf,IAAI;IAKJ,cAAc,CAAC,KAAK,EAAE,GAAG;IAWzB,iBAAiB;IAoBjB,gBAAgB,CAAC,OAAO,CAAC,KAAA,EAAE,KAAK,CAAC,KAAA;IA2BjC,mBAAmB,CAAC,IAAI,KAAA,EAAE,YAAY,KAAA,EAAE,KAAK,CAAC,KAAA;IAmB9C,gBAAgB,CAAC,IAAI,KAAA;;;;;;;;;;;;;;IAmBrB,oBAAoB,CAAC,KAAK,EAAE,GAAG;IAI/B,oBAAoB,CAAC,KAAK,KAAA;IA4B1B,gBAAgB;IAOlB,eAAe,CAAC,MAAM,KAAA;IAQpB,UAAU,IAAI,IAAI;IAQlB,iBAAiB,CAAC,cAAc,CAAC,KAAA;IAgBjC,WAAW;yCAvOA,gBAAgB;2CAAhB,gBAAgB;CA0O5B"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter, OnChanges, OnDestroy
|
|
1
|
+
import { EventEmitter, OnChanges, OnDestroy } from '@angular/core';
|
|
2
2
|
import { Subscription } from 'rxjs';
|
|
3
3
|
import { TreeService } from '../../services/tree/tree.service';
|
|
4
4
|
import { EditorService } from '../../services/editor/editor.service';
|
|
@@ -8,7 +8,7 @@ import { FormControl, FormGroup } from '@angular/forms';
|
|
|
8
8
|
import { ConfigService } from '../../services/config/config.service';
|
|
9
9
|
import { ToasterService } from '../../services/toaster/toaster.service';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class MetaFormComponent implements
|
|
11
|
+
export declare class MetaFormComponent implements OnChanges, OnDestroy {
|
|
12
12
|
private editorService;
|
|
13
13
|
treeService: TreeService;
|
|
14
14
|
frameworkService: FrameworkService;
|
|
@@ -28,7 +28,6 @@ export declare class MetaFormComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
28
28
|
previousShuffleValue: boolean;
|
|
29
29
|
subscription: Subscription;
|
|
30
30
|
constructor(editorService: EditorService, treeService: TreeService, frameworkService: FrameworkService, helperService: HelperService, configService: ConfigService, toasterService: ToasterService);
|
|
31
|
-
ngOnInit(): void;
|
|
32
31
|
ngOnChanges(): void;
|
|
33
32
|
setAppIconData(): void;
|
|
34
33
|
setShuffleValue(value: any): void;
|
|
@@ -36,7 +35,7 @@ export declare class MetaFormComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
36
35
|
fetchFrameWorkDetails(): void;
|
|
37
36
|
attachDefaultValues(): void;
|
|
38
37
|
isReviewMode(): any;
|
|
39
|
-
ifFieldIsEditable(fieldCode: any): boolean;
|
|
38
|
+
ifFieldIsEditable(fieldCode: any, primaryCategoryEditableConfig?: any): boolean;
|
|
40
39
|
outputData(eventData: any): void;
|
|
41
40
|
onStatusChanges(event: any): void;
|
|
42
41
|
appIconDataHandler(event: any): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"meta-form.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/meta-form/meta-form.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,SAAS,
|
|
1
|
+
{"version":3,"file":"meta-form.component.d.ts","sourceRoot":"","sources":["../../../../../projects/collection-editor-library/src/lib/components/meta-form/meta-form.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,SAAS,EAAqC,MAAM,eAAe,CAAC;AACxH,OAAO,EAAsB,YAAY,EAAE,MAAM,MAAM,CAAC;AAGxD,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,4CAA4C,CAAC;AAC9E,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;;AAIxE,qBAMa,iBAAkB,YAAW,SAAS,EAAE,SAAS;IAahD,OAAO,CAAC,aAAa;IAAwB,WAAW,EAAE,WAAW;IAC9D,gBAAgB,EAAE,gBAAgB;IAAE,OAAO,CAAC,aAAa;IAChE,OAAO,CAAC,aAAa;IAAiB,OAAO,CAAC,cAAc;IAd/D,cAAc,EAAE,GAAG,CAAC;IACpB,cAAc,EAAE,GAAG,CAAC;IACpB,YAAY,EAAE,GAAG,CAAC;IACjB,cAAc,oBAA2B;IACnD,OAAO,CAAC,mBAAmB,CAAsB;IAC1C,gBAAgB,EAAE,GAAG,CAAM;IAC3B,mBAAmB,EAAE,GAAG,CAAC;IACzB,WAAW,UAAS;IACpB,aAAa,EAAE,GAAG,CAAC;IACnB,OAAO,EAAE,GAAG,CAAC;IACb,oBAAoB,EAAE,OAAO,CAAC;IAC9B,YAAY,EAAE,YAAY,CAAC;gBACd,aAAa,EAAE,aAAa,EAAS,WAAW,EAAE,WAAW,EAC9D,gBAAgB,EAAE,gBAAgB,EAAU,aAAa,EAAE,aAAa,EACvE,aAAa,EAAE,aAAa,EAAU,cAAc,EAAE,cAAc;IAIxF,WAAW;IAQX,cAAc;IAoBd,eAAe,CAAC,KAAK,KAAA;IAMrB,kBAAkB,CAAC,KAAK,KAAA;IAQxB,qBAAqB;IAmCrB,mBAAmB;IAuKnB,YAAY;IAGZ,iBAAiB,CAAC,SAAS,KAAA,EAAE,6BAA6B,CAAC,KAAA;IAY3D,UAAU,CAAC,SAAS,EAAE,GAAG;IAEzB,eAAe,CAAC,KAAK,KAAA;IAIrB,kBAAkB,CAAC,KAAK,KAAA;IAKxB,SAAS,CAAC,OAAO,KAAA,EAAE,OAAO,EAAE,WAAW,EAAE,EAAE,SAAS,EAAE,SAAS,EAAE,OAAO,KAAA,EAAE,MAAM,KAAA;IAsBhF,YAAY,CAAC,OAAO,KAAA,EAAE,OAAO,EAAE,WAAW,EAAE,EAAE,SAAS,EAAE,SAAS,EAAE,OAAO,KAAA,EAAE,MAAM,KAAA;IAiBnF,YAAY,CAAC,KAAK,EAAE,GAAG;IA4BvB,aAAa,CAAC,MAAM,KAAA;IAWpB,WAAW;yCA/WA,iBAAiB;2CAAjB,iBAAiB;CAsX7B"}
|