static-columns 16.0.3 → 16.0.5

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 (97) hide show
  1. package/assets/shared/shared_folder_info.txt +1 -1
  2. package/browser/esm2022/lib/breakpoints.service.mjs +3 -3
  3. package/browser/esm2022/lib/column/base-hide-show.directive.mjs +7 -4
  4. package/browser/esm2022/lib/column/column-grow.directive.mjs +3 -3
  5. package/browser/esm2022/lib/column/column-hide-desktop.directive.mjs +3 -3
  6. package/browser/esm2022/lib/column/column-hide-mobile.directive.mjs +3 -3
  7. package/browser/esm2022/lib/column/column-hide-tablet.directive.mjs +3 -3
  8. package/browser/esm2022/lib/column/column-show-desktop.directive.mjs +3 -3
  9. package/browser/esm2022/lib/column/column-show-mobile.directive.mjs +3 -3
  10. package/browser/esm2022/lib/column/column-show-tablet.directive.mjs +3 -3
  11. package/browser/esm2022/lib/column/column.component.mjs +3 -3
  12. package/browser/esm2022/lib/column/index.mjs +7 -3
  13. package/browser/esm2022/lib/column/shrink-on-mobile50.directive.mjs +21 -0
  14. package/browser/esm2022/lib/column/shrink-on-mobile75.directive.mjs +34 -0
  15. package/browser/esm2022/lib/column/shrink-on-tablet.directive.mjs +27 -0
  16. package/browser/esm2022/lib/columns-gap/columns-gap.component.mjs +3 -3
  17. package/browser/esm2022/lib/columns.component.mjs +3 -3
  18. package/browser/esm2022/lib/columns.module.mjs +20 -8
  19. package/browser/fesm2022/static-columns.mjs +162 -84
  20. package/browser/fesm2022/static-columns.mjs.map +1 -1
  21. package/browser/lib/column/base-hide-show.directive.d.ts +1 -0
  22. package/browser/lib/column/index.d.ts +7 -3
  23. package/browser/lib/column/shrink-on-mobile50.directive.d.ts +8 -0
  24. package/browser/lib/column/shrink-on-mobile75.directive.d.ts +15 -0
  25. package/browser/lib/column/shrink-on-tablet.directive.d.ts +14 -0
  26. package/browser/lib/columns.module.d.ts +5 -2
  27. package/client/esm2022/lib/breakpoints.service.mjs +3 -3
  28. package/client/esm2022/lib/column/base-hide-show.directive.mjs +7 -4
  29. package/client/esm2022/lib/column/column-grow.directive.mjs +3 -3
  30. package/client/esm2022/lib/column/column-hide-desktop.directive.mjs +3 -3
  31. package/client/esm2022/lib/column/column-hide-mobile.directive.mjs +3 -3
  32. package/client/esm2022/lib/column/column-hide-tablet.directive.mjs +3 -3
  33. package/client/esm2022/lib/column/column-show-desktop.directive.mjs +3 -3
  34. package/client/esm2022/lib/column/column-show-mobile.directive.mjs +3 -3
  35. package/client/esm2022/lib/column/column-show-tablet.directive.mjs +3 -3
  36. package/client/esm2022/lib/column/column.component.mjs +3 -3
  37. package/client/esm2022/lib/column/index.mjs +7 -3
  38. package/client/esm2022/lib/column/shrink-on-mobile50.directive.mjs +21 -0
  39. package/client/esm2022/lib/column/shrink-on-mobile75.directive.mjs +34 -0
  40. package/client/esm2022/lib/column/shrink-on-tablet.directive.mjs +27 -0
  41. package/client/esm2022/lib/columns-gap/columns-gap.component.mjs +3 -3
  42. package/client/esm2022/lib/columns.component.mjs +3 -3
  43. package/client/esm2022/lib/columns.module.mjs +20 -8
  44. package/client/fesm2022/static-columns.mjs +162 -84
  45. package/client/fesm2022/static-columns.mjs.map +1 -1
  46. package/client/lib/column/base-hide-show.directive.d.ts +1 -0
  47. package/client/lib/column/index.d.ts +7 -3
  48. package/client/lib/column/shrink-on-mobile50.directive.d.ts +8 -0
  49. package/client/lib/column/shrink-on-mobile75.directive.d.ts +15 -0
  50. package/client/lib/column/shrink-on-tablet.directive.d.ts +14 -0
  51. package/client/lib/columns.module.d.ts +5 -2
  52. package/client/package.json +80 -30
  53. package/lib/column/base-hide-show.directive.d.ts +1 -0
  54. package/lib/column/base-hide-show.directive.js +4 -0
  55. package/lib/column/base-hide-show.directive.js.map +1 -1
  56. package/lib/column/index.d.ts +7 -3
  57. package/lib/column/index.js +3 -3
  58. package/lib/column/shrink-on-mobile50.directive.d.ts +4 -0
  59. package/lib/column/shrink-on-mobile50.directive.js +21 -0
  60. package/lib/column/shrink-on-mobile50.directive.js.map +1 -0
  61. package/lib/column/shrink-on-mobile75.directive.d.ts +11 -0
  62. package/lib/column/shrink-on-mobile75.directive.js +39 -0
  63. package/lib/column/shrink-on-mobile75.directive.js.map +1 -0
  64. package/lib/column/shrink-on-tablet.directive.d.ts +10 -0
  65. package/lib/column/shrink-on-tablet.directive.js +39 -0
  66. package/lib/column/shrink-on-tablet.directive.js.map +1 -0
  67. package/lib/columns-gap/columns-gap.component.js +3 -3
  68. package/lib/columns-gap/index.js +3 -3
  69. package/lib/columns.component.js +3 -3
  70. package/lib/columns.module.js +3 -3
  71. package/package.json +47 -2
  72. package/tmp-environment.json +39 -34
  73. package/websql/esm2022/lib/breakpoints.service.mjs +3 -3
  74. package/websql/esm2022/lib/column/base-hide-show.directive.mjs +7 -4
  75. package/websql/esm2022/lib/column/column-grow.directive.mjs +3 -3
  76. package/websql/esm2022/lib/column/column-hide-desktop.directive.mjs +3 -3
  77. package/websql/esm2022/lib/column/column-hide-mobile.directive.mjs +3 -3
  78. package/websql/esm2022/lib/column/column-hide-tablet.directive.mjs +3 -3
  79. package/websql/esm2022/lib/column/column-show-desktop.directive.mjs +3 -3
  80. package/websql/esm2022/lib/column/column-show-mobile.directive.mjs +3 -3
  81. package/websql/esm2022/lib/column/column-show-tablet.directive.mjs +3 -3
  82. package/websql/esm2022/lib/column/column.component.mjs +3 -3
  83. package/websql/esm2022/lib/column/index.mjs +7 -3
  84. package/websql/esm2022/lib/column/shrink-on-mobile50.directive.mjs +21 -0
  85. package/websql/esm2022/lib/column/shrink-on-mobile75.directive.mjs +34 -0
  86. package/websql/esm2022/lib/column/shrink-on-tablet.directive.mjs +27 -0
  87. package/websql/esm2022/lib/columns-gap/columns-gap.component.mjs +3 -3
  88. package/websql/esm2022/lib/columns.component.mjs +3 -3
  89. package/websql/esm2022/lib/columns.module.mjs +20 -8
  90. package/websql/fesm2022/static-columns.mjs +162 -84
  91. package/websql/fesm2022/static-columns.mjs.map +1 -1
  92. package/websql/lib/column/base-hide-show.directive.d.ts +1 -0
  93. package/websql/lib/column/index.d.ts +7 -3
  94. package/websql/lib/column/shrink-on-mobile50.directive.d.ts +8 -0
  95. package/websql/lib/column/shrink-on-mobile75.directive.d.ts +15 -0
  96. package/websql/lib/column/shrink-on-tablet.directive.d.ts +14 -0
  97. package/websql/lib/columns.module.d.ts +5 -2
@@ -10,9 +10,12 @@ import * as i7 from "./column/column-show-tablet.directive";
10
10
  import * as i8 from "./column/column-show-mobile.directive";
11
11
  import * as i9 from "./column/column-show-desktop.directive";
12
12
  import * as i10 from "./columns-gap/columns-gap.component";
13
- import * as i11 from "@angular/cdk/layout";
13
+ import * as i11 from "./column/shrink-on-mobile50.directive";
14
+ import * as i12 from "./column/shrink-on-mobile75.directive";
15
+ import * as i13 from "./column/shrink-on-tablet.directive";
16
+ import * as i14 from "@angular/cdk/layout";
14
17
  export declare class StaticColumnsModule {
15
18
  static ɵfac: i0.ɵɵFactoryDeclaration<StaticColumnsModule, never>;
16
- static ɵmod: i0.ɵɵNgModuleDeclaration<StaticColumnsModule, [typeof i1.ColumnsComponent, typeof i2.ColumnComponent, typeof i3.DirectiveGrow, typeof i4.DirectiveHideMobile, typeof i5.DirectiveHideTablet, typeof i6.DirectiveHideDesktop, typeof i7.DirectiveShowTablet, typeof i8.DirectiveShowMobile, typeof i9.DirectiveShowDesktop, typeof i10.ColumnsGapComponent], [typeof i11.LayoutModule], [typeof i11.LayoutModule, typeof i1.ColumnsComponent, typeof i2.ColumnComponent, typeof i3.DirectiveGrow, typeof i4.DirectiveHideMobile, typeof i5.DirectiveHideTablet, typeof i6.DirectiveHideDesktop, typeof i7.DirectiveShowTablet, typeof i8.DirectiveShowMobile, typeof i9.DirectiveShowDesktop, typeof i10.ColumnsGapComponent]>;
19
+ static ɵmod: i0.ɵɵNgModuleDeclaration<StaticColumnsModule, [typeof i1.ColumnsComponent, typeof i2.ColumnComponent, typeof i3.DirectiveGrow, typeof i4.DirectiveHideMobile, typeof i5.DirectiveHideTablet, typeof i6.DirectiveHideDesktop, typeof i7.DirectiveShowTablet, typeof i8.DirectiveShowMobile, typeof i9.DirectiveShowDesktop, typeof i10.ColumnsGapComponent, typeof i11.DirectiveShrinkOnMobile50, typeof i12.DirectiveShrinkOnMobile, typeof i13.DirectiveShrinkOnTablet], [typeof i14.LayoutModule], [typeof i14.LayoutModule, typeof i1.ColumnsComponent, typeof i2.ColumnComponent, typeof i3.DirectiveGrow, typeof i4.DirectiveHideMobile, typeof i5.DirectiveHideTablet, typeof i6.DirectiveHideDesktop, typeof i7.DirectiveShowTablet, typeof i8.DirectiveShowMobile, typeof i9.DirectiveShowDesktop, typeof i10.ColumnsGapComponent, typeof i11.DirectiveShrinkOnMobile50, typeof i12.DirectiveShrinkOnMobile, typeof i13.DirectiveShrinkOnTablet]>;
17
20
  static ɵinj: i0.ɵɵInjectorDeclaration<StaticColumnsModule>;
18
21
  }
@@ -1,6 +1,51 @@
1
1
  {
2
+ "tnp": {
3
+ "resources": [
4
+ "README.md",
5
+ "screen.png"
6
+ ],
7
+ "overrided": {
8
+ "ignoreDepsPattern": [],
9
+ "includeAsDev": "*",
10
+ "includeOnly": [],
11
+ "dependencies": {},
12
+ "linkedFolders": [],
13
+ "npmFixes": []
14
+ },
15
+ "linkedProjects": [],
16
+ "smartContainerBuildTarget": "",
17
+ "linkedRepos": [],
18
+ "libReleaseOptions": {
19
+ "nodts": false,
20
+ "obscure": false,
21
+ "ugly": false,
22
+ "includeNodeModules": false
23
+ },
24
+ "smartContainerTarget": "",
25
+ "type": "isomorphic-lib",
26
+ "isCoreProject": false,
27
+ "version": "v4",
28
+ "isGenerated": false,
29
+ "useFramework": false,
30
+ "license": "MIT",
31
+ "private": false,
32
+ "description": "Static columns with flexbox for Agnular2",
33
+ "author": "Dariusz Filipiak",
34
+ "homepage": "https://github.com/darekf77/static-columns#readme",
35
+ "keywords": [
36
+ "angular2",
37
+ "static",
38
+ "width",
39
+ "column",
40
+ "static",
41
+ "columns",
42
+ "flexbox",
43
+ "columns"
44
+ ],
45
+ "workerPlugins": {}
46
+ },
2
47
  "name": "static-columns",
3
- "version": "16.0.3",
48
+ "version": "16.0.5",
4
49
  "description": "Static columns with flexbox for Agnular2",
5
50
  "repository": {
6
51
  "type": "git",
@@ -24,11 +69,11 @@
24
69
  "homepage": "https://github.com/darekf77/static-columns#readme",
25
70
  "dependencies": {},
26
71
  "private": false,
27
- "lastBuildTagHash": "aaa4d5941a89fef9c8c77568e9039e97304ef698",
72
+ "lastBuildTagHash": "3b5ffab0382206dec1407f76a6e7083468ba0f46",
28
73
  "devDependencies": {
29
74
  "@angular-devkit/build-angular": "~16.0.5",
30
75
  "@angular-devkit/core": "~16.0.5",
31
- "@angular-material-extensions/fab-menu": "~6.1.0",
76
+ "@angular-material-extensions/password-strength": "~12.1.0",
32
77
  "@angular/animations": "~16.0.0",
33
78
  "@angular/cdk": "~16.0.3",
34
79
  "@angular/cli": "~16.0.5",
@@ -65,6 +110,7 @@
65
110
  "@ngx-formly/material": "6.1.7",
66
111
  "@ngx-translate/core": "15.0.0",
67
112
  "@ngx-translate/http-loader": "8.0.0",
113
+ "@sweetalert2/ngx-sweetalert2": "12.1.0",
68
114
  "@testdeck/jasmine": "0.3.3",
69
115
  "@testdeck/jest": "0.3.3",
70
116
  "@testdeck/mocha": "0.3.3",
@@ -99,15 +145,14 @@
99
145
  "@types/watch": "1.0.0",
100
146
  "accepts": "1.3.4",
101
147
  "angular-material-css-vars": "5.0.2",
102
- "any-project-cli": "~16.0.30",
148
+ "any-project-cli": "~16.0.31",
103
149
  "axios": "1.3.5",
104
- "background-worker-process": "~16.0.47",
150
+ "background-worker-process": "~16.0.48",
105
151
  "base32": "0.0.7",
106
152
  "bcryptjs": "2.4.3",
107
153
  "better-sqlite3": "7.6.2",
108
154
  "body-parser": "1.18.2",
109
155
  "bootstrap": "4.6.2",
110
- "bs4-breakpoint": "13.0.33",
111
156
  "buffer-shims": "1.0.0",
112
157
  "callsite-record": "4.1.3",
113
158
  "chai": "4.2.0",
@@ -143,12 +188,12 @@
143
188
  "file-loader": "1.1.5",
144
189
  "file-saver": "2.0.5",
145
190
  "firedev": "^16",
146
- "firedev-crud": "~16.0.52",
147
- "firedev-crud-deamon": "~16.0.42",
148
- "firedev-ports": "~16.0.47",
149
- "firedev-storage": "~16.0.39",
150
- "firedev-typeorm": "~16.0.35",
151
- "firedev-ui": "~16.0.4",
191
+ "firedev-crud": "~16.0.53",
192
+ "firedev-crud-deamon": "~16.0.43",
193
+ "firedev-ports": "~16.0.48",
194
+ "firedev-storage": "~16.0.40",
195
+ "firedev-typeorm": "~16.0.37",
196
+ "firedev-ui": "~16.0.6",
152
197
  "fkill": "6.1.0",
153
198
  "font-awesome": "4.7.0",
154
199
  "form-data": "4.0.0",
@@ -162,17 +207,18 @@
162
207
  "http-proxy-middleware": "0.19.1",
163
208
  "http-server": "0.11.1",
164
209
  "immutable": "4.3.0",
165
- "incremental-compiler": "~16.0.29",
210
+ "incremental-compiler": "~16.0.30",
166
211
  "inquirer": "7.3.3",
167
212
  "inquirer-autocomplete-prompt": "1.3.0",
168
213
  "is-elevated": "3.0.0",
169
- "isomorphic-region-loader": "~16.0.40",
214
+ "isomorphic-region-loader": "~16.0.41",
170
215
  "istanbul-instrumenter-loader": "2.0.0",
171
216
  "jasmine-core": "4.6.0",
217
+ "jimp": "0.22.8",
172
218
  "jscodeshift": "0.6.3",
173
219
  "json-stringify-safe": "5.0.1",
174
- "json10": "~16.0.47",
175
- "json10-writer": "~16.0.43",
220
+ "json10": "~16.0.48",
221
+ "json10-writer": "~16.0.44",
176
222
  "json5": "2.2.1",
177
223
  "json5-writer": "0.2.0",
178
224
  "jszip": "3.10.1",
@@ -186,28 +232,31 @@
186
232
  "localforage": "1.10.0",
187
233
  "lockfile": "1.0.4",
188
234
  "lodash": "4.17.20",
189
- "lodash-walk-object": "~16.0.47",
235
+ "lodash-walk-object": "~16.0.48",
190
236
  "lowdb": "1.0.0",
191
- "magic-renamer": "~16.0.44",
237
+ "magic-renamer": "~16.0.45",
192
238
  "material-design-icons": "3.0.1",
193
239
  "method-override": "2.3.10",
194
240
  "minimist": "1.2.0",
195
241
  "mkdirp": "0.5.1",
196
242
  "mocha": "5.2.0",
197
243
  "moment": "2.29.3",
198
- "morphi": "~16.0.4",
244
+ "morphi": "~16.0.5",
245
+ "ng-for-track-by-property": "16.0.1",
199
246
  "ng-in-viewport": "15.0.2",
247
+ "ng-lock": "16.0.1",
200
248
  "ng-packagr": "16.0.1",
201
249
  "ng-talkback": "~13.1.19",
202
- "ng2-logger": "~16.0.3",
203
- "ng2-rest": "~16.0.11",
250
+ "ng2-logger": "~16.0.4",
251
+ "ng2-rest": "~16.0.12",
204
252
  "ngx-ace-wrapper": "14.0.0",
205
253
  "ngx-editor": "15.3.0",
206
254
  "ngx-highlightjs": "9.0.0",
207
255
  "ngx-moment": "6.0.2",
208
- "ngx-pipes": "3.0.0",
256
+ "ngx-pipes": "3.2.2",
209
257
  "ngx-progressbar": "11.0.0",
210
258
  "ngx-scrollbar": "12.0.0",
259
+ "ngx-scrolltop": "6.0.0",
211
260
  "ngx-store": "3.1.1",
212
261
  "ngx-typed-js": "2.1.1",
213
262
  "node-cli-tester": "~13.1.19",
@@ -241,18 +290,19 @@
241
290
  "socket.io": "2.4.1",
242
291
  "sort-package-json": "1.11.0",
243
292
  "sql.js": "1.8.0",
244
- "static-columns": "~16.0.2",
293
+ "static-columns": "~16.0.4",
245
294
  "string-similarity": "4.0.2",
246
295
  "sudo-block": "3.0.0",
296
+ "sweetalert2": "11.7.12",
247
297
  "systeminformation": "3.45.7",
248
298
  "task.js": "0.1.5",
249
299
  "threads": "1.7.0",
250
- "tnp-cli": "~16.0.4",
251
- "tnp-config": "~16.0.4",
252
- "tnp-core": "~16.0.8",
253
- "tnp-db": "~16.0.25",
254
- "tnp-helpers": "~16.0.4",
255
- "tnp-models": "~16.0.31",
300
+ "tnp-cli": "~16.0.5",
301
+ "tnp-config": "~16.0.8",
302
+ "tnp-core": "~16.0.9",
303
+ "tnp-db": "~16.0.26",
304
+ "tnp-helpers": "~16.0.5",
305
+ "tnp-models": "~16.0.32",
256
306
  "ts-debug": "1.3.0",
257
307
  "ts-loader": "2.3.1",
258
308
  "ts-node": "10.9.1",
@@ -260,7 +310,7 @@
260
310
  "turndown": "7.1.2",
261
311
  "typeorm": "~0.3.10",
262
312
  "typescript": "~5.0.2",
263
- "typescript-class-helpers": "~16.0.15",
313
+ "typescript-class-helpers": "~16.0.16",
264
314
  "typescript-formatter": "~7.2.2",
265
315
  "underscore": "1.9.1",
266
316
  "uuid": "8.3.2",
@@ -11,6 +11,7 @@ export declare abstract class BaseHideShowDirective {
11
11
  abstract action(state: "mobile" | "tablet" | "desktop"): any;
12
12
  protected hideElement(): void;
13
13
  protected showElement(): void;
14
+ protected scale(scale?: number): void;
14
15
  ngOnInit(): void;
15
16
  ngOnDestroy(): void;
16
17
  }
@@ -18,6 +18,10 @@ var BaseHideShowDirective = exports.BaseHideShowDirective = /** @class */ (funct
18
18
  BaseHideShowDirective.prototype.showElement = function () {
19
19
  this.renderer.setStyle(this.e.nativeElement, 'display', this.originalDisaplay);
20
20
  };
21
+ BaseHideShowDirective.prototype.scale = function (scale) {
22
+ if (scale === void 0) { scale = 1; }
23
+ this.renderer.setStyle(this.e.nativeElement, 'transform', "scale(".concat(scale, ")"));
24
+ };
21
25
  BaseHideShowDirective.prototype.ngOnInit = function () {
22
26
  var _this = this;
23
27
  //Called after ngAfterContentInit when the component's view has been initialized. Applies to components only.
@@ -1 +1 @@
1
- {"version":3,"file":"base-hide-show.directive.js","sourceRoot":"","sources":["C:/Users/darek/projects/npm/firedev-io/static-columns/tmp-bundle-release/bundle/project/static-columns/src/lib/column/base-hide-show.directive.ts"],"names":[],"mappings":";;;;AAGA,sCAAoF;AACpF,6BAA0C;AAC1C,8DAA4D;AAK5D;IAEE,+BACS,CAAa,EACb,QAAmB,EACnB,WAA+B;QAF/B,MAAC,GAAD,CAAC,CAAY;QACb,aAAQ,GAAR,QAAQ,CAAW;QACnB,gBAAW,GAAX,WAAW,CAAoB;QAJxC,aAAQ,GAAG,IAAI,cAAO,EAAE,CAAC;IAKrB,CAAC;IAOK,2CAAW,GAArB;QACE,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,aAAa,EAAE,SAAS,EAAE,MAAM,CAAC,CAAA;IACjE,CAAC;IAES,2CAAW,GAArB;QACE,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,aAAa,EAAE,SAAS,EAAE,IAAI,CAAC,gBAAgB,CAAC,CAAA;IAChF,CAAC;IAED,wCAAQ,GAAR;QAAA,iBAaC;QAZC,6GAA6G;QAC7G,8CAA8C;QAC9C,IAAI,CAAC,WAAW;aACb,QAAQ,EAAE;aACV,IAAI,CAAC,IAAA,gBAAS,EAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;aAC9B,SAAS,CAAC,UAAC,KAAK;YACf,IAAI,OAAO,KAAI,CAAC,gBAAgB,KAAK,WAAW,EAAE;gBAChD,KAAI,CAAC,gBAAgB,GAAI,KAAI,CAAC,CAAC,CAAC,aAA6B,CAAC,KAAK,CAAC,OAAO,CAAC;aAC7E;YACD,2CAA2C;YAC3C,KAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QACrB,CAAC,CAAC,CAAA;IACN,CAAC;IAED,2CAAW,GAAX;QACE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;QAC3B,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAA;IAC1B,CAAC;IAvCmB,qBAAqB;QAH1C,IAAA,gBAAS,EAAC;YACT,QAAQ,EAAE,yBAAyB;SACpC,CAAC;iDAIY,iBAAU;YACH,gBAAS;YACN,wCAAkB;OALpB,qBAAqB,CA0C1C;IAAD,4BAAC;CAAA,AA7CD,IA6CC"}
1
+ {"version":3,"file":"base-hide-show.directive.js","sourceRoot":"","sources":["C:/Users/darek/projects/npm/firedev-io/static-columns/tmp-bundle-release/bundle/project/static-columns/src/lib/column/base-hide-show.directive.ts"],"names":[],"mappings":";;;;AAGA,sCAAoF;AACpF,6BAA0C;AAC1C,8DAA4D;AAK5D;IAEE,+BACS,CAAa,EACb,QAAmB,EACnB,WAA+B;QAF/B,MAAC,GAAD,CAAC,CAAY;QACb,aAAQ,GAAR,QAAQ,CAAW;QACnB,gBAAW,GAAX,WAAW,CAAoB;QAJxC,aAAQ,GAAG,IAAI,cAAO,EAAE,CAAC;IAKrB,CAAC;IAOK,2CAAW,GAArB;QACE,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,aAAa,EAAE,SAAS,EAAE,MAAM,CAAC,CAAA;IACjE,CAAC;IAES,2CAAW,GAArB;QACE,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,aAAa,EAAE,SAAS,EAAE,IAAI,CAAC,gBAAgB,CAAC,CAAA;IAChF,CAAC;IAES,qCAAK,GAAf,UAAgB,KAAiB;QAAjB,sBAAA,EAAA,SAAiB;QAC/B,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,aAAa,EAAE,WAAW,EAAE,gBAAS,KAAK,MAAG,CAAC,CAAA;IAC9E,CAAC;IAED,wCAAQ,GAAR;QAAA,iBAaC;QAZC,6GAA6G;QAC7G,8CAA8C;QAC9C,IAAI,CAAC,WAAW;aACb,QAAQ,EAAE;aACV,IAAI,CAAC,IAAA,gBAAS,EAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;aAC9B,SAAS,CAAC,UAAC,KAAK;YACf,IAAI,OAAO,KAAI,CAAC,gBAAgB,KAAK,WAAW,EAAE;gBAChD,KAAI,CAAC,gBAAgB,GAAI,KAAI,CAAC,CAAC,CAAC,aAA6B,CAAC,KAAK,CAAC,OAAO,CAAC;aAC7E;YACD,2CAA2C;YAC3C,KAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QACrB,CAAC,CAAC,CAAA;IACN,CAAC;IAED,2CAAW,GAAX;QACE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;QAC3B,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAA;IAC1B,CAAC;IA3CmB,qBAAqB;QAH1C,IAAA,gBAAS,EAAC;YACT,QAAQ,EAAE,yBAAyB;SACpC,CAAC;iDAIY,iBAAU;YACH,gBAAS;YACN,wCAAkB;OALpB,qBAAqB,CA8C1C;IAAD,4BAAC;CAAA,AAjDD,IAiDC"}
@@ -1,8 +1,12 @@
1
+ export * from './base-hide-show.directive';
1
2
  export * from './column-grow.directive';
3
+ export * from './column-hide-desktop.directive';
2
4
  export * from './column-hide-mobile.directive';
3
5
  export * from './column-hide-tablet.directive';
4
- export * from './column-hide-desktop.directive';
6
+ export * from './column-show-desktop.directive';
5
7
  export * from './column-show-mobile.directive';
6
8
  export * from './column-show-tablet.directive';
7
- export * from './column-show-desktop.directive';
8
- export * from './column.component';
9
+ export * from './column.component';
10
+ export * from './shrink-on-mobile50.directive';
11
+ export * from './shrink-on-mobile75.directive';
12
+ export * from './shrink-on-tablet.directive';
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1686391041416 = void 0;
4
- function dummy1686391041416() { }
5
- exports.dummy1686391041416 = dummy1686391041416;
3
+ exports.dummy1686575320366 = void 0;
4
+ function dummy1686575320366() { }
5
+ exports.dummy1686575320366 = dummy1686575320366;
6
6
  //# sourceMappingURL=index.js.map
@@ -0,0 +1,4 @@
1
+ import { DirectiveShrinkOnMobile } from './shrink-on-mobile75.directive';
2
+ export declare class DirectiveShrinkOnMobile50 extends DirectiveShrinkOnMobile {
3
+ scaleFactor: number;
4
+ }
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DirectiveShrinkOnMobile50 = void 0;
4
+ var tslib_1 = require("tslib");
5
+ var core_1 = require("@angular/core");
6
+ var shrink_on_mobile75_directive_1 = require("./shrink-on-mobile75.directive");
7
+ var DirectiveShrinkOnMobile50 = exports.DirectiveShrinkOnMobile50 = /** @class */ (function (_super) {
8
+ tslib_1.__extends(DirectiveShrinkOnMobile50, _super);
9
+ function DirectiveShrinkOnMobile50() {
10
+ var _this = _super !== null && _super.apply(this, arguments) || this;
11
+ _this.scaleFactor = 50;
12
+ return _this;
13
+ }
14
+ DirectiveShrinkOnMobile50 = tslib_1.__decorate([
15
+ (0, core_1.Directive)({
16
+ selector: '[shrinkOnMobile50]'
17
+ })
18
+ ], DirectiveShrinkOnMobile50);
19
+ return DirectiveShrinkOnMobile50;
20
+ }(shrink_on_mobile75_directive_1.DirectiveShrinkOnMobile));
21
+ //# sourceMappingURL=shrink-on-mobile50.directive.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"shrink-on-mobile50.directive.js","sourceRoot":"","sources":["C:/Users/darek/projects/npm/firedev-io/static-columns/tmp-bundle-release/bundle/project/static-columns/src/lib/column/shrink-on-mobile50.directive.ts"],"names":[],"mappings":";;;;AACA,sCAAoF;AAIpF,+EAAyE;AAKzE;IAA+C,qDAAuB;IAAtE;QAAA,qEAIC;QAFC,iBAAW,GAAW,EAAE,CAAC;;IAE3B,CAAC;IAJY,yBAAyB;QAHrC,IAAA,gBAAS,EAAC;YACT,QAAQ,EAAE,oBAAoB;SAC/B,CAAC;OACW,yBAAyB,CAIrC;IAAD,gCAAC;CAAA,AAJD,CAA+C,sDAAuB,GAIrE"}
@@ -0,0 +1,11 @@
1
+ import { ElementRef, Renderer2 } from '@angular/core';
2
+ import { BreakpointsService } from '../breakpoints.service';
3
+ import { BaseHideShowDirective } from './base-hide-show.directive';
4
+ export declare class DirectiveShrinkOnMobile extends BaseHideShowDirective {
5
+ e: ElementRef;
6
+ renderer: Renderer2;
7
+ breakpoints: BreakpointsService;
8
+ scaleFactor: number;
9
+ constructor(e: ElementRef, renderer: Renderer2, breakpoints: BreakpointsService);
10
+ action(state: 'mobile' | 'tablet' | 'desktop'): void;
11
+ }
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DirectiveShrinkOnMobile = void 0;
4
+ var tslib_1 = require("tslib");
5
+ var core_1 = require("@angular/core");
6
+ var breakpoints_service_1 = require("../breakpoints.service");
7
+ var base_hide_show_directive_1 = require("./base-hide-show.directive");
8
+ var DirectiveShrinkOnMobile = exports.DirectiveShrinkOnMobile = /** @class */ (function (_super) {
9
+ tslib_1.__extends(DirectiveShrinkOnMobile, _super);
10
+ function DirectiveShrinkOnMobile(e, renderer, breakpoints) {
11
+ var _this = _super.call(this, e, renderer, breakpoints) || this;
12
+ _this.e = e;
13
+ _this.renderer = renderer;
14
+ _this.breakpoints = breakpoints;
15
+ _this.scaleFactor = 75;
16
+ return _this;
17
+ }
18
+ DirectiveShrinkOnMobile.prototype.action = function (state) {
19
+ if (state === 'mobile') {
20
+ this.scale(0.75);
21
+ }
22
+ else {
23
+ // if (state === 'tablet' && this.tablet75) {
24
+ // } else {
25
+ this.scale();
26
+ // }
27
+ }
28
+ };
29
+ DirectiveShrinkOnMobile = tslib_1.__decorate([
30
+ (0, core_1.Directive)({
31
+ selector: '[shrinkOnMobile]'
32
+ }),
33
+ tslib_1.__metadata("design:paramtypes", [core_1.ElementRef,
34
+ core_1.Renderer2,
35
+ breakpoints_service_1.BreakpointsService])
36
+ ], DirectiveShrinkOnMobile);
37
+ return DirectiveShrinkOnMobile;
38
+ }(base_hide_show_directive_1.BaseHideShowDirective));
39
+ //# sourceMappingURL=shrink-on-mobile75.directive.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"shrink-on-mobile75.directive.js","sourceRoot":"","sources":["C:/Users/darek/projects/npm/firedev-io/static-columns/tmp-bundle-release/bundle/project/static-columns/src/lib/column/shrink-on-mobile75.directive.ts"],"names":[],"mappings":";;;;AACA,sCAAoG;AAEpG,8DAA4D;AAC5D,uEAAmE;AAMnE;IAA6C,mDAAqB;IAEhE,iCACS,CAAa,EACb,QAAmB,EACnB,WAA+B;QAHxC,YAME,kBAAM,CAAC,EAAE,QAAQ,EAAE,WAAW,CAAC,SAChC;QANQ,OAAC,GAAD,CAAC,CAAY;QACb,cAAQ,GAAR,QAAQ,CAAW;QACnB,iBAAW,GAAX,WAAW,CAAoB;QAJxC,iBAAW,GAAG,EAAE,CAAC;;IAQjB,CAAC;IAED,wCAAM,GAAN,UAAO,KAAsC;QAC3C,IAAI,KAAK,KAAK,QAAQ,EAAE;YACtB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;SACjB;aAAM;YACL,6CAA6C;YAE7C,WAAW;YACX,IAAI,CAAC,KAAK,EAAE,CAAA;YACZ,IAAI;SACL;IACH,CAAC;IArBU,uBAAuB;QAHnC,IAAA,gBAAS,EAAC;YACT,QAAQ,EAAE,kBAAkB;SAC7B,CAAC;iDAIY,iBAAU;YACH,gBAAS;YACN,wCAAkB;OAL7B,uBAAuB,CAsBnC;IAAD,8BAAC;CAAA,AAzBD,CAG6C,gDAAqB,GAsBjE"}
@@ -0,0 +1,10 @@
1
+ import { ElementRef, Renderer2 } from '@angular/core';
2
+ import { BreakpointsService } from '../breakpoints.service';
3
+ import { BaseHideShowDirective } from './base-hide-show.directive';
4
+ export declare class DirectiveShrinkOnTablet extends BaseHideShowDirective {
5
+ e: ElementRef;
6
+ renderer: Renderer2;
7
+ breakpoints: BreakpointsService;
8
+ constructor(e: ElementRef, renderer: Renderer2, breakpoints: BreakpointsService);
9
+ action(state: 'mobile' | 'tablet' | 'desktop'): void;
10
+ }
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DirectiveShrinkOnTablet = void 0;
4
+ var tslib_1 = require("tslib");
5
+ var core_1 = require("@angular/core");
6
+ var breakpoints_service_1 = require("../breakpoints.service");
7
+ var base_hide_show_directive_1 = require("./base-hide-show.directive");
8
+ // import { DirectiveShrinkOnMobile50 } from './shrink-on-mobile50.directive';
9
+ // import { DirectiveShrinkOnMobile } from './shrink-on-mobile75.directive';
10
+ var DirectiveShrinkOnTablet = exports.DirectiveShrinkOnTablet = /** @class */ (function (_super) {
11
+ tslib_1.__extends(DirectiveShrinkOnTablet, _super);
12
+ function DirectiveShrinkOnTablet(e, renderer, breakpoints) {
13
+ var _this = _super.call(this, e, renderer, breakpoints) || this;
14
+ _this.e = e;
15
+ _this.renderer = renderer;
16
+ _this.breakpoints = breakpoints;
17
+ return _this;
18
+ }
19
+ DirectiveShrinkOnTablet.prototype.action = function (state) {
20
+ // if (state === 'tablet') {
21
+ // this.scale(0.75)
22
+ // } else {
23
+ // if (state === 'mobile' && (this.mobile50 || this.mobile75)) {
24
+ // } else {
25
+ // this.scale()
26
+ // }
27
+ // }
28
+ };
29
+ DirectiveShrinkOnTablet = tslib_1.__decorate([
30
+ (0, core_1.Directive)({
31
+ selector: '[shrinkOnTablet]'
32
+ }),
33
+ tslib_1.__metadata("design:paramtypes", [core_1.ElementRef,
34
+ core_1.Renderer2,
35
+ breakpoints_service_1.BreakpointsService])
36
+ ], DirectiveShrinkOnTablet);
37
+ return DirectiveShrinkOnTablet;
38
+ }(base_hide_show_directive_1.BaseHideShowDirective));
39
+ //# sourceMappingURL=shrink-on-tablet.directive.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"shrink-on-tablet.directive.js","sourceRoot":"","sources":["C:/Users/darek/projects/npm/firedev-io/static-columns/tmp-bundle-release/bundle/project/static-columns/src/lib/column/shrink-on-tablet.directive.ts"],"names":[],"mappings":";;;;AACA,sCAAoG;AAEpG,8DAA4D;AAC5D,uEAAmE;AACnE,8EAA8E;AAC9E,4EAA4E;AAK5E;IAA6C,mDAAqB;IAEhE,iCACS,CAAa,EACb,QAAmB,EACnB,WAA+B;QAHxC,YAOE,kBAAM,CAAC,EAAE,QAAQ,EAAE,WAAW,CAAC,SAChC;QAPQ,OAAC,GAAD,CAAC,CAAY;QACb,cAAQ,GAAR,QAAQ,CAAW;QACnB,iBAAW,GAAX,WAAW,CAAoB;;IAKxC,CAAC;IACD,wCAAM,GAAN,UAAO,KAAsC;QAC3C,4BAA4B;QAC5B,qBAAqB;QACrB,WAAW;QACX,kEAAkE;QAElE,aAAa;QACb,mBAAmB;QACnB,MAAM;QACN,IAAI;IACN,CAAC;IArBU,uBAAuB;QAHnC,IAAA,gBAAS,EAAC;YACT,QAAQ,EAAE,kBAAkB;SAC7B,CAAC;iDAIY,iBAAU;YACH,gBAAS;YACN,wCAAkB;OAL7B,uBAAuB,CAsBnC;IAAD,8BAAC;CAAA,AAzBD,CAG6C,gDAAqB,GAsBjE"}
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1686391041423 = void 0;
4
- function dummy1686391041423() { }
5
- exports.dummy1686391041423 = dummy1686391041423;
3
+ exports.dummy1686575320381 = void 0;
4
+ function dummy1686575320381() { }
5
+ exports.dummy1686575320381 = dummy1686575320381;
6
6
  //# sourceMappingURL=columns-gap.component.js.map
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1686391041424 = void 0;
4
- function dummy1686391041424() { }
5
- exports.dummy1686391041424 = dummy1686391041424;
3
+ exports.dummy1686575320383 = void 0;
4
+ function dummy1686575320383() { }
5
+ exports.dummy1686575320383 = dummy1686575320383;
6
6
  //# sourceMappingURL=index.js.map
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1686391041430 = void 0;
4
- function dummy1686391041430() { }
5
- exports.dummy1686391041430 = dummy1686391041430;
3
+ exports.dummy1686575320389 = void 0;
4
+ function dummy1686575320389() { }
5
+ exports.dummy1686575320389 = dummy1686575320389;
6
6
  //# sourceMappingURL=columns.component.js.map
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1686391041433 = void 0;
4
- function dummy1686391041433() { }
5
- exports.dummy1686391041433 = dummy1686391041433;
3
+ exports.dummy1686575320391 = void 0;
4
+ function dummy1686575320391() { }
5
+ exports.dummy1686575320391 = dummy1686575320391;
6
6
  //# sourceMappingURL=columns.module.js.map
package/package.json CHANGED
@@ -1,6 +1,51 @@
1
1
  {
2
+ "tnp": {
3
+ "resources": [
4
+ "README.md",
5
+ "screen.png"
6
+ ],
7
+ "overrided": {
8
+ "ignoreDepsPattern": [],
9
+ "includeAsDev": "*",
10
+ "includeOnly": [],
11
+ "dependencies": {},
12
+ "linkedFolders": [],
13
+ "npmFixes": []
14
+ },
15
+ "linkedProjects": [],
16
+ "smartContainerBuildTarget": "",
17
+ "linkedRepos": [],
18
+ "libReleaseOptions": {
19
+ "nodts": false,
20
+ "obscure": false,
21
+ "ugly": false,
22
+ "includeNodeModules": false
23
+ },
24
+ "smartContainerTarget": "",
25
+ "type": "isomorphic-lib",
26
+ "isCoreProject": false,
27
+ "version": "v4",
28
+ "isGenerated": false,
29
+ "useFramework": false,
30
+ "license": "MIT",
31
+ "private": false,
32
+ "description": "Static columns with flexbox for Agnular2",
33
+ "author": "Dariusz Filipiak",
34
+ "homepage": "https://github.com/darekf77/static-columns#readme",
35
+ "keywords": [
36
+ "angular2",
37
+ "static",
38
+ "width",
39
+ "column",
40
+ "static",
41
+ "columns",
42
+ "flexbox",
43
+ "columns"
44
+ ],
45
+ "workerPlugins": {}
46
+ },
2
47
  "name": "static-columns",
3
- "version": "16.0.3",
48
+ "version": "16.0.5",
4
49
  "description": "Static columns with flexbox for Agnular2",
5
50
  "repository": {
6
51
  "type": "git",
@@ -24,6 +69,6 @@
24
69
  "homepage": "https://github.com/darekf77/static-columns#readme",
25
70
  "dependencies": {},
26
71
  "private": false,
27
- "lastBuildTagHash": "aaa4d5941a89fef9c8c77568e9039e97304ef698",
72
+ "lastBuildTagHash": "3b5ffab0382206dec1407f76a6e7083468ba0f46",
28
73
  "devDependencies": {}
29
74
  }