static-columns 13.1.29 → 13.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (141) hide show
  1. package/README.md +78 -41
  2. package/app/preview/index.d.ts +2 -0
  3. package/app/preview/index.js +6 -0
  4. package/app/preview/index.js.map +1 -0
  5. package/app/preview/preview.component.d.ts +8 -0
  6. package/app/preview/preview.component.js +6 -0
  7. package/app/preview/preview.component.js.map +1 -0
  8. package/app/preview/preview.module.d.ts +2 -0
  9. package/app/preview/preview.module.js +6 -0
  10. package/app/preview/preview.module.js.map +1 -0
  11. package/app.js +3 -3
  12. package/browser/README.md +24 -24
  13. package/browser/esm2020/lib/column/column-grow.directive.mjs +22 -22
  14. package/browser/esm2020/lib/column/column-hide-mobile.directive.mjs +44 -0
  15. package/browser/esm2020/lib/column/column-hide-tablet.directive.mjs +44 -0
  16. package/browser/esm2020/lib/column/column-show-mobile.directive.mjs +44 -0
  17. package/browser/esm2020/lib/column/column.component.mjs +24 -24
  18. package/browser/esm2020/lib/column/index.mjs +8 -5
  19. package/browser/esm2020/lib/columns-gap/columns-gap.component.mjs +35 -0
  20. package/browser/esm2020/lib/columns-gap/index.mjs +4 -0
  21. package/browser/esm2020/lib/columns.component.mjs +20 -20
  22. package/browser/esm2020/lib/columns.module.mjs +54 -21
  23. package/browser/esm2020/lib/index.mjs +7 -8
  24. package/browser/esm2020/public-api.mjs +1 -1
  25. package/browser/esm2020/static-columns.mjs +4 -4
  26. package/browser/fesm2015/static-columns.mjs +265 -80
  27. package/browser/fesm2015/static-columns.mjs.map +1 -1
  28. package/browser/fesm2020/static-columns.mjs +265 -80
  29. package/browser/fesm2020/static-columns.mjs.map +1 -1
  30. package/browser/lib/column/column-grow.directive.d.ts +8 -8
  31. package/browser/lib/column/column-hide-mobile.directive.d.ts +17 -0
  32. package/browser/lib/column/column-hide-tablet.directive.d.ts +17 -0
  33. package/browser/lib/column/column-show-mobile.directive.d.ts +17 -0
  34. package/browser/lib/column/column.component.d.ts +8 -8
  35. package/browser/lib/column/index.d.ts +5 -2
  36. package/browser/lib/columns-gap/columns-gap.component.d.ts +15 -0
  37. package/browser/lib/columns-gap/index.d.ts +2 -0
  38. package/browser/lib/columns.component.d.ts +9 -9
  39. package/browser/lib/columns.module.d.ts +13 -8
  40. package/browser/lib/index.d.ts +3 -4
  41. package/browser/static-columns.d.ts +4 -4
  42. package/client/README.md +24 -24
  43. package/client/esm2020/lib/column/column-grow.directive.mjs +22 -22
  44. package/client/esm2020/lib/column/column-hide-mobile.directive.mjs +44 -0
  45. package/client/esm2020/lib/column/column-hide-tablet.directive.mjs +44 -0
  46. package/client/esm2020/lib/column/column-show-mobile.directive.mjs +44 -0
  47. package/client/esm2020/lib/column/column.component.mjs +24 -24
  48. package/client/esm2020/lib/column/index.mjs +8 -5
  49. package/client/esm2020/lib/columns-gap/columns-gap.component.mjs +35 -0
  50. package/client/esm2020/lib/columns-gap/index.mjs +4 -0
  51. package/client/esm2020/lib/columns.component.mjs +20 -20
  52. package/client/esm2020/lib/columns.module.mjs +54 -21
  53. package/client/esm2020/lib/index.mjs +7 -8
  54. package/client/esm2020/public-api.mjs +1 -1
  55. package/client/esm2020/static-columns.mjs +4 -4
  56. package/client/fesm2015/static-columns.mjs +265 -80
  57. package/client/fesm2015/static-columns.mjs.map +1 -1
  58. package/client/fesm2020/static-columns.mjs +265 -80
  59. package/client/fesm2020/static-columns.mjs.map +1 -1
  60. package/client/lib/column/column-grow.directive.d.ts +8 -8
  61. package/client/lib/column/column-hide-mobile.directive.d.ts +17 -0
  62. package/client/lib/column/column-hide-tablet.directive.d.ts +17 -0
  63. package/client/lib/column/column-show-mobile.directive.d.ts +17 -0
  64. package/client/lib/column/column.component.d.ts +8 -8
  65. package/client/lib/column/index.d.ts +5 -2
  66. package/client/lib/columns-gap/columns-gap.component.d.ts +15 -0
  67. package/client/lib/columns-gap/index.d.ts +2 -0
  68. package/client/lib/columns.component.d.ts +9 -9
  69. package/client/lib/columns.module.d.ts +13 -8
  70. package/client/lib/index.d.ts +3 -4
  71. package/client/static-columns.d.ts +4 -4
  72. package/index.d.ts +1 -1
  73. package/lib/column/column-grow.directive.d.ts +6 -6
  74. package/lib/column/column-hide-mobile.directive.d.ts +13 -0
  75. package/lib/column/column-hide-mobile.directive.js +47 -0
  76. package/lib/column/column-hide-mobile.directive.js.map +1 -0
  77. package/lib/column/column-hide-tablet.directive.d.ts +13 -0
  78. package/lib/column/column-hide-tablet.directive.js +47 -0
  79. package/lib/column/column-hide-tablet.directive.js.map +1 -0
  80. package/lib/column/column-show-mobile.directive.d.ts +13 -0
  81. package/lib/column/column-show-mobile.directive.js +47 -0
  82. package/lib/column/column-show-mobile.directive.js.map +1 -0
  83. package/lib/column/column.component.d.ts +6 -6
  84. package/lib/column/index.d.ts +5 -2
  85. package/lib/column/index.js +3 -3
  86. package/lib/column/index.js.map +1 -1
  87. package/lib/columns-gap/columns-gap.component.d.ts +11 -0
  88. package/lib/columns-gap/columns-gap.component.js +6 -0
  89. package/lib/columns-gap/columns-gap.component.js.map +1 -0
  90. package/lib/columns-gap/index.d.ts +1 -0
  91. package/lib/columns-gap/index.js +6 -0
  92. package/lib/columns-gap/index.js.map +1 -0
  93. package/lib/columns.component.d.ts +7 -7
  94. package/lib/columns.component.js +3 -26
  95. package/lib/columns.component.js.map +1 -1
  96. package/lib/columns.module.d.ts +2 -2
  97. package/lib/columns.module.js +3 -19
  98. package/lib/columns.module.js.map +1 -1
  99. package/lib/index.d.ts +4 -5
  100. package/lib/index.js +5 -4
  101. package/lib/index.js.map +1 -1
  102. package/package.json +2 -2
  103. package/package.json_devDependencies.json +237 -237
  104. package/package.json_tnp.json5 +49 -48
  105. package/tmp-environment.json +184 -172
  106. package/websql/README.md +24 -24
  107. package/websql/esm2020/lib/column/column-grow.directive.mjs +22 -22
  108. package/websql/esm2020/lib/column/column-hide-mobile.directive.mjs +44 -0
  109. package/websql/esm2020/lib/column/column-hide-tablet.directive.mjs +44 -0
  110. package/websql/esm2020/lib/column/column-show-mobile.directive.mjs +44 -0
  111. package/websql/esm2020/lib/column/column.component.mjs +24 -24
  112. package/websql/esm2020/lib/column/index.mjs +8 -5
  113. package/websql/esm2020/lib/columns-gap/columns-gap.component.mjs +35 -0
  114. package/websql/esm2020/lib/columns-gap/index.mjs +4 -0
  115. package/websql/esm2020/lib/columns.component.mjs +20 -20
  116. package/websql/esm2020/lib/columns.module.mjs +54 -21
  117. package/websql/esm2020/lib/index.mjs +7 -8
  118. package/websql/esm2020/public-api.mjs +1 -1
  119. package/websql/esm2020/static-columns.mjs +4 -4
  120. package/websql/fesm2015/static-columns.mjs +265 -80
  121. package/websql/fesm2015/static-columns.mjs.map +1 -1
  122. package/websql/fesm2020/static-columns.mjs +265 -80
  123. package/websql/fesm2020/static-columns.mjs.map +1 -1
  124. package/websql/lib/column/column-grow.directive.d.ts +8 -8
  125. package/websql/lib/column/column-hide-mobile.directive.d.ts +17 -0
  126. package/websql/lib/column/column-hide-tablet.directive.d.ts +17 -0
  127. package/websql/lib/column/column-show-mobile.directive.d.ts +17 -0
  128. package/websql/lib/column/column.component.d.ts +8 -8
  129. package/websql/lib/column/index.d.ts +5 -2
  130. package/websql/lib/columns-gap/columns-gap.component.d.ts +15 -0
  131. package/websql/lib/columns-gap/index.d.ts +2 -0
  132. package/websql/lib/columns.component.d.ts +9 -9
  133. package/websql/lib/columns.module.d.ts +13 -8
  134. package/websql/lib/index.d.ts +3 -4
  135. package/websql/static-columns.d.ts +4 -4
  136. package/app/app.component.d.ts +0 -8
  137. package/app/app.component.js +0 -31
  138. package/app/app.component.js.map +0 -1
  139. package/app/app.module.d.ts +0 -2
  140. package/app/app.module.js +0 -39
  141. package/app/app.module.js.map +0 -1
@@ -1,91 +1,276 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Component, HostBinding, Input, Directive, ViewChildren, NgModule } from '@angular/core';
2
+ import { Directive, 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';
3
6
 
4
- class ColumnComponent {
5
- constructor() {
6
- }
7
- ngOnInit() { }
8
- }
9
- ColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
10
- 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"] });
11
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnComponent, decorators: [{
12
- type: Component,
13
- args: [{ selector: 'column', template: '<ng-content></ng-content>', styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }]
14
- }], ctorParameters: function () { return []; }, propDecorators: { width: [{
15
- type: HostBinding,
16
- args: ['style.flex.basis.px']
17
- }, {
18
- type: HostBinding,
19
- args: ['style.minWidth.px']
20
- }, {
21
- type: Input
22
- }] } });
23
- ;
24
- ({}); // @--end-of-file-for-module=static-columns tmp-src-bundle/lib/column/column.component.ts
7
+ class DirectiveGrow {
8
+ constructor(e, renderer) {
9
+ this.e = e;
10
+ this.renderer = renderer;
11
+ setTimeout(() => {
12
+ renderer.setStyle(e.nativeElement, 'flexGrow', '1');
13
+ }, 0);
14
+ }
15
+ }
16
+ 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 });
17
+ DirectiveGrow.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveGrow, selector: "[grow]", ngImport: i0 });
18
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveGrow, decorators: [{
19
+ type: Directive,
20
+ args: [{
21
+ selector: '[grow]'
22
+ }]
23
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; } });
24
+ ;
25
+ ({}); // @--end-of-file-for-module=static-columns lib/column/column-grow.directive.ts
25
26
 
26
- class DirectiveGrow {
27
- constructor(e, renderer) {
28
- this.e = e;
29
- this.renderer = renderer;
30
- setTimeout(() => {
31
- renderer.setStyle(e.nativeElement, 'flexGrow', '1');
32
- }, 0);
33
- }
34
- }
35
- 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 });
36
- DirectiveGrow.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveGrow, selector: "[grow]", ngImport: i0 });
37
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveGrow, decorators: [{
38
- type: Directive,
39
- args: [{
40
- selector: '[grow]'
41
- }]
42
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; } });
43
- ;
44
- ({}); // @--end-of-file-for-module=static-columns tmp-src-bundle/lib/column/column-grow.directive.ts
27
+ class DirectiveHideMobile {
28
+ constructor(e, renderer, breakpointObserver) {
29
+ this.e = e;
30
+ this.renderer = renderer;
31
+ this.breakpointObserver = breakpointObserver;
32
+ this.$destroy = new Subject();
33
+ }
34
+ ngOnInit() {
35
+ this.breakpointObserver
36
+ .observe(['(min-width: 600px)'])
37
+ .pipe(takeUntil(this.$destroy))
38
+ .subscribe((state) => {
39
+ if (typeof this.originalDisaplay === 'undefined') {
40
+ this.originalDisaplay = this.e.nativeElement.style.display;
41
+ }
42
+ if (state.matches) {
43
+ this.renderer.setStyle(this.e.nativeElement, 'display', this.originalDisaplay);
44
+ }
45
+ else {
46
+ this.renderer.setStyle(this.e.nativeElement, 'display', 'none');
47
+ }
48
+ });
49
+ }
50
+ ngOnDestroy() {
51
+ this.$destroy.next(void 0);
52
+ this.$destroy.complete();
53
+ }
54
+ }
55
+ DirectiveHideMobile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveHideMobile, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.BreakpointObserver }], target: i0.ɵɵFactoryTarget.Directive });
56
+ DirectiveHideMobile.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveHideMobile, selector: "[hideMobile]", ngImport: i0 });
57
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveHideMobile, decorators: [{
58
+ type: Directive,
59
+ args: [{
60
+ selector: '[hideMobile]'
61
+ }]
62
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1.BreakpointObserver }]; } });
63
+ ;
64
+ ({}); // @--end-of-file-for-module=static-columns lib/column/column-hide-mobile.directive.ts
45
65
 
46
- ;
47
- ({}); // @--end-of-file-for-module=static-columns tmp-src-bundle/lib/column/index.ts
66
+ class DirectiveHideTablet {
67
+ constructor(e, renderer, breakpointObserver) {
68
+ this.e = e;
69
+ this.renderer = renderer;
70
+ this.breakpointObserver = breakpointObserver;
71
+ this.$destroy = new Subject();
72
+ }
73
+ ngOnInit() {
74
+ this.breakpointObserver
75
+ .observe(['(min-width: 800px)'])
76
+ .pipe(takeUntil(this.$destroy))
77
+ .subscribe((state) => {
78
+ if (typeof this.originalDisaplay === 'undefined') {
79
+ this.originalDisaplay = this.e.nativeElement.style.display;
80
+ }
81
+ if (state.matches) {
82
+ this.renderer.setStyle(this.e.nativeElement, 'display', this.originalDisaplay);
83
+ }
84
+ else {
85
+ this.renderer.setStyle(this.e.nativeElement, 'display', 'none');
86
+ }
87
+ });
88
+ }
89
+ ngOnDestroy() {
90
+ this.$destroy.next(void 0);
91
+ this.$destroy.complete();
92
+ }
93
+ }
94
+ DirectiveHideTablet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveHideTablet, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.BreakpointObserver }], target: i0.ɵɵFactoryTarget.Directive });
95
+ DirectiveHideTablet.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveHideTablet, selector: "[hideTablet]", ngImport: i0 });
96
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveHideTablet, decorators: [{
97
+ type: Directive,
98
+ args: [{
99
+ selector: '[hideTablet]'
100
+ }]
101
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1.BreakpointObserver }]; } });
102
+ ;
103
+ ({}); // @--end-of-file-for-module=static-columns lib/column/column-hide-tablet.directive.ts
48
104
 
49
- class ColumnsComponent {
50
- constructor() {
51
- }
52
- ngOnInit() { }
53
- }
54
- ColumnsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
55
- 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>", styles: [":host{display:flex;width:100%;align-content:streach;justify-content:space-between}\n"] });
56
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnsComponent, decorators: [{
57
- type: Component,
58
- args: [{ selector: 'columns-container', template: "<ng-content></ng-content>", styles: [":host{display:flex;width:100%;align-content:streach;justify-content:space-between}\n"] }]
59
- }], ctorParameters: function () { return []; }, propDecorators: { childrens: [{
60
- type: ViewChildren,
61
- args: [ColumnComponent]
62
- }] } });
63
- ;
64
- ({}); // @--end-of-file-for-module=static-columns tmp-src-bundle/lib/columns.component.ts
105
+ class DirectiveShowMobile {
106
+ constructor(e, renderer, breakpointObserver) {
107
+ this.e = e;
108
+ this.renderer = renderer;
109
+ this.breakpointObserver = breakpointObserver;
110
+ this.$destroy = new Subject();
111
+ }
112
+ ngOnInit() {
113
+ this.breakpointObserver
114
+ .observe(['(min-width: 600px)'])
115
+ .pipe(takeUntil(this.$destroy))
116
+ .subscribe((state) => {
117
+ if (typeof this.originalDisaplay === 'undefined') {
118
+ this.originalDisaplay = this.e.nativeElement.style.display;
119
+ }
120
+ if (state.matches) {
121
+ this.renderer.setStyle(this.e.nativeElement, 'display', 'none');
122
+ }
123
+ else {
124
+ this.renderer.setStyle(this.e.nativeElement, 'display', this.originalDisaplay);
125
+ }
126
+ });
127
+ }
128
+ ngOnDestroy() {
129
+ this.$destroy.next(void 0);
130
+ this.$destroy.complete();
131
+ }
132
+ }
133
+ DirectiveShowMobile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveShowMobile, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.BreakpointObserver }], target: i0.ɵɵFactoryTarget.Directive });
134
+ DirectiveShowMobile.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveShowMobile, selector: "[showMobile]", ngImport: i0 });
135
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveShowMobile, decorators: [{
136
+ type: Directive,
137
+ args: [{
138
+ selector: '[showMobile]'
139
+ }]
140
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1.BreakpointObserver }]; } });
141
+ ;
142
+ ({}); // @--end-of-file-for-module=static-columns lib/column/column-show-mobile.directive.ts
65
143
 
66
- class StaticColumnsModule {
67
- }
68
- StaticColumnsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StaticColumnsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
69
- StaticColumnsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StaticColumnsModule, declarations: [ColumnsComponent, ColumnComponent, DirectiveGrow], exports: [ColumnsComponent, ColumnComponent, DirectiveGrow] });
70
- StaticColumnsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StaticColumnsModule, providers: [], imports: [[]] });
71
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StaticColumnsModule, decorators: [{
72
- type: NgModule,
73
- args: [{
74
- imports: [],
75
- exports: [ColumnsComponent, ColumnComponent, DirectiveGrow],
76
- declarations: [ColumnsComponent, ColumnComponent, DirectiveGrow],
77
- providers: [],
78
- }]
79
- }] });
80
- ;
81
- ({}); // @--end-of-file-for-module=static-columns tmp-src-bundle/lib/columns.module.ts
144
+ class ColumnComponent {
145
+ constructor() {
146
+ }
147
+ ngOnInit() { }
148
+ }
149
+ ColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
150
+ 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"] });
151
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnComponent, decorators: [{
152
+ type: Component,
153
+ args: [{ selector: 'column', template: '<ng-content></ng-content>', styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }]
154
+ }], ctorParameters: function () { return []; }, propDecorators: { width: [{
155
+ type: HostBinding,
156
+ args: ['style.flex.basis.px']
157
+ }, {
158
+ type: HostBinding,
159
+ args: ['style.minWidth.px']
160
+ }, {
161
+ type: Input
162
+ }] } });
163
+ ;
164
+ ({}); // @--end-of-file-for-module=static-columns lib/column/column.component.ts
82
165
 
83
- ;
84
- ({}); // @--end-of-file-for-module=static-columns tmp-src-bundle/lib/index.ts
166
+ ;
167
+ ({}); // @--end-of-file-for-module=static-columns lib/column/index.ts
85
168
 
86
- /**
87
- * Generated bundle index. Do not edit.
169
+ class ColumnsGapComponent {
170
+ constructor() {
171
+ this.width = 20;
172
+ this.handlers = [];
173
+ this.columnsGapDataChanged = new EventEmitter();
174
+ this.columnsGapData = {};
175
+ }
176
+ ngOnInit() {
177
+ }
178
+ ngOnDestroy() {
179
+ this.handlers.forEach(h => h.unsubscribe());
180
+ }
181
+ }
182
+ ColumnsGapComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnsGapComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
183
+ 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"] }] });
184
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnsGapComponent, decorators: [{
185
+ type: Component,
186
+ args: [{ selector: 'columns-gap', template: "<column [width]=\"width\"></column>\r\n", styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }]
187
+ }], ctorParameters: function () { return []; }, propDecorators: { width: [{
188
+ type: HostBinding,
189
+ args: ['style.flex.basis.px']
190
+ }, {
191
+ type: HostBinding,
192
+ args: ['style.minWidth.px']
193
+ }], columnsGapDataChanged: [{
194
+ type: Output
195
+ }], columnsGapData: [{
196
+ type: Input
197
+ }] } });
198
+ ;
199
+ ({}); // @--end-of-file-for-module=static-columns lib/columns-gap/columns-gap.component.ts
200
+
201
+ ;
202
+ ({}); // @--end-of-file-for-module=static-columns lib/columns-gap/index.ts
203
+
204
+ class ColumnsComponent {
205
+ constructor() {
206
+ }
207
+ ngOnInit() { }
208
+ }
209
+ ColumnsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
210
+ 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"] });
211
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnsComponent, decorators: [{
212
+ type: Component,
213
+ 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"] }]
214
+ }], ctorParameters: function () { return []; }, propDecorators: { childrens: [{
215
+ type: ViewChildren,
216
+ args: [ColumnComponent]
217
+ }] } });
218
+ ;
219
+ ({}); // @--end-of-file-for-module=static-columns lib/columns.component.ts
220
+
221
+ const components = [
222
+ ColumnsComponent,
223
+ ColumnComponent,
224
+ DirectiveGrow,
225
+ DirectiveHideMobile,
226
+ DirectiveHideTablet,
227
+ DirectiveShowMobile,
228
+ ColumnsGapComponent,
229
+ ];
230
+ class StaticColumnsModule {
231
+ }
232
+ StaticColumnsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StaticColumnsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
233
+ StaticColumnsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StaticColumnsModule, declarations: [ColumnsComponent,
234
+ ColumnComponent,
235
+ DirectiveGrow,
236
+ DirectiveHideMobile,
237
+ DirectiveHideTablet,
238
+ DirectiveShowMobile,
239
+ ColumnsGapComponent], imports: [LayoutModule], exports: [LayoutModule, ColumnsComponent,
240
+ ColumnComponent,
241
+ DirectiveGrow,
242
+ DirectiveHideMobile,
243
+ DirectiveHideTablet,
244
+ DirectiveShowMobile,
245
+ ColumnsGapComponent] });
246
+ StaticColumnsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StaticColumnsModule, providers: [], imports: [[
247
+ LayoutModule,
248
+ ], LayoutModule] });
249
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StaticColumnsModule, decorators: [{
250
+ type: NgModule,
251
+ args: [{
252
+ imports: [
253
+ LayoutModule,
254
+ ],
255
+ exports: [
256
+ LayoutModule,
257
+ ...components,
258
+ ],
259
+ declarations: [
260
+ ...components,
261
+ ],
262
+ providers: [],
263
+ }]
264
+ }] });
265
+ ;
266
+ ({}); // @--end-of-file-for-module=static-columns lib/columns.module.ts
267
+
268
+ ;
269
+ ({}); // @--end-of-file-for-module=static-columns lib/index.ts
270
+
271
+ /**
272
+ * Generated bundle index. Do not edit.
88
273
  */
89
274
 
90
- export { ColumnComponent, ColumnsComponent, DirectiveGrow, StaticColumnsModule };
275
+ export { ColumnComponent, ColumnsComponent, ColumnsGapComponent, DirectiveGrow, DirectiveHideMobile, DirectiveHideTablet, DirectiveShowMobile, StaticColumnsModule };
91
276
  //# 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.component.ts","../../../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/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, 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 ;({}); // @--end-of-file-for-module=static-columns tmp-src-bundle/lib/column/column.component.ts","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 ;({}); // @--end-of-file-for-module=static-columns tmp-src-bundle/lib/column/column-grow.directive.ts","export * from './column.component';\nexport * from './column-grow.directive';\n ;({}); // @--end-of-file-for-module=static-columns tmp-src-bundle/lib/column/index.ts","import { 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 ;({}); // @--end-of-file-for-module=static-columns tmp-src-bundle/lib/columns.component.ts","<ng-content></ng-content>","import { NgModule } from '@angular/core';\n\nimport { ColumnComponent, DirectiveGrow } from './column';\nimport { ColumnsComponent } from './columns.component';\n\n@NgModule({\n imports: [],\n exports: [ColumnsComponent, ColumnComponent, DirectiveGrow],\n declarations: [ColumnsComponent, ColumnComponent, DirectiveGrow],\n providers: [],\n})\nexport class StaticColumnsModule { }\n ;({}); // @--end-of-file-for-module=static-columns tmp-src-bundle/lib/columns.module.ts","export * from './column';\nexport * from './columns.component';\nexport * from './column/column-grow.directive';\nexport * from './column/column.component';\nexport * from './columns.module';\n ;({}); // @--end-of-file-for-module=static-columns tmp-src-bundle/lib/index.ts","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"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/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-show-mobile.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 } from '@angular/cdk/layout';\nimport { Component, Directive, ElementRef, OnInit, Renderer2 } from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\n\n\n@Directive({\n selector: '[hideMobile]'\n})\nexport class DirectiveHideMobile implements OnInit {\n\n $destroy = new Subject();\n constructor(\n public e: ElementRef,\n public renderer: Renderer2,\n public breakpointObserver: BreakpointObserver,\n ) { }\n\n private originalDisaplay: string;\n\n ngOnInit() {\n this.breakpointObserver\n .observe(['(min-width: 600px)'])\n .pipe(takeUntil(this.$destroy))\n .subscribe((state: BreakpointState) => {\n if (typeof this.originalDisaplay === 'undefined') {\n this.originalDisaplay = (this.e.nativeElement as HTMLElement).style.display;\n }\n if (state.matches) {\n this.renderer.setStyle(this.e.nativeElement, 'display', this.originalDisaplay)\n } else {\n this.renderer.setStyle(this.e.nativeElement, 'display', 'none')\n }\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/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';\n\n\n@Directive({\n selector: '[hideTablet]'\n})\nexport class DirectiveHideTablet implements OnInit {\n\n $destroy = new Subject();\n constructor(\n public e: ElementRef,\n public renderer: Renderer2,\n public breakpointObserver: BreakpointObserver,\n ) { }\n\n private originalDisaplay: string;\n\n ngOnInit() {\n this.breakpointObserver\n .observe(['(min-width: 800px)'])\n .pipe(takeUntil(this.$destroy))\n .subscribe((state: BreakpointState) => {\n if (typeof this.originalDisaplay === 'undefined') {\n this.originalDisaplay = (this.e.nativeElement as HTMLElement).style.display;\n }\n if (state.matches) {\n this.renderer.setStyle(this.e.nativeElement, 'display', this.originalDisaplay)\n } else {\n this.renderer.setStyle(this.e.nativeElement, 'display', 'none')\n }\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/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';\n\n\n@Directive({\n selector: '[showMobile]'\n})\nexport class DirectiveShowMobile implements OnInit {\n\n $destroy = new Subject();\n constructor(\n public e: ElementRef,\n public renderer: Renderer2,\n public breakpointObserver: BreakpointObserver,\n ) { }\n\n private originalDisaplay: string;\n\n ngOnInit() {\n this.breakpointObserver\n .observe(['(min-width: 600px)'])\n .pipe(takeUntil(this.$destroy))\n .subscribe((state: BreakpointState) => {\n if (typeof this.originalDisaplay === 'undefined') {\n this.originalDisaplay = (this.e.nativeElement as HTMLElement).style.display;\n }\n if (state.matches) {\n this.renderer.setStyle(this.e.nativeElement, 'display', 'none')\n\n } else {\n this.renderer.setStyle(this.e.nativeElement, 'display', this.originalDisaplay)\n }\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/column-show-mobile.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-show-mobile.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, DirectiveHideTablet, DirectiveShowMobile } from './column';\nimport { DirectiveHideMobile } from './column/column-hide-mobile.directive';\nimport { ColumnsGapComponent } from './columns-gap/columns-gap.component';\nimport { ColumnsComponent } from './columns.component';\n\nconst components = [\n ColumnsComponent,\n ColumnComponent,\n DirectiveGrow,\n DirectiveHideMobile,\n DirectiveHideTablet,\n DirectiveShowMobile,\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: [],\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 './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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"}