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.
Files changed (74) hide show
  1. package/esm2022/main/controller/browser.service.mjs +48 -48
  2. package/esm2022/main/controller/dialog.service.mjs +327 -324
  3. package/esm2022/main/controller/globalerror.service.mjs +68 -68
  4. package/esm2022/main/controller/http.service.mjs +70 -70
  5. package/esm2022/main/controller/httpservice/HTTPServiceGetRequest.mjs +14 -14
  6. package/esm2022/main/controller/httpservice/HTTPServicePostRequest.mjs +14 -14
  7. package/esm2022/main/controller/localization.service.mjs +22 -22
  8. package/esm2022/main/controller/notification.service.mjs +56 -56
  9. package/esm2022/main/controller/user.service.mjs +124 -124
  10. package/esm2022/main/controller/views.service.mjs +113 -113
  11. package/esm2022/main/managers/DelayedMethodCallManager.mjs +69 -69
  12. package/esm2022/main/model/classes/GUINotification.mjs +31 -31
  13. package/esm2022/main/model/classes/View.mjs +33 -33
  14. package/esm2022/main/model/classes/ViewModel.mjs +13 -13
  15. package/esm2022/main/model/classes/ViewService.mjs +27 -27
  16. package/esm2022/main/model/modules/turbogui-angular.module.mjs +140 -140
  17. package/esm2022/main/view/animations/fade.animation.mjs +35 -35
  18. package/esm2022/main/view/components/busy-state-base/busy-state-base.component.mjs +38 -38
  19. package/esm2022/main/view/components/button-base/button-base.component.mjs +180 -180
  20. package/esm2022/main/view/components/button-container/button-container.component.mjs +34 -34
  21. package/esm2022/main/view/components/button-image/button-image.component.mjs +47 -47
  22. package/esm2022/main/view/components/dialog-base/dialog-base.component.mjs +13 -13
  23. package/esm2022/main/view/components/dialog-error/dialog-error.component.mjs +41 -41
  24. package/esm2022/main/view/components/dialog-multiple-option/dialog-multiple-option.component.mjs +38 -38
  25. package/esm2022/main/view/components/dialog-options-base/dialog-options-base.component.mjs +14 -14
  26. package/esm2022/main/view/components/dialog-single-option/dialog-single-option.component.mjs +41 -41
  27. package/esm2022/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.mjs +112 -112
  28. package/esm2022/main/view/components/dialog-two-option/dialog-two-option.component.mjs +42 -42
  29. package/esm2022/main/view/components/views-container/views-container.component.mjs +70 -70
  30. package/esm2022/main/view/directives/AutoFocusOnDisplayDirective.mjs +39 -39
  31. package/esm2022/main/view/directives/AutoSelectTextOnFocusDirective.mjs +39 -39
  32. package/esm2022/main/view/directives/ElementCreatedDirective.mjs +42 -42
  33. package/esm2022/main/view/directives/ElementDestroyedDirective.mjs +42 -42
  34. package/esm2022/public_api.mjs +43 -43
  35. package/esm2022/turbogui-angular.mjs +4 -4
  36. package/fesm2022/turbogui-angular.mjs +1865 -1862
  37. package/fesm2022/turbogui-angular.mjs.map +1 -1
  38. package/index.d.ts +5 -5
  39. package/main/controller/browser.service.d.ts +29 -29
  40. package/main/controller/dialog.service.d.ts +186 -184
  41. package/main/controller/dialog.service.d.ts.map +1 -1
  42. package/main/controller/globalerror.service.d.ts +54 -54
  43. package/main/controller/http.service.d.ts +37 -37
  44. package/main/controller/httpservice/HTTPServiceGetRequest.d.ts +14 -14
  45. package/main/controller/httpservice/HTTPServicePostRequest.d.ts +14 -14
  46. package/main/controller/localization.service.d.ts +9 -9
  47. package/main/controller/notification.service.d.ts +36 -36
  48. package/main/controller/user.service.d.ts +57 -57
  49. package/main/controller/views.service.d.ts +71 -71
  50. package/main/managers/DelayedMethodCallManager.d.ts +51 -51
  51. package/main/model/classes/GUINotification.d.ts +27 -27
  52. package/main/model/classes/View.d.ts +39 -39
  53. package/main/model/classes/ViewModel.d.ts +13 -13
  54. package/main/model/classes/ViewService.d.ts +26 -26
  55. package/main/model/modules/turbogui-angular.module.d.ts +28 -28
  56. package/main/view/animations/fade.animation.d.ts +16 -16
  57. package/main/view/components/busy-state-base/busy-state-base.component.d.ts +18 -18
  58. package/main/view/components/button-base/button-base.component.d.ts +94 -94
  59. package/main/view/components/button-container/button-container.component.d.ts +13 -13
  60. package/main/view/components/button-image/button-image.component.d.ts +31 -31
  61. package/main/view/components/dialog-base/dialog-base.component.d.ts +13 -13
  62. package/main/view/components/dialog-error/dialog-error.component.d.ts +13 -13
  63. package/main/view/components/dialog-multiple-option/dialog-multiple-option.component.d.ts +13 -13
  64. package/main/view/components/dialog-options-base/dialog-options-base.component.d.ts +14 -14
  65. package/main/view/components/dialog-single-option/dialog-single-option.component.d.ts +13 -13
  66. package/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.d.ts +62 -62
  67. package/main/view/components/dialog-two-option/dialog-two-option.component.d.ts +14 -14
  68. package/main/view/components/views-container/views-container.component.d.ts +45 -45
  69. package/main/view/directives/AutoFocusOnDisplayDirective.d.ts +20 -20
  70. package/main/view/directives/AutoSelectTextOnFocusDirective.d.ts +19 -19
  71. package/main/view/directives/ElementCreatedDirective.d.ts +23 -23
  72. package/main/view/directives/ElementDestroyedDirective.d.ts +23 -23
  73. package/package.json +6 -6
  74. 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": "11.0.2",
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": "^16.2.12",
28
- "@angular/core": "^16.2.12",
29
- "@angular/animations": "^16.2.12",
30
- "@angular/cdk": "^16.2.12",
31
- "@angular/material": "^16.2.12"
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