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
@@ -1,6 +1,9 @@
1
1
  import { NgModule } from '@angular/core';
2
2
  import { LayoutModule } from '@angular/cdk/layout';
3
- import { ColumnComponent, DirectiveGrow, DirectiveHideDesktop, DirectiveHideTablet, DirectiveHideMobile, DirectiveShowDesktop, DirectiveShowMobile, DirectiveShowTablet, } from './column'; /* */
3
+ import { ColumnComponent, DirectiveGrow, DirectiveHideDesktop, DirectiveHideTablet, DirectiveHideMobile, DirectiveShowDesktop, DirectiveShowMobile, DirectiveShowTablet, DirectiveShrinkOnMobile50, DirectiveShrinkOnMobile, DirectiveShrinkOnTablet, } from './column'; /* */
4
+ /* */
5
+ /* */
6
+ /* */
4
7
  /* */
5
8
  /* */
6
9
  /* */
@@ -23,10 +26,13 @@ const components = [
23
26
  DirectiveShowMobile,
24
27
  DirectiveShowDesktop,
25
28
  ColumnsGapComponent,
29
+ DirectiveShrinkOnMobile50,
30
+ DirectiveShrinkOnMobile,
31
+ DirectiveShrinkOnTablet,
26
32
  ];
27
33
  class StaticColumnsModule {
28
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: StaticColumnsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
29
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.4", ngImport: i0, type: StaticColumnsModule, declarations: [ColumnsComponent,
34
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: StaticColumnsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
35
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.5", ngImport: i0, type: StaticColumnsModule, declarations: [ColumnsComponent,
30
36
  ColumnComponent,
31
37
  DirectiveGrow,
32
38
  DirectiveHideMobile,
@@ -35,7 +41,10 @@ class StaticColumnsModule {
35
41
  DirectiveShowTablet,
36
42
  DirectiveShowMobile,
37
43
  DirectiveShowDesktop,
38
- ColumnsGapComponent], imports: [LayoutModule], exports: [LayoutModule, ColumnsComponent,
44
+ ColumnsGapComponent,
45
+ DirectiveShrinkOnMobile50,
46
+ DirectiveShrinkOnMobile,
47
+ DirectiveShrinkOnTablet], imports: [LayoutModule], exports: [LayoutModule, ColumnsComponent,
39
48
  ColumnComponent,
40
49
  DirectiveGrow,
41
50
  DirectiveHideMobile,
@@ -44,11 +53,14 @@ class StaticColumnsModule {
44
53
  DirectiveShowTablet,
45
54
  DirectiveShowMobile,
46
55
  DirectiveShowDesktop,
47
- ColumnsGapComponent] }); }
48
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: StaticColumnsModule, providers: [BreakpointsService], imports: [LayoutModule, LayoutModule] }); }
56
+ ColumnsGapComponent,
57
+ DirectiveShrinkOnMobile50,
58
+ DirectiveShrinkOnMobile,
59
+ DirectiveShrinkOnTablet] }); }
60
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: StaticColumnsModule, providers: [BreakpointsService], imports: [LayoutModule, LayoutModule] }); }
49
61
  }
50
62
  export { StaticColumnsModule };
