ng-tailwind 6.0.1 → 6.0.2

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 (165) hide show
  1. package/components/ngt-action/ngt-action.component.d.ts +1 -1
  2. package/components/ngt-button/ngt-button.component.d.ts +1 -1
  3. package/components/ngt-checkbox/ngt-checkbox.component.d.ts +1 -1
  4. package/components/ngt-content/ngt-content.component.d.ts +1 -1
  5. package/components/ngt-context-menu/ngt-context-menu.directive.d.ts +1 -1
  6. package/components/ngt-datatable/ngt-datatable.component.d.ts +1 -1
  7. package/components/ngt-datatable/ngt-td-check/ngt-td-check.component.d.ts +1 -1
  8. package/components/ngt-datatable/ngt-th/ngt-th.component.d.ts +1 -1
  9. package/components/ngt-datatable/ngt-tr/ngt-tr.component.d.ts +1 -1
  10. package/components/ngt-date/ngt-date.component.d.ts +3 -6
  11. package/components/ngt-date/ngt-date.module.d.ts +4 -5
  12. package/components/ngt-dropdown/ngt-dropdown.component.d.ts +1 -1
  13. package/components/ngt-dropzone/ngt-dropzone-file-viewer/ngt-dropzone-file-viewer.component.d.ts +1 -3
  14. package/components/ngt-dropzone/ngt-dropzone-view/ngt-dropzone-view.component.d.ts +1 -1
  15. package/components/ngt-dropzone/ngt-dropzone.component.d.ts +1 -1
  16. package/components/ngt-dropzone/ngt-dropzone.module.d.ts +2 -3
  17. package/components/ngt-floating-button/ngt-floating-button.component.d.ts +1 -1
  18. package/components/ngt-form/ngt-form-validation-message/ngt-form-validation-message.component.d.ts +1 -1
  19. package/components/ngt-form/ngt-form.component.d.ts +1 -1
  20. package/components/ngt-header-nav/ngt-header-nav.component.d.ts +1 -1
  21. package/components/ngt-helper/ngt-helper.component.d.ts +1 -1
  22. package/components/ngt-input/ngt-input.component.d.ts +1 -1
  23. package/components/ngt-modal/ngt-modal-body/ngt-modal-body.component.d.ts +1 -1
  24. package/components/ngt-modal/ngt-modal-footer/ngt-modal-footer.component.d.ts +1 -1
  25. package/components/ngt-modal/ngt-modal-header/ngt-modal-header.component.d.ts +1 -1
  26. package/components/ngt-modal/ngt-modal.component.d.ts +1 -1
  27. package/components/ngt-multi-select/ngt-multi-select.component.d.ts +1 -1
  28. package/components/ngt-pagination/ngt-pagination.component.d.ts +1 -1
  29. package/components/ngt-popover/ngt-popover.component.d.ts +1 -1
  30. package/components/ngt-popover/ngt-popover.directive.d.ts +1 -1
  31. package/components/ngt-portlet/ngt-portlet-header/ngt-portlet-header.component.d.ts +1 -1
  32. package/components/ngt-portlet/ngt-portlet.component.d.ts +1 -1
  33. package/components/ngt-radio-button/ngt-radio-button.component.d.ts +1 -1
  34. package/components/ngt-section/ngt-section.component.d.ts +1 -1
  35. package/components/ngt-select/ngt-select.component.d.ts +1 -1
  36. package/components/ngt-shining/ngt-shining.component.d.ts +1 -1
  37. package/components/ngt-sidenav/ngt-sidenav.component.d.ts +1 -1
  38. package/components/ngt-slider/ngt-slider.component.d.ts +1 -1
  39. package/components/ngt-svg/ngt-svg.component.d.ts +1 -1
  40. package/components/ngt-tag/ngt-tag.component.d.ts +1 -1
  41. package/components/ngt-textarea/ngt-textarea.component.d.ts +1 -1
  42. package/components/ngt-validation/ngt-validation.component.d.ts +1 -1
  43. package/directives/ngt-stylizable/ngt-stylizable.directive.d.ts +1 -1
  44. package/{esm2020 → esm2022}/components/ngt-action/ngt-action.component.mjs +4 -4
  45. package/{esm2020 → esm2022}/components/ngt-action/ngt-action.module.mjs +9 -9
  46. package/{esm2020 → esm2022}/components/ngt-button/ngt-button.component.mjs +4 -4
  47. package/{esm2020 → esm2022}/components/ngt-button/ngt-button.module.mjs +9 -9
  48. package/esm2022/components/ngt-checkbox/ngt-checkbox.component.mjs +192 -0
  49. package/{esm2020 → esm2022}/components/ngt-checkbox/ngt-checkbox.module.mjs +9 -9
  50. package/{esm2020 → esm2022}/components/ngt-content/ngt-content.component.mjs +4 -4
  51. package/{esm2020 → esm2022}/components/ngt-content/ngt-content.module.mjs +5 -5
  52. package/{esm2020 → esm2022}/components/ngt-context-menu/ngt-context-menu.component.mjs +4 -4
  53. package/{esm2020 → esm2022}/components/ngt-context-menu/ngt-context-menu.directive.mjs +4 -4
  54. package/{esm2020 → esm2022}/components/ngt-context-menu/ngt-context-menu.module.mjs +9 -9
  55. package/{esm2020 → esm2022}/components/ngt-datatable/ngt-datatable.component.mjs +4 -4
  56. package/{esm2020 → esm2022}/components/ngt-datatable/ngt-datatable.module.mjs +39 -39
  57. package/{esm2020 → esm2022}/components/ngt-datatable/ngt-tbody/ngt-tbody.component.mjs +4 -4
  58. package/{esm2020 → esm2022}/components/ngt-datatable/ngt-td/ngt-td.component.mjs +4 -4
  59. package/{esm2020 → esm2022}/components/ngt-datatable/ngt-td-check/ngt-td-check.component.mjs +4 -4
  60. package/{esm2020 → esm2022}/components/ngt-datatable/ngt-th/ngt-th.component.mjs +4 -4
  61. package/{esm2020 → esm2022}/components/ngt-datatable/ngt-th-check/ngt-th-check.component.mjs +4 -4
  62. package/{esm2020 → esm2022}/components/ngt-datatable/ngt-thead/ngt-thead.component.mjs +4 -4
  63. package/{esm2020 → esm2022}/components/ngt-datatable/ngt-tr/ngt-tr.component.mjs +5 -5
  64. package/esm2022/components/ngt-date/ngt-date.component.mjs +425 -0
  65. package/esm2022/components/ngt-date/ngt-date.module.mjs +36 -0
  66. package/{esm2020 → esm2022}/components/ngt-dropdown/ngt-dropdown-container/ngt-dropdown-container.component.mjs +4 -4
  67. package/esm2022/components/ngt-dropdown/ngt-dropdown.component.mjs +205 -0
  68. package/{esm2020 → esm2022}/components/ngt-dropdown/ngt-dropdown.module.mjs +5 -5
  69. package/esm2022/components/ngt-dropzone/custom-dropzone-preview/custom-dropzone-preview.component.mjs +54 -0
  70. package/esm2022/components/ngt-dropzone/ngt-dropzone-file-viewer/ngt-dropzone-file-viewer.component.mjs +61 -0
  71. package/{esm2020 → esm2022}/components/ngt-dropzone/ngt-dropzone-view/ngt-dropzone-view.component.mjs +4 -4
  72. package/{esm2020 → esm2022}/components/ngt-dropzone/ngt-dropzone.component.mjs +8 -8
  73. package/esm2022/components/ngt-dropzone/ngt-dropzone.module.mjs +55 -0
  74. package/esm2022/components/ngt-floating-button/ngt-floating-button.component.mjs +119 -0
  75. package/{esm2020 → esm2022}/components/ngt-floating-button/ngt-floating-button.module.mjs +9 -9
  76. package/{esm2020 → esm2022}/components/ngt-form/ngt-form-validation-message/ngt-form-validation-message.component.mjs +4 -4
  77. package/esm2022/components/ngt-form/ngt-form.component.mjs +207 -0
  78. package/{esm2020 → esm2022}/components/ngt-form/ngt-form.module.mjs +7 -7
  79. package/{esm2020 → esm2022}/components/ngt-header-nav/ngt-header-nav.component.mjs +4 -4
  80. package/{esm2020 → esm2022}/components/ngt-header-nav/ngt-header-nav.module.mjs +5 -5
  81. package/{esm2020 → esm2022}/components/ngt-helper/ngt-helper.component.mjs +4 -4
  82. package/{esm2020 → esm2022}/components/ngt-helper/ngt-helper.module.mjs +9 -9
  83. package/{esm2020 → esm2022}/components/ngt-input/ngt-input.component.mjs +8 -8
  84. package/{esm2020 → esm2022}/components/ngt-input/ngt-input.module.mjs +19 -19
  85. package/{esm2020 → esm2022}/components/ngt-modal/ngt-modal-body/ngt-modal-body.component.mjs +4 -4
  86. package/{esm2020 → esm2022}/components/ngt-modal/ngt-modal-footer/ngt-modal-footer.component.mjs +4 -4
  87. package/{esm2020 → esm2022}/components/ngt-modal/ngt-modal-header/ngt-modal-header.component.mjs +5 -5
  88. package/esm2022/components/ngt-modal/ngt-modal.component.mjs +122 -0
  89. package/{esm2020 → esm2022}/components/ngt-modal/ngt-modal.module.mjs +11 -11
  90. package/{esm2020 → esm2022}/components/ngt-multi-select/ngt-multi-select.component.mjs +8 -8
  91. package/{esm2020 → esm2022}/components/ngt-multi-select/ngt-multi-select.module.mjs +19 -19
  92. package/{esm2020 → esm2022}/components/ngt-pagination/ngt-pagination.component.mjs +4 -4
  93. package/{esm2020 → esm2022}/components/ngt-pagination/ngt-pagination.module.mjs +13 -13
  94. package/esm2022/components/ngt-popover/ngt-popover-tooltip/ngt-popover-tooltip.component.mjs +59 -0
  95. package/{esm2020 → esm2022}/components/ngt-popover/ngt-popover.component.mjs +4 -4
  96. package/{esm2020 → esm2022}/components/ngt-popover/ngt-popover.directive.mjs +4 -4
  97. package/{esm2020 → esm2022}/components/ngt-popover/ngt-popover.module.mjs +10 -10
  98. package/{esm2020 → esm2022}/components/ngt-portlet/ngt-portlet-body/ngt-portlet-body.component.mjs +4 -4
  99. package/{esm2020 → esm2022}/components/ngt-portlet/ngt-portlet-footer/ngt-portlet-footer.component.mjs +4 -4
  100. package/{esm2020 → esm2022}/components/ngt-portlet/ngt-portlet-header/ngt-portlet-header.component.mjs +4 -4
  101. package/esm2022/components/ngt-portlet/ngt-portlet.component.mjs +74 -0
  102. package/{esm2020 → esm2022}/components/ngt-portlet/ngt-portlet.module.mjs +15 -15
  103. package/{esm2020 → esm2022}/components/ngt-radio-button/ngt-radio-button-container/ngt-radio-button-container.component.mjs +4 -4
  104. package/{esm2020 → esm2022}/components/ngt-radio-button/ngt-radio-button.component.mjs +8 -8
  105. package/{esm2020 → esm2022}/components/ngt-radio-button/ngt-radio-button.module.mjs +9 -9
  106. package/esm2022/components/ngt-section/ngt-section.component.mjs +151 -0
  107. package/{esm2020 → esm2022}/components/ngt-section/ngt-section.module.mjs +11 -11
  108. package/{esm2020 → esm2022}/components/ngt-select/ngt-select.component.mjs +8 -8
  109. package/{esm2020 → esm2022}/components/ngt-select/ngt-select.directive.mjs +10 -10
  110. package/{esm2020 → esm2022}/components/ngt-select/ngt-select.module.mjs +25 -25
  111. package/{esm2020 → esm2022}/components/ngt-shining/ngt-shining.component.mjs +5 -5
  112. package/{esm2020 → esm2022}/components/ngt-shining/ngt-shining.module.mjs +5 -5
  113. package/{esm2020 → esm2022}/components/ngt-sidenav/ngt-sidenav.component.mjs +6 -6
  114. package/{esm2020 → esm2022}/components/ngt-sidenav/ngt-sidenav.module.mjs +5 -5
  115. package/{esm2020 → esm2022}/components/ngt-slider/ngt-slider.component.mjs +9 -9
  116. package/{esm2020 → esm2022}/components/ngt-slider/ngt-slider.module.mjs +7 -7
  117. package/{esm2020 → esm2022}/components/ngt-svg/ngt-svg.component.mjs +4 -4
  118. package/{esm2020 → esm2022}/components/ngt-svg/ngt-svg.module.mjs +8 -8
  119. package/{esm2020 → esm2022}/components/ngt-tag/ngt-tag.component.mjs +4 -4
  120. package/{esm2020 → esm2022}/components/ngt-tag/ngt-tag.module.mjs +7 -7
  121. package/{esm2020 → esm2022}/components/ngt-textarea/ngt-textarea.component.mjs +8 -8
  122. package/{esm2020 → esm2022}/components/ngt-textarea/ngt-textarea.module.mjs +17 -17
  123. package/{esm2020 → esm2022}/components/ngt-validation/ngt-validation.component.mjs +4 -4
  124. package/{esm2020 → esm2022}/components/ngt-validation/ngt-validation.module.mjs +5 -5
  125. package/{esm2020 → esm2022}/directives/ngt-stylizable/ngt-stylizable.directive.mjs +4 -4
  126. package/{esm2020 → esm2022}/directives/ngt-stylizable/ngt-stylizable.module.mjs +5 -5
  127. package/{fesm2020 → fesm2022}/ng-tailwind.mjs +631 -644
  128. package/fesm2022/ng-tailwind.mjs.map +1 -0
  129. package/package.json +6 -15
  130. package/esm2020/components/ngt-checkbox/ngt-checkbox.component.mjs +0 -192
  131. package/esm2020/components/ngt-date/ngt-date.component.mjs +0 -435
  132. package/esm2020/components/ngt-date/ngt-date.module.mjs +0 -40
  133. package/esm2020/components/ngt-dropdown/ngt-dropdown.component.mjs +0 -205
  134. package/esm2020/components/ngt-dropzone/custom-dropzone-preview/custom-dropzone-preview.component.mjs +0 -54
  135. package/esm2020/components/ngt-dropzone/ngt-dropzone-file-viewer/ngt-dropzone-file-viewer.component.mjs +0 -66
  136. package/esm2020/components/ngt-dropzone/ngt-dropzone.module.mjs +0 -55
  137. package/esm2020/components/ngt-floating-button/ngt-floating-button.component.mjs +0 -119
  138. package/esm2020/components/ngt-form/ngt-form.component.mjs +0 -207
  139. package/esm2020/components/ngt-modal/ngt-modal.component.mjs +0 -122
  140. package/esm2020/components/ngt-popover/ngt-popover-tooltip/ngt-popover-tooltip.component.mjs +0 -59
  141. package/esm2020/components/ngt-portlet/ngt-portlet.component.mjs +0 -74
  142. package/esm2020/components/ngt-section/ngt-section.component.mjs +0 -151
  143. package/fesm2015/ng-tailwind.mjs +0 -8913
  144. package/fesm2015/ng-tailwind.mjs.map +0 -1
  145. package/fesm2020/ng-tailwind.mjs.map +0 -1
  146. /package/{esm2020 → esm2022}/animations/ngt-angular-animations.mjs +0 -0
  147. /package/{esm2020 → esm2022}/base/ngt-base-ng-model.mjs +0 -0
  148. /package/{esm2020 → esm2022}/components/ngt-dropzone/ngt-dropzone.meta.mjs +0 -0
  149. /package/{esm2020 → esm2022}/enums/size.enum.mjs +0 -0
  150. /package/{esm2020 → esm2022}/helpers/enum/enum.mjs +0 -0
  151. /package/{esm2020 → esm2022}/helpers/form/form.mjs +0 -0
  152. /package/{esm2020 → esm2022}/helpers/input-mask/input-mask.helper.mjs +0 -0
  153. /package/{esm2020 → esm2022}/helpers/promise/promise-helper.mjs +0 -0
  154. /package/{esm2020 → esm2022}/helpers/routing/route.mjs +0 -0
  155. /package/{esm2020 → esm2022}/helpers/uuid.mjs +0 -0
  156. /package/{esm2020 → esm2022}/ng-tailwind.mjs +0 -0
  157. /package/{esm2020 → esm2022}/public-api.mjs +0 -0
  158. /package/{esm2020 → esm2022}/services/http/ngt-attachment-http.service.mjs +0 -0
  159. /package/{esm2020 → esm2022}/services/http/ngt-http-form.service.mjs +0 -0
  160. /package/{esm2020 → esm2022}/services/http/ngt-http-resource.service.mjs +0 -0
  161. /package/{esm2020 → esm2022}/services/http/ngt-http-validation.service.mjs +0 -0
  162. /package/{esm2020 → esm2022}/services/http/ngt-http.service.mjs +0 -0
  163. /package/{esm2020 → esm2022}/services/http/ngt-translate.service.mjs +0 -0
  164. /package/{esm2020 → esm2022}/services/ngt-stylizable/ngt-stylizable.service.mjs +0 -0
  165. /package/{esm2020 → esm2022}/services/validation/ngt-ability-validation.service.mjs +0 -0
