static-columns 13.3.6 → 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 +95 -91
  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 +3 -244
  92. package/package.json_devDependencies.json +237 -237
  93. package/package.json_tnp.json5 +51 -50
  94. package/tmp-environment.json +104 -101
  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,389 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Directive, Injectable, Component, HostBinding, Input, EventEmitter, Output, ViewChildren, NgModule } from '@angular/core';
3
- import { Subject, takeUntil } from 'rxjs';
4
- import * as i1 from '@angular/cdk/layout';
5
- import { LayoutModule } from '@angular/cdk/layout';
6
- import { _ } from 'tnp-core/websql';
7
-
8
- class DirectiveGrow {
9
- constructor(e, renderer) {
10
- this.e = e;
11
- this.renderer = renderer;
12
- setTimeout(() => {
13
- renderer.setStyle(e.nativeElement, 'flexGrow', '1');
14
- }, 0);
15
- }
16
- }
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: [{
20
- type: Directive,
21
- args: [{
22
- selector: '[grow]'
23
- }]
24
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; } });
25
- ;
26
- ({}); // @--end-of-file-for-module=static-columns lib/column/column-grow.directive.ts
27
-
28
- const BRK = {
29
- mobile: '(max-width: 599.98px)',
30
- desktop: '(min-width: 840.00px)',
31
- };
32
- class BreakpointsService {
33
- constructor(breakpointObserver) {
34
- this.sub = new Subject();
35
- breakpointObserver.observe([BRK.mobile, BRK.desktop]).subscribe((state) => {
36
- if (!_.isUndefined([BRK.mobile].find(f => state.breakpoints[f]))) {
37
- this.current = 'mobile';
38
- this.sub.next('mobile');
39
- }
40
- else if (!_.isUndefined([BRK.desktop].find(f => state.breakpoints[f]))) {
41
- this.current = 'desktop';
42
- this.sub.next('desktop');
43
- }
44
- else {
45
- this.current = 'tablet';
46
- this.sub.next('tablet');
47
- }
48
- });
49
- setTimeout(() => {
50
- if (breakpointObserver.isMatched([BRK.mobile])) {
51
- this.current = 'mobile';
52
- this.sub.next('mobile');
53
- }
54
- else if (breakpointObserver.isMatched([BRK.desktop])) {
55
- this.current = 'desktop';
56
- this.sub.next('desktop');
57
- }
58
- else {
59
- this.current = 'tablet';
60
- this.sub.next('tablet');
61
- }
62
- });
63
- }
64
- listenTo() {
65
- setTimeout(() => {
66
- this.sub.next(this.current);
67
- });
68
- return this.sub.asObservable();
69
- }
70
- }
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: [{
74
- type: Injectable,
75
- args: [{ providedIn: 'root' }]
76
- }], ctorParameters: function () { return [{ type: i1.BreakpointObserver }]; } });
77
- ;
78
- ({}); // @--end-of-file-for-module=static-columns lib/breakpoints.service.ts
79
-
80
- class BaseHideShowDirective {
81
- constructor(e, renderer, breakpoints) {
82
- this.e = e;
83
- this.renderer = renderer;
84
- this.breakpoints = breakpoints;
85
- this.$destroy = new Subject();
86
- }
87
- hideElement() {
88
- this.renderer.setStyle(this.e.nativeElement, 'display', 'none');
89
- }
90
- showElement() {
91
- this.renderer.setStyle(this.e.nativeElement, 'display', this.originalDisaplay);
92
- }
93
- ngOnInit() {
94
- //Called after ngAfterContentInit when the component's view has been initialized. Applies to components only.
95
- //Add 'implements AfterViewInit' to the class.
96
- this.breakpoints
97
- .listenTo()
98
- .pipe(takeUntil(this.$destroy))
99
- .subscribe((state) => {
100
- if (typeof this.originalDisaplay === 'undefined') {
101
- this.originalDisaplay = this.e.nativeElement.style.display;
102
- }
103
- this.action(state);
104
- });
105
- }
106
- ngOnDestroy() {
107
- this.$destroy.next(void 0);
108
- this.$destroy.complete();
109
- }
110
- }
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: [{
114
- type: Directive,
115
- args: [{
116
- selector: '[baseHideShowDirective]'
117
- }]
118
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: BreakpointsService }]; } });
119
- ;
120
- ({}); // @--end-of-file-for-module=static-columns lib/column/base-hide-show.directive.ts
121
-
122
- class DirectiveHideMobile extends BaseHideShowDirective {
123
- action(state) {
124
- if (state === 'mobile') {
125
- this.hideElement();
126
- }
127
- else {
128
- this.showElement();
129
- }
130
- }
131
- }
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: [{
135
- type: Directive,
136
- args: [{
137
- selector: '[hideMobile]'
138
- }]
139
- }] });
140
- ;
141
- ({}); // @--end-of-file-for-module=static-columns lib/column/column-hide-mobile.directive.ts
142
-
143
- class DirectiveHideTablet extends BaseHideShowDirective {
144
- action(state) {
145
- if (state === 'tablet') {
146
- this.hideElement();
147
- }
148
- else {
149
- this.showElement();
150
- }
151
- }
152
- }
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: [{
156
- type: Directive,
157
- args: [{
158
- selector: '[hideTablet]'
159
- }]
160
- }] });
161
- ;
162
- ({}); // @--end-of-file-for-module=static-columns lib/column/column-hide-tablet.directive.ts
163
-
164
- class DirectiveHideDesktop extends BaseHideShowDirective {
165
- action(state) {
166
- if (state === 'desktop') {
167
- this.hideElement();
168
- }
169
- else {
170
- this.showElement();
171
- }
172
- }
173
- }
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: [{
177
- type: Directive,
178
- args: [{
179
- selector: '[hideDesktop]'
180
- }]
181
- }] });
182
- ;
183
- ({}); // @--end-of-file-for-module=static-columns lib/column/column-hide-desktop.directive.ts
184
-
185
- class DirectiveShowMobile extends BaseHideShowDirective {
186
- action(state) {
187
- if (state === 'mobile') {
188
- this.showElement();
189
- }
190
- else {
191
- this.hideElement();
192
- }
193
- }
194
- }
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: [{
198
- type: Directive,
199
- args: [{
200
- selector: '[showMobile]'
201
- }]
202
- }] });
203
- ;
204
- ({}); // @--end-of-file-for-module=static-columns lib/column/column-show-mobile.directive.ts
205
-
206
- class DirectiveShowTablet extends BaseHideShowDirective {
207
- action(state) {
208
- if (state === 'tablet') {
209
- this.showElement();
210
- }
211
- else {
212
- this.hideElement();
213
- }
214
- }
215
- }
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: [{
219
- type: Directive,
220
- args: [{
221
- selector: '[showTablet]'
222
- }]
223
- }] });
224
- ;
225
- ({}); // @--end-of-file-for-module=static-columns lib/column/column-show-tablet.directive.ts
226
-
227
- class DirectiveShowDesktop extends BaseHideShowDirective {
228
- action(state) {
229
- if (state === 'desktop') {
230
- this.showElement();
231
- }
232
- else {
233
- this.hideElement();
234
- }
235
- }
236
- }
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: [{
240
- type: Directive,
241
- args: [{
242
- selector: '[showDesktop]'
243
- }]
244
- }] });
245
- ;
246
- ({}); // @--end-of-file-for-module=static-columns lib/column/column-show-desktop.directive.ts
247
-
248
- class ColumnComponent {
249
- constructor() {
250
- }
251
- ngOnInit() { }
252
- }
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: [{
256
- type: Component,
257
- args: [{ selector: 'column', template: '<ng-content></ng-content>', styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }]
258
- }], ctorParameters: function () { return []; }, propDecorators: { width: [{
259
- type: HostBinding,
260
- args: ['style.flex.basis.px']
261
- }, {
262
- type: HostBinding,
263
- args: ['style.minWidth.px']
264
- }, {
265
- type: Input
266
- }] } });
267
- ;
268
- ({}); // @--end-of-file-for-module=static-columns lib/column/column.component.ts
269
-
270
- ;
271
- ({}); // @--end-of-file-for-module=static-columns lib/column/index.ts
272
-
273
- class ColumnsGapComponent {
274
- constructor() {
275
- this.width = 20;
276
- this.handlers = [];
277
- this.columnsGapDataChanged = new EventEmitter();
278
- this.columnsGapData = {};
279
- }
280
- ngOnInit() {
281
- }
282
- ngOnDestroy() {
283
- this.handlers.forEach(h => h.unsubscribe());
284
- }
285
- }
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: [{
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"] }]
291
- }], ctorParameters: function () { return []; }, propDecorators: { width: [{
292
- type: HostBinding,
293
- args: ['style.flex.basis.px']
294
- }, {
295
- type: HostBinding,
296
- args: ['style.minWidth.px']
297
- }], columnsGapDataChanged: [{
298
- type: Output
299
- }], columnsGapData: [{
300
- type: Input
301
- }] } });
302
- ;
303
- ({}); // @--end-of-file-for-module=static-columns lib/columns-gap/columns-gap.component.ts
304
-
305
- ;
306
- ({}); // @--end-of-file-for-module=static-columns lib/columns-gap/index.ts
307
-
308
- class ColumnsComponent {
309
- constructor() {
310
- }
311
- ngOnInit() { }
312
- }
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: [{
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"] }]
318
- }], ctorParameters: function () { return []; }, propDecorators: { childrens: [{
319
- type: ViewChildren,
320
- args: [ColumnComponent]
321
- }] } });
322
- ;
323
- ({}); // @--end-of-file-for-module=static-columns lib/columns.component.ts
324
-
325
- const components = [
326
- ColumnsComponent,
327
- ColumnComponent,
328
- DirectiveGrow,
329
- DirectiveHideMobile,
330
- DirectiveHideTablet,
331
- DirectiveHideDesktop,
332
- DirectiveShowTablet,
333
- DirectiveShowMobile,
334
- DirectiveShowDesktop,
335
- ColumnsGapComponent,
336
- ];
337
- class StaticColumnsModule {
338
- }
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: [{
363
- type: NgModule,
364
- args: [{
365
- imports: [
366
- LayoutModule,
367
- ],
368
- exports: [
369
- LayoutModule,
370
- ...components,
371
- ],
372
- declarations: [
373
- ...components,
374
- ],
375
- providers: [BreakpointsService],
376
- }]
377
- }] });
378
- ;
379
- ({}); // @--end-of-file-for-module=static-columns lib/columns.module.ts
380
-
381
- ;
382
- ({}); // @--end-of-file-for-module=static-columns lib/index.ts
383
-
384
- /**
385
- * Generated bundle index. Do not edit.
386
- */
387
-
388
- export { BreakpointsService, ColumnComponent, ColumnsComponent, ColumnsGapComponent, DirectiveGrow, DirectiveHideDesktop, DirectiveHideMobile, DirectiveHideTablet, DirectiveShowDesktop, DirectiveShowMobile, DirectiveShowTablet, StaticColumnsModule };
389
- //# sourceMappingURL=static-columns.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"static-columns.mjs","sources":["../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/column/column-grow.directive.ts","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/breakpoints.service.ts","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/column/base-hide-show.directive.ts","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/column/column-hide-mobile.directive.ts","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/column/column-hide-tablet.directive.ts","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/column/column-hide-desktop.directive.ts","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/column/column-show-mobile.directive.ts","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/column/column-show-tablet.directive.ts","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/column/column-show-desktop.directive.ts","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/column/column.component.ts","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/column/index.ts","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/columns-gap/columns-gap.component.ts","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/columns-gap/columns-gap.component.html","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/columns-gap/index.ts","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/columns.component.ts","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/columns.component.html","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/columns.module.ts","../../../tmp-libs-for-bundle-websql/static-columns/projects/static-columns/src/lib/index.ts","../../../tmp-libs-for-bundle-websql/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/websql';\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>\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>\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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"}
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes