turbogui-angular 6.0.1 → 7.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/README.md +2 -2
- package/bundles/turbogui-angular.umd.js +309 -77
- package/bundles/turbogui-angular.umd.js.map +1 -1
- package/esm2015/main/controller/browser.service.js +2 -2
- package/esm2015/main/controller/dialog.service.js +11 -2
- package/esm2015/main/controller/globalerror.service.js +2 -2
- package/esm2015/main/controller/http.service.js +4 -4
- package/esm2015/main/controller/httpservice/HTTPServiceGetRequest.js +2 -2
- package/esm2015/main/controller/httpservice/HTTPServicePostRequest.js +2 -2
- package/esm2015/main/controller/localization.service.js +2 -2
- package/esm2015/main/controller/notification.service.js +2 -2
- package/esm2015/main/controller/user.service.js +2 -2
- package/esm2015/main/controller/views.service.js +2 -2
- package/esm2015/main/managers/DelayedMethodCallManager.js +6 -5
- package/esm2015/main/model/classes/GUINotification.js +2 -2
- package/esm2015/main/model/classes/View.js +2 -2
- package/esm2015/main/model/classes/ViewModel.js +2 -2
- package/esm2015/main/model/classes/ViewService.js +2 -2
- package/esm2015/main/model/modules/turbogui-angular.module.js +6 -2
- package/esm2015/main/view/animations/fade.animation.js +2 -2
- package/esm2015/main/view/components/busy-state-base/busy-state-base.component.js +3 -3
- package/esm2015/main/view/components/button-base/button-base.component.js +10 -8
- package/esm2015/main/view/components/button-container/button-container.component.js +3 -3
- package/esm2015/main/view/components/button-image/button-image.component.js +3 -3
- package/esm2015/main/view/components/dialog-base/dialog-base.component.js +2 -2
- package/esm2015/main/view/components/dialog-error/dialog-error.component.js +3 -3
- package/esm2015/main/view/components/dialog-multiple-option/dialog-multiple-option.component.js +3 -3
- package/esm2015/main/view/components/dialog-options-base/dialog-options-base.component.js +2 -2
- package/esm2015/main/view/components/dialog-single-option/dialog-single-option.component.js +3 -3
- package/esm2015/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.js +52 -8
- package/esm2015/main/view/components/dialog-two-option/dialog-two-option.component.js +3 -3
- package/esm2015/main/view/components/views-container/views-container.component.js +2 -2
- package/esm2015/main/view/directives/AutoFocusOnDisplayDirective.js +2 -2
- package/esm2015/main/view/directives/AutoSelectTextOnFocusDirective.js +2 -2
- package/esm2015/main/view/directives/ElementCreatedDirective.js +2 -2
- package/esm2015/main/view/directives/ElementDestroyedDirective.js +2 -2
- package/fesm2015/turbogui-angular.js +117 -57
- package/fesm2015/turbogui-angular.js.map +1 -1
- package/main/controller/browser.service.d.ts +9 -0
- package/main/controller/browser.service.d.ts.map +1 -0
- package/main/controller/browser.service.ngfactory.d.ts.map +1 -0
- package/main/controller/dialog.service.d.ts +16 -0
- package/main/controller/dialog.service.d.ts.map +1 -0
- package/main/controller/dialog.service.ngfactory.d.ts.map +1 -0
- package/main/controller/globalerror.service.d.ts +9 -0
- package/main/controller/globalerror.service.d.ts.map +1 -0
- package/main/controller/globalerror.service.ngfactory.d.ts.map +1 -0
- package/main/controller/http.service.d.ts +11 -2
- package/main/controller/http.service.d.ts.map +1 -0
- package/main/controller/http.service.ngfactory.d.ts.map +1 -0
- package/main/controller/httpservice/HTTPServiceGetRequest.d.ts +9 -0
- package/main/controller/httpservice/HTTPServiceGetRequest.d.ts.map +1 -0
- package/main/controller/httpservice/HTTPServicePostRequest.d.ts +9 -0
- package/main/controller/httpservice/HTTPServicePostRequest.d.ts.map +1 -0
- package/main/controller/localization.service.d.ts +9 -0
- package/main/controller/localization.service.d.ts.map +1 -0
- package/main/controller/localization.service.ngfactory.d.ts.map +1 -0
- package/main/controller/notification.service.d.ts +9 -0
- package/main/controller/notification.service.d.ts.map +1 -0
- package/main/controller/notification.service.ngfactory.d.ts.map +1 -0
- package/main/controller/user.service.d.ts +9 -0
- package/main/controller/user.service.d.ts.map +1 -0
- package/main/controller/user.service.ngfactory.d.ts.map +1 -0
- package/main/controller/views.service.d.ts +9 -0
- package/main/controller/views.service.d.ts.map +1 -0
- package/main/controller/views.service.ngfactory.d.ts.map +1 -0
- package/main/managers/DelayedMethodCallManager.d.ts +13 -3
- package/main/managers/DelayedMethodCallManager.d.ts.map +1 -0
- package/main/model/classes/GUINotification.d.ts +9 -0
- package/main/model/classes/GUINotification.d.ts.map +1 -0
- package/main/model/classes/View.d.ts +9 -0
- package/main/model/classes/View.d.ts.map +1 -0
- package/main/model/classes/ViewModel.d.ts +9 -0
- package/main/model/classes/ViewModel.d.ts.map +1 -0
- package/main/model/classes/ViewService.d.ts +9 -0
- package/main/model/classes/ViewService.d.ts.map +1 -0
- package/main/model/modules/turbogui-angular.module.d.ts +9 -0
- package/main/model/modules/turbogui-angular.module.d.ts.map +1 -0
- package/main/model/modules/turbogui-angular.module.ngfactory.d.ts.map +1 -0
- package/main/view/animations/fade.animation.d.ts +9 -0
- package/main/view/animations/fade.animation.d.ts.map +1 -0
- package/main/view/animations/fade.animation.ngfactory.d.ts.map +1 -0
- package/main/view/components/busy-state-base/busy-state-base.component.d.ts +9 -0
- package/main/view/components/busy-state-base/busy-state-base.component.d.ts.map +1 -0
- package/main/view/components/busy-state-base/busy-state-base.component.ngfactory.d.ts.map +1 -0
- package/main/view/components/busy-state-base/busy-state-base.component.scss.shim.ngstyle.d.ts.map +1 -0
- package/main/view/components/button-base/button-base.component.d.ts +9 -0
- package/main/view/components/button-base/button-base.component.d.ts.map +1 -0
- package/main/view/components/button-container/button-container.component.d.ts +9 -0
- package/main/view/components/button-container/button-container.component.d.ts.map +1 -0
- package/main/view/components/button-container/button-container.component.ngfactory.d.ts.map +1 -0
- package/main/view/components/button-container/button-container.component.scss.shim.ngstyle.d.ts.map +1 -0
- package/main/view/components/button-image/button-image.component.d.ts +9 -0
- package/main/view/components/button-image/button-image.component.d.ts.map +1 -0
- package/main/view/components/button-image/button-image.component.ngfactory.d.ts.map +1 -0
- package/main/view/components/button-image/button-image.component.scss.shim.ngstyle.d.ts.map +1 -0
- package/main/view/components/dialog-base/dialog-base.component.d.ts +9 -0
- package/main/view/components/dialog-base/dialog-base.component.d.ts.map +1 -0
- package/main/view/components/dialog-error/dialog-error.component.d.ts +9 -0
- package/main/view/components/dialog-error/dialog-error.component.d.ts.map +1 -0
- package/main/view/components/dialog-error/dialog-error.component.ngfactory.d.ts.map +1 -0
- package/main/view/components/dialog-error/dialog-error.component.scss.shim.ngstyle.d.ts.map +1 -0
- package/main/view/components/dialog-multiple-option/dialog-multiple-option.component.d.ts +9 -0
- package/main/view/components/dialog-multiple-option/dialog-multiple-option.component.d.ts.map +1 -0
- package/main/view/components/dialog-multiple-option/dialog-multiple-option.component.ngfactory.d.ts.map +1 -0
- package/main/view/components/dialog-multiple-option/dialog-multiple-option.component.scss.shim.ngstyle.d.ts.map +1 -0
- package/main/view/components/dialog-options-base/dialog-options-base.component.d.ts +9 -0
- package/main/view/components/dialog-options-base/dialog-options-base.component.d.ts.map +1 -0
- package/main/view/components/dialog-single-option/dialog-single-option.component.d.ts +9 -0
- package/main/view/components/dialog-single-option/dialog-single-option.component.d.ts.map +1 -0
- package/main/view/components/dialog-single-option/dialog-single-option.component.ngfactory.d.ts.map +1 -0
- package/main/view/components/dialog-single-option/dialog-single-option.component.scss.shim.ngstyle.d.ts.map +1 -0
- package/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.d.ts +39 -3
- package/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.d.ts.map +1 -0
- package/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.ngfactory.d.ts.map +1 -0
- package/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.scss.shim.ngstyle.d.ts.map +1 -0
- package/main/view/components/dialog-two-option/dialog-two-option.component.d.ts +9 -0
- package/main/view/components/dialog-two-option/dialog-two-option.component.d.ts.map +1 -0
- package/main/view/components/dialog-two-option/dialog-two-option.component.ngfactory.d.ts.map +1 -0
- package/main/view/components/dialog-two-option/dialog-two-option.component.scss.shim.ngstyle.d.ts.map +1 -0
- package/main/view/components/views-container/views-container.component.d.ts +9 -0
- package/main/view/components/views-container/views-container.component.d.ts.map +1 -0
- package/main/view/components/views-container/views-container.component.ngfactory.d.ts.map +1 -0
- package/main/view/components/views-container/views-container.component.scss.shim.ngstyle.d.ts.map +1 -0
- package/main/view/directives/AutoFocusOnDisplayDirective.d.ts +9 -0
- package/main/view/directives/AutoFocusOnDisplayDirective.d.ts.map +1 -0
- package/main/view/directives/AutoFocusOnDisplayDirective.ngfactory.d.ts.map +1 -0
- package/main/view/directives/AutoSelectTextOnFocusDirective.d.ts +9 -0
- package/main/view/directives/AutoSelectTextOnFocusDirective.d.ts.map +1 -0
- package/main/view/directives/AutoSelectTextOnFocusDirective.ngfactory.d.ts.map +1 -0
- package/main/view/directives/ElementCreatedDirective.d.ts +9 -0
- package/main/view/directives/ElementCreatedDirective.d.ts.map +1 -0
- package/main/view/directives/ElementCreatedDirective.ngfactory.d.ts.map +1 -0
- package/main/view/directives/ElementDestroyedDirective.d.ts +9 -0
- package/main/view/directives/ElementDestroyedDirective.d.ts.map +1 -0
- package/main/view/directives/ElementDestroyedDirective.ngfactory.d.ts.map +1 -0
- package/package.json +8 -8
- package/public_api.d.ts +1 -0
- package/public_api.d.ts.map +1 -0
- package/turbogui-angular.d.ts +1 -0
- package/turbogui-angular.d.ts.map +1 -0
- package/turbogui-angular.metadata.json +1 -1
- package/bundles/turbogui-angular.umd.min.js +0 -17
- package/bundles/turbogui-angular.umd.min.js.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog-error.component.ngfactory.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-error/dialog-error.component.ngfactory.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog-error.component.scss.shim.ngstyle.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-error/dialog-error.component.scss.shim.ngstyle.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +1,11 @@
|
|
|
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
|
+
*/
|
|
1
9
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
10
|
import { DialogOptionsBaseComponent } from '../dialog-options-base/dialog-options-base.component';
|
|
3
11
|
/**
|
|
@@ -8,3 +16,4 @@ export declare class DialogMultipleOptionComponent extends DialogOptionsBaseComp
|
|
|
8
16
|
data: any;
|
|
9
17
|
constructor(dialogRef: MatDialogRef<DialogOptionsBaseComponent>, data: any);
|
|
10
18
|
}
|
|
19
|
+
//# sourceMappingURL=dialog-multiple-option.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog-multiple-option.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-multiple-option/dialog-multiple-option.component.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,EAAE,YAAY,EAAmB,MAAM,0BAA0B,CAAC;AACzE,OAAO,EAAE,0BAA0B,EAAE,MAAM,sDAAsD,CAAC;AAGlG;;GAEG;AACH,qBAOa,6BAA8B,SAAQ,0BAA0B;IAEtD,SAAS,EAAE,YAAY,CAAC,0BAA0B,CAAC;IAAkC,IAAI,EAAE,GAAG;gBAA9F,SAAS,EAAE,YAAY,CAAC,0BAA0B,CAAC,EAAkC,IAAI,EAAE,GAAG;CASpH"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog-multiple-option.component.ngfactory.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-multiple-option/dialog-multiple-option.component.ngfactory.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog-multiple-option.component.scss.shim.ngstyle.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-multiple-option/dialog-multiple-option.component.scss.shim.ngstyle.ts"],"names":[],"mappings":""}
|
|
@@ -1,6 +1,15 @@
|
|
|
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
|
+
*/
|
|
1
9
|
import { DialogBaseComponent } from '../dialog-base/dialog-base.component';
|
|
2
10
|
/**
|
|
3
11
|
* This is the base class for all the dialog components that show one or more options for the user to select
|
|
4
12
|
*/
|
|
5
13
|
export declare abstract class DialogOptionsBaseComponent extends DialogBaseComponent {
|
|
6
14
|
}
|
|
15
|
+
//# sourceMappingURL=dialog-options-base.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog-options-base.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-options-base/dialog-options-base.component.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AAG3E;;GAEG;AAEH,8BAAsB,0BAA2B,SAAQ,mBAAmB;CAE3E"}
|
|
@@ -1,3 +1,11 @@
|
|
|
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
|
+
*/
|
|
1
9
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
10
|
import { DialogOptionsBaseComponent } from '../dialog-options-base/dialog-options-base.component';
|
|
3
11
|
/**
|
|
@@ -8,3 +16,4 @@ export declare class DialogSingleOptionComponent extends DialogOptionsBaseCompon
|
|
|
8
16
|
data: any;
|
|
9
17
|
constructor(dialogRef: MatDialogRef<DialogOptionsBaseComponent>, data: any);
|
|
10
18
|
}
|
|
19
|
+
//# sourceMappingURL=dialog-single-option.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog-single-option.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-single-option/dialog-single-option.component.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,EAAE,YAAY,EAAmB,MAAM,0BAA0B,CAAC;AACzE,OAAO,EAAE,0BAA0B,EAAE,MAAM,sDAAsD,CAAC;AAGlG;;GAEG;AACH,qBAOa,2BAA4B,SAAQ,0BAA0B;IAEpD,SAAS,EAAE,YAAY,CAAC,0BAA0B,CAAC;IAAkC,IAAI,EAAE,GAAG;gBAA9F,SAAS,EAAE,YAAY,CAAC,0BAA0B,CAAC,EAAkC,IAAI,EAAE,GAAG;CAcpH"}
|
package/main/view/components/dialog-single-option/dialog-single-option.component.ngfactory.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog-single-option.component.ngfactory.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-single-option/dialog-single-option.component.ngfactory.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog-single-option.component.scss.shim.ngstyle.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-single-option/dialog-single-option.component.scss.shim.ngstyle.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +1,11 @@
|
|
|
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
|
+
*/
|
|
1
9
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
10
|
import { DialogOptionsBaseComponent } from '../dialog-options-base/dialog-options-base.component';
|
|
3
11
|
import { BrowserService } from '../../../controller/browser.service';
|
|
@@ -6,9 +14,11 @@ import { StringUtils } from 'turbocommons-ts';
|
|
|
6
14
|
* A dialog component which allows us to select one single item from a list. The elements on that list are displayed on a table
|
|
7
15
|
* which may show a scroll if necessary when there are many elements on the list.
|
|
8
16
|
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
17
|
+
* It also allows us to filter inside the list with a custom text that we can type into a search input, which is optional.
|
|
18
|
+
*
|
|
19
|
+
* texts parameter must contain the title, the description (optional), the filter input title (optional), and the submit button caption.
|
|
20
|
+
* If that caption is not provided, the selection will be automatically performed once user clicks on an element on the list. Otherwise,
|
|
21
|
+
* the element will be selected on the list and the selection will be performed once the user clicks on the submit button.
|
|
12
22
|
*
|
|
13
23
|
* options parameter must contain the list of elements that will be displayed to the user
|
|
14
24
|
*/
|
|
@@ -20,6 +30,21 @@ export declare class DialogSingleSelectionListComponent extends DialogOptionsBas
|
|
|
20
30
|
* Declare a reference to the string utils class so it can be used on the html part
|
|
21
31
|
*/
|
|
22
32
|
stringUtils: typeof StringUtils;
|
|
33
|
+
/**
|
|
34
|
+
* Contains the list of elements that will be directly shown to the user at the component list.
|
|
35
|
+
* It may be filtered or not depending on this component setup and the user input
|
|
36
|
+
*/
|
|
37
|
+
filteredOptions: string[];
|
|
38
|
+
/**
|
|
39
|
+
* Contains the original list of elements that are provided to be listed on this component before
|
|
40
|
+
* being possibly filtered. It is only used as a backup, not shown to the user
|
|
41
|
+
*/
|
|
42
|
+
private originalOptions;
|
|
43
|
+
/**
|
|
44
|
+
* The same list as the originally provided but processed for a better text search.
|
|
45
|
+
* It will be used to perform the search, but not shown to the user.
|
|
46
|
+
*/
|
|
47
|
+
private originalOptionsFullTextSearch;
|
|
23
48
|
/**
|
|
24
49
|
* Stores the index for the element that's been selected by the user
|
|
25
50
|
*/
|
|
@@ -29,4 +54,15 @@ export declare class DialogSingleSelectionListComponent extends DialogOptionsBas
|
|
|
29
54
|
* Method to calculate the max possible height that the list items container is allowed to have
|
|
30
55
|
*/
|
|
31
56
|
getListItemsContainerMaxheight(): string;
|
|
57
|
+
/**
|
|
58
|
+
* When the user types a value on the input element to filter the list, this method will perform
|
|
59
|
+
* that filtering and refresh the list
|
|
60
|
+
*/
|
|
61
|
+
onSearchChange(input: HTMLInputElement): void;
|
|
62
|
+
/**
|
|
63
|
+
* This method is used to greatly improve ngFor performance with arrays of primitive values. It tells the refresh
|
|
64
|
+
* function to work by index instead of by value. The change in performance when refreshing the list is massive.
|
|
65
|
+
*/
|
|
66
|
+
trackByFn: (index: number, _value: string) => number;
|
|
32
67
|
}
|
|
68
|
+
//# sourceMappingURL=dialog-single-selection-list.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog-single-selection-list.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,EAAE,YAAY,EAAmB,MAAM,0BAA0B,CAAC;AACzE,OAAO,EAAE,0BAA0B,EAAE,MAAM,sDAAsD,CAAC;AAClG,OAAO,EAAE,cAAc,EAAE,MAAM,qCAAqC,CAAC;AACrE,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAG9C;;;;;;;;;;;GAWG;AACH,qBAOa,kCAAmC,SAAQ,0BAA0B;IAmC3D,SAAS,EAAE,YAAY,CAAC,0BAA0B,CAAC;IACnD,cAAc,EAAE,cAAc;IACL,IAAI,EAAE,GAAG;IAlCrD;;OAEG;IACH,WAAW,qBAAe;IAE1B;;;OAGG;IACH,eAAe,EAAC,MAAM,EAAE,CAAM;IAG9B;;;OAGG;IACH,OAAO,CAAC,eAAe,CAAe;IAGtC;;;OAGG;IACH,OAAO,CAAC,6BAA6B,CAAe;IAGpD;;OAEG;IACH,iBAAiB,SAAM;gBAGJ,SAAS,EAAE,YAAY,CAAC,0BAA0B,CAAC,EACnD,cAAc,EAAE,cAAc,EACL,IAAI,EAAE,GAAG;IAwBrD;;OAEG;IACH,8BAA8B;IAM9B;;;OAGG;IACH,cAAc,CAAC,KAAK,EAAC,gBAAgB;IAoBrC;;;OAGG;IACH,SAAS,UAAW,MAAM,UAAU,MAAM,YAAW;CACxD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog-single-selection-list.component.ngfactory.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.ngfactory.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog-single-selection-list.component.scss.shim.ngstyle.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.scss.shim.ngstyle.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +1,11 @@
|
|
|
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
|
+
*/
|
|
1
9
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
10
|
import { DialogOptionsBaseComponent } from '../dialog-options-base/dialog-options-base.component';
|
|
3
11
|
/**
|
|
@@ -9,3 +17,4 @@ export declare class DialogTwoOptionComponent extends DialogOptionsBaseComponent
|
|
|
9
17
|
data: any;
|
|
10
18
|
constructor(dialogRef: MatDialogRef<DialogOptionsBaseComponent>, data: any);
|
|
11
19
|
}
|
|
20
|
+
//# sourceMappingURL=dialog-two-option.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog-two-option.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-two-option/dialog-two-option.component.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,EAAE,YAAY,EAAmB,MAAM,0BAA0B,CAAC;AACzE,OAAO,EAAE,0BAA0B,EAAE,MAAM,sDAAsD,CAAC;AAGlG;;;GAGG;AACH,qBAOa,wBAAyB,SAAQ,0BAA0B;IAEjD,SAAS,EAAE,YAAY,CAAC,0BAA0B,CAAC;IAAkC,IAAI,EAAE,GAAG;gBAA9F,SAAS,EAAE,YAAY,CAAC,0BAA0B,CAAC,EAAkC,IAAI,EAAE,GAAG;CAcpH"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog-two-option.component.ngfactory.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-two-option/dialog-two-option.component.ngfactory.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dialog-two-option.component.scss.shim.ngstyle.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-two-option/dialog-two-option.component.scss.shim.ngstyle.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +1,11 @@
|
|
|
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
|
+
*/
|
|
1
9
|
import { ViewContainerRef, OnInit, Type, OnDestroy } from '@angular/core';
|
|
2
10
|
import { ViewsService } from '../../../controller/views.service';
|
|
3
11
|
import { View } from '../../../model/classes/View';
|
|
@@ -32,3 +40,4 @@ export declare class ViewsContainerComponent implements OnInit, OnDestroy {
|
|
|
32
40
|
*/
|
|
33
41
|
ngOnDestroy(): void;
|
|
34
42
|
}
|
|
43
|
+
//# sourceMappingURL=views-container.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"views-container.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/views-container/views-container.component.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAa,gBAAgB,EAAoB,MAAM,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AACvG,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjE,OAAO,EAAE,IAAI,EAAE,MAAM,6BAA6B,CAAC;AAGnD;;;;;;GAMG;AACH,qBAOa,uBAAwB,YAAW,MAAM,EAAE,SAAS;IAG7D;;;OAGG;IACM,WAAW,EAAE,IAAI,CAAC,IAAI,CAAC,GAAG,IAAI,CAAQ;IAG/C;;;OAGG;IACM,YAAY,EAAE,YAAY,GAAG,IAAI,CAAQ;IAGlD;;OAEG;IACsE,gBAAgB,EAAE,gBAAgB,CAAC;IAG5G;;OAEG;IACH,QAAQ;IAmBR;;OAEG;IACH,WAAW;CAQd"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"views-container.component.ngfactory.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/views-container/views-container.component.ngfactory.ts"],"names":[],"mappings":""}
|
package/main/view/components/views-container/views-container.component.scss.shim.ngstyle.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"views-container.component.scss.shim.ngstyle.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/views-container/views-container.component.scss.shim.ngstyle.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +1,11 @@
|
|
|
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
|
+
*/
|
|
1
9
|
import { ElementRef, NgZone, Renderer2, AfterContentInit } from '@angular/core';
|
|
2
10
|
/** This directive is used to perform an autofocus on an element every time it is displayed */
|
|
3
11
|
export declare class AutoFocusOnDisplayDirective implements AfterContentInit {
|
|
@@ -7,3 +15,4 @@ export declare class AutoFocusOnDisplayDirective implements AfterContentInit {
|
|
|
7
15
|
constructor(el: ElementRef, zone: NgZone, renderer: Renderer2);
|
|
8
16
|
ngAfterContentInit(): void;
|
|
9
17
|
}
|
|
18
|
+
//# sourceMappingURL=AutoFocusOnDisplayDirective.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AutoFocusOnDisplayDirective.d.ts","sourceRoot":"","sources":["../../../../../projects/turbogui-angular/src/main/view/directives/AutoFocusOnDisplayDirective.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAa,UAAU,EAAE,MAAM,EAAE,SAAS,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAG3F,8FAA8F;AAC9F,qBASa,2BAA4B,YAAW,gBAAgB;IAGpD,OAAO,CAAC,EAAE;IAAc,OAAO,CAAC,IAAI;IAAU,OAAO,CAAC,QAAQ;gBAAtD,EAAE,EAAE,UAAU,EAAU,IAAI,EAAE,MAAM,EAAU,QAAQ,EAAE,SAAS;IAQrF,kBAAkB;CAQrB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AutoFocusOnDisplayDirective.ngfactory.d.ts","sourceRoot":"","sources":["../../../../../projects/turbogui-angular/src/main/view/directives/AutoFocusOnDisplayDirective.ngfactory.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +1,11 @@
|
|
|
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
|
+
*/
|
|
1
9
|
import { ElementRef, Renderer2 } from '@angular/core';
|
|
2
10
|
/** This directive is used to perform an automatic select all text on an element every time it is focused */
|
|
3
11
|
export declare class AutoSelectTextOnFocusDirective {
|
|
@@ -6,3 +14,4 @@ export declare class AutoSelectTextOnFocusDirective {
|
|
|
6
14
|
constructor(el: ElementRef, renderer: Renderer2);
|
|
7
15
|
onFocus(): void;
|
|
8
16
|
}
|
|
17
|
+
//# sourceMappingURL=AutoSelectTextOnFocusDirective.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AutoSelectTextOnFocusDirective.d.ts","sourceRoot":"","sources":["../../../../../projects/turbogui-angular/src/main/view/directives/AutoSelectTextOnFocusDirective.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAa,UAAU,EAAE,SAAS,EAAgB,MAAM,eAAe,CAAC;AAG/E,4GAA4G;AAC5G,qBASa,8BAA8B;IAG3B,OAAO,CAAC,EAAE;IAAc,OAAO,CAAC,QAAQ;gBAAhC,EAAE,EAAE,UAAU,EAAU,QAAQ,EAAE,SAAS;IAS5B,OAAO;CAI7C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AutoSelectTextOnFocusDirective.ngfactory.d.ts","sourceRoot":"","sources":["../../../../../projects/turbogui-angular/src/main/view/directives/AutoSelectTextOnFocusDirective.ngfactory.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +1,11 @@
|
|
|
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
|
+
*/
|
|
1
9
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
10
|
/** This directive is used to listen for onInit events on raw html elements */
|
|
3
11
|
export declare class ElementCreatedDirective implements OnInit {
|
|
@@ -10,3 +18,4 @@ export declare class ElementCreatedDirective implements OnInit {
|
|
|
10
18
|
*/
|
|
11
19
|
ngOnInit(): void;
|
|
12
20
|
}
|
|
21
|
+
//# sourceMappingURL=ElementCreatedDirective.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ElementCreatedDirective.d.ts","sourceRoot":"","sources":["../../../../../projects/turbogui-angular/src/main/view/directives/ElementCreatedDirective.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAa,YAAY,EAAU,MAAM,EAAE,MAAM,eAAe,CAAC;AAGxE,8EAA8E;AAC9E,qBAUa,uBAAwB,YAAW,MAAM;IAGlD;;OAEG;IAEI,cAAc,EAAE,YAAY,CAAC,uBAAuB,CAAC,CAAsB;IAGlF;;OAEG;IACH,QAAQ;CAKX"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ElementCreatedDirective.ngfactory.d.ts","sourceRoot":"","sources":["../../../../../projects/turbogui-angular/src/main/view/directives/ElementCreatedDirective.ngfactory.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +1,11 @@
|
|
|
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
|
+
*/
|
|
1
9
|
import { OnDestroy, EventEmitter } from '@angular/core';
|
|
2
10
|
/** This directive is used to listen for onDestroy events on raw html elements */
|
|
3
11
|
export declare class ElementDestroyedDirective implements OnDestroy {
|
|
@@ -10,3 +18,4 @@ export declare class ElementDestroyedDirective implements OnDestroy {
|
|
|
10
18
|
*/
|
|
11
19
|
ngOnDestroy(): void;
|
|
12
20
|
}
|
|
21
|
+
//# sourceMappingURL=ElementDestroyedDirective.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ElementDestroyedDirective.d.ts","sourceRoot":"","sources":["../../../../../projects/turbogui-angular/src/main/view/directives/ElementDestroyedDirective.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAa,SAAS,EAAE,YAAY,EAAU,MAAM,eAAe,CAAC;AAG3E,iFAAiF;AACjF,qBAUa,yBAA0B,YAAW,SAAS;IAGvD;;OAEG;IAEI,gBAAgB,EAAE,YAAY,CAAC,yBAAyB,CAAC,CAAsB;IAGtF;;OAEG;IACH,WAAW;CAKd"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ElementDestroyedDirective.ngfactory.d.ts","sourceRoot":"","sources":["../../../../../projects/turbogui-angular/src/main/view/directives/ElementDestroyedDirective.ngfactory.ts"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "turbogui-angular",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "A library that tries to help with the most common user interface elements on several frameworks and platforms",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"homepage": "https://turbogui.org",
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"tslib": "^2.0.0",
|
|
24
|
-
"turbocommons-ts": "^3.
|
|
24
|
+
"turbocommons-ts": "^3.9.0"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@angular/common": "~
|
|
28
|
-
"@angular/core": "~
|
|
29
|
-
"@angular/animations": "^
|
|
30
|
-
"@angular/cdk": "^
|
|
31
|
-
"@angular/material": "^
|
|
27
|
+
"@angular/common": "~12.2.17",
|
|
28
|
+
"@angular/core": "~12.2.17",
|
|
29
|
+
"@angular/animations": "^12.2.17",
|
|
30
|
+
"@angular/cdk": "^12.2.13",
|
|
31
|
+
"@angular/material": "^12.2.13"
|
|
32
32
|
},
|
|
33
33
|
"main": "bundles/turbogui-angular.umd.js",
|
|
34
34
|
"module": "fesm2015/turbogui-angular.js",
|
|
@@ -38,4 +38,4 @@
|
|
|
38
38
|
"typings": "turbogui-angular.d.ts",
|
|
39
39
|
"metadata": "turbogui-angular.metadata.json",
|
|
40
40
|
"sideEffects": false
|
|
41
|
-
}
|
|
41
|
+
}
|
package/public_api.d.ts
CHANGED
|
@@ -38,3 +38,4 @@ export { ElementCreatedDirective } from './main/view/directives/ElementCreatedDi
|
|
|
38
38
|
export { ElementDestroyedDirective } from './main/view/directives/ElementDestroyedDirective';
|
|
39
39
|
export { AutoFocusOnDisplayDirective } from './main/view/directives/AutoFocusOnDisplayDirective';
|
|
40
40
|
export { AutoSelectTextOnFocusDirective } from './main/view/directives/AutoSelectTextOnFocusDirective';
|
|
41
|
+
//# sourceMappingURL=public_api.d.ts.map
|
|
@@ -0,0 +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,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,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,aAAa,EAAE,MAAM,kCAAkC,CAAC;AACjE,OAAO,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAC7D,OAAO,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AAC/D,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;AAGnE;;GAEG;AACH,OAAO,EAAE,sBAAsB,EAAE,MAAM,kEAAkE,CAAC;AAC1G,OAAO,EAAE,0BAA0B,EAAE,MAAM,0EAA0E,CAAC;AACtH,OAAO,EAAE,oBAAoB,EAAE,MAAM,4DAA4D,CAAC;AAClG,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,uBAAuB,EAAE,MAAM,kEAAkE,CAAC;AAC3G,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,IAAI,EAAE,MAAM,2BAA2B,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAC3D,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,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"}
|
package/turbogui-angular.d.ts
CHANGED
|
@@ -4,3 +4,4 @@
|
|
|
4
4
|
export * from './public_api';
|
|
5
5
|
export { ButtonBaseComponent as ɵb } from './main/view/components/button-base/button-base.component';
|
|
6
6
|
export { DialogBaseComponent as ɵa } from './main/view/components/dialog-base/dialog-base.component';
|
|
7
|
+
//# sourceMappingURL=turbogui-angular.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"turbogui-angular.d.ts","sourceRoot":"","sources":["../../projects/turbogui-angular/src/turbogui-angular.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,cAAc,cAAc,CAAC;AAE7B,OAAO,EAAC,mBAAmB,IAAI,EAAE,EAAC,MAAM,0DAA0D,CAAC;AACnG,OAAO,EAAC,mBAAmB,IAAI,EAAE,EAAC,MAAM,0DAA0D,CAAC"}
|