51
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: StaticColumnsModule, decorators: [{
63
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: StaticColumnsModule, decorators: [{
52
64
  type: NgModule,
53
65
  args: [{
54
66
  imports: [
@@ -66,4 +78,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImpor
66
78
  }] });
67
79
  ;
68
80
  ({}); // @--end-of-file-for-module=static-columns lib/columns.module.ts
69
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1ucy5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlLXdlYnNxbC9zdGF0aWMtY29sdW1ucy9wcm9qZWN0cy9zdGF0aWMtY29sdW1ucy9zcmMvbGliL2NvbHVtbnMubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ25ELE9BQU8sRUFBSSxlQUFlLEVBQUUsYUFBYSxFQUFJLG9CQUFvQixFQUFJLG1CQUFtQixFQUFJLG1CQUFtQixFQUFJLG9CQUFvQixFQUFJLG1CQUFtQixFQUFJLG1CQUFtQixHQUFHLE1BQU0sVUFBVSxDQUFDLENBQUEsS0FBSztBQUM5TSxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBRUwsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0scUNBQXFDLENBQUM7QUFDMUUsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDdkQsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sdUJBQXVCLENBQUM7O0FBRzNELE1BQU0sVUFBVSxHQUFHO0lBQ2pCLGdCQUFnQjtJQUNoQixlQUFlO0lBQ2YsYUFBYTtJQUNiLG1CQUFtQjtJQUNuQixtQkFBbUI7SUFDbkIsb0JBQW9CO0lBQ3BCLG1CQUFtQjtJQUNuQixtQkFBbUI7SUFDbkIsb0JBQW9CO0lBQ3BCLG1CQUFtQjtDQUNwQixDQUFDO0FBRUYsTUFhYSxtQkFBbUI7OEdBQW5CLG1CQUFtQjsrR0FBbkIsbUJBQW1CLGlCQXpCOUIsZ0JBQWdCO1lBQ2hCLGVBQWU7WUFDZixhQUFhO1lBQ2IsbUJBQW1CO1lBQ25CLG1CQUFtQjtZQUNuQixvQkFBb0I7WUFDcEIsbUJBQW1CO1lBQ25CLG1CQUFtQjtZQUNuQixvQkFBb0I7WUFDcEIsbUJBQW1CLGFBS2pCLFlBQVksYUFHWixZQUFZLEVBakJkLGdCQUFnQjtZQUNoQixlQUFlO1lBQ2YsYUFBYTtZQUNiLG1CQUFtQjtZQUNuQixtQkFBbUI7WUFDbkIsb0JBQW9CO1lBQ3BCLG1CQUFtQjtZQUNuQixtQkFBbUI7WUFDbkIsb0JBQW9CO1lBQ3BCLG1CQUFtQjsrR0FnQlIsbUJBQW1CLGFBRm5CLENBQUMsa0JBQWtCLENBQUMsWUFUN0IsWUFBWSxFQUdaLFlBQVk7O1NBUUgsbUJBQW1COzJGQUFuQixtQkFBbUI7a0JBYi9CLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFO3dCQUNQLFlBQVk7cUJBQ2I7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLFlBQVk7d0JBQ1osR0FBRyxVQUFVO3FCQUNkO29CQUNELFlBQVksRUFBRTt3QkFDWixHQUFHLFVBQVU7cUJBQ2Q7b0JBQ0QsU0FBUyxFQUFFLENBQUMsa0JBQWtCLENBQUM7aUJBQ2hDOztBQUlBLENBQUM7QUFBQSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsaUVBQWlFIiwic291cmNlc0NvbnRlbnQiOlsiXG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTGF5b3V0TW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL2xheW91dCc7XG5pbXBvcnQgeyAgIENvbHVtbkNvbXBvbmVudCwgRGlyZWN0aXZlR3JvdywgICBEaXJlY3RpdmVIaWRlRGVza3RvcCwgICBEaXJlY3RpdmVIaWRlVGFibGV0LCAgIERpcmVjdGl2ZUhpZGVNb2JpbGUsICAgRGlyZWN0aXZlU2hvd0Rlc2t0b3AsICAgRGlyZWN0aXZlU2hvd01vYmlsZSwgICBEaXJlY3RpdmVTaG93VGFibGV0LCB9IGZyb20gJy4vY29sdW1uJzsvKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cblxuaW1wb3J0IHsgQ29sdW1uc0dhcENvbXBvbmVudCB9IGZyb20gJy4vY29sdW1ucy1nYXAvY29sdW1ucy1nYXAuY29tcG9uZW50JztcbmltcG9ydCB7IENvbHVtbnNDb21wb25lbnQgfSBmcm9tICcuL2NvbHVtbnMuY29tcG9uZW50JztcbmltcG9ydCB7IEJyZWFrcG9pbnRzU2VydmljZSB9IGZyb20gJy4vYnJlYWtwb2ludHMuc2VydmljZSc7XG5cblxuY29uc3QgY29tcG9uZW50cyA9IFtcbiAgQ29sdW1uc0NvbXBvbmVudCxcbiAgQ29sdW1uQ29tcG9uZW50LFxuICBEaXJlY3RpdmVHcm93LFxuICBEaXJlY3RpdmVIaWRlTW9iaWxlLFxuICBEaXJlY3RpdmVIaWRlVGFibGV0LFxuICBEaXJlY3RpdmVIaWRlRGVza3RvcCxcbiAgRGlyZWN0aXZlU2hvd1RhYmxldCxcbiAgRGlyZWN0aXZlU2hvd01vYmlsZSxcbiAgRGlyZWN0aXZlU2hvd0Rlc2t0b3AsXG4gIENvbHVtbnNHYXBDb21wb25lbnQsXG5dO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbXG4gICAgTGF5b3V0TW9kdWxlLFxuICBdLFxuICBleHBvcnRzOiBbXG4gICAgTGF5b3V0TW9kdWxlLFxuICAgIC4uLmNvbXBvbmVudHMsXG4gIF0sXG4gIGRlY2xhcmF0aW9uczogW1xuICAgIC4uLmNvbXBvbmVudHMsXG4gIF0sXG4gIHByb3ZpZGVyczogW0JyZWFrcG9pbnRzU2VydmljZV0sXG59KVxuZXhwb3J0IGNsYXNzIFN0YXRpY0NvbHVtbnNNb2R1bGUgeyB9XG5cblxuIDsoe30pOyAvLyBALS1lbmQtb2YtZmlsZS1mb3ItbW9kdWxlPXN0YXRpYy1jb2x1bW5zIGxpYi9jb2x1bW5zLm1vZHVsZS50cyJdfQ==
81
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1ucy5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlLXdlYnNxbC9zdGF0aWMtY29sdW1ucy9wcm9qZWN0cy9zdGF0aWMtY29sdW1ucy9zcmMvbGliL2NvbHVtbnMubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ25ELE9BQU8sRUFBSSxlQUFlLEVBQUUsYUFBYSxFQUFJLG9CQUFvQixFQUFJLG1CQUFtQixFQUFJLG1CQUFtQixFQUFJLG9CQUFvQixFQUFJLG1CQUFtQixFQUFJLG1CQUFtQixFQUFJLHlCQUF5QixFQUFJLHVCQUF1QixFQUFJLHVCQUF1QixHQUFHLE1BQU0sVUFBVSxDQUFDLENBQUEsS0FBSztBQUNqUyxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBRUwsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0scUNBQXFDLENBQUM7QUFDMUUsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDdkQsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sdUJBQXVCLENBQUM7O0FBRzNELE1BQU0sVUFBVSxHQUFHO0lBQ2pCLGdCQUFnQjtJQUNoQixlQUFlO0lBQ2YsYUFBYTtJQUNiLG1CQUFtQjtJQUNuQixtQkFBbUI7SUFDbkIsb0JBQW9CO0lBQ3BCLG1CQUFtQjtJQUNuQixtQkFBbUI7SUFDbkIsb0JBQW9CO0lBQ3BCLG1CQUFtQjtJQUNuQix5QkFBeUI7SUFDekIsdUJBQXVCO0lBQ3ZCLHVCQUF1QjtDQUN4QixDQUFDO0FBRUYsTUFhYSxtQkFBbUI7OEdBQW5CLG1CQUFtQjsrR0FBbkIsbUJBQW1CLGlCQTVCOUIsZ0JBQWdCO1lBQ2hCLGVBQWU7WUFDZixhQUFhO1lBQ2IsbUJBQW1CO1lBQ25CLG1CQUFtQjtZQUNuQixvQkFBb0I7WUFDcEIsbUJBQW1CO1lBQ25CLG1CQUFtQjtZQUNuQixvQkFBb0I7WUFDcEIsbUJBQW1CO1lBQ25CLHlCQUF5QjtZQUN6Qix1QkFBdUI7WUFDdkIsdUJBQXVCLGFBS3JCLFlBQVksYUFHWixZQUFZLEVBcEJkLGdCQUFnQjtZQUNoQixlQUFlO1lBQ2YsYUFBYTtZQUNiLG1CQUFtQjtZQUNuQixtQkFBbUI7WUFDbkIsb0JBQW9CO1lBQ3BCLG1CQUFtQjtZQUNuQixtQkFBbUI7WUFDbkIsb0JBQW9CO1lBQ3BCLG1CQUFtQjtZQUNuQix5QkFBeUI7WUFDekIsdUJBQXVCO1lBQ3ZCLHVCQUF1QjsrR0FnQlosbUJBQW1CLGFBRm5CLENBQUMsa0JBQWtCLENBQUMsWUFUN0IsWUFBWSxFQUdaLFlBQVk7O1NBUUgsbUJBQW1COzJGQUFuQixtQkFBbUI7a0JBYi9CLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFO3dCQUNQLFlBQVk7cUJBQ2I7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLFlBQVk7d0JBQ1osR0FBRyxVQUFVO3FCQUNkO29CQUNELFlBQVksRUFBRTt3QkFDWixHQUFHLFVBQVU7cUJBQ2Q7b0JBQ0QsU0FBUyxFQUFFLENBQUMsa0JBQWtCLENBQUM7aUJBQ2hDOztBQUlBLENBQUM7QUFBQSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsaUVBQWlFIiwic291cmNlc0NvbnRlbnQiOlsiXG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTGF5b3V0TW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL2xheW91dCc7XG5pbXBvcnQgeyAgIENvbHVtbkNvbXBvbmVudCwgRGlyZWN0aXZlR3JvdywgICBEaXJlY3RpdmVIaWRlRGVza3RvcCwgICBEaXJlY3RpdmVIaWRlVGFibGV0LCAgIERpcmVjdGl2ZUhpZGVNb2JpbGUsICAgRGlyZWN0aXZlU2hvd0Rlc2t0b3AsICAgRGlyZWN0aXZlU2hvd01vYmlsZSwgICBEaXJlY3RpdmVTaG93VGFibGV0LCAgIERpcmVjdGl2ZVNocmlua09uTW9iaWxlNTAsICAgRGlyZWN0aXZlU2hyaW5rT25Nb2JpbGUsICAgRGlyZWN0aXZlU2hyaW5rT25UYWJsZXQsIH0gZnJvbSAnLi9jb2x1bW4nOy8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuXG5pbXBvcnQgeyBDb2x1bW5zR2FwQ29tcG9uZW50IH0gZnJvbSAnLi9jb2x1bW5zLWdhcC9jb2x1bW5zLWdhcC5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ29sdW1uc0NvbXBvbmVudCB9IGZyb20gJy4vY29sdW1ucy5jb21wb25lbnQnO1xuaW1wb3J0IHsgQnJlYWtwb2ludHNTZXJ2aWNlIH0gZnJvbSAnLi9icmVha3BvaW50cy5zZXJ2aWNlJztcblxuXG5jb25zdCBjb21wb25lbnRzID0gW1xuICBDb2x1bW5zQ29tcG9uZW50LFxuICBDb2x1bW5Db21wb25lbnQsXG4gIERpcmVjdGl2ZUdyb3csXG4gIERpcmVjdGl2ZUhpZGVNb2JpbGUsXG4gIERpcmVjdGl2ZUhpZGVUYWJsZXQsXG4gIERpcmVjdGl2ZUhpZGVEZXNrdG9wLFxuICBEaXJlY3RpdmVTaG93VGFibGV0LFxuICBEaXJlY3RpdmVTaG93TW9iaWxlLFxuICBEaXJlY3RpdmVTaG93RGVza3RvcCxcbiAgQ29sdW1uc0dhcENvbXBvbmVudCxcbiAgRGlyZWN0aXZlU2hyaW5rT25Nb2JpbGU1MCxcbiAgRGlyZWN0aXZlU2hyaW5rT25Nb2JpbGUsXG4gIERpcmVjdGl2ZVNocmlua09uVGFibGV0LFxuXTtcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW1xuICAgIExheW91dE1vZHVsZSxcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIExheW91dE1vZHVsZSxcbiAgICAuLi5jb21wb25lbnRzLFxuICBdLFxuICBkZWNsYXJhdGlvbnM6IFtcbiAgICAuLi5jb21wb25lbnRzLFxuICBdLFxuICBwcm92aWRlcnM6IFtCcmVha3BvaW50c1NlcnZpY2VdLFxufSlcbmV4cG9ydCBjbGFzcyBTdGF0aWNDb2x1bW5zTW9kdWxlIHsgfVxuXG5cbiA7KHt9KTsgLy8gQC0tZW5kLW9mLWZpbGUtZm9yLW1vZHVsZT1zdGF0aWMtY29sdW1ucyBsaWIvY29sdW1ucy5tb2R1bGUudHMiXX0=
@@ -1,30 +1,10 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Directive, Injectable, Component, HostBinding, Input, EventEmitter, Output, ViewChildren, NgModule } from '@angular/core';
2
+ import { Injectable, Directive, Component, HostBinding, Input, EventEmitter, Output, ViewChildren, NgModule } from '@angular/core';
3
3
  import { Subject, takeUntil } from 'rxjs';
4
4
  import * as i1 from '@angular/cdk/layout';
5
5
  import { LayoutModule } from '@angular/cdk/layout';
6
6
  import { _ } from 'tnp-core/websql';
7
7
 
8
- class DirectiveGrow {
9
- constructor(e, renderer) {
10
- this.e = e;
11
- this.renderer = renderer;
12
- setTimeout(() => {
13
- renderer.setStyle(e.nativeElement, 'flexGrow', '1');
14
- }, 0);
15
- }
16
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveGrow, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
17
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: DirectiveGrow, selector: "[grow]", ngImport: i0 }); }
18
- }
19
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveGrow, decorators: [{
20
- type: Directive,
21
- args: [{
22
- selector: '[grow]'
23
- }]
24
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; } });
25
- ;
26
- ({}); // @--end-of-file-for-module=static-columns lib/column/column-grow.directive.ts
27
-
28
8
  const BRK = {
29
9
  mobile: '(max-width: 599.98px)',
30
10
  desktop: '(min-width: 840.00px)',
@@ -67,10 +47,10 @@ class BreakpointsService {
67
47
  }
68
48
  });
69
49
  }
70
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: BreakpointsService, deps: [{ token: i1.BreakpointObserver }], target: i0.ɵɵFactoryTarget.Injectable }); }
71
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: BreakpointsService, providedIn: 'root' }); }
50
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: BreakpointsService, deps: [{ token: i1.BreakpointObserver }], target: i0.ɵɵFactoryTarget.Injectable }); }
51
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: BreakpointsService, providedIn: 'root' }); }
72
52
  }
73
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: BreakpointsService, decorators: [{
53
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: BreakpointsService, decorators: [{
74
54
  type: Injectable,
75
55
  args: [{ providedIn: 'root' }]
76
56
  }], ctorParameters: function () { return [{ type: i1.BreakpointObserver }]; } });
@@ -90,6 +70,9 @@ class BaseHideShowDirective {
90
70
  showElement() {
91
71
  this.renderer.setStyle(this.e.nativeElement, 'display', this.originalDisaplay);
92
72
  }
73
+ scale(scale = 1) {
74
+ this.renderer.setStyle(this.e.nativeElement, 'transform', `scale(${scale})`);
75
+ }
93
76
  ngOnInit() {
94
77
  //Called after ngAfterContentInit when the component's view has been initialized. Applies to components only.
95
78
  //Add 'implements AfterViewInit' to the class.
@@ -107,10 +90,10 @@ class BaseHideShowDirective {
107
90
  this.$destroy.next(void 0);
108
91
  this.$destroy.complete();
109
92
  }
110
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: BaseHideShowDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: BreakpointsService }], target: i0.ɵɵFactoryTarget.Directive }); }
111
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: BaseHideShowDirective, selector: "[baseHideShowDirective]", ngImport: i0 }); }
93
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: BaseHideShowDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: BreakpointsService }], target: i0.ɵɵFactoryTarget.Directive }); }
94
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.5", type: BaseHideShowDirective, selector: "[baseHideShowDirective]", ngImport: i0 }); }
112
95
  }
113
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: BaseHideShowDirective, decorators: [{
96
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: BaseHideShowDirective, decorators: [{
114
97
  type: Directive,
115
98
  args: [{
116
99
  selector: '[baseHideShowDirective]'
@@ -119,6 +102,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImpor
119
102
  ;
120
103
  ({}); // @--end-of-file-for-module=static-columns lib/column/base-hide-show.directive.ts
121
104
 
105
+ class DirectiveGrow {
106
+ constructor(e, renderer) {
107
+ this.e = e;
108
+ this.renderer = renderer;
109
+ setTimeout(() => {
110
+ renderer.setStyle(e.nativeElement, 'flexGrow', '1');
111
+ }, 0);
112
+ }
113
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveGrow, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
114
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.5", type: DirectiveGrow, selector: "[grow]", ngImport: i0 }); }
115
+ }
116
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveGrow, decorators: [{
117
+ type: Directive,
118
+ args: [{
119
+ selector: '[grow]'
120
+ }]
121
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; } });
122
+ ;
123
+ ({}); // @--end-of-file-for-module=static-columns lib/column/column-grow.directive.ts
124
+
125
+ class DirectiveHideDesktop extends BaseHideShowDirective {
126
+ action(state) {
127
+ if (state === 'desktop') {
128
+ this.hideElement();
129
+ }
130
+ else {
131
+ this.showElement();
132
+ }
133
+ }
134
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveHideDesktop, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
135
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.5", type: DirectiveHideDesktop, selector: "[hideDesktop]", usesInheritance: true, ngImport: i0 }); }
136
+ }
137
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveHideDesktop, decorators: [{
138
+ type: Directive,
139
+ args: [{
140
+ selector: '[hideDesktop]'
141
+ }]
142
+ }] });
143
+ ;
144
+ ({}); // @--end-of-file-for-module=static-columns lib/column/column-hide-desktop.directive.ts
145
+
122
146
  class DirectiveHideMobile extends BaseHideShowDirective {
123
147
  action(state) {
124
148
  if (state === 'mobile') {
@@ -128,10 +152,10 @@ class DirectiveHideMobile extends BaseHideShowDirective {
128
152
  this.showElement();
129
153
  }
130
154
  }
131
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveHideMobile, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
132
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: DirectiveHideMobile, selector: "[hideMobile]", usesInheritance: true, ngImport: i0 }); }
155
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveHideMobile, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
156
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.5", type: DirectiveHideMobile, selector: "[hideMobile]", usesInheritance: true, ngImport: i0 }); }
133
157
  }
134
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveHideMobile, decorators: [{
158
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveHideMobile, decorators: [{
135
159
  type: Directive,
136
160
  args: [{
137
161
  selector: '[hideMobile]'
@@ -149,10 +173,10 @@ class DirectiveHideTablet extends BaseHideShowDirective {
149
173
  this.showElement();
150
174
  }
151
175
  }
152
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveHideTablet, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
153
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: DirectiveHideTablet, selector: "[hideTablet]", usesInheritance: true, ngImport: i0 }); }
176
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveHideTablet, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
177
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.5", type: DirectiveHideTablet, selector: "[hideTablet]", usesInheritance: true, ngImport: i0 }); }
154
178
  }
155
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveHideTablet, decorators: [{
179
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveHideTablet, decorators: [{
156
180
  type: Directive,
157
181
  args: [{
158
182
  selector: '[hideTablet]'
@@ -161,26 +185,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImpor
161
185
  ;
162
186
  ({}); // @--end-of-file-for-module=static-columns lib/column/column-hide-tablet.directive.ts
163
187
 
164
- class DirectiveHideDesktop extends BaseHideShowDirective {
188
+ class DirectiveShowDesktop extends BaseHideShowDirective {
165
189
  action(state) {
166
190
  if (state === 'desktop') {
167
- this.hideElement();
191
+ this.showElement();
168
192
  }
169
193
  else {
170
- this.showElement();
194
+ this.hideElement();
171
195
  }
172
196
  }
173
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveHideDesktop, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
174
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: DirectiveHideDesktop, selector: "[hideDesktop]", usesInheritance: true, ngImport: i0 }); }
197
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveShowDesktop, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
198
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.5", type: DirectiveShowDesktop, selector: "[showDesktop]", usesInheritance: true, ngImport: i0 }); }
175
199
  }
176
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveHideDesktop, decorators: [{
200
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveShowDesktop, decorators: [{
177
201
  type: Directive,
178
202
  args: [{
179
- selector: '[hideDesktop]'
203
+ selector: '[showDesktop]'
180
204
  }]
181
205
  }] });
182
206
  ;
183
- ({}); // @--end-of-file-for-module=static-columns lib/column/column-hide-desktop.directive.ts
207
+ ({}); // @--end-of-file-for-module=static-columns lib/column/column-show-desktop.directive.ts
184
208
 
185
209
  class DirectiveShowMobile extends BaseHideShowDirective {
186
210
  action(state) {
@@ -191,10 +215,10 @@ class DirectiveShowMobile extends BaseHideShowDirective {
191
215
  this.hideElement();
192
216
  }
193
217
  }
194
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveShowMobile, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
195
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: DirectiveShowMobile, selector: "[showMobile]", usesInheritance: true, ngImport: i0 }); }
218
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveShowMobile, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
219
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.5", type: DirectiveShowMobile, selector: "[showMobile]", usesInheritance: true, ngImport: i0 }); }
196
220
  }
197
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveShowMobile, decorators: [{
221
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveShowMobile, decorators: [{
198
222
  type: Directive,
199
223
  args: [{
200
224
  selector: '[showMobile]'
@@ -212,10 +236,10 @@ class DirectiveShowTablet extends BaseHideShowDirective {
212
236
  this.hideElement();
213
237
  }
214
238
  }
215
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveShowTablet, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
216
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: DirectiveShowTablet, selector: "[showTablet]", usesInheritance: true, ngImport: i0 }); }
239
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveShowTablet, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
240
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.5", type: DirectiveShowTablet, selector: "[showTablet]", usesInheritance: true, ngImport: i0 }); }
217
241
  }
218
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveShowTablet, decorators: [{
242
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveShowTablet, decorators: [{
219
243
  type: Directive,
220
244
  args: [{
221
245
  selector: '[showTablet]'
@@ -224,35 +248,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImpor
224
248
  ;
225
249
  ({}); // @--end-of-file-for-module=static-columns lib/column/column-show-tablet.directive.ts
226
250
 
227
- class DirectiveShowDesktop extends BaseHideShowDirective {
228
- action(state) {
229
- if (state === 'desktop') {
230
- this.showElement();
231
- }
232
- else {
233
- this.hideElement();
234
- }
235
- }
236
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveShowDesktop, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
237
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: DirectiveShowDesktop, selector: "[showDesktop]", usesInheritance: true, ngImport: i0 }); }
238
- }
239
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: DirectiveShowDesktop, decorators: [{
240
- type: Directive,
241
- args: [{
242
- selector: '[showDesktop]'
243
- }]
244
- }] });
245
- ;
246
- ({}); // @--end-of-file-for-module=static-columns lib/column/column-show-desktop.directive.ts
247
-
248
251
  class ColumnComponent {
249
252
  constructor() {
250
253
  }
251
254
  ngOnInit() { }
252
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: ColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
253
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.4", type: ColumnComponent, selector: "column", inputs: { width: "width" }, host: { properties: { "style.flex.basis.px": "this.width", "style.minWidth.px": "this.width" } }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }); }
255
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: ColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
256
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.5", 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"] }); }
254
257
  }
255
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: ColumnComponent, decorators: [{
258
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: ColumnComponent, decorators: [{
256
259
  type: Component,
257
260
  args: [{ selector: 'column', template: '<ng-content></ng-content>', styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }]
258
261
  }], ctorParameters: function () { return []; }, propDecorators: { width: [{
@@ -267,6 +270,72 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImpor
267
270
  ;
268
271
  ({}); // @--end-of-file-for-module=static-columns lib/column/column.component.ts
269
272
 
273
+ class DirectiveShrinkOnMobile extends BaseHideShowDirective {
274
+ constructor(e, renderer, breakpoints) {
275
+ super(e, renderer, breakpoints);
276
+ this.e = e;
277
+ this.renderer = renderer;
278
+ this.breakpoints = breakpoints;
279
+ this.scaleFactor = 75;
280
+ }
281
+ action(state) {
282
+ if (state === 'mobile') {
283
+ this.scale(0.75);
284
+ }
285
+ else {
286
+ this.scale();
287
+ }
288
+ }
289
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveShrinkOnMobile, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: BreakpointsService }], target: i0.ɵɵFactoryTarget.Directive }); }
290
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.5", type: DirectiveShrinkOnMobile, selector: "[shrinkOnMobile]", usesInheritance: true, ngImport: i0 }); }
291
+ }
292
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveShrinkOnMobile, decorators: [{
293
+ type: Directive,
294
+ args: [{
295
+ selector: '[shrinkOnMobile]'
296
+ }]
297
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: BreakpointsService }]; } });
298
+ ;
299
+ ({}); // @--end-of-file-for-module=static-columns lib/column/shrink-on-mobile75.directive.ts
300
+
301
+ class DirectiveShrinkOnMobile50 extends DirectiveShrinkOnMobile {
302
+ constructor() {
303
+ super(...arguments);
304
+ this.scaleFactor = 50;
305
+ }
306
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveShrinkOnMobile50, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
307
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.5", type: DirectiveShrinkOnMobile50, selector: "[shrinkOnMobile50]", usesInheritance: true, ngImport: i0 }); }
308
+ }
309
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveShrinkOnMobile50, decorators: [{
310
+ type: Directive,
311
+ args: [{
312
+ selector: '[shrinkOnMobile50]'
313
+ }]
314
+ }] });
315
+ ;
316
+ ({}); // @--end-of-file-for-module=static-columns lib/column/shrink-on-mobile50.directive.ts
317
+
318
+ class DirectiveShrinkOnTablet extends BaseHideShowDirective {
319
+ constructor(e, renderer, breakpoints) {
320
+ super(e, renderer, breakpoints);
321
+ this.e = e;
322
+ this.renderer = renderer;
323
+ this.breakpoints = breakpoints;
324
+ }
325
+ action(state) {
326
+ }
327
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveShrinkOnTablet, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: BreakpointsService }], target: i0.ɵɵFactoryTarget.Directive }); }
328
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.5", type: DirectiveShrinkOnTablet, selector: "[shrinkOnTablet]", usesInheritance: true, ngImport: i0 }); }
329
+ }
330
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: DirectiveShrinkOnTablet, decorators: [{
331
+ type: Directive,
332
+ args: [{
333
+ selector: '[shrinkOnTablet]'
334
+ }]
335
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: BreakpointsService }]; } });
336
+ ;
337
+ ({}); // @--end-of-file-for-module=static-columns lib/column/shrink-on-tablet.directive.ts
338
+
270
339
  ;
271
340
  ({}); // @--end-of-file-for-module=static-columns lib/column/index.ts
272
341
 
@@ -282,10 +351,10 @@ class ColumnsGapComponent {
282
351
  ngOnDestroy() {
283
352
  this.handlers.forEach(h => h.unsubscribe());
284
353
  }
285
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: ColumnsGapComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
286
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.4", 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"], dependencies: [{ kind: "component", type: ColumnComponent, selector: "column", inputs: ["width"] }] }); }
354
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: ColumnsGapComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
355
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.5", 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"], dependencies: [{ kind: "component", type: ColumnComponent, selector: "column", inputs: ["width"] }] }); }
287
356
  }
288
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: ColumnsGapComponent, decorators: [{
357
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: ColumnsGapComponent, decorators: [{
289
358
  type: Component,
290
359
  args: [{ selector: 'columns-gap', template: "<column [width]=\"width\"></column>\r\n", styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }]
291
360
  }], ctorParameters: function () { return []; }, propDecorators: { width: [{
@@ -309,10 +378,10 @@ class ColumnsComponent {
309
378
  constructor() {
310
379
  }
311
380
  ngOnInit() { }
312
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: ColumnsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
313
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.4", 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"] }); }
381
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: ColumnsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
382
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.5", 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"] }); }
314
383
  }
315
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: ColumnsComponent, decorators: [{
384
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: ColumnsComponent, decorators: [{
316
385
  type: Component,
317
386
  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"] }]
318
387
  }], ctorParameters: function () { return []; }, propDecorators: { childrens: [{
@@ -333,10 +402,13 @@ const components = [
333
402
  DirectiveShowMobile,
334
403
  DirectiveShowDesktop,
335
404
  ColumnsGapComponent,
405
+ DirectiveShrinkOnMobile50,
406
+ DirectiveShrinkOnMobile,
407
+ DirectiveShrinkOnTablet,
336
408
  ];
337
409
  class StaticColumnsModule {
338
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: StaticColumnsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
339
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.4", ngImport: i0, type: StaticColumnsModule, declarations: [ColumnsComponent,
410
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: StaticColumnsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
411
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.5", ngImport: i0, type: StaticColumnsModule, declarations: [ColumnsComponent,
340
412
  ColumnComponent,
341
413
  DirectiveGrow,
342
414
  DirectiveHideMobile,
@@ -345,7 +417,10 @@ class StaticColumnsModule {
345
417
  DirectiveShowTablet,
346
418
  DirectiveShowMobile,
347
419
  DirectiveShowDesktop,
348
- ColumnsGapComponent], imports: [LayoutModule], exports: [LayoutModule, ColumnsComponent,
420
+ ColumnsGapComponent,
421
+ DirectiveShrinkOnMobile50,
422
+ DirectiveShrinkOnMobile,
423
+ DirectiveShrinkOnTablet], imports: [LayoutModule], exports: [LayoutModule, ColumnsComponent,
349
424
  ColumnComponent,
350
425
  DirectiveGrow,
351
426
  DirectiveHideMobile,
@@ -354,10 +429,13 @@ class StaticColumnsModule {
354
429
  DirectiveShowTablet,
355
430
  DirectiveShowMobile,
356
431
  DirectiveShowDesktop,
357
- ColumnsGapComponent] }); }
358
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: StaticColumnsModule, providers: [BreakpointsService], imports: [LayoutModule, LayoutModule] }); }
432
+ ColumnsGapComponent,
433
+ DirectiveShrinkOnMobile50,
434
+ DirectiveShrinkOnMobile,
435
+ DirectiveShrinkOnTablet] }); }
436
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: StaticColumnsModule, providers: [BreakpointsService], imports: [LayoutModule, LayoutModule] }); }
359
437
  }
360
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: StaticColumnsModule, decorators: [{
438
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.5", ngImport: i0, type: StaticColumnsModule, decorators: [{
361
439
  type: NgModule,
362
440
  args: [{
363
441
  imports: [
@@ -383,5 +461,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImpor
383
461
  * Generated bundle index. Do not edit.
384
462
  */
385
463
 
386
- export { BreakpointsService, ColumnComponent, ColumnsComponent, ColumnsGapComponent, DirectiveGrow, DirectiveHideDesktop, DirectiveHideMobile, DirectiveHideTablet, DirectiveShowDesktop, DirectiveShowMobile, DirectiveShowTablet, StaticColumnsModule };
464
+ export { BaseHideShowDirective, BreakpointsService, ColumnComponent, ColumnsComponent, ColumnsGapComponent, DirectiveGrow, DirectiveHideDesktop, DirectiveHideMobile, DirectiveHideTablet, DirectiveShowDesktop, DirectiveShowMobile, DirectiveShowTablet, DirectiveShrinkOnMobile, DirectiveShrinkOnMobile50, DirectiveShrinkOnTablet, StaticColumnsModule };
387
465
  //# sourceMappingURL=static-columns.mjs.map