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,24 +1,24 @@
|
|
|
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 { OnDestroy, EventEmitter } 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
|
-
export declare class ElementDestroyedDirective implements OnDestroy {
|
|
13
|
-
/**
|
|
14
|
-
* Event that will be dispatched once element is destroyed
|
|
15
|
-
*/
|
|
16
|
-
elementDestroyed: EventEmitter<ElementDestroyedDirective>;
|
|
17
|
-
/**
|
|
18
|
-
* Listen for the on destroy event
|
|
19
|
-
*/
|
|
20
|
-
ngOnDestroy(): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ElementDestroyedDirective, never>;
|
|
22
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ElementDestroyedDirective, "[elementDestroyed]", never, {}, { "elementDestroyed": "elementDestroyed"; }, never, never, false, never>;
|
|
23
|
-
}
|
|
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 { OnDestroy, EventEmitter } 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
|
+
export declare class ElementDestroyedDirective implements OnDestroy {
|
|
13
|
+
/**
|
|
14
|
+
* Event that will be dispatched once element is destroyed
|
|
15
|
+
*/
|
|
16
|
+
elementDestroyed: EventEmitter<ElementDestroyedDirective>;
|
|
17
|
+
/**
|
|
18
|
+
* Listen for the on destroy event
|
|
19
|
+
*/
|
|
20
|
+
ngOnDestroy(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElementDestroyedDirective, never>;
|
|
22
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ElementDestroyedDirective, "[elementDestroyed]", never, {}, { "elementDestroyed": "elementDestroyed"; }, never, never, false, never>;
|
|
23
|
+
}
|
|
24
24
|
//# sourceMappingURL=ElementDestroyedDirective.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "turbogui-angular",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.1.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",
|
|
@@ -24,11 +24,11 @@
|
|
|
24
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": "^17.0.8",
|
|
28
|
+
"@angular/core": "^17.0.8",
|
|
29
|
+
"@angular/animations": "^17.0.8",
|
|
30
|
+
"@angular/cdk": "^17.0.4",
|
|
31
|
+
"@angular/material": "^17.0.4"
|
|
32
32
|
},
|
|
33
33
|
"module": "fesm2022/turbogui-angular.mjs",
|
|
34
34
|
"typings": "index.d.ts",
|
package/public_api.d.ts
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
export { TurboGuiAngularModule } from './main/model/modules/turbogui-angular.module';
|
|
2
|
-
/**
|
|
3
|
-
* Services
|
|
4
|
-
*/
|
|
5
|
-
export { NotificationService } from './main/controller/notification.service';
|
|
6
|
-
export { GlobalErrorService } from './main/controller/globalerror.service';
|
|
7
|
-
export { LocalizationService } from './main/controller/localization.service';
|
|
8
|
-
export { HTTPService } from './main/controller/http.service';
|
|
9
|
-
export { HTTPServiceGetRequest } from './main/controller/httpservice/HTTPServiceGetRequest';
|
|
10
|
-
export { HTTPServicePostRequest } from './main/controller/httpservice/HTTPServicePostRequest';
|
|
11
|
-
export { DialogService } from './main/controller/dialog.service';
|
|
12
|
-
export { UserService } from './main/controller/user.service';
|
|
13
|
-
export { ViewsService } from './main/controller/views.service';
|
|
14
|
-
export { BrowserService } from './main/controller/browser.service';
|
|
15
|
-
/**
|
|
16
|
-
* Components
|
|
17
|
-
*/
|
|
18
|
-
export { BusyStateBaseComponent } from './main/view/components/busy-state-base/busy-state-base.component';
|
|
19
|
-
export { DialogOptionsBaseComponent } from './main/view/components/dialog-options-base/dialog-options-base.component';
|
|
20
|
-
export { DialogErrorComponent } from './main/view/components/dialog-error/dialog-error.component';
|
|
21
|
-
export { DialogSingleOptionComponent } from './main/view/components/dialog-single-option/dialog-single-option.component';
|
|
22
|
-
export { DialogTwoOptionComponent } from './main/view/components/dialog-two-option/dialog-two-option.component';
|
|
23
|
-
export { DialogMultipleOptionComponent } from './main/view/components/dialog-multiple-option/dialog-multiple-option.component';
|
|
24
|
-
export { DialogSingleSelectionListComponent } from './main/view/components/dialog-single-selection-list/dialog-single-selection-list.component';
|
|
25
|
-
export { ViewsContainerComponent } from './main/view/components/views-container/views-container.component';
|
|
26
|
-
export { ButtonImageComponent } from './main/view/components/button-image/button-image.component';
|
|
27
|
-
export { ButtonContainerComponent } from './main/view/components/button-container/button-container.component';
|
|
28
|
-
/**
|
|
29
|
-
* Classes
|
|
30
|
-
*/
|
|
31
|
-
export { GUINotification } from './main/model/classes/GUINotification';
|
|
32
|
-
export { View } from './main/model/classes/View';
|
|
33
|
-
export { ViewModel } from './main/model/classes/ViewModel';
|
|
34
|
-
export { ViewService } from './main/model/classes/ViewService';
|
|
35
|
-
export { DelayedMethodCallManager } from './main/managers/DelayedMethodCallManager';
|
|
36
|
-
export { FadeAnimationClass } from './main/view/animations/fade.animation';
|
|
37
|
-
export { ElementCreatedDirective } from './main/view/directives/ElementCreatedDirective';
|
|
38
|
-
export { ElementDestroyedDirective } from './main/view/directives/ElementDestroyedDirective';
|
|
39
|
-
export { AutoFocusOnDisplayDirective } from './main/view/directives/AutoFocusOnDisplayDirective';
|
|
40
|
-
export { AutoSelectTextOnFocusDirective } from './main/view/directives/AutoSelectTextOnFocusDirective';
|
|
1
|
+
export { TurboGuiAngularModule } from './main/model/modules/turbogui-angular.module';
|
|
2
|
+
/**
|
|
3
|
+
* Services
|
|
4
|
+
*/
|
|
5
|
+
export { NotificationService } from './main/controller/notification.service';
|
|
6
|
+
export { GlobalErrorService } from './main/controller/globalerror.service';
|
|
7
|
+
export { LocalizationService } from './main/controller/localization.service';
|
|
8
|
+
export { HTTPService } from './main/controller/http.service';
|
|
9
|
+
export { HTTPServiceGetRequest } from './main/controller/httpservice/HTTPServiceGetRequest';
|
|
10
|
+
export { HTTPServicePostRequest } from './main/controller/httpservice/HTTPServicePostRequest';
|
|
11
|
+
export { DialogService } from './main/controller/dialog.service';
|
|
12
|
+
export { UserService } from './main/controller/user.service';
|
|
13
|
+
export { ViewsService } from './main/controller/views.service';
|
|
14
|
+
export { BrowserService } from './main/controller/browser.service';
|
|
15
|
+
/**
|
|
16
|
+
* Components
|
|
17
|
+
*/
|
|
18
|
+
export { BusyStateBaseComponent } from './main/view/components/busy-state-base/busy-state-base.component';
|
|
19
|
+
export { DialogOptionsBaseComponent } from './main/view/components/dialog-options-base/dialog-options-base.component';
|
|
20
|
+
export { DialogErrorComponent } from './main/view/components/dialog-error/dialog-error.component';
|
|
21
|
+
export { DialogSingleOptionComponent } from './main/view/components/dialog-single-option/dialog-single-option.component';
|
|
22
|
+
export { DialogTwoOptionComponent } from './main/view/components/dialog-two-option/dialog-two-option.component';
|
|
23
|
+
export { DialogMultipleOptionComponent } from './main/view/components/dialog-multiple-option/dialog-multiple-option.component';
|
|
24
|
+
export { DialogSingleSelectionListComponent } from './main/view/components/dialog-single-selection-list/dialog-single-selection-list.component';
|
|
25
|
+
export { ViewsContainerComponent } from './main/view/components/views-container/views-container.component';
|
|
26
|
+
export { ButtonImageComponent } from './main/view/components/button-image/button-image.component';
|
|
27
|
+
export { ButtonContainerComponent } from './main/view/components/button-container/button-container.component';
|
|
28
|
+
/**
|
|
29
|
+
* Classes
|
|
30
|
+
*/
|
|
31
|
+
export { GUINotification } from './main/model/classes/GUINotification';
|
|
32
|
+
export { View } from './main/model/classes/View';
|
|
33
|
+
export { ViewModel } from './main/model/classes/ViewModel';
|
|
34
|
+
export { ViewService } from './main/model/classes/ViewService';
|
|
35
|
+
export { DelayedMethodCallManager } from './main/managers/DelayedMethodCallManager';
|
|
36
|
+
export { FadeAnimationClass } from './main/view/animations/fade.animation';
|
|
37
|
+
export { ElementCreatedDirective } from './main/view/directives/ElementCreatedDirective';
|
|
38
|
+
export { ElementDestroyedDirective } from './main/view/directives/ElementDestroyedDirective';
|
|
39
|
+
export { AutoFocusOnDisplayDirective } from './main/view/directives/AutoFocusOnDisplayDirective';
|
|
40
|
+
export { AutoSelectTextOnFocusDirective } from './main/view/directives/AutoSelectTextOnFocusDirective';
|
|
41
41
|
//# sourceMappingURL=public_api.d.ts.map
|