@dataclouder/ngx-lessons 0.1.12 → 0.1.14
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/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { PipeTransform, InjectionToken, Type, Provider, OnInit, EventEmitter, On
|
|
|
3
3
|
import { ISimpleAgent, IConversationSettings, IConversationFlow, SimpleAgentTask, WordData, ChatEvent } from '@dataclouder/ngx-agent-cards';
|
|
4
4
|
import { NgComponentOutlet } from '@angular/common';
|
|
5
5
|
import { MenuItem } from 'primeng/api';
|
|
6
|
-
import { EntityCommunicationService, FiltersConfig, IFilterQueryResponse, IExtensionable, ILearnable, IAuditable, IManageable, IReactable, OnActionEvent, EntityBaseListComponent, ICustomFilter, PColumn, EntityBaseFormComponent, UiStateService, PaginationBase, ListFilterBarOptions } from '@dataclouder/ngx-core';
|
|
6
|
+
import { EntityCommunicationService, FiltersConfig, IFilterQueryResponse, IExtensionable, ILearnable, IAuditable, IManageable, IReactable, OnActionEvent, EntityBaseListComponent, ICustomFilter, PColumn, EntityBaseFormComponent, UiStateService, MobileService, PaginationBase, ListFilterBarOptions } from '@dataclouder/ngx-core';
|
|
7
7
|
import * as _angular_forms from '@angular/forms';
|
|
8
8
|
import { FormBuilder, FormControl, FormArray, UntypedFormControl, UntypedFormArray, FormGroup } from '@angular/forms';
|
|
9
9
|
import { DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
@@ -12,7 +12,6 @@ import { IAssetable, StorageImageSettings, AspectType, ResolutionType } from '@d
|
|
|
12
12
|
import { UserService } from '@dataclouder/ngx-users';
|
|
13
13
|
import BalloonEditor from '@ckeditor/ckeditor5-build-balloon-block';
|
|
14
14
|
import * as _angular_router from '@angular/router';
|
|
15
|
-
import { FormlyFieldConfig } from '@ngx-formly/core';
|
|
16
15
|
|
|
17
16
|
declare const LangCodeDescription: {
|
|
18
17
|
es: string;
|
|
@@ -545,6 +544,7 @@ declare class DCLessonRendererComponent implements OnInit {
|
|
|
545
544
|
readonly uiStateService: UiStateService;
|
|
546
545
|
readonly lessonRendererService: LessonRendererService;
|
|
547
546
|
readonly lessonConversationService: LessonConversationService;
|
|
547
|
+
readonly mobileService: MobileService;
|
|
548
548
|
lesson: i0.WritableSignal<ILesson>;
|
|
549
549
|
imageCover: i0.Signal<string>;
|
|
550
550
|
private components;
|
|
@@ -617,12 +617,14 @@ interface ICourseLesson {
|
|
|
617
617
|
_id: any;
|
|
618
618
|
id: string;
|
|
619
619
|
title: string;
|
|
620
|
+
name: string;
|
|
620
621
|
description: string;
|
|
621
622
|
generated: boolean;
|
|
622
623
|
}
|
|
623
624
|
interface ICourseModule {
|
|
624
625
|
_id: any;
|
|
625
626
|
id: string;
|
|
627
|
+
name: string;
|
|
626
628
|
title: string;
|
|
627
629
|
description: string;
|
|
628
630
|
lessonCount: number;
|
|
@@ -687,7 +689,6 @@ declare class CourseFormComponent extends EntityBaseFormComponent<ICourse> imple
|
|
|
687
689
|
resizeToWidth: number;
|
|
688
690
|
};
|
|
689
691
|
};
|
|
690
|
-
extraFields: FormlyFieldConfig[];
|
|
691
692
|
protected patchForm(entity: ICourse): void;
|
|
692
693
|
save(): Promise<ICourse | undefined>;
|
|
693
694
|
handleImageUpload(event: any): void;
|