@morozeckiy/dd-lib 0.1.1 → 0.1.3

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 (227) hide show
  1. package/esm2022/lib/common/lib-common-button.mjs +62 -0
  2. package/esm2022/lib/common/lib-common-input-text.mjs +172 -0
  3. package/esm2022/lib/core/dialog/dialog-config.mjs +15 -0
  4. package/esm2022/lib/core/dialog/dialog-container.component.mjs +40 -0
  5. package/esm2022/lib/core/dialog/dialog-ref.mjs +19 -0
  6. package/esm2022/lib/core/dialog/dialog.service.mjs +106 -0
  7. package/esm2022/lib/core/directives/auto-height.directive.mjs +36 -0
  8. package/esm2022/lib/core/directives/click-outside.directive.mjs +42 -0
  9. package/esm2022/lib/core/directives/counter.directive.mjs +64 -0
  10. package/esm2022/lib/core/directives/declension.directive.mjs +40 -0
  11. package/esm2022/lib/core/directives/resize-textarea.directive.mjs +26 -0
  12. package/esm2022/lib/core/directives/triangle.directive.mjs +75 -0
  13. package/esm2022/lib/core/index.mjs +26 -0
  14. package/esm2022/lib/core/pipes/filter-tabs.pipe.mjs +31 -0
  15. package/esm2022/lib/core/pipes/filter.pipe.mjs +49 -0
  16. package/esm2022/lib/core/pipes/highlight.pipe.mjs +23 -0
  17. package/esm2022/lib/core/pipes/reverse.pipe.mjs +17 -0
  18. package/esm2022/lib/core/pipes/safe.pipe.mjs +34 -0
  19. package/esm2022/lib/core/services/date.service.mjs +113 -0
  20. package/esm2022/lib/core/services/destroy.service.mjs +15 -0
  21. package/esm2022/lib/core/services/fetcher.service.mjs +92 -0
  22. package/esm2022/lib/core/services/interceptors.service.mjs +27 -0
  23. package/esm2022/lib/core/services/svg-icons.service.mjs +26 -0
  24. package/esm2022/lib/core/services/theme-constructor.service.mjs +64 -0
  25. package/esm2022/lib/core/services/validators.service.mjs +73 -0
  26. package/esm2022/lib/core/tools.mjs +128 -0
  27. package/esm2022/lib/core/tooltip/tooltip.component.mjs +27 -0
  28. package/esm2022/lib/core/tooltip/tooltip.directive.mjs +137 -0
  29. package/esm2022/lib/lib-accordion/lib-accordion.component.mjs +15 -0
  30. package/esm2022/lib/lib-back-button/lib-back-button.component.mjs +37 -0
  31. package/esm2022/lib/lib-button/lib-button.component.mjs +30 -0
  32. package/esm2022/lib/lib-calendar/lib-calendar.component.mjs +222 -0
  33. package/esm2022/lib/lib-card/lib-card.component.mjs +34 -0
  34. package/esm2022/lib/lib-checkbox/lib-checkbox.component.mjs +66 -0
  35. package/esm2022/lib/lib-comment-input/lib-comment-input.component.mjs +20 -0
  36. package/esm2022/lib/lib-file-upload/lib-file-upload.component.mjs +34 -0
  37. package/esm2022/lib/lib-filter-button/lib-filter-button.component.mjs +42 -0
  38. package/esm2022/lib/lib-image-loader/lib-image-loader.component.mjs +14 -0
  39. package/esm2022/lib/lib-input/lib-input.component.mjs +55 -0
  40. package/esm2022/lib/lib-loader/lib-loader.component.mjs +16 -0
  41. package/esm2022/lib/lib-period/lib-period.component.mjs +114 -0
  42. package/esm2022/lib/lib-radio/lib-radio.component.mjs +76 -0
  43. package/esm2022/lib/lib-search-input/lib-search-input.component.mjs +91 -0
  44. package/esm2022/lib/lib-select/lib-select.component.mjs +137 -0
  45. package/esm2022/lib/lib-skeleton/lib-skeleton.component.mjs +45 -0
  46. package/esm2022/lib/lib-sort/lib-sort.component.mjs +44 -0
  47. package/esm2022/lib/lib-step/lib-step.component.mjs +19 -0
  48. package/esm2022/lib/lib-svg/lib-svg.component.mjs +75 -0
  49. package/esm2022/lib/lib-svg-icon/lib-svg-icon.component.mjs +55 -0
  50. package/esm2022/lib/lib-tabs-fragment/lib-tabs-fragment.component.mjs +79 -0
  51. package/esm2022/lib/lib-textarea/lib-textarea.component.mjs +50 -0
  52. package/esm2022/lib/toast/toast-base/toast-base.component.mjs +29 -0
  53. package/esm2022/lib/toast/toast-placeholder/toast-placeholder.component.mjs +29 -0
  54. package/esm2022/lib/toast/toast.service.mjs +124 -0
  55. package/esm2022/lib/utils/decorators.mjs +102 -0
  56. package/esm2022/morozeckiy-dd-lib.mjs +5 -0
  57. package/esm2022/public-api.mjs +35 -0
  58. package/fesm2022/morozeckiy-dd-lib.mjs +3004 -0
  59. package/fesm2022/morozeckiy-dd-lib.mjs.map +1 -0
  60. package/index.d.ts +5 -0
  61. package/lib/common/lib-common-button.d.ts +20 -0
  62. package/lib/common/lib-common-input-text.d.ts +53 -0
  63. package/lib/core/dialog/dialog-config.d.ts +14 -0
  64. package/lib/core/dialog/dialog-container.component.d.ts +18 -0
  65. package/lib/core/dialog/dialog-ref.d.ts +18 -0
  66. package/lib/core/dialog/dialog.service.d.ts +28 -0
  67. package/lib/core/directives/auto-height.directive.d.ts +11 -0
  68. package/lib/core/directives/click-outside.directive.d.ts +11 -0
  69. package/lib/core/directives/counter.directive.d.ts +11 -0
  70. package/lib/core/directives/declension.directive.d.ts +13 -0
  71. package/lib/core/directives/resize-textarea.directive.d.ts +10 -0
  72. package/lib/core/directives/triangle.directive.d.ts +16 -0
  73. package/lib/core/index.d.ts +20 -0
  74. package/lib/core/pipes/filter-tabs.pipe.d.ts +7 -0
  75. package/lib/core/pipes/filter.pipe.d.ts +12 -0
  76. package/lib/core/pipes/highlight.pipe.d.ts +7 -0
  77. package/lib/core/pipes/reverse.pipe.d.ts +7 -0
  78. package/lib/core/pipes/safe.pipe.d.ts +10 -0
  79. package/lib/core/services/date.service.d.ts +41 -0
  80. package/lib/core/services/destroy.service.d.ts +8 -0
  81. package/lib/core/services/fetcher.service.d.ts +29 -0
  82. package/lib/core/services/interceptors.service.d.ts +12 -0
  83. package/lib/core/services/svg-icons.service.d.ts +9 -0
  84. package/lib/core/services/theme-constructor.service.d.ts +27 -0
  85. package/lib/core/services/validators.service.d.ts +18 -0
  86. package/lib/core/tools.d.ts +16 -0
  87. package/lib/core/tooltip/tooltip.component.d.ts +12 -0
  88. package/lib/core/tooltip/tooltip.directive.d.ts +22 -0
  89. package/lib/lib-accordion/lib-accordion.component.d.ts +8 -0
  90. package/lib/lib-back-button/lib-back-button.component.d.ts +13 -0
  91. package/lib/lib-button/lib-button.component.d.ts +10 -0
  92. package/lib/lib-calendar/lib-calendar.component.d.ts +76 -0
  93. package/lib/lib-card/lib-card.component.d.ts +16 -0
  94. package/lib/lib-checkbox/lib-checkbox.component.d.ts +23 -0
  95. package/lib/lib-comment-input/lib-comment-input.component.d.ts +8 -0
  96. package/lib/lib-file-upload/lib-file-upload.component.d.ts +12 -0
  97. package/lib/lib-filter-button/lib-filter-button.component.d.ts +13 -0
  98. package/lib/lib-image-loader/lib-image-loader.component.d.ts +6 -0
  99. package/lib/lib-input/lib-input.component.d.ts +13 -0
  100. package/lib/lib-loader/lib-loader.component.d.ts +6 -0
  101. package/lib/lib-period/lib-period.component.d.ts +41 -0
  102. package/lib/lib-radio/lib-radio.component.d.ts +25 -0
  103. package/lib/lib-search-input/lib-search-input.component.d.ts +29 -0
  104. package/lib/lib-select/lib-select.component.d.ts +30 -0
  105. package/lib/lib-skeleton/lib-skeleton.component.d.ts +16 -0
  106. package/lib/lib-sort/lib-sort.component.d.ts +18 -0
  107. package/lib/lib-step/lib-step.component.d.ts +7 -0
  108. package/{src/lib/lib-svg/lib-svg.component.ts → lib/lib-svg/lib-svg.component.d.ts} +38 -66
  109. package/lib/lib-svg-icon/lib-svg-icon.component.d.ts +18 -0
  110. package/lib/lib-tabs-fragment/lib-tabs-fragment.component.d.ts +29 -0
  111. package/lib/lib-textarea/lib-textarea.component.d.ts +13 -0
  112. package/lib/toast/toast-base/toast-base.component.d.ts +21 -0
  113. package/lib/toast/toast-placeholder/toast-placeholder.component.d.ts +12 -0
  114. package/lib/toast/toast.service.d.ts +35 -0
  115. package/lib/utils/decorators.d.ts +4 -0
  116. package/{ekgip-dd-lib-0.0.1.tgz → morozeckiy-dd-lib-0.1.3.tgz} +0 -0
  117. package/package.json +16 -3
  118. package/public-api.d.ts +30 -0
  119. package/ng-package.json +0 -8
  120. package/src/lib/common/lib-common-button.ts +0 -34
  121. package/src/lib/common/lib-common-input-text.ts +0 -154
  122. package/src/lib/core/dialog/dialog-config.ts +0 -19
  123. package/src/lib/core/dialog/dialog-container.component.ts +0 -38
  124. package/src/lib/core/dialog/dialog-ref.ts +0 -28
  125. package/src/lib/core/dialog/dialog.service.ts +0 -144
  126. package/src/lib/core/directives/auto-height.directive.ts +0 -29
  127. package/src/lib/core/directives/click-outside.directive.ts +0 -33
  128. package/src/lib/core/directives/counter.directive.ts +0 -54
  129. package/src/lib/core/directives/declension.directive.ts +0 -29
  130. package/src/lib/core/directives/resize-textarea.directive.ts +0 -16
  131. package/src/lib/core/directives/triangle.directive.ts +0 -56
  132. package/src/lib/core/index.ts +0 -27
  133. package/src/lib/core/pipes/filter-tabs.pipe.ts +0 -25
  134. package/src/lib/core/pipes/filter.pipe.ts +0 -36
  135. package/src/lib/core/pipes/highlight.pipe.ts +0 -17
  136. package/src/lib/core/pipes/reverse.pipe.ts +0 -11
  137. package/src/lib/core/pipes/safe.pipe.ts +0 -37
  138. package/src/lib/core/services/date.service.ts +0 -153
  139. package/src/lib/core/services/destroy.service.ts +0 -10
  140. package/src/lib/core/services/fetcher.service.ts +0 -109
  141. package/src/lib/core/services/interceptors.service.ts +0 -26
  142. package/src/lib/core/services/svg-icons.service.ts +0 -25
  143. package/src/lib/core/services/theme-constructor.service.ts +0 -68
  144. package/src/lib/core/services/validators.service.ts +0 -73
  145. package/src/lib/core/tools.ts +0 -159
  146. package/src/lib/core/tooltip/tooltip.component.html +0 -10
  147. package/src/lib/core/tooltip/tooltip.component.scss +0 -59
  148. package/src/lib/core/tooltip/tooltip.component.ts +0 -27
  149. package/src/lib/core/tooltip/tooltip.directive.ts +0 -137
  150. package/src/lib/core/utils.ts +0 -28
  151. package/src/lib/lib-accordion/lib-accordion.component.html +0 -15
  152. package/src/lib/lib-accordion/lib-accordion.component.scss +0 -23
  153. package/src/lib/lib-accordion/lib-accordion.component.ts +0 -17
  154. package/src/lib/lib-back-button/lib-back-button.component.html +0 -4
  155. package/src/lib/lib-back-button/lib-back-button.component.scss +0 -3
  156. package/src/lib/lib-back-button/lib-back-button.component.ts +0 -31
  157. package/src/lib/lib-button/lib-button.component.html +0 -30
  158. package/src/lib/lib-button/lib-button.component.scss +0 -89
  159. package/src/lib/lib-button/lib-button.component.ts +0 -33
  160. package/src/lib/lib-calendar/lib-calendar.component.html +0 -64
  161. package/src/lib/lib-calendar/lib-calendar.component.scss +0 -88
  162. package/src/lib/lib-calendar/lib-calendar.component.ts +0 -227
  163. package/src/lib/lib-card/lib-card.component.html +0 -23
  164. package/src/lib/lib-card/lib-card.component.scss +0 -64
  165. package/src/lib/lib-card/lib-card.component.ts +0 -32
  166. package/src/lib/lib-checkbox/lib-checkbox.component.html +0 -15
  167. package/src/lib/lib-checkbox/lib-checkbox.component.scss +0 -80
  168. package/src/lib/lib-checkbox/lib-checkbox.component.ts +0 -67
  169. package/src/lib/lib-comment-input/lib-comment-input.component.html +0 -32
  170. package/src/lib/lib-comment-input/lib-comment-input.component.scss +0 -28
  171. package/src/lib/lib-comment-input/lib-comment-input.component.ts +0 -20
  172. package/src/lib/lib-file-upload/lib-file-upload.component.html +0 -14
  173. package/src/lib/lib-file-upload/lib-file-upload.component.scss +0 -3
  174. package/src/lib/lib-file-upload/lib-file-upload.component.ts +0 -26
  175. package/src/lib/lib-filter-button/lib-filter-button.component.html +0 -46
  176. package/src/lib/lib-filter-button/lib-filter-button.component.scss +0 -62
  177. package/src/lib/lib-filter-button/lib-filter-button.component.ts +0 -45
  178. package/src/lib/lib-image-loader/lib-image-loader.component.html +0 -17
  179. package/src/lib/lib-image-loader/lib-image-loader.component.scss +0 -6
  180. package/src/lib/lib-image-loader/lib-image-loader.component.ts +0 -16
  181. package/src/lib/lib-input/lib-input.component.html +0 -32
  182. package/src/lib/lib-input/lib-input.component.scss +0 -72
  183. package/src/lib/lib-input/lib-input.component.ts +0 -62
  184. package/src/lib/lib-loader/lib-loader.component.html +0 -29
  185. package/src/lib/lib-loader/lib-loader.component.scss +0 -26
  186. package/src/lib/lib-loader/lib-loader.component.ts +0 -13
  187. package/src/lib/lib-period/lib-period.component.html +0 -41
  188. package/src/lib/lib-period/lib-period.component.scss +0 -77
  189. package/src/lib/lib-period/lib-period.component.ts +0 -131
  190. package/src/lib/lib-radio/lib-radio.component.html +0 -22
  191. package/src/lib/lib-radio/lib-radio.component.scss +0 -113
  192. package/src/lib/lib-radio/lib-radio.component.ts +0 -78
  193. package/src/lib/lib-search-input/lib-search-input.component.html +0 -48
  194. package/src/lib/lib-search-input/lib-search-input.component.scss +0 -86
  195. package/src/lib/lib-search-input/lib-search-input.component.ts +0 -94
  196. package/src/lib/lib-select/lib-select.component.html +0 -83
  197. package/src/lib/lib-select/lib-select.component.scss +0 -130
  198. package/src/lib/lib-select/lib-select.component.ts +0 -152
  199. package/src/lib/lib-skeleton/lib-skeleton.component.html +0 -11
  200. package/src/lib/lib-skeleton/lib-skeleton.component.scss +0 -36
  201. package/src/lib/lib-skeleton/lib-skeleton.component.ts +0 -41
  202. package/src/lib/lib-sort/lib-sort.component.html +0 -21
  203. package/src/lib/lib-sort/lib-sort.component.scss +0 -21
  204. package/src/lib/lib-sort/lib-sort.component.ts +0 -52
  205. package/src/lib/lib-step/lib-step.component.html +0 -4
  206. package/src/lib/lib-step/lib-step.component.scss +0 -23
  207. package/src/lib/lib-step/lib-step.component.ts +0 -14
  208. package/src/lib/lib-svg/lib-svg.component.html +0 -15
  209. package/src/lib/lib-svg/lib-svg.component.scss +0 -81
  210. package/src/lib/lib-svg-icon/lib-svg-icon.component.css +0 -0
  211. package/src/lib/lib-svg-icon/lib-svg-icon.component.ts +0 -58
  212. package/src/lib/lib-tabs-fragment/lib-tabs-fragment.component.html +0 -12
  213. package/src/lib/lib-tabs-fragment/lib-tabs-fragment.component.scss +0 -19
  214. package/src/lib/lib-tabs-fragment/lib-tabs-fragment.component.ts +0 -88
  215. package/src/lib/lib-textarea/lib-textarea.component.html +0 -37
  216. package/src/lib/lib-textarea/lib-textarea.component.scss +0 -77
  217. package/src/lib/lib-textarea/lib-textarea.component.ts +0 -49
  218. package/src/lib/toast/toast-base/toast-base.component.html +0 -7
  219. package/src/lib/toast/toast-base/toast-base.component.scss +0 -44
  220. package/src/lib/toast/toast-base/toast-base.component.ts +0 -38
  221. package/src/lib/toast/toast-placeholder/toast-placeholder.component.ts +0 -20
  222. package/src/lib/toast/toast.service.ts +0 -130
  223. package/src/lib/utils/decorators.ts +0 -124
  224. package/src/public-api.ts +0 -35
  225. package/tsconfig.lib.json +0 -14
  226. package/tsconfig.lib.prod.json +0 -10
  227. package/tsconfig.spec.json +0 -14
