static-columns 13.3.8 → 16.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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,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/browser';
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/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>\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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"}
@@ -1,58 +0,0 @@
1
- import { BreakpointObserver } from '@angular/cdk/layout';
2
- import { Injectable } from '@angular/core';
3
- import { Subject } from 'rxjs';
4
- import { _ } from 'tnp-core/websql';
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "@angular/cdk/layout";
7
- const BRK = {
8
- mobile: '(max-width: 599.98px)',
9
- desktop: '(min-width: 840.00px)',
10
- };
11
- export class BreakpointsService {
12
- constructor(breakpointObserver) {
13
- this.sub = new Subject();
14
- breakpointObserver.observe([BRK.mobile, BRK.desktop]).subscribe((state) => {
15
- if (!_.isUndefined([BRK.mobile].find(f => state.breakpoints[f]))) {
16
- this.current = 'mobile';
17
- this.sub.next('mobile');
18
- }
19
- else if (!_.isUndefined([BRK.desktop].find(f => state.breakpoints[f]))) {
20
- this.current = 'desktop';
21
- this.sub.next('desktop');
22
- }
23
- else {
24
- this.current = 'tablet';
25
- this.sub.next('tablet');
26
- }
27
- });
28
- setTimeout(() => {
29
- if (breakpointObserver.isMatched([BRK.mobile])) {
30
- this.current = 'mobile';
31
- this.sub.next('mobile');
32
- }
33
- else if (breakpointObserver.isMatched([BRK.desktop])) {
34
- this.current = 'desktop';
35
- this.sub.next('desktop');
36
- }
37
- else {
38
- this.current = 'tablet';
39
- this.sub.next('tablet');
40
- }
41
- });
42
- }
43
- listenTo() {
44
- setTimeout(() => {
45
- this.sub.next(this.current);
46
- });
47
- return this.sub.asObservable();
48
- }
49
- }
50
- BreakpointsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BreakpointsService, deps: [{ token: i1.BreakpointObserver }], target: i0.ɵɵFactoryTarget.Injectable });
51
- BreakpointsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BreakpointsService, providedIn: 'root' });
52
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BreakpointsService, decorators: [{
53
- type: Injectable,
54
- args: [{ providedIn: 'root' }]
55
- }], ctorParameters: function () { return [{ type: i1.BreakpointObserver }]; } });
56
- ;
57
- ({}); // @--end-of-file-for-module=static-columns lib/breakpoints.service.ts
58
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJlYWtwb2ludHMuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3RtcC1saWJzLWZvci1idW5kbGUtd2Vic3FsL3N0YXRpYy1jb2x1bW5zL3Byb2plY3RzL3N0YXRpYy1jb2x1bW5zL3NyYy9saWIvYnJlYWtwb2ludHMuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsa0JBQWtCLEVBQWdDLE1BQU0scUJBQXFCLENBQUM7QUFDdkYsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzQyxPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQy9CLE9BQU8sRUFBRSxDQUFDLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQzs7O0FBRXBDLE1BQU0sR0FBRyxHQUFHO0lBQ1YsTUFBTSxFQUFFLHVCQUF1QjtJQUUvQixPQUFPLEVBQUUsdUJBQXVCO0NBQ2pDLENBQUE7QUFJRCxNQUFNLE9BQU8sa0JBQWtCO0lBVzdCLFlBQ0Usa0JBQXNDO1FBVmhDLFFBQUcsR0FBRyxJQUFJLE9BQU8sRUFBbUMsQ0FBQztRQWEzRCxrQkFBa0IsQ0FBQyxPQUFPLENBQUMsQ0FBQyxHQUFHLENBQUMsTUFBTSxFQUFFLEdBQUcsQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFO1lBQ3hFLElBQUksQ0FBQyxDQUFDLENBQUMsV0FBVyxDQUFDLENBQUMsR0FBRyxDQUFDLE1BQU0sQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLEtBQUssQ0FBQyxXQUFXLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxFQUFFO2dCQUNoRSxJQUFJLENBQUMsT0FBTyxHQUFHLFFBQVEsQ0FBQztnQkFDeEIsSUFBSSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7YUFDekI7aUJBQU0sSUFBSSxDQUFDLENBQUMsQ0FBQyxXQUFXLENBQUMsQ0FBQyxHQUFHLENBQUMsT0FBTyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsS0FBSyxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLEVBQUU7Z0JBQ3hFLElBQUksQ0FBQyxPQUFPLEdBQUcsU0FBUyxDQUFDO2dCQUN6QixJQUFJLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQzthQUMxQjtpQkFBTTtnQkFDTCxJQUFJLENBQUMsT0FBTyxHQUFHLFFBQVEsQ0FBQztnQkFDeEIsSUFBSSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7YUFDekI7UUFDSCxDQUFDLENBQUMsQ0FBQztRQUVILFVBQVUsQ0FBQyxHQUFHLEVBQUU7WUFDZCxJQUFJLGtCQUFrQixDQUFDLFNBQVMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxNQUFNLENBQUMsQ0FBQyxFQUFFO2dCQUM5QyxJQUFJLENBQUMsT0FBTyxHQUFHLFFBQVEsQ0FBQztnQkFDeEIsSUFBSSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7YUFDekI7aUJBQU0sSUFBSSxrQkFBa0IsQ0FBQyxTQUFTLENBQUMsQ0FBQyxHQUFHLENBQUMsT0FBTyxDQUFDLENBQUMsRUFBRTtnQkFDdEQsSUFBSSxDQUFDLE9BQU8sR0FBRyxTQUFTLENBQUM7Z0JBQ3pCLElBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDO2FBQzFCO2lCQUFNO2dCQUNMLElBQUksQ0FBQyxPQUFPLEdBQUcsUUFBUSxDQUFDO2dCQUN4QixJQUFJLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQzthQUN6QjtRQUNILENBQUMsQ0FBQyxDQUFBO0lBQ0osQ0FBQztJQXJDTSxRQUFRO1FBQ2IsVUFBVSxDQUFDLEdBQUUsRUFBRTtZQUNiLElBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUM5QixDQUFDLENBQUMsQ0FBQztRQUNILE9BQU8sSUFBSSxDQUFDLEdBQUcsQ0FBQyxZQUFZLEVBQUUsQ0FBQztJQUNqQyxDQUFDOztnSEFSVSxrQkFBa0I7b0hBQWxCLGtCQUFrQixjQURMLE1BQU07NEZBQ25CLGtCQUFrQjtrQkFEOUIsVUFBVTttQkFBQyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUU7O0FBNkNqQyxDQUFDO0FBQUEsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLHNFQUFzRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEJyZWFrcG9pbnRPYnNlcnZlciwgQnJlYWtwb2ludFN0YXRlLCBCcmVha3BvaW50cyB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9sYXlvdXQnO1xuaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgU3ViamVjdCB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgXyB9IGZyb20gJ3RucC1jb3JlL3dlYnNxbCc7XG5cbmNvbnN0IEJSSyA9IHtcbiAgbW9iaWxlOiAnKG1heC13aWR0aDogNTk5Ljk4cHgpJyxcblxuICBkZXNrdG9wOiAnKG1pbi13aWR0aDogODQwLjAwcHgpJyxcbn1cblxuXG5ASW5qZWN0YWJsZSh7IHByb3ZpZGVkSW46ICdyb290JyB9KVxuZXhwb3J0IGNsYXNzIEJyZWFrcG9pbnRzU2VydmljZSB7XG5cbiAgcHJpdmF0ZSBzdWIgPSBuZXcgU3ViamVjdDwnbW9iaWxlJyB8ICd0YWJsZXQnIHwgJ2Rlc2t0b3AnPigpO1xuICBwdWJsaWMgbGlzdGVuVG8oKSB7XG4gICAgc2V0VGltZW91dCgoKT0+IHtcbiAgICAgIHRoaXMuc3ViLm5leHQodGhpcy5jdXJyZW50KTtcbiAgICB9KTtcbiAgICByZXR1cm4gdGhpcy5zdWIuYXNPYnNlcnZhYmxlKCk7XG4gIH1cblxuICBwcml2YXRlIGN1cnJlbnQ6ICdtb2JpbGUnIHwgJ3RhYmxldCcgfCAnZGVza3RvcCc7XG4gIGNvbnN0cnVjdG9yKFxuICAgIGJyZWFrcG9pbnRPYnNlcnZlcjogQnJlYWtwb2ludE9ic2VydmVyLFxuICApIHtcblxuICAgIGJyZWFrcG9pbnRPYnNlcnZlci5vYnNlcnZlKFtCUksubW9iaWxlLCBCUksuZGVza3RvcF0pLnN1YnNjcmliZSgoc3RhdGUpID0+IHtcbiAgICAgIGlmICghXy5pc1VuZGVmaW5lZChbQlJLLm1vYmlsZV0uZmluZChmID0+IHN0YXRlLmJyZWFrcG9pbnRzW2ZdKSkpIHtcbiAgICAgICAgdGhpcy5jdXJyZW50ID0gJ21vYmlsZSc7XG4gICAgICAgIHRoaXMuc3ViLm5leHQoJ21vYmlsZScpO1xuICAgICAgfSBlbHNlIGlmICghXy5pc1VuZGVmaW5lZChbQlJLLmRlc2t0b3BdLmZpbmQoZiA9PiBzdGF0ZS5icmVha3BvaW50c1tmXSkpKSB7XG4gICAgICAgIHRoaXMuY3VycmVudCA9ICdkZXNrdG9wJztcbiAgICAgICAgdGhpcy5zdWIubmV4dCgnZGVza3RvcCcpO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgdGhpcy5jdXJyZW50ID0gJ3RhYmxldCc7XG4gICAgICAgIHRoaXMuc3ViLm5leHQoJ3RhYmxldCcpO1xuICAgICAgfVxuICAgIH0pO1xuXG4gICAgc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICBpZiAoYnJlYWtwb2ludE9ic2VydmVyLmlzTWF0Y2hlZChbQlJLLm1vYmlsZV0pKSB7XG4gICAgICAgIHRoaXMuY3VycmVudCA9ICdtb2JpbGUnO1xuICAgICAgICB0aGlzLnN1Yi5uZXh0KCdtb2JpbGUnKTtcbiAgICAgIH0gZWxzZSBpZiAoYnJlYWtwb2ludE9ic2VydmVyLmlzTWF0Y2hlZChbQlJLLmRlc2t0b3BdKSkge1xuICAgICAgICB0aGlzLmN1cnJlbnQgPSAnZGVza3RvcCc7XG4gICAgICAgIHRoaXMuc3ViLm5leHQoJ2Rlc2t0b3AnKTtcbiAgICAgIH0gZWxzZSB7XG4gICAgICAgIHRoaXMuY3VycmVudCA9ICd0YWJsZXQnO1xuICAgICAgICB0aGlzLnN1Yi5uZXh0KCd0YWJsZXQnKTtcbiAgICAgIH1cbiAgICB9KVxuICB9XG5cbn1cblxuIDsoe30pOyAvLyBALS1lbmQtb2YtZmlsZS1mb3ItbW9kdWxlPXN0YXRpYy1jb2x1bW5zIGxpYi9icmVha3BvaW50cy5zZXJ2aWNlLnRzIl19
@@ -1,47 +0,0 @@
1
- import { Directive, ElementRef, Renderer2 } from '@angular/core';
2
- import { Subject, takeUntil } from 'rxjs';
3
- import { BreakpointsService } from '../breakpoints.service';
4
- import * as i0 from "@angular/core";
5
- import * as i1 from "../breakpoints.service";
6
- export class BaseHideShowDirective {
7
- constructor(e, renderer, breakpoints) {
8
- this.e = e;
9
- this.renderer = renderer;
10
- this.breakpoints = breakpoints;
11
- this.$destroy = new Subject();
12
- }
13
- hideElement() {
14
- this.renderer.setStyle(this.e.nativeElement, 'display', 'none');
15
- }
16
- showElement() {
17
- this.renderer.setStyle(this.e.nativeElement, 'display', this.originalDisaplay);
18
- }
19
- ngOnInit() {
20
- //Called after ngAfterContentInit when the component's view has been initialized. Applies to components only.
21
- //Add 'implements AfterViewInit' to the class.
22
- this.breakpoints
23
- .listenTo()
24
- .pipe(takeUntil(this.$destroy))
25
- .subscribe((state) => {
26
- if (typeof this.originalDisaplay === 'undefined') {
27
- this.originalDisaplay = this.e.nativeElement.style.display;
28
- }
29
- this.action(state);
30
- });
31
- }
32
- ngOnDestroy() {
33
- this.$destroy.next(void 0);
34
- this.$destroy.complete();
35
- }
36
- }
37
- BaseHideShowDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BaseHideShowDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.BreakpointsService }], target: i0.ɵɵFactoryTarget.Directive });
38
- BaseHideShowDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: BaseHideShowDirective, selector: "[baseHideShowDirective]", ngImport: i0 });
39
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BaseHideShowDirective, decorators: [{
40
- type: Directive,
41
- args: [{
42
- selector: '[baseHideShowDirective]'
43
- }]
44
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1.BreakpointsService }]; } });
45
- ;
46
- ({}); // @--end-of-file-for-module=static-columns lib/column/base-hide-show.directive.ts
47
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFzZS1oaWRlLXNob3cuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vdG1wLWxpYnMtZm9yLWJ1bmRsZS13ZWJzcWwvc3RhdGljLWNvbHVtbnMvcHJvamVjdHMvc3RhdGljLWNvbHVtbnMvc3JjL2xpYi9jb2x1bW4vYmFzZS1oaWRlLXNob3cuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUdBLE9BQU8sRUFBYSxTQUFTLEVBQUUsVUFBVSxFQUFVLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNwRixPQUFPLEVBQUUsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUMxQyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQzs7O0FBSzVELE1BQU0sT0FBZ0IscUJBQXFCO0lBRXpDLFlBQ1MsQ0FBYSxFQUNiLFFBQW1CLEVBQ25CLFdBQStCO1FBRi9CLE1BQUMsR0FBRCxDQUFDLENBQVk7UUFDYixhQUFRLEdBQVIsUUFBUSxDQUFXO1FBQ25CLGdCQUFXLEdBQVgsV0FBVyxDQUFvQjtRQUp4QyxhQUFRLEdBQUcsSUFBSSxPQUFPLEVBQUUsQ0FBQztJQUtyQixDQUFDO0lBT0ssV0FBVztRQUNuQixJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLGFBQWEsRUFBRSxTQUFTLEVBQUUsTUFBTSxDQUFDLENBQUE7SUFDakUsQ0FBQztJQUVTLFdBQVc7UUFDbkIsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxhQUFhLEVBQUUsU0FBUyxFQUFFLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFBO0lBQ2hGLENBQUM7SUFFRCxRQUFRO1FBQ04sNkdBQTZHO1FBQzdHLDhDQUE4QztRQUM5QyxJQUFJLENBQUMsV0FBVzthQUNiLFFBQVEsRUFBRTthQUNWLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO2FBQzlCLFNBQVMsQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFO1lBQ25CLElBQUksT0FBTyxJQUFJLENBQUMsZ0JBQWdCLEtBQUssV0FBVyxFQUFFO2dCQUNoRCxJQUFJLENBQUMsZ0JBQWdCLEdBQUksSUFBSSxDQUFDLENBQUMsQ0FBQyxhQUE2QixDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUM7YUFDN0U7WUFFRCxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ3JCLENBQUMsQ0FBQyxDQUFBO0lBQ04sQ0FBQztJQUVELFdBQVc7UUFDVCxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO1FBQzNCLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxFQUFFLENBQUE7SUFDMUIsQ0FBQzs7bUhBdkNtQixxQkFBcUI7dUdBQXJCLHFCQUFxQjs0RkFBckIscUJBQXFCO2tCQUgxQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSx5QkFBeUI7aUJBQ3BDOztBQTZDQSxDQUFDO0FBQUEsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLGtGQUFrRiIsInNvdXJjZXNDb250ZW50IjpbIlxuXG5pbXBvcnQgeyBCcmVha3BvaW50T2JzZXJ2ZXIsIEJyZWFrcG9pbnRTdGF0ZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9sYXlvdXQnO1xuaW1wb3J0IHsgQ29tcG9uZW50LCBEaXJlY3RpdmUsIEVsZW1lbnRSZWYsIE9uSW5pdCwgUmVuZGVyZXIyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBTdWJqZWN0LCB0YWtlVW50aWwgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IEJyZWFrcG9pbnRzU2VydmljZSB9IGZyb20gJy4uL2JyZWFrcG9pbnRzLnNlcnZpY2UnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbYmFzZUhpZGVTaG93RGlyZWN0aXZlXSdcbn0pXG5leHBvcnQgYWJzdHJhY3QgY2xhc3MgQmFzZUhpZGVTaG93RGlyZWN0aXZlIHtcbiAgJGRlc3Ryb3kgPSBuZXcgU3ViamVjdCgpO1xuICBjb25zdHJ1Y3RvcihcbiAgICBwdWJsaWMgZTogRWxlbWVudFJlZixcbiAgICBwdWJsaWMgcmVuZGVyZXI6IFJlbmRlcmVyMixcbiAgICBwdWJsaWMgYnJlYWtwb2ludHM6IEJyZWFrcG9pbnRzU2VydmljZSxcbiAgKSB7IH1cblxuICBwcml2YXRlIG9yaWdpbmFsRGlzYXBsYXk6IHN0cmluZztcblxuXG4gIGFic3RyYWN0IGFjdGlvbihzdGF0ZTogXCJtb2JpbGVcIiB8IFwidGFibGV0XCIgfCBcImRlc2t0b3BcIik7XG5cbiAgcHJvdGVjdGVkIGhpZGVFbGVtZW50KCkge1xuICAgIHRoaXMucmVuZGVyZXIuc2V0U3R5bGUodGhpcy5lLm5hdGl2ZUVsZW1lbnQsICdkaXNwbGF5JywgJ25vbmUnKVxuICB9XG5cbiAgcHJvdGVjdGVkIHNob3dFbGVtZW50KCkge1xuICAgIHRoaXMucmVuZGVyZXIuc2V0U3R5bGUodGhpcy5lLm5hdGl2ZUVsZW1lbnQsICdkaXNwbGF5JywgdGhpcy5vcmlnaW5hbERpc2FwbGF5KVxuICB9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgLy9DYWxsZWQgYWZ0ZXIgbmdBZnRlckNvbnRlbnRJbml0IHdoZW4gdGhlIGNvbXBvbmVudCdzIHZpZXcgaGFzIGJlZW4gaW5pdGlhbGl6ZWQuIEFwcGxpZXMgdG8gY29tcG9uZW50cyBvbmx5LlxuICAgIC8vQWRkICdpbXBsZW1lbnRzIEFmdGVyVmlld0luaXQnIHRvIHRoZSBjbGFzcy5cbiAgICB0aGlzLmJyZWFrcG9pbnRzXG4gICAgICAubGlzdGVuVG8oKVxuICAgICAgLnBpcGUodGFrZVVudGlsKHRoaXMuJGRlc3Ryb3kpKVxuICAgICAgLnN1YnNjcmliZSgoc3RhdGUpID0+IHtcbiAgICAgICAgaWYgKHR5cGVvZiB0aGlzLm9yaWdpbmFsRGlzYXBsYXkgPT09ICd1bmRlZmluZWQnKSB7XG4gICAgICAgICAgdGhpcy5vcmlnaW5hbERpc2FwbGF5ID0gKHRoaXMuZS5uYXRpdmVFbGVtZW50IGFzIEhUTUxFbGVtZW50KS5zdHlsZS5kaXNwbGF5O1xuICAgICAgICB9XG5cbiAgICAgICAgdGhpcy5hY3Rpb24oc3RhdGUpO1xuICAgICAgfSlcbiAgfVxuXG4gIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMuJGRlc3Ryb3kubmV4dCh2b2lkIDApO1xuICAgIHRoaXMuJGRlc3Ryb3kuY29tcGxldGUoKVxuICB9XG5cblxufVxuXG4gOyh7fSk7IC8vIEAtLWVuZC1vZi1maWxlLWZvci1tb2R1bGU9c3RhdGljLWNvbHVtbnMgbGliL2NvbHVtbi9iYXNlLWhpZGUtc2hvdy5kaXJlY3RpdmUudHMiXX0=
@@ -1,22 +0,0 @@
1
- import { Directive, ElementRef, Renderer2 } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class DirectiveGrow {
4
- constructor(e, renderer) {
5
- this.e = e;
6
- this.renderer = renderer;
7
- setTimeout(() => {
8
- renderer.setStyle(e.nativeElement, 'flexGrow', '1');
9
- }, 0);
10
- }
11
- }
12
- 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 });
13
- DirectiveGrow.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveGrow, selector: "[grow]", ngImport: i0 });
14
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveGrow, decorators: [{
15
- type: Directive,
16
- args: [{
17
- selector: '[grow]'
18
- }]
19
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; } });
20
- ;
21
- ({}); // @--end-of-file-for-module=static-columns lib/column/column-grow.directive.ts
22
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1uLWdyb3cuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vdG1wLWxpYnMtZm9yLWJ1bmRsZS13ZWJzcWwvc3RhdGljLWNvbHVtbnMvcHJvamVjdHMvc3RhdGljLWNvbHVtbnMvc3JjL2xpYi9jb2x1bW4vY29sdW1uLWdyb3cuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBYSxTQUFTLEVBQUUsVUFBVSxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFNNUUsTUFBTSxPQUFPLGFBQWE7SUFDeEIsWUFBbUIsQ0FBYSxFQUFTLFFBQW1CO1FBQXpDLE1BQUMsR0FBRCxDQUFDLENBQVk7UUFBUyxhQUFRLEdBQVIsUUFBUSxDQUFXO1FBQzFELFVBQVUsQ0FBQyxHQUFHLEVBQUU7WUFFZCxRQUFRLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxhQUFhLEVBQUUsVUFBVSxFQUFFLEdBQUcsQ0FBQyxDQUFBO1FBQ3JELENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQztJQUdSLENBQUM7OzJHQVJVLGFBQWE7K0ZBQWIsYUFBYTs0RkFBYixhQUFhO2tCQUh6QixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxRQUFRO2lCQUNuQjs7QUFZQSxDQUFDO0FBQUEsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLCtFQUErRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRGlyZWN0aXZlLCBFbGVtZW50UmVmLCBSZW5kZXJlcjIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbZ3Jvd10nXG59KVxuZXhwb3J0IGNsYXNzIERpcmVjdGl2ZUdyb3cge1xuICBjb25zdHJ1Y3RvcihwdWJsaWMgZTogRWxlbWVudFJlZiwgcHVibGljIHJlbmRlcmVyOiBSZW5kZXJlcjIpIHtcbiAgICBzZXRUaW1lb3V0KCgpID0+IHtcblxuICAgICAgcmVuZGVyZXIuc2V0U3R5bGUoZS5uYXRpdmVFbGVtZW50LCAnZmxleEdyb3cnLCAnMScpXG4gICAgfSwgMCk7XG5cblxuICB9XG59XG5cbiA7KHt9KTsgLy8gQC0tZW5kLW9mLWZpbGUtZm9yLW1vZHVsZT1zdGF0aWMtY29sdW1ucyBsaWIvY29sdW1uL2NvbHVtbi1ncm93LmRpcmVjdGl2ZS50cyJdfQ==
@@ -1,24 +0,0 @@
1
- import { Directive } from '@angular/core';
2
- import { BaseHideShowDirective } from './base-hide-show.directive';
3
- import * as i0 from "@angular/core";
4
- export class DirectiveHideDesktop extends BaseHideShowDirective {
5
- action(state) {
6
- if (state === 'desktop') {
7
- this.hideElement();
8
- }
9
- else {
10
- this.showElement();
11
- }
12
- }
13
- }
14
- DirectiveHideDesktop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveHideDesktop, deps: null, target: i0.ɵɵFactoryTarget.Directive });
15
- DirectiveHideDesktop.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveHideDesktop, selector: "[hideDesktop]", usesInheritance: true, ngImport: i0 });
16
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveHideDesktop, decorators: [{
17
- type: Directive,
18
- args: [{
19
- selector: '[hideDesktop]'
20
- }]
21
- }] });
22
- ;
23
- ({}); // @--end-of-file-for-module=static-columns lib/column/column-hide-desktop.directive.ts
24
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1uLWhpZGUtZGVza3RvcC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlLXdlYnNxbC9zdGF0aWMtY29sdW1ucy9wcm9qZWN0cy9zdGF0aWMtY29sdW1ucy9zcmMvbGliL2NvbHVtbi9jb2x1bW4taGlkZS1kZXNrdG9wLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQWEsU0FBUyxFQUFpQyxNQUFNLGVBQWUsQ0FBQztBQUdwRixPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQzs7QUFLbkUsTUFBTSxPQUFPLG9CQUFxQixTQUFRLHFCQUFxQjtJQUM3RCxNQUFNLENBQUMsS0FBc0M7UUFDM0MsSUFBSSxLQUFLLEtBQUssU0FBUyxFQUFFO1lBQ3ZCLElBQUksQ0FBQyxXQUFXLEVBQUUsQ0FBQztTQUNwQjthQUFNO1lBQ0wsSUFBSSxDQUFDLFdBQVcsRUFBRSxDQUFDO1NBQ3BCO0lBQ0gsQ0FBQzs7a0hBUFUsb0JBQW9CO3NHQUFwQixvQkFBb0I7NEZBQXBCLG9CQUFvQjtrQkFIaEMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsZUFBZTtpQkFDMUI7O0FBWUEsQ0FBQztBQUFBLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyx1RkFBdUYiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCcmVha3BvaW50T2JzZXJ2ZXIsIEJyZWFrcG9pbnRTdGF0ZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9sYXlvdXQnO1xuaW1wb3J0IHsgQ29tcG9uZW50LCBEaXJlY3RpdmUsIEVsZW1lbnRSZWYsIE9uSW5pdCwgUmVuZGVyZXIyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBTdWJqZWN0LCB0YWtlVW50aWwgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IEJyZWFrcG9pbnRzU2VydmljZSB9IGZyb20gJy4uL2JyZWFrcG9pbnRzLnNlcnZpY2UnO1xuaW1wb3J0IHsgQmFzZUhpZGVTaG93RGlyZWN0aXZlIH0gZnJvbSAnLi9iYXNlLWhpZGUtc2hvdy5kaXJlY3RpdmUnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbaGlkZURlc2t0b3BdJ1xufSlcbmV4cG9ydCBjbGFzcyBEaXJlY3RpdmVIaWRlRGVza3RvcCBleHRlbmRzIEJhc2VIaWRlU2hvd0RpcmVjdGl2ZSB7XG4gIGFjdGlvbihzdGF0ZTogJ21vYmlsZScgfCAndGFibGV0JyB8ICdkZXNrdG9wJykge1xuICAgIGlmIChzdGF0ZSA9PT0gJ2Rlc2t0b3AnKSB7XG4gICAgICB0aGlzLmhpZGVFbGVtZW50KCk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHRoaXMuc2hvd0VsZW1lbnQoKTtcbiAgICB9XG4gIH1cbn1cblxuXG4gOyh7fSk7IC8vIEAtLWVuZC1vZi1maWxlLWZvci1tb2R1bGU9c3RhdGljLWNvbHVtbnMgbGliL2NvbHVtbi9jb2x1bW4taGlkZS1kZXNrdG9wLmRpcmVjdGl2ZS50cyJdfQ==