turbogui-angular 7.0.0 → 8.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.
Files changed (150) hide show
  1. package/esm2020/main/controller/browser.service.mjs +48 -0
  2. package/esm2020/main/controller/dialog.service.mjs +324 -0
  3. package/esm2020/main/controller/globalerror.service.mjs +68 -0
  4. package/esm2020/main/controller/http.service.mjs +70 -0
  5. package/esm2020/main/controller/localization.service.mjs +22 -0
  6. package/esm2020/main/controller/notification.service.mjs +56 -0
  7. package/esm2020/main/controller/user.service.mjs +124 -0
  8. package/esm2020/main/controller/views.service.mjs +113 -0
  9. package/esm2020/main/model/modules/turbogui-angular.module.mjs +142 -0
  10. package/esm2020/main/view/animations/fade.animation.mjs +35 -0
  11. package/esm2020/main/view/components/busy-state-base/busy-state-base.component.mjs +38 -0
  12. package/esm2020/main/view/components/button-base/button-base.component.mjs +180 -0
  13. package/esm2020/main/view/components/button-container/button-container.component.mjs +34 -0
  14. package/esm2020/main/view/components/button-image/button-image.component.mjs +47 -0
  15. package/esm2020/main/view/components/dialog-error/dialog-error.component.mjs +41 -0
  16. package/esm2020/main/view/components/dialog-multiple-option/dialog-multiple-option.component.mjs +38 -0
  17. package/esm2020/main/view/components/dialog-single-option/dialog-single-option.component.mjs +41 -0
  18. package/esm2020/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.mjs +112 -0
  19. package/esm2020/main/view/components/dialog-two-option/dialog-two-option.component.mjs +42 -0
  20. package/{esm2015/main/view/components/views-container/views-container.component.js → esm2020/main/view/components/views-container/views-container.component.mjs} +15 -13
  21. package/esm2020/main/view/directives/AutoFocusOnDisplayDirective.mjs +39 -0
  22. package/esm2020/main/view/directives/AutoSelectTextOnFocusDirective.mjs +39 -0
  23. package/esm2020/main/view/directives/ElementCreatedDirective.mjs +42 -0
  24. package/esm2020/main/view/directives/ElementDestroyedDirective.mjs +42 -0
  25. package/{esm2015/public_api.js → esm2020/public_api.mjs} +1 -1
  26. package/esm2020/turbogui-angular.mjs +5 -0
  27. package/fesm2015/turbogui-angular.mjs +1953 -0
  28. package/fesm2015/turbogui-angular.mjs.map +1 -0
  29. package/{fesm2015/turbogui-angular.js → fesm2020/turbogui-angular.mjs} +368 -298
  30. package/fesm2020/turbogui-angular.mjs.map +1 -0
  31. package/main/controller/browser.service.d.ts +3 -8
  32. package/main/controller/browser.service.d.ts.map +1 -1
  33. package/main/controller/dialog.service.d.ts +3 -8
  34. package/main/controller/dialog.service.d.ts.map +1 -1
  35. package/main/controller/globalerror.service.d.ts +3 -0
  36. package/main/controller/globalerror.service.d.ts.map +1 -1
  37. package/main/controller/http.service.d.ts +3 -8
  38. package/main/controller/http.service.d.ts.map +1 -1
  39. package/main/controller/localization.service.d.ts +3 -8
  40. package/main/controller/localization.service.d.ts.map +1 -1
  41. package/main/controller/notification.service.d.ts +3 -8
  42. package/main/controller/notification.service.d.ts.map +1 -1
  43. package/main/controller/user.service.d.ts +3 -8
  44. package/main/controller/user.service.d.ts.map +1 -1
  45. package/main/controller/views.service.d.ts +3 -0
  46. package/main/controller/views.service.d.ts.map +1 -1
  47. package/main/model/modules/turbogui-angular.module.d.ts +23 -8
  48. package/main/model/modules/turbogui-angular.module.d.ts.map +1 -1
  49. package/main/view/animations/fade.animation.d.ts +3 -8
  50. package/main/view/animations/fade.animation.d.ts.map +1 -1
  51. package/main/view/components/busy-state-base/busy-state-base.component.d.ts +3 -8
  52. package/main/view/components/busy-state-base/busy-state-base.component.d.ts.map +1 -1
  53. package/main/view/components/button-base/button-base.component.d.ts +3 -0
  54. package/main/view/components/button-base/button-base.component.d.ts.map +1 -1
  55. package/main/view/components/button-container/button-container.component.d.ts +3 -8
  56. package/main/view/components/button-container/button-container.component.d.ts.map +1 -1
  57. package/main/view/components/button-image/button-image.component.d.ts +3 -0
  58. package/main/view/components/button-image/button-image.component.d.ts.map +1 -1
  59. package/main/view/components/dialog-error/dialog-error.component.d.ts +3 -8
  60. package/main/view/components/dialog-error/dialog-error.component.d.ts.map +1 -1
  61. package/main/view/components/dialog-multiple-option/dialog-multiple-option.component.d.ts +3 -8
  62. package/main/view/components/dialog-multiple-option/dialog-multiple-option.component.d.ts.map +1 -1
  63. package/main/view/components/dialog-single-option/dialog-single-option.component.d.ts +3 -8
  64. package/main/view/components/dialog-single-option/dialog-single-option.component.d.ts.map +1 -1
  65. package/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.d.ts +3 -8
  66. package/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.d.ts.map +1 -1
  67. package/main/view/components/dialog-two-option/dialog-two-option.component.d.ts +3 -8
  68. package/main/view/components/dialog-two-option/dialog-two-option.component.d.ts.map +1 -1
  69. package/main/view/components/views-container/views-container.component.d.ts +3 -0
  70. package/main/view/components/views-container/views-container.component.d.ts.map +1 -1
  71. package/main/view/directives/AutoFocusOnDisplayDirective.d.ts +3 -0
  72. package/main/view/directives/AutoFocusOnDisplayDirective.d.ts.map +1 -1
  73. package/main/view/directives/AutoSelectTextOnFocusDirective.d.ts +3 -0
  74. package/main/view/directives/AutoSelectTextOnFocusDirective.d.ts.map +1 -1
  75. package/main/view/directives/ElementCreatedDirective.d.ts +3 -0
  76. package/main/view/directives/ElementCreatedDirective.d.ts.map +1 -1
  77. package/main/view/directives/ElementDestroyedDirective.d.ts +3 -0
  78. package/main/view/directives/ElementDestroyedDirective.d.ts.map +1 -1
  79. package/package.json +24 -12
  80. package/turbogui-angular.d.ts +1 -2
  81. package/turbogui-angular.d.ts.map +1 -1
  82. package/bundles/turbogui-angular.umd.js +0 -2431
  83. package/bundles/turbogui-angular.umd.js.map +0 -1
  84. package/esm2015/main/controller/browser.service.js +0 -48
  85. package/esm2015/main/controller/dialog.service.js +0 -329
  86. package/esm2015/main/controller/globalerror.service.js +0 -65
  87. package/esm2015/main/controller/http.service.js +0 -70
  88. package/esm2015/main/controller/localization.service.js +0 -19
  89. package/esm2015/main/controller/notification.service.js +0 -53
  90. package/esm2015/main/controller/user.service.js +0 -125
  91. package/esm2015/main/controller/views.service.js +0 -113
  92. package/esm2015/main/model/modules/turbogui-angular.module.js +0 -93
  93. package/esm2015/main/view/animations/fade.animation.js +0 -32
  94. package/esm2015/main/view/components/busy-state-base/busy-state-base.component.js +0 -39
  95. package/esm2015/main/view/components/button-base/button-base.component.js +0 -149
  96. package/esm2015/main/view/components/button-container/button-container.component.js +0 -35
  97. package/esm2015/main/view/components/button-image/button-image.component.js +0 -46
  98. package/esm2015/main/view/components/dialog-error/dialog-error.component.js +0 -39
  99. package/esm2015/main/view/components/dialog-multiple-option/dialog-multiple-option.component.js +0 -36
  100. package/esm2015/main/view/components/dialog-single-option/dialog-single-option.component.js +0 -39
  101. package/esm2015/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.js +0 -108
  102. package/esm2015/main/view/components/dialog-two-option/dialog-two-option.component.js +0 -40
  103. package/esm2015/main/view/directives/AutoFocusOnDisplayDirective.js +0 -40
  104. package/esm2015/main/view/directives/AutoSelectTextOnFocusDirective.js +0 -39
  105. package/esm2015/main/view/directives/ElementCreatedDirective.js +0 -38
  106. package/esm2015/main/view/directives/ElementDestroyedDirective.js +0 -38
  107. package/esm2015/turbogui-angular.js +0 -7
  108. package/fesm2015/turbogui-angular.js.map +0 -1
  109. package/main/controller/browser.service.ngfactory.d.ts.map +0 -1
  110. package/main/controller/dialog.service.ngfactory.d.ts.map +0 -1
  111. package/main/controller/globalerror.service.ngfactory.d.ts.map +0 -1
  112. package/main/controller/http.service.ngfactory.d.ts.map +0 -1
  113. package/main/controller/localization.service.ngfactory.d.ts.map +0 -1
  114. package/main/controller/notification.service.ngfactory.d.ts.map +0 -1
  115. package/main/controller/user.service.ngfactory.d.ts.map +0 -1
  116. package/main/controller/views.service.ngfactory.d.ts.map +0 -1
  117. package/main/model/modules/turbogui-angular.module.ngfactory.d.ts.map +0 -1
  118. package/main/view/animations/fade.animation.ngfactory.d.ts.map +0 -1
  119. package/main/view/components/busy-state-base/busy-state-base.component.ngfactory.d.ts.map +0 -1
  120. package/main/view/components/busy-state-base/busy-state-base.component.scss.shim.ngstyle.d.ts.map +0 -1
  121. package/main/view/components/button-container/button-container.component.ngfactory.d.ts.map +0 -1
  122. package/main/view/components/button-container/button-container.component.scss.shim.ngstyle.d.ts.map +0 -1
  123. package/main/view/components/button-image/button-image.component.ngfactory.d.ts.map +0 -1
  124. package/main/view/components/button-image/button-image.component.scss.shim.ngstyle.d.ts.map +0 -1
  125. package/main/view/components/dialog-error/dialog-error.component.ngfactory.d.ts.map +0 -1
  126. package/main/view/components/dialog-error/dialog-error.component.scss.shim.ngstyle.d.ts.map +0 -1
  127. package/main/view/components/dialog-multiple-option/dialog-multiple-option.component.ngfactory.d.ts.map +0 -1
  128. package/main/view/components/dialog-multiple-option/dialog-multiple-option.component.scss.shim.ngstyle.d.ts.map +0 -1
  129. package/main/view/components/dialog-single-option/dialog-single-option.component.ngfactory.d.ts.map +0 -1
  130. package/main/view/components/dialog-single-option/dialog-single-option.component.scss.shim.ngstyle.d.ts.map +0 -1
  131. package/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.ngfactory.d.ts.map +0 -1
  132. package/main/view/components/dialog-single-selection-list/dialog-single-selection-list.component.scss.shim.ngstyle.d.ts.map +0 -1
  133. package/main/view/components/dialog-two-option/dialog-two-option.component.ngfactory.d.ts.map +0 -1
  134. package/main/view/components/dialog-two-option/dialog-two-option.component.scss.shim.ngstyle.d.ts.map +0 -1
  135. package/main/view/components/views-container/views-container.component.ngfactory.d.ts.map +0 -1
  136. package/main/view/components/views-container/views-container.component.scss.shim.ngstyle.d.ts.map +0 -1
  137. package/main/view/directives/AutoFocusOnDisplayDirective.ngfactory.d.ts.map +0 -1
  138. package/main/view/directives/AutoSelectTextOnFocusDirective.ngfactory.d.ts.map +0 -1
  139. package/main/view/directives/ElementCreatedDirective.ngfactory.d.ts.map +0 -1
  140. package/main/view/directives/ElementDestroyedDirective.ngfactory.d.ts.map +0 -1
  141. package/turbogui-angular.metadata.json +0 -1
  142. /package/{esm2015/main/controller/httpservice/HTTPServiceGetRequest.js → esm2020/main/controller/httpservice/HTTPServiceGetRequest.mjs} +0 -0
  143. /package/{esm2015/main/controller/httpservice/HTTPServicePostRequest.js → esm2020/main/controller/httpservice/HTTPServicePostRequest.mjs} +0 -0
  144. /package/{esm2015/main/managers/DelayedMethodCallManager.js → esm2020/main/managers/DelayedMethodCallManager.mjs} +0 -0
  145. /package/{esm2015/main/model/classes/GUINotification.js → esm2020/main/model/classes/GUINotification.mjs} +0 -0
  146. /package/{esm2015/main/model/classes/View.js → esm2020/main/model/classes/View.mjs} +0 -0
  147. /package/{esm2015/main/model/classes/ViewModel.js → esm2020/main/model/classes/ViewModel.mjs} +0 -0
  148. /package/{esm2015/main/model/classes/ViewService.js → esm2020/main/model/classes/ViewService.mjs} +0 -0
  149. /package/{esm2015/main/view/components/dialog-base/dialog-base.component.js → esm2020/main/view/components/dialog-base/dialog-base.component.mjs} +0 -0
  150. /package/{esm2015/main/view/components/dialog-options-base/dialog-options-base.component.js → esm2020/main/view/components/dialog-options-base/dialog-options-base.component.mjs} +0 -0