@@ -26,5 +26,5 @@ export declare class NgtActionComponent implements OnDestroy {
26
26
  private isDisabledByParent;
27
27
  private destroySubscriptions;
28
28
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtActionComponent, [null, { optional: true; self: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }]>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtActionComponent, "ngt-action", never, { "href": "href"; "icon": "icon"; "ngtStyle": "ngtStyle"; "isDisabled": "isDisabled"; "forceEnable": "forceEnable"; }, {}, never, ["*", "*"], false, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtActionComponent, "ngt-action", never, { "href": { "alias": "href"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "ngtStyle": { "alias": "ngtStyle"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "forceEnable": { "alias": "forceEnable"; "required": false; }; }, {}, never, ["*", "*"], false, never>;
30
30
  }
@@ -31,5 +31,5 @@ export declare class NgtButtonComponent implements AfterViewInit, OnChanges, OnD
31
31
  private isDisabledByParent;
32
32
  private destroySubscriptions;
33
33
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtButtonComponent, [null, null, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; self: true; }]>;
34
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtButtonComponent, "ngt-button", never, { "href": "href"; "type": "type"; "link": "link"; "loading": "loading"; "isDisabled": "isDisabled"; "forceEnable": "forceEnable"; "noSubmit": "noSubmit"; }, {}, never, ["*"], false, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtButtonComponent, "ngt-button", never, { "href": { "alias": "href"; "required": false; }; "type": { "alias": "type"; "required": false; }; "link": { "alias": "link"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "forceEnable": { "alias": "forceEnable"; "required": false; }; "noSubmit": { "alias": "noSubmit"; "required": false; }; }, {}, never, ["*"], false, never>;
35
35
  }
@@ -43,7 +43,7 @@ export declare class NgtCheckboxComponent extends NgtBaseNgModel implements Afte
43
43
  private isDisabledByParent;
44
44
  private destroySubscriptions;
45
45
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtCheckboxComponent, [null, null, { optional: true; host: true; }, { optional: true; self: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }]>;
46
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtCheckboxComponent, "ngt-checkbox", never, { "label": "label"; "shining": "shining"; "isDisabled": "isDisabled"; "isClickDisabled": "isClickDisabled"; "name": "name"; "mode": "mode"; "helpTitle": "helpTitle"; "helpTextColor": "helpTextColor"; "helpText": "helpText"; "helperAutoXReverse": "helperAutoXReverse"; }, {}, never, never, false, never>;
46
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtCheckboxComponent, "ngt-checkbox", never, { "label": { "alias": "label"; "required": false; }; "shining": { "alias": "shining"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isClickDisabled": { "alias": "isClickDisabled"; "required": false; }; "name": { "alias": "name"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "helpTitle": { "alias": "helpTitle"; "required": false; }; "helpTextColor": { "alias": "helpTextColor"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "helperAutoXReverse": { "alias": "helperAutoXReverse"; "required": false; }; }, {}, never, never, false, never>;
47
47
  }
48
48
  export declare enum NgtCheckboxMode {
49
49
  DEFAULT = "DEFAULT",
@@ -8,5 +8,5 @@ export declare class NgtContentComponent {
8
8
  ngtStyle: NgtStylizableService;
9
9
  constructor(injector: Injector, tailStylizableDirective: NgtStylizableDirective);
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtContentComponent, [null, { optional: true; self: true; }]>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtContentComponent, "ngt-content", never, { "ngtStyle": "ngtStyle"; }, {}, never, ["*"], false, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtContentComponent, "ngt-content", never, { "ngtStyle": { "alias": "ngtStyle"; "required": false; }; }, {}, never, ["*"], false, never>;
12
12
  }
@@ -21,5 +21,5 @@ export declare class NgtContextMenuDirective implements OnDestroy {
21
21
  private bindSubscriptions;
22
22
  private destroy;
23
23
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtContextMenuDirective, never>;
24
- static ɵdir: i0.ɵɵDirectiveDeclaration<NgtContextMenuDirective, "[ngt-contextmenu]", never, { "ngtContextMenuOptions": "ngtContextMenuOptions"; "ngtContextMenuTemplate": "ngtContextMenuTemplate"; }, { "onNgtContextMenuClick": "onNgtContextMenuClick"; "onOpenNgtContextMenu": "onOpenNgtContextMenu"; }, never, never, false, never>;
24
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NgtContextMenuDirective, "[ngt-contextmenu]", never, { "ngtContextMenuOptions": { "alias": "ngtContextMenuOptions"; "required": false; }; "ngtContextMenuTemplate": { "alias": "ngtContextMenuTemplate"; "required": false; }; }, { "onNgtContextMenuClick": "onNgtContextMenuClick"; "onOpenNgtContextMenu": "onOpenNgtContextMenu"; }, never, never, false, never>;
25
25
  }
@@ -97,7 +97,7 @@ export declare class NgtDatatableComponent implements OnInit, OnDestroy {
97
97
  private isValidFilter;
98
98
  private destroySubscriptions;
99
99
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtDatatableComponent, [null, null, null, { optional: true; }]>;
100
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtDatatableComponent, "ngt-datatable", never, { "remoteResource": "remoteResource"; "type": "type"; "filterTagBgColor": "filterTagBgColor"; "filterTagMargin": "filterTagMargin"; "paginationMargin": "paginationMargin"; "inputSearch": "inputSearch"; "searchDelay": "searchDelay"; "searchTermMinLength": "searchTermMinLength"; "searchTermOnEnter": "searchTermOnEnter"; "defaultFilters": "defaultFilters"; "filtersDescription": "filtersDescription"; "canSelectAllRegisters": "canSelectAllRegisters"; }, { "onDataChange": "onDataChange"; "onClearFilter": "onClearFilter"; "onClearSelectedElements": "onClearSelectedElements"; "onSelectedElementsChange": "onSelectedElementsChange"; "onToogleAllCheckboxes": "onToogleAllCheckboxes"; "onToogleCheckbox": "onToogleCheckbox"; "onSelectAllRegisters": "onSelectAllRegisters"; "onOpenSearchModal": "onOpenSearchModal"; "onSearch": "onSearch"; }, never, ["*"], false, never>;
100
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtDatatableComponent, "ngt-datatable", never, { "remoteResource": { "alias": "remoteResource"; "required": false; }; "type": { "alias": "type"; "required": false; }; "filterTagBgColor": { "alias": "filterTagBgColor"; "required": false; }; "filterTagMargin": { "alias": "filterTagMargin"; "required": false; }; "paginationMargin": { "alias": "paginationMargin"; "required": false; }; "inputSearch": { "alias": "inputSearch"; "required": false; }; "searchDelay": { "alias": "searchDelay"; "required": false; }; "searchTermMinLength": { "alias": "searchTermMinLength"; "required": false; }; "searchTermOnEnter": { "alias": "searchTermOnEnter"; "required": false; }; "defaultFilters": { "alias": "defaultFilters"; "required": false; }; "filtersDescription": { "alias": "filtersDescription"; "required": false; }; "canSelectAllRegisters": { "alias": "canSelectAllRegisters"; "required": false; }; }, { "onDataChange": "onDataChange"; "onClearFilter": "onClearFilter"; "onClearSelectedElements": "onClearSelectedElements"; "onSelectedElementsChange": "onSelectedElementsChange"; "onToogleAllCheckboxes": "onToogleAllCheckboxes"; "onToogleCheckbox": "onToogleCheckbox"; "onSelectAllRegisters": "onSelectAllRegisters"; "onOpenSearchModal": "onOpenSearchModal"; "onSearch": "onSearch"; }, never, ["*"], false, never>;
101
101
  }
102
102
  export declare enum NgtDatatableType {
103
103
  REMOTE = "REMOTE",
@@ -25,5 +25,5 @@ export declare class NgtTdCheckComponent implements OnDestroy {
25
25
  private bindNgtStyle;
26
26
  private destroySubscriptions;
27
27
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtTdCheckComponent, [null, null, { optional: true; self: true; }, { optional: true; skipSelf: true; }]>;
28
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtTdCheckComponent, "[ngt-td-check]", never, { "reference": "reference"; "isDisabled": "isDisabled"; "checked": "checked"; }, { "onCheckboxInit": "onCheckboxInit"; }, never, ["*"], false, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtTdCheckComponent, "[ngt-td-check]", never, { "reference": { "alias": "reference"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "onCheckboxInit": "onCheckboxInit"; }, never, ["*"], false, never>;
29
29
  }
@@ -46,7 +46,7 @@ export declare class NgtThComponent implements OnChanges, OnDestroy {
46
46
  private bindNgtStyle;
47
47
  private destroySubscriptions;
48
48
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtThComponent, [null, null, { optional: true; self: true; }, { optional: true; skipSelf: true; }]>;
49
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtThComponent, "[ngt-th]", never, { "reference": "reference"; "sortReference": "sortReference"; "modalWidth": "modalWidth"; "searchModalOverflow": "searchModalOverflow"; "sortable": "sortable"; "searchable": "searchable"; "hasCustomSearch": "hasCustomSearch"; "searchLabel": "searchLabel"; "searchIcon": "searchIcon"; "sortableTooltip": "sortableTooltip"; }, { "onEnableSearch": "onEnableSearch"; }, never, ["*", "[customSearchHeader]", "[customSearch]"], false, never>;
49
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtThComponent, "[ngt-th]", never, { "reference": { "alias": "reference"; "required": false; }; "sortReference": { "alias": "sortReference"; "required": false; }; "modalWidth": { "alias": "modalWidth"; "required": false; }; "searchModalOverflow": { "alias": "searchModalOverflow"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "hasCustomSearch": { "alias": "hasCustomSearch"; "required": false; }; "searchLabel": { "alias": "searchLabel"; "required": false; }; "searchIcon": { "alias": "searchIcon"; "required": false; }; "sortableTooltip": { "alias": "sortableTooltip"; "required": false; }; }, { "onEnableSearch": "onEnableSearch"; }, never, ["*", "[customSearchHeader]", "[customSearch]"], false, never>;
50
50
  }
51
51
  export interface NgtSortableTooltip {
52
52
  ascending: string;
@@ -16,5 +16,5 @@ export declare class NgtTrComponent {
16
16
  constructor(injector: Injector, hostElement: ElementRef, ngtThead: NgtTheadComponent, ngtTbody: NgtTbodyComponent, ngtStylizableDirective: NgtStylizableDirective);
17
17
  private getInheritanceStyles;
18
18
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtTrComponent, [null, null, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; self: true; }]>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtTrComponent, "[ngt-tr]", never, { "evenStripped": "evenStripped"; "oddStripped": "oddStripped"; }, {}, never, ["*"], false, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtTrComponent, "[ngt-tr]", never, { "evenStripped": { "alias": "evenStripped"; "required": false; }; "oddStripped": { "alias": "oddStripped"; "required": false; }; }, {}, never, ["*"], false, never>;
20
20
  }
@@ -1,6 +1,5 @@
1
1
  import { Injector, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
2
2
  import { ControlContainer } from '@angular/forms';
3
- import { FlatpickrOptions, Ng2FlatpickrComponent } from 'ng2-flatpickr';
4
3
  import { NgtBaseNgModel } from '../../base/ngt-base-ng-model';
5
4
  import { NgtStylizableDirective } from '../../directives/ngt-stylizable/ngt-stylizable.directive';
6
5
  import { NgtStylizableService } from '../../services/ngt-stylizable/ngt-stylizable.service';
@@ -15,7 +14,6 @@ export declare class NgtDateComponent extends NgtBaseNgModel implements OnInit,
15
14
  private ngtForm;
16
15
  private ngtSection;
17
16
  private ngtModal;
18
- ng2FlatpickrComponent: Ng2FlatpickrComponent;
19
17
  label: string;
20
18
  placeholder: string;
21
19
  helpTitle: string;
@@ -42,7 +40,6 @@ export declare class NgtDateComponent extends NgtBaseNgModel implements OnInit,
42
40
  defaultDate: string;
43
41
  isRequired: boolean;
44
42
  ngtStyle: NgtStylizableService;
45
- dateConfig: FlatpickrOptions;
46
43
  nativeValue: any;
47
44
  componentReady: boolean;
48
45
  nativeName: string;
@@ -57,8 +54,8 @@ export declare class NgtDateComponent extends NgtBaseNgModel implements OnInit,
57
54
  ngOnInit(): void;
58
55
  ngOnDestroy(): void;
59
56
  clearInput(clearInstance?: boolean): void;
60
- change(value: any): any;
61
- onNativeChange(value: any, dateStr: string, instance: any, triggerClose: boolean): any;
57
+ change(value: any): void;
58
+ onNativeChange(value: any, dateStr: string, instance: any, triggerClose: boolean): void;
62
59
  getNativeValue(): any;
63
60
  getFormattedNativeValue(): any;
64
61
  hasErrors(): boolean;
@@ -73,7 +70,7 @@ export declare class NgtDateComponent extends NgtBaseNgModel implements OnInit,
73
70
  private isDisabledByParent;
74
71
  private destroySubscriptions;
75
72
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtDateComponent, [{ optional: true; host: true; }, null, { optional: true; self: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }]>;
76
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtDateComponent, "ngt-date", never, { "label": "label"; "placeholder": "placeholder"; "helpTitle": "helpTitle"; "helpText": "helpText"; "helpTextColor": "helpTextColor"; "shining": "shining"; "dateFormat": "dateFormat"; "dateFormatNgModel": "dateFormatNgModel"; "showCalendarIcon": "showCalendarIcon"; "helperReverseYPosition": "helperReverseYPosition"; "name": "name"; "isDisabled": "isDisabled"; "isReadonly": "isReadonly"; "mode": "mode"; "time_24hr": "time_24hr"; "enableTime": "enableTime"; "noCalendar": "noCalendar"; "minuteIncrement": "minuteIncrement"; "allowInput": "allowInput"; "locale": "locale"; "allowClear": "allowClear"; "minDate": "minDate"; "maxDate": "maxDate"; "defaultDate": "defaultDate"; "isRequired": "isRequired"; }, {}, never, ["*"], false, never>;
73
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtDateComponent, "ngt-date", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "helpTitle": { "alias": "helpTitle"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "helpTextColor": { "alias": "helpTextColor"; "required": false; }; "shining": { "alias": "shining"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "dateFormatNgModel": { "alias": "dateFormatNgModel"; "required": false; }; "showCalendarIcon": { "alias": "showCalendarIcon"; "required": false; }; "helperReverseYPosition": { "alias": "helperReverseYPosition"; "required": false; }; "name": { "alias": "name"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isReadonly": { "alias": "isReadonly"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "time_24hr": { "alias": "time_24hr"; "required": false; }; "enableTime": { "alias": "enableTime"; "required": false; }; "noCalendar": { "alias": "noCalendar"; "required": false; }; "minuteIncrement": { "alias": "minuteIncrement"; "required": false; }; "allowInput": { "alias": "allowInput"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "allowClear": { "alias": "allowClear"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "defaultDate": { "alias": "defaultDate"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; }, {}, never, never, false, never>;
77
74
  }
78
75
  export declare enum NgtDateLocale {
79
76
  BRAZIL = "BRAZIL",
@@ -2,12 +2,11 @@ import * as i0 from "@angular/core";
2
2
  import * as i1 from "./ngt-date.component";
3
3
  import * as i2 from "@angular/common";
4
4
  import * as i3 from "@angular/forms";
5
- import * as i4 from "ng2-flatpickr";
6
- import * as i5 from "../ngt-validation/ngt-validation.module";
7
- import * as i6 from "../ngt-shining/ngt-shining.module";
8
- import * as i7 from "../ngt-helper/ngt-helper.module";
5
+ import * as i4 from "../ngt-validation/ngt-validation.module";
6
+ import * as i5 from "../ngt-shining/ngt-shining.module";
7
+ import * as i6 from "../ngt-helper/ngt-helper.module";
9
8
  export declare class NgtDateModule {
10
9
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtDateModule, never>;
11
- static ɵmod: i0.ɵɵNgModuleDeclaration<NgtDateModule, [typeof i1.NgtDateComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.Ng2FlatpickrModule, typeof i5.NgtValidationModule, typeof i6.NgtShiningModule, typeof i7.NgtHelperModule], [typeof i1.NgtDateComponent]>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NgtDateModule, [typeof i1.NgtDateComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.NgtValidationModule, typeof i5.NgtShiningModule, typeof i6.NgtHelperModule], [typeof i1.NgtDateComponent]>;
12
11
  static ɵinj: i0.ɵɵInjectorDeclaration<NgtDateModule>;
13
12
  }
@@ -43,7 +43,7 @@ export declare class NgtDropdownComponent implements OnDestroy {
43
43
  private destroySubscriptions;
44
44
  private isClickMethod;
45
45
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtDropdownComponent, [{ optional: true; skipSelf: true; }, null]>;
46
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtDropdownComponent, "ngt-dropdown", never, { "scrollable": "scrollable"; "autoXReverse": "autoXReverse"; "autoYReverse": "autoYReverse"; "reverseXPosition": "reverseXPosition"; "reverseYPosition": "reverseYPosition"; "closeOnClick": "closeOnClick"; "closeTimeout": "closeTimeout"; "openMethod": "openMethod"; }, { "onToggle": "onToggle"; "onHostClick": "onHostClick"; }, never, ["[host]", "[container]"], false, never>;
46
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtDropdownComponent, "ngt-dropdown", never, { "scrollable": { "alias": "scrollable"; "required": false; }; "autoXReverse": { "alias": "autoXReverse"; "required": false; }; "autoYReverse": { "alias": "autoYReverse"; "required": false; }; "reverseXPosition": { "alias": "reverseXPosition"; "required": false; }; "reverseYPosition": { "alias": "reverseYPosition"; "required": false; }; "closeOnClick": { "alias": "closeOnClick"; "required": false; }; "closeTimeout": { "alias": "closeTimeout"; "required": false; }; "openMethod": { "alias": "openMethod"; "required": false; }; }, { "onToggle": "onToggle"; "onHostClick": "onHostClick"; }, never, ["[host]", "[container]"], false, never>;
47
47
  }
48
48
  export declare enum NgtDropdownOpenMethod {
49
49
  CLICK = "CLICK",
@@ -1,10 +1,8 @@
1
1
  import { EventEmitter } from '@angular/core';
2
- import { EloverdeDocViewerComponent } from 'eloverde-doc-viewer';
3
2
  import { NgtTranslateService } from '../../../services/http/ngt-translate.service';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class NgtDropzoneFileViewerComponent {
6
5
  ngtTranslateService: NgtTranslateService;
7
- eloverdeDocViewer: EloverdeDocViewerComponent;
8
6
  url: string;
9
7
  fileName: string;
10
8
  fileSize: number;
@@ -21,5 +19,5 @@ export declare class NgtDropzoneFileViewerComponent {
21
19
  handleClose(): void;
22
20
  downloadFile(): void;
23
21
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtDropzoneFileViewerComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtDropzoneFileViewerComponent, "ngt-dropzone-file-viewer", never, { "url": "url"; "fileName": "fileName"; "fileSize": "fileSize"; "disableContent": "disableContent"; "canDownloadFile": "canDownloadFile"; }, { "onClose": "onClose"; }, never, never, false, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtDropzoneFileViewerComponent, "ngt-dropzone-file-viewer", never, { "url": { "alias": "url"; "required": false; }; "fileName": { "alias": "fileName"; "required": false; }; "fileSize": { "alias": "fileSize"; "required": false; }; "disableContent": { "alias": "disableContent"; "required": false; }; "canDownloadFile": { "alias": "canDownloadFile"; "required": false; }; }, { "onClose": "onClose"; }, never, never, false, never>;
25
23
  }
@@ -31,5 +31,5 @@ export declare class NgtDropzoneViewComponent {
31
31
  private isVideo;
32
32
  private isFile;
33
33
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtDropzoneViewComponent, never>;
34
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtDropzoneViewComponent, "ngt-dropzone-view", never, { "resources": "resources"; "dropzoneHeight": "dropzoneHeight"; "loading": "loading"; "placeholder": "placeholder"; }, { "onImageClick": "onImageClick"; "onFileClick": "onFileClick"; }, never, never, false, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtDropzoneViewComponent, "ngt-dropzone-view", never, { "resources": { "alias": "resources"; "required": false; }; "dropzoneHeight": { "alias": "dropzoneHeight"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "onImageClick": "onImageClick"; "onFileClick": "onFileClick"; }, never, never, false, never>;
35
35
  }
@@ -91,5 +91,5 @@ export declare class NgtDropzoneComponent extends NgtBaseNgModel implements OnIn
91
91
  private isDisabledByParent;
92
92
  private destroySubscriptions;
93
93
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtDropzoneComponent, [{ optional: true; host: true; }, null, null, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }]>;
94
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtDropzoneComponent, "ngt-dropzone", never, { "label": "label"; "placeholder": "placeholder"; "helpTextColor": "helpTextColor"; "helpText": "helpText"; "helpTitle": "helpTitle"; "resources": "resources"; "multipleSelection": "multipleSelection"; "itemsLimit": "itemsLimit"; "showFileName": "showFileName"; "disableClick": "disableClick"; "disabled": "disabled"; "viewMode": "viewMode"; "removable": "removable"; "canDownloadFile": "canDownloadFile"; "verticalExpandable": "verticalExpandable"; "isRequired": "isRequired"; "hideNgxDropzone": "hideNgxDropzone"; "acceptedFiles": "acceptedFiles"; "unacceptedFiles": "unacceptedFiles"; "maxFileSize": "maxFileSize"; "previewType": "previewType"; "name": "name"; "remoteResource": "remoteResource"; }, { "onFileSelected": "onFileSelected"; "onFileSelectError": "onFileSelectError"; "onFileUploadFail": "onFileUploadFail"; "onFileRemoved": "onFileRemoved"; "onFileUploadInit": "onFileUploadInit"; "onFileUploaded": "onFileUploaded"; "onFilePreviewLoaded": "onFilePreviewLoaded"; }, never, never, false, never>;
94
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtDropzoneComponent, "ngt-dropzone", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "helpTextColor": { "alias": "helpTextColor"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "helpTitle": { "alias": "helpTitle"; "required": false; }; "resources": { "alias": "resources"; "required": false; }; "multipleSelection": { "alias": "multipleSelection"; "required": false; }; "itemsLimit": { "alias": "itemsLimit"; "required": false; }; "showFileName": { "alias": "showFileName"; "required": false; }; "disableClick": { "alias": "disableClick"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "viewMode": { "alias": "viewMode"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "canDownloadFile": { "alias": "canDownloadFile"; "required": false; }; "verticalExpandable": { "alias": "verticalExpandable"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "hideNgxDropzone": { "alias": "hideNgxDropzone"; "required": false; }; "acceptedFiles": { "alias": "acceptedFiles"; "required": false; }; "unacceptedFiles": { "alias": "unacceptedFiles"; "required": false; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; }; "previewType": { "alias": "previewType"; "required": false; }; "name": { "alias": "name"; "required": false; }; "remoteResource": { "alias": "remoteResource"; "required": false; }; }, { "onFileSelected": "onFileSelected"; "onFileSelectError": "onFileSelectError"; "onFileUploadFail": "onFileUploadFail"; "onFileRemoved": "onFileRemoved"; "onFileUploadInit": "onFileUploadInit"; "onFileUploaded": "onFileUploaded"; "onFilePreviewLoaded": "onFilePreviewLoaded"; }, never, never, false, never>;
95
95
  }
@@ -8,10 +8,9 @@ import * as i6 from "@angular/forms";
8
8
  import * as i7 from "../ngt-validation/ngt-validation.module";
9
9
  import * as i8 from "ngx-dropzone";
10
10
  import * as i9 from "../ngt-svg/ngt-svg.module";
11
- import * as i10 from "eloverde-doc-viewer";
12
- import * as i11 from "../ngt-helper/ngt-helper.module";
11
+ import * as i10 from "../ngt-helper/ngt-helper.module";
13
12
  export declare class NgtDropzoneModule {
14
13
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtDropzoneModule, never>;
15
- static ɵmod: i0.ɵɵNgModuleDeclaration<NgtDropzoneModule, [typeof i1.NgtDropzoneComponent, typeof i2.NgtDropzoneFileViewerComponent, typeof i3.NgtDropzoneViewComponent, typeof i4.CustomDropzonePreviewComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.NgtValidationModule, typeof i8.NgxDropzoneModule, typeof i9.NgtSvgModule, typeof i10.EloverdeDocViewerModule, typeof i11.NgtHelperModule], [typeof i1.NgtDropzoneComponent]>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NgtDropzoneModule, [typeof i1.NgtDropzoneComponent, typeof i2.NgtDropzoneFileViewerComponent, typeof i3.NgtDropzoneViewComponent, typeof i4.CustomDropzonePreviewComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.NgtValidationModule, typeof i8.NgxDropzoneModule, typeof i9.NgtSvgModule, typeof i10.NgtHelperModule], [typeof i1.NgtDropzoneComponent]>;
16
15
  static ɵinj: i0.ɵɵInjectorDeclaration<NgtDropzoneModule>;
17
16
  }
@@ -18,7 +18,7 @@ export declare class NgtFloatingButtonComponent {
18
18
  isTypeAction(menu: NgtFloatingButtonMenu): boolean;
19
19
  isTypeNavigation(menu: NgtFloatingButtonMenu): boolean;
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtFloatingButtonComponent, [null, { optional: true; self: true; }]>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtFloatingButtonComponent, "ngt-floating-button", never, { "menus": "menus"; "icon": "icon"; "label": "label"; "withAnimation": "withAnimation"; }, {}, never, never, false, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtFloatingButtonComponent, "ngt-floating-button", never, { "menus": { "alias": "menus"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "withAnimation": { "alias": "withAnimation"; "required": false; }; }, {}, never, never, false, never>;
22
22
  }
23
23
  export interface NgtFloatingButtonMenu {
24
24
  name?: string;
@@ -6,5 +6,5 @@ export declare class NgtFormValidationMessageComponent {
6
6
  message: string;
7
7
  constructor(ngtTranslateService: NgtTranslateService);
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtFormValidationMessageComponent, [{ optional: true; }]>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtFormValidationMessageComponent, "ngt-form-validation-message", never, { "canShowValidationMessage": "canShowValidationMessage"; "message": "message"; }, {}, never, never, false, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtFormValidationMessageComponent, "ngt-form-validation-message", never, { "canShowValidationMessage": { "alias": "canShowValidationMessage"; "required": false; }; "message": { "alias": "message"; "required": false; }; }, {}, never, never, false, never>;
10
10
  }
@@ -52,7 +52,7 @@ export declare class NgtFormComponent implements OnInit, OnDestroy, AfterViewIni
52
52
  private determineFormState;
53
53
  private destroySubscriptions;
54
54
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtFormComponent, [null, null, { optional: true; host: true; }, { optional: true; host: true; }, null, null, { optional: true; }]>;
55
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtFormComponent, "ngt-form", never, { "guessFormState": "guessFormState"; "message": "message"; "routeIdentifier": "routeIdentifier"; "resource": "resource"; "customLayout": "customLayout"; "isDisabled": "isDisabled"; }, { "onCreating": "onCreating"; "onEditing": "onEditing"; "onLoadingChange": "onLoadingChange"; "onShiningChange": "onShiningChange"; "setupComponent": "setupComponent"; "onResourceLoadingError": "onResourceLoadingError"; }, never, ["*"], false, never>;
55
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtFormComponent, "ngt-form", never, { "guessFormState": { "alias": "guessFormState"; "required": false; }; "message": { "alias": "message"; "required": false; }; "routeIdentifier": { "alias": "routeIdentifier"; "required": false; }; "resource": { "alias": "resource"; "required": false; }; "customLayout": { "alias": "customLayout"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, { "onCreating": "onCreating"; "onEditing": "onEditing"; "onLoadingChange": "onLoadingChange"; "onShiningChange": "onShiningChange"; "setupComponent": "setupComponent"; "onResourceLoadingError": "onResourceLoadingError"; }, never, ["*"], false, never>;
56
56
  }
57
57
  export declare enum NgtFormState {
58
58
  CREATING = "CREATING",
@@ -10,5 +10,5 @@ export declare class NgtHeaderNavComponent {
10
10
  constructor(injector: Injector, ngtStylizableDirective: NgtStylizableDirective);
11
11
  ngAfterViewInit(): void;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtHeaderNavComponent, [null, { optional: true; self: true; }]>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtHeaderNavComponent, "ngt-header-nav", never, { "ngtStyle": "ngtStyle"; }, {}, never, ["[left-header]", "[right-header]", "*"], false, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtHeaderNavComponent, "ngt-header-nav", never, { "ngtStyle": { "alias": "ngtStyle"; "required": false; }; }, {}, never, ["[left-header]", "[right-header]", "*"], false, never>;
14
14
  }
@@ -21,5 +21,5 @@ export declare class NgtHelperComponent {
21
21
  ngtStyle: NgtStylizableService;
22
22
  constructor(ngtStylizableDirective: NgtStylizableDirective, ngtTranslateService: NgtTranslateService, injector: Injector);
23
23
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtHelperComponent, [{ optional: true; self: true; }, { optional: true; }, null]>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtHelperComponent, "ngt-helper", never, { "helpTextColor": "helpTextColor"; "helpText": "helpText"; "helpTitle": "helpTitle"; "icon": "icon"; "iconSize": "iconSize"; "iconColor": "iconColor"; "iconTitle": "iconTitle"; "tooltipSize": "tooltipSize"; "autoXReverse": "autoXReverse"; "helperReverseYPosition": "helperReverseYPosition"; }, {}, never, ["*"], false, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtHelperComponent, "ngt-helper", never, { "helpTextColor": { "alias": "helpTextColor"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "helpTitle": { "alias": "helpTitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSize": { "alias": "iconSize"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "iconTitle": { "alias": "iconTitle"; "required": false; }; "tooltipSize": { "alias": "tooltipSize"; "required": false; }; "autoXReverse": { "alias": "autoXReverse"; "required": false; }; "helperReverseYPosition": { "alias": "helperReverseYPosition"; "required": false; }; }, {}, never, ["*"], false, never>;
25
25
  }
@@ -125,5 +125,5 @@ export declare class NgtInputComponent extends NgtBaseNgModel implements OnInit,
125
125
  private hasChangesBetweenModels;
126
126
  private destroySubscriptions;
127
127
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtInputComponent, [null, null, null, { optional: true; self: true; }, { optional: true; host: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; }]>;
128
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtInputComponent, "ngt-input", never, { "label": "label"; "placeholder": "placeholder"; "shining": "shining"; "loading": "loading"; "helpTitle": "helpTitle"; "helpTextColor": "helpTextColor"; "helpText": "helpText"; "innerLeftIcon": "innerLeftIcon"; "innerLeftIconColor": "innerLeftIconColor"; "innerRightIcon": "innerRightIcon"; "innerRightIconColor": "innerRightIconColor"; "decimalMaskPrecision": "decimalMaskPrecision"; "showCharactersLength": "showCharactersLength"; "uppercase": "uppercase"; "customInnerContentTemplate": "customInnerContentTemplate"; "helperReverseYPosition": "helperReverseYPosition"; "helperAutoXReverse": "helperAutoXReverse"; "isDisabled": "isDisabled"; "isReadonly": "isReadonly"; "showRoundedIcon": "showRoundedIcon"; "type": "type"; "name": "name"; "mask": "mask"; "focus": "focus"; "allowClear": "allowClear"; "jit": "jit"; "useInputEvent": "useInputEvent"; "findExistingResource": "findExistingResource"; "allowPhoneValidation": "allowPhoneValidation"; "validatePassword": "validatePassword"; "passwordableId": "passwordableId"; "passwordPolicyId": "passwordPolicyId"; "isRequired": "isRequired"; "uniqueResource": "uniqueResource"; "minValue": "minValue"; "maxValue": "maxValue"; "maxLength": "maxLength"; "minLength": "minLength"; "match": "match"; "multipleOf": "multipleOf"; "validateMinValueOnMask": "validateMinValueOnMask"; "externalServerDependency": "externalServerDependency"; "customValidator": "customValidator"; }, { "onClickLeftIcon": "onClickLeftIcon"; "onClickRightIcon": "onClickRightIcon"; "validatePhoneResult": "validatePhoneResult"; }, never, ["*"], false, never>;
128
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtInputComponent, "ngt-input", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "shining": { "alias": "shining"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "helpTitle": { "alias": "helpTitle"; "required": false; }; "helpTextColor": { "alias": "helpTextColor"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "innerLeftIcon": { "alias": "innerLeftIcon"; "required": false; }; "innerLeftIconColor": { "alias": "innerLeftIconColor"; "required": false; }; "innerRightIcon": { "alias": "innerRightIcon"; "required": false; }; "innerRightIconColor": { "alias": "innerRightIconColor"; "required": false; }; "decimalMaskPrecision": { "alias": "decimalMaskPrecision"; "required": false; }; "showCharactersLength": { "alias": "showCharactersLength"; "required": false; }; "uppercase": { "alias": "uppercase"; "required": false; }; "customInnerContentTemplate": { "alias": "customInnerContentTemplate"; "required": false; }; "helperReverseYPosition": { "alias": "helperReverseYPosition"; "required": false; }; "helperAutoXReverse": { "alias": "helperAutoXReverse"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isReadonly": { "alias": "isReadonly"; "required": false; }; "showRoundedIcon": { "alias": "showRoundedIcon"; "required": false; }; "type": { "alias": "type"; "required": false; }; "name": { "alias": "name"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "focus": { "alias": "focus"; "required": false; }; "allowClear": { "alias": "allowClear"; "required": false; }; "jit": { "alias": "jit"; "required": false; }; "useInputEvent": { "alias": "useInputEvent"; "required": false; }; "findExistingResource": { "alias": "findExistingResource"; "required": false; }; "allowPhoneValidation": { "alias": "allowPhoneValidation"; "required": false; }; "validatePassword": { "alias": "validatePassword"; "required": false; }; "passwordableId": { "alias": "passwordableId"; "required": false; }; "passwordPolicyId": { "alias": "passwordPolicyId"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "uniqueResource": { "alias": "uniqueResource"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "match": { "alias": "match"; "required": false; }; "multipleOf": { "alias": "multipleOf"; "required": false; }; "validateMinValueOnMask": { "alias": "validateMinValueOnMask"; "required": false; }; "externalServerDependency": { "alias": "externalServerDependency"; "required": false; }; "customValidator": { "alias": "customValidator"; "required": false; }; }, { "onClickLeftIcon": "onClickLeftIcon"; "onClickRightIcon": "onClickRightIcon"; "validatePhoneResult": "validatePhoneResult"; }, never, ["*"], false, never>;
129
129
  }
@@ -13,5 +13,5 @@ export declare class NgtModalBodyComponent implements AfterViewInit {
13
13
  constructor(injector: Injector, changeDetector: ChangeDetectorRef, tailStylizableDirective: NgtStylizableDirective, ngtAbilityValidationService: NgtAbilityValidationService);
14
14
  ngAfterViewInit(): Promise<void>;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtModalBodyComponent, [null, null, { optional: true; self: true; }, { optional: true; }]>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtModalBodyComponent, "ngt-modal-body", never, { "ngtStyle": "ngtStyle"; "isDisabled": "isDisabled"; }, {}, never, ["*"], false, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtModalBodyComponent, "ngt-modal-body", never, { "ngtStyle": { "alias": "ngtStyle"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, {}, never, ["*"], false, never>;
17
17
  }
@@ -8,5 +8,5 @@ export declare class NgtModalFooterComponent {
8
8
  ngtStyle: NgtStylizableService;
9
9
  constructor(injector: Injector, tailStylizableDirective: NgtStylizableDirective);
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtModalFooterComponent, [null, { optional: true; self: true; }]>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtModalFooterComponent, "ngt-modal-footer", never, { "ngtStyle": "ngtStyle"; }, {}, never, ["*"], false, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtModalFooterComponent, "ngt-modal-footer", never, { "ngtStyle": { "alias": "ngtStyle"; "required": false; }; }, {}, never, ["*"], false, never>;
12
12
  }
@@ -11,5 +11,5 @@ export declare class NgtModalHeaderComponent {
11
11
  constructor(injector: Injector, tailStylizableDirective: NgtStylizableDirective);
12
12
  emitOnCloseEvent(): void;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtModalHeaderComponent, [null, { optional: true; self: true; }]>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtModalHeaderComponent, "ngt-modal-header", never, { "disableDefaultCloses": "disableDefaultCloses"; "ngtStyle": "ngtStyle"; }, {}, never, ["*"], false, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtModalHeaderComponent, "ngt-modal-header", never, { "disableDefaultCloses": { "alias": "disableDefaultCloses"; "required": false; }; "ngtStyle": { "alias": "ngtStyle"; "required": false; }; }, {}, never, ["*"], false, never>;
15
15
  }
@@ -27,5 +27,5 @@ export declare class NgtModalComponent implements AfterViewInit {
27
27
  private destroySubscriptions;
28
28
  private closeViewMode;
29
29
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtModalComponent, [null, null, { optional: true; self: true; }, { optional: true; }]>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtModalComponent, "ngt-modal", never, { "customLayout": "customLayout"; "disableDefaultCloses": "disableDefaultCloses"; "isDisabled": "isDisabled"; "ngtStyle": "ngtStyle"; }, { "onCloseModal": "onCloseModal"; "onOpenModal": "onOpenModal"; }, never, ["[header]", "[body]", "[footer]", "*"], false, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtModalComponent, "ngt-modal", never, { "customLayout": { "alias": "customLayout"; "required": false; }; "disableDefaultCloses": { "alias": "disableDefaultCloses"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "ngtStyle": { "alias": "ngtStyle"; "required": false; }; }, { "onCloseModal": "onCloseModal"; "onOpenModal": "onOpenModal"; }, never, ["[header]", "[body]", "[footer]", "*"], false, never>;
31
31
  }
@@ -107,7 +107,7 @@ export declare class NgtMultiSelectComponent extends NgtBaseNgModel implements O
107
107
  private isDisabledByParent;
108
108
  private destroySubscriptions;
109
109
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtMultiSelectComponent, [null, null, null, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; self: true; }, { optional: true; host: true; }, { optional: true; }]>;
110
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtMultiSelectComponent, "ngt-multi-select", never, { "customOptionTemplate": "customOptionTemplate"; "customHeaderTemplate": "customHeaderTemplate"; "label": "label"; "helpTitle": "helpTitle"; "helpText": "helpText"; "helpTextColor": "helpTextColor"; "helperReverseYPosition": "helperReverseYPosition"; "helperAutoXReverse": "helperAutoXReverse"; "shining": "shining"; "loading": "loading"; "bindLabel": "bindLabel"; "bindSearch": "bindSearch"; "itemsPerPage": "itemsPerPage"; "name": "name"; "remoteResource": "remoteResource"; "items": "items"; "searchable": "searchable"; "allowOriginalItemsUnselect": "allowOriginalItemsUnselect"; "autoSelectUniqueOption": "autoSelectUniqueOption"; "isRequired": "isRequired"; "isDisabled": "isDisabled"; }, { "onDataChange": "onDataChange"; }, never, never, false, never>;
110
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtMultiSelectComponent, "ngt-multi-select", never, { "customOptionTemplate": { "alias": "customOptionTemplate"; "required": false; }; "customHeaderTemplate": { "alias": "customHeaderTemplate"; "required": false; }; "label": { "alias": "label"; "required": false; }; "helpTitle": { "alias": "helpTitle"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "helpTextColor": { "alias": "helpTextColor"; "required": false; }; "helperReverseYPosition": { "alias": "helperReverseYPosition"; "required": false; }; "helperAutoXReverse": { "alias": "helperAutoXReverse"; "required": false; }; "shining": { "alias": "shining"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindSearch": { "alias": "bindSearch"; "required": false; }; "itemsPerPage": { "alias": "itemsPerPage"; "required": false; }; "name": { "alias": "name"; "required": false; }; "remoteResource": { "alias": "remoteResource"; "required": false; }; "items": { "alias": "items"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "allowOriginalItemsUnselect": { "alias": "allowOriginalItemsUnselect"; "required": false; }; "autoSelectUniqueOption": { "alias": "autoSelectUniqueOption"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, { "onDataChange": "onDataChange"; }, never, never, false, never>;
111
111
  }
112
112
  export interface NgtSelectContainerSelectableElementInterface {
113
113
  uuid: string;
@@ -39,5 +39,5 @@ export declare class NgtPaginationComponent {
39
39
  resetPagination(): void;
40
40
  private bindDisplayedButtonSections;
41
41
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtPaginationComponent, [null, { optional: true; }]>;
42
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtPaginationComponent, "ngt-pagination", never, { "pagesInterval": "pagesInterval"; }, { "onPageChange": "onPageChange"; "onPerPageChange": "onPerPageChange"; }, never, never, false, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtPaginationComponent, "ngt-pagination", never, { "pagesInterval": { "alias": "pagesInterval"; "required": false; }; }, { "onPageChange": "onPageChange"; "onPerPageChange": "onPerPageChange"; }, never, never, false, never>;
43
43
  }
@@ -21,7 +21,7 @@ export declare class NgtPopoverComponent {
21
21
  constructor(ngtStylizableDirective: NgtStylizableDirective, ngtTranslateService: NgtTranslateService, injector: Injector);
22
22
  fireClickEvent(): void;
23
23
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtPopoverComponent, [{ optional: true; self: true; }, { optional: true; }, null]>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtPopoverComponent, "ngt-popover", never, { "closeTimeout": "closeTimeout"; "openMethod": "openMethod"; "closeOnClick": "closeOnClick"; "placeOnBottom": "placeOnBottom"; "placeOnLeft": "placeOnLeft"; }, { "onClick": "onClick"; }, never, ["*", "[popover-content]"], false, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtPopoverComponent, "ngt-popover", never, { "closeTimeout": { "alias": "closeTimeout"; "required": false; }; "openMethod": { "alias": "openMethod"; "required": false; }; "closeOnClick": { "alias": "closeOnClick"; "required": false; }; "placeOnBottom": { "alias": "placeOnBottom"; "required": false; }; "placeOnLeft": { "alias": "placeOnLeft"; "required": false; }; }, { "onClick": "onClick"; }, never, ["*", "[popover-content]"], false, never>;
25
25
  }
26
26
  export declare enum NgtPopoverOpenMethod {
27
27
  CLICK = "CLICK",
@@ -28,5 +28,5 @@ export declare class NgtPopoverDirective implements OnDestroy {
28
28
  private setupPopoverComponent;
29
29
  private bindSubscriptions;
30
30
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtPopoverDirective, never>;
31
- static ɵdir: i0.ɵɵDirectiveDeclaration<NgtPopoverDirective, "[ngt-popover]", never, { "ngtPopoverContent": "ngtPopoverContent"; "ngtPopoverTemplate": "ngtPopoverTemplate"; "ngtPopoverPosition": "ngtPopoverPosition"; "ngtPopoverTemplateStyle": "ngtPopoverTemplateStyle"; "dismissDelay": "dismissDelay"; "showDelay": "showDelay"; "closeOnClick": "closeOnClick"; "openMethod": "openMethod"; }, {}, never, never, false, never>;
31
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NgtPopoverDirective, "[ngt-popover]", never, { "ngtPopoverContent": { "alias": "ngtPopoverContent"; "required": false; }; "ngtPopoverTemplate": { "alias": "ngtPopoverTemplate"; "required": false; }; "ngtPopoverPosition": { "alias": "ngtPopoverPosition"; "required": false; }; "ngtPopoverTemplateStyle": { "alias": "ngtPopoverTemplateStyle"; "required": false; }; "dismissDelay": { "alias": "dismissDelay"; "required": false; }; "showDelay": { "alias": "showDelay"; "required": false; }; "closeOnClick": { "alias": "closeOnClick"; "required": false; }; "openMethod": { "alias": "openMethod"; "required": false; }; }, {}, never, never, false, never>;
32
32
  }
@@ -14,5 +14,5 @@ export declare class NgtPortletHeaderComponent {
14
14
  ngtStyle: NgtStylizableService;
15
15
  constructor(injector: Injector, ngtStylizableDirective: NgtStylizableDirective);
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtPortletHeaderComponent, [null, { optional: true; self: true; }]>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtPortletHeaderComponent, "ngt-portlet-header", never, { "caption": "caption"; "icon": "icon"; "iconSize": "iconSize"; "helperTitle": "helperTitle"; "helperText": "helperText"; "helperIconColor": "helperIconColor"; }, {}, never, ["[left-header]", "[header]", "[right-header]"], false, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtPortletHeaderComponent, "ngt-portlet-header", never, { "caption": { "alias": "caption"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSize": { "alias": "iconSize"; "required": false; }; "helperTitle": { "alias": "helperTitle"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "helperIconColor": { "alias": "helperIconColor"; "required": false; }; }, {}, never, ["[left-header]", "[header]", "[right-header]"], false, never>;
18
18
  }
@@ -16,5 +16,5 @@ export declare class NgtPortletComponent {
16
16
  ngtStyle: NgtStylizableService;
17
17
  constructor(injector: Injector, ngtStylizableDirective: NgtStylizableDirective);
18
18
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtPortletComponent, [null, { optional: true; self: true; }]>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtPortletComponent, "ngt-portlet", never, { "caption": "caption"; "icon": "icon"; "customLayout": "customLayout"; "withFooter": "withFooter"; "withBody": "withBody"; "helpTitle": "helpTitle"; "helpText": "helpText"; "helpIconColor": "helpIconColor"; }, {}, never, ["[right-header]", "[left-header]", "[header]", "[body]", "[right-footer]", "[left-footer]", "[footer]", "*"], false, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtPortletComponent, "ngt-portlet", never, { "caption": { "alias": "caption"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "customLayout": { "alias": "customLayout"; "required": false; }; "withFooter": { "alias": "withFooter"; "required": false; }; "withBody": { "alias": "withBody"; "required": false; }; "helpTitle": { "alias": "helpTitle"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "helpIconColor": { "alias": "helpIconColor"; "required": false; }; }, {}, never, ["[right-header]", "[left-header]", "[header]", "[body]", "[right-footer]", "[left-footer]", "[footer]", "*"], false, never>;
20
20
  }
@@ -41,5 +41,5 @@ export declare class NgtRadioButtonComponent extends NgtBaseNgModel implements A
41
41
  private isDisabledByParent;
42
42
  private destroySubscriptions;
43
43
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtRadioButtonComponent, [null, null, { optional: true; self: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; host: true; }]>;
44
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtRadioButtonComponent, "ngt-radio-button", never, { "label": "label"; "name": "name"; "shining": "shining"; "isSelectable": "isSelectable"; "isDisabled": "isDisabled"; "selectedHexColor": "selectedHexColor"; "helpTitle": "helpTitle"; "helpTextColor": "helpTextColor"; "helpText": "helpText"; "helperReverseYPosition": "helperReverseYPosition"; "helperAutoXReverse": "helperAutoXReverse"; }, {}, never, never, false, never>;
44
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtRadioButtonComponent, "ngt-radio-button", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "shining": { "alias": "shining"; "required": false; }; "isSelectable": { "alias": "isSelectable"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "selectedHexColor": { "alias": "selectedHexColor"; "required": false; }; "helpTitle": { "alias": "helpTitle"; "required": false; }; "helpTextColor": { "alias": "helpTextColor"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "helperReverseYPosition": { "alias": "helperReverseYPosition"; "required": false; }; "helperAutoXReverse": { "alias": "helperAutoXReverse"; "required": false; }; }, {}, never, never, false, never>;
45
45
  }
@@ -34,5 +34,5 @@ export declare class NgtSectionComponent implements AfterViewInit {
34
34
  scrollTo(): void;
35
35
  remove(event: Event): void;
36
36
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtSectionComponent, [null, null, { optional: true; self: true; }, { optional: true; }]>;
37
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtSectionComponent, "ngt-section", never, { "name": "name"; "icon": "icon"; "caption": "caption"; "subtitle": "subtitle"; "accordion": "accordion"; "showSection": "showSection"; "removable": "removable"; "helpTitle": "helpTitle"; "helpText": "helpText"; "helpIconColor": "helpIconColor"; "isDisabled": "isDisabled"; }, { "onRemove": "onRemove"; "onToggleSection": "onToggleSection"; }, never, ["*"], false, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtSectionComponent, "ngt-section", never, { "name": { "alias": "name"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "accordion": { "alias": "accordion"; "required": false; }; "showSection": { "alias": "showSection"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "helpTitle": { "alias": "helpTitle"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "helpIconColor": { "alias": "helpIconColor"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, { "onRemove": "onRemove"; "onToggleSection": "onToggleSection"; }, never, ["*"], false, never>;
38
38
  }
@@ -142,7 +142,7 @@ export declare class NgtSelectComponent extends NgtBaseNgModel implements OnChan
142
142
  private isDisabledByParent;
143
143
  private destroySubscriptions;
144
144
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtSelectComponent, [{ optional: true; self: true; }, { optional: true; host: true; }, { optional: true; }, null, null, null, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }, { optional: true; skipSelf: true; }]>;
145
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtSelectComponent, "ngt-select", never, { "label": "label"; "labelIcon": "labelIcon"; "labelIconColor": "labelIconColor"; "helpTitle": "helpTitle"; "helpText": "helpText"; "helpTextColor": "helpTextColor"; "shining": "shining"; "loading": "loading"; "loadingText": "loadingText"; "notFoundText": "notFoundText"; "dropdownPosition": "dropdownPosition"; "typeToSearchText": "typeToSearchText"; "clearAllTooltip": "clearAllTooltip"; "placeholder": "placeholder"; "createText": "createText"; "labelForId": "labelForId"; "dropdownPanelMinHeight": "dropdownPanelMinHeight"; "helperReverseYPosition": "helperReverseYPosition"; "helperAutoXReverse": "helperAutoXReverse"; "name": "name"; "autoLoad": "autoLoad"; "allowCreate": "allowCreate"; "allowOriginalItemsUnselect": "allowOriginalItemsUnselect"; "isDisabled": "isDisabled"; "isReadonly": "isReadonly"; "remoteResource": "remoteResource"; "hideSelected": "hideSelected"; "bindLabel": "bindLabel"; "bindValue": "bindValue"; "items": "items"; "inputAttrs": "inputAttrs"; "closeOnSelect": "closeOnSelect"; "clearable": "clearable"; "groupBy": "groupBy"; "maxSelectedItems": "maxSelectedItems"; "multiple": "multiple"; "searchable": "searchable"; "clearSearchOnAdd": "clearSearchOnAdd"; "virtualScroll": "virtualScroll"; "tabIndex": "tabIndex"; "typeahead": "typeahead"; "guessCompareWith": "guessCompareWith"; "autoSelectUniqueOption": "autoSelectUniqueOption"; "groupValue": "groupValue"; "trackBy": "trackBy"; "sortSelectedItemsFn": "sortSelectedItemsFn"; "isAllowedToRemoveFn": "isAllowedToRemoveFn"; "isRequired": "isRequired"; "compareWith": "compareWith"; }, { "onLoadRemoteResource": "onLoadRemoteResource"; "onSelectedItemRemove": "onSelectedItemRemove"; "onClear": "onClear"; "onClose": "onClose"; }, ["ngtOptionTemplate", "ngtOptionSelectedTemplate", "ngtSelectHeaderTemplate"], never, false, never>;
145
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtSelectComponent, "ngt-select", never, { "label": { "alias": "label"; "required": false; }; "labelIcon": { "alias": "labelIcon"; "required": false; }; "labelIconColor": { "alias": "labelIconColor"; "required": false; }; "helpTitle": { "alias": "helpTitle"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "helpTextColor": { "alias": "helpTextColor"; "required": false; }; "shining": { "alias": "shining"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "notFoundText": { "alias": "notFoundText"; "required": false; }; "dropdownPosition": { "alias": "dropdownPosition"; "required": false; }; "typeToSearchText": { "alias": "typeToSearchText"; "required": false; }; "clearAllTooltip": { "alias": "clearAllTooltip"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "createText": { "alias": "createText"; "required": false; }; "labelForId": { "alias": "labelForId"; "required": false; }; "dropdownPanelMinHeight": { "alias": "dropdownPanelMinHeight"; "required": false; }; "helperReverseYPosition": { "alias": "helperReverseYPosition"; "required": false; }; "helperAutoXReverse": { "alias": "helperAutoXReverse"; "required": false; }; "name": { "alias": "name"; "required": false; }; "autoLoad": { "alias": "autoLoad"; "required": false; }; "allowCreate": { "alias": "allowCreate"; "required": false; }; "allowOriginalItemsUnselect": { "alias": "allowOriginalItemsUnselect"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isReadonly": { "alias": "isReadonly"; "required": false; }; "remoteResource": { "alias": "remoteResource"; "required": false; }; "hideSelected": { "alias": "hideSelected"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "items": { "alias": "items"; "required": false; }; "inputAttrs": { "alias": "inputAttrs"; "required": false; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "groupBy": { "alias": "groupBy"; "required": false; }; "maxSelectedItems": { "alias": "maxSelectedItems"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "clearSearchOnAdd": { "alias": "clearSearchOnAdd"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "typeahead": { "alias": "typeahead"; "required": false; }; "guessCompareWith": { "alias": "guessCompareWith"; "required": false; }; "autoSelectUniqueOption": { "alias": "autoSelectUniqueOption"; "required": false; }; "groupValue": { "alias": "groupValue"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "sortSelectedItemsFn": { "alias": "sortSelectedItemsFn"; "required": false; }; "isAllowedToRemoveFn": { "alias": "isAllowedToRemoveFn"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; }, { "onLoadRemoteResource": "onLoadRemoteResource"; "onSelectedItemRemove": "onSelectedItemRemove"; "onClear": "onClear"; "onClose": "onClose"; }, ["ngtOptionTemplate", "ngtOptionSelectedTemplate", "ngtSelectHeaderTemplate"], never, false, never>;
146
146
  }
147
147
  export declare enum NgtSelectDropdownPanelHeight {
148
148
  AUTO = "auto",
@@ -9,7 +9,7 @@ export declare class NgtShiningComponent {
9
9
  ngtStyle: NgtStylizableService;
10
10
  constructor(injector: Injector, ngtStylizableDirective: NgtStylizableDirective);
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtShiningComponent, [null, { optional: true; self: true; }]>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtShiningComponent, "ngt-shining", never, { "shiningWidth": "shiningWidth"; }, {}, never, never, false, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtShiningComponent, "ngt-shining", never, { "shiningWidth": { "alias": "shiningWidth"; "required": false; }; }, {}, never, never, false, never>;
13
13
  }
14
14
  export declare enum NgtShiningWidth {
15
15
  xs = "xs",
@@ -28,5 +28,5 @@ export declare class NgtSidenavComponent implements AfterViewInit {
28
28
  toggleMenuSize(size: Size): void;
29
29
  isMobileView(): boolean;
30
30
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtSidenavComponent, [null, { optional: true; self: true; }]>;
31
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtSidenavComponent, "ngt-sidenav", never, { "size": "size"; "initVisible": "initVisible"; "closeMenuOnMobileView": "closeMenuOnMobileView"; }, {}, never, ["[sideMenu]", "*"], false, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtSidenavComponent, "ngt-sidenav", never, { "size": { "alias": "size"; "required": false; }; "initVisible": { "alias": "initVisible"; "required": false; }; "closeMenuOnMobileView": { "alias": "closeMenuOnMobileView"; "required": false; }; }, {}, never, ["[sideMenu]", "*"], false, never>;
32
32
  }
@@ -26,7 +26,7 @@ export declare class NgtSliderComponent extends NgtBaseNgModel implements AfterV
26
26
  onNativeChange(value: boolean): void;
27
27
  private destroySubscriptions;
28
28
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtSliderComponent, [{ optional: true; host: true; }, null, { optional: true; skipSelf: true; }]>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtSliderComponent, "ngt-slider", never, { "label": "label"; "shining": "shining"; "isDisabled": "isDisabled"; "showPercentageSymbol": "showPercentageSymbol"; "name": "name"; "min": "min"; "max": "max"; "step": "step"; "color": "color"; }, {}, never, never, false, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtSliderComponent, "ngt-slider", never, { "label": { "alias": "label"; "required": false; }; "shining": { "alias": "shining"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "showPercentageSymbol": { "alias": "showPercentageSymbol"; "required": false; }; "name": { "alias": "name"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "step": { "alias": "step"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, false, never>;
30
30
  }
31
31
  export declare enum NgtSliderColorSchemeEnum {
32
32
  PRIMARY = "primary",
@@ -9,5 +9,5 @@ export declare class NgtSvgComponent implements AfterViewChecked, OnChanges {
9
9
  ngOnChanges(changes: SimpleChanges): void;
10
10
  private checkClassChange;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtSvgComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtSvgComponent, "ngt-svg", never, { "src": "src"; "class": "class"; }, {}, never, never, false, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtSvgComponent, "ngt-svg", never, { "src": { "alias": "src"; "required": false; }; "class": { "alias": "class"; "required": false; }; }, {}, never, never, false, never>;
13
13
  }
@@ -9,5 +9,5 @@ export declare class NgtTagComponent {
9
9
  ngtStyle: NgtStylizableService;
10
10
  constructor(injector: Injector, ngtStylizableDirective: NgtStylizableDirective);
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtTagComponent, [null, { optional: true; self: true; }]>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtTagComponent, "ngt-tag", never, { "icon": "icon"; }, {}, never, ["*"], false, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtTagComponent, "ngt-tag", never, { "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["*"], false, never>;
13
13
  }
@@ -45,5 +45,5 @@ export declare class NgtTextareaComponent extends NgtBaseNgModel implements OnIn
45
45
  private getNativeValue;
46
46
  private destroySubscriptions;
47
47
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtTextareaComponent, [null, { optional: true; self: true; }, { optional: true; host: true; }, { optional: true; skipSelf: true; }, null, { optional: true; }]>;
48
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtTextareaComponent, "ngt-textarea", never, { "label": "label"; "placeholder": "placeholder"; "rows": "rows"; "showCharactersLength": "showCharactersLength"; "helpTitle": "helpTitle"; "helpText": "helpText"; "helpTextColor": "helpTextColor"; "shining": "shining"; "name": "name"; "isDisabled": "isDisabled"; "isReadonly": "isReadonly"; "jit": "jit"; "focus": "focus"; "isRequired": "isRequired"; "maxLength": "maxLength"; }, {}, never, ["*"], false, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtTextareaComponent, "ngt-textarea", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "showCharactersLength": { "alias": "showCharactersLength"; "required": false; }; "helpTitle": { "alias": "helpTitle"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "helpTextColor": { "alias": "helpTextColor"; "required": false; }; "shining": { "alias": "shining"; "required": false; }; "name": { "alias": "name"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isReadonly": { "alias": "isReadonly"; "required": false; }; "jit": { "alias": "jit"; "required": false; }; "focus": { "alias": "focus"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; }, {}, never, ["*"], false, never>;
49
49
  }