simpo-component-library 3.0.38 → 3.1.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/esm2022/lib/components/hover-elements/hover-elements.component.mjs +27 -7
- package/esm2022/lib/elements/add-section/add-section.component.mjs +59 -0
- package/esm2022/lib/services/rest.service.mjs +4 -1
- package/fesm2022/simpo-component-library.mjs +140 -69
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/components/hover-elements/hover-elements.component.d.ts +3 -1
- package/lib/elements/add-section/add-section.component.d.ts +23 -0
- package/lib/services/rest.service.d.ts +1 -0
- package/package.json +1 -1
- package/simpo-component-library-3.1.0.tgz +0 -0
- package/simpo-component-library-3.0.38.tgz +0 -0
@@ -1,9 +1,11 @@
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
2
|
+
import { MatDialog } from '@angular/material/dialog';
|
2
3
|
import { EventsService } from '../../services/events.service';
|
3
4
|
import * as i0 from "@angular/core";
|
4
5
|
export declare class HoverElementsComponent implements OnInit {
|
5
6
|
private _eventService;
|
6
|
-
|
7
|
+
private dialog;
|
8
|
+
constructor(_eventService: EventsService, dialog: MatDialog);
|
7
9
|
edit: EventEmitter<boolean>;
|
8
10
|
data: any;
|
9
11
|
index: any;
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
2
|
+
import { HttpClient } from '@angular/common/http';
|
3
|
+
import { EventsService } from '../../services/events.service';
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
export declare class AddSectionComponent {
|
6
|
+
dialog: MatDialogRef<AddSectionComponent>;
|
7
|
+
data: any;
|
8
|
+
private http;
|
9
|
+
private _eventService;
|
10
|
+
constructor(dialog: MatDialogRef<AddSectionComponent>, data: any, http: HttpClient, _eventService: EventsService);
|
11
|
+
ngOnInit(): void;
|
12
|
+
selectedTab: string;
|
13
|
+
tabs: any;
|
14
|
+
sections: any;
|
15
|
+
selectedSection: any;
|
16
|
+
selectedSectionName: any;
|
17
|
+
getAllSections(): void;
|
18
|
+
getObjectKeys(obj: any): any[];
|
19
|
+
getComponentApi(): import("rxjs").Observable<Object>;
|
20
|
+
addNewSection(componentId: any, sectionType: any, event: any): void;
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AddSectionComponent, never>;
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AddSectionComponent, "simpo-add-section", never, {}, {}, never, never, true, never>;
|
23
|
+
}
|
@@ -79,6 +79,7 @@ export declare class RestService implements OnDestroy {
|
|
79
79
|
getAllDocument(payload: any): Observable<Object>;
|
80
80
|
getLeadById(leadId: any): Observable<Object>;
|
81
81
|
getRegistrationList(payload: any): Observable<Object>;
|
82
|
+
getAllComponentCategories(): Observable<Object>;
|
82
83
|
getFieldsToDisplay(fieldsList: any[]): any;
|
83
84
|
static ɵfac: i0.ɵɵFactoryDeclaration<RestService, never>;
|
84
85
|
static ɵprov: i0.ɵɵInjectableDeclaration<RestService>;
|
package/package.json
CHANGED
Binary file
|
Binary file
|