turbogui-angular 19.1.0 → 20.0.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/fesm2022/turbogui-angular.mjs +106 -39
- package/fesm2022/turbogui-angular.mjs.map +1 -1
- package/main/controller/dialog.service.d.ts +22 -9
- package/main/controller/dialog.service.d.ts.map +1 -1
- package/main/controller/{turbo-api-caller.service.d.ts → turbo-api.service.d.ts} +4 -5
- package/main/controller/turbo-api.service.d.ts.map +1 -0
- package/main/view/components/button-container/button-container.component.d.ts +0 -1
- package/main/view/components/button-container/button-container.component.d.ts.map +1 -1
- package/main/view/components/dialog-iframe/dialog-iframe.component.d.ts +26 -0
- package/main/view/components/dialog-iframe/dialog-iframe.component.d.ts.map +1 -0
- package/package.json +1 -1
- package/public_api.d.ts +2 -1
- package/public_api.d.ts.map +1 -1
- package/main/controller/turbo-api-caller.service.d.ts.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Type,
|
|
1
|
+
import { Type, Injector, ApplicationRef, RendererFactory2, ViewContainerRef, EnvironmentInjector } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
3
|
import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar';
|
|
4
4
|
import { BusyStateBaseComponent } from '../view/components/busy-state-base/busy-state-base.component';
|
|
@@ -13,7 +13,7 @@ export declare class DialogService extends SingletoneStrictClass {
|
|
|
13
13
|
private readonly matDialog;
|
|
14
14
|
private readonly injector;
|
|
15
15
|
private readonly applicationRef;
|
|
16
|
-
private readonly
|
|
16
|
+
private readonly environmentInjector;
|
|
17
17
|
/**
|
|
18
18
|
* Used to modify the busy state component that is shown by default by the addModalBusyState() method.
|
|
19
19
|
*
|
|
@@ -43,7 +43,7 @@ export declare class DialogService extends SingletoneStrictClass {
|
|
|
43
43
|
*/
|
|
44
44
|
private _isShowingSnackBar;
|
|
45
45
|
/**
|
|
46
|
-
* Contains a list of the dialogs that are currently visible to the user.
|
|
46
|
+
* Contains a list of the dialogs (MODAL AND NON MODAL) that are currently visible to the user.
|
|
47
47
|
* Each item in this list is a hash that is computed when dialog is created to uniquely identify it.
|
|
48
48
|
*
|
|
49
49
|
* Empty list means no dialogs are currently visible
|
|
@@ -54,6 +54,10 @@ export declare class DialogService extends SingletoneStrictClass {
|
|
|
54
54
|
* The list uses the same order as the list of _activeDialogs hash values
|
|
55
55
|
*/
|
|
56
56
|
private _activeDialogInstances;
|
|
57
|
+
/**
|
|
58
|
+
* Counts the number of dialogs that are currently open and that can be closed by the user by navigating with the browser
|
|
59
|
+
*/
|
|
60
|
+
private _activeCloseableDialogs;
|
|
57
61
|
/**
|
|
58
62
|
* Used to store the initialized Renderer 2 instance that is used by this class
|
|
59
63
|
*/
|
|
@@ -74,7 +78,7 @@ export declare class DialogService extends SingletoneStrictClass {
|
|
|
74
78
|
* Method that is used to delete the document pointerdown event listener once not used anymore
|
|
75
79
|
*/
|
|
76
80
|
private _documentPointerdownUnlisten;
|
|
77
|
-
constructor(rendererFactory: RendererFactory2, matSnackBar: MatSnackBar, matDialog: MatDialog, injector: Injector, applicationRef: ApplicationRef,
|
|
81
|
+
constructor(rendererFactory: RendererFactory2, matSnackBar: MatSnackBar, matDialog: MatDialog, injector: Injector, applicationRef: ApplicationRef, environmentInjector: EnvironmentInjector);
|
|
78
82
|
/**
|
|
79
83
|
* Tells if this dialog service is enabled or not. If dialog service is disabled, none of it's features will work
|
|
80
84
|
* This is used to block all dialog features normally when shutting down the application
|
|
@@ -151,21 +155,29 @@ export declare class DialogService extends SingletoneStrictClass {
|
|
|
151
155
|
* this library or extend DialogBaseComponent to create our own custom ones.
|
|
152
156
|
*
|
|
153
157
|
* @param dialogComponentClass A class for a component that extends DialogBaseComponent, which will be the dialog that is shown to the user.
|
|
154
|
-
* @param properties An object containing the different visual and textual options that this dialog allows
|
|
158
|
+
* @param properties An object containing the different visual and textual options that this dialog allows.
|
|
159
|
+
* IMPORTANT: texts, options and data values need to be read at the dialog component by declaring "@Inject(MAT_DIALOG_DATA) public data: any"
|
|
160
|
+
* at the dialog component constructor. This data object will contain the texts, options and data properties
|
|
161
|
+
*
|
|
155
162
|
* - id: The html unique identifier that the dialog will have once created. If not specified, no id will be explicitly set
|
|
156
163
|
* - width: 50% by default. Specify the css value for the default dialog width. As the dialog is responsive, the value will be automatically
|
|
157
164
|
* reduced if the available screen is not enough, and will reach the desired value otherwise. We can set any css unit like pixels,
|
|
158
165
|
* %, vh, vw, or any other. For example: '400px', '50%', etc.
|
|
159
|
-
* - maxWidth: Defines the maximum width that the dialog will have
|
|
166
|
+
* - maxWidth: Defines the maximum width that the dialog will have. We can specify it in % or vw, just like is done in
|
|
160
167
|
* css. By default it is defined as 96vw, which will fit 96% of the viewport on small devices
|
|
161
|
-
* - height:
|
|
162
|
-
* - maxHeight:
|
|
168
|
+
* - height: Unset by default. Specify the css value for the dialog height.
|
|
169
|
+
* - maxHeight: Defines the maximum height that the dialog will have. We can specify it in % or vh, just like is done in
|
|
170
|
+
* css. By default it is defined as 96vh, which will fit 96% of the viewport
|
|
163
171
|
* - modal: True (default) if selecting an option is mandatory to close the dialog, false if the dialog can be closed
|
|
164
172
|
* by the user clicking outside it
|
|
173
|
+
* - closeOnNavigation: Tells if the dialog should be closed when the user navigates with the browser. By default is true for non modal and false for modal dialogs.
|
|
165
174
|
* - texts: A list with strings containing the dialog texts, sorted by importance. When dialog has a title, this should
|
|
166
175
|
* be placed first, subtitle second and so (Each dialog may accept a different custom number of texts).
|
|
176
|
+
* (add "@Inject(MAT_DIALOG_DATA) public data: any" to dialog constructor and read it with data.texts)
|
|
167
177
|
* - options: A list of strings that will be used as button captions for each one of the accepted dialog options
|
|
168
|
-
*
|
|
178
|
+
* (add "@Inject(MAT_DIALOG_DATA) public data: any" to dialog constructor and read it with data.options)
|
|
179
|
+
* - data: An object to pass any extra data we want to the dialog.
|
|
180
|
+
* (add "@Inject(MAT_DIALOG_DATA) public data: any" to dialog constructor and read it with data.data)
|
|
169
181
|
* - viewContainerRef: This is important if we want to propagate providers from a parent component to this dialog. We must specify
|
|
170
182
|
* this reference to make sure the same services injected on the parent are available too at the child dialog
|
|
171
183
|
*
|
|
@@ -180,6 +192,7 @@ export declare class DialogService extends SingletoneStrictClass {
|
|
|
180
192
|
height?: string;
|
|
181
193
|
maxHeight?: string;
|
|
182
194
|
modal?: boolean;
|
|
195
|
+
closeOnNavigation?: boolean;
|
|
183
196
|
texts?: string[];
|
|
184
197
|
options?: string[];
|
|
185
198
|
data?: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dialog.service.d.ts","sourceRoot":"","sources":["../../../../projects/turbogui-angular/src/main/controller/dialog.service.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dialog.service.d.ts","sourceRoot":"","sources":["../../../../projects/turbogui-angular/src/main/controller/dialog.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { DialogService } from './dialog.service';
|
|
2
|
-
import { SingletoneStrictClass } from '../model/classes/SingletoneStrictClass';
|
|
3
2
|
import { BrowserService } from './browser.service';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
/**
|
|
6
5
|
* Allows us to easily perform requests to a remote API that is developed with Turbo framework.
|
|
7
6
|
*/
|
|
8
|
-
export declare class
|
|
7
|
+
export declare abstract class TurboApiService {
|
|
9
8
|
private readonly dialogService;
|
|
10
9
|
private readonly browserService;
|
|
11
10
|
/**
|
|
@@ -235,7 +234,7 @@ export declare class TurboApiCallerService extends SingletoneStrictClass {
|
|
|
235
234
|
* Aux methot to clear all the currently logged user data
|
|
236
235
|
*/
|
|
237
236
|
private _clearUserAndToken;
|
|
238
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
239
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
237
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TurboApiService, never>;
|
|
238
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TurboApiService>;
|
|
240
239
|
}
|
|
241
|
-
//# sourceMappingURL=turbo-api
|
|
240
|
+
//# sourceMappingURL=turbo-api.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"turbo-api.service.d.ts","sourceRoot":"","sources":["../../../../projects/turbogui-angular/src/main/controller/turbo-api.service.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAGjD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;;AAGnD;;GAEG;AACH,8BAGsB,eAAe;IAqErB,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,cAAc;IAnE3C;;OAEG;IACH,eAAe,SAAiB;IAGhC;;OAEG;IACH,uBAAuB,SAA6B;IAGpD;;OAEG;IACH,gBAAgB,SAAkB;IAGlC;;OAEG;IACH,oBAAoB,SAA4B;IAGhD;;OAEG;IACH,OAAO,CAAC,SAAS,CAAM;IAGvB;;OAEG;IACH,OAAO,CAAC,SAAS,CAAM;IAGvB;;OAEG;IACH,OAAO,CAAC,iBAAiB,CAAM;IAG/B;;OAEG;IACH,OAAO,CAAC,SAAS,CAAS;IAG1B;;OAEG;IACH,OAAO,CAAC,MAAM,CAAM;IAGpB;;OAEG;IACH,OAAO,CAAC,WAAW,CAAe;IAGlC;;OAEG;IACH,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAc;gBAGb,aAAa,EAAE,aAAa,EAC5B,cAAc,EAAE,cAAc;IAQ3D;;OAEG;IACH,IAAI,QAAQ,CAAC,CAAC,EAAC,MAAM,EAKpB;IAGD;;OAEG;IACH,IAAI,QAAQ,IAXG,MAAM,CAcpB;IAGD;;OAEG;IACH,IAAI,QAAQ,CAAC,CAAC,EAAC,MAAM,EAKpB;IAGD;;OAEG;IACH,IAAI,QAAQ,IAXG,MAAM,CAcpB;IAGD;;OAEG;IACH,IAAI,OAAO,CAAC,GAAG,EAAC,MAAM,EAGrB;IAGD;;OAEG;IACH,IAAI,OAAO,IATK,MAAM,CAYrB;IAGD;;;;;;;OAOG;IACH,kCAAkC;IAgClC;;;;;;;;;;;;OAYG;IACH,iCAAiC;IA2BjC;;OAEG;IACH,mBAAmB;IAMnB;;;;;;;;;;;;;;;;;;OAkBG;IACH,KAAK;IAqDL;;;;;;;;OAQG;IACH,eAAe,CAAC,OAAO,EAAE;QAAC,QAAQ,CAAC,EAAC,MAAM,CAAC;QAAC,QAAQ,CAAC,EAAC,MAAM,CAAC;QAAC,kBAAkB,CAAC,EAAC,OAAO,CAAA;KAAC;IAM1F;;;OAGG;IACH,IAAI,mBAAmB,IAAI,OAAO,CAGjC;IAGD;;;OAGG;IACH,IAAI,QAAQ,IAAI,OAAO,CAGtB;IAGD;;OAEG;IACH,IAAI,KAAK,WAGR;IAGD;;;;;;;;OAQG;IACH,eAAe,CAAC,SAAS,EAAC,MAAM,GAAG,OAAO;IAM1C;;;;;;;;;;;;;;;;;;;;;;;;;;OA0BG;IACH,IAAI,CAAC,OAAO,EAAC,MAAM,EAAE,UAAU,KAAK,EAAE,OAAO,GAAE;QAAC,YAAY,CAAC,EAAC,QAAQ,GAAC,MAAM,CAAC;QAAC,SAAS,CAAC,EAAC,OAAO,CAAC;QAAC,YAAY,CAAC,EAAC,OAAO,CAAA;KAAM;IAoD9H;;;;;;;;;;;;;;;OAeG;IACH,SAAS,CAAC,OAAO,EAAC,MAAM,EAAE,QAAQ,EAAC,EAAE,EAAE,EAAE,OAAO,GAAE;QAAC,SAAS,CAAC,EAAC,OAAO,CAAC;QAAC,YAAY,CAAC,EAAC,OAAO,CAAA;KAAM;IAiDlG;;OAEG;IACH,OAAO,CAAC,eAAe;IAkBvB;;;;;;;;;OASG;IACH,MAAM,CAAC,OAAO,GAAE;QAAC,YAAY,CAAC,EAAC,OAAO,CAAA;KAAM;IA0C5C;;OAEG;IACH,OAAO,CAAC,kBAAkB;yCAhkBR,eAAe;6CAAf,eAAe;CAwkBpC"}
|
|
@@ -3,7 +3,6 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class ButtonContainerComponent extends ButtonBaseComponent {
|
|
4
4
|
/**
|
|
5
5
|
* This is used to attach the fade animation directly to this component so it fades in and out when created and removed from the app
|
|
6
|
-
* TODO: THIS IS NOT A GOOD IDEA
|
|
7
6
|
*/
|
|
8
7
|
buttonFade: boolean;
|
|
9
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonContainerComponent, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"button-container.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/button-container/button-container.component.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,mBAAmB,EAAE,MAAM,4DAA4D,CAAC;;AAGjG,qBAaa,wBAAyB,SAAQ,mBAAmB;IAG7D
|
|
1
|
+
{"version":3,"file":"button-container.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/button-container/button-container.component.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,mBAAmB,EAAE,MAAM,4DAA4D,CAAC;;AAGjG,qBAaa,wBAAyB,SAAQ,mBAAmB;IAG7D;;OAEG;IACyB,UAAU,UAAQ;yCANrC,wBAAwB;2CAAxB,wBAAwB;CAOpC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TurboGUI is A library that helps with the most common and generic UI elements and functionalities
|
|
3
|
+
*
|
|
4
|
+
* Website : -> http://www.turbogui.org
|
|
5
|
+
* License : -> Licensed under the Apache License, Version 2.0. You may not use this file except in compliance with the License.
|
|
6
|
+
* License Url : -> http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
+
* CopyRight : -> Copyright 2018 Edertone Advanded Solutions. https://www.edertone.com
|
|
8
|
+
*/
|
|
9
|
+
import { ElementRef } from '@angular/core';
|
|
10
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
11
|
+
import { DialogBaseComponent } from '../dialog-base/dialog-base.component';
|
|
12
|
+
import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
14
|
+
export declare class DialogIFrameComponent extends DialogBaseComponent {
|
|
15
|
+
elementRef: ElementRef;
|
|
16
|
+
dialogRef: MatDialogRef<DialogBaseComponent>;
|
|
17
|
+
private readonly sanitizer;
|
|
18
|
+
data: any;
|
|
19
|
+
static readonly DIALOG_CLASS_NAME = "DialogIFrameComponent";
|
|
20
|
+
title: string;
|
|
21
|
+
safeUrl: SafeResourceUrl;
|
|
22
|
+
constructor(elementRef: ElementRef, dialogRef: MatDialogRef<DialogBaseComponent>, sanitizer: DomSanitizer, data: any);
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogIFrameComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogIFrameComponent, "tg-dialog-iframe", never, {}, {}, never, never, true, never>;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=dialog-iframe.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog-iframe.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-iframe/dialog-iframe.component.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAa,UAAU,EAAU,MAAM,eAAe,CAAC;AAC9D,OAAO,EAAE,YAAY,EAAmB,MAAM,0BAA0B,CAAC;AACzE,OAAO,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AAE3E,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;;AAG1E,qBAea,qBAAsB,SAAQ,mBAAmB;IAYvC,UAAU,EAAE,UAAU;IACtB,SAAS,EAAE,YAAY,CAAC,mBAAmB,CAAC;IACnD,OAAO,CAAC,QAAQ,CAAC,SAAS;IACM,IAAI,EAAE,GAAG;IAZrD,MAAM,CAAC,QAAQ,CAAC,iBAAiB,2BAA2B;IAG5D,KAAK,SAAM;IAGX,OAAO,EAAE,eAAe,CAAC;gBAGN,UAAU,EAAE,UAAU,EACtB,SAAS,EAAE,YAAY,CAAC,mBAAmB,CAAC,EAClC,SAAS,EAAE,YAAY,EACR,IAAI,EAAE,GAAG;yCAf5C,qBAAqB;2CAArB,qBAAqB;CA0BjC"}
|
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export { GlobalErrorService } from './main/controller/globalerror.service';
|
|
|
7
7
|
export { HTTPService } from './main/controller/http.service';
|
|
8
8
|
export { HTTPServiceGetRequest } from './main/controller/httpservice/HTTPServiceGetRequest';
|
|
9
9
|
export { HTTPServicePostRequest } from './main/controller/httpservice/HTTPServicePostRequest';
|
|
10
|
-
export {
|
|
10
|
+
export { TurboApiService } from './main/controller/turbo-api.service';
|
|
11
11
|
export { DialogService } from './main/controller/dialog.service';
|
|
12
12
|
export { BrowserService } from './main/controller/browser.service';
|
|
13
13
|
export { RouterBaseService } from './main/controller/router-base.service';
|
|
@@ -19,6 +19,7 @@ export { BusyStateBaseComponent } from './main/view/components/busy-state-base/b
|
|
|
19
19
|
export { DialogBaseComponent } from './main/view/components/dialog-base/dialog-base.component';
|
|
20
20
|
export { DialogDateSelectionComponent } from './main/view/components/dialog-date-selection/dialog-date-selection.component';
|
|
21
21
|
export { DialogErrorComponent } from './main/view/components/dialog-error/dialog-error.component';
|
|
22
|
+
export { DialogIFrameComponent } from './main/view/components/dialog-iframe/dialog-iframe.component';
|
|
22
23
|
export { DialogSingleOptionComponent } from './main/view/components/dialog-single-option/dialog-single-option.component';
|
|
23
24
|
export { DialogTwoOptionComponent } from './main/view/components/dialog-two-option/dialog-two-option.component';
|
|
24
25
|
export { DialogMultipleOptionComponent } from './main/view/components/dialog-multiple-option/dialog-multiple-option.component';
|
package/public_api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public_api.d.ts","sourceRoot":"","sources":["../../projects/turbogui-angular/src/public_api.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,qBAAqB,EAAE,MAAM,8CAA8C,CAAC;AAGrF;;GAEG;AACH,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,OAAO,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;AAC3E,OAAO,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAC7D,OAAO,EAAE,qBAAqB,EAAE,MAAM,qDAAqD,CAAC;AAC5F,OAAO,EAAE,sBAAsB,EAAE,MAAM,sDAAsD,CAAC;AAC9F,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"public_api.d.ts","sourceRoot":"","sources":["../../projects/turbogui-angular/src/public_api.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,qBAAqB,EAAE,MAAM,8CAA8C,CAAC;AAGrF;;GAEG;AACH,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,OAAO,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;AAC3E,OAAO,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAC7D,OAAO,EAAE,qBAAqB,EAAE,MAAM,qDAAqD,CAAC;AAC5F,OAAO,EAAE,sBAAsB,EAAE,MAAM,sDAAsD,CAAC;AAC9F,OAAO,EAAE,eAAe,EAAE,MAAM,qCAAqC,CAAC;AACtE,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AACjE,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;AACnE,OAAO,EAAE,iBAAiB,EAAE,MAAM,uCAAuC,CAAC;AAC1E,OAAO,EAAE,kBAAkB,EAAE,MAAM,wCAAwC,CAAC;AAG5E;;GAEG;AACH,OAAO,EAAE,sBAAsB,EAAE,MAAM,kEAAkE,CAAC;AAC1G,OAAO,EAAE,mBAAmB,EAAE,MAAM,0DAA0D,CAAC;AAC/F,OAAO,EAAE,4BAA4B,EAAE,MAAM,8EAA8E,CAAC;AAC5H,OAAO,EAAE,oBAAoB,EAAE,MAAM,4DAA4D,CAAC;AAClG,OAAO,EAAE,qBAAqB,EAAE,MAAM,8DAA8D,CAAC;AACrG,OAAO,EAAE,2BAA2B,EAAE,MAAM,4EAA4E,CAAC;AACzH,OAAO,EAAE,wBAAwB,EAAE,MAAM,sEAAsE,CAAC;AAChH,OAAO,EAAE,6BAA6B,EAAE,MAAM,gFAAgF,CAAC;AAC/H,OAAO,EAAE,kCAAkC,EAAE,MAAM,4FAA4F,CAAC;AAChJ,OAAO,EAAE,0BAA0B,EAAE,MAAM,0EAA0E,CAAC;AACtH,OAAO,EAAE,oBAAoB,EAAE,MAAM,4DAA4D,CAAC;AAClG,OAAO,EAAE,wBAAwB,EAAE,MAAM,oEAAoE,CAAC;AAG9G;;GAEG;AACH,OAAO,EAAE,eAAe,EAAE,MAAM,sCAAsC,CAAC;AACvE,OAAO,EAAE,qBAAqB,EAAE,MAAM,4CAA4C,CAAC;AACnF,OAAO,EAAE,IAAI,EAAE,MAAM,2BAA2B,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,wBAAwB,EAAE,MAAM,0CAA0C,CAAC;AACpF,OAAO,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;AAC3E,OAAO,EAAE,4BAA4B,EAAE,MAAM,qDAAqD,CAAC;AACnG,OAAO,EAAE,uBAAuB,EAAE,MAAM,gDAAgD,CAAC;AACzF,OAAO,EAAE,yBAAyB,EAAE,MAAM,kDAAkD,CAAC;AAC7F,OAAO,EAAE,2BAA2B,EAAE,MAAM,oDAAoD,CAAC;AACjG,OAAO,EAAE,8BAA8B,EAAE,MAAM,uDAAuD,CAAC;AACvG,OAAO,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"turbo-api-caller.service.d.ts","sourceRoot":"","sources":["../../../../projects/turbogui-angular/src/main/controller/turbo-api-caller.service.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,OAAO,EAAE,qBAAqB,EAAE,MAAM,wCAAwC,CAAC;AAE/E,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;;AAGnD;;GAEG;AACH,qBAGa,qBAAsB,SAAQ,qBAAqB;IAqEhD,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,cAAc;IAnE3C;;OAEG;IACH,eAAe,SAAiB;IAGhC;;OAEG;IACH,uBAAuB,SAA6B;IAGpD;;OAEG;IACH,gBAAgB,SAAkB;IAGlC;;OAEG;IACH,oBAAoB,SAA4B;IAGhD;;OAEG;IACH,OAAO,CAAC,SAAS,CAAM;IAGvB;;OAEG;IACH,OAAO,CAAC,SAAS,CAAM;IAGvB;;OAEG;IACH,OAAO,CAAC,iBAAiB,CAAM;IAG/B;;OAEG;IACH,OAAO,CAAC,SAAS,CAAS;IAG1B;;OAEG;IACH,OAAO,CAAC,MAAM,CAAM;IAGpB;;OAEG;IACH,OAAO,CAAC,WAAW,CAAe;IAGlC;;OAEG;IACH,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAc;gBAGb,aAAa,EAAE,aAAa,EAC5B,cAAc,EAAE,cAAc;IAU3D;;OAEG;IACH,IAAI,QAAQ,CAAC,CAAC,EAAC,MAAM,EAKpB;IAGD;;OAEG;IACH,IAAI,QAAQ,IAXG,MAAM,CAcpB;IAGD;;OAEG;IACH,IAAI,QAAQ,CAAC,CAAC,EAAC,MAAM,EAKpB;IAGD;;OAEG;IACH,IAAI,QAAQ,IAXG,MAAM,CAcpB;IAGD;;OAEG;IACH,IAAI,OAAO,CAAC,GAAG,EAAC,MAAM,EAGrB;IAGD;;OAEG;IACH,IAAI,OAAO,IATK,MAAM,CAYrB;IAGD;;;;;;;OAOG;IACH,kCAAkC;IAgClC;;;;;;;;;;;;OAYG;IACH,iCAAiC;IA2BjC;;OAEG;IACH,mBAAmB;IAMnB;;;;;;;;;;;;;;;;;;OAkBG;IACH,KAAK;IAqDL;;;;;;;;OAQG;IACH,eAAe,CAAC,OAAO,EAAE;QAAC,QAAQ,CAAC,EAAC,MAAM,CAAC;QAAC,QAAQ,CAAC,EAAC,MAAM,CAAC;QAAC,kBAAkB,CAAC,EAAC,OAAO,CAAA;KAAC;IAM1F;;;OAGG;IACH,IAAI,mBAAmB,IAAI,OAAO,CAGjC;IAGD;;;OAGG;IACH,IAAI,QAAQ,IAAI,OAAO,CAGtB;IAGD;;OAEG;IACH,IAAI,KAAK,WAGR;IAGD;;;;;;;;OAQG;IACH,eAAe,CAAC,SAAS,EAAC,MAAM,GAAG,OAAO;IAM1C;;;;;;;;;;;;;;;;;;;;;;;;;;OA0BG;IACH,IAAI,CAAC,OAAO,EAAC,MAAM,EAAE,UAAU,KAAK,EAAE,OAAO,GAAE;QAAC,YAAY,CAAC,EAAC,QAAQ,GAAC,MAAM,CAAC;QAAC,SAAS,CAAC,EAAC,OAAO,CAAC;QAAC,YAAY,CAAC,EAAC,OAAO,CAAA;KAAM;IAoD9H;;;;;;;;;;;;;;;OAeG;IACH,SAAS,CAAC,OAAO,EAAC,MAAM,EAAE,QAAQ,EAAC,EAAE,EAAE,EAAE,OAAO,GAAE;QAAC,SAAS,CAAC,EAAC,OAAO,CAAC;QAAC,YAAY,CAAC,EAAC,OAAO,CAAA;KAAM;IAiDlG;;OAEG;IACH,OAAO,CAAC,eAAe;IAkBvB;;;;;;;;;OASG;IACH,MAAM,CAAC,OAAO,GAAE;QAAC,YAAY,CAAC,EAAC,OAAO,CAAA;KAAM;IA0C5C;;OAEG;IACH,OAAO,CAAC,kBAAkB;yCAlkBjB,qBAAqB;6CAArB,qBAAqB;CA0kBjC"}
|