angular-toolbox 1.4.5 → 1.4.6
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 +1 -1
- package/esm2022/lib/component/layout/border-layout/util/border-layout-renderer.mjs +1 -1
- package/esm2022/lib/component/layout/border-layout-container/border-layout-container.component.mjs +1 -1
- package/esm2022/lib/framework/dialog/dialog-backdrop-type.enum.mjs +23 -0
- package/esm2022/lib/framework/dialog/dialog-backdrop.type.mjs +9 -0
- package/esm2022/lib/framework/dialog/dialog-default-config.mjs +15 -0
- package/esm2022/lib/framework/dialog/dialog-outlet-event-type.mjs +9 -0
- package/esm2022/lib/framework/dialog/dialog-outlet.event.mjs +33 -0
- package/esm2022/lib/framework/dialog/dialog-service.error.mjs +27 -0
- package/esm2022/lib/framework/dialog/dialog-service.mjs +67 -0
- package/esm2022/lib/framework/dialog/dialog.config.mjs +9 -0
- package/esm2022/lib/framework/dialog/dialog.outlet.mjs +94 -0
- package/esm2022/lib/framework/dialog/index.mjs +16 -0
- package/esm2022/lib/framework/index.mjs +2 -1
- package/esm2022/lib/model/service/version/angular-toolbox-version.service.mjs +3 -3
- package/fesm2022/angular-toolbox.mjs +296 -16
- package/fesm2022/angular-toolbox.mjs.map +1 -1
- package/lib/framework/dialog/dialog-backdrop-type.enum.d.ts +20 -0
- package/lib/framework/dialog/dialog-backdrop.type.d.ts +11 -0
- package/lib/framework/dialog/dialog-default-config.d.ts +12 -0
- package/lib/framework/dialog/dialog-outlet-event-type.d.ts +11 -0
- package/lib/framework/dialog/dialog-outlet.event.d.ts +40 -0
- package/lib/framework/dialog/dialog-service.d.ts +47 -0
- package/lib/framework/dialog/dialog-service.error.d.ts +19 -0
- package/lib/framework/dialog/dialog.config.d.ts +18 -0
- package/lib/framework/dialog/dialog.outlet.d.ts +59 -0
- package/lib/framework/dialog/index.d.ts +15 -0
- package/lib/framework/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Injectable, NgModule, EventEmitter, Component, Inject, isDevMode, Optional, ChangeDetectionStrategy, Input, Pipe, Output, inject,
|
|
2
|
+
import { Injectable, NgModule, EventEmitter, Component, Inject, isDevMode, Optional, ChangeDetectionStrategy, Input, Pipe, Output, inject, ViewContainerRef, ViewChild, ViewEncapsulation, HostBinding, HostListener, ContentChildren, Directive } from '@angular/core';
|
|
3
3
|
import { Observable, from, of } from 'rxjs';
|
|
4
4
|
import * as i1$1 from '@angular/common';
|
|
5
5
|
import { DOCUMENT, formatDate, CommonModule, DatePipe, NgStyle, XhrFactory } from '@angular/common';
|
|
@@ -18,7 +18,7 @@ import { HttpContextToken, HttpHeaders, HttpContext, HttpParams, HttpRequest, Ht
|
|
|
18
18
|
/**
|
|
19
19
|
* @private
|
|
20
20
|
*/
|
|
21
|
-
const NAME$
|
|
21
|
+
const NAME$5 = "SubscriptionError";
|
|
22
22
|
/**
|
|
23
23
|
* Represents errors thrown by `SubscriptionService` instances.
|
|
24
24
|
*/
|
|
@@ -30,7 +30,7 @@ class SubscriptionError extends Error {
|
|
|
30
30
|
*/
|
|
31
31
|
constructor(message) {
|
|
32
32
|
super(message);
|
|
33
|
-
this.name = NAME$
|
|
33
|
+
this.name = NAME$5;
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
|
|
@@ -44,7 +44,7 @@ class SubscriptionError extends Error {
|
|
|
44
44
|
/**
|
|
45
45
|
* @private
|
|
46
46
|
*/
|
|
47
|
-
const NAME$
|
|
47
|
+
const NAME$4 = "IntegrityError";
|
|
48
48
|
/**
|
|
49
49
|
* Represents a data integrity violation error.
|
|
50
50
|
*/
|
|
@@ -56,7 +56,7 @@ class IntegrityError extends Error {
|
|
|
56
56
|
*/
|
|
57
57
|
constructor(message) {
|
|
58
58
|
super(message);
|
|
59
|
-
this.name = NAME$
|
|
59
|
+
this.name = NAME$4;
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
62
|
|
|
@@ -70,7 +70,7 @@ class IntegrityError extends Error {
|
|
|
70
70
|
/**
|
|
71
71
|
* @private
|
|
72
72
|
*/
|
|
73
|
-
const NAME$
|
|
73
|
+
const NAME$3 = "AppBridgeError";
|
|
74
74
|
/**
|
|
75
75
|
* Represents exceptions thrown by the `AppBridge` class.
|
|
76
76
|
*/
|
|
@@ -80,7 +80,7 @@ class AppBridgeError extends ReferenceError {
|
|
|
80
80
|
*/
|
|
81
81
|
constructor(message) {
|
|
82
82
|
super(message);
|
|
83
|
-
this.name = NAME$
|
|
83
|
+
this.name = NAME$3;
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
|
|
@@ -94,7 +94,7 @@ class AppBridgeError extends ReferenceError {
|
|
|
94
94
|
/**
|
|
95
95
|
* @private
|
|
96
96
|
*/
|
|
97
|
-
const NAME$
|
|
97
|
+
const NAME$2 = "HttpMockServiceError";
|
|
98
98
|
/**
|
|
99
99
|
* Represents errors thrown by `HttpMockService` instances.
|
|
100
100
|
*/
|
|
@@ -106,7 +106,7 @@ class HttpMockServiceError extends Error {
|
|
|
106
106
|
*/
|
|
107
107
|
constructor(message) {
|
|
108
108
|
super(message);
|
|
109
|
-
this.name = NAME$
|
|
109
|
+
this.name = NAME$2;
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
@@ -586,8 +586,8 @@ class AbstractVersionManager {
|
|
|
586
586
|
const ATX_VERSION_CONFIG = {
|
|
587
587
|
major: 1,
|
|
588
588
|
minor: 4,
|
|
589
|
-
patch:
|
|
590
|
-
buildTimestamp:
|
|
589
|
+
patch: 6,
|
|
590
|
+
buildTimestamp: 1733307295401
|
|
591
591
|
};
|
|
592
592
|
/**
|
|
593
593
|
* The public service that exposes the current version of the Angular Toolbox library.
|
|
@@ -2540,7 +2540,7 @@ const QUESTION_MARK = "?";
|
|
|
2540
2540
|
* @private
|
|
2541
2541
|
* The reference to the `NAME` `TokenType`.
|
|
2542
2542
|
*/
|
|
2543
|
-
const NAME = "NAME";
|
|
2543
|
+
const NAME$1 = "NAME";
|
|
2544
2544
|
/**
|
|
2545
2545
|
* @private
|
|
2546
2546
|
* The reference to the `PATTERN` `TokenType`.
|
|
@@ -2977,7 +2977,7 @@ const lexer = (str) => {
|
|
|
2977
2977
|
if (!name) {
|
|
2978
2978
|
throw new TypeError(`Missing parameter name at ${i}`);
|
|
2979
2979
|
}
|
|
2980
|
-
tokens.push({ type: NAME, index: i, value: name });
|
|
2980
|
+
tokens.push({ type: NAME$1, index: i, value: name });
|
|
2981
2981
|
continue;
|
|
2982
2982
|
}
|
|
2983
2983
|
if (value === LEFT_PARENTHESIS) {
|
|
@@ -3055,7 +3055,7 @@ const stringToTokenData = (str, options = {}) => {
|
|
|
3055
3055
|
const path = it.text();
|
|
3056
3056
|
if (path)
|
|
3057
3057
|
tokens.push(encodePath(path));
|
|
3058
|
-
const name = it.tryConsume(NAME);
|
|
3058
|
+
const name = it.tryConsume(NAME$1);
|
|
3059
3059
|
const pattern = it.tryConsume(PATTERN);
|
|
3060
3060
|
if (name || pattern) {
|
|
3061
3061
|
tokens.push({
|
|
@@ -3081,7 +3081,7 @@ const stringToTokenData = (str, options = {}) => {
|
|
|
3081
3081
|
const open = it.tryConsume(LEFT_CURLY_BRACE);
|
|
3082
3082
|
if (open) {
|
|
3083
3083
|
const prefix = it.text();
|
|
3084
|
-
const name = it.tryConsume(NAME);
|
|
3084
|
+
const name = it.tryConsume(NAME$1);
|
|
3085
3085
|
const pattern = it.tryConsume(PATTERN);
|
|
3086
3086
|
const suffix = it.text();
|
|
3087
3087
|
const separator = it.tryConsume(SEMI_COLON) ? it.text() : prefix + suffix;
|
|
@@ -8090,6 +8090,286 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
8090
8090
|
type: Input
|
|
8091
8091
|
}] } });
|
|
8092
8092
|
|
|
8093
|
+
/**
|
|
8094
|
+
* @license
|
|
8095
|
+
* Copyright Pascal ECHEMANN. All Rights Reserved.
|
|
8096
|
+
*
|
|
8097
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
8098
|
+
* found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
|
|
8099
|
+
*/
|
|
8100
|
+
/**
|
|
8101
|
+
* Defines the possible values used to assign properties of type of `DialogBackdrop`.
|
|
8102
|
+
*/
|
|
8103
|
+
var DialogBackdropType;
|
|
8104
|
+
(function (DialogBackdropType) {
|
|
8105
|
+
/**
|
|
8106
|
+
* Indicates that the dialog element is of type of "static".
|
|
8107
|
+
*/
|
|
8108
|
+
DialogBackdropType["STATIC"] = "static";
|
|
8109
|
+
/**
|
|
8110
|
+
* Indicates that the dialog element is of type of "modal".
|
|
8111
|
+
*/
|
|
8112
|
+
DialogBackdropType["MODAL"] = "modal";
|
|
8113
|
+
})(DialogBackdropType || (DialogBackdropType = {}));
|
|
8114
|
+
;
|
|
8115
|
+
|
|
8116
|
+
/**
|
|
8117
|
+
* @license
|
|
8118
|
+
* Copyright Pascal ECHEMANN. All Rights Reserved.
|
|
8119
|
+
*
|
|
8120
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
8121
|
+
* found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
|
|
8122
|
+
*/
|
|
8123
|
+
|
|
8124
|
+
/**
|
|
8125
|
+
* @license
|
|
8126
|
+
* Copyright Pascal ECHEMANN. All Rights Reserved.
|
|
8127
|
+
*
|
|
8128
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
8129
|
+
* found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
|
|
8130
|
+
*/
|
|
8131
|
+
|
|
8132
|
+
/**
|
|
8133
|
+
* @license
|
|
8134
|
+
* Copyright Pascal ECHEMANN. All Rights Reserved.
|
|
8135
|
+
*
|
|
8136
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
8137
|
+
* found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
|
|
8138
|
+
*/
|
|
8139
|
+
/**
|
|
8140
|
+
* Event that indicates the state changes of components managed by the `DialogService` service singleton.
|
|
8141
|
+
*/
|
|
8142
|
+
class DialogOutletEvent {
|
|
8143
|
+
/**
|
|
8144
|
+
* The type of event dispatched each time the dialog element is displayed.
|
|
8145
|
+
*/
|
|
8146
|
+
static { this.SHOW = "show"; }
|
|
8147
|
+
/**
|
|
8148
|
+
* The type of event dispatched each time the dialog element is removed.
|
|
8149
|
+
*/
|
|
8150
|
+
static { this.HIDE = "hide"; }
|
|
8151
|
+
/**
|
|
8152
|
+
* @private
|
|
8153
|
+
*
|
|
8154
|
+
* Creates a new `DialogOutletEvent` instance.
|
|
8155
|
+
*
|
|
8156
|
+
* @param state The state of the dialog element.
|
|
8157
|
+
* @param config The dialog element config associated with this event.
|
|
8158
|
+
*/
|
|
8159
|
+
constructor(state, config = null) {
|
|
8160
|
+
this.state = state;
|
|
8161
|
+
this.config = config;
|
|
8162
|
+
}
|
|
8163
|
+
}
|
|
8164
|
+
|
|
8165
|
+
/**
|
|
8166
|
+
* @license
|
|
8167
|
+
* Copyright Pascal ECHEMANN. All Rights Reserved.
|
|
8168
|
+
*
|
|
8169
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
8170
|
+
* found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
|
|
8171
|
+
*/
|
|
8172
|
+
|
|
8173
|
+
/**
|
|
8174
|
+
* @license
|
|
8175
|
+
* Copyright Pascal ECHEMANN. All Rights Reserved.
|
|
8176
|
+
*
|
|
8177
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
8178
|
+
* found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
|
|
8179
|
+
*/
|
|
8180
|
+
/**
|
|
8181
|
+
* @private
|
|
8182
|
+
*/
|
|
8183
|
+
const DEFAULT_CONFIG = {
|
|
8184
|
+
backdrop: DialogBackdropType.MODAL
|
|
8185
|
+
};
|
|
8186
|
+
|
|
8187
|
+
/**
|
|
8188
|
+
* @license
|
|
8189
|
+
* Copyright Pascal ECHEMANN. All Rights Reserved.
|
|
8190
|
+
*
|
|
8191
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
8192
|
+
* found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
|
|
8193
|
+
*/
|
|
8194
|
+
/**
|
|
8195
|
+
* @private
|
|
8196
|
+
*/
|
|
8197
|
+
const NAME = "DialogServiceError";
|
|
8198
|
+
/**
|
|
8199
|
+
* The `DialogServiceError` class represents errors thrown by the ATX framework
|
|
8200
|
+
* when a dialog error occurs.
|
|
8201
|
+
*/
|
|
8202
|
+
class DialogServiceError extends Error {
|
|
8203
|
+
/**
|
|
8204
|
+
* Creates a new `DialogServiceError` instance.
|
|
8205
|
+
*
|
|
8206
|
+
* @param message The `message` data property is a human-readable description of this `DialogServiceError` instance.
|
|
8207
|
+
*/
|
|
8208
|
+
constructor(message) {
|
|
8209
|
+
super(message);
|
|
8210
|
+
this.name = NAME;
|
|
8211
|
+
}
|
|
8212
|
+
}
|
|
8213
|
+
|
|
8214
|
+
/**
|
|
8215
|
+
* @license
|
|
8216
|
+
* Copyright Pascal ECHEMANN. All Rights Reserved.
|
|
8217
|
+
*
|
|
8218
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
8219
|
+
* found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
|
|
8220
|
+
*/
|
|
8221
|
+
/**
|
|
8222
|
+
* The `DialogService` class manages injection of customs component into the
|
|
8223
|
+
* HTML dialog element created by the ATX framework.
|
|
8224
|
+
*/
|
|
8225
|
+
class DialogService {
|
|
8226
|
+
constructor() {
|
|
8227
|
+
/**
|
|
8228
|
+
* Dispatches an event that indicates the state of the dialog element when a custom
|
|
8229
|
+
* component is added to, or remove from it.
|
|
8230
|
+
*/
|
|
8231
|
+
this.dialogStateChange = new EventEmitter();
|
|
8232
|
+
}
|
|
8233
|
+
/**
|
|
8234
|
+
* Creates an instance of the `compRef` class, adds this instance to the HTML dialog element
|
|
8235
|
+
* and displays the dialog element in front of all other components in the application.
|
|
8236
|
+
*
|
|
8237
|
+
* @param compRef The class that represents the component to display as a popup element.
|
|
8238
|
+
* @param config The dialog element config associated with the new component instance to display.
|
|
8239
|
+
*
|
|
8240
|
+
* @returns The new `ComponentRef` which contains the component instance and the host view.
|
|
8241
|
+
*/
|
|
8242
|
+
show(compRef, config = null) {
|
|
8243
|
+
if (!this.viewContainerRef)
|
|
8244
|
+
throw new DialogServiceError("DialogOutlet missing: you must add the <atx-dialog-outlet/> tag to your application before using dialog services.");
|
|
8245
|
+
const component = this.viewContainerRef.createComponent(compRef);
|
|
8246
|
+
const event = new DialogOutletEvent(DialogOutletEvent.SHOW, config);
|
|
8247
|
+
this.dialogStateChange.emit(event);
|
|
8248
|
+
return component;
|
|
8249
|
+
}
|
|
8250
|
+
/**
|
|
8251
|
+
* Indicates to the ATX framework to remove component instances previously created with
|
|
8252
|
+
* the `show()` method.
|
|
8253
|
+
*/
|
|
8254
|
+
hide() {
|
|
8255
|
+
const event = new DialogOutletEvent(DialogOutletEvent.HIDE);
|
|
8256
|
+
this.dialogStateChange.emit(event);
|
|
8257
|
+
}
|
|
8258
|
+
/**
|
|
8259
|
+
* @private
|
|
8260
|
+
*/
|
|
8261
|
+
__init__(viewContainerRef) {
|
|
8262
|
+
if (this.viewContainerRef !== undefined)
|
|
8263
|
+
return false;
|
|
8264
|
+
this.viewContainerRef = viewContainerRef;
|
|
8265
|
+
return true;
|
|
8266
|
+
}
|
|
8267
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: DialogService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
8268
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: DialogService, providedIn: "root" }); }
|
|
8269
|
+
}
|
|
8270
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: DialogService, decorators: [{
|
|
8271
|
+
type: Injectable,
|
|
8272
|
+
args: [{
|
|
8273
|
+
providedIn: "root"
|
|
8274
|
+
}]
|
|
8275
|
+
}] });
|
|
8276
|
+
|
|
8277
|
+
/**
|
|
8278
|
+
* @license
|
|
8279
|
+
* Copyright Pascal ECHEMANN. All Rights Reserved.
|
|
8280
|
+
*
|
|
8281
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
8282
|
+
* found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
|
|
8283
|
+
*/
|
|
8284
|
+
/**
|
|
8285
|
+
* Acts as a placeholder that the ATX framework dynamically fills based on the component specified
|
|
8286
|
+
* by the dialog service `show()` method.
|
|
8287
|
+
*/
|
|
8288
|
+
class DialogOutlet {
|
|
8289
|
+
/**
|
|
8290
|
+
* @private
|
|
8291
|
+
*/
|
|
8292
|
+
constructor(dialogSvc) {
|
|
8293
|
+
this.dialogSvc = dialogSvc;
|
|
8294
|
+
}
|
|
8295
|
+
/**
|
|
8296
|
+
* @private
|
|
8297
|
+
*/
|
|
8298
|
+
ngOnInit() {
|
|
8299
|
+
this.dialogSvc.__init__(this.renderer);
|
|
8300
|
+
this.dialogSvc.dialogStateChange.subscribe((event) => this.stateChange(event));
|
|
8301
|
+
}
|
|
8302
|
+
/**
|
|
8303
|
+
* @private
|
|
8304
|
+
*/
|
|
8305
|
+
mouseupHandler(event) {
|
|
8306
|
+
if (this._config.backdrop !== DialogBackdropType.MODAL)
|
|
8307
|
+
return;
|
|
8308
|
+
const rect = this._dialog.nativeElement.getBoundingClientRect();
|
|
8309
|
+
const xPos = event.clientX;
|
|
8310
|
+
const yPos = event.clientY;
|
|
8311
|
+
const top = rect.top;
|
|
8312
|
+
const left = rect.left;
|
|
8313
|
+
const isDialog = (top <= yPos && yPos <= top + rect.height && left <= xPos && xPos <= left + rect.width);
|
|
8314
|
+
if (!isDialog)
|
|
8315
|
+
this.hide();
|
|
8316
|
+
}
|
|
8317
|
+
/**
|
|
8318
|
+
* @private
|
|
8319
|
+
*/
|
|
8320
|
+
onClose(event) {
|
|
8321
|
+
this.renderer.clear();
|
|
8322
|
+
}
|
|
8323
|
+
/**
|
|
8324
|
+
* @private
|
|
8325
|
+
*/
|
|
8326
|
+
stateChange(event) {
|
|
8327
|
+
const state = event.state;
|
|
8328
|
+
if (state === DialogOutletEvent.SHOW)
|
|
8329
|
+
return this.show(event);
|
|
8330
|
+
if (state === DialogOutletEvent.HIDE)
|
|
8331
|
+
this.hide();
|
|
8332
|
+
}
|
|
8333
|
+
/**
|
|
8334
|
+
* @private
|
|
8335
|
+
*/
|
|
8336
|
+
show(event) {
|
|
8337
|
+
this._config = event.config || DEFAULT_CONFIG;
|
|
8338
|
+
this._dialog.nativeElement.showModal();
|
|
8339
|
+
}
|
|
8340
|
+
/**
|
|
8341
|
+
* @private
|
|
8342
|
+
*/
|
|
8343
|
+
hide() {
|
|
8344
|
+
this._dialog.nativeElement.close();
|
|
8345
|
+
}
|
|
8346
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: DialogOutlet, deps: [{ token: DialogService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8347
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: DialogOutlet, isStandalone: true, selector: "atx-dialog-outlet", viewQueries: [{ propertyName: "_dialog", first: true, predicate: ["dialog"], descendants: true }, { propertyName: "renderer", first: true, predicate: ["renderer"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: '<dialog #dialog (mouseup)="mouseupHandler($event)" (close)="onClose($event)"><ng-container #renderer></ng-container></dialog>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8348
|
+
}
|
|
8349
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: DialogOutlet, decorators: [{
|
|
8350
|
+
type: Component,
|
|
8351
|
+
args: [{
|
|
8352
|
+
selector: 'atx-dialog-outlet',
|
|
8353
|
+
standalone: true,
|
|
8354
|
+
template: '<dialog #dialog (mouseup)="mouseupHandler($event)" (close)="onClose($event)"><ng-container #renderer></ng-container></dialog>',
|
|
8355
|
+
changeDetection: ChangeDetectionStrategy.OnPush
|
|
8356
|
+
}]
|
|
8357
|
+
}], ctorParameters: () => [{ type: DialogService }], propDecorators: { _dialog: [{
|
|
8358
|
+
type: ViewChild,
|
|
8359
|
+
args: ["dialog"]
|
|
8360
|
+
}], renderer: [{
|
|
8361
|
+
type: ViewChild,
|
|
8362
|
+
args: ["renderer", { static: true, read: ViewContainerRef }]
|
|
8363
|
+
}] } });
|
|
8364
|
+
|
|
8365
|
+
/**
|
|
8366
|
+
* @license
|
|
8367
|
+
* Copyright Pascal ECHEMANN. All Rights Reserved.
|
|
8368
|
+
*
|
|
8369
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
8370
|
+
* found in the LICENSE file at https://pascalechemann.com/angular-toolbox/resources/license
|
|
8371
|
+
*/
|
|
8372
|
+
|
|
8093
8373
|
/**
|
|
8094
8374
|
* @license
|
|
8095
8375
|
* Copyright Pascal ECHEMANN. All Rights Reserved.
|
|
@@ -9761,5 +10041,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
9761
10041
|
* Generated bundle index. Do not edit.
|
|
9762
10042
|
*/
|
|
9763
10043
|
|
|
9764
|
-
export { APP_PRIDGE_REF, ATX_LOGGER_CONFIG, AbstractLogger, AbstractSubscriptionManager, AbstractVersionManager, AbstractWindowService, AnchorLinklDirective, AngularToolboxLogoComponent, AngularToolboxModule, AngularToolboxVersionService, AppBridgeError, AppBridgeService, ArrayList, ArrayListEvent, ArrayListEventType, AtxHttpMockConsoleService, AtxMockDocumentation, AtxMonitoringConsoleComponent, BIGINT, BOOLEAN, BUTTON_ROLE, BorderLayout, BorderLayoutContainer, ButtonRoleDirective, CSS_PROP, ConsoleLogConnector, ContentRendererDirective, DARK_MODE_CONFIG, DEFAULT_LOG_CONNECTOR, DarkModeService, DefaultLogConnector, DropdownComponent, DropdownEvent, DropdownEventType, EMPTY_STRING, FEATURES, FUNCTION, FetchClient, FetchClientBuilder, FetchClientResponseType, HTTP_MOCKING_FRAMEWORK_CONFIG, HTTP_MOCK_MAX_DELAY, HTTP_MOCK_SERVICE, HtmlLogConnector, HttpHeadersMockBuilder, HttpMock, HttpMockLoggingService, HttpMockProductionPolicy, HttpMockService, HttpMockServiceError, HttpResponseMockBuilder, HttpStatusText, HttpStatusTextFinder, IdentifiableComponent, IntegrityError, LINK_ROLE, LOG_CONFIG_STRING, LOG_ERROR_STRING, LOG_INFO_STRING, LOG_WARNING_STRING, LayoutDragEvent, LayoutDragEventType, LayoutRegion, LayoutRegionError, LogBuilder, LogImpl, LogLevel, LogUtil, LoggerService, NUMBER, NavigateToUrlDirective, OBJECT, STORAGE_KEY, STRING, SYMBOL, SafeHtmlPipe, ScrollService, SubscriptionError, SubscriptionService, UNDEFINED, Uuid, VERSION_CONFIG, VersionService, VersionUtil, WindowFeatureState, WindowService, WindowTarget, httpHeadersMock, httpMockFactory, httpResponseMock };
|
|
10044
|
+
export { APP_PRIDGE_REF, ATX_LOGGER_CONFIG, AbstractLogger, AbstractSubscriptionManager, AbstractVersionManager, AbstractWindowService, AnchorLinklDirective, AngularToolboxLogoComponent, AngularToolboxModule, AngularToolboxVersionService, AppBridgeError, AppBridgeService, ArrayList, ArrayListEvent, ArrayListEventType, AtxHttpMockConsoleService, AtxMockDocumentation, AtxMonitoringConsoleComponent, BIGINT, BOOLEAN, BUTTON_ROLE, BorderLayout, BorderLayoutContainer, ButtonRoleDirective, CSS_PROP, ConsoleLogConnector, ContentRendererDirective, DARK_MODE_CONFIG, DEFAULT_LOG_CONNECTOR, DarkModeService, DefaultLogConnector, DialogBackdropType, DialogOutlet, DialogOutletEvent, DialogService, DialogServiceError, DropdownComponent, DropdownEvent, DropdownEventType, EMPTY_STRING, FEATURES, FUNCTION, FetchClient, FetchClientBuilder, FetchClientResponseType, HTTP_MOCKING_FRAMEWORK_CONFIG, HTTP_MOCK_MAX_DELAY, HTTP_MOCK_SERVICE, HtmlLogConnector, HttpHeadersMockBuilder, HttpMock, HttpMockLoggingService, HttpMockProductionPolicy, HttpMockService, HttpMockServiceError, HttpResponseMockBuilder, HttpStatusText, HttpStatusTextFinder, IdentifiableComponent, IntegrityError, LINK_ROLE, LOG_CONFIG_STRING, LOG_ERROR_STRING, LOG_INFO_STRING, LOG_WARNING_STRING, LayoutDragEvent, LayoutDragEventType, LayoutRegion, LayoutRegionError, LogBuilder, LogImpl, LogLevel, LogUtil, LoggerService, NUMBER, NavigateToUrlDirective, OBJECT, STORAGE_KEY, STRING, SYMBOL, SafeHtmlPipe, ScrollService, SubscriptionError, SubscriptionService, UNDEFINED, Uuid, VERSION_CONFIG, VersionService, VersionUtil, WindowFeatureState, WindowService, WindowTarget, httpHeadersMock, httpMockFactory, httpResponseMock };
|
|
9765
10045
|
//# sourceMappingURL=angular-toolbox.mjs.map
|