static-columns 21.0.16 → 21.0.18
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.
- package/browser/fesm2022/static-columns-browser.mjs +49 -49
- package/browser/package.json +1 -1
- package/browser-prod/README.md +24 -0
- package/browser-prod/fesm2022/static-columns-browser.mjs +479 -0
- package/browser-prod/fesm2022/static-columns-browser.mjs.map +1 -0
- package/browser-prod/types/static-columns-browser.d.ts +138 -0
- package/lib/build-info._auto-generated_.d.ts +5 -1
- package/lib/build-info._auto-generated_.js +6 -2
- package/lib/build-info._auto-generated_.js.map +1 -1
- package/lib/column/index.js +2 -2
- package/lib/columns-gap/index.js +2 -2
- package/lib/env/env.angular-node-app.d.ts +32 -28
- package/lib/env/env.angular-node-app.js +34 -30
- package/lib/env/env.angular-node-app.js.map +1 -1
- package/lib/env/env.docs-webapp.d.ts +32 -28
- package/lib/env/env.docs-webapp.js +34 -30
- package/lib/env/env.docs-webapp.js.map +1 -1
- package/lib/env/env.electron-app.d.ts +32 -28
- package/lib/env/env.electron-app.js +34 -30
- package/lib/env/env.electron-app.js.map +1 -1
- package/lib/env/env.mobile-app.d.ts +32 -28
- package/lib/env/env.mobile-app.js +34 -30
- package/lib/env/env.mobile-app.js.map +1 -1
- package/lib/env/env.npm-lib-and-cli-tool.d.ts +32 -28
- package/lib/env/env.npm-lib-and-cli-tool.js +34 -30
- package/lib/env/env.npm-lib-and-cli-tool.js.map +1 -1
- package/lib/env/env.vscode-plugin.d.ts +32 -28
- package/lib/env/env.vscode-plugin.js +34 -30
- package/lib/env/env.vscode-plugin.js.map +1 -1
- package/lib-prod/build-info._auto-generated_.d.ts +24 -0
- package/lib-prod/build-info._auto-generated_.js +30 -0
- package/lib-prod/build-info._auto-generated_.js.map +1 -0
- package/lib-prod/column/index.d.ts +1 -0
- package/lib-prod/column/index.js +5 -0
- package/lib-prod/column/index.js.map +1 -0
- package/lib-prod/columns-gap/index.d.ts +1 -0
- package/lib-prod/columns-gap/index.js +5 -0
- package/lib-prod/columns-gap/index.js.map +1 -0
- package/lib-prod/env/env.angular-node-app.d.ts +66 -0
- package/lib-prod/env/env.angular-node-app.js +73 -0
- package/lib-prod/env/env.angular-node-app.js.map +1 -0
- package/lib-prod/env/env.docs-webapp.d.ts +66 -0
- package/lib-prod/env/env.docs-webapp.js +73 -0
- package/lib-prod/env/env.docs-webapp.js.map +1 -0
- package/lib-prod/env/env.electron-app.d.ts +66 -0
- package/lib-prod/env/env.electron-app.js +73 -0
- package/lib-prod/env/env.electron-app.js.map +1 -0
- package/lib-prod/env/env.mobile-app.d.ts +66 -0
- package/lib-prod/env/env.mobile-app.js +73 -0
- package/lib-prod/env/env.mobile-app.js.map +1 -0
- package/lib-prod/env/env.npm-lib-and-cli-tool.d.ts +66 -0
- package/lib-prod/env/env.npm-lib-and-cli-tool.js +73 -0
- package/lib-prod/env/env.npm-lib-and-cli-tool.js.map +1 -0
- package/lib-prod/env/env.vscode-plugin.d.ts +66 -0
- package/lib-prod/env/env.vscode-plugin.js +73 -0
- package/lib-prod/env/env.vscode-plugin.js.map +1 -0
- package/lib-prod/env/index.d.ts +6 -0
- package/lib-prod/env/index.js +23 -0
- package/lib-prod/env/index.js.map +1 -0
- package/lib-prod/index._auto-generated_.d.ts +0 -0
- package/lib-prod/index._auto-generated_.js +6 -0
- package/lib-prod/index._auto-generated_.js.map +1 -0
- package/lib-prod/index.d.ts +3 -0
- package/lib-prod/index.js +30 -0
- package/lib-prod/index.js.map +1 -0
- package/package.json +1 -1
- package/scss/app.scss +1 -0
- package/websql/fesm2022/static-columns-websql.mjs +49 -49
- package/websql/package.json +1 -1
- package/websql-prod/README.md +24 -0
- package/websql-prod/fesm2022/static-columns-websql.mjs +479 -0
- package/websql-prod/fesm2022/static-columns-websql.mjs.map +1 -0
- package/websql-prod/types/static-columns-websql.d.ts +138 -0
|
@@ -0,0 +1,479 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Injectable, Directive, HostBinding, Input, Component, EventEmitter, Output, ViewChildren, NgModule } from '@angular/core';
|
|
3
|
+
import { Subject, takeUntil } from 'rxjs';
|
|
4
|
+
import * as i1 from '@angular/cdk/layout';
|
|
5
|
+
import { LayoutModule } from '@angular/cdk/layout';
|
|
6
|
+
import { _ } from 'tnp-core/browser-prod';
|
|
7
|
+
|
|
8
|
+
//#region imports
|
|
9
|
+
//#endregion
|
|
10
|
+
const BRK = {
|
|
11
|
+
mobile: '(max-width: 599.98px)',
|
|
12
|
+
// tablet: obsvious
|
|
13
|
+
desktop: '(min-width: 840.00px)',
|
|
14
|
+
};
|
|
15
|
+
class BreakpointsService {
|
|
16
|
+
listenTo() {
|
|
17
|
+
setTimeout(() => {
|
|
18
|
+
this.sub.next(this.current);
|
|
19
|
+
});
|
|
20
|
+
return this.sub.asObservable();
|
|
21
|
+
}
|
|
22
|
+
constructor(breakpointObserver) {
|
|
23
|
+
this.sub = new Subject();
|
|
24
|
+
breakpointObserver.observe([BRK.mobile, BRK.desktop]).subscribe(state => {
|
|
25
|
+
if (!_.isUndefined([BRK.mobile].find(f => state.breakpoints[f]))) {
|
|
26
|
+
this.current = 'mobile';
|
|
27
|
+
this.sub.next('mobile');
|
|
28
|
+
}
|
|
29
|
+
else if (!_.isUndefined([BRK.desktop].find(f => state.breakpoints[f]))) {
|
|
30
|
+
this.current = 'desktop';
|
|
31
|
+
this.sub.next('desktop');
|
|
32
|
+
}
|
|
33
|
+
else {
|
|
34
|
+
this.current = 'tablet';
|
|
35
|
+
this.sub.next('tablet');
|
|
36
|
+
}
|
|
37
|
+
});
|
|
38
|
+
setTimeout(() => {
|
|
39
|
+
if (breakpointObserver.isMatched([BRK.mobile])) {
|
|
40
|
+
this.current = 'mobile';
|
|
41
|
+
this.sub.next('mobile');
|
|
42
|
+
}
|
|
43
|
+
else if (breakpointObserver.isMatched([BRK.desktop])) {
|
|
44
|
+
this.current = 'desktop';
|
|
45
|
+
this.sub.next('desktop');
|
|
46
|
+
}
|
|
47
|
+
else {
|
|
48
|
+
this.current = 'tablet';
|
|
49
|
+
this.sub.next('tablet');
|
|
50
|
+
}
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: BreakpointsService, deps: [{ token: i1.BreakpointObserver }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
54
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: BreakpointsService, providedIn: 'root' }); }
|
|
55
|
+
}
|
|
56
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: BreakpointsService, decorators: [{
|
|
57
|
+
type: Injectable,
|
|
58
|
+
args: [{ providedIn: 'root' }]
|
|
59
|
+
}], ctorParameters: () => [{ type: i1.BreakpointObserver }] });
|
|
60
|
+
|
|
61
|
+
//#endregion
|
|
62
|
+
class BaseHideShowDirective {
|
|
63
|
+
constructor(e, renderer, breakpoints) {
|
|
64
|
+
this.e = e;
|
|
65
|
+
this.renderer = renderer;
|
|
66
|
+
this.breakpoints = breakpoints;
|
|
67
|
+
this.$destroy = new Subject();
|
|
68
|
+
}
|
|
69
|
+
hideElement() {
|
|
70
|
+
this.renderer.setStyle(this.e.nativeElement, 'display', 'none');
|
|
71
|
+
}
|
|
72
|
+
showElement() {
|
|
73
|
+
this.renderer.setStyle(this.e.nativeElement, 'display', this.originalDisaplay);
|
|
74
|
+
}
|
|
75
|
+
scale(scale = 1) {
|
|
76
|
+
this.renderer.setStyle(this.e.nativeElement, 'transform', `scale(${scale})`);
|
|
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
|
+
// console.log(`state for actin: ${state}`)
|
|
89
|
+
this.action(state);
|
|
90
|
+
});
|
|
91
|
+
}
|
|
92
|
+
ngOnDestroy() {
|
|
93
|
+
this.$destroy.next(void 0);
|
|
94
|
+
this.$destroy.complete();
|
|
95
|
+
}
|
|
96
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: BaseHideShowDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: BreakpointsService }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
97
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.9", type: BaseHideShowDirective, isStandalone: false, selector: "[baseHideShowDirective]", ngImport: i0 }); }
|
|
98
|
+
}
|
|
99
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: BaseHideShowDirective, decorators: [{
|
|
100
|
+
type: Directive,
|
|
101
|
+
args: [{
|
|
102
|
+
selector: '[baseHideShowDirective]',
|
|
103
|
+
standalone: false,
|
|
104
|
+
}]
|
|
105
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: BreakpointsService }] });
|
|
106
|
+
|
|
107
|
+
//#region imports
|
|
108
|
+
//#endregion
|
|
109
|
+
class DirectiveGrow {
|
|
110
|
+
constructor(e, renderer) {
|
|
111
|
+
this.e = e;
|
|
112
|
+
this.renderer = renderer;
|
|
113
|
+
setTimeout(() => {
|
|
114
|
+
// e.nativeElement.style.flexGrow = 1;
|
|
115
|
+
renderer.setStyle(e.nativeElement, 'flexGrow', '1');
|
|
116
|
+
}, 0);
|
|
117
|
+
// renderer.setElementStyle(e.nativeElement, 'flexGrow', '1');
|
|
118
|
+
}
|
|
119
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveGrow, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
120
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.9", type: DirectiveGrow, isStandalone: false, selector: "[grow]", ngImport: i0 }); }
|
|
121
|
+
}
|
|
122
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveGrow, decorators: [{
|
|
123
|
+
type: Directive,
|
|
124
|
+
args: [{
|
|
125
|
+
selector: '[grow]',
|
|
126
|
+
standalone: false,
|
|
127
|
+
}]
|
|
128
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }] });
|
|
129
|
+
|
|
130
|
+
//#endregion
|
|
131
|
+
class DirectiveHideDesktop extends BaseHideShowDirective {
|
|
132
|
+
action(state) {
|
|
133
|
+
if (state === 'desktop') {
|
|
134
|
+
this.hideElement();
|
|
135
|
+
}
|
|
136
|
+
else {
|
|
137
|
+
this.showElement();
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveHideDesktop, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
141
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.9", type: DirectiveHideDesktop, isStandalone: false, selector: "[hideDesktop]", usesInheritance: true, ngImport: i0 }); }
|
|
142
|
+
}
|
|
143
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveHideDesktop, decorators: [{
|
|
144
|
+
type: Directive,
|
|
145
|
+
args: [{
|
|
146
|
+
selector: '[hideDesktop]',
|
|
147
|
+
standalone: false,
|
|
148
|
+
}]
|
|
149
|
+
}] });
|
|
150
|
+
|
|
151
|
+
//#endregion
|
|
152
|
+
class DirectiveHideMobile extends BaseHideShowDirective {
|
|
153
|
+
action(state) {
|
|
154
|
+
if (state === 'mobile') {
|
|
155
|
+
this.hideElement();
|
|
156
|
+
}
|
|
157
|
+
else {
|
|
158
|
+
this.showElement();
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveHideMobile, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
162
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.9", type: DirectiveHideMobile, isStandalone: false, selector: "[hideMobile]", usesInheritance: true, ngImport: i0 }); }
|
|
163
|
+
}
|
|
164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveHideMobile, decorators: [{
|
|
165
|
+
type: Directive,
|
|
166
|
+
args: [{
|
|
167
|
+
selector: '[hideMobile]',
|
|
168
|
+
standalone: false,
|
|
169
|
+
}]
|
|
170
|
+
}] });
|
|
171
|
+
|
|
172
|
+
//#endregion
|
|
173
|
+
class DirectiveHideTablet extends BaseHideShowDirective {
|
|
174
|
+
action(state) {
|
|
175
|
+
if (state === 'tablet') {
|
|
176
|
+
this.hideElement();
|
|
177
|
+
}
|
|
178
|
+
else {
|
|
179
|
+
this.showElement();
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveHideTablet, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
183
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.9", type: DirectiveHideTablet, isStandalone: false, selector: "[hideTablet]", usesInheritance: true, ngImport: i0 }); }
|
|
184
|
+
}
|
|
185
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveHideTablet, decorators: [{
|
|
186
|
+
type: Directive,
|
|
187
|
+
args: [{
|
|
188
|
+
selector: '[hideTablet]',
|
|
189
|
+
standalone: false,
|
|
190
|
+
}]
|
|
191
|
+
}] });
|
|
192
|
+
|
|
193
|
+
//#endregion
|
|
194
|
+
class DirectiveShowDesktop extends BaseHideShowDirective {
|
|
195
|
+
action(state) {
|
|
196
|
+
if (state === 'desktop') {
|
|
197
|
+
this.showElement();
|
|
198
|
+
}
|
|
199
|
+
else {
|
|
200
|
+
this.hideElement();
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveShowDesktop, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
204
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.9", type: DirectiveShowDesktop, isStandalone: false, selector: "[showDesktop]", usesInheritance: true, ngImport: i0 }); }
|
|
205
|
+
}
|
|
206
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveShowDesktop, decorators: [{
|
|
207
|
+
type: Directive,
|
|
208
|
+
args: [{
|
|
209
|
+
selector: '[showDesktop]',
|
|
210
|
+
standalone: false,
|
|
211
|
+
}]
|
|
212
|
+
}] });
|
|
213
|
+
|
|
214
|
+
//#endregion
|
|
215
|
+
class DirectiveShowMobile extends BaseHideShowDirective {
|
|
216
|
+
action(state) {
|
|
217
|
+
if (state === 'mobile') {
|
|
218
|
+
this.showElement();
|
|
219
|
+
}
|
|
220
|
+
else {
|
|
221
|
+
this.hideElement();
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveShowMobile, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
225
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.9", type: DirectiveShowMobile, isStandalone: false, selector: "[showMobile]", usesInheritance: true, ngImport: i0 }); }
|
|
226
|
+
}
|
|
227
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveShowMobile, decorators: [{
|
|
228
|
+
type: Directive,
|
|
229
|
+
args: [{
|
|
230
|
+
selector: '[showMobile]',
|
|
231
|
+
standalone: false,
|
|
232
|
+
}]
|
|
233
|
+
}] });
|
|
234
|
+
|
|
235
|
+
//#endregion
|
|
236
|
+
class DirectiveShowTablet extends BaseHideShowDirective {
|
|
237
|
+
action(state) {
|
|
238
|
+
if (state === 'tablet') {
|
|
239
|
+
this.showElement();
|
|
240
|
+
}
|
|
241
|
+
else {
|
|
242
|
+
this.hideElement();
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveShowTablet, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
246
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.9", type: DirectiveShowTablet, isStandalone: false, selector: "[showTablet]", usesInheritance: true, ngImport: i0 }); }
|
|
247
|
+
}
|
|
248
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveShowTablet, decorators: [{
|
|
249
|
+
type: Directive,
|
|
250
|
+
args: [{
|
|
251
|
+
selector: '[showTablet]',
|
|
252
|
+
standalone: false,
|
|
253
|
+
}]
|
|
254
|
+
}] });
|
|
255
|
+
|
|
256
|
+
//#region imports
|
|
257
|
+
//#endregion
|
|
258
|
+
class ColumnComponent {
|
|
259
|
+
constructor() {
|
|
260
|
+
// this.ccwidth = 90;
|
|
261
|
+
}
|
|
262
|
+
ngOnInit() { }
|
|
263
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: ColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
264
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.9", type: ColumnComponent, isStandalone: false, 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"] }); }
|
|
265
|
+
}
|
|
266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: ColumnComponent, decorators: [{
|
|
267
|
+
type: Component,
|
|
268
|
+
args: [{ selector: 'column', template: '<ng-content></ng-content>', standalone: false, styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }]
|
|
269
|
+
}], ctorParameters: () => [], propDecorators: { width: [{
|
|
270
|
+
type: HostBinding,
|
|
271
|
+
args: ['style.flex.basis.px']
|
|
272
|
+
}, {
|
|
273
|
+
type: HostBinding,
|
|
274
|
+
args: ['style.minWidth.px']
|
|
275
|
+
}, {
|
|
276
|
+
type: Input
|
|
277
|
+
}] } });
|
|
278
|
+
|
|
279
|
+
//#endregion
|
|
280
|
+
class DirectiveShrinkOnMobile extends BaseHideShowDirective {
|
|
281
|
+
constructor(e, renderer, breakpoints) {
|
|
282
|
+
super(e, renderer, breakpoints);
|
|
283
|
+
this.e = e;
|
|
284
|
+
this.renderer = renderer;
|
|
285
|
+
this.breakpoints = breakpoints;
|
|
286
|
+
this.scaleFactor = 75;
|
|
287
|
+
}
|
|
288
|
+
action(state) {
|
|
289
|
+
if (state === 'mobile') {
|
|
290
|
+
this.scale(0.75);
|
|
291
|
+
}
|
|
292
|
+
else {
|
|
293
|
+
// if (state === 'tablet' && this.tablet75) {
|
|
294
|
+
// } else {
|
|
295
|
+
this.scale();
|
|
296
|
+
// }
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveShrinkOnMobile, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: BreakpointsService }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
300
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.9", type: DirectiveShrinkOnMobile, isStandalone: false, selector: "[shrinkOnMobile]", usesInheritance: true, ngImport: i0 }); }
|
|
301
|
+
}
|
|
302
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveShrinkOnMobile, decorators: [{
|
|
303
|
+
type: Directive,
|
|
304
|
+
args: [{
|
|
305
|
+
selector: '[shrinkOnMobile]',
|
|
306
|
+
standalone: false,
|
|
307
|
+
}]
|
|
308
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: BreakpointsService }] });
|
|
309
|
+
|
|
310
|
+
//#endregion
|
|
311
|
+
class DirectiveShrinkOnMobile50 extends DirectiveShrinkOnMobile {
|
|
312
|
+
constructor() {
|
|
313
|
+
super(...arguments);
|
|
314
|
+
this.scaleFactor = 50;
|
|
315
|
+
}
|
|
316
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveShrinkOnMobile50, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
317
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.9", type: DirectiveShrinkOnMobile50, isStandalone: false, selector: "[shrinkOnMobile50]", usesInheritance: true, ngImport: i0 }); }
|
|
318
|
+
}
|
|
319
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveShrinkOnMobile50, decorators: [{
|
|
320
|
+
type: Directive,
|
|
321
|
+
args: [{
|
|
322
|
+
selector: '[shrinkOnMobile50]',
|
|
323
|
+
standalone: false,
|
|
324
|
+
}]
|
|
325
|
+
}] });
|
|
326
|
+
|
|
327
|
+
//#endregion
|
|
328
|
+
// import { DirectiveShrinkOnMobile50 } from './shrink-on-mobile50.directive';
|
|
329
|
+
// import { DirectiveShrinkOnMobile } from './shrink-on-mobile75.directive';
|
|
330
|
+
class DirectiveShrinkOnTablet extends BaseHideShowDirective {
|
|
331
|
+
constructor(e, renderer, breakpoints) {
|
|
332
|
+
super(e, renderer, breakpoints);
|
|
333
|
+
this.e = e;
|
|
334
|
+
this.renderer = renderer;
|
|
335
|
+
this.breakpoints = breakpoints;
|
|
336
|
+
}
|
|
337
|
+
action(state) {
|
|
338
|
+
// if (state === 'tablet') {
|
|
339
|
+
// this.scale(0.75)
|
|
340
|
+
// } else {
|
|
341
|
+
// if (state === 'mobile' && (this.mobile50 || this.mobile75)) {
|
|
342
|
+
// } else {
|
|
343
|
+
// this.scale()
|
|
344
|
+
// }
|
|
345
|
+
// }
|
|
346
|
+
}
|
|
347
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveShrinkOnTablet, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: BreakpointsService }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
348
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.9", type: DirectiveShrinkOnTablet, isStandalone: false, selector: "[shrinkOnTablet]", usesInheritance: true, ngImport: i0 }); }
|
|
349
|
+
}
|
|
350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: DirectiveShrinkOnTablet, decorators: [{
|
|
351
|
+
type: Directive,
|
|
352
|
+
args: [{
|
|
353
|
+
selector: '[shrinkOnTablet]',
|
|
354
|
+
standalone: false,
|
|
355
|
+
}]
|
|
356
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: BreakpointsService }] });
|
|
357
|
+
|
|
358
|
+
//#region @browser
|
|
359
|
+
//#endregion
|
|
360
|
+
|
|
361
|
+
//#region imports
|
|
362
|
+
//#endregion
|
|
363
|
+
class ColumnsGapComponent {
|
|
364
|
+
constructor() {
|
|
365
|
+
this.width = 20;
|
|
366
|
+
this.handlers = [];
|
|
367
|
+
this.columnsGapDataChanged = new EventEmitter();
|
|
368
|
+
this.columnsGapData = {};
|
|
369
|
+
}
|
|
370
|
+
ngOnInit() { }
|
|
371
|
+
ngOnDestroy() {
|
|
372
|
+
this.handlers.forEach(h => h.unsubscribe());
|
|
373
|
+
}
|
|
374
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: ColumnsGapComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
375
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.9", type: ColumnsGapComponent, isStandalone: false, 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"], dependencies: [{ kind: "component", type: ColumnComponent, selector: "column", inputs: ["width"] }] }); }
|
|
376
|
+
}
|
|
377
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: ColumnsGapComponent, decorators: [{
|
|
378
|
+
type: Component,
|
|
379
|
+
args: [{ selector: 'columns-gap', standalone: false, template: "<column [width]=\"width\"></column>\n", styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }]
|
|
380
|
+
}], ctorParameters: () => [], propDecorators: { width: [{
|
|
381
|
+
type: HostBinding,
|
|
382
|
+
args: ['style.flex.basis.px']
|
|
383
|
+
}, {
|
|
384
|
+
type: HostBinding,
|
|
385
|
+
args: ['style.minWidth.px']
|
|
386
|
+
}], columnsGapDataChanged: [{
|
|
387
|
+
type: Output
|
|
388
|
+
}], columnsGapData: [{
|
|
389
|
+
type: Input
|
|
390
|
+
}] } });
|
|
391
|
+
|
|
392
|
+
//#region @browser
|
|
393
|
+
//#endregion
|
|
394
|
+
|
|
395
|
+
//#region imports
|
|
396
|
+
//#endregion
|
|
397
|
+
// import { Log, Level } from 'ng2-logger/index';
|
|
398
|
+
// const log = Log.create('test');
|
|
399
|
+
// log.i('asdas')
|
|
400
|
+
class ColumnsComponent {
|
|
401
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: ColumnsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
402
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.9", type: ColumnsComponent, isStandalone: false, selector: "columns-container", viewQueries: [{ propertyName: "childrens", predicate: ColumnComponent, descendants: true }], ngImport: i0, template: "<ng-content></ng-content>\n", styles: [":host{display:flex;width:100%;align-content:streach;justify-content:space-between}.static-columns-hide-mobile{display:block}@media(max-width:600px){.static-columns-hide-mobile{display:none}}\n"] }); }
|
|
403
|
+
}
|
|
404
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: ColumnsComponent, decorators: [{
|
|
405
|
+
type: Component,
|
|
406
|
+
args: [{ selector: 'columns-container', standalone: false, template: "<ng-content></ng-content>\n", styles: [":host{display:flex;width:100%;align-content:streach;justify-content:space-between}.static-columns-hide-mobile{display:block}@media(max-width:600px){.static-columns-hide-mobile{display:none}}\n"] }]
|
|
407
|
+
}], propDecorators: { childrens: [{
|
|
408
|
+
type: ViewChildren,
|
|
409
|
+
args: [ColumnComponent]
|
|
410
|
+
}] } });
|
|
411
|
+
|
|
412
|
+
//#region imports
|
|
413
|
+
//#endregion
|
|
414
|
+
const components = [
|
|
415
|
+
ColumnsComponent,
|
|
416
|
+
ColumnComponent,
|
|
417
|
+
DirectiveGrow,
|
|
418
|
+
DirectiveHideMobile,
|
|
419
|
+
DirectiveHideTablet,
|
|
420
|
+
DirectiveHideDesktop,
|
|
421
|
+
DirectiveShowTablet,
|
|
422
|
+
DirectiveShowMobile,
|
|
423
|
+
DirectiveShowDesktop,
|
|
424
|
+
ColumnsGapComponent,
|
|
425
|
+
DirectiveShrinkOnMobile50,
|
|
426
|
+
DirectiveShrinkOnMobile,
|
|
427
|
+
DirectiveShrinkOnTablet,
|
|
428
|
+
];
|
|
429
|
+
class StaticColumnsModule {
|
|
430
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: StaticColumnsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
431
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.0.9", ngImport: i0, type: StaticColumnsModule, declarations: [ColumnsComponent,
|
|
432
|
+
ColumnComponent,
|
|
433
|
+
DirectiveGrow,
|
|
434
|
+
DirectiveHideMobile,
|
|
435
|
+
DirectiveHideTablet,
|
|
436
|
+
DirectiveHideDesktop,
|
|
437
|
+
DirectiveShowTablet,
|
|
438
|
+
DirectiveShowMobile,
|
|
439
|
+
DirectiveShowDesktop,
|
|
440
|
+
ColumnsGapComponent,
|
|
441
|
+
DirectiveShrinkOnMobile50,
|
|
442
|
+
DirectiveShrinkOnMobile,
|
|
443
|
+
DirectiveShrinkOnTablet], imports: [LayoutModule], exports: [LayoutModule, ColumnsComponent,
|
|
444
|
+
ColumnComponent,
|
|
445
|
+
DirectiveGrow,
|
|
446
|
+
DirectiveHideMobile,
|
|
447
|
+
DirectiveHideTablet,
|
|
448
|
+
DirectiveHideDesktop,
|
|
449
|
+
DirectiveShowTablet,
|
|
450
|
+
DirectiveShowMobile,
|
|
451
|
+
DirectiveShowDesktop,
|
|
452
|
+
ColumnsGapComponent,
|
|
453
|
+
DirectiveShrinkOnMobile50,
|
|
454
|
+
DirectiveShrinkOnMobile,
|
|
455
|
+
DirectiveShrinkOnTablet] }); }
|
|
456
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: StaticColumnsModule, providers: [BreakpointsService], imports: [LayoutModule, LayoutModule] }); }
|
|
457
|
+
}
|
|
458
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImport: i0, type: StaticColumnsModule, decorators: [{
|
|
459
|
+
type: NgModule,
|
|
460
|
+
args: [{
|
|
461
|
+
imports: [LayoutModule],
|
|
462
|
+
exports: [LayoutModule, ...components],
|
|
463
|
+
declarations: [...components],
|
|
464
|
+
providers: [BreakpointsService],
|
|
465
|
+
}]
|
|
466
|
+
}] });
|
|
467
|
+
|
|
468
|
+
//#endregion
|
|
469
|
+
/* */
|
|
470
|
+
/* */
|
|
471
|
+
/* */
|
|
472
|
+
/* */
|
|
473
|
+
|
|
474
|
+
/**
|
|
475
|
+
* Generated bundle index. Do not edit.
|
|
476
|
+
*/
|
|
477
|
+
|
|
478
|
+
export { BaseHideShowDirective, BreakpointsService, ColumnComponent, ColumnsComponent, ColumnsGapComponent, DirectiveGrow, DirectiveHideDesktop, DirectiveHideMobile, DirectiveHideTablet, DirectiveShowDesktop, DirectiveShowMobile, DirectiveShowTablet, DirectiveShrinkOnMobile, DirectiveShrinkOnMobile50, DirectiveShrinkOnTablet, StaticColumnsModule };
|
|
479
|
+
//# sourceMappingURL=static-columns-browser.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"static-columns-browser.mjs","sources":["../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/breakpoints.service.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/column/base-hide-show.directive.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/column/column-grow.directive.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/column/column-hide-desktop.directive.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/column/column-hide-mobile.directive.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/column/column-hide-tablet.directive.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/column/column-show-desktop.directive.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/column/column-show-mobile.directive.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/column/column-show-tablet.directive.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/column/column.component.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/column/shrink-on-mobile75.directive.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/column/shrink-on-mobile50.directive.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/column/shrink-on-tablet.directive.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/column/index.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/columns-gap/columns-gap.component.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/columns-gap/columns-gap.component.html","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/columns-gap/index.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/columns.component.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/columns.component.html","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/columns.module.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/lib/index.ts","../../../tmp-libs-for-dist-prod/static-columns/projects/static-columns/src/static-columns-browser.ts"],"sourcesContent":["//#region imports\nimport {\n BreakpointObserver,\n BreakpointState,\n Breakpoints,\n} from '@angular/cdk/layout';\nimport { Injectable } from '@angular/core';\nimport { Subject } from 'rxjs';\nimport { _ } from 'tnp-core/browser-prod';\n//#endregion\n\nconst BRK = {\n mobile: '(max-width: 599.98px)',\n // tablet: obsvious\n desktop: '(min-width: 840.00px)',\n};\n\n@Injectable({ providedIn: 'root' })\nexport class BreakpointsService {\n private sub = new Subject<'mobile' | 'tablet' | 'desktop'>();\n\n public listenTo() {\n setTimeout(() => {\n this.sub.next(this.current);\n });\n return this.sub.asObservable();\n }\n\n private current: 'mobile' | 'tablet' | 'desktop';\n\n constructor(breakpointObserver: BreakpointObserver) {\n breakpointObserver.observe([BRK.mobile, BRK.desktop]).subscribe(state => {\n if (!_.isUndefined([BRK.mobile].find(f => state.breakpoints[f]))) {\n this.current = 'mobile';\n this.sub.next('mobile');\n } else if (\n !_.isUndefined([BRK.desktop].find(f => state.breakpoints[f]))\n ) {\n this.current = 'desktop';\n this.sub.next('desktop');\n } else {\n this.current = 'tablet';\n this.sub.next('tablet');\n }\n });\n\n setTimeout(() => {\n if (breakpointObserver.isMatched([BRK.mobile])) {\n this.current = 'mobile';\n this.sub.next('mobile');\n } else if (breakpointObserver.isMatched([BRK.desktop])) {\n this.current = 'desktop';\n this.sub.next('desktop');\n } else {\n this.current = 'tablet';\n this.sub.next('tablet');\n }\n });\n }\n}","//#region imports\nimport { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport {\n Component,\n Directive,\n ElementRef,\n OnInit,\n Renderer2,\n OnDestroy,\n} from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\n\nimport { BreakpointsService } from '../breakpoints.service';\n//#endregion\n\n@Directive({\n selector: '[baseHideShowDirective]',\n standalone: false,\n})\nexport abstract class BaseHideShowDirective implements OnDestroy, OnInit {\n $destroy = new Subject();\n\n constructor(\n public e: ElementRef,\n public renderer: Renderer2,\n public breakpoints: BreakpointsService,\n ) {}\n\n private originalDisaplay: string;\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(\n this.e.nativeElement,\n 'display',\n this.originalDisaplay,\n );\n }\n\n protected scale(scale: number = 1) {\n this.renderer.setStyle(\n this.e.nativeElement,\n 'transform',\n `scale(${scale})`,\n );\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 = (\n this.e.nativeElement as HTMLElement\n ).style.display;\n }\n // console.log(`state for actin: ${state}`)\n this.action(state);\n });\n }\n\n ngOnDestroy(): void {\n this.$destroy.next(void 0);\n this.$destroy.complete();\n }\n}","//#region imports\nimport { Component, Directive, ElementRef, Renderer2 } from '@angular/core';\n//#endregion\n\n@Directive({\n selector: '[grow]',\n standalone: false,\n})\nexport class DirectiveGrow {\n constructor(\n public e: ElementRef,\n public renderer: Renderer2,\n ) {\n setTimeout(() => {\n // e.nativeElement.style.flexGrow = 1;\n renderer.setStyle(e.nativeElement, 'flexGrow', '1');\n }, 0);\n\n // renderer.setElementStyle(e.nativeElement, 'flexGrow', '1');\n }\n}","//#region imports\nimport { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport {\n Component,\n Directive,\n ElementRef,\n OnInit,\n Renderer2,\n} from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\n\nimport { BreakpointsService } from '../breakpoints.service';\n\nimport { BaseHideShowDirective } from './base-hide-show.directive';\n//#endregion\n\n@Directive({\n selector: '[hideDesktop]',\n standalone: false,\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}","//#region imports\nimport { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport {\n Component,\n Directive,\n ElementRef,\n OnInit,\n Renderer2,\n} from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\n\nimport { BreakpointsService } from '../breakpoints.service';\n\nimport { BaseHideShowDirective } from './base-hide-show.directive';\n//#endregion\n\n@Directive({\n selector: '[hideMobile]',\n standalone: false,\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}","//#region imports\nimport { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport {\n Component,\n Directive,\n ElementRef,\n OnInit,\n Renderer2,\n} from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\n\nimport { BreakpointsService } from '../breakpoints.service';\n\nimport { BaseHideShowDirective } from './base-hide-show.directive';\n//#endregion\n\n@Directive({\n selector: '[hideTablet]',\n standalone: false,\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}","//#region imports\nimport { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport {\n Component,\n Directive,\n ElementRef,\n OnInit,\n Renderer2,\n} from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\n\nimport { BreakpointsService } from '../breakpoints.service';\n\nimport { BaseHideShowDirective } from './base-hide-show.directive';\n//#endregion\n\n@Directive({\n selector: '[showDesktop]',\n standalone: false,\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}","//#region imports\nimport { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport {\n Component,\n Directive,\n ElementRef,\n OnInit,\n Renderer2,\n} from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\n\nimport { BreakpointsService } from '../breakpoints.service';\n\nimport { BaseHideShowDirective } from './base-hide-show.directive';\n//#endregion\n\n@Directive({\n selector: '[showMobile]',\n standalone: false,\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}","//#region imports\nimport { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport {\n Component,\n Directive,\n ElementRef,\n OnInit,\n Renderer2,\n} from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\n\nimport { BreakpointsService } from '../breakpoints.service';\n\nimport { BaseHideShowDirective } from './base-hide-show.directive';\n//#endregion\n\n@Directive({\n selector: '[showTablet]',\n standalone: false,\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}","//#region imports\nimport { Component, OnInit, Input, HostBinding } from '@angular/core';\n//#endregion\n\n@Component({\n selector: 'column',\n template: '<ng-content></ng-content>',\n styleUrls: ['./column.component.scss'],\n standalone: false,\n})\nexport class ColumnComponent implements OnInit {\n @HostBinding('style.flex.basis.px')\n @HostBinding('style.minWidth.px')\n @Input()\n width: number;\n\n constructor() {\n // this.ccwidth = 90;\n }\n\n ngOnInit() {}\n}","//#region imports\nimport { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport {\n Component,\n Directive,\n ElementRef,\n Host,\n OnInit,\n Optional,\n Renderer2,\n} from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\n\nimport { BreakpointsService } from '../breakpoints.service';\n\nimport { BaseHideShowDirective } from './base-hide-show.directive';\nimport { DirectiveShrinkOnTablet } from './shrink-on-tablet.directive';\n//#endregion\n\n@Directive({\n selector: '[shrinkOnMobile]',\n standalone: false,\n})\nexport class DirectiveShrinkOnMobile extends BaseHideShowDirective {\n scaleFactor = 75;\n\n constructor(\n public e: ElementRef,\n public renderer: Renderer2,\n public breakpoints: BreakpointsService,\n // @Optional() @Host() public tablet75: DirectiveShrinkOnTablet\n ) {\n super(e, renderer, breakpoints);\n }\n\n action(state: 'mobile' | 'tablet' | 'desktop') {\n if (state === 'mobile') {\n this.scale(0.75);\n } else {\n // if (state === 'tablet' && this.tablet75) {\n\n // } else {\n this.scale();\n // }\n }\n }\n}","//#region imports\nimport { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport {\n Component,\n Directive,\n ElementRef,\n OnInit,\n Renderer2,\n} from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\n\nimport { BreakpointsService } from '../breakpoints.service';\n\nimport { BaseHideShowDirective } from './base-hide-show.directive';\nimport { DirectiveShrinkOnMobile } from './shrink-on-mobile75.directive';\n//#endregion\n\n@Directive({\n selector: '[shrinkOnMobile50]',\n standalone: false,\n})\nexport class DirectiveShrinkOnMobile50 extends DirectiveShrinkOnMobile {\n scaleFactor: number = 50;\n}","//#region imports\nimport { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';\nimport {\n Component,\n Directive,\n ElementRef,\n Host,\n OnInit,\n Optional,\n Renderer2,\n} from '@angular/core';\nimport { Subject, takeUntil } from 'rxjs';\n\nimport { BreakpointsService } from '../breakpoints.service';\n\nimport { BaseHideShowDirective } from './base-hide-show.directive';\n//#endregion\n\n// import { DirectiveShrinkOnMobile50 } from './shrink-on-mobile50.directive';\n// import { DirectiveShrinkOnMobile } from './shrink-on-mobile75.directive';\n\n@Directive({\n selector: '[shrinkOnTablet]',\n standalone: false,\n})\nexport class DirectiveShrinkOnTablet extends BaseHideShowDirective {\n constructor(\n public e: ElementRef,\n public renderer: Renderer2,\n public breakpoints: BreakpointsService,\n // @Optional() @Host() public mobile50: DirectiveShrinkOnMobile50,\n // @Optional() @Host() public mobile75: DirectiveShrinkOnMobile,\n ) {\n super(e, renderer, breakpoints);\n }\n\n action(state: 'mobile' | 'tablet' | 'desktop') {\n // if (state === 'tablet') {\n // this.scale(0.75)\n // } else {\n // if (state === 'mobile' && (this.mobile50 || this.mobile75)) {\n // } else {\n // this.scale()\n // }\n // }\n }\n}","//#region @browser\nexport * from './base-hide-show.directive';\n//#endregion\n\n//#region @browser\nexport * from './column-grow.directive';\n//#endregion\n\n//#region @browser\nexport * from './column-hide-desktop.directive';\n//#endregion\n\n//#region @browser\nexport * from './column-hide-mobile.directive';\n//#endregion\n\n//#region @browser\nexport * from './column-hide-tablet.directive';\n//#endregion\n\n//#region @browser\nexport * from './column-show-desktop.directive';\n//#endregion\n\n//#region @browser\nexport * from './column-show-mobile.directive';\n//#endregion\n\n//#region @browser\nexport * from './column-show-tablet.directive';\n//#endregion\n\n//#region @browser\nexport * from './column.component';\n//#endregion\n\n//#region @browser\nexport * from './shrink-on-mobile50.directive';\n//#endregion\n\n//#region @browser\nexport * from './shrink-on-mobile75.directive';\n//#endregion\n\n//#region @browser\nexport * from './shrink-on-tablet.directive';\n//#endregion","//#region imports\nimport {\n Component,\n EventEmitter,\n HostBinding,\n Input,\n OnInit,\n Output,\n OnDestroy,\n} from '@angular/core';\nimport { Subscription } from 'rxjs';\n//#endregion\n\n@Component({\n selector: 'columns-gap',\n templateUrl: './columns-gap.component.html',\n styleUrls: ['./columns-gap.component.scss'],\n standalone: false,\n})\nexport class ColumnsGapComponent implements OnInit, OnDestroy {\n @HostBinding('style.flex.basis.px')\n @HostBinding('style.minWidth.px')\n width: number = 20;\n\n handlers: Subscription[] = [];\n\n @Output() columnsGapDataChanged = new EventEmitter();\n\n @Input() columnsGapData: any = {};\n\n constructor() {}\n\n ngOnInit() {}\n\n ngOnDestroy(): void {\n this.handlers.forEach(h => h.unsubscribe());\n }\n}","<column [width]=\"width\"></column>\n","//#region @browser\nexport * from './columns-gap.component';\n//#endregion","//#region imports\nimport {\n Component,\n OnInit,\n ViewEncapsulation,\n ViewChildren,\n QueryList,\n} from '@angular/core';\n\nimport { ColumnComponent } from './column';\n//#endregion\n\n// import { Log, Level } from 'ng2-logger/index';\n// const log = Log.create('test');\n// log.i('asdas')\n\n@Component({\n selector: 'columns-container',\n templateUrl: './columns.component.html',\n styleUrls: ['./columns.component.scss'],\n standalone: false,\n})\nexport class ColumnsComponent {\n @ViewChildren(ColumnComponent) childrens: QueryList<ColumnComponent>;\n}","<ng-content></ng-content>\n","//#region imports\nimport { LayoutModule } from '@angular/cdk/layout';\nimport { NgModule } from '@angular/core';\n\nimport { BreakpointsService } from './breakpoints.service';\nimport {\n ColumnComponent,\n DirectiveGrow,\n DirectiveHideDesktop,\n DirectiveHideTablet,\n DirectiveHideMobile,\n DirectiveShowDesktop,\n DirectiveShowMobile,\n DirectiveShowTablet,\n DirectiveShrinkOnMobile50,\n DirectiveShrinkOnMobile,\n DirectiveShrinkOnTablet,\n} from './column';\nimport { ColumnsGapComponent } from './columns-gap/columns-gap.component';\nimport { ColumnsComponent } from './columns.component';\n//#endregion\n\nconst components = [\n ColumnsComponent,\n ColumnComponent,\n DirectiveGrow,\n DirectiveHideMobile,\n DirectiveHideTablet,\n DirectiveHideDesktop,\n DirectiveShowTablet,\n DirectiveShowMobile,\n DirectiveShowDesktop,\n ColumnsGapComponent,\n DirectiveShrinkOnMobile50,\n DirectiveShrinkOnMobile,\n DirectiveShrinkOnTablet,\n];\n\n@NgModule({\n imports: [LayoutModule],\n exports: [LayoutModule, ...components],\n declarations: [...components],\n providers: [BreakpointsService],\n})\nexport class StaticColumnsModule {}","export * from './column';\nexport * from './columns-gap';\n\n//#region @browser\nexport * from './breakpoints.service';\nexport * from './columns.component';\n//#endregion\n\n//#region @browser\nexport * from './columns.module';\n//#endregion\n\n/* */\n/* */\n/* */\n/* */\n ","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1.BreakpointsService","i1.ColumnComponent"],"mappings":"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"}
|