@odx/angular 12.17.6 → 12.18.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/CHANGELOG.md +6 -0
- package/components/error-page/lib/error-page.config.d.ts +1 -1
- package/esm2022/components/error-page/lib/error-page.component.mjs +3 -3
- package/esm2022/components/error-page/lib/error-page.config.mjs +1 -1
- package/fesm2022/odx-angular-components-error-page.mjs +2 -2
- package/fesm2022/odx-angular-components-error-page.mjs.map +1 -1
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -12,7 +12,7 @@ import { ConfigDependencies, ConfigProvider } from '@odx/angular/utils';
|
|
|
12
12
|
* @property {DynamicContent} [errorMessage] - Optional additional error message content.
|
|
13
13
|
*/
|
|
14
14
|
export interface ErrorPageConfig {
|
|
15
|
-
icon?: string;
|
|
15
|
+
icon?: string | null;
|
|
16
16
|
iconSet?: string;
|
|
17
17
|
title: DynamicContent;
|
|
18
18
|
description?: DynamicContent;
|
|
@@ -24,7 +24,7 @@ let ErrorPageComponent = class ErrorPageComponent {
|
|
|
24
24
|
this.options = injectErrorPageConfig();
|
|
25
25
|
}
|
|
26
26
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ErrorPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
27
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: ErrorPageComponent, isStandalone: true, selector: "odx-error-page", ngImport: i0, template: "<div class=\"odx-error-page__container\">\n <div class=\"odx-error-page__icon-container\">\n
|
|
27
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: ErrorPageComponent, isStandalone: true, selector: "odx-error-page", ngImport: i0, template: "@let icon = options.icon;\n\n<div class=\"odx-error-page__container\">\n @if (icon !== null) {\n <div class=\"odx-error-page__icon-container\">\n @if (icon) {\n <odx-icon size=\"xlarge\" [name]=\"icon\" />\n } @else {\n <odx-logo size=\"large\" />\n }\n </div>\n }\n\n <div class=\"odx-error-page__title\">\n <ng-template [odxDynamicView]=\"options.title\" />\n </div>\n @if (options.description; as description) {\n <div class=\"odx-error-page__description\">\n <ng-template [odxDynamicView]=\"description\" />\n </div>\n }\n <div class=\"odx-error-page__actions\">\n @for (button of options.actions; let isFirst = $first; track $index) {\n <button [variant]=\"isFirst ? 'primary' : 'secondary'\" odxButton (click)=\"button.action()\">\n <ng-template [odxDynamicView]=\"button.label\" />\n </button>\n }\n </div>\n</div>\n@if (options.errorMessage; as errorMessage) {\n <div class=\"odx-error-page__footer\">\n <ng-template [odxDynamicView]=\"errorMessage\" />\n </div>\n}\n", dependencies: [{ kind: "directive", type: LogoDirective, selector: "odx-logo", inputs: ["size", "variant"] }, { kind: "component", type: IconComponent, selector: "odx-icon", inputs: ["inline", "size", "name", "iconSet", "identifier"] }, { kind: "ngmodule", type: CoreModule }, { kind: "component", type: ButtonComponent, selector: "button[odxButton], a[odxButton]", inputs: ["variant", "size"] }, { kind: "directive", type: DynamicViewDirective, selector: "ng-template[odxDynamicView]", inputs: ["odxDynamicView", "odxDynamicViewInjector", "odxDynamicViewContext"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
28
28
|
};
|
|
29
29
|
ErrorPageComponent = __decorate([
|
|
30
30
|
CSSComponent('error-page')
|
|
@@ -32,6 +32,6 @@ ErrorPageComponent = __decorate([
|
|
|
32
32
|
export { ErrorPageComponent };
|
|
33
33
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ErrorPageComponent, decorators: [{
|
|
34
34
|
type: Component,
|
|
35
|
-
args: [{ standalone: true, selector: 'odx-error-page', imports: [LogoDirective, IconComponent, CoreModule, ButtonComponent, DynamicViewDirective], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div class=\"odx-error-page__container\">\n <div class=\"odx-error-page__icon-container\">\n
|
|
35
|
+
args: [{ standalone: true, selector: 'odx-error-page', imports: [LogoDirective, IconComponent, CoreModule, ButtonComponent, DynamicViewDirective], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "@let icon = options.icon;\n\n<div class=\"odx-error-page__container\">\n @if (icon !== null) {\n <div class=\"odx-error-page__icon-container\">\n @if (icon) {\n <odx-icon size=\"xlarge\" [name]=\"icon\" />\n } @else {\n <odx-logo size=\"large\" />\n }\n </div>\n }\n\n <div class=\"odx-error-page__title\">\n <ng-template [odxDynamicView]=\"options.title\" />\n </div>\n @if (options.description; as description) {\n <div class=\"odx-error-page__description\">\n <ng-template [odxDynamicView]=\"description\" />\n </div>\n }\n <div class=\"odx-error-page__actions\">\n @for (button of options.actions; let isFirst = $first; track $index) {\n <button [variant]=\"isFirst ? 'primary' : 'secondary'\" odxButton (click)=\"button.action()\">\n <ng-template [odxDynamicView]=\"button.label\" />\n </button>\n }\n </div>\n</div>\n@if (options.errorMessage; as errorMessage) {\n <div class=\"odx-error-page__footer\">\n <ng-template [odxDynamicView]=\"errorMessage\" />\n </div>\n}\n" }]
|
|
36
36
|
}] });
|
|
37
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
37
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXJyb3ItcGFnZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2FuZ3VsYXIvY29tcG9uZW50cy9lcnJvci1wYWdlL3NyYy9saWIvZXJyb3ItcGFnZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2FuZ3VsYXIvY29tcG9uZW50cy9lcnJvci1wYWdlL3NyYy9saWIvZXJyb3ItcGFnZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN0RixPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sY0FBYyxDQUFDO0FBQzFDLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ3JFLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUNqRSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDN0QsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQzdELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUNyRCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDbkQsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0scUJBQXFCLENBQUM7O0FBRTVEOzs7R0FHRztBQVVJLElBQU0sa0JBQWtCLEdBQXhCLE1BQU0sa0JBQWtCO0lBQXhCO1FBQ1csWUFBTyxHQUFHLGFBQWEsRUFBRSxDQUFDO1FBRTFDOzs7O1dBSUc7UUFDSSxZQUFPLEdBQUcscUJBQXFCLEVBQUUsQ0FBQztLQUMxQzsrR0FUWSxrQkFBa0I7bUdBQWxCLGtCQUFrQiwwRUN2Qi9CLHNpQ0FrQ0EsNENEZlksYUFBYSxrRkFBRSxhQUFhLGlIQUFFLFVBQVUsK0JBQUUsZUFBZSx5R0FBRSxvQkFBb0I7O0FBSTlFLGtCQUFrQjtJQVQ5QixZQUFZLENBQUMsWUFBWSxDQUFDO0dBU2Qsa0JBQWtCLENBUzlCOzs0RkFUWSxrQkFBa0I7a0JBUjlCLFNBQVM7aUNBQ0ksSUFBSSxZQUNOLGdCQUFnQixXQUVqQixDQUFDLGFBQWEsRUFBRSxhQUFhLEVBQUUsVUFBVSxFQUFFLGVBQWUsRUFBRSxvQkFBb0IsQ0FBQyxtQkFDekUsdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb3JlTW9kdWxlIH0gZnJvbSAnQG9keC9hbmd1bGFyJztcbmltcG9ydCB7IER5bmFtaWNWaWV3RGlyZWN0aXZlIH0gZnJvbSAnQG9keC9hbmd1bGFyL2Nkay9keW5hbWljLXZpZXcnO1xuaW1wb3J0IHsgQnV0dG9uQ29tcG9uZW50IH0gZnJvbSAnQG9keC9hbmd1bGFyL2NvbXBvbmVudHMvYnV0dG9uJztcbmltcG9ydCB7IEljb25Db21wb25lbnQgfSBmcm9tICdAb2R4L2FuZ3VsYXIvY29tcG9uZW50cy9pY29uJztcbmltcG9ydCB7IExvZ29EaXJlY3RpdmUgfSBmcm9tICdAb2R4L2FuZ3VsYXIvY29tcG9uZW50cy9sb2dvJztcbmltcG9ydCB7IENTU0NvbXBvbmVudCB9IGZyb20gJ0BvZHgvYW5ndWxhci9pbnRlcm5hbCc7XG5pbXBvcnQgeyBpbmplY3RFbGVtZW50IH0gZnJvbSAnQG9keC9hbmd1bGFyL3V0aWxzJztcbmltcG9ydCB7IGluamVjdEVycm9yUGFnZUNvbmZpZyB9IGZyb20gJy4vZXJyb3ItcGFnZS5jb25maWcnO1xuXG4vKipcbiAqIFJlcHJlc2VudHMgdGhlIEVycm9yUGFnZUNvbXBvbmVudCBjbGFzcy5cbiAqIFRoaXMgY29tcG9uZW50IGlzIHJlc3BvbnNpYmxlIGZvciBkaXNwbGF5aW5nIGFuIGVycm9yIHBhZ2UuXG4gKi9cbkBDU1NDb21wb25lbnQoJ2Vycm9yLXBhZ2UnKVxuQENvbXBvbmVudCh7XG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIHNlbGVjdG9yOiAnb2R4LWVycm9yLXBhZ2UnLFxuICB0ZW1wbGF0ZVVybDogJy4vZXJyb3ItcGFnZS5jb21wb25lbnQuaHRtbCcsXG4gIGltcG9ydHM6IFtMb2dvRGlyZWN0aXZlLCBJY29uQ29tcG9uZW50LCBDb3JlTW9kdWxlLCBCdXR0b25Db21wb25lbnQsIER5bmFtaWNWaWV3RGlyZWN0aXZlXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG59KVxuZXhwb3J0IGNsYXNzIEVycm9yUGFnZUNvbXBvbmVudCB7XG4gIHB1YmxpYyByZWFkb25seSBlbGVtZW50ID0gaW5qZWN0RWxlbWVudCgpO1xuXG4gIC8qKlxuICAgKiBSZXByZXNlbnRzIHRoZSBvcHRpb25zIGZvciB0aGUgZXJyb3IgcGFnZSBjb21wb25lbnQuXG4gICAqXG4gICAqIEB0eXBlIHtFcnJvclBhZ2VDb25maWd9XG4gICAqL1xuICBwdWJsaWMgb3B0aW9ucyA9IGluamVjdEVycm9yUGFnZUNvbmZpZygpO1xufVxuIiwiQGxldCBpY29uID0gb3B0aW9ucy5pY29uO1xuXG48ZGl2IGNsYXNzPVwib2R4LWVycm9yLXBhZ2VfX2NvbnRhaW5lclwiPlxuICBAaWYgKGljb24gIT09IG51bGwpIHtcbiAgICA8ZGl2IGNsYXNzPVwib2R4LWVycm9yLXBhZ2VfX2ljb24tY29udGFpbmVyXCI+XG4gICAgICBAaWYgKGljb24pIHtcbiAgICAgICAgPG9keC1pY29uIHNpemU9XCJ4bGFyZ2VcIiBbbmFtZV09XCJpY29uXCIgLz5cbiAgICAgIH0gQGVsc2Uge1xuICAgICAgICA8b2R4LWxvZ28gc2l6ZT1cImxhcmdlXCIgLz5cbiAgICAgIH1cbiAgICA8L2Rpdj5cbiAgfVxuXG4gIDxkaXYgY2xhc3M9XCJvZHgtZXJyb3ItcGFnZV9fdGl0bGVcIj5cbiAgICA8bmctdGVtcGxhdGUgW29keER5bmFtaWNWaWV3XT1cIm9wdGlvbnMudGl0bGVcIiAvPlxuICA8L2Rpdj5cbiAgQGlmIChvcHRpb25zLmRlc2NyaXB0aW9uOyBhcyBkZXNjcmlwdGlvbikge1xuICAgIDxkaXYgY2xhc3M9XCJvZHgtZXJyb3ItcGFnZV9fZGVzY3JpcHRpb25cIj5cbiAgICAgIDxuZy10ZW1wbGF0ZSBbb2R4RHluYW1pY1ZpZXddPVwiZGVzY3JpcHRpb25cIiAvPlxuICAgIDwvZGl2PlxuICB9XG4gIDxkaXYgY2xhc3M9XCJvZHgtZXJyb3ItcGFnZV9fYWN0aW9uc1wiPlxuICAgIEBmb3IgKGJ1dHRvbiBvZiBvcHRpb25zLmFjdGlvbnM7IGxldCBpc0ZpcnN0ID0gJGZpcnN0OyB0cmFjayAkaW5kZXgpIHtcbiAgICAgIDxidXR0b24gW3ZhcmlhbnRdPVwiaXNGaXJzdCA/ICdwcmltYXJ5JyA6ICdzZWNvbmRhcnknXCIgb2R4QnV0dG9uIChjbGljayk9XCJidXR0b24uYWN0aW9uKClcIj5cbiAgICAgICAgPG5nLXRlbXBsYXRlIFtvZHhEeW5hbWljVmlld109XCJidXR0b24ubGFiZWxcIiAvPlxuICAgICAgPC9idXR0b24+XG4gICAgfVxuICA8L2Rpdj5cbjwvZGl2PlxuQGlmIChvcHRpb25zLmVycm9yTWVzc2FnZTsgYXMgZXJyb3JNZXNzYWdlKSB7XG4gIDxkaXYgY2xhc3M9XCJvZHgtZXJyb3ItcGFnZV9fZm9vdGVyXCI+XG4gICAgPG5nLXRlbXBsYXRlIFtvZHhEeW5hbWljVmlld109XCJlcnJvck1lc3NhZ2VcIiAvPlxuICA8L2Rpdj5cbn1cbiJdfQ==
|
|
@@ -15,4 +15,4 @@ export const { ErrorPageConfig, ErrorPageDefaultConfig, injectErrorPageConfig, p
|
|
|
15
15
|
export function configureErrorPage(config) {
|
|
16
16
|
return makeEnvironmentProviders([provideErrorPageConfig(config)]);
|
|
17
17
|
}
|
|
18
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXJyb3ItcGFnZS5jb25maWcuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2FuZ3VsYXIvY29tcG9uZW50cy9lcnJvci1wYWdlL3NyYy9saWIvZXJyb3ItcGFnZS5jb25maWcudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUF3Qix3QkFBd0IsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUUvRSxPQUFPLEVBQXNDLGtCQUFrQixFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUF5QjVGLE1BQU0sQ0FBQyxNQUFNLEVBQUUsZUFBZSxFQUFFLHNCQUFzQixFQUFFLHFCQUFxQixFQUFFLHNCQUFzQixFQUFFLEdBQUcsa0JBQWtCLENBQzFILFdBQVcsRUFDWCw0QkFBNEIsRUFDNUI7SUFDRSxLQUFLLEVBQUUsRUFBRTtJQUNULE9BQU8sRUFBRSxFQUFFO0NBQ08sQ0FDckIsQ0FBQztBQUVGOzs7Ozs7O0dBT0c7QUFDSCxNQUFNLFVBQVUsa0JBQWtCLENBQStCLE1BQW1EO0lBQ2xILE9BQU8sd0JBQXdCLENBQUMsQ0FBQyxzQkFBc0IsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUM7QUFDcEUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVudmlyb25tZW50UHJvdmlkZXJzLCBtYWtlRW52aXJvbm1lbnRQcm92aWRlcnMgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IER5bmFtaWNDb250ZW50IH0gZnJvbSAnQG9keC9hbmd1bGFyL2Nkay9keW5hbWljLXZpZXcnO1xuaW1wb3J0IHsgQ29uZmlnRGVwZW5kZW5jaWVzLCBDb25maWdQcm92aWRlciwgY3JlYXRlQ29uZmlnVG9rZW5zIH0gZnJvbSAnQG9keC9hbmd1bGFyL3V0aWxzJztcblxuLyoqXG4gKiBEZWZpbmVzIHRoZSBjb25maWd1cmF0aW9uIGZvciBhbiBlcnJvciBwYWdlIHVzZWQgd2l0aGluIGFuIGFwcGxpY2F0aW9uLiBUaGlzIGNhbiBpbmNsdWRlIGN1c3RvbSBpY29ucyxcbiAqIHRpdGxlcywgZGVzY3JpcHRpb25zLCBhY3Rpb25zLCBhbmQgYW4gb3B0aW9uYWwgZXJyb3IgbWVzc2FnZS5cbiAqIEBwcm9wZXJ0eSB7c3RyaW5nfSBbaWNvbl0gLSBUaGUgbmFtZSBvZiB0aGUgaWNvbiB0byBkaXNwbGF5IG9uIHRoZSBlcnJvciBwYWdlLlxuICogQHByb3BlcnR5IHtzdHJpbmd9IFtpY29uU2V0XSAtIFRoZSBpY29uIHNldCB0aGF0IHRoZSBpY29uIGJlbG9uZ3MgdG8uXG4gKiBAcHJvcGVydHkge0R5bmFtaWNDb250ZW50fSB0aXRsZSAtIFRoZSB0aXRsZSBjb250ZW50IGZvciB0aGUgZXJyb3IgcGFnZSwgd2hpY2ggY2FuIGJlIGEgc3RyaW5nIG9yIGEgZHluYW1pYyB0ZW1wbGF0ZS5cbiAqIEBwcm9wZXJ0eSB7RHluYW1pY0NvbnRlbnR9IFtkZXNjcmlwdGlvbl0gLSBPcHRpb25hbCBkZXNjcmlwdGlvbiBjb250ZW50IGZvciB0aGUgZXJyb3IgcGFnZS5cbiAqIEBwcm9wZXJ0eSB7IHsgbGFiZWw6IER5bmFtaWNDb250ZW50OyBhY3Rpb246ICgpID0+
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXJyb3ItcGFnZS5jb25maWcuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2FuZ3VsYXIvY29tcG9uZW50cy9lcnJvci1wYWdlL3NyYy9saWIvZXJyb3ItcGFnZS5jb25maWcudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUF3Qix3QkFBd0IsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUUvRSxPQUFPLEVBQXNDLGtCQUFrQixFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUF5QjVGLE1BQU0sQ0FBQyxNQUFNLEVBQUUsZUFBZSxFQUFFLHNCQUFzQixFQUFFLHFCQUFxQixFQUFFLHNCQUFzQixFQUFFLEdBQUcsa0JBQWtCLENBQzFILFdBQVcsRUFDWCw0QkFBNEIsRUFDNUI7SUFDRSxLQUFLLEVBQUUsRUFBRTtJQUNULE9BQU8sRUFBRSxFQUFFO0NBQ08sQ0FDckIsQ0FBQztBQUVGOzs7Ozs7O0dBT0c7QUFDSCxNQUFNLFVBQVUsa0JBQWtCLENBQStCLE1BQW1EO0lBQ2xILE9BQU8sd0JBQXdCLENBQUMsQ0FBQyxzQkFBc0IsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUM7QUFDcEUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVudmlyb25tZW50UHJvdmlkZXJzLCBtYWtlRW52aXJvbm1lbnRQcm92aWRlcnMgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IER5bmFtaWNDb250ZW50IH0gZnJvbSAnQG9keC9hbmd1bGFyL2Nkay9keW5hbWljLXZpZXcnO1xuaW1wb3J0IHsgQ29uZmlnRGVwZW5kZW5jaWVzLCBDb25maWdQcm92aWRlciwgY3JlYXRlQ29uZmlnVG9rZW5zIH0gZnJvbSAnQG9keC9hbmd1bGFyL3V0aWxzJztcblxuLyoqXG4gKiBEZWZpbmVzIHRoZSBjb25maWd1cmF0aW9uIGZvciBhbiBlcnJvciBwYWdlIHVzZWQgd2l0aGluIGFuIGFwcGxpY2F0aW9uLiBUaGlzIGNhbiBpbmNsdWRlIGN1c3RvbSBpY29ucyxcbiAqIHRpdGxlcywgZGVzY3JpcHRpb25zLCBhY3Rpb25zLCBhbmQgYW4gb3B0aW9uYWwgZXJyb3IgbWVzc2FnZS5cbiAqIEBwcm9wZXJ0eSB7c3RyaW5nfSBbaWNvbl0gLSBUaGUgbmFtZSBvZiB0aGUgaWNvbiB0byBkaXNwbGF5IG9uIHRoZSBlcnJvciBwYWdlLlxuICogQHByb3BlcnR5IHtzdHJpbmd9IFtpY29uU2V0XSAtIFRoZSBpY29uIHNldCB0aGF0IHRoZSBpY29uIGJlbG9uZ3MgdG8uXG4gKiBAcHJvcGVydHkge0R5bmFtaWNDb250ZW50fSB0aXRsZSAtIFRoZSB0aXRsZSBjb250ZW50IGZvciB0aGUgZXJyb3IgcGFnZSwgd2hpY2ggY2FuIGJlIGEgc3RyaW5nIG9yIGEgZHluYW1pYyB0ZW1wbGF0ZS5cbiAqIEBwcm9wZXJ0eSB7RHluYW1pY0NvbnRlbnR9IFtkZXNjcmlwdGlvbl0gLSBPcHRpb25hbCBkZXNjcmlwdGlvbiBjb250ZW50IGZvciB0aGUgZXJyb3IgcGFnZS5cbiAqIEBwcm9wZXJ0eSB7IHsgbGFiZWw6IER5bmFtaWNDb250ZW50OyBhY3Rpb246ICgpID0+IHZvaWQ7IH1bXSB9IGFjdGlvbnMgLSBBIGxpc3Qgb2YgYWN0aW9ucyB0aGF0IGNhbiBiZSB0YWtlbiBmcm9tIHRoZSBlcnJvciBwYWdlLCBlYWNoIHdpdGggYSBsYWJlbCBhbmQgYW4gYWN0aW9uIGZ1bmN0aW9uLlxuICogQHByb3BlcnR5IHtEeW5hbWljQ29udGVudH0gW2Vycm9yTWVzc2FnZV0gLSBPcHRpb25hbCBhZGRpdGlvbmFsIGVycm9yIG1lc3NhZ2UgY29udGVudC5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBFcnJvclBhZ2VDb25maWcge1xuICBpY29uPzogc3RyaW5nIHwgbnVsbDtcbiAgaWNvblNldD86IHN0cmluZztcbiAgdGl0bGU6IER5bmFtaWNDb250ZW50O1xuICBkZXNjcmlwdGlvbj86IER5bmFtaWNDb250ZW50O1xuICBhY3Rpb25zOiB7XG4gICAgbGFiZWw6IER5bmFtaWNDb250ZW50O1xuICAgIGFjdGlvbjogKCkgPT4gdm9pZDtcbiAgfVtdO1xuXG4gIGVycm9yTWVzc2FnZT86IER5bmFtaWNDb250ZW50O1xufVxuXG5leHBvcnQgY29uc3QgeyBFcnJvclBhZ2VDb25maWcsIEVycm9yUGFnZURlZmF1bHRDb25maWcsIGluamVjdEVycm9yUGFnZUNvbmZpZywgcHJvdmlkZUVycm9yUGFnZUNvbmZpZyB9ID0gY3JlYXRlQ29uZmlnVG9rZW5zKFxuICAnRXJyb3JQYWdlJyxcbiAgJ0BvZHgvY29tcG9uZW50cy9lcnJvci1wYWdlJyxcbiAge1xuICAgIHRpdGxlOiAnJyxcbiAgICBhY3Rpb25zOiBbXSxcbiAgfSBhcyBFcnJvclBhZ2VDb25maWcsXG4pO1xuXG4vKipcbiAqIENvbmZpZ3VyZXMgYW5kIHByb3ZpZGVzIHRoZSBuZWNlc3NhcnkgcHJvdmlkZXJzIGZvciBhbiBlcnJvciBwYWdlLCB1c2luZyBhIGNvbmZpZ3VyYXRpb24gb2JqZWN0IHRoYXQgc3BlY2lmaWVzXG4gKiBpY29ucywgdGl0bGVzLCBkZXNjcmlwdGlvbnMsIGFuZCBhY3Rpb25zLlxuICpcbiAqIEBwYXJhbSB7Q29uZmlnUHJvdmlkZXI8UGFydGlhbDxFcnJvclBhZ2VDb25maWc+LCBEPn0gY29uZmlnIC0gQSBjb25maWd1cmF0aW9uIG9iamVjdCBvciBwcm92aWRlciBmdW5jdGlvbiB0aGF0IHN1cHBsaWVzIGFuIGBFcnJvclBhZ2VDb25maWdgLlxuICogQHJldHVybnMge0Vudmlyb25tZW50UHJvdmlkZXJzfSBSZXR1cm5zIGEgY29uZmlndXJhdGlvbiB0aGF0IGNhbiBiZSB1c2VkIHRvIHJlZ2lzdGVyIHRoZSBlcnJvciBwYWdlIHByb3ZpZGVycy5cbiAqXG4gKi9cbmV4cG9ydCBmdW5jdGlvbiBjb25maWd1cmVFcnJvclBhZ2U8RCBleHRlbmRzIENvbmZpZ0RlcGVuZGVuY2llcz4oY29uZmlnOiBDb25maWdQcm92aWRlcjxQYXJ0aWFsPEVycm9yUGFnZUNvbmZpZz4sIEQ+KTogRW52aXJvbm1lbnRQcm92aWRlcnMge1xuICByZXR1cm4gbWFrZUVudmlyb25tZW50UHJvdmlkZXJzKFtwcm92aWRlRXJyb3JQYWdlQ29uZmlnKGNvbmZpZyldKTtcbn1cbiJdfQ==
|
|
@@ -40,14 +40,14 @@ let ErrorPageComponent = class ErrorPageComponent {
|
|
|
40
40
|
this.options = injectErrorPageConfig();
|
|
41
41
|
}
|
|
42
42
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ErrorPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
43
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: ErrorPageComponent, isStandalone: true, selector: "odx-error-page", ngImport: i0, template: "<div class=\"odx-error-page__container\">\n <div class=\"odx-error-page__icon-container\">\n
|
|
43
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: ErrorPageComponent, isStandalone: true, selector: "odx-error-page", ngImport: i0, template: "@let icon = options.icon;\n\n<div class=\"odx-error-page__container\">\n @if (icon !== null) {\n <div class=\"odx-error-page__icon-container\">\n @if (icon) {\n <odx-icon size=\"xlarge\" [name]=\"icon\" />\n } @else {\n <odx-logo size=\"large\" />\n }\n </div>\n }\n\n <div class=\"odx-error-page__title\">\n <ng-template [odxDynamicView]=\"options.title\" />\n </div>\n @if (options.description; as description) {\n <div class=\"odx-error-page__description\">\n <ng-template [odxDynamicView]=\"description\" />\n </div>\n }\n <div class=\"odx-error-page__actions\">\n @for (button of options.actions; let isFirst = $first; track $index) {\n <button [variant]=\"isFirst ? 'primary' : 'secondary'\" odxButton (click)=\"button.action()\">\n <ng-template [odxDynamicView]=\"button.label\" />\n </button>\n }\n </div>\n</div>\n@if (options.errorMessage; as errorMessage) {\n <div class=\"odx-error-page__footer\">\n <ng-template [odxDynamicView]=\"errorMessage\" />\n </div>\n}\n", dependencies: [{ kind: "directive", type: LogoDirective, selector: "odx-logo", inputs: ["size", "variant"] }, { kind: "component", type: IconComponent, selector: "odx-icon", inputs: ["inline", "size", "name", "iconSet", "identifier"] }, { kind: "ngmodule", type: CoreModule }, { kind: "component", type: ButtonComponent, selector: "button[odxButton], a[odxButton]", inputs: ["variant", "size"] }, { kind: "directive", type: DynamicViewDirective, selector: "ng-template[odxDynamicView]", inputs: ["odxDynamicView", "odxDynamicViewInjector", "odxDynamicViewContext"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
44
44
|
};
|
|
45
45
|
ErrorPageComponent = __decorate([
|
|
46
46
|
CSSComponent('error-page')
|
|
47
47
|
], ErrorPageComponent);
|
|
48
48
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ErrorPageComponent, decorators: [{
|
|
49
49
|
type: Component,
|
|
50
|
-
args: [{ standalone: true, selector: 'odx-error-page', imports: [LogoDirective, IconComponent, CoreModule, ButtonComponent, DynamicViewDirective], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div class=\"odx-error-page__container\">\n <div class=\"odx-error-page__icon-container\">\n
|
|
50
|
+
args: [{ standalone: true, selector: 'odx-error-page', imports: [LogoDirective, IconComponent, CoreModule, ButtonComponent, DynamicViewDirective], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "@let icon = options.icon;\n\n<div class=\"odx-error-page__container\">\n @if (icon !== null) {\n <div class=\"odx-error-page__icon-container\">\n @if (icon) {\n <odx-icon size=\"xlarge\" [name]=\"icon\" />\n } @else {\n <odx-logo size=\"large\" />\n }\n </div>\n }\n\n <div class=\"odx-error-page__title\">\n <ng-template [odxDynamicView]=\"options.title\" />\n </div>\n @if (options.description; as description) {\n <div class=\"odx-error-page__description\">\n <ng-template [odxDynamicView]=\"description\" />\n </div>\n }\n <div class=\"odx-error-page__actions\">\n @for (button of options.actions; let isFirst = $first; track $index) {\n <button [variant]=\"isFirst ? 'primary' : 'secondary'\" odxButton (click)=\"button.action()\">\n <ng-template [odxDynamicView]=\"button.label\" />\n </button>\n }\n </div>\n</div>\n@if (options.errorMessage; as errorMessage) {\n <div class=\"odx-error-page__footer\">\n <ng-template [odxDynamicView]=\"errorMessage\" />\n </div>\n}\n" }]
|
|
51
51
|
}] });
|
|
52
52
|
|
|
53
53
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"odx-angular-components-error-page.mjs","sources":["../../../../libs/angular/components/error-page/src/lib/error-page.config.ts","../../../../libs/angular/components/error-page/src/lib/error-page.component.ts","../../../../libs/angular/components/error-page/src/lib/error-page.component.html","../../../../libs/angular/components/error-page/src/odx-angular-components-error-page.ts"],"sourcesContent":["import { EnvironmentProviders, makeEnvironmentProviders } from '@angular/core';\nimport { DynamicContent } from '@odx/angular/cdk/dynamic-view';\nimport { ConfigDependencies, ConfigProvider, createConfigTokens } from '@odx/angular/utils';\n\n/**\n * Defines the configuration for an error page used within an application. This can include custom icons,\n * titles, descriptions, actions, and an optional error message.\n * @property {string} [icon] - The name of the icon to display on the error page.\n * @property {string} [iconSet] - The icon set that the icon belongs to.\n * @property {DynamicContent} title - The title content for the error page, which can be a string or a dynamic template.\n * @property {DynamicContent} [description] - Optional description content for the error page.\n * @property { { label: DynamicContent; action: () => void; }[] } actions - A list of actions that can be taken from the error page, each with a label and an action function.\n * @property {DynamicContent} [errorMessage] - Optional additional error message content.\n */\nexport interface ErrorPageConfig {\n icon?: string;\n iconSet?: string;\n title: DynamicContent;\n description?: DynamicContent;\n actions: {\n label: DynamicContent;\n action: () => void;\n }[];\n\n errorMessage?: DynamicContent;\n}\n\nexport const { ErrorPageConfig, ErrorPageDefaultConfig, injectErrorPageConfig, provideErrorPageConfig } = createConfigTokens(\n 'ErrorPage',\n '@odx/components/error-page',\n {\n title: '',\n actions: [],\n } as ErrorPageConfig,\n);\n\n/**\n * Configures and provides the necessary providers for an error page, using a configuration object that specifies\n * icons, titles, descriptions, and actions.\n *\n * @param {ConfigProvider<Partial<ErrorPageConfig>, D>} config - A configuration object or provider function that supplies an `ErrorPageConfig`.\n * @returns {EnvironmentProviders} Returns a configuration that can be used to register the error page providers.\n *\n */\nexport function configureErrorPage<D extends ConfigDependencies>(config: ConfigProvider<Partial<ErrorPageConfig>, D>): EnvironmentProviders {\n return makeEnvironmentProviders([provideErrorPageConfig(config)]);\n}\n","import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';\nimport { CoreModule } from '@odx/angular';\nimport { DynamicViewDirective } from '@odx/angular/cdk/dynamic-view';\nimport { ButtonComponent } from '@odx/angular/components/button';\nimport { IconComponent } from '@odx/angular/components/icon';\nimport { LogoDirective } from '@odx/angular/components/logo';\nimport { CSSComponent } from '@odx/angular/internal';\nimport { injectElement } from '@odx/angular/utils';\nimport { injectErrorPageConfig } from './error-page.config';\n\n/**\n * Represents the ErrorPageComponent class.\n * This component is responsible for displaying an error page.\n */\n@CSSComponent('error-page')\n@Component({\n standalone: true,\n selector: 'odx-error-page',\n templateUrl: './error-page.component.html',\n imports: [LogoDirective, IconComponent, CoreModule, ButtonComponent, DynamicViewDirective],\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n})\nexport class ErrorPageComponent {\n public readonly element = injectElement();\n\n /**\n * Represents the options for the error page component.\n *\n * @type {ErrorPageConfig}\n */\n public options = injectErrorPageConfig();\n}\n","<div class=\"odx-error-page__container\">\n <div class=\"odx-error-page__icon-container\">\n
|
|
1
|
+
{"version":3,"file":"odx-angular-components-error-page.mjs","sources":["../../../../libs/angular/components/error-page/src/lib/error-page.config.ts","../../../../libs/angular/components/error-page/src/lib/error-page.component.ts","../../../../libs/angular/components/error-page/src/lib/error-page.component.html","../../../../libs/angular/components/error-page/src/odx-angular-components-error-page.ts"],"sourcesContent":["import { EnvironmentProviders, makeEnvironmentProviders } from '@angular/core';\nimport { DynamicContent } from '@odx/angular/cdk/dynamic-view';\nimport { ConfigDependencies, ConfigProvider, createConfigTokens } from '@odx/angular/utils';\n\n/**\n * Defines the configuration for an error page used within an application. This can include custom icons,\n * titles, descriptions, actions, and an optional error message.\n * @property {string} [icon] - The name of the icon to display on the error page.\n * @property {string} [iconSet] - The icon set that the icon belongs to.\n * @property {DynamicContent} title - The title content for the error page, which can be a string or a dynamic template.\n * @property {DynamicContent} [description] - Optional description content for the error page.\n * @property { { label: DynamicContent; action: () => void; }[] } actions - A list of actions that can be taken from the error page, each with a label and an action function.\n * @property {DynamicContent} [errorMessage] - Optional additional error message content.\n */\nexport interface ErrorPageConfig {\n icon?: string | null;\n iconSet?: string;\n title: DynamicContent;\n description?: DynamicContent;\n actions: {\n label: DynamicContent;\n action: () => void;\n }[];\n\n errorMessage?: DynamicContent;\n}\n\nexport const { ErrorPageConfig, ErrorPageDefaultConfig, injectErrorPageConfig, provideErrorPageConfig } = createConfigTokens(\n 'ErrorPage',\n '@odx/components/error-page',\n {\n title: '',\n actions: [],\n } as ErrorPageConfig,\n);\n\n/**\n * Configures and provides the necessary providers for an error page, using a configuration object that specifies\n * icons, titles, descriptions, and actions.\n *\n * @param {ConfigProvider<Partial<ErrorPageConfig>, D>} config - A configuration object or provider function that supplies an `ErrorPageConfig`.\n * @returns {EnvironmentProviders} Returns a configuration that can be used to register the error page providers.\n *\n */\nexport function configureErrorPage<D extends ConfigDependencies>(config: ConfigProvider<Partial<ErrorPageConfig>, D>): EnvironmentProviders {\n return makeEnvironmentProviders([provideErrorPageConfig(config)]);\n}\n","import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';\nimport { CoreModule } from '@odx/angular';\nimport { DynamicViewDirective } from '@odx/angular/cdk/dynamic-view';\nimport { ButtonComponent } from '@odx/angular/components/button';\nimport { IconComponent } from '@odx/angular/components/icon';\nimport { LogoDirective } from '@odx/angular/components/logo';\nimport { CSSComponent } from '@odx/angular/internal';\nimport { injectElement } from '@odx/angular/utils';\nimport { injectErrorPageConfig } from './error-page.config';\n\n/**\n * Represents the ErrorPageComponent class.\n * This component is responsible for displaying an error page.\n */\n@CSSComponent('error-page')\n@Component({\n standalone: true,\n selector: 'odx-error-page',\n templateUrl: './error-page.component.html',\n imports: [LogoDirective, IconComponent, CoreModule, ButtonComponent, DynamicViewDirective],\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n})\nexport class ErrorPageComponent {\n public readonly element = injectElement();\n\n /**\n * Represents the options for the error page component.\n *\n * @type {ErrorPageConfig}\n */\n public options = injectErrorPageConfig();\n}\n","@let icon = options.icon;\n\n<div class=\"odx-error-page__container\">\n @if (icon !== null) {\n <div class=\"odx-error-page__icon-container\">\n @if (icon) {\n <odx-icon size=\"xlarge\" [name]=\"icon\" />\n } @else {\n <odx-logo size=\"large\" />\n }\n </div>\n }\n\n <div class=\"odx-error-page__title\">\n <ng-template [odxDynamicView]=\"options.title\" />\n </div>\n @if (options.description; as description) {\n <div class=\"odx-error-page__description\">\n <ng-template [odxDynamicView]=\"description\" />\n </div>\n }\n <div class=\"odx-error-page__actions\">\n @for (button of options.actions; let isFirst = $first; track $index) {\n <button [variant]=\"isFirst ? 'primary' : 'secondary'\" odxButton (click)=\"button.action()\">\n <ng-template [odxDynamicView]=\"button.label\" />\n </button>\n }\n </div>\n</div>\n@if (options.errorMessage; as errorMessage) {\n <div class=\"odx-error-page__footer\">\n <ng-template [odxDynamicView]=\"errorMessage\" />\n </div>\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;;;;;AA2Ba,MAAA,EAAE,eAAe,EAAE,sBAAsB,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,GAAG,kBAAkB,CAC1H,WAAW,EACX,4BAA4B,EAC5B;AACE,IAAA,KAAK,EAAE,EAAE;AACT,IAAA,OAAO,EAAE,EAAE;AACO,CAAA,EACpB;AAEF;;;;;;;AAOG;AACG,SAAU,kBAAkB,CAA+B,MAAmD,EAAA;IAClH,OAAO,wBAAwB,CAAC,CAAC,sBAAsB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;AACpE;;ACpCA;;;AAGG;AAUU,IAAA,kBAAkB,GAAxB,MAAM,kBAAkB,CAAA;AAAxB,IAAA,WAAA,GAAA;QACW,IAAO,CAAA,OAAA,GAAG,aAAa,EAAE,CAAC;AAE1C;;;;AAIG;QACI,IAAO,CAAA,OAAA,GAAG,qBAAqB,EAAE,CAAC;AAC1C,KAAA;+GATY,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;mGAAlB,kBAAkB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECvB/B,siCAkCA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EDfY,aAAa,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAE,aAAa,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,QAAA,EAAA,MAAA,EAAA,MAAA,EAAA,SAAA,EAAA,YAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,UAAU,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAE,eAAe,EAAA,QAAA,EAAA,iCAAA,EAAA,MAAA,EAAA,CAAA,SAAA,EAAA,MAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAE,oBAAoB,EAAA,QAAA,EAAA,6BAAA,EAAA,MAAA,EAAA,CAAA,gBAAA,EAAA,wBAAA,EAAA,uBAAA,CAAA,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,aAAA,EAAA,EAAA,CAAA,iBAAA,CAAA,IAAA,EAAA,CAAA,CAAA,EAAA;;AAI9E,kBAAkB,GAAA,UAAA,CAAA;IAT9B,YAAY,CAAC,YAAY,CAAC;AASd,CAAA,EAAA,kBAAkB,CAS9B,CAAA;4FATY,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAR9B,SAAS;iCACI,IAAI,EAAA,QAAA,EACN,gBAAgB,EAEjB,OAAA,EAAA,CAAC,aAAa,EAAE,aAAa,EAAE,UAAU,EAAE,eAAe,EAAE,oBAAoB,CAAC,EACzE,eAAA,EAAA,uBAAuB,CAAC,MAAM,EAAA,aAAA,EAChC,iBAAiB,CAAC,IAAI,EAAA,QAAA,EAAA,siCAAA,EAAA,CAAA;;;AErBvC;;AAEG;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odx/angular",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.18.0",
|
|
4
4
|
"author": "Drägerwerk AG & Co.KGaA",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"peerDependencies": {
|
|
@@ -232,23 +232,17 @@
|
|
|
232
232
|
"esm": "./esm2022/components/calendar/odx-angular-components-calendar.mjs",
|
|
233
233
|
"default": "./fesm2022/odx-angular-components-calendar.mjs"
|
|
234
234
|
},
|
|
235
|
-
"./components/checkbox": {
|
|
236
|
-
"types": "./components/checkbox/index.d.ts",
|
|
237
|
-
"esm2022": "./esm2022/components/checkbox/odx-angular-components-checkbox.mjs",
|
|
238
|
-
"esm": "./esm2022/components/checkbox/odx-angular-components-checkbox.mjs",
|
|
239
|
-
"default": "./fesm2022/odx-angular-components-checkbox.mjs"
|
|
240
|
-
},
|
|
241
235
|
"./components/card": {
|
|
242
236
|
"types": "./components/card/index.d.ts",
|
|
243
237
|
"esm2022": "./esm2022/components/card/odx-angular-components-card.mjs",
|
|
244
238
|
"esm": "./esm2022/components/card/odx-angular-components-card.mjs",
|
|
245
239
|
"default": "./fesm2022/odx-angular-components-card.mjs"
|
|
246
240
|
},
|
|
247
|
-
"./components/
|
|
248
|
-
"types": "./components/
|
|
249
|
-
"esm2022": "./esm2022/components/
|
|
250
|
-
"esm": "./esm2022/components/
|
|
251
|
-
"default": "./fesm2022/odx-angular-components-
|
|
241
|
+
"./components/checkbox": {
|
|
242
|
+
"types": "./components/checkbox/index.d.ts",
|
|
243
|
+
"esm2022": "./esm2022/components/checkbox/odx-angular-components-checkbox.mjs",
|
|
244
|
+
"esm": "./esm2022/components/checkbox/odx-angular-components-checkbox.mjs",
|
|
245
|
+
"default": "./fesm2022/odx-angular-components-checkbox.mjs"
|
|
252
246
|
},
|
|
253
247
|
"./components/chip": {
|
|
254
248
|
"types": "./components/chip/index.d.ts",
|
|
@@ -256,6 +250,12 @@
|
|
|
256
250
|
"esm": "./esm2022/components/chip/odx-angular-components-chip.mjs",
|
|
257
251
|
"default": "./fesm2022/odx-angular-components-chip.mjs"
|
|
258
252
|
},
|
|
253
|
+
"./components/circular-progress": {
|
|
254
|
+
"types": "./components/circular-progress/index.d.ts",
|
|
255
|
+
"esm2022": "./esm2022/components/circular-progress/odx-angular-components-circular-progress.mjs",
|
|
256
|
+
"esm": "./esm2022/components/circular-progress/odx-angular-components-circular-progress.mjs",
|
|
257
|
+
"default": "./fesm2022/odx-angular-components-circular-progress.mjs"
|
|
258
|
+
},
|
|
259
259
|
"./components/content-box": {
|
|
260
260
|
"types": "./components/content-box/index.d.ts",
|
|
261
261
|
"esm2022": "./esm2022/components/content-box/odx-angular-components-content-box.mjs",
|
|
@@ -316,18 +316,18 @@
|
|
|
316
316
|
"esm": "./esm2022/components/header-navigation/odx-angular-components-header-navigation.mjs",
|
|
317
317
|
"default": "./fesm2022/odx-angular-components-header-navigation.mjs"
|
|
318
318
|
},
|
|
319
|
-
"./components/icon": {
|
|
320
|
-
"types": "./components/icon/index.d.ts",
|
|
321
|
-
"esm2022": "./esm2022/components/icon/odx-angular-components-icon.mjs",
|
|
322
|
-
"esm": "./esm2022/components/icon/odx-angular-components-icon.mjs",
|
|
323
|
-
"default": "./fesm2022/odx-angular-components-icon.mjs"
|
|
324
|
-
},
|
|
325
319
|
"./components/inline-message": {
|
|
326
320
|
"types": "./components/inline-message/index.d.ts",
|
|
327
321
|
"esm2022": "./esm2022/components/inline-message/odx-angular-components-inline-message.mjs",
|
|
328
322
|
"esm": "./esm2022/components/inline-message/odx-angular-components-inline-message.mjs",
|
|
329
323
|
"default": "./fesm2022/odx-angular-components-inline-message.mjs"
|
|
330
324
|
},
|
|
325
|
+
"./components/icon": {
|
|
326
|
+
"types": "./components/icon/index.d.ts",
|
|
327
|
+
"esm2022": "./esm2022/components/icon/odx-angular-components-icon.mjs",
|
|
328
|
+
"esm": "./esm2022/components/icon/odx-angular-components-icon.mjs",
|
|
329
|
+
"default": "./fesm2022/odx-angular-components-icon.mjs"
|
|
330
|
+
},
|
|
331
331
|
"./components/link": {
|
|
332
332
|
"types": "./components/link/index.d.ts",
|
|
333
333
|
"esm2022": "./esm2022/components/link/odx-angular-components-link.mjs",
|