turbogui-angular 11.0.2 → 12.1.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/esm2022/main/controller/browser.service.mjs +48 -48
- package/esm2022/main/controller/dialog.service.mjs +327 -324
- package/esm2022/main/controller/globalerror.service.mjs +68 -68
- package/esm2022/main/controller/http.service.mjs +70 -70
- package/esm2022/main/controller/httpservice/HTTPServiceGetRequest.mjs +14 -14
- package/esm2022/main/controller/httpservice/HTTPServicePostRequest.mjs +14 -14
- package/esm2022/main/controller/localization.service.mjs +22 -22
- package/esm2022/main/controller/notification.service.mjs +56 -56
- package/esm2022/main/controller/user.service.mjs +124 -124
- package/esm2022/main/controller/views.service.mjs +113 -113
- package/esm2022/main/managers/DelayedMethodCallManager.mjs +69 -69
- package/esm2022/main/model/classes/GUINotification.mjs +31 -31
- package/esm2022/main/model/classes/View.mjs +33 -33
- package/esm2022/main/model/classes/ViewModel.mjs +13 -13
- package/esm2022/main/model/classes/ViewService.mjs +27 -27
- package/esm2022/main/model/modules/turbogui-angular.module.mjs +140 -140
- package/esm2022/main/view/animations/fade.animation.mjs +35 -35
- package/esm2022/main/view/components/busy-state-base/busy-state-base.component.mjs +38 -38
- package/esm2022/main/view/components/button-base/button-base.component.mjs +180 -180
- package/esm2022/main/view/components/button-container/button-container.component.mjs +34 -34
- package/esm2022/main/view/components/button-image/button-image.component.mjs +47 -47
- package/esm2022/main/view/components/dialog-base/dialog-base.component.mjs +13 -13
- package/esm2022/main/view/components/dialog-error/dialog-error.component.mjs +41 -41
- package/esm2022/main/view/components/dialog-multiple-option/dialog-multiple-option.component.mjs +38 -38
- package/esm2022/main/view/components/dialog-options-base/dialog-options-base.component.mjs +14 -14
- package/esm2022/main/view/components/dialog-single-option/dialog-single-option.component.mjs +41 -41
- package/esm2022/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.mjs +112 -112
- package/esm2022/main/view/components/dialog-two-option/dialog-two-option.component.mjs +42 -42
- package/esm2022/main/view/components/views-container/views-container.component.mjs +70 -70
- package/esm2022/main/view/directives/AutoFocusOnDisplayDirective.mjs +39 -39
- package/esm2022/main/view/directives/AutoSelectTextOnFocusDirective.mjs +39 -39
- package/esm2022/main/view/directives/ElementCreatedDirective.mjs +42 -42
- package/esm2022/main/view/directives/ElementDestroyedDirective.mjs +42 -42
- package/esm2022/public_api.mjs +43 -43
- package/esm2022/turbogui-angular.mjs +4 -4
- package/fesm2022/turbogui-angular.mjs +1865 -1862
- package/fesm2022/turbogui-angular.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/main/controller/browser.service.d.ts +29 -29
- package/main/controller/dialog.service.d.ts +186 -184
- package/main/controller/dialog.service.d.ts.map +1 -1
- package/main/controller/globalerror.service.d.ts +54 -54
- package/main/controller/http.service.d.ts +37 -37
- package/main/controller/httpservice/HTTPServiceGetRequest.d.ts +14 -14
- package/main/controller/httpservice/HTTPServicePostRequest.d.ts +14 -14
- package/main/controller/localization.service.d.ts +9 -9
- package/main/controller/notification.service.d.ts +36 -36
- package/main/controller/user.service.d.ts +57 -57
- package/main/controller/views.service.d.ts +71 -71
- package/main/managers/DelayedMethodCallManager.d.ts +51 -51
- package/main/model/classes/GUINotification.d.ts +27 -27
- package/main/model/classes/View.d.ts +39 -39
- package/main/model/classes/ViewModel.d.ts +13 -13
- package/main/model/classes/ViewService.d.ts +26 -26
- package/main/model/modules/turbogui-angular.module.d.ts +28 -28
- package/main/view/animations/fade.animation.d.ts +16 -16
- package/main/view/components/busy-state-base/busy-state-base.component.d.ts +18 -18
- package/main/view/components/button-base/button-base.component.d.ts +94 -94
- package/main/view/components/button-container/button-container.component.d.ts +13 -13
- package/main/view/components/button-image/button-image.component.d.ts +31 -31
- package/main/view/components/dialog-base/dialog-base.component.d.ts +13 -13
- package/main/view/components/dialog-error/dialog-error.component.d.ts +13 -13
- package/main/view/components/dialog-multiple-option/dialog-multiple-option.component.d.ts +13 -13
- package/main/view/components/dialog-options-base/dialog-options-base.component.d.ts +14 -14
- package/main/view/components/dialog-single-option/dialog-single-option.component.d.ts +13 -13
- package/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.d.ts +62 -62
- package/main/view/components/dialog-two-option/dialog-two-option.component.d.ts +14 -14
- package/main/view/components/views-container/views-container.component.d.ts +45 -45
- package/main/view/directives/AutoFocusOnDisplayDirective.d.ts +20 -20
- package/main/view/directives/AutoSelectTextOnFocusDirective.d.ts +19 -19
- package/main/view/directives/ElementCreatedDirective.d.ts +23 -23
- package/main/view/directives/ElementDestroyedDirective.d.ts +23 -23
- package/package.json +6 -6
- package/public_api.d.ts +40 -40
|
@@ -1,39 +1,39 @@
|
|
|
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 { Directive } from '@angular/core';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
/** This directive is used to perform an autofocus on an element every time it is displayed */
|
|
12
|
-
/**
|
|
13
|
-
* This directive is used to perform an autofocus on an element every time it is displayed
|
|
14
|
-
* If we set the autoFocusOnDisplay tag to the html element, it will be automatically focused after it is shown.
|
|
15
|
-
*/
|
|
16
|
-
export class AutoFocusOnDisplayDirective {
|
|
17
|
-
constructor(el, zone, renderer) {
|
|
18
|
-
this.el = el;
|
|
19
|
-
this.zone = zone;
|
|
20
|
-
this.renderer = renderer;
|
|
21
|
-
if (!el.nativeElement['focus']) {
|
|
22
|
-
throw new Error('Element does not accept focus');
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
ngAfterContentInit() {
|
|
26
|
-
this.zone.runOutsideAngular(() => setTimeout(() => {
|
|
27
|
-
this.renderer.selectRootElement(this.el.nativeElement).focus();
|
|
28
|
-
}, 0));
|
|
29
|
-
}
|
|
30
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
31
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
32
|
-
}
|
|
33
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
34
|
-
type: Directive,
|
|
35
|
-
args: [{
|
|
36
|
-
selector: '[autoFocusOnDisplay]'
|
|
37
|
-
}]
|
|
38
|
-
}], ctorParameters:
|
|
39
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
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 { Directive } from '@angular/core';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
/** This directive is used to perform an autofocus on an element every time it is displayed */
|
|
12
|
+
/**
|
|
13
|
+
* This directive is used to perform an autofocus on an element every time it is displayed
|
|
14
|
+
* If we set the autoFocusOnDisplay tag to the html element, it will be automatically focused after it is shown.
|
|
15
|
+
*/
|
|
16
|
+
export class AutoFocusOnDisplayDirective {
|
|
17
|
+
constructor(el, zone, renderer) {
|
|
18
|
+
this.el = el;
|
|
19
|
+
this.zone = zone;
|
|
20
|
+
this.renderer = renderer;
|
|
21
|
+
if (!el.nativeElement['focus']) {
|
|
22
|
+
throw new Error('Element does not accept focus');
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
ngAfterContentInit() {
|
|
26
|
+
this.zone.runOutsideAngular(() => setTimeout(() => {
|
|
27
|
+
this.renderer.selectRootElement(this.el.nativeElement).focus();
|
|
28
|
+
}, 0));
|
|
29
|
+
}
|
|
30
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: AutoFocusOnDisplayDirective, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
31
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: AutoFocusOnDisplayDirective, selector: "[autoFocusOnDisplay]", ngImport: i0 }); }
|
|
32
|
+
}
|
|
33
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: AutoFocusOnDisplayDirective, decorators: [{
|
|
34
|
+
type: Directive,
|
|
35
|
+
args: [{
|
|
36
|
+
selector: '[autoFocusOnDisplay]'
|
|
37
|
+
}]
|
|
38
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Renderer2 }] });
|
|
39
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQXV0b0ZvY3VzT25EaXNwbGF5RGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHVyYm9ndWktYW5ndWxhci9zcmMvbWFpbi92aWV3L2RpcmVjdGl2ZXMvQXV0b0ZvY3VzT25EaXNwbGF5RGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7O0dBT0c7QUFFSCxPQUFPLEVBQUUsU0FBUyxFQUFtRCxNQUFNLGVBQWUsQ0FBQzs7QUFHM0YsOEZBQThGO0FBTTlGOzs7R0FHRztBQUNILE1BQU0sT0FBTywyQkFBMkI7SUFHcEMsWUFBb0IsRUFBYyxFQUFVLElBQVksRUFBVSxRQUFtQjtRQUFqRSxPQUFFLEdBQUYsRUFBRSxDQUFZO1FBQVUsU0FBSSxHQUFKLElBQUksQ0FBUTtRQUFVLGFBQVEsR0FBUixRQUFRLENBQVc7UUFFakYsSUFBSSxDQUFDLEVBQUUsQ0FBQyxhQUFhLENBQUMsT0FBTyxDQUFDLEVBQUU7WUFFNUIsTUFBTSxJQUFJLEtBQUssQ0FBQywrQkFBK0IsQ0FBQyxDQUFDO1NBQ3BEO0lBQ0wsQ0FBQztJQUVELGtCQUFrQjtRQUVkLElBQUksQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsR0FBRyxFQUFFLENBQUMsVUFBVSxDQUFDLEdBQUcsRUFBRTtZQUU5QyxJQUFJLENBQUMsUUFBUSxDQUFDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsYUFBYSxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUM7UUFFbkUsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUM7SUFDWCxDQUFDOzhHQWxCUSwyQkFBMkI7a0dBQTNCLDJCQUEyQjs7MkZBQTNCLDJCQUEyQjtrQkFUdkMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsc0JBQXNCO2lCQUNqQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxyXG4gKiBUdXJib0dVSSBpcyBBIGxpYnJhcnkgdGhhdCBoZWxwcyB3aXRoIHRoZSBtb3N0IGNvbW1vbiBhbmQgZ2VuZXJpYyBVSSBlbGVtZW50cyBhbmQgZnVuY3Rpb25hbGl0aWVzXHJcbiAqXHJcbiAqIFdlYnNpdGUgOiAtPiBodHRwOi8vd3d3LnR1cmJvZ3VpLm9yZ1xyXG4gKiBMaWNlbnNlIDogLT4gTGljZW5zZWQgdW5kZXIgdGhlIEFwYWNoZSBMaWNlbnNlLCBWZXJzaW9uIDIuMC4gWW91IG1heSBub3QgdXNlIHRoaXMgZmlsZSBleGNlcHQgaW4gY29tcGxpYW5jZSB3aXRoIHRoZSBMaWNlbnNlLlxyXG4gKiBMaWNlbnNlIFVybCA6IC0+IGh0dHA6Ly93d3cuYXBhY2hlLm9yZy9saWNlbnNlcy9MSUNFTlNFLTIuMFxyXG4gKiBDb3B5UmlnaHQgOiAtPiBDb3B5cmlnaHQgMjAxOCBFZGVydG9uZSBBZHZhbmRlZCBTb2x1dGlvbnMuIGh0dHBzOi8vd3d3LmVkZXJ0b25lLmNvbVxyXG4gKi9cclxuXHJcbmltcG9ydCB7IERpcmVjdGl2ZSwgRWxlbWVudFJlZiwgTmdab25lLCBSZW5kZXJlcjIsIEFmdGVyQ29udGVudEluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcblxyXG4vKiogVGhpcyBkaXJlY3RpdmUgaXMgdXNlZCB0byBwZXJmb3JtIGFuIGF1dG9mb2N1cyBvbiBhbiBlbGVtZW50IGV2ZXJ5IHRpbWUgaXQgaXMgZGlzcGxheWVkICovXHJcbkBEaXJlY3RpdmUoe1xyXG4gIHNlbGVjdG9yOiAnW2F1dG9Gb2N1c09uRGlzcGxheV0nXHJcbn0pXHJcblxyXG5cclxuLyoqXHJcbiAqIFRoaXMgZGlyZWN0aXZlIGlzIHVzZWQgdG8gcGVyZm9ybSBhbiBhdXRvZm9jdXMgb24gYW4gZWxlbWVudCBldmVyeSB0aW1lIGl0IGlzIGRpc3BsYXllZFxyXG4gKiBJZiB3ZSBzZXQgdGhlIGF1dG9Gb2N1c09uRGlzcGxheSB0YWcgdG8gdGhlIGh0bWwgZWxlbWVudCwgaXQgd2lsbCBiZSBhdXRvbWF0aWNhbGx5IGZvY3VzZWQgYWZ0ZXIgaXQgaXMgc2hvd24uXHJcbiAqL1xyXG5leHBvcnQgY2xhc3MgQXV0b0ZvY3VzT25EaXNwbGF5RGlyZWN0aXZlIGltcGxlbWVudHMgQWZ0ZXJDb250ZW50SW5pdCB7XHJcbiAgICBcclxuICAgIFxyXG4gICAgY29uc3RydWN0b3IocHJpdmF0ZSBlbDogRWxlbWVudFJlZiwgcHJpdmF0ZSB6b25lOiBOZ1pvbmUsIHByaXZhdGUgcmVuZGVyZXI6IFJlbmRlcmVyMikge1xyXG4gICAgXHJcbiAgICAgICAgaWYgKCFlbC5uYXRpdmVFbGVtZW50Wydmb2N1cyddKSB7XHJcbiAgICAgICAgXHJcbiAgICAgICAgICAgIHRocm93IG5ldyBFcnJvcignRWxlbWVudCBkb2VzIG5vdCBhY2NlcHQgZm9jdXMnKTtcclxuICAgICAgICB9XHJcbiAgICB9XHJcbiAgICBcclxuICAgIG5nQWZ0ZXJDb250ZW50SW5pdCgpIHtcclxuICAgICAgICBcclxuICAgICAgICB0aGlzLnpvbmUucnVuT3V0c2lkZUFuZ3VsYXIoKCkgPT4gc2V0VGltZW91dCgoKSA9PiB7XHJcbiAgICAgICAgICAgIFxyXG4gICAgICAgICAgICB0aGlzLnJlbmRlcmVyLnNlbGVjdFJvb3RFbGVtZW50KHRoaXMuZWwubmF0aXZlRWxlbWVudCkuZm9jdXMoKTtcclxuICAgICAgICAgICAgXHJcbiAgICAgICAgfSwgMCkpO1xyXG4gICAgfVxyXG59XHJcbiJdfQ==
|
|
@@ -1,39 +1,39 @@
|
|
|
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 { Directive, HostListener } from '@angular/core';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
/** This directive is used to perform an automatic select all text on an element every time it is focused */
|
|
12
|
-
/**
|
|
13
|
-
* This directive is used to perform an an automatic select all text on an element every time it is focused.
|
|
14
|
-
* If we set the autoSelectTextOnFocus tag to the html element, its text will be automatically selected after it gets the focus.
|
|
15
|
-
*/
|
|
16
|
-
export class AutoSelectTextOnFocusDirective {
|
|
17
|
-
constructor(el, renderer) {
|
|
18
|
-
this.el = el;
|
|
19
|
-
this.renderer = renderer;
|
|
20
|
-
if (!el.nativeElement['select']) {
|
|
21
|
-
throw new Error('Element does not accept select');
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
onFocus() {
|
|
25
|
-
this.renderer.selectRootElement(this.el.nativeElement).select();
|
|
26
|
-
}
|
|
27
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
28
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
29
|
-
}
|
|
30
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
31
|
-
type: Directive,
|
|
32
|
-
args: [{
|
|
33
|
-
selector: '[autoSelectTextOnFocus]'
|
|
34
|
-
}]
|
|
35
|
-
}], ctorParameters:
|
|
36
|
-
type: HostListener,
|
|
37
|
-
args: ['focus', ['$event']]
|
|
38
|
-
}] } });
|
|
39
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
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 { Directive, HostListener } from '@angular/core';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
/** This directive is used to perform an automatic select all text on an element every time it is focused */
|
|
12
|
+
/**
|
|
13
|
+
* This directive is used to perform an an automatic select all text on an element every time it is focused.
|
|
14
|
+
* If we set the autoSelectTextOnFocus tag to the html element, its text will be automatically selected after it gets the focus.
|
|
15
|
+
*/
|
|
16
|
+
export class AutoSelectTextOnFocusDirective {
|
|
17
|
+
constructor(el, renderer) {
|
|
18
|
+
this.el = el;
|
|
19
|
+
this.renderer = renderer;
|
|
20
|
+
if (!el.nativeElement['select']) {
|
|
21
|
+
throw new Error('Element does not accept select');
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
onFocus() {
|
|
25
|
+
this.renderer.selectRootElement(this.el.nativeElement).select();
|
|
26
|
+
}
|
|
27
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: AutoSelectTextOnFocusDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
28
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: AutoSelectTextOnFocusDirective, selector: "[autoSelectTextOnFocus]", host: { listeners: { "focus": "onFocus($event)" } }, ngImport: i0 }); }
|
|
29
|
+
}
|
|
30
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: AutoSelectTextOnFocusDirective, decorators: [{
|
|
31
|
+
type: Directive,
|
|
32
|
+
args: [{
|
|
33
|
+
selector: '[autoSelectTextOnFocus]'
|
|
34
|
+
}]
|
|
35
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }], propDecorators: { onFocus: [{
|
|
36
|
+
type: HostListener,
|
|
37
|
+
args: ['focus', ['$event']]
|
|
38
|
+
}] } });
|
|
39
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQXV0b1NlbGVjdFRleHRPbkZvY3VzRGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHVyYm9ndWktYW5ndWxhci9zcmMvbWFpbi92aWV3L2RpcmVjdGl2ZXMvQXV0b1NlbGVjdFRleHRPbkZvY3VzRGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7O0dBT0c7QUFFSCxPQUFPLEVBQUUsU0FBUyxFQUF5QixZQUFZLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBRy9FLDRHQUE0RztBQU01Rzs7O0dBR0c7QUFDSCxNQUFNLE9BQU8sOEJBQThCO0lBR3ZDLFlBQW9CLEVBQWMsRUFBVSxRQUFtQjtRQUEzQyxPQUFFLEdBQUYsRUFBRSxDQUFZO1FBQVUsYUFBUSxHQUFSLFFBQVEsQ0FBVztRQUUzRCxJQUFJLENBQUMsRUFBRSxDQUFDLGFBQWEsQ0FBQyxRQUFRLENBQUMsRUFBRTtZQUU3QixNQUFNLElBQUksS0FBSyxDQUFDLGdDQUFnQyxDQUFDLENBQUM7U0FDckQ7SUFDTCxDQUFDO0lBR2tDLE9BQU87UUFFdEMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLGFBQWEsQ0FBQyxDQUFDLE1BQU0sRUFBRSxDQUFDO0lBQ3BFLENBQUM7OEdBZlEsOEJBQThCO2tHQUE5Qiw4QkFBOEI7OzJGQUE5Qiw4QkFBOEI7a0JBVDFDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLHlCQUF5QjtpQkFDcEM7dUdBbUJzQyxPQUFPO3NCQUF6QyxZQUFZO3VCQUFDLE9BQU8sRUFBRSxDQUFDLFFBQVEsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxyXG4gKiBUdXJib0dVSSBpcyBBIGxpYnJhcnkgdGhhdCBoZWxwcyB3aXRoIHRoZSBtb3N0IGNvbW1vbiBhbmQgZ2VuZXJpYyBVSSBlbGVtZW50cyBhbmQgZnVuY3Rpb25hbGl0aWVzXHJcbiAqXHJcbiAqIFdlYnNpdGUgOiAtPiBodHRwOi8vd3d3LnR1cmJvZ3VpLm9yZ1xyXG4gKiBMaWNlbnNlIDogLT4gTGljZW5zZWQgdW5kZXIgdGhlIEFwYWNoZSBMaWNlbnNlLCBWZXJzaW9uIDIuMC4gWW91IG1heSBub3QgdXNlIHRoaXMgZmlsZSBleGNlcHQgaW4gY29tcGxpYW5jZSB3aXRoIHRoZSBMaWNlbnNlLlxyXG4gKiBMaWNlbnNlIFVybCA6IC0+IGh0dHA6Ly93d3cuYXBhY2hlLm9yZy9saWNlbnNlcy9MSUNFTlNFLTIuMFxyXG4gKiBDb3B5UmlnaHQgOiAtPiBDb3B5cmlnaHQgMjAxOCBFZGVydG9uZSBBZHZhbmRlZCBTb2x1dGlvbnMuIGh0dHBzOi8vd3d3LmVkZXJ0b25lLmNvbVxyXG4gKi9cclxuXHJcbmltcG9ydCB7IERpcmVjdGl2ZSwgRWxlbWVudFJlZiwgUmVuZGVyZXIyLCBIb3N0TGlzdGVuZXIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcblxyXG4vKiogVGhpcyBkaXJlY3RpdmUgaXMgdXNlZCB0byBwZXJmb3JtIGFuIGF1dG9tYXRpYyBzZWxlY3QgYWxsIHRleHQgb24gYW4gZWxlbWVudCBldmVyeSB0aW1lIGl0IGlzIGZvY3VzZWQgKi9cclxuQERpcmVjdGl2ZSh7XHJcbiAgc2VsZWN0b3I6ICdbYXV0b1NlbGVjdFRleHRPbkZvY3VzXSdcclxufSlcclxuXHJcblxyXG4vKipcclxuICogVGhpcyBkaXJlY3RpdmUgaXMgdXNlZCB0byBwZXJmb3JtIGFuIGFuIGF1dG9tYXRpYyBzZWxlY3QgYWxsIHRleHQgb24gYW4gZWxlbWVudCBldmVyeSB0aW1lIGl0IGlzIGZvY3VzZWQuXHJcbiAqIElmIHdlIHNldCB0aGUgYXV0b1NlbGVjdFRleHRPbkZvY3VzIHRhZyB0byB0aGUgaHRtbCBlbGVtZW50LCBpdHMgdGV4dCB3aWxsIGJlIGF1dG9tYXRpY2FsbHkgc2VsZWN0ZWQgYWZ0ZXIgaXQgZ2V0cyB0aGUgZm9jdXMuXHJcbiAqL1xyXG5leHBvcnQgY2xhc3MgQXV0b1NlbGVjdFRleHRPbkZvY3VzRGlyZWN0aXZlIHtcclxuICAgIFxyXG4gICAgXHJcbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIGVsOiBFbGVtZW50UmVmLCBwcml2YXRlIHJlbmRlcmVyOiBSZW5kZXJlcjIpIHtcclxuICAgIFxyXG4gICAgICAgIGlmICghZWwubmF0aXZlRWxlbWVudFsnc2VsZWN0J10pIHtcclxuICAgICAgICBcclxuICAgICAgICAgICAgdGhyb3cgbmV3IEVycm9yKCdFbGVtZW50IGRvZXMgbm90IGFjY2VwdCBzZWxlY3QnKTtcclxuICAgICAgICB9XHJcbiAgICB9XHJcbiAgICBcclxuICAgIFxyXG4gICAgQEhvc3RMaXN0ZW5lcignZm9jdXMnLCBbJyRldmVudCddKSBvbkZvY3VzKCkge1xyXG4gICAgXHJcbiAgICAgICAgdGhpcy5yZW5kZXJlci5zZWxlY3RSb290RWxlbWVudCh0aGlzLmVsLm5hdGl2ZUVsZW1lbnQpLnNlbGVjdCgpO1xyXG4gICAgfVxyXG59XHJcbiJdfQ==
|
|
@@ -1,42 +1,42 @@
|
|
|
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 { Directive, EventEmitter, Output } from '@angular/core';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
/** This directive is used to listen for onInit events on raw html elements */
|
|
12
|
-
/**
|
|
13
|
-
* This directive is used to listen for onInit events on raw html elements
|
|
14
|
-
* If we place (elementCreated)="someMethod()" on the element at the html template part, when the element
|
|
15
|
-
* that uses this directive is visually created, someMethod() will be called.
|
|
16
|
-
*/
|
|
17
|
-
export class ElementCreatedDirective {
|
|
18
|
-
constructor() {
|
|
19
|
-
/**
|
|
20
|
-
* Event that will be dispatched once element is created
|
|
21
|
-
*/
|
|
22
|
-
this.elementCreated = new EventEmitter();
|
|
23
|
-
}
|
|
24
|
-
/**
|
|
25
|
-
* Listen for the on init event
|
|
26
|
-
*/
|
|
27
|
-
ngOnInit() {
|
|
28
|
-
this.elementCreated.next(this);
|
|
29
|
-
}
|
|
30
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
31
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
32
|
-
}
|
|
33
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
34
|
-
type: Directive,
|
|
35
|
-
args: [{
|
|
36
|
-
selector: '[elementCreated]'
|
|
37
|
-
}]
|
|
38
|
-
}], propDecorators: { elementCreated: [{
|
|
39
|
-
type: Output,
|
|
40
|
-
args: ['elementCreated']
|
|
41
|
-
}] } });
|
|
42
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
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 { Directive, EventEmitter, Output } from '@angular/core';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
/** This directive is used to listen for onInit events on raw html elements */
|
|
12
|
+
/**
|
|
13
|
+
* This directive is used to listen for onInit events on raw html elements
|
|
14
|
+
* If we place (elementCreated)="someMethod()" on the element at the html template part, when the element
|
|
15
|
+
* that uses this directive is visually created, someMethod() will be called.
|
|
16
|
+
*/
|
|
17
|
+
export class ElementCreatedDirective {
|
|
18
|
+
constructor() {
|
|
19
|
+
/**
|
|
20
|
+
* Event that will be dispatched once element is created
|
|
21
|
+
*/
|
|
22
|
+
this.elementCreated = new EventEmitter();
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Listen for the on init event
|
|
26
|
+
*/
|
|
27
|
+
ngOnInit() {
|
|
28
|
+
this.elementCreated.next(this);
|
|
29
|
+
}
|
|
30
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ElementCreatedDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
31
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: ElementCreatedDirective, selector: "[elementCreated]", outputs: { elementCreated: "elementCreated" }, ngImport: i0 }); }
|
|
32
|
+
}
|
|
33
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ElementCreatedDirective, decorators: [{
|
|
34
|
+
type: Directive,
|
|
35
|
+
args: [{
|
|
36
|
+
selector: '[elementCreated]'
|
|
37
|
+
}]
|
|
38
|
+
}], propDecorators: { elementCreated: [{
|
|
39
|
+
type: Output,
|
|
40
|
+
args: ['elementCreated']
|
|
41
|
+
}] } });
|
|
42
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRWxlbWVudENyZWF0ZWREaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90dXJib2d1aS1hbmd1bGFyL3NyYy9tYWluL3ZpZXcvZGlyZWN0aXZlcy9FbGVtZW50Q3JlYXRlZERpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7OztHQU9HO0FBRUgsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsTUFBTSxFQUFVLE1BQU0sZUFBZSxDQUFDOztBQUd4RSw4RUFBOEU7QUFNOUU7Ozs7R0FJRztBQUNILE1BQU0sT0FBTyx1QkFBdUI7SUFWcEM7UUFhSTs7V0FFRztRQUVJLG1CQUFjLEdBQTBDLElBQUksWUFBWSxFQUFFLENBQUM7S0FXckY7SUFSRzs7T0FFRztJQUNILFFBQVE7UUFFSixJQUFJLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUNuQyxDQUFDOzhHQWhCUSx1QkFBdUI7a0dBQXZCLHVCQUF1Qjs7MkZBQXZCLHVCQUF1QjtrQkFWbkMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsa0JBQWtCO2lCQUM3Qjs4QkFlVSxjQUFjO3NCQURwQixNQUFNO3VCQUFDLGdCQUFnQiIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxyXG4gKiBUdXJib0dVSSBpcyBBIGxpYnJhcnkgdGhhdCBoZWxwcyB3aXRoIHRoZSBtb3N0IGNvbW1vbiBhbmQgZ2VuZXJpYyBVSSBlbGVtZW50cyBhbmQgZnVuY3Rpb25hbGl0aWVzXHJcbiAqXHJcbiAqIFdlYnNpdGUgOiAtPiBodHRwOi8vd3d3LnR1cmJvZ3VpLm9yZ1xyXG4gKiBMaWNlbnNlIDogLT4gTGljZW5zZWQgdW5kZXIgdGhlIEFwYWNoZSBMaWNlbnNlLCBWZXJzaW9uIDIuMC4gWW91IG1heSBub3QgdXNlIHRoaXMgZmlsZSBleGNlcHQgaW4gY29tcGxpYW5jZSB3aXRoIHRoZSBMaWNlbnNlLlxyXG4gKiBMaWNlbnNlIFVybCA6IC0+IGh0dHA6Ly93d3cuYXBhY2hlLm9yZy9saWNlbnNlcy9MSUNFTlNFLTIuMFxyXG4gKiBDb3B5UmlnaHQgOiAtPiBDb3B5cmlnaHQgMjAxOCBFZGVydG9uZSBBZHZhbmRlZCBTb2x1dGlvbnMuIGh0dHBzOi8vd3d3LmVkZXJ0b25lLmNvbVxyXG4gKi9cclxuXHJcbmltcG9ydCB7IERpcmVjdGl2ZSwgRXZlbnRFbWl0dGVyLCBPdXRwdXQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuXHJcbi8qKiBUaGlzIGRpcmVjdGl2ZSBpcyB1c2VkIHRvIGxpc3RlbiBmb3Igb25Jbml0IGV2ZW50cyBvbiByYXcgaHRtbCBlbGVtZW50cyAqL1xyXG5ARGlyZWN0aXZlKHtcclxuICBzZWxlY3RvcjogJ1tlbGVtZW50Q3JlYXRlZF0nXHJcbn0pXHJcblxyXG5cclxuLyoqXHJcbiAqIFRoaXMgZGlyZWN0aXZlIGlzIHVzZWQgdG8gbGlzdGVuIGZvciBvbkluaXQgZXZlbnRzIG9uIHJhdyBodG1sIGVsZW1lbnRzXHJcbiAqIElmIHdlIHBsYWNlIChlbGVtZW50Q3JlYXRlZCk9XCJzb21lTWV0aG9kKClcIiBvbiB0aGUgZWxlbWVudCBhdCB0aGUgaHRtbCB0ZW1wbGF0ZSBwYXJ0LCB3aGVuIHRoZSBlbGVtZW50XHJcbiAqIHRoYXQgdXNlcyB0aGlzIGRpcmVjdGl2ZSBpcyB2aXN1YWxseSBjcmVhdGVkLCBzb21lTWV0aG9kKCkgd2lsbCBiZSBjYWxsZWQuXHJcbiAqL1xyXG5leHBvcnQgY2xhc3MgRWxlbWVudENyZWF0ZWREaXJlY3RpdmUgaW1wbGVtZW50cyBPbkluaXQge1xyXG5cclxuXHJcbiAgICAvKipcclxuICAgICAqIEV2ZW50IHRoYXQgd2lsbCBiZSBkaXNwYXRjaGVkIG9uY2UgZWxlbWVudCBpcyBjcmVhdGVkXHJcbiAgICAgKi9cclxuICAgIEBPdXRwdXQoJ2VsZW1lbnRDcmVhdGVkJylcclxuICAgIHB1YmxpYyBlbGVtZW50Q3JlYXRlZDogRXZlbnRFbWl0dGVyPEVsZW1lbnRDcmVhdGVkRGlyZWN0aXZlPiA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcclxuXHJcblxyXG4gICAgLyoqXHJcbiAgICAgKiBMaXN0ZW4gZm9yIHRoZSBvbiBpbml0IGV2ZW50XHJcbiAgICAgKi9cclxuICAgIG5nT25Jbml0KCkge1xyXG5cclxuICAgICAgICB0aGlzLmVsZW1lbnRDcmVhdGVkLm5leHQodGhpcyk7XHJcbiAgICB9XHJcblxyXG59XHJcbiJdfQ==
|
|
@@ -1,42 +1,42 @@
|
|
|
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 { Directive, EventEmitter, Output } from '@angular/core';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
/** This directive is used to listen for onDestroy events on raw html elements */
|
|
12
|
-
/**
|
|
13
|
-
* This directive is used to listen for onDestroy events on raw html elements
|
|
14
|
-
* If we place (elementDestroyed)="someMethod()" on the element at the html template part, when the element
|
|
15
|
-
* that uses this directive is visually destroyed from the screen, someMethod() will be called.
|
|
16
|
-
*/
|
|
17
|
-
export class ElementDestroyedDirective {
|
|
18
|
-
constructor() {
|
|
19
|
-
/**
|
|
20
|
-
* Event that will be dispatched once element is destroyed
|
|
21
|
-
*/
|
|
22
|
-
this.elementDestroyed = new EventEmitter();
|
|
23
|
-
}
|
|
24
|
-
/**
|
|
25
|
-
* Listen for the on destroy event
|
|
26
|
-
*/
|
|
27
|
-
ngOnDestroy() {
|
|
28
|
-
this.elementDestroyed.next(this);
|
|
29
|
-
}
|
|
30
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
31
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
32
|
-
}
|
|
33
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
34
|
-
type: Directive,
|
|
35
|
-
args: [{
|
|
36
|
-
selector: '[elementDestroyed]'
|
|
37
|
-
}]
|
|
38
|
-
}], propDecorators: { elementDestroyed: [{
|
|
39
|
-
type: Output,
|
|
40
|
-
args: ['elementDestroyed']
|
|
41
|
-
}] } });
|
|
42
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
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 { Directive, EventEmitter, Output } from '@angular/core';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
/** This directive is used to listen for onDestroy events on raw html elements */
|
|
12
|
+
/**
|
|
13
|
+
* This directive is used to listen for onDestroy events on raw html elements
|
|
14
|
+
* If we place (elementDestroyed)="someMethod()" on the element at the html template part, when the element
|
|
15
|
+
* that uses this directive is visually destroyed from the screen, someMethod() will be called.
|
|
16
|
+
*/
|
|
17
|
+
export class ElementDestroyedDirective {
|
|
18
|
+
constructor() {
|
|
19
|
+
/**
|
|
20
|
+
* Event that will be dispatched once element is destroyed
|
|
21
|
+
*/
|
|
22
|
+
this.elementDestroyed = new EventEmitter();
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Listen for the on destroy event
|
|
26
|
+
*/
|
|
27
|
+
ngOnDestroy() {
|
|
28
|
+
this.elementDestroyed.next(this);
|
|
29
|
+
}
|
|
30
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ElementDestroyedDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
31
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: ElementDestroyedDirective, selector: "[elementDestroyed]", outputs: { elementDestroyed: "elementDestroyed" }, ngImport: i0 }); }
|
|
32
|
+
}
|
|
33
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ElementDestroyedDirective, decorators: [{
|
|
34
|
+
type: Directive,
|
|
35
|
+
args: [{
|
|
36
|
+
selector: '[elementDestroyed]'
|
|
37
|
+
}]
|
|
38
|
+
}], propDecorators: { elementDestroyed: [{
|
|
39
|
+
type: Output,
|
|
40
|
+
args: ['elementDestroyed']
|
|
41
|
+
}] } });
|
|
42
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRWxlbWVudERlc3Ryb3llZERpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3R1cmJvZ3VpLWFuZ3VsYXIvc3JjL21haW4vdmlldy9kaXJlY3RpdmVzL0VsZW1lbnREZXN0cm95ZWREaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7R0FPRztBQUVILE9BQU8sRUFBRSxTQUFTLEVBQWEsWUFBWSxFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFHM0UsaUZBQWlGO0FBTWpGOzs7O0dBSUc7QUFDSCxNQUFNLE9BQU8seUJBQXlCO0lBVnRDO1FBYUk7O1dBRUc7UUFFSSxxQkFBZ0IsR0FBNEMsSUFBSSxZQUFZLEVBQUUsQ0FBQztLQVd6RjtJQVJHOztPQUVHO0lBQ0gsV0FBVztRQUVQLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDckMsQ0FBQzs4R0FoQlEseUJBQXlCO2tHQUF6Qix5QkFBeUI7OzJGQUF6Qix5QkFBeUI7a0JBVnJDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLG9CQUFvQjtpQkFDL0I7OEJBZVUsZ0JBQWdCO3NCQUR0QixNQUFNO3VCQUFDLGtCQUFrQiIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxyXG4gKiBUdXJib0dVSSBpcyBBIGxpYnJhcnkgdGhhdCBoZWxwcyB3aXRoIHRoZSBtb3N0IGNvbW1vbiBhbmQgZ2VuZXJpYyBVSSBlbGVtZW50cyBhbmQgZnVuY3Rpb25hbGl0aWVzXHJcbiAqXHJcbiAqIFdlYnNpdGUgOiAtPiBodHRwOi8vd3d3LnR1cmJvZ3VpLm9yZ1xyXG4gKiBMaWNlbnNlIDogLT4gTGljZW5zZWQgdW5kZXIgdGhlIEFwYWNoZSBMaWNlbnNlLCBWZXJzaW9uIDIuMC4gWW91IG1heSBub3QgdXNlIHRoaXMgZmlsZSBleGNlcHQgaW4gY29tcGxpYW5jZSB3aXRoIHRoZSBMaWNlbnNlLlxyXG4gKiBMaWNlbnNlIFVybCA6IC0+IGh0dHA6Ly93d3cuYXBhY2hlLm9yZy9saWNlbnNlcy9MSUNFTlNFLTIuMFxyXG4gKiBDb3B5UmlnaHQgOiAtPiBDb3B5cmlnaHQgMjAxOCBFZGVydG9uZSBBZHZhbmRlZCBTb2x1dGlvbnMuIGh0dHBzOi8vd3d3LmVkZXJ0b25lLmNvbVxyXG4gKi9cclxuXHJcbmltcG9ydCB7IERpcmVjdGl2ZSwgT25EZXN0cm95LCBFdmVudEVtaXR0ZXIsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuXHJcbi8qKiBUaGlzIGRpcmVjdGl2ZSBpcyB1c2VkIHRvIGxpc3RlbiBmb3Igb25EZXN0cm95IGV2ZW50cyBvbiByYXcgaHRtbCBlbGVtZW50cyAqL1xyXG5ARGlyZWN0aXZlKHtcclxuICBzZWxlY3RvcjogJ1tlbGVtZW50RGVzdHJveWVkXSdcclxufSlcclxuXHJcblxyXG4vKipcclxuICogVGhpcyBkaXJlY3RpdmUgaXMgdXNlZCB0byBsaXN0ZW4gZm9yIG9uRGVzdHJveSBldmVudHMgb24gcmF3IGh0bWwgZWxlbWVudHNcclxuICogSWYgd2UgcGxhY2UgKGVsZW1lbnREZXN0cm95ZWQpPVwic29tZU1ldGhvZCgpXCIgb24gdGhlIGVsZW1lbnQgYXQgdGhlIGh0bWwgdGVtcGxhdGUgcGFydCwgd2hlbiB0aGUgZWxlbWVudFxyXG4gKiB0aGF0IHVzZXMgdGhpcyBkaXJlY3RpdmUgaXMgdmlzdWFsbHkgZGVzdHJveWVkIGZyb20gdGhlIHNjcmVlbiwgc29tZU1ldGhvZCgpIHdpbGwgYmUgY2FsbGVkLlxyXG4gKi9cclxuZXhwb3J0IGNsYXNzIEVsZW1lbnREZXN0cm95ZWREaXJlY3RpdmUgaW1wbGVtZW50cyBPbkRlc3Ryb3kge1xyXG5cclxuXHJcbiAgICAvKipcclxuICAgICAqIEV2ZW50IHRoYXQgd2lsbCBiZSBkaXNwYXRjaGVkIG9uY2UgZWxlbWVudCBpcyBkZXN0cm95ZWRcclxuICAgICAqL1xyXG4gICAgQE91dHB1dCgnZWxlbWVudERlc3Ryb3llZCcpXHJcbiAgICBwdWJsaWMgZWxlbWVudERlc3Ryb3llZDogRXZlbnRFbWl0dGVyPEVsZW1lbnREZXN0cm95ZWREaXJlY3RpdmU+ID0gbmV3IEV2ZW50RW1pdHRlcigpO1xyXG5cclxuXHJcbiAgICAvKipcclxuICAgICAqIExpc3RlbiBmb3IgdGhlIG9uIGRlc3Ryb3kgZXZlbnRcclxuICAgICAqL1xyXG4gICAgbmdPbkRlc3Ryb3koKSB7XHJcblxyXG4gICAgICAgIHRoaXMuZWxlbWVudERlc3Ryb3llZC5uZXh0KHRoaXMpO1xyXG4gICAgfVxyXG5cclxufVxyXG4iXX0=
|
package/esm2022/public_api.mjs
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Public API Surface of turbogui-angular
|
|
3
|
-
*/
|
|
4
|
-
export { TurboGuiAngularModule } from './main/model/modules/turbogui-angular.module';
|
|
5
|
-
/**
|
|
6
|
-
* Services
|
|
7
|
-
*/
|
|
8
|
-
export { NotificationService } from './main/controller/notification.service';
|
|
9
|
-
export { GlobalErrorService } from './main/controller/globalerror.service';
|
|
10
|
-
export { LocalizationService } from './main/controller/localization.service';
|
|
11
|
-
export { HTTPService } from './main/controller/http.service';
|
|
12
|
-
export { HTTPServiceGetRequest } from './main/controller/httpservice/HTTPServiceGetRequest';
|
|
13
|
-
export { HTTPServicePostRequest } from './main/controller/httpservice/HTTPServicePostRequest';
|
|
14
|
-
export { DialogService } from './main/controller/dialog.service';
|
|
15
|
-
export { UserService } from './main/controller/user.service';
|
|
16
|
-
export { ViewsService } from './main/controller/views.service';
|
|
17
|
-
export { BrowserService } from './main/controller/browser.service';
|
|
18
|
-
/**
|
|
19
|
-
* Components
|
|
20
|
-
*/
|
|
21
|
-
export { BusyStateBaseComponent } from './main/view/components/busy-state-base/busy-state-base.component';
|
|
22
|
-
export { DialogOptionsBaseComponent } from './main/view/components/dialog-options-base/dialog-options-base.component';
|
|
23
|
-
export { DialogErrorComponent } from './main/view/components/dialog-error/dialog-error.component';
|
|
24
|
-
export { DialogSingleOptionComponent } from './main/view/components/dialog-single-option/dialog-single-option.component';
|
|
25
|
-
export { DialogTwoOptionComponent } from './main/view/components/dialog-two-option/dialog-two-option.component';
|
|
26
|
-
export { DialogMultipleOptionComponent } from './main/view/components/dialog-multiple-option/dialog-multiple-option.component';
|
|
27
|
-
export { DialogSingleSelectionListComponent } from './main/view/components/dialog-single-selection-list/dialog-single-selection-list.component';
|
|
28
|
-
export { ViewsContainerComponent } from './main/view/components/views-container/views-container.component';
|
|
29
|
-
export { ButtonImageComponent } from './main/view/components/button-image/button-image.component';
|
|
30
|
-
export { ButtonContainerComponent } from './main/view/components/button-container/button-container.component';
|
|
31
|
-
/**
|
|
32
|
-
* Classes
|
|
33
|
-
*/
|
|
34
|
-
export { GUINotification } from './main/model/classes/GUINotification';
|
|
35
|
-
export { View } from './main/model/classes/View';
|
|
36
|
-
export { ViewModel } from './main/model/classes/ViewModel';
|
|
37
|
-
export { ViewService } from './main/model/classes/ViewService';
|
|
38
|
-
export { DelayedMethodCallManager } from './main/managers/DelayedMethodCallManager';
|
|
39
|
-
export { FadeAnimationClass } from './main/view/animations/fade.animation';
|
|
40
|
-
export { ElementCreatedDirective } from './main/view/directives/ElementCreatedDirective';
|
|
41
|
-
export { ElementDestroyedDirective } from './main/view/directives/ElementDestroyedDirective';
|
|
42
|
-
export { AutoFocusOnDisplayDirective } from './main/view/directives/AutoFocusOnDisplayDirective';
|
|
43
|
-
export { AutoSelectTextOnFocusDirective } from './main/view/directives/AutoSelectTextOnFocusDirective';
|
|
1
|
+
/*
|
|
2
|
+
* Public API Surface of turbogui-angular
|
|
3
|
+
*/
|
|
4
|
+
export { TurboGuiAngularModule } from './main/model/modules/turbogui-angular.module';
|
|
5
|
+
/**
|
|
6
|
+
* Services
|
|
7
|
+
*/
|
|
8
|
+
export { NotificationService } from './main/controller/notification.service';
|
|
9
|
+
export { GlobalErrorService } from './main/controller/globalerror.service';
|
|
10
|
+
export { LocalizationService } from './main/controller/localization.service';
|
|
11
|
+
export { HTTPService } from './main/controller/http.service';
|
|
12
|
+
export { HTTPServiceGetRequest } from './main/controller/httpservice/HTTPServiceGetRequest';
|
|
13
|
+
export { HTTPServicePostRequest } from './main/controller/httpservice/HTTPServicePostRequest';
|
|
14
|
+
export { DialogService } from './main/controller/dialog.service';
|
|
15
|
+
export { UserService } from './main/controller/user.service';
|
|
16
|
+
export { ViewsService } from './main/controller/views.service';
|
|
17
|
+
export { BrowserService } from './main/controller/browser.service';
|
|
18
|
+
/**
|
|
19
|
+
* Components
|
|
20
|
+
*/
|
|
21
|
+
export { BusyStateBaseComponent } from './main/view/components/busy-state-base/busy-state-base.component';
|
|
22
|
+
export { DialogOptionsBaseComponent } from './main/view/components/dialog-options-base/dialog-options-base.component';
|
|
23
|
+
export { DialogErrorComponent } from './main/view/components/dialog-error/dialog-error.component';
|
|
24
|
+
export { DialogSingleOptionComponent } from './main/view/components/dialog-single-option/dialog-single-option.component';
|
|
25
|
+
export { DialogTwoOptionComponent } from './main/view/components/dialog-two-option/dialog-two-option.component';
|
|
26
|
+
export { DialogMultipleOptionComponent } from './main/view/components/dialog-multiple-option/dialog-multiple-option.component';
|
|
27
|
+
export { DialogSingleSelectionListComponent } from './main/view/components/dialog-single-selection-list/dialog-single-selection-list.component';
|
|
28
|
+
export { ViewsContainerComponent } from './main/view/components/views-container/views-container.component';
|
|
29
|
+
export { ButtonImageComponent } from './main/view/components/button-image/button-image.component';
|
|
30
|
+
export { ButtonContainerComponent } from './main/view/components/button-container/button-container.component';
|
|
31
|
+
/**
|
|
32
|
+
* Classes
|
|
33
|
+
*/
|
|
34
|
+
export { GUINotification } from './main/model/classes/GUINotification';
|
|
35
|
+
export { View } from './main/model/classes/View';
|
|
36
|
+
export { ViewModel } from './main/model/classes/ViewModel';
|
|
37
|
+
export { ViewService } from './main/model/classes/ViewService';
|
|
38
|
+
export { DelayedMethodCallManager } from './main/managers/DelayedMethodCallManager';
|
|
39
|
+
export { FadeAnimationClass } from './main/view/animations/fade.animation';
|
|
40
|
+
export { ElementCreatedDirective } from './main/view/directives/ElementCreatedDirective';
|
|
41
|
+
export { ElementDestroyedDirective } from './main/view/directives/ElementDestroyedDirective';
|
|
42
|
+
export { AutoFocusOnDisplayDirective } from './main/view/directives/AutoFocusOnDisplayDirective';
|
|
43
|
+
export { AutoSelectTextOnFocusDirective } from './main/view/directives/AutoSelectTextOnFocusDirective';
|
|
44
44
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL3R1cmJvZ3VpLWFuZ3VsYXIvc3JjL3B1YmxpY19hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSw4Q0FBOEMsQ0FBQztBQUdyRjs7R0FFRztBQUNILE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHdDQUF3QyxDQUFDO0FBQzdFLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHVDQUF1QyxDQUFDO0FBQzNFLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHdDQUF3QyxDQUFDO0FBQzdFLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUM3RCxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxxREFBcUQsQ0FBQztBQUM1RixPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxzREFBc0QsQ0FBQztBQUM5RixPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUFDakUsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQzdELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUMvRCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sbUNBQW1DLENBQUM7QUFHbkU7O0dBRUc7QUFDSCxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxrRUFBa0UsQ0FBQztBQUMxRyxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSwwRUFBMEUsQ0FBQztBQUN0SCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSw0REFBNEQsQ0FBQztBQUNsRyxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSw0RUFBNEUsQ0FBQztBQUN6SCxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxzRUFBc0UsQ0FBQztBQUNoSCxPQUFPLEVBQUUsNkJBQTZCLEVBQUUsTUFBTSxnRkFBZ0YsQ0FBQztBQUMvSCxPQUFPLEVBQUUsa0NBQWtDLEVBQUUsTUFBTSw0RkFBNEYsQ0FBQztBQUNoSixPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSxrRUFBa0UsQ0FBQztBQUMzRyxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSw0REFBNEQsQ0FBQztBQUNsRyxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxvRUFBb0UsQ0FBQztBQUc5Rzs7R0FFRztBQUNILE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQztBQUN2RSxPQUFPLEVBQUUsSUFBSSxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDakQsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQzNELE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxrQ0FBa0MsQ0FBQztBQUMvRCxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSwwQ0FBMEMsQ0FBQztBQUNwRixPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx1Q0FBdUMsQ0FBQztBQUMzRSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSxnREFBZ0QsQ0FBQztBQUN6RixPQUFPLEVBQUUseUJBQXlCLEVBQUUsTUFBTSxrREFBa0QsQ0FBQztBQUM3RixPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSxvREFBb0QsQ0FBQztBQUNqRyxPQUFPLEVBQUUsOEJBQThCLEVBQUUsTUFBTSx1REFBdUQsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qXHJcbiAqIFB1YmxpYyBBUEkgU3VyZmFjZSBvZiB0dXJib2d1aS1hbmd1bGFyXHJcbiAqL1xyXG5cclxuZXhwb3J0IHsgVHVyYm9HdWlBbmd1bGFyTW9kdWxlIH0gZnJvbSAnLi9tYWluL21vZGVsL21vZHVsZXMvdHVyYm9ndWktYW5ndWxhci5tb2R1bGUnO1xyXG5cclxuXHJcbi8qKlxyXG4gKiBTZXJ2aWNlc1xyXG4gKi9cclxuZXhwb3J0IHsgTm90aWZpY2F0aW9uU2VydmljZSB9IGZyb20gJy4vbWFpbi9jb250cm9sbGVyL25vdGlmaWNhdGlvbi5zZXJ2aWNlJztcclxuZXhwb3J0IHsgR2xvYmFsRXJyb3JTZXJ2aWNlIH0gZnJvbSAnLi9tYWluL2NvbnRyb2xsZXIvZ2xvYmFsZXJyb3Iuc2VydmljZSc7XHJcbmV4cG9ydCB7IExvY2FsaXphdGlvblNlcnZpY2UgfSBmcm9tICcuL21haW4vY29udHJvbGxlci9sb2NhbGl6YXRpb24uc2VydmljZSc7XHJcbmV4cG9ydCB7IEhUVFBTZXJ2aWNlIH0gZnJvbSAnLi9tYWluL2NvbnRyb2xsZXIvaHR0cC5zZXJ2aWNlJztcclxuZXhwb3J0IHsgSFRUUFNlcnZpY2VHZXRSZXF1ZXN0IH0gZnJvbSAnLi9tYWluL2NvbnRyb2xsZXIvaHR0cHNlcnZpY2UvSFRUUFNlcnZpY2VHZXRSZXF1ZXN0JztcclxuZXhwb3J0IHsgSFRUUFNlcnZpY2VQb3N0UmVxdWVzdCB9IGZyb20gJy4vbWFpbi9jb250cm9sbGVyL2h0dHBzZXJ2aWNlL0hUVFBTZXJ2aWNlUG9zdFJlcXVlc3QnO1xyXG5leHBvcnQgeyBEaWFsb2dTZXJ2aWNlIH0gZnJvbSAnLi9tYWluL2NvbnRyb2xsZXIvZGlhbG9nLnNlcnZpY2UnO1xyXG5leHBvcnQgeyBVc2VyU2VydmljZSB9IGZyb20gJy4vbWFpbi9jb250cm9sbGVyL3VzZXIuc2VydmljZSc7XHJcbmV4cG9ydCB7IFZpZXdzU2VydmljZSB9IGZyb20gJy4vbWFpbi9jb250cm9sbGVyL3ZpZXdzLnNlcnZpY2UnO1xyXG5leHBvcnQgeyBCcm93c2VyU2VydmljZSB9IGZyb20gJy4vbWFpbi9jb250cm9sbGVyL2Jyb3dzZXIuc2VydmljZSc7XHJcblxyXG5cclxuLyoqXHJcbiAqIENvbXBvbmVudHNcclxuICovXHJcbmV4cG9ydCB7IEJ1c3lTdGF0ZUJhc2VDb21wb25lbnQgfSBmcm9tICcuL21haW4vdmlldy9jb21wb25lbnRzL2J1c3ktc3RhdGUtYmFzZS9idXN5LXN0YXRlLWJhc2UuY29tcG9uZW50JztcclxuZXhwb3J0IHsgRGlhbG9nT3B0aW9uc0Jhc2VDb21wb25lbnQgfSBmcm9tICcuL21haW4vdmlldy9jb21wb25lbnRzL2RpYWxvZy1vcHRpb25zLWJhc2UvZGlhbG9nLW9wdGlvbnMtYmFzZS5jb21wb25lbnQnO1xyXG5leHBvcnQgeyBEaWFsb2dFcnJvckNvbXBvbmVudCB9IGZyb20gJy4vbWFpbi92aWV3L2NvbXBvbmVudHMvZGlhbG9nLWVycm9yL2RpYWxvZy1lcnJvci5jb21wb25lbnQnO1xyXG5leHBvcnQgeyBEaWFsb2dTaW5nbGVPcHRpb25Db21wb25lbnQgfSBmcm9tICcuL21haW4vdmlldy9jb21wb25lbnRzL2RpYWxvZy1zaW5nbGUtb3B0aW9uL2RpYWxvZy1zaW5nbGUtb3B0aW9uLmNvbXBvbmVudCc7XHJcbmV4cG9ydCB7IERpYWxvZ1R3b09wdGlvbkNvbXBvbmVudCB9IGZyb20gJy4vbWFpbi92aWV3L2NvbXBvbmVudHMvZGlhbG9nLXR3by1vcHRpb24vZGlhbG9nLXR3by1vcHRpb24uY29tcG9uZW50JztcclxuZXhwb3J0IHsgRGlhbG9nTXVsdGlwbGVPcHRpb25Db21wb25lbnQgfSBmcm9tICcuL21haW4vdmlldy9jb21wb25lbnRzL2RpYWxvZy1tdWx0aXBsZS1vcHRpb24vZGlhbG9nLW11bHRpcGxlLW9wdGlvbi5jb21wb25lbnQnO1xyXG5leHBvcnQgeyBEaWFsb2dTaW5nbGVTZWxlY3Rpb25MaXN0Q29tcG9uZW50IH0gZnJvbSAnLi9tYWluL3ZpZXcvY29tcG9uZW50cy9kaWFsb2ctc2luZ2xlLXNlbGVjdGlvbi1saXN0L2RpYWxvZy1zaW5nbGUtc2VsZWN0aW9uLWxpc3QuY29tcG9uZW50JztcclxuZXhwb3J0IHsgVmlld3NDb250YWluZXJDb21wb25lbnQgfSBmcm9tICcuL21haW4vdmlldy9jb21wb25lbnRzL3ZpZXdzLWNvbnRhaW5lci92aWV3cy1jb250YWluZXIuY29tcG9uZW50JztcclxuZXhwb3J0IHsgQnV0dG9uSW1hZ2VDb21wb25lbnQgfSBmcm9tICcuL21haW4vdmlldy9jb21wb25lbnRzL2J1dHRvbi1pbWFnZS9idXR0b24taW1hZ2UuY29tcG9uZW50JztcclxuZXhwb3J0IHsgQnV0dG9uQ29udGFpbmVyQ29tcG9uZW50IH0gZnJvbSAnLi9tYWluL3ZpZXcvY29tcG9uZW50cy9idXR0b24tY29udGFpbmVyL2J1dHRvbi1jb250YWluZXIuY29tcG9uZW50JztcclxuXHJcblxyXG4vKipcclxuICogQ2xhc3Nlc1xyXG4gKi9cclxuZXhwb3J0IHsgR1VJTm90aWZpY2F0aW9uIH0gZnJvbSAnLi9tYWluL21vZGVsL2NsYXNzZXMvR1VJTm90aWZpY2F0aW9uJztcclxuZXhwb3J0IHsgVmlldyB9IGZyb20gJy4vbWFpbi9tb2RlbC9jbGFzc2VzL1ZpZXcnO1xyXG5leHBvcnQgeyBWaWV3TW9kZWwgfSBmcm9tICcuL21haW4vbW9kZWwvY2xhc3Nlcy9WaWV3TW9kZWwnO1xyXG5leHBvcnQgeyBWaWV3U2VydmljZSB9IGZyb20gJy4vbWFpbi9tb2RlbC9jbGFzc2VzL1ZpZXdTZXJ2aWNlJztcclxuZXhwb3J0IHsgRGVsYXllZE1ldGhvZENhbGxNYW5hZ2VyIH0gZnJvbSAnLi9tYWluL21hbmFnZXJzL0RlbGF5ZWRNZXRob2RDYWxsTWFuYWdlcic7XHJcbmV4cG9ydCB7IEZhZGVBbmltYXRpb25DbGFzcyB9IGZyb20gJy4vbWFpbi92aWV3L2FuaW1hdGlvbnMvZmFkZS5hbmltYXRpb24nO1xyXG5leHBvcnQgeyBFbGVtZW50Q3JlYXRlZERpcmVjdGl2ZSB9IGZyb20gJy4vbWFpbi92aWV3L2RpcmVjdGl2ZXMvRWxlbWVudENyZWF0ZWREaXJlY3RpdmUnO1xyXG5leHBvcnQgeyBFbGVtZW50RGVzdHJveWVkRGlyZWN0aXZlIH0gZnJvbSAnLi9tYWluL3ZpZXcvZGlyZWN0aXZlcy9FbGVtZW50RGVzdHJveWVkRGlyZWN0aXZlJztcclxuZXhwb3J0IHsgQXV0b0ZvY3VzT25EaXNwbGF5RGlyZWN0aXZlIH0gZnJvbSAnLi9tYWluL3ZpZXcvZGlyZWN0aXZlcy9BdXRvRm9jdXNPbkRpc3BsYXlEaXJlY3RpdmUnO1xyXG5leHBvcnQgeyBBdXRvU2VsZWN0VGV4dE9uRm9jdXNEaXJlY3RpdmUgfSBmcm9tICcuL21haW4vdmlldy9kaXJlY3RpdmVzL0F1dG9TZWxlY3RUZXh0T25Gb2N1c0RpcmVjdGl2ZSc7XHJcbiJdfQ==
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './public_api';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public_api';
|
|
5
5
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHVyYm9ndWktYW5ndWxhci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL3R1cmJvZ3VpLWFuZ3VsYXIvc3JjL3R1cmJvZ3VpLWFuZ3VsYXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWNfYXBpJztcbiJdfQ==
|