nuxeo-development-framework 6.2.6 → 6.2.7
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/bundles/nuxeo-development-framework.umd.js +137 -13
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.js +1 -1
- package/esm2015/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.js +1 -1
- package/esm2015/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.js +1 -1
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component.js +1 -1
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select.component.js +1 -1
- package/esm2015/lib/components/file-manger/components/create-modal/create-modal.component.js +1 -1
- package/esm2015/lib/components/ndf-config-editor/components/info-dialog/info-dialog.component.js +1 -1
- package/esm2015/lib/components/ndf-errors/404/404.component.js +75 -0
- package/esm2015/lib/components/ndf-errors/errors.module.js +31 -0
- package/esm2015/lib/components/ndf-errors/index.js +3 -0
- package/esm2015/lib/components/ndf-scanner/ndf-scanner.component.js +1 -1
- package/esm2015/lib/components/reports/ndf-reports/charts-components/graph-chart/graph-chart.component.js +1 -1
- package/esm2015/lib/components/reports/ndf-reports/containers/ndf-reports/ndf-reports.component.js +2 -2
- package/esm2015/lib/components/reports/ndf-reports/directives/empty-content-template.directive.js +1 -1
- package/esm2015/lib/components/reports/ndf-reports/directives/header-panel-template.directive.js +1 -1
- package/esm2015/lib/components/tables/ndf-table/containers/ndf-table/ndf-table.component.js +1 -1
- package/esm2015/lib/components/tables/shared/index.js +1 -1
- package/esm2015/lib/components/tables/table/table/table.component.js +1 -1
- package/esm2015/lib/shared/components/button/button.component.js +1 -1
- package/esm2015/public-api.js +2 -1
- package/fesm2015/nuxeo-development-framework.js +109 -14
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/ndf-errors/404/404.component.d.ts +20 -0
- package/lib/components/ndf-errors/errors.module.d.ts +9 -0
- package/lib/components/ndf-errors/index.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Injector, OnDestroy, OnInit } from "@angular/core";
|
|
2
|
+
import { BaseComponent } from "../../../shared";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class NdfError404Component extends BaseComponent implements OnInit, OnDestroy {
|
|
5
|
+
title: string;
|
|
6
|
+
description: string;
|
|
7
|
+
content: string;
|
|
8
|
+
color: string;
|
|
9
|
+
errorCode: string;
|
|
10
|
+
private readonly translationDictionary;
|
|
11
|
+
constructor(injector: Injector);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
get isTranslationLoaded(): boolean;
|
|
14
|
+
get translationLanguage(): string;
|
|
15
|
+
get fallbackTitle(): string;
|
|
16
|
+
get fallbackDescription(): string;
|
|
17
|
+
get fallbackContent(): string;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NdfError404Component, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NdfError404Component, "ndf-error-404", never, { "title": "title"; "description": "description"; "content": "content"; "color": "color"; "errorCode": "errorCode"; }, {}, never, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./404/404.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@ngx-translate/core";
|
|
5
|
+
export declare class NdfErrorsModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NdfErrorsModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NdfErrorsModule, [typeof i1.NdfError404Component], [typeof i2.CommonModule, typeof i3.TranslateModule], [typeof i1.NdfError404Component]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NdfErrorsModule>;
|
|
9
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -239,6 +239,7 @@ export * from './lib/components/ndf-scanner';
|
|
|
239
239
|
export * from './lib/components/ndf-signatures';
|
|
240
240
|
export * from './lib/components/ndf-tabs';
|
|
241
241
|
export * from './lib/components/ndf-uploader';
|
|
242
|
+
export * from './lib/components/ndf-errors';
|
|
242
243
|
export * from './lib/components/no-data-found';
|
|
243
244
|
export * from './lib/components/reports/chart-panel';
|
|
244
245
|
export * from './lib/components/reports/charts';
|