static-columns 13.3.8 → 16.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 (188) hide show
  1. package/README.md +99 -99
  2. package/assets/shared/shared_folder_info.txt +1 -1
  3. package/browser/README.md +24 -24
  4. package/browser/esm2022/lib/breakpoints.service.mjs +59 -0
  5. package/browser/esm2022/lib/column/base-hide-show.directive.mjs +48 -0
  6. package/browser/esm2022/lib/column/column-grow.directive.mjs +23 -0
  7. package/browser/esm2022/lib/column/column-hide-desktop.directive.mjs +25 -0
  8. package/browser/esm2022/lib/column/column-hide-mobile.directive.mjs +25 -0
  9. package/browser/esm2022/lib/column/column-hide-tablet.directive.mjs +25 -0
  10. package/browser/esm2022/lib/column/column-show-desktop.directive.mjs +25 -0
  11. package/browser/esm2022/lib/column/column-show-mobile.directive.mjs +25 -0
  12. package/browser/esm2022/lib/column/column-show-tablet.directive.mjs +25 -0
  13. package/browser/esm2022/lib/column/column.component.mjs +25 -0
  14. package/browser/esm2022/lib/columns-gap/columns-gap.component.mjs +36 -0
  15. package/browser/esm2022/lib/columns.component.mjs +21 -0
  16. package/browser/esm2022/lib/columns.module.mjs +69 -0
  17. package/{client/fesm2015 → browser/fesm2022}/static-columns.mjs +67 -69
  18. package/browser/fesm2022/static-columns.mjs.map +1 -0
  19. package/browser/lib/column/base-hide-show.directive.d.ts +1 -1
  20. package/browser/lib/column/column-grow.directive.d.ts +1 -1
  21. package/browser/lib/column/column-hide-desktop.directive.d.ts +1 -1
  22. package/browser/lib/column/column-hide-mobile.directive.d.ts +1 -1
  23. package/browser/lib/column/column-hide-tablet.directive.d.ts +1 -1
  24. package/browser/lib/column/column-show-desktop.directive.d.ts +1 -1
  25. package/browser/lib/column/column-show-mobile.directive.d.ts +1 -1
  26. package/browser/lib/column/column-show-tablet.directive.d.ts +1 -1
  27. package/browser/lib/column/column.component.d.ts +1 -1
  28. package/browser/lib/columns-gap/columns-gap.component.d.ts +1 -1
  29. package/browser/lib/columns.component.d.ts +1 -1
  30. package/browser/package.json +6 -12
  31. package/client/README.md +24 -24
  32. package/client/esm2022/lib/breakpoints.service.mjs +59 -0
  33. package/client/esm2022/lib/column/base-hide-show.directive.mjs +48 -0
  34. package/client/esm2022/lib/column/column-grow.directive.mjs +23 -0
  35. package/client/esm2022/lib/column/column-hide-desktop.directive.mjs +25 -0
  36. package/client/esm2022/lib/column/column-hide-mobile.directive.mjs +25 -0
  37. package/client/esm2022/lib/column/column-hide-tablet.directive.mjs +25 -0
  38. package/client/esm2022/lib/column/column-show-desktop.directive.mjs +25 -0
  39. package/client/esm2022/lib/column/column-show-mobile.directive.mjs +25 -0
  40. package/client/esm2022/lib/column/column-show-tablet.directive.mjs +25 -0
  41. package/client/esm2022/lib/column/column.component.mjs +25 -0
  42. package/client/esm2022/lib/columns-gap/columns-gap.component.mjs +36 -0
  43. package/client/esm2022/lib/columns.component.mjs +21 -0
  44. package/client/esm2022/lib/columns.module.mjs +69 -0
  45. package/{browser/fesm2015 → client/fesm2022}/static-columns.mjs +67 -69
  46. package/client/fesm2022/static-columns.mjs.map +1 -0
  47. package/client/lib/column/base-hide-show.directive.d.ts +1 -1
  48. package/client/lib/column/column-grow.directive.d.ts +1 -1
  49. package/client/lib/column/column-hide-desktop.directive.d.ts +1 -1
  50. package/client/lib/column/column-hide-mobile.directive.d.ts +1 -1
  51. package/client/lib/column/column-hide-tablet.directive.d.ts +1 -1
  52. package/client/lib/column/column-show-desktop.directive.d.ts +1 -1
  53. package/client/lib/column/column-show-mobile.directive.d.ts +1 -1
  54. package/client/lib/column/column-show-tablet.directive.d.ts +1 -1
  55. package/client/lib/column/column.component.d.ts +1 -1
  56. package/client/lib/columns-gap/columns-gap.component.d.ts +1 -1
  57. package/client/lib/columns.component.d.ts +1 -1
  58. package/client/package.json +84 -82
  59. package/index.js.map +1 -1
  60. package/lib/breakpoints.service.js +1 -2
  61. package/lib/breakpoints.service.js.map +1 -1
  62. package/lib/column/base-hide-show.directive.js +1 -2
  63. package/lib/column/base-hide-show.directive.js.map +1 -1
  64. package/lib/column/column-grow.directive.js +1 -2
  65. package/lib/column/column-grow.directive.js.map +1 -1
  66. package/lib/column/column-hide-desktop.directive.js +1 -2
  67. package/lib/column/column-hide-desktop.directive.js.map +1 -1
  68. package/lib/column/column-hide-mobile.directive.js +1 -2
  69. package/lib/column/column-hide-mobile.directive.js.map +1 -1
  70. package/lib/column/column-hide-tablet.directive.js +1 -2
  71. package/lib/column/column-hide-tablet.directive.js.map +1 -1
  72. package/lib/column/column-show-desktop.directive.js +1 -2
  73. package/lib/column/column-show-desktop.directive.js.map +1 -1
  74. package/lib/column/column-show-mobile.directive.js +1 -2
  75. package/lib/column/column-show-mobile.directive.js.map +1 -1
  76. package/lib/column/column-show-tablet.directive.js +1 -2
  77. package/lib/column/column-show-tablet.directive.js.map +1 -1
  78. package/lib/column/column.component.js +1 -2
  79. package/lib/column/column.component.js.map +1 -1
  80. package/lib/column/index.js +3 -3
  81. package/lib/column/index.js.map +1 -1
  82. package/lib/columns-gap/columns-gap.component.js +3 -3
  83. package/lib/columns-gap/columns-gap.component.js.map +1 -1
  84. package/lib/columns-gap/index.js +3 -3
  85. package/lib/columns-gap/index.js.map +1 -1
  86. package/lib/columns.component.js +3 -3
  87. package/lib/columns.component.js.map +1 -1
  88. package/lib/columns.module.js +3 -3
  89. package/lib/columns.module.js.map +1 -1
  90. package/lib/index.js.map +1 -1
  91. package/package.json +2 -2
  92. package/package.json_devDependencies.json +237 -237
  93. package/package.json_tnp.json5 +51 -51
  94. package/tmp-environment.json +89 -87
  95. package/websql/README.md +24 -24
  96. package/websql/esm2022/lib/breakpoints.service.mjs +59 -0
  97. package/websql/esm2022/lib/column/base-hide-show.directive.mjs +48 -0
  98. package/websql/esm2022/lib/column/column-grow.directive.mjs +23 -0
  99. package/websql/esm2022/lib/column/column-hide-desktop.directive.mjs +25 -0
  100. package/websql/esm2022/lib/column/column-hide-mobile.directive.mjs +25 -0
  101. package/websql/esm2022/lib/column/column-hide-tablet.directive.mjs +25 -0
  102. package/websql/esm2022/lib/column/column-show-desktop.directive.mjs +25 -0
  103. package/websql/esm2022/lib/column/column-show-mobile.directive.mjs +25 -0
  104. package/websql/esm2022/lib/column/column-show-tablet.directive.mjs +25 -0
  105. package/websql/esm2022/lib/column/column.component.mjs +25 -0
  106. package/websql/esm2022/lib/columns-gap/columns-gap.component.mjs +36 -0
  107. package/websql/esm2022/lib/columns.component.mjs +21 -0
  108. package/websql/esm2022/lib/columns.module.mjs +69 -0
  109. package/websql/{fesm2015 → fesm2022}/static-columns.mjs +67 -69
  110. package/websql/fesm2022/static-columns.mjs.map +1 -0
  111. package/websql/lib/column/base-hide-show.directive.d.ts +1 -1
  112. package/websql/lib/column/column-grow.directive.d.ts +1 -1
  113. package/websql/lib/column/column-hide-desktop.directive.d.ts +1 -1
  114. package/websql/lib/column/column-hide-mobile.directive.d.ts +1 -1
  115. package/websql/lib/column/column-hide-tablet.directive.d.ts +1 -1
  116. package/websql/lib/column/column-show-desktop.directive.d.ts +1 -1
  117. package/websql/lib/column/column-show-mobile.directive.d.ts +1 -1
  118. package/websql/lib/column/column-show-tablet.directive.d.ts +1 -1
  119. package/websql/lib/column/column.component.d.ts +1 -1
  120. package/websql/lib/columns-gap/columns-gap.component.d.ts +1 -1
  121. package/websql/lib/columns.component.d.ts +1 -1
  122. package/websql/package.json +6 -12
  123. package/browser/esm2020/lib/breakpoints.service.mjs +0 -58
  124. package/browser/esm2020/lib/column/base-hide-show.directive.mjs +0 -47
  125. package/browser/esm2020/lib/column/column-grow.directive.mjs +0 -22
  126. package/browser/esm2020/lib/column/column-hide-desktop.directive.mjs +0 -24
  127. package/browser/esm2020/lib/column/column-hide-mobile.directive.mjs +0 -24
  128. package/browser/esm2020/lib/column/column-hide-tablet.directive.mjs +0 -24
  129. package/browser/esm2020/lib/column/column-show-desktop.directive.mjs +0 -24
  130. package/browser/esm2020/lib/column/column-show-mobile.directive.mjs +0 -24
  131. package/browser/esm2020/lib/column/column-show-tablet.directive.mjs +0 -24
  132. package/browser/esm2020/lib/column/column.component.mjs +0 -24
  133. package/browser/esm2020/lib/columns-gap/columns-gap.component.mjs +0 -35
  134. package/browser/esm2020/lib/columns.component.mjs +0 -20
  135. package/browser/esm2020/lib/columns.module.mjs +0 -70
  136. package/browser/fesm2015/static-columns.mjs.map +0 -1
  137. package/browser/fesm2020/static-columns.mjs +0 -389
  138. package/browser/fesm2020/static-columns.mjs.map +0 -1
  139. package/client/esm2020/lib/breakpoints.service.mjs +0 -58
  140. package/client/esm2020/lib/column/base-hide-show.directive.mjs +0 -47
  141. package/client/esm2020/lib/column/column-grow.directive.mjs +0 -22
  142. package/client/esm2020/lib/column/column-hide-desktop.directive.mjs +0 -24
  143. package/client/esm2020/lib/column/column-hide-mobile.directive.mjs +0 -24
  144. package/client/esm2020/lib/column/column-hide-tablet.directive.mjs +0 -24
  145. package/client/esm2020/lib/column/column-show-desktop.directive.mjs +0 -24
  146. package/client/esm2020/lib/column/column-show-mobile.directive.mjs +0 -24
  147. package/client/esm2020/lib/column/column-show-tablet.directive.mjs +0 -24
  148. package/client/esm2020/lib/column/column.component.mjs +0 -24
  149. package/client/esm2020/lib/columns-gap/columns-gap.component.mjs +0 -35
  150. package/client/esm2020/lib/columns.component.mjs +0 -20
  151. package/client/esm2020/lib/columns.module.mjs +0 -70
  152. package/client/fesm2015/static-columns.mjs.map +0 -1
  153. package/client/fesm2020/static-columns.mjs +0 -389
  154. package/client/fesm2020/static-columns.mjs.map +0 -1
  155. package/websql/esm2020/lib/breakpoints.service.mjs +0 -58
  156. package/websql/esm2020/lib/column/base-hide-show.directive.mjs +0 -47
  157. package/websql/esm2020/lib/column/column-grow.directive.mjs +0 -22
  158. package/websql/esm2020/lib/column/column-hide-desktop.directive.mjs +0 -24
  159. package/websql/esm2020/lib/column/column-hide-mobile.directive.mjs +0 -24
  160. package/websql/esm2020/lib/column/column-hide-tablet.directive.mjs +0 -24
  161. package/websql/esm2020/lib/column/column-show-desktop.directive.mjs +0 -24
  162. package/websql/esm2020/lib/column/column-show-mobile.directive.mjs +0 -24
  163. package/websql/esm2020/lib/column/column-show-tablet.directive.mjs +0 -24
  164. package/websql/esm2020/lib/column/column.component.mjs +0 -24
  165. package/websql/esm2020/lib/columns-gap/columns-gap.component.mjs +0 -35
  166. package/websql/esm2020/lib/columns.component.mjs +0 -20
  167. package/websql/esm2020/lib/columns.module.mjs +0 -70
  168. package/websql/fesm2015/static-columns.mjs.map +0 -1
  169. package/websql/fesm2020/static-columns.mjs +0 -389
  170. package/websql/fesm2020/static-columns.mjs.map +0 -1
  171. /package/browser/{esm2020 → esm2022}/lib/column/index.mjs +0 -0
  172. /package/browser/{esm2020 → esm2022}/lib/columns-gap/index.mjs +0 -0
  173. /package/browser/{esm2020 → esm2022}/lib/index.mjs +0 -0
  174. /package/browser/{esm2020 → esm2022}/public-api.mjs +0 -0
  175. /package/browser/{esm2020 → esm2022}/static-columns.mjs +0 -0
  176. /package/browser/{static-columns.d.ts → index.d.ts} +0 -0
  177. /package/client/{esm2020 → esm2022}/lib/column/index.mjs +0 -0
  178. /package/client/{esm2020 → esm2022}/lib/columns-gap/index.mjs +0 -0
  179. /package/client/{esm2020 → esm2022}/lib/index.mjs +0 -0
  180. /package/client/{esm2020 → esm2022}/public-api.mjs +0 -0
  181. /package/client/{esm2020 → esm2022}/static-columns.mjs +0 -0
  182. /package/client/{static-columns.d.ts → index.d.ts} +0 -0
  183. /package/websql/{esm2020 → esm2022}/lib/column/index.mjs +0 -0
  184. /package/websql/{esm2020 → esm2022}/lib/columns-gap/index.mjs +0 -0
  185. /package/websql/{esm2020 → esm2022}/lib/index.mjs +0 -0
  186. /package/websql/{esm2020 → esm2022}/public-api.mjs +0 -0
  187. /package/websql/{esm2020 → esm2022}/static-columns.mjs +0 -0
  188. /package/websql/{static-columns.d.ts → index.d.ts} +0 -0
@@ -1,9 +1,9 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { Directive, Injectable, Component, HostBinding, Input, EventEmitter, Output, ViewChildren, NgModule } from '@angular/core';
3
3
  import { Subject, takeUntil } from 'rxjs';
4
- import { _ } from 'tnp-core/browser';
5
4
  import * as i1 from '@angular/cdk/layout';
6
5
  import { LayoutModule } from '@angular/cdk/layout';
6
+ import { _ } from 'tnp-core/browser';
7
7
 
8
8
  class DirectiveGrow {
9
9
  constructor(e, renderer) {
@@ -13,10 +13,10 @@ class DirectiveGrow {
13
13
  renderer.setStyle(e.nativeElement, 'flexGrow', '1');
14
14
  }, 0);
15
15
  }
16
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveGrow, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
17
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: DirectiveGrow, selector: "[grow]", ngImport: i0 }); }
16
18
  }
17
- DirectiveGrow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveGrow, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
18
- DirectiveGrow.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveGrow, selector: "[grow]", ngImport: i0 });
19
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveGrow, decorators: [{
19
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveGrow, decorators: [{
20
20
  type: Directive,
21
21
  args: [{
22
22
  selector: '[grow]'
@@ -30,6 +30,12 @@ const BRK = {
30
30
  desktop: '(min-width: 840.00px)',
31
31
  };
32
32
  class BreakpointsService {
33
+ listenTo() {
34
+ setTimeout(() => {
35
+ this.sub.next(this.current);
36
+ });
37
+ return this.sub.asObservable();
38
+ }
33
39
  constructor(breakpointObserver) {
34
40
  this.sub = new Subject();
35
41
  breakpointObserver.observe([BRK.mobile, BRK.desktop]).subscribe((state) => {
@@ -61,16 +67,10 @@ class BreakpointsService {
61
67
  }
62
68
  });
63
69
  }
64
- listenTo() {
65
- setTimeout(() => {
66
- this.sub.next(this.current);
67
- });
68
- return this.sub.asObservable();
69
- }
70
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: BreakpointsService, deps: [{ token: i1.BreakpointObserver }], target: i0.ɵɵFactoryTarget.Injectable }); }
71
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: BreakpointsService, providedIn: 'root' }); }
70
72
  }
71
- BreakpointsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BreakpointsService, deps: [{ token: i1.BreakpointObserver }], target: i0.ɵɵFactoryTarget.Injectable });
72
- BreakpointsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BreakpointsService, providedIn: 'root' });
73
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BreakpointsService, decorators: [{
73
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: BreakpointsService, decorators: [{
74
74
  type: Injectable,
75
75
  args: [{ providedIn: 'root' }]
76
76
  }], ctorParameters: function () { return [{ type: i1.BreakpointObserver }]; } });
@@ -107,10 +107,10 @@ class BaseHideShowDirective {
107
107
  this.$destroy.next(void 0);
108
108
  this.$destroy.complete();
109
109
  }
110
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: BaseHideShowDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: BreakpointsService }], target: i0.ɵɵFactoryTarget.Directive }); }
111
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: BaseHideShowDirective, selector: "[baseHideShowDirective]", ngImport: i0 }); }
110
112
  }
111
- BaseHideShowDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BaseHideShowDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: BreakpointsService }], target: i0.ɵɵFactoryTarget.Directive });
112
- BaseHideShowDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: BaseHideShowDirective, selector: "[baseHideShowDirective]", ngImport: i0 });
113
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BaseHideShowDirective, decorators: [{
113
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: BaseHideShowDirective, decorators: [{
114
114
  type: Directive,
115
115
  args: [{
116
116
  selector: '[baseHideShowDirective]'
@@ -128,10 +128,10 @@ class DirectiveHideMobile extends BaseHideShowDirective {
128
128
  this.showElement();
129
129
  }
130
130
  }
131
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveHideMobile, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
132
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: DirectiveHideMobile, selector: "[hideMobile]", usesInheritance: true, ngImport: i0 }); }
131
133
  }
132
- DirectiveHideMobile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveHideMobile, deps: null, target: i0.ɵɵFactoryTarget.Directive });
133
- DirectiveHideMobile.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveHideMobile, selector: "[hideMobile]", usesInheritance: true, ngImport: i0 });
134
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveHideMobile, decorators: [{
134
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveHideMobile, decorators: [{
135
135
  type: Directive,
136
136
  args: [{
137
137
  selector: '[hideMobile]'
@@ -149,10 +149,10 @@ class DirectiveHideTablet extends BaseHideShowDirective {
149
149
  this.showElement();
150
150
  }
151
151
  }
152
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveHideTablet, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
153
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: DirectiveHideTablet, selector: "[hideTablet]", usesInheritance: true, ngImport: i0 }); }
152
154
  }
153
- DirectiveHideTablet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveHideTablet, deps: null, target: i0.ɵɵFactoryTarget.Directive });
154
- DirectiveHideTablet.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveHideTablet, selector: "[hideTablet]", usesInheritance: true, ngImport: i0 });
155
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveHideTablet, decorators: [{
155
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveHideTablet, decorators: [{
156
156
  type: Directive,
157
157
  args: [{
158
158
  selector: '[hideTablet]'
@@ -170,10 +170,10 @@ class DirectiveHideDesktop extends BaseHideShowDirective {
170
170
  this.showElement();
171
171
  }
172
172
  }
173
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveHideDesktop, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
174
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: DirectiveHideDesktop, selector: "[hideDesktop]", usesInheritance: true, ngImport: i0 }); }
173
175
  }
174
- DirectiveHideDesktop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveHideDesktop, deps: null, target: i0.ɵɵFactoryTarget.Directive });
175
- DirectiveHideDesktop.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveHideDesktop, selector: "[hideDesktop]", usesInheritance: true, ngImport: i0 });
176
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveHideDesktop, decorators: [{
176
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveHideDesktop, decorators: [{
177
177
  type: Directive,
178
178
  args: [{
179
179
  selector: '[hideDesktop]'
@@ -191,10 +191,10 @@ class DirectiveShowMobile extends BaseHideShowDirective {
191
191
  this.hideElement();
192
192
  }
193
193
  }
194
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveShowMobile, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
195
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: DirectiveShowMobile, selector: "[showMobile]", usesInheritance: true, ngImport: i0 }); }
194
196
  }
195
- DirectiveShowMobile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveShowMobile, deps: null, target: i0.ɵɵFactoryTarget.Directive });
196
- DirectiveShowMobile.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveShowMobile, selector: "[showMobile]", usesInheritance: true, ngImport: i0 });
197
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveShowMobile, decorators: [{
197
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveShowMobile, decorators: [{
198
198
  type: Directive,
199
199
  args: [{
200
200
  selector: '[showMobile]'
@@ -212,10 +212,10 @@ class DirectiveShowTablet extends BaseHideShowDirective {
212
212
  this.hideElement();
213
213
  }
214
214
  }
215
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveShowTablet, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
216
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: DirectiveShowTablet, selector: "[showTablet]", usesInheritance: true, ngImport: i0 }); }
215
217
  }
216
- DirectiveShowTablet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveShowTablet, deps: null, target: i0.ɵɵFactoryTarget.Directive });
217
- DirectiveShowTablet.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveShowTablet, selector: "[showTablet]", usesInheritance: true, ngImport: i0 });
218
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveShowTablet, decorators: [{
218
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveShowTablet, decorators: [{
219
219
  type: Directive,
220
220
  args: [{
221
221
  selector: '[showTablet]'
@@ -233,10 +233,10 @@ class DirectiveShowDesktop extends BaseHideShowDirective {
233
233
  this.hideElement();
234
234
  }
235
235
  }
236
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveShowDesktop, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
237
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: DirectiveShowDesktop, selector: "[showDesktop]", usesInheritance: true, ngImport: i0 }); }
236
238
  }
237
- DirectiveShowDesktop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveShowDesktop, deps: null, target: i0.ɵɵFactoryTarget.Directive });
238
- DirectiveShowDesktop.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveShowDesktop, selector: "[showDesktop]", usesInheritance: true, ngImport: i0 });
239
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveShowDesktop, decorators: [{
239
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveShowDesktop, decorators: [{
240
240
  type: Directive,
241
241
  args: [{
242
242
  selector: '[showDesktop]'
@@ -249,10 +249,10 @@ class ColumnComponent {
249
249
  constructor() {
250
250
  }
251
251
  ngOnInit() { }
252
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: ColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
253
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.4", type: ColumnComponent, selector: "column", inputs: { width: "width" }, host: { properties: { "style.flex.basis.px": "this.width", "style.minWidth.px": "this.width" } }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }); }
252
254
  }
253
- ColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
254
- ColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ColumnComponent, selector: "column", inputs: { width: "width" }, host: { properties: { "style.flex.basis.px": "this.width", "style.minWidth.px": "this.width" } }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] });
255
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnComponent, decorators: [{
255
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: ColumnComponent, decorators: [{
256
256
  type: Component,
257
257
  args: [{ selector: 'column', template: '<ng-content></ng-content>', styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }]
258
258
  }], ctorParameters: function () { return []; }, propDecorators: { width: [{
@@ -282,12 +282,12 @@ class ColumnsGapComponent {
282
282
  ngOnDestroy() {
283
283
  this.handlers.forEach(h => h.unsubscribe());
284
284
  }
285
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: ColumnsGapComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
286
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.4", type: ColumnsGapComponent, selector: "columns-gap", inputs: { columnsGapData: "columnsGapData" }, outputs: { columnsGapDataChanged: "columnsGapDataChanged" }, host: { properties: { "style.flex.basis.px": "this.width", "style.minWidth.px": "this.width" } }, ngImport: i0, template: "<column [width]=\"width\"></column>\r\n", styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"], dependencies: [{ kind: "component", type: ColumnComponent, selector: "column", inputs: ["width"] }] }); }
285
287
  }
286
- ColumnsGapComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnsGapComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
287
- ColumnsGapComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ColumnsGapComponent, selector: "columns-gap", inputs: { columnsGapData: "columnsGapData" }, outputs: { columnsGapDataChanged: "columnsGapDataChanged" }, host: { properties: { "style.flex.basis.px": "this.width", "style.minWidth.px": "this.width" } }, ngImport: i0, template: "<column [width]=\"width\"></column>\n", styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"], components: [{ type: ColumnComponent, selector: "column", inputs: ["width"] }] });
288
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnsGapComponent, decorators: [{
288
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: ColumnsGapComponent, decorators: [{
289
289
  type: Component,
290
- args: [{ selector: 'columns-gap', template: "<column [width]=\"width\"></column>\n", styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }]
290
+ args: [{ selector: 'columns-gap', template: "<column [width]=\"width\"></column>\r\n", styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }]
291
291
  }], ctorParameters: function () { return []; }, propDecorators: { width: [{
292
292
  type: HostBinding,
293
293
  args: ['style.flex.basis.px']
@@ -309,12 +309,12 @@ class ColumnsComponent {
309
309
  constructor() {
310
310
  }
311
311
  ngOnInit() { }
312
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: ColumnsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
313
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.4", type: ColumnsComponent, selector: "columns-container", viewQueries: [{ propertyName: "childrens", predicate: ColumnComponent, descendants: true }], ngImport: i0, template: "<ng-content></ng-content>\r\n", styles: [":host{display:flex;width:100%;align-content:streach;justify-content:space-between}.static-columns-hide-mobile{display:block}@media (max-width: 600px){.static-columns-hide-mobile{display:none}}\n"] }); }
312
314
  }
313
- ColumnsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
314
- ColumnsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ColumnsComponent, selector: "columns-container", viewQueries: [{ propertyName: "childrens", predicate: ColumnComponent, descendants: true }], ngImport: i0, template: "<ng-content></ng-content>\n", styles: [":host{display:flex;width:100%;align-content:streach;justify-content:space-between}.static-columns-hide-mobile{display:block}@media (max-width: 600px){.static-columns-hide-mobile{display:none}}\n"] });
315
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnsComponent, decorators: [{
315
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: ColumnsComponent, decorators: [{
316
316
  type: Component,
317
- args: [{ selector: 'columns-container', template: "<ng-content></ng-content>\n", styles: [":host{display:flex;width:100%;align-content:streach;justify-content:space-between}.static-columns-hide-mobile{display:block}@media (max-width: 600px){.static-columns-hide-mobile{display:none}}\n"] }]
317
+ args: [{ selector: 'columns-container', template: "<ng-content></ng-content>\r\n", styles: [":host{display:flex;width:100%;align-content:streach;justify-content:space-between}.static-columns-hide-mobile{display:block}@media (max-width: 600px){.static-columns-hide-mobile{display:none}}\n"] }]
318
318
  }], ctorParameters: function () { return []; }, propDecorators: { childrens: [{
319
319
  type: ViewChildren,
320
320
  args: [ColumnComponent]
@@ -335,31 +335,29 @@ const components = [
335
335
  ColumnsGapComponent,
336
336
  ];
337
337
  class StaticColumnsModule {
338
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: StaticColumnsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
339
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.4", ngImport: i0, type: StaticColumnsModule, declarations: [ColumnsComponent,
340
+ ColumnComponent,
341
+ DirectiveGrow,
342
+ DirectiveHideMobile,
343
+ DirectiveHideTablet,
344
+ DirectiveHideDesktop,
345
+ DirectiveShowTablet,
346
+ DirectiveShowMobile,
347
+ DirectiveShowDesktop,
348
+ ColumnsGapComponent], imports: [LayoutModule], exports: [LayoutModule, ColumnsComponent,
349
+ ColumnComponent,
350
+ DirectiveGrow,
351
+ DirectiveHideMobile,
352
+ DirectiveHideTablet,
353
+ DirectiveHideDesktop,
354
+ DirectiveShowTablet,
355
+ DirectiveShowMobile,
356
+ DirectiveShowDesktop,
357
+ ColumnsGapComponent] }); }
358
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: StaticColumnsModule, providers: [BreakpointsService], imports: [LayoutModule, LayoutModule] }); }
338
359
  }
339
- StaticColumnsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StaticColumnsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
340
- StaticColumnsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StaticColumnsModule, declarations: [ColumnsComponent,
341
- ColumnComponent,
342
- DirectiveGrow,
343
- DirectiveHideMobile,
344
- DirectiveHideTablet,
345
- DirectiveHideDesktop,
346
- DirectiveShowTablet,
347
- DirectiveShowMobile,
348
- DirectiveShowDesktop,
349
- ColumnsGapComponent], imports: [LayoutModule], exports: [LayoutModule, ColumnsComponent,
350
- ColumnComponent,
351
- DirectiveGrow,
352
- DirectiveHideMobile,
353
- DirectiveHideTablet,
354
- DirectiveHideDesktop,
355
- DirectiveShowTablet,
356
- DirectiveShowMobile,
357
- DirectiveShowDesktop,
358
- ColumnsGapComponent] });
359
- StaticColumnsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StaticColumnsModule, providers: [BreakpointsService], imports: [[
360
- LayoutModule,
361
- ], LayoutModule] });
362
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StaticColumnsModule, decorators: [{
360
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: StaticColumnsModule, decorators: [{
363
361
  type: NgModule,
364
362
  args: [{
365
363
  imports: [
@@ -0,0 +1 @@
1
+ {"version":3,"file":"static-columns.mjs","sources":["../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/column/column-grow.directive.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/breakpoints.service.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/column/base-hide-show.directive.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/column/column-hide-mobile.directive.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/column/column-hide-tablet.directive.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/column/column-hide-desktop.directive.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/column/column-show-mobile.directive.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/column/column-show-tablet.directive.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/column/column-show-desktop.directive.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/column/column.component.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/column/index.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/columns-gap/columns-gap.component.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/columns-gap/columns-gap.component.html","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/columns-gap/index.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/columns.component.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/columns.component.html","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/columns.module.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/index.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/static-columns.ts"],"sourcesContent":["import { Component, Directive, ElementRef, Renderer2 } from '@angular/core';\n\n\n@Directive({\n selector: '[grow]'\n})\nexport class DirectiveGrow {\n constructor(public e: ElementRef, public renderer: Renderer2) {\n setTimeout(() => {\n\n renderer.setStyle(e.nativeElement, 'flexGrow', '1')\n }, 0);\n\n\n }\n}\n\n ;({}); // @--end-of-file-for-module=static-columns lib/column/column-grow.directive.ts","import { BreakpointObserver, BreakpointState, Breakpoints } from '@angular/cdk/layout';\nimport { Injectable } from '@angular/core';\nimport { Subject } from 'rxjs';\nimport { _ } from 'tnp-core/browser';\n\nconst BRK = {\n mobile: '(max-width: 599.98px)',\n\n desktop: '(min-width: 840.00px)',\n}\n\n\n@Injectable({ providedIn: 'root' })\nexport class BreakpointsService {\n\n private sub = new Subject<'mobile' | 'tablet' | 'desktop'>();\n public listenTo() {\n setTimeout(()=> {\n this.sub.next(this.current);\n });\n return this.sub.asObservable();\n }\n\n private current: 'mobile' | 'tablet' | 'desktop';\n constructor(\n breakpointObserver: BreakpointObserver,\n ) {\n\n breakpointObserver.observe([BRK.mobile, BRK.desktop]).subscribe((state) => {\n if (!_.isUndefined([BRK.mobile].find(f => state.breakpoints[f]))) {\n this.current = 'mobile';\n this.sub.next('mobile');\n } else if (!_.isUndefined([BRK.desktop].find(f => state.breakpoints[f]))) {\n this.current = 'desktop';\n this.sub.next('desktop');\n } else {\n this.current = 'tablet';\n this.sub.next('tablet');\n }\n });\n\n setTimeout(() => {\n if (breakpointObserver.isMatched([BRK.mobile])) {\n this.current = 'mobile';\n this.sub.next('mobile');\n } else if (breakpointObserver.isMatched([BRK.desktop])) {\n this.current = 'desktop';\n this.sub.next('desktop');\n } else {\n this.current = 'tablet';\n this.sub.next('tablet');\n }\n })\n }\n\n}\n\n ;({}); // @--end-of-file-for-module=static-columns lib/breakpoints.service.ts","\n\nimport { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport { Component, Directive, ElementRef, OnInit, Renderer2 } from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\nimport { BreakpointsService } from '../breakpoints.service';\n\n@Directive({\n selector: '[baseHideShowDirective]'\n})\nexport abstract class BaseHideShowDirective {\n $destroy = new Subject();\n constructor(\n public e: ElementRef,\n public renderer: Renderer2,\n public breakpoints: BreakpointsService,\n ) { }\n\n private originalDisaplay: string;\n\n\n abstract action(state: \"mobile\" | \"tablet\" | \"desktop\");\n\n protected hideElement() {\n this.renderer.setStyle(this.e.nativeElement, 'display', 'none')\n }\n\n protected showElement() {\n this.renderer.setStyle(this.e.nativeElement, 'display', this.originalDisaplay)\n }\n\n ngOnInit(): void {\n //Called after ngAfterContentInit when the component's view has been initialized. Applies to components only.\n //Add 'implements AfterViewInit' to the class.\n this.breakpoints\n .listenTo()\n .pipe(takeUntil(this.$destroy))\n .subscribe((state) => {\n if (typeof this.originalDisaplay === 'undefined') {\n this.originalDisaplay = (this.e.nativeElement as HTMLElement).style.display;\n }\n\n this.action(state);\n })\n }\n\n ngOnDestroy(): void {\n this.$destroy.next(void 0);\n this.$destroy.complete()\n }\n\n\n}\n\n ;({}); // @--end-of-file-for-module=static-columns lib/column/base-hide-show.directive.ts","import { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport { Component, Directive, ElementRef, OnInit, Renderer2 } from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\nimport { BreakpointsService } from '../breakpoints.service';\nimport { BaseHideShowDirective } from './base-hide-show.directive';\n\n@Directive({\n selector: '[hideMobile]'\n})\nexport class DirectiveHideMobile extends BaseHideShowDirective {\n action(state: 'mobile' | 'tablet' | 'desktop') {\n if (state === 'mobile') {\n this.hideElement();\n } else {\n this.showElement();\n }\n }\n}\n\n ;({}); // @--end-of-file-for-module=static-columns lib/column/column-hide-mobile.directive.ts","import { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport { Component, Directive, ElementRef, OnInit, Renderer2 } from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\nimport { BreakpointsService } from '../breakpoints.service';\nimport { BaseHideShowDirective } from './base-hide-show.directive';\n\n@Directive({\n selector: '[hideTablet]'\n})\nexport class DirectiveHideTablet extends BaseHideShowDirective {\n action(state: 'mobile' | 'tablet' | 'desktop') {\n if (state === 'tablet') {\n this.hideElement();\n } else {\n this.showElement();\n }\n }\n}\n\n ;({}); // @--end-of-file-for-module=static-columns lib/column/column-hide-tablet.directive.ts","import { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport { Component, Directive, ElementRef, OnInit, Renderer2 } from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\nimport { BreakpointsService } from '../breakpoints.service';\nimport { BaseHideShowDirective } from './base-hide-show.directive';\n\n@Directive({\n selector: '[hideDesktop]'\n})\nexport class DirectiveHideDesktop extends BaseHideShowDirective {\n action(state: 'mobile' | 'tablet' | 'desktop') {\n if (state === 'desktop') {\n this.hideElement();\n } else {\n this.showElement();\n }\n }\n}\n\n\n ;({}); // @--end-of-file-for-module=static-columns lib/column/column-hide-desktop.directive.ts","import { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport { Component, Directive, ElementRef, OnInit, Renderer2 } from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\nimport { BreakpointsService } from '../breakpoints.service';\nimport { BaseHideShowDirective } from './base-hide-show.directive';\n\n@Directive({\n selector: '[showMobile]'\n})\nexport class DirectiveShowMobile extends BaseHideShowDirective {\n action(state: 'mobile' | 'tablet' | 'desktop') {\n if (state === 'mobile') {\n this.showElement();\n } else {\n this.hideElement();\n }\n }\n}\n\n ;({}); // @--end-of-file-for-module=static-columns lib/column/column-show-mobile.directive.ts","import { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport { Component, Directive, ElementRef, OnInit, Renderer2 } from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\nimport { BreakpointsService } from '../breakpoints.service';\nimport { BaseHideShowDirective } from './base-hide-show.directive';\n\n@Directive({\n selector: '[showTablet]'\n})\nexport class DirectiveShowTablet extends BaseHideShowDirective {\n action(state: 'mobile' | 'tablet' | 'desktop') {\n if (state === 'tablet') {\n this.showElement();\n } else {\n this.hideElement();\n }\n }\n}\n\n ;({}); // @--end-of-file-for-module=static-columns lib/column/column-show-tablet.directive.ts","import { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport { Component, Directive, ElementRef, OnInit, Renderer2 } from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\nimport { BreakpointsService } from '../breakpoints.service';\nimport { BaseHideShowDirective } from './base-hide-show.directive';\n\n@Directive({\n selector: '[showDesktop]'\n})\nexport class DirectiveShowDesktop extends BaseHideShowDirective {\n action(state: 'mobile' | 'tablet' | 'desktop') {\n if (state === 'desktop') {\n this.showElement();\n } else {\n this.hideElement();\n }\n }\n}\n\n ;({}); // @--end-of-file-for-module=static-columns lib/column/column-show-desktop.directive.ts","import { Component, OnInit, Input, HostBinding } from '@angular/core';\n\n@Component({\n selector: 'column',\n template: '<ng-content></ng-content>',\n styleUrls: ['./column.component.scss']\n})\nexport class ColumnComponent implements OnInit {\n @HostBinding('style.flex.basis.px') @HostBinding('style.minWidth.px') @Input() width: number;\n\n constructor() {\n\n }\n\n ngOnInit() { }\n\n}\n\n ;({}); // @--end-of-file-for-module=static-columns lib/column/column.component.ts","\nexport * from './column-grow.directive';\n\n\nexport * from './column-hide-mobile.directive';\n\n\nexport * from './column-hide-tablet.directive';\n\n\nexport * from './column-hide-desktop.directive';\n\n\nexport * from './column-show-mobile.directive';\n\n\nexport * from './column-show-tablet.directive';\n\n\nexport * from './column-show-desktop.directive';\n\n\nexport * from './column.component';\n\n\n ;({}); // @--end-of-file-for-module=static-columns lib/column/index.ts","\nimport { Component, EventEmitter, HostBinding, Input, OnInit, Output } from '@angular/core';\nimport { Subscription } from 'rxjs';\n\n@Component({\n selector: 'columns-gap',\n templateUrl: './columns-gap.component.html',\n styleUrls: ['./columns-gap.component.scss']\n})\nexport class ColumnsGapComponent implements OnInit {\n\n @HostBinding('style.flex.basis.px') @HostBinding('style.minWidth.px') width: number = 20;\n\n handlers: Subscription[] = [];\n @Output() columnsGapDataChanged = new EventEmitter();\n @Input() columnsGapData: any = {};\n\n constructor() { }\n\n ngOnInit() {\n }\n\n ngOnDestroy(): void {\n this.handlers.forEach(h => h.unsubscribe());\n }\n\n}\n\n\n ;({}); // @--end-of-file-for-module=static-columns lib/columns-gap/columns-gap.component.ts","<column [width]=\"width\"></column>\r\n","\nexport * from './columns-gap.component';\n\n\n ;({}); // @--end-of-file-for-module=static-columns lib/columns-gap/index.ts","\nimport { Component, OnInit, ViewEncapsulation, ViewChildren, QueryList } from '@angular/core';\nimport { ColumnComponent } from './column';\n\n\n\n\n@Component({\n selector: 'columns-container',\n templateUrl: './columns.component.html',\n styleUrls: ['./columns.component.scss'],\n})\nexport class ColumnsComponent implements OnInit {\n @ViewChildren(ColumnComponent) childrens: QueryList<ColumnComponent>;\n\n constructor() {\n\n }\n ngOnInit() { }\n}\n\n\n ;({}); // @--end-of-file-for-module=static-columns lib/columns.component.ts","<ng-content></ng-content>\r\n","\nimport { NgModule } from '@angular/core';\nimport { LayoutModule } from '@angular/cdk/layout';\nimport { ColumnComponent, DirectiveGrow, DirectiveHideDesktop, DirectiveHideTablet, DirectiveHideMobile, DirectiveShowDesktop, DirectiveShowMobile, DirectiveShowTablet, } from './column';/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n/* */\n\nimport { ColumnsGapComponent } from './columns-gap/columns-gap.component';\nimport { ColumnsComponent } from './columns.component';\nimport { BreakpointsService } from './breakpoints.service';\n\n\nconst components = [\n ColumnsComponent,\n ColumnComponent,\n DirectiveGrow,\n DirectiveHideMobile,\n DirectiveHideTablet,\n DirectiveHideDesktop,\n DirectiveShowTablet,\n DirectiveShowMobile,\n DirectiveShowDesktop,\n ColumnsGapComponent,\n];\n\n@NgModule({\n imports: [\n LayoutModule,\n ],\n exports: [\n LayoutModule,\n ...components,\n ],\n declarations: [\n ...components,\n ],\n providers: [BreakpointsService],\n})\nexport class StaticColumnsModule { }\n\n\n ;({}); // @--end-of-file-for-module=static-columns lib/columns.module.ts","export * from './column';\nexport * from './columns-gap';\n\nexport * from './breakpoints.service';\nexport * from './columns.component';\n\n\nexport * from './columns.module';\n\n\n ;({}); // @--end-of-file-for-module=static-columns lib/index.ts","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1.BreakpointsService","i1.ColumnComponent"],"mappings":"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"}
@@ -16,5 +16,5 @@ export declare abstract class BaseHideShowDirective {
16
16
  ngOnInit(): void;
17
17
  ngOnDestroy(): void;
18
18
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseHideShowDirective, never>;
19
- static ɵdir: i0.ɵɵDirectiveDeclaration<BaseHideShowDirective, "[baseHideShowDirective]", never, {}, {}, never>;
19
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BaseHideShowDirective, "[baseHideShowDirective]", never, {}, {}, never, never, false, never>;
20
20
  }
@@ -6,5 +6,5 @@ export declare class DirectiveGrow {
6
6
  renderer: Renderer2;
7
7
  constructor(e: ElementRef, renderer: Renderer2);
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<DirectiveGrow, never>;
9
- static ɵdir: i0.ɵɵDirectiveDeclaration<DirectiveGrow, "[grow]", never, {}, {}, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DirectiveGrow, "[grow]", never, {}, {}, never, never, false, never>;
10
10
  }
@@ -4,5 +4,5 @@ import * as i0 from "@angular/core";
4
4
  export declare class DirectiveHideDesktop extends BaseHideShowDirective {
5
5
  action(state: 'mobile' | 'tablet' | 'desktop'): void;
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<DirectiveHideDesktop, never>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<DirectiveHideDesktop, "[hideDesktop]", never, {}, {}, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DirectiveHideDesktop, "[hideDesktop]", never, {}, {}, never, never, false, never>;
8
8
  }
@@ -4,5 +4,5 @@ import * as i0 from "@angular/core";
4
4
  export declare class DirectiveHideMobile extends BaseHideShowDirective {
5
5
  action(state: 'mobile' | 'tablet' | 'desktop'): void;
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<DirectiveHideMobile, never>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<DirectiveHideMobile, "[hideMobile]", never, {}, {}, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DirectiveHideMobile, "[hideMobile]", never, {}, {}, never, never, false, never>;
8
8
  }
@@ -4,5 +4,5 @@ import * as i0 from "@angular/core";
4
4
  export declare class DirectiveHideTablet extends BaseHideShowDirective {
5
5
  action(state: 'mobile' | 'tablet' | 'desktop'): void;
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<DirectiveHideTablet, never>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<DirectiveHideTablet, "[hideTablet]", never, {}, {}, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DirectiveHideTablet, "[hideTablet]", never, {}, {}, never, never, false, never>;
8
8
  }
@@ -4,5 +4,5 @@ import * as i0 from "@angular/core";
4
4
  export declare class DirectiveShowDesktop extends BaseHideShowDirective {
5
5
  action(state: 'mobile' | 'tablet' | 'desktop'): void;
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<DirectiveShowDesktop, never>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<DirectiveShowDesktop, "[showDesktop]", never, {}, {}, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DirectiveShowDesktop, "[showDesktop]", never, {}, {}, never, never, false, never>;
8
8
  }
@@ -4,5 +4,5 @@ import * as i0 from "@angular/core";
4
4
  export declare class DirectiveShowMobile extends BaseHideShowDirective {
5
5
  action(state: 'mobile' | 'tablet' | 'desktop'): void;
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<DirectiveShowMobile, never>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<DirectiveShowMobile, "[showMobile]", never, {}, {}, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DirectiveShowMobile, "[showMobile]", never, {}, {}, never, never, false, never>;
8
8
  }
@@ -4,5 +4,5 @@ import * as i0 from "@angular/core";
4
4
  export declare class DirectiveShowTablet extends BaseHideShowDirective {
5
5
  action(state: 'mobile' | 'tablet' | 'desktop'): void;
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<DirectiveShowTablet, never>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<DirectiveShowTablet, "[showTablet]", never, {}, {}, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DirectiveShowTablet, "[showTablet]", never, {}, {}, never, never, false, never>;
8
8
  }
@@ -6,5 +6,5 @@ export declare class ColumnComponent implements OnInit {
6
6
  constructor();
7
7
  ngOnInit(): void;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnComponent, "column", never, { "width": "width"; }, {}, never, ["*"]>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnComponent, "column", never, { "width": { "alias": "width"; "required": false; }; }, {}, never, ["*"], false, never>;
10
10
  }
@@ -11,5 +11,5 @@ export declare class ColumnsGapComponent implements OnInit {
11
11
  ngOnInit(): void;
12
12
  ngOnDestroy(): void;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsGapComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnsGapComponent, "columns-gap", never, { "columnsGapData": "columnsGapData"; }, { "columnsGapDataChanged": "columnsGapDataChanged"; }, never, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnsGapComponent, "columns-gap", never, { "columnsGapData": { "alias": "columnsGapData"; "required": false; }; }, { "columnsGapDataChanged": "columnsGapDataChanged"; }, never, never, false, never>;
15
15
  }
@@ -7,5 +7,5 @@ export declare class ColumnsComponent implements OnInit {
7
7
  constructor();
8
8
  ngOnInit(): void;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnsComponent, "columns-container", never, {}, {}, never, ["*"]>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnsComponent, "columns-container", never, {}, {}, never, ["*"], false, never>;
11
11
  }