@@ -1,14 +1,29 @@
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
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "../../view/components/busy-state-base/busy-state-base.component";
3
+ import * as i2 from "../../view/components/dialog-error/dialog-error.component";
4
+ import * as i3 from "../../view/components/dialog-single-option/dialog-single-option.component";
5
+ import * as i4 from "../../view/components/dialog-two-option/dialog-two-option.component";
6
+ import * as i5 from "../../view/components/dialog-multiple-option/dialog-multiple-option.component";
7
+ import * as i6 from "../../view/components/dialog-single-selection-list/dialog-single-selection-list.component";
8
+ import * as i7 from "../../view/components/views-container/views-container.component";
9
+ import * as i8 from "../../view/components/button-image/button-image.component";
10
+ import * as i9 from "../../view/components/button-container/button-container.component";
11
+ import * as i10 from "../../view/directives/ElementCreatedDirective";
12
+ import * as i11 from "../../view/directives/ElementDestroyedDirective";
13
+ import * as i12 from "../../view/directives/AutoFocusOnDisplayDirective";
14
+ import * as i13 from "../../view/directives/AutoSelectTextOnFocusDirective";
15
+ import * as i14 from "@angular/material/dialog";
16
+ import * as i15 from "@angular/material/snack-bar";
17
+ import * as i16 from "@angular/material/input";
18
+ import * as i17 from "@angular/material/button";
19
+ import * as i18 from "@angular/material/form-field";
20
+ import * as i19 from "@angular/platform-browser/animations";
9
21
  /**
10
22
  * This file contains the root module that contains all the library declarations and exports.
11
23
  */
