@messaia/cdk-cms 19.0.1 → 20.0.0-RC.1
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/README.md +49 -10
- package/fesm2022/messaia-cdk-cms.mjs +265 -277
- package/fesm2022/messaia-cdk-cms.mjs.map +1 -1
- package/index.d.ts +1164 -3
- package/package.json +6 -7
- package/lib/cms-routing.module.d.ts +0 -7
- package/lib/cms.module.d.ts +0 -46
- package/lib/comnponents/content-form/content-form.component.d.ts +0 -110
- package/lib/comnponents/document-dialog/document-dialog.component.d.ts +0 -26
- package/lib/comnponents/document-form-base/document-form-base.component.d.ts +0 -48
- package/lib/comnponents/template-form/template-form.component.d.ts +0 -73
- package/lib/comnponents/template-preview-dialog/template-preview-dialog.component.d.ts +0 -80
- package/lib/enums/content-type.d.ts +0 -4
- package/lib/enums/faq-scope.d.ts +0 -4
- package/lib/enums/template-type.d.ts +0 -4
- package/lib/enums/wrap-tag.d.ts +0 -7
- package/lib/models/cms-settings.d.ts +0 -30
- package/lib/models/content-client.d.ts +0 -26
- package/lib/models/content-department.d.ts +0 -26
- package/lib/models/content-variable-client.d.ts +0 -26
- package/lib/models/content-variable-department.d.ts +0 -26
- package/lib/models/content-variable.d.ts +0 -29
- package/lib/models/content.d.ts +0 -103
- package/lib/models/document.d.ts +0 -20
- package/lib/models/faq-client.d.ts +0 -26
- package/lib/models/faq-department.d.ts +0 -26
- package/lib/models/faq.d.ts +0 -38
- package/lib/models/slider.d.ts +0 -39
- package/lib/models/template-client.d.ts +0 -26
- package/lib/models/template-department.d.ts +0 -26
- package/lib/models/template-preview.d.ts +0 -44
- package/lib/models/template.d.ts +0 -59
- package/lib/public-api.d.ts +0 -31
- package/lib/resolvers/document-list-projection.resolve.d.ts +0 -20
- package/lib/resolvers/excluded-columns.resolve.d.ts +0 -13
- package/lib/resolvers/excluded-fields.resolve.d.ts +0 -13
- package/lib/resolvers/form-includes.resolve.d.ts +0 -20
- package/lib/resolvers/form-validation.resolve.d.ts +0 -13
- package/lib/resolvers/list-projection.resolve.d.ts +0 -20
- package/lib/resolvers/settings.resolve.d.ts +0 -15
- package/lib/services/content-variable.service.d.ts +0 -17
- package/lib/services/content.service.d.ts +0 -23
- package/lib/services/document.generic-service.d.ts +0 -9
- package/lib/services/document.service`.d.ts +0 -17
- package/lib/services/faq.service.d.ts +0 -11
- package/lib/services/slider.service.d.ts +0 -11
- package/lib/services/template-doc.service.d.ts +0 -11
- package/lib/services/template-preview.service.d.ts +0 -11
- package/lib/services/template.service.d.ts +0 -11
- package/lib/templates/document-form.template.d.ts +0 -2
- package/public_api.d.ts +0 -1
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { GenericService } from '@messaia/cdk';
|
|
2
|
-
import { TemplatePreview } from '../models/template-preview';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class TemplatePreviewService extends GenericService<TemplatePreview> {
|
|
5
|
-
/**
|
|
6
|
-
* Constructor
|
|
7
|
-
*/
|
|
8
|
-
constructor();
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TemplatePreviewService, never>;
|
|
10
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<TemplatePreviewService>;
|
|
11
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { GenericService } from '@messaia/cdk';
|
|
2
|
-
import { Template } from '../models/template';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class TemplateService extends GenericService<Template> {
|
|
5
|
-
/**
|
|
6
|
-
* Constructor
|
|
7
|
-
*/
|
|
8
|
-
constructor();
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TemplateService, never>;
|
|
10
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<TemplateService>;
|
|
11
|
-
}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const DocumentFormTemplate = "\n <div mat-dialog-title class=\"mat-headline-6\" i18n=\"@@newDocument\">New document</div>\n <form *ngIf=\"form\" [formGroup]=\"form\" (ngSubmit)=\"save()\">\n <vd-generic-form [formGroup]=\"form\" [fieldGroups]=\"fieldGroups\" [context]=\"this\">\n <ng-template vd-file let-field=\"field\" let-formGroup=\"formGroup\">\n <mat-form-field [attr.flex]=\"field.flex||0\" layout-margin appearance=\"outline\">\n <mat-label>{{field.header}}</mat-label>\n <div vd-file-input [formControlName]=\"field.name\" (select)=\"upload($event)\" [accept]=\"field.fileExtensions\"></div>\n </mat-form-field>\n </ng-template>\n </vd-generic-form>\n <div mat-dialog-actions class=\"pad-top\">\n <button type=\"submit\" mat-flat-button [disabled]=\"isSaving\" color=\"primary\" i18n=\"@@save\">Save</button>\n <button type=\"button\" mat-button (click)=\"cancel()\" i18n=\"@@cancel\">Cancel</button>\n </div>\n </form>";
|
|
2
|
-
export default DocumentFormTemplate;
|
package/public_api.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './lib/public-api';
|