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