12
24
  export declare class TurboGuiAngularModule {
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<TurboGuiAngularModule, never>;
26
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TurboGuiAngularModule, [typeof i1.BusyStateBaseComponent, typeof i2.DialogErrorComponent, typeof i3.DialogSingleOptionComponent, typeof i4.DialogTwoOptionComponent, typeof i5.DialogMultipleOptionComponent, typeof i6.DialogSingleSelectionListComponent, typeof i7.ViewsContainerComponent, typeof i8.ButtonImageComponent, typeof i9.ButtonContainerComponent, typeof i10.ElementCreatedDirective, typeof i11.ElementDestroyedDirective, typeof i12.AutoFocusOnDisplayDirective, typeof i13.AutoSelectTextOnFocusDirective], [typeof i14.MatDialogModule, typeof i15.MatSnackBarModule, typeof i16.MatInputModule, typeof i17.MatButtonModule, typeof i18.MatFormFieldModule, typeof i19.BrowserAnimationsModule], [typeof i1.BusyStateBaseComponent, typeof i7.ViewsContainerComponent, typeof i8.ButtonImageComponent, typeof i9.ButtonContainerComponent, typeof i2.DialogErrorComponent, typeof i3.DialogSingleOptionComponent, typeof i4.DialogTwoOptionComponent, typeof i5.DialogMultipleOptionComponent, typeof i6.DialogSingleSelectionListComponent, typeof i10.ElementCreatedDirective, typeof i11.ElementDestroyedDirective, typeof i12.AutoFocusOnDisplayDirective, typeof i13.AutoSelectTextOnFocusDirective]>;
27
+ static ɵinj: i0.ɵɵInjectorDeclaration<TurboGuiAngularModule>;
13
28
  }
14
29
  //# sourceMappingURL=turbogui-angular.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"turbogui-angular.module.d.ts","sourceRoot":"","sources":["../../../../../projects/turbogui-angular/src/main/model/modules/turbogui-angular.module.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AA+BH;;GAEG;AACH,qBAuDa,qBAAqB;CAAI"}
1
+ {"version":3,"file":"turbogui-angular.module.d.ts","sourceRoot":"","sources":["../../../../../projects/turbogui-angular/src/main/model/modules/turbogui-angular.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAsCA;;GAEG;AACH,qBAuDa,qBAAqB;yCAArB,qBAAqB;0CAArB,qBAAqB;0CAArB,qBAAqB;CAAI"}
@@ -1,11 +1,4 @@
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
+ import * as i0 from "@angular/core";
9
2
  /**
10
3
  * Fade animations
11
4
  */
@@ -18,5 +11,7 @@ export declare class FadeAnimationClass {
18
11
  * @param leave The time and easing that we want to use for the leave state
19
12
  */
20
13
  static getTrigger(triggerName: string, enter?: string, leave?: string): import("@angular/animations").AnimationTriggerMetadata;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<FadeAnimationClass, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<FadeAnimationClass>;
21
16
  }
22
17
  //# sourceMappingURL=fade.animation.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"fade.animation.d.ts","sourceRoot":"","sources":["../../../../../projects/turbogui-angular/src/main/view/animations/fade.animation.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAMH;;GAEG;AACH,qBACa,kBAAkB;IAE3B;;;;;;OAMG;IACH,MAAM,CAAC,UAAU,CAAC,WAAW,EAAE,MAAM,EAAE,KAAK,SAAY,EAAE,KAAK,SAAY;CAO9E"}
1
+ {"version":3,"file":"fade.animation.d.ts","sourceRoot":"","sources":["../../../../../projects/turbogui-angular/src/main/view/animations/fade.animation.ts"],"names":[],"mappings":";AAaA;;GAEG;AACH,qBACa,kBAAkB;IAE3B;;;;;;OAMG;IACH,MAAM,CAAC,UAAU,CAAC,WAAW,EAAE,MAAM,EAAE,KAAK,SAAY,EAAE,KAAK,SAAY;yCATlE,kBAAkB;6CAAlB,kBAAkB;CAgB9B"}
@@ -1,11 +1,4 @@
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
+ import * as i0 from "@angular/core";
9
2
  /**
10
3
  * This component is used by turboGUI angular library to show the busy state to the user.
11
4
  * It is used to block all the user input and progressively shows a busy cursor to notify that the application
@@ -20,5 +13,7 @@ export declare class BusyStateBaseComponent {
20
13
  * This is used to attach the fade animation directly to this component so it fades in and out when created and removed from the app
21
14
  */
22
15
  busyStateBaseFade: boolean;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<BusyStateBaseComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<BusyStateBaseComponent, "tg-busy-state-base", never, {}, {}, never, never>;
23
18
  }
24
19
  //# sourceMappingURL=busy-state-base.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"busy-state-base.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/busy-state-base/busy-state-base.component.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAMH;;;;;;;;GAQG;AACH,qBAQa,sBAAsB;IAG/B;;OAEG;IACgC,iBAAiB,UAAQ;CAC/D"}
1
+ {"version":3,"file":"busy-state-base.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/busy-state-base/busy-state-base.component.ts"],"names":[],"mappings":";AAaA;;;;;;;;GAQG;AACH,qBAQa,sBAAsB;IAG/B;;OAEG;IACgC,iBAAiB,UAAQ;yCANnD,sBAAsB;2CAAtB,sBAAsB;CAOlC"}
@@ -7,6 +7,7 @@
7
7
  * CopyRight : -> Copyright 2018 Edertone Advanded Solutions. https://www.edertone.com
8
8
  */
9
9
  import { OnInit } from '@angular/core';
10
+ import * as i0 from "@angular/core";
10
11
  /**
11
12
  * This is the base class for all button components
12
13
  */
@@ -88,5 +89,7 @@ export declare abstract class ButtonBaseComponent implements OnInit {
88
89
  * Listens for the mouse up of the button component
89
90
  */
90
91
  onMouseUp(): void;
92
+ static ɵfac: i0.ɵɵFactoryDeclaration<ButtonBaseComponent, never>;
93
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ButtonBaseComponent, never, never, { "releaseOnMouseUp": "releaseOnMouseUp"; "vibrateOnClick": "vibrateOnClick"; "defaultOpacity": "defaultOpacity"; "defaultScale": "defaultScale"; "hoverOpacity": "hoverOpacity"; "hoverScale": "hoverScale"; "clickOpacity": "clickOpacity"; "clickScale": "clickScale"; "disabledOpacity": "disabledOpacity"; "enabled": "enabled"; }, {}, never>;
91
94
  }
92
95
  //# sourceMappingURL=button-base.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"button-base.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/button-base/button-base.component.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAoC,MAAM,EAAa,MAAM,eAAe,CAAC;AAGpF;;GAEG;AACH,8BACsB,mBAAoB,YAAW,MAAM;IAGvD;;OAEG;IAC2B,cAAc,SAAM;IAGlD;;OAEG;IAC6B,YAAY,SAAc;IAG1D;;OAEG;IACkC,aAAa,SAAa;IAG/D;;OAEG;IACM,gBAAgB,UAAQ;IAGjC;;;OAGG;IACM,cAAc,SAAM;IAG7B;;OAEG;IACM,cAAc,SAAM;IAG7B;;OAEG;IACM,YAAY,SAAK;IAG1B;;OAEG;IACM,YAAY,SAAM;IAG3B;;OAEG;IACM,UAAU,SAAK;IAGxB;;OAEG;IACM,YAAY,SAAK;IAG1B;;OAEG;IACM,UAAU,SAAK;IAGxB;;OAEG;IACM,eAAe,SAAM;IAG9B;;OAEG;IACH,OAAO,CAAC,QAAQ,CAAQ;IAGxB;;OAEG;IACH,IAAa,OAAO,CAAC,CAAC,EAAC,OAAO,EAO7B;IAGD;;OAEG;IACH,QAAQ;IAOR;;OAEG;IAEH,WAAW;IAUX;;OAEG;IAIH,UAAU;IAUV;;OAEG;IAEH,WAAW;IAUX;;OAEG;IAEH,SAAS;CAgBZ"}
1
+ {"version":3,"file":"button-base.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/button-base/button-base.component.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAoC,MAAM,EAAa,MAAM,eAAe,CAAC;;AAGpF;;GAEG;AACH,8BACsB,mBAAoB,YAAW,MAAM;IAGvD;;OAEG;IAC2B,cAAc,SAAM;IAGlD;;OAEG;IAC6B,YAAY,SAAc;IAG1D;;OAEG;IACkC,aAAa,SAAa;IAG/D;;OAEG;IACM,gBAAgB,UAAQ;IAGjC;;;OAGG;IACM,cAAc,SAAM;IAG7B;;OAEG;IACM,cAAc,SAAM;IAG7B;;OAEG;IACM,YAAY,SAAK;IAG1B;;OAEG;IACM,YAAY,SAAM;IAG3B;;OAEG;IACM,UAAU,SAAK;IAGxB;;OAEG;IACM,YAAY,SAAK;IAG1B;;OAEG;IACM,UAAU,SAAK;IAGxB;;OAEG;IACM,eAAe,SAAM;IAG9B;;OAEG;IACH,OAAO,CAAC,QAAQ,CAAQ;IAGxB;;OAEG;IACH,IAAa,OAAO,CAAC,CAAC,EAAC,OAAO,EAO7B;IAGD;;OAEG;IACH,QAAQ;IAOR;;OAEG;IAEH,WAAW;IAUX;;OAEG;IAIH,UAAU;IAUV;;OAEG;IAEH,WAAW;IAUX;;OAEG;IAEH,SAAS;yCAzJS,mBAAmB;2CAAnB,mBAAmB;CAyKxC"}
@@ -1,12 +1,5 @@
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
1
  import { ButtonBaseComponent } from '../../../view/components/button-base/button-base.component';
2
+ import * as i0 from "@angular/core";
10
3
  /**
11
4
  * This component is a basic button without visual appearance, that is used as a container to load any content.
12
5
  */
@@ -15,5 +8,7 @@ export declare class ButtonContainerComponent extends ButtonBaseComponent {
15
8
  * This is used to attach the fade animation directly to this component so it fades in and out when created and removed from the app
16
9
  */
17
10
  buttonFade: boolean;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ButtonContainerComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<ButtonContainerComponent, "tg-button-container", never, {}, {}, never, ["*"]>;
18
13
  }
19
14
  //# sourceMappingURL=button-container.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"button-container.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/button-container/button-container.component.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH,OAAO,EAAE,mBAAmB,EAAE,MAAM,4DAA4D,CAAC;AAGjG;;GAEG;AACH,qBAQa,wBAAyB,SAAQ,mBAAmB;IAG7D;;OAEG;IACyB,UAAU,UAAQ;CACjD"}
1
+ {"version":3,"file":"button-container.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/button-container/button-container.component.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,mBAAmB,EAAE,MAAM,4DAA4D,CAAC;;AAGjG;;GAEG;AACH,qBAQa,wBAAyB,SAAQ,mBAAmB;IAG7D;;OAEG;IACyB,UAAU,UAAQ;yCANrC,wBAAwB;2CAAxB,wBAAwB;CAOpC"}
@@ -8,6 +8,7 @@
8
8
  */
9
9
  import { OnInit } from '@angular/core';
10
10
  import { ButtonBaseComponent } from '../../../view/components/button-base/button-base.component';
11
+ import * as i0 from "@angular/core";
11
12
  /**
12
13
  * This component is a basic button that uses an image as its visual appearance
13
14
  */
@@ -25,5 +26,7 @@ export declare class ButtonImageComponent extends ButtonBaseComponent implements
25
26
  * 50 only half, etc..
26
27
  */
27
28
  percentSize: number;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<ButtonImageComponent, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<ButtonImageComponent, "tg-button-image", never, { "src": "src"; "percentSize": "percentSize"; }, {}, never, never>;
28
31
  }
29
32
  //# sourceMappingURL=button-image.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"button-image.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/button-image/button-image.component.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAiC,MAAM,EAAE,MAAM,eAAe,CAAC;AAEtE,OAAO,EAAE,mBAAmB,EAAE,MAAM,4DAA4D,CAAC;AAGjG;;GAEG;AACH,qBAQa,oBAAqB,SAAQ,mBAAoB,YAAW,MAAM;IAG3E;;OAEG;IACyB,UAAU,UAAQ;IAG9C;;OAEG;IACM,GAAG,SAAM;IAGlB;;;OAGG;IACM,WAAW,SAAO;CAC9B"}
1
+ {"version":3,"file":"button-image.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/button-image/button-image.component.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAiC,MAAM,EAAE,MAAM,eAAe,CAAC;AAEtE,OAAO,EAAE,mBAAmB,EAAE,MAAM,4DAA4D,CAAC;;AAGjG;;GAEG;AACH,qBAQa,oBAAqB,SAAQ,mBAAoB,YAAW,MAAM;IAG3E;;OAEG;IACyB,UAAU,UAAQ;IAG9C;;OAEG;IACM,GAAG,SAAM;IAGlB;;;OAGG;IACM,WAAW,SAAO;yCAnBlB,oBAAoB;2CAApB,oBAAoB;CAoBhC"}
@@ -1,13 +1,6 @@
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
1
  import { MatDialogRef } from '@angular/material/dialog';
10
2
  import { DialogOptionsBaseComponent } from '../dialog-options-base/dialog-options-base.component';
3
+ import * as i0 from "@angular/core";
11
4
  /**
12
5
  * A dialog component with a single option button, to be used for error notifications
13
6
  */
@@ -15,5 +8,7 @@ export declare class DialogErrorComponent extends DialogOptionsBaseComponent {
15
8
  dialogRef: MatDialogRef<DialogOptionsBaseComponent>;
16
9
  data: any;
17
10
  constructor(dialogRef: MatDialogRef<DialogOptionsBaseComponent>, data: any);
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogErrorComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogErrorComponent, "tg-dialog-error", never, {}, {}, never, never>;
18
13
  }
19
14
  //# sourceMappingURL=dialog-error.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"dialog-error.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-error/dialog-error.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,oBAAqB,SAAQ,0BAA0B;IAE7C,SAAS,EAAE,YAAY,CAAC,0BAA0B,CAAC;IAAkC,IAAI,EAAE,GAAG;gBAA9F,SAAS,EAAE,YAAY,CAAC,0BAA0B,CAAC,EAAkC,IAAI,EAAE,GAAG;CAcpH"}
1
+ {"version":3,"file":"dialog-error.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/turbogui-angular/src/main/view/components/dialog-error/dialog-error.component.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,YAAY,EAAmB,MAAM,0BAA0B,CAAC;AACzE,OAAO,EAAE,0BAA0B,EAAE,MAAM,sDAAsD,CAAC;;AAGlG;;GAEG;AACH,qBAOa,oBAAqB,SAAQ,0BAA0B;IAE7C,SAAS,EAAE,YAAY,CAAC,0BAA0B,CAAC;IAAkC,IAAI,EAAE,GAAG;gBAA9F,SAAS,EAAE,YAAY,CAAC,0BAA0B,CAAC,EAAkC,IAAI,EAAE,GAAG;yCAFxG,oBAAoB;2CAApB,oBAAoB;CAgBhC"}
@@ -1,13 +1,6 @@
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
1
  import { MatDialogRef } from '@angular/material/dialog';
10
2
  import { DialogOptionsBaseComponent } from '../dialog-options-base/dialog-options-base.component';
3
+ import * as i0 from "@angular/core";
11
4
  /**
12
5
  * A dialog component that is designed to show more than one option buttons (usually more than two), to be used with dialog service
13
6
  */
@@ -15,5 +8,7 @@ export declare class DialogMultipleOptionComponent extends DialogOptionsBaseComp
15
8
  dialogRef: MatDialogRef<DialogOptionsBaseComponent>;
16
9
  data: any;
17
10
  constructor(dialogRef: MatDialogRef<DialogOptionsBaseComponent>, data: any);
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogMultipleOptionComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogMultipleOptionComponent, "tg-dialog-multiple-option", never, {}, {}, never, never>;
18
13
  }
19
14
  //# sourceMappingURL=dialog-multiple-option.component.d.ts.map
@@ -1 +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"}
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":"AAUA,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;yCAFxG,6BAA6B;2CAA7B,6BAA6B;CAWzC"}
@@ -1,13 +1,6 @@
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
1
  import { MatDialogRef } from '@angular/material/dialog';
10
2
  import { DialogOptionsBaseComponent } from '../dialog-options-base/dialog-options-base.component';
3
+ import * as i0 from "@angular/core";
11
4
  /**
12
5
  * A dialog component with a single option button, to be used with dialog service
13
6
  */
@@ -15,5 +8,7 @@ export declare class DialogSingleOptionComponent extends DialogOptionsBaseCompon
15
8
  dialogRef: MatDialogRef<DialogOptionsBaseComponent>;
16
9
  data: any;
17
10
  constructor(dialogRef: MatDialogRef<DialogOptionsBaseComponent>, data: any);
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogSingleOptionComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogSingleOptionComponent, "tg-dialog-single-option", never, {}, {}, never, never>;
18
13
  }
19
14
  //# sourceMappingURL=dialog-single-option.component.d.ts.map
@@ -1 +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"}
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":"AAUA,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;yCAFxG,2BAA2B;2CAA3B,2BAA2B;CAgBvC"}
@@ -1,15 +1,8 @@
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
1
  import { MatDialogRef } from '@angular/material/dialog';
10
2
  import { DialogOptionsBaseComponent } from '../dialog-options-base/dialog-options-base.component';
11
3
  import { BrowserService } from '../../../controller/browser.service';
12
4
  import { StringUtils } from 'turbocommons-ts';
5
+ import * as i0 from "@angular/core";
13
6
  /**
14
7
  * A dialog component which allows us to select one single item from a list. The elements on that list are displayed on a table
15
8
  * which may show a scroll if necessary when there are many elements on the list.
@@ -64,5 +57,7 @@ export declare class DialogSingleSelectionListComponent extends DialogOptionsBas
64
57
  * function to work by index instead of by value. The change in performance when refreshing the list is massive.
65
58
  */
66
59
  trackByFn: (index: number, _value: string) => number;
60
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogSingleSelectionListComponent, never>;
61
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogSingleSelectionListComponent, "tg-dialog-single-selection-list", never, {}, {}, never, never>;
67
62
  }
68
63
  //# sourceMappingURL=dialog-single-selection-list.component.d.ts.map
@@ -1 +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"}
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":"AAUA,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;yCAlG5C,kCAAkC;2CAAlC,kCAAkC;CAmG9C"}
@@ -1,13 +1,6 @@
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
1
  import { MatDialogRef } from '@angular/material/dialog';
10
2
  import { DialogOptionsBaseComponent } from '../dialog-options-base/dialog-options-base.component';
3
+ import * as i0 from "@angular/core";
11
4
  /**
12
5
  * A dialog component with two option buttons, to be used with dialog service.
13
6
  * The first of the options is considered to be the primary one and will therefore have more visual accent
@@ -16,5 +9,7 @@ export declare class DialogTwoOptionComponent extends DialogOptionsBaseComponent
16
9
  dialogRef: MatDialogRef<DialogOptionsBaseComponent>;
17
10
  data: any;
18
11
  constructor(dialogRef: MatDialogRef<DialogOptionsBaseComponent>, data: any);
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogTwoOptionComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogTwoOptionComponent, "tg-dialog-two-option", never, {}, {}, never, never>;
19
14
  }
20
15
  //# sourceMappingURL=dialog-two-option.component.d.ts.map
@@ -1 +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"}
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":"AAUA,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;yCAFxG,wBAAwB;2CAAxB,wBAAwB;CAgBpC"}
@@ -9,6 +9,7 @@
9
9
  import { ViewContainerRef, OnInit, Type, OnDestroy } from '@angular/core';
10
10
  import { ViewsService } from '../../../controller/views.service';
11
11
  import { View } from '../../../model/classes/View';
12
+ import * as i0 from "@angular/core";
12
13
  /**
13
14
  * Component that is used as a container for application views.
14
15
  * We must create only one views container in our application and pass to it a reference to our main
@@ -39,5 +40,7 @@ export declare class ViewsContainerComponent implements OnInit, OnDestroy {
39
40
  * Clear the current view from the service when this component is deleted
40
41
  */
41
42
  ngOnDestroy(): void;
43
+ static ɵfac: i0.ɵɵFactoryDeclaration<ViewsContainerComponent, never>;
44
+ static ɵcmp: i0.ɵɵComponentDeclaration<ViewsContainerComponent, "tg-views-container", never, { "initialView": "initialView"; "viewsService": "viewsService"; }, {}, never, never>;
42
45
  }
43
46
  //# sourceMappingURL=views-container.component.d.ts.map
@@ -1 +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"}
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;yCAhDF,uBAAuB;2CAAvB,uBAAuB;CAwDnC"}
@@ -7,6 +7,7 @@
7
7
  * CopyRight : -> Copyright 2018 Edertone Advanded Solutions. https://www.edertone.com
8
8
  */
9
9
  import { ElementRef, NgZone, Renderer2, AfterContentInit } from '@angular/core';
10
+ import * as i0 from "@angular/core";
10
11
  /** This directive is used to perform an autofocus on an element every time it is displayed */
11
12
  export declare class AutoFocusOnDisplayDirective implements AfterContentInit {
12
13
  private el;
@@ -14,5 +15,7 @@ export declare class AutoFocusOnDisplayDirective implements AfterContentInit {
14
15
  private renderer;
15
16
  constructor(el: ElementRef, zone: NgZone, renderer: Renderer2);
16
17
  ngAfterContentInit(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutoFocusOnDisplayDirective, never>;
19
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AutoFocusOnDisplayDirective, "[autoFocusOnDisplay]", never, {}, {}, never>;
17
20
  }
18
21
  //# sourceMappingURL=AutoFocusOnDisplayDirective.d.ts.map
@@ -1 +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"}
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;yCAXT,2BAA2B;2CAA3B,2BAA2B;CAmBvC"}
@@ -7,11 +7,14 @@
7
7
  * CopyRight : -> Copyright 2018 Edertone Advanded Solutions. https://www.edertone.com
8
8
  */
9
9
  import { ElementRef, Renderer2 } from '@angular/core';
10
+ import * as i0 from "@angular/core";
10
11
  /** This directive is used to perform an automatic select all text on an element every time it is focused */
11
12
  export declare class AutoSelectTextOnFocusDirective {
12
13
  private el;
13
14
  private renderer;
14
15
  constructor(el: ElementRef, renderer: Renderer2);
15
16
  onFocus(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutoSelectTextOnFocusDirective, never>;
18
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AutoSelectTextOnFocusDirective, "[autoSelectTextOnFocus]", never, {}, {}, never>;
16
19
  }
17
20
  //# sourceMappingURL=AutoSelectTextOnFocusDirective.d.ts.map
@@ -1 +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"}
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;yCAZjC,8BAA8B;2CAA9B,8BAA8B;CAgB1C"}
@@ -7,6 +7,7 @@
7
7
  * CopyRight : -> Copyright 2018 Edertone Advanded Solutions. https://www.edertone.com
8
8
  */
9
9
  import { EventEmitter, OnInit } from '@angular/core';
10
+ import * as i0 from "@angular/core";
10
11
  /** This directive is used to listen for onInit events on raw html elements */
11
12
  export declare class ElementCreatedDirective implements OnInit {
12
13
  /**
@@ -17,5 +18,7 @@ export declare class ElementCreatedDirective implements OnInit {
17
18
  * Listen for the on init event
18
19
  */
19
20
  ngOnInit(): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<ElementCreatedDirective, never>;
22
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ElementCreatedDirective, "[elementCreated]", never, {}, { "elementCreated": "elementCreated"; }, never>;
20
23
  }
21
24
  //# sourceMappingURL=ElementCreatedDirective.d.ts.map
@@ -1 +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"}
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;yCAbC,uBAAuB;2CAAvB,uBAAuB;CAkBnC"}
@@ -7,6 +7,7 @@
7
7
  * CopyRight : -> Copyright 2018 Edertone Advanded Solutions. https://www.edertone.com
8
8
  */
9
9
  import { OnDestroy, EventEmitter } from '@angular/core';
10
+ import * as i0 from "@angular/core";
10
11
  /** This directive is used to listen for onDestroy events on raw html elements */
11
12
  export declare class ElementDestroyedDirective implements OnDestroy {
12
13
  /**
@@ -17,5 +18,7 @@ export declare class ElementDestroyedDirective implements OnDestroy {
17
18
  * Listen for the on destroy event
18
19
  */
19
20
  ngOnDestroy(): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<ElementDestroyedDirective, never>;
22
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ElementDestroyedDirective, "[elementDestroyed]", never, {}, { "elementDestroyed": "elementDestroyed"; }, never>;
20
23
  }
21
24
  //# sourceMappingURL=ElementDestroyedDirective.d.ts.map
@@ -1 +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"}
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;yCAbF,yBAAyB;2CAAzB,yBAAyB;CAkBrC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "turbogui-angular",
3
- "version": "7.0.0",
3
+ "version": "8.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",
@@ -24,18 +24,30 @@
24
24
  "turbocommons-ts": "^3.9.0"
25
25
  },
26
26
  "peerDependencies": {
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"
27
+ "@angular/common": "~13.4.0",
28
+ "@angular/core": "~13.4.0",
29
+ "@angular/animations": "^13.4.0",
30
+ "@angular/cdk": "^13.3.9",
31
+ "@angular/material": "^13.3.9"
32
32
  },
33
- "main": "bundles/turbogui-angular.umd.js",
34
- "module": "fesm2015/turbogui-angular.js",
35
- "es2015": "fesm2015/turbogui-angular.js",
36
- "esm2015": "esm2015/turbogui-angular.js",
37
- "fesm2015": "fesm2015/turbogui-angular.js",
33
+ "module": "fesm2015/turbogui-angular.mjs",
34
+ "es2020": "fesm2020/turbogui-angular.mjs",
35
+ "esm2020": "esm2020/turbogui-angular.mjs",
36
+ "fesm2020": "fesm2020/turbogui-angular.mjs",
37
+ "fesm2015": "fesm2015/turbogui-angular.mjs",
38
38
  "typings": "turbogui-angular.d.ts",
39
- "metadata": "turbogui-angular.metadata.json",
39
+ "exports": {
40
+ "./package.json": {
41
+ "default": "./package.json"
42
+ },
43
+ ".": {
44
+ "types": "./turbogui-angular.d.ts",
45
+ "esm2020": "./esm2020/turbogui-angular.mjs",
46
+ "es2020": "./fesm2020/turbogui-angular.mjs",
47
+ "es2015": "./fesm2015/turbogui-angular.mjs",
48
+ "node": "./fesm2015/turbogui-angular.mjs",
49
+ "default": "./fesm2020/turbogui-angular.mjs"
50
+ }
51
+ },
40
52
  "sideEffects": false
41
53
  }
@@ -1,7 +1,6 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
+ /// <amd-module name="turbogui-angular" />
4
5
  export * from './public_api';
5
- export { ButtonBaseComponent as ɵb } from './main/view/components/button-base/button-base.component';
6
- export { DialogBaseComponent as ɵa } from './main/view/components/dialog-base/dialog-base.component';
7
6
  //# sourceMappingURL=turbogui-angular.d.ts.map
@@ -1 +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"}
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"}