package/index.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@morozeckiy/dd-lib" />
5
+ export * from './public-api';
@@ -0,0 +1,20 @@
1
+ import { ElementRef, EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare abstract class LibCommonButtonComponent {
4
+ width: string | undefined;
5
+ height: string | undefined;
6
+ size: 'md' | 'lg' | '';
7
+ fontSize: number | null | undefined;
8
+ autofocus: boolean;
9
+ btnColor: 'white' | 'green' | 'red' | 'transparent' | 'dark';
10
+ active: boolean;
11
+ disabled: boolean | null;
12
+ showLoader: null | boolean | undefined;
13
+ buttonType: 'submit' | 'reset' | 'button';
14
+ content: ElementRef | undefined;
15
+ button: ElementRef | undefined;
16
+ clickEvent: EventEmitter<null>;
17
+ onClick(event: Event): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibCommonButtonComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibCommonButtonComponent, "ng-component", never, { "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "size": { "alias": "size"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "btnColor": { "alias": "btnColor"; "required": false; }; "active": { "alias": "active"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showLoader": { "alias": "showLoader"; "required": false; }; "buttonType": { "alias": "buttonType"; "required": false; }; }, { "clickEvent": "clickEvent"; }, never, never, false, never>;
20
+ }
@@ -0,0 +1,53 @@
1
+ import { ChangeDetectorRef, ElementRef, EventEmitter } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare abstract class LibCommonInputTextComponent {
5
+ protected inputSearchElement: ElementRef<HTMLInputElement> | undefined;
6
+ protected inputElement: ElementRef<HTMLInputElement> | undefined;
7
+ protected textAreaElement: ElementRef<HTMLTextAreaElement> | undefined;
8
+ name: string | undefined;
9
+ label: string | undefined;
10
+ formControlName: string | undefined;
11
+ type: 'password' | 'email' | 'number' | 'text' | undefined;
12
+ contextClass: string | undefined;
13
+ minlength: string | number | undefined;
14
+ maxlength: number;
15
+ placeholder?: string;
16
+ autocomplete?: string;
17
+ tabIndex?: string | number;
18
+ readOnly?: boolean;
19
+ required: boolean;
20
+ disabled: boolean;
21
+ commitOnInput: boolean;
22
+ clearable: boolean;
23
+ uppercase: boolean;
24
+ invalid: boolean;
25
+ errorText: string | undefined;
26
+ cleared: EventEmitter<void>;
27
+ focus: EventEmitter<any>;
28
+ blur: EventEmitter<any>;
29
+ get id(): string;
30
+ focused: boolean;
31
+ touched: boolean;
32
+ control: AbstractControl | undefined | null;
33
+ value: string | undefined;
34
+ changeDetection: ChangeDetectorRef;
35
+ protected destroyed: boolean;
36
+ protected onTouchedCallback: (() => void) | undefined;
37
+ private _ID;
38
+ protected constructor(changeDetection: ChangeDetectorRef);
39
+ handleInput(_e: Event): void;
40
+ notifyFocusEvent(e: Event): void;
41
+ handleBlur(): void;
42
+ handleFocus(): void;
43
+ returnFocus(e?: Event): void;
44
+ loseFocus(): void;
45
+ forceChange(): void;
46
+ registerOnChange(fn: any): void;
47
+ registerOnTouched(fn: any): void;
48
+ setDisabledState(isDisabled: boolean): void;
49
+ handleChange(): void;
50
+ commit(_value: string | null | undefined): void;
51
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibCommonInputTextComponent, never>;
52
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibCommonInputTextComponent, "dd-lib-common-input", never, { "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "type": { "alias": "type"; "required": false; }; "contextClass": { "alias": "contextClass"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "commitOnInput": { "alias": "commitOnInput"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "uppercase": { "alias": "uppercase"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; }, { "cleared": "cleared"; "focus": "focus"; "blur": "blur"; }, never, never, false, never>;
53
+ }
@@ -0,0 +1,14 @@
1
+ import { InjectionToken, ViewContainerRef } from '@angular/core';
2
+ export declare const DIALOG_CONFIG: InjectionToken<DialogConfig<any>>;
3
+ export declare class DialogConfig<D = any> {
4
+ hasBackdrop: boolean;
5
+ backdropClass: string;
6
+ dialogClass: string;
7
+ closeOnBackdropClick: boolean;
8
+ closeOnEsc: boolean;
9
+ hasScroll: boolean;
10
+ autoFocus: boolean;
11
+ viewContainerRef: ViewContainerRef | undefined;
12
+ context: D | undefined;
13
+ constructor(config: Partial<DialogConfig>);
14
+ }
@@ -0,0 +1,18 @@
1
+ import { ComponentRef, ElementRef, EmbeddedViewRef } from '@angular/core';
2
+ import { CdkPortalOutlet, ComponentPortal, TemplatePortal } from '@angular/cdk/portal';
3
+ import { DialogConfig } from './dialog-config';
4
+ import { FocusTrap, FocusTrapFactory } from '@angular/cdk/a11y';
5
+ import * as i0 from "@angular/core";
6
+ export declare class DialogContainerComponent {
7
+ protected config: DialogConfig;
8
+ protected elementRef: ElementRef;
9
+ protected focusTrapFactory: FocusTrapFactory;
10
+ portalOutlet: CdkPortalOutlet | undefined;
11
+ protected focusTrap: FocusTrap | undefined;
12
+ constructor(config: DialogConfig, elementRef: ElementRef, focusTrapFactory: FocusTrapFactory);
13
+ ngOnInit(): void;
14
+ attachComponentPortal<T>(portal: ComponentPortal<T>): ComponentRef<T>;
15
+ attachTemplatePortal<C>(portal: TemplatePortal<C>): EmbeddedViewRef<C>;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogContainerComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogContainerComponent, "dd-dialog-container", never, {}, {}, never, never, true, never>;
18
+ }
@@ -0,0 +1,18 @@
1
+ import { ComponentRef } from '@angular/core';
2
+ import { Observable, Subject } from 'rxjs';
3
+ import { OverlayRef } from '@angular/cdk/overlay';
4
+ export declare class DDDialogRef<T> {
5
+ protected overlayRef: OverlayRef;
6
+ componentRef: ComponentRef<T> | undefined;
7
+ /**
8
+ * Stream of backdrop click events.
9
+ * */
10
+ readonly onBackdropClick: Observable<MouseEvent>;
11
+ protected onClose$: Subject<any>;
12
+ readonly onClose: Observable<any>;
13
+ constructor(overlayRef: OverlayRef);
14
+ /**
15
+ * Hides dialog.
16
+ * */
17
+ close(res?: any): void;
18
+ }
@@ -0,0 +1,28 @@
1
+ import { ComponentFactoryResolver, Injector, TemplateRef, Type } from '@angular/core';
2
+ import { DDDialogRef as DialogRef } from './dialog-ref';
3
+ import { DialogConfig } from './dialog-config';
4
+ import { Overlay, OverlayRef, PositionStrategy, ScrollStrategy } from '@angular/cdk/overlay';
5
+ import { ComponentPortal, TemplatePortal } from '@angular/cdk/portal';
6
+ import { DialogContainerComponent } from './dialog-container.component';
7
+ import * as i0 from "@angular/core";
8
+ export declare class DialogService {
9
+ protected document: Document;
10
+ protected globalConfig: DialogConfig;
11
+ protected overlay: Overlay;
12
+ protected injector: Injector;
13
+ protected cfr: ComponentFactoryResolver;
14
+ dialogRef: DialogRef<any> | undefined;
15
+ constructor(document: Document, globalConfig: DialogConfig, overlay: Overlay, injector: Injector, cfr: ComponentFactoryResolver);
16
+ open<T, R = any>(content: Type<T> | TemplateRef<T>, userConfig?: Partial<DialogConfig<Partial<R> | string>>): DialogRef<T>;
17
+ protected createOverlay(config: DialogConfig): OverlayRef;
18
+ protected createPositionStrategy(): PositionStrategy;
19
+ protected createScrollStrategy(hasScroll: boolean): ScrollStrategy;
20
+ protected createContainer(config: DialogConfig, overlayRef: OverlayRef): DialogContainerComponent;
21
+ protected createInjector(config: DialogConfig): Injector;
22
+ protected createContent<T>(config: DialogConfig, content: Type<T> | TemplateRef<T>, container: DialogContainerComponent, dialogRef: DialogRef<T>): void;
23
+ protected createTemplatePortal<T>(config: DialogConfig, content: TemplateRef<T>, dialogRef: DialogRef<T>): TemplatePortal;
24
+ protected createComponentPortal<T>(config: DialogConfig, content: Type<T>, dialogRef: DialogRef<T>): ComponentPortal<T>;
25
+ protected registerCloseListeners<T>(config: DialogConfig, overlayRef: OverlayRef, dialogRef: DialogRef<T>): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, never>;
27
+ static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
28
+ }
@@ -0,0 +1,11 @@
1
+ import { ElementRef, OnInit, Renderer2 } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AutoHeightDirective implements OnInit {
4
+ private el;
5
+ private rdr;
6
+ ddAutoHeight: number | undefined;
7
+ constructor(el: ElementRef, rdr: Renderer2);
8
+ ngOnInit(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutoHeightDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AutoHeightDirective, "[ddAutoHeight]", never, { "ddAutoHeight": { "alias": "ddAutoHeight"; "required": false; }; }, {}, never, never, true, never>;
11
+ }
@@ -0,0 +1,11 @@
1
+ import { ElementRef, EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ClickOutsideDirective {
4
+ private el;
5
+ elements: string[] | undefined;
6
+ ddClickOutside: EventEmitter<any>;
7
+ constructor(el: ElementRef);
8
+ onClick(targetElement: Event): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClickOutsideDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ClickOutsideDirective, "[ddClickOutside]", never, { "elements": { "alias": "elements"; "required": false; }; }, { "ddClickOutside": "ddClickOutside"; }, never, never, true, never>;
11
+ }
@@ -0,0 +1,11 @@
1
+ import { ElementRef, OnChanges, SimpleChanges } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CounterDirective implements OnChanges {
4
+ private el;
5
+ ddCounter: number | undefined;
6
+ needPositive: boolean;
7
+ constructor(el: ElementRef);
8
+ ngOnChanges(change: SimpleChanges): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<CounterDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CounterDirective, "[ddCounter]", never, { "ddCounter": { "alias": "ddCounter"; "required": false; }; "needPositive": { "alias": "needPositive"; "required": false; }; }, {}, never, never, true, never>;
11
+ }
@@ -0,0 +1,13 @@
1
+ import { ElementRef, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DeclensionDirective implements OnInit {
4
+ private el;
5
+ ddDeclension: string[];
6
+ count: number;
7
+ whitespace: boolean;
8
+ needCount: boolean;
9
+ constructor(el: ElementRef);
10
+ ngOnInit(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<DeclensionDirective, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DeclensionDirective, "[ddDeclension]", never, { "ddDeclension": { "alias": "ddDeclension"; "required": false; }; "count": { "alias": "count"; "required": false; }; "whitespace": { "alias": "whitespace"; "required": false; }; "needCount": { "alias": "needCount"; "required": false; }; }, {}, never, never, true, never>;
13
+ }
@@ -0,0 +1,10 @@
1
+ import { ElementRef, Renderer2 } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ResizeTextareaDirective {
4
+ private el;
5
+ private rdr;
6
+ constructor(el: ElementRef, rdr: Renderer2);
7
+ onKeyup(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ResizeTextareaDirective, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ResizeTextareaDirective, "[ddResizeTextarea]", never, {}, {}, never, never, true, never>;
10
+ }
@@ -0,0 +1,16 @@
1
+ import { ElementRef, OnInit, Renderer2 } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TriangleDirective implements OnInit {
4
+ private rdr;
5
+ private el;
6
+ width: number;
7
+ height: number;
8
+ fill: string;
9
+ stroke: string;
10
+ points: string;
11
+ drTriangle: 'top' | 'left' | 'right' | 'bottom' | 'top-left';
12
+ constructor(rdr: Renderer2, el: ElementRef);
13
+ ngOnInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<TriangleDirective, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TriangleDirective, "[ddTriangle]", never, { "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "stroke": { "alias": "stroke"; "required": false; }; "points": { "alias": "points"; "required": false; }; "drTriangle": { "alias": "drTriangle"; "required": false; }; }, {}, never, never, true, never>;
16
+ }
@@ -0,0 +1,20 @@
1
+ export * from './services/theme-constructor.service';
2
+ export * from './services/date.service';
3
+ export * from './services/svg-icons.service';
4
+ export * from './services/destroy.service';
5
+ export * from './services/interceptors.service';
6
+ export * from './services/validators.service';
7
+ export * from './services/fetcher.service';
8
+ export * from './pipes/filter.pipe';
9
+ export * from './pipes/highlight.pipe';
10
+ export * from './pipes/safe.pipe';
11
+ export * from './pipes/reverse.pipe';
12
+ export * from './pipes/filter-tabs.pipe';
13
+ export * from './directives/auto-height.directive';
14
+ export * from './directives/counter.directive';
15
+ export * from './directives/declension.directive';
16
+ export * from './directives/click-outside.directive';
17
+ export * from './directives/resize-textarea.directive';
18
+ export * from './tooltip/tooltip.directive';
19
+ export * from './tooltip/tooltip.component';
20
+ export * from './dialog/dialog.service';
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FilterTabsPipe implements PipeTransform {
4
+ transform(arr: any[] | null, tab?: number | null | undefined): any[];
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterTabsPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<FilterTabsPipe, "filterTabs", true>;
7
+ }
@@ -0,0 +1,12 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FilterPipe implements PipeTransform {
4
+ transform(value: any[], args?: number): any;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<FilterPipe, "filter", true>;
7
+ }
8
+ export declare class FilterByKeyPipe<T> implements PipeTransform {
9
+ transform(arr: any, fn: any): any[];
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterByKeyPipe<any>, never>;
11
+ static ɵpipe: i0.ɵɵPipeDeclaration<FilterByKeyPipe<any>, "filterByKey", true>;
12
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class HighlightPipe implements PipeTransform {
4
+ transform(name: string, val?: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<HighlightPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<HighlightPipe, "highlight", true>;
7
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ReversePipe implements PipeTransform {
4
+ transform(value: any[], sort: string): any[];
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReversePipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<ReversePipe, "reverse", true>;
7
+ }
@@ -0,0 +1,10 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { DomSanitizer, SafeHtml, SafeResourceUrl, SafeScript, SafeStyle, SafeUrl } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SafePipe implements PipeTransform {
5
+ protected sanitizer: DomSanitizer;
6
+ constructor(sanitizer: DomSanitizer);
7
+ transform(value: string, type: string): SafeHtml | SafeStyle | SafeScript | SafeUrl | SafeResourceUrl;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SafePipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<SafePipe, "safe", true>;
10
+ }
@@ -0,0 +1,41 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare type GetDateMethod = () => Date;
3
+ export declare type PeriodName = 'day' | 'week' | 'month' | 'month_3' | 'half_year' | 'year' | 'calendar';
4
+ export declare interface GetDateBy {
5
+ day?: GetDateMethod;
6
+ week?: GetDateMethod;
7
+ month?: GetDateMethod;
8
+ month_3?: GetDateMethod;
9
+ half_year?: GetDateMethod;
10
+ year?: GetDateMethod;
11
+ calendar?: GetDateMethod;
12
+ }
13
+ export declare type DateTypes = keyof GetDateBy;
14
+ export declare interface TimeDate {
15
+ time: string;
16
+ }
17
+ export declare interface CommonDateData {
18
+ title: string;
19
+ active: boolean;
20
+ name: PeriodName;
21
+ visible: string[];
22
+ }
23
+ export declare type PeriodMenuDate = TimeDate & CommonDateData;
24
+ export declare const DEFAULT_FORMAT = "yyyy-MM-dd";
25
+ export interface IDaysInMonth {
26
+ prevDays: number[];
27
+ days: number[];
28
+ lastDays: number[];
29
+ }
30
+ export declare class DateService {
31
+ private commonDateDataBy;
32
+ private getDateBy;
33
+ getFormattedDate(dateType: keyof GetDateBy, f?: string): string;
34
+ getPeriodMenuDate(dateType: DateTypes, f?: string): TimeDate & CommonDateData;
35
+ getPeriodMenuDateRange(dateTypes: DateTypes[], f?: string): PeriodMenuDate[];
36
+ getPeriodTime(name: string): PeriodMenuDate;
37
+ getPeriodMenu(activePeriodName?: DateTypes): PeriodMenuDate[];
38
+ getDaysInMonth(month: number, year: number): IDaysInMonth;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateService, never>;
40
+ static ɵprov: i0.ɵɵInjectableDeclaration<DateService>;
41
+ }
@@ -0,0 +1,8 @@
1
+ import { OnDestroy } from '@angular/core';
2
+ import { Subject } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DestroyService extends Subject<void> implements OnDestroy {
5
+ ngOnDestroy(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DestroyService, never>;
7
+ static ɵprov: i0.ɵɵInjectableDeclaration<DestroyService>;
8
+ }
@@ -0,0 +1,29 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export interface HttpIResponse<T> {
5
+ error: string;
6
+ errorCode: string;
7
+ message: null | string;
8
+ redirect: null | string;
9
+ systemMessage: null | string;
10
+ result: 'OK' | 'ERROR' | 'FAIL';
11
+ value: T;
12
+ }
13
+ export declare class FetcherService {
14
+ private http;
15
+ private apiUrl;
16
+ private readonly payloadMethods;
17
+ constructor(http: HttpClient, apiUrl?: string);
18
+ get<R>(urlParts: string, options?: any, urlId?: string | number): Observable<R>;
19
+ post<R>(urlParts: string[] | string, data?: any, options?: any): Observable<R>;
20
+ put<R>(urlParts: string[] | string, options: any, data: any): Observable<any>;
21
+ delete<R>(urlParts: string[] | string, options?: any): Observable<R>;
22
+ /** перегоняем объкты в форм дату*/
23
+ createFormData(form: {
24
+ [x: string]: any;
25
+ }): FormData;
26
+ private request;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<FetcherService, never>;
28
+ static ɵprov: i0.ɵɵInjectableDeclaration<FetcherService>;
29
+ }
@@ -0,0 +1,12 @@
1
+ import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { Router } from '@angular/router';
4
+ import * as i0 from "@angular/core";
5
+ export declare class InterceptorsService implements HttpInterceptor {
6
+ private router;
7
+ constructor(router: Router);
8
+ /** перехватчик состояния запросов к api */
9
+ intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<InterceptorsService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<InterceptorsService>;
12
+ }
@@ -0,0 +1,9 @@
1
+ import { SvgIcon } from "@mosreg/assets/svg-icons";
2
+ import * as i0 from "@angular/core";
3
+ export declare class SvgIconsService {
4
+ private registry;
5
+ registerIcons(icons: SvgIcon[]): void;
6
+ getIcon(iconName: string): string | undefined;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<SvgIconsService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<SvgIconsService>;
9
+ }
@@ -0,0 +1,27 @@
1
+ import { Renderer2, RendererFactory2 } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ThemeConstructorService {
5
+ private rendererFactory;
6
+ get getTheme(): boolean;
7
+ isDarkTheme: Observable<boolean>;
8
+ private readonly renderer;
9
+ private themeConfigurator;
10
+ constructor(rendererFactory: RendererFactory2);
11
+ setThemeConfiguratorRoot(document: Document): void;
12
+ changeTheme(darkMode: boolean): void;
13
+ switchTheme(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<ThemeConstructorService, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<ThemeConstructorService>;
16
+ }
17
+ export declare class ThemeConfigurator {
18
+ private document;
19
+ private renderer;
20
+ set theme(value: boolean);
21
+ get theme(): boolean;
22
+ private isDarkTheme$;
23
+ isDarkThemeObservable: Observable<boolean>;
24
+ constructor(document: Document, renderer: Renderer2);
25
+ switchTheme(): void;
26
+ setTheme(isDarkMode: boolean): void;
27
+ }
@@ -0,0 +1,18 @@
1
+ import { AbstractControl, ValidationErrors, Validators } from '@angular/forms';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ValidatorsService {
5
+ constructor();
6
+ /** валидатор совпадения пароллей. При использовании указывать поля pswd & confPswd*/
7
+ static passEqual(el: AbstractControl): ValidationErrors | null;
8
+ static passNotEqual(el: AbstractControl): ValidationErrors | null;
9
+ static wrongLogin(): ValidationErrors;
10
+ static wrongLoginOrPswd(): ValidationErrors;
11
+ static existLogin(): ValidationErrors;
12
+ /** валидатор имени*/
13
+ static getNameValid(): (typeof Validators.required)[];
14
+ /** валидатор email*/
15
+ static getMailValid(el?: AbstractControl): Observable<ValidationErrors | null>;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<ValidatorsService, never>;
17
+ static ɵprov: i0.ɵɵInjectableDeclaration<ValidatorsService>;
18
+ }
@@ -0,0 +1,16 @@
1
+ export declare function compare(field?: any, order?: number, ...args: undefined[]): any;
2
+ export declare function rndRgb(): string;
3
+ export declare function setMinDate(): Date;
4
+ export declare function isNil(value: any): value is null | undefined;
5
+ export declare function isString(value: any): value is string;
6
+ export declare function isObject(value: any): boolean;
7
+ export declare function getProperty(value: {
8
+ [key: string]: any;
9
+ }, key: string): any;
10
+ export declare function isMobile(): true | RegExpMatchArray | null;
11
+ export declare function Android(): boolean;
12
+ export declare function BlackBerry(): boolean;
13
+ export declare function iOS(): boolean;
14
+ export declare function Opera(): boolean;
15
+ export declare function Windows(): true | RegExpMatchArray | null;
16
+ export declare function dataURLtoFile(dataUrl: string, filename: string): File;
@@ -0,0 +1,12 @@
1
+ import { InjectionToken, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export type TooltipData = string | TemplateRef<void>;
4
+ export declare const TOOLTIP_DATA: InjectionToken<TooltipData>;
5
+ export declare class TooltipComponent {
6
+ tooltipData: TooltipData;
7
+ get asString(): string | false;
8
+ get asTemplate(): TemplateRef<void> | false;
9
+ constructor(tooltipData: TooltipData);
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "dd-tooltip", never, {}, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,22 @@
1
+ import { ElementRef, OnDestroy, Renderer2, TemplateRef, ViewContainerRef } from '@angular/core';
2
+ import { Overlay } from '@angular/cdk/overlay';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TooltipDirective implements OnDestroy {
5
+ private element;
6
+ private overlay;
7
+ private viewContainer;
8
+ private rdr;
9
+ ddTooltip: string | TemplateRef<void>;
10
+ withClick: boolean;
11
+ private overlayRef;
12
+ constructor(element: ElementRef, overlay: Overlay, viewContainer: ViewContainerRef, rdr: Renderer2);
13
+ onClick(targetElement: Event): void;
14
+ showTooltipOnClick(): void;
15
+ showTooltip(): void;
16
+ hideTooltip(): void;
17
+ ngOnDestroy(): void;
18
+ private attachTooltip;
19
+ private getPositionStrategy;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, never>;
21
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[ddTooltip]", never, { "ddTooltip": { "alias": "ddTooltip"; "required": false; }; "withClick": { "alias": "withClick"; "required": false; }; }, {}, never, never, true, never>;
22
+ }
@@ -0,0 +1,8 @@
1
+ import { SafeHtml } from '@angular/platform-browser';
2
+ import * as i0 from "@angular/core";
3
+ export declare class LibAccordionComponent {
4
+ accTitle: string | SafeHtml | undefined;
5
+ showAccordionContent: boolean | undefined;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibAccordionComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibAccordionComponent, "dd-lib-accordion", never, { "accTitle": { "alias": "accTitle"; "required": false; }; }, {}, never, ["*"], true, never>;
8
+ }
@@ -0,0 +1,13 @@
1
+ import { Location } from '@angular/common';
2
+ import { Router } from '@angular/router';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LibBackButtonComponent {
5
+ private location;
6
+ private router;
7
+ backTitle: string;
8
+ rout: string | undefined;
9
+ constructor(location: Location, router: Router);
10
+ onBack(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibBackButtonComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibBackButtonComponent, "dd-lib-back-button", never, { "backTitle": { "alias": "backTitle"; "required": false; }; "rout": { "alias": "rout"; "required": false; }; }, {}, never, never, true, never>;
13
+ }
@@ -0,0 +1,10 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { LibCommonButtonComponent } from '../common/lib-common-button';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LibButtonComponent extends LibCommonButtonComponent implements AfterViewInit {
5
+ noPadding: boolean | undefined;
6
+ loaderColor: string;
7
+ ngAfterViewInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibButtonComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibButtonComponent, "dd-lib-button", never, { "noPadding": { "alias": "noPadding"; "required": false; }; "loaderColor": { "alias": "loaderColor"; "required": false; }; }, {}, never, ["*"], true, never>;
10
+ }