@dataclouder/ngx-lessons 0.1.17 → 0.1.19

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
@@ -204,6 +204,7 @@ declare class SelectorComponent extends ComponentWithForm implements LessonCompo
204
204
  }
205
205
 
206
206
  declare class DefaultLessonsService extends EntityCommunicationService<ILesson> {
207
+ getFixedQuery(): Record<string, any>;
207
208
  constructor();
208
209
  private endpoints;
209
210
  getLessons(filters?: FiltersConfig): Promise<IFilterQueryResponse<ILesson>>;
@@ -359,6 +360,7 @@ declare function provideLessonsService(serviceImplementation: Type<DefaultLesson
359
360
  declare class DCLessonListComponent extends EntityBaseListComponent<ILesson> {
360
361
  userService: UserService<any>;
361
362
  customFilters: ICustomFilter[];
363
+ persistenceKey: string;
362
364
  protected entityCommunicationService: DefaultLessonsService;
363
365
  columns: PColumn[];
364
366
  constructor();
@@ -367,7 +369,7 @@ declare class DCLessonListComponent extends EntityBaseListComponent<ILesson> {
367
369
  applyFilterBarEvent(filterEvent: OnActionEvent): void;
368
370
  protected loadData(): Promise<void>;
369
371
  static ɵfac: i0.ɵɵFactoryDeclaration<DCLessonListComponent, never>;
370
- static ɵcmp: i0.ɵɵComponentDeclaration<DCLessonListComponent, "dc-lesson-list", never, { "customFilters": { "alias": "customFilters"; "required": false; }; }, {}, never, never, true, never>;
372
+ static ɵcmp: i0.ɵɵComponentDeclaration<DCLessonListComponent, "dc-lesson-list", never, { "customFilters": { "alias": "customFilters"; "required": false; }; "persistenceKey": { "alias": "persistenceKey"; "required": false; }; }, {}, never, never, true, never>;
371
373
  }
372
374
 
373
375
  declare class DCLessonFormComponent {
@@ -384,10 +386,6 @@ declare class DCLessonEditorComponent extends EntityBaseFormComponent<ILesson> {
384
386
  description: _angular_forms.FormControl<string>;
385
387
  format: _angular_forms.FormControl<string>;
386
388
  lang: _angular_forms.FormControl<string>;
387
- characterCard: _angular_forms.FormControl<any>;
388
- conversationSettings: _angular_forms.FormControl<any>;
389
- metaApp: _angular_forms.FormControl<any>;
390
- conversationFlow: _angular_forms.FormControl<any>;
391
389
  textCoded: _angular_forms.FormControl<string>;
392
390
  manageable: _angular_forms.FormGroup<any>;
393
391
  learnable: _angular_forms.FormGroup<{
@@ -411,6 +409,7 @@ declare class DCLessonEditorComponent extends EntityBaseFormComponent<ILesson> {
411
409
  private promptService;
412
410
  private ngxVertexService;
413
411
  private dynamicComponentsBuilderService;
412
+ private formUtil;
414
413
  isLoadingLesson: i0.WritableSignal<boolean>;
415
414
  readonly dynamicComponentsArray: i0.Signal<IDynamicContentComponent[]>;
416
415
  components: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dataclouder/ngx-lessons",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=18.0.0",
6
6
  "@angular/core": ">=18.0.0",