static-columns 2.0.13 → 13.0.1

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 (94) hide show
  1. package/README.md +2 -6
  2. package/app/app.component.d.ts +8 -0
  3. package/app/app.component.js +32 -0
  4. package/app/app.component.js.map +1 -0
  5. package/app/app.module.d.ts +2 -0
  6. package/app/app.module.js +40 -0
  7. package/app/app.module.js.map +1 -0
  8. package/browser/README.md +24 -0
  9. package/browser/esm2020/lib/column/column-grow.directive.mjs +22 -0
  10. package/browser/esm2020/lib/column/column.component.mjs +23 -0
  11. package/browser/esm2020/lib/column/index.mjs +3 -0
  12. package/browser/esm2020/lib/columns.component.mjs +21 -0
  13. package/browser/esm2020/lib/columns.module.mjs +19 -0
  14. package/browser/esm2020/lib/index.mjs +6 -0
  15. package/browser/esm2020/public-api.mjs +2 -0
  16. package/browser/esm2020/static-columns.mjs +5 -0
  17. package/browser/fesm2015/static-columns.mjs +83 -0
  18. package/browser/fesm2015/static-columns.mjs.map +1 -0
  19. package/browser/fesm2020/static-columns.mjs +83 -0
  20. package/browser/fesm2020/static-columns.mjs.map +1 -0
  21. package/browser/lib/column/column-grow.directive.d.ts +9 -0
  22. package/browser/lib/column/column.component.d.ts +9 -0
  23. package/browser/lib/column/index.d.ts +2 -0
  24. package/browser/lib/columns.component.d.ts +10 -0
  25. package/browser/lib/columns.module.d.ts +9 -0
  26. package/browser/lib/index.d.ts +5 -0
  27. package/browser/package.json +30 -5
  28. package/browser/public-api.d.ts +1 -0
  29. package/browser/static-columns.d.ts +5 -0
  30. package/client/README.md +24 -0
  31. package/client/esm2020/lib/column/column-grow.directive.mjs +22 -0
  32. package/client/esm2020/lib/column/column.component.mjs +23 -0
  33. package/client/esm2020/lib/column/index.mjs +3 -0
  34. package/client/esm2020/lib/columns.component.mjs +21 -0
  35. package/client/esm2020/lib/columns.module.mjs +19 -0
  36. package/client/esm2020/lib/index.mjs +6 -0
  37. package/client/esm2020/public-api.mjs +2 -0
  38. package/client/esm2020/static-columns.mjs +5 -0
  39. package/client/fesm2015/static-columns.mjs +83 -0
  40. package/client/fesm2015/static-columns.mjs.map +1 -0
  41. package/client/fesm2020/static-columns.mjs +83 -0
  42. package/client/fesm2020/static-columns.mjs.map +1 -0
  43. package/client/lib/column/column-grow.directive.d.ts +9 -0
  44. package/client/lib/column/column.component.d.ts +9 -0
  45. package/client/lib/column/index.d.ts +2 -0
  46. package/client/lib/columns.component.d.ts +10 -0
  47. package/client/lib/columns.module.d.ts +9 -0
  48. package/client/lib/index.d.ts +5 -0
  49. package/client/package.json +29 -4
  50. package/client/public-api.d.ts +1 -0
  51. package/client/static-columns.d.ts +5 -0
  52. package/index.d.ts +1 -0
  53. package/index.js +3 -6
  54. package/index.js.map +1 -1
  55. package/lib/column/column-grow.directive.d.ts +6 -0
  56. package/lib/column/column-grow.directive.js +26 -0
  57. package/lib/column/column-grow.directive.js.map +1 -0
  58. package/lib/column/column.component.d.ts +6 -0
  59. package/lib/column/column.component.js +29 -0
  60. package/lib/column/column.component.js.map +1 -0
  61. package/lib/column/index.d.ts +2 -0
  62. package/lib/column/index.js +7 -0
  63. package/lib/column/index.js.map +1 -0
  64. package/lib/columns.component.d.ts +7 -0
  65. package/lib/columns.component.js +30 -0
  66. package/lib/columns.component.js.map +1 -0
  67. package/lib/columns.module.d.ts +2 -0
  68. package/lib/columns.module.js +23 -0
  69. package/lib/columns.module.js.map +1 -0
  70. package/lib/index.d.ts +5 -0
  71. package/lib/index.js +10 -0
  72. package/lib/index.js.map +1 -0
  73. package/package.json +2 -4
  74. package/package.json_devDependencies.json +46 -46
  75. package/{package.json_tnp.json → package.json_tnp.json5} +8 -7
  76. package/tmp-environment.json +315 -0
  77. package/backend-logging.js +0 -20
  78. package/backend-logging.js.map +0 -1
  79. package/client.js +0 -5
  80. package/client.js.map +0 -1
  81. package/display.js +0 -82
  82. package/display.js.map +0 -1
  83. package/helpers.js +0 -6
  84. package/helpers.js.map +0 -1
  85. package/level.js +0 -26
  86. package/level.js.map +0 -1
  87. package/log.js +0 -167
  88. package/log.js.map +0 -1
  89. package/logger.js +0 -228
  90. package/logger.js.map +0 -1
  91. package/public-api.js +0 -6
  92. package/public-api.js.map +0 -1
  93. package/public_api.js +0 -6
  94. package/public_api.js.map +0 -1
@@ -0,0 +1,22 @@
1
+ import { Directive } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class DirectiveGrow {
4
+ constructor(e, renderer) {
5
+ this.e = e;
6
+ this.renderer = renderer;
7
+ setTimeout(() => {
8
+ // e.nativeElement.style.flexGrow = 1;
9
+ renderer.setStyle(e.nativeElement, 'flexGrow', '1');
10
+ }, 0);
11
+ // renderer.setElementStyle(e.nativeElement, 'flexGrow', '1');
12
+ }
13
+ }
14
+ DirectiveGrow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: DirectiveGrow, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
15
+ DirectiveGrow.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.6", type: DirectiveGrow, selector: "[grow]", ngImport: i0 });
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: DirectiveGrow, decorators: [{
17
+ type: Directive,
18
+ args: [{
19
+ selector: '[grow]'
20
+ }]
21
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; } });
22
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1uLWdyb3cuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vdG1wLWxpYnMtZm9yLWJ1bmRsZS9zdGF0aWMtY29sdW1ucy9wcm9qZWN0cy9zdGF0aWMtY29sdW1ucy9zcmMvbGliL2NvbHVtbi9jb2x1bW4tZ3Jvdy5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsT0FBTyxFQUFhLFNBQVMsRUFBeUIsTUFBTSxlQUFlLENBQUM7O0FBTTVFLE1BQU0sT0FBTyxhQUFhO0lBQ3hCLFlBQW1CLENBQWEsRUFBUyxRQUFtQjtRQUF6QyxNQUFDLEdBQUQsQ0FBQyxDQUFZO1FBQVMsYUFBUSxHQUFSLFFBQVEsQ0FBVztRQUMxRCxVQUFVLENBQUMsR0FBRyxFQUFFO1lBQ2Qsc0NBQXNDO1lBQ3RDLFFBQVEsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLGFBQWEsRUFBRSxVQUFVLEVBQUUsR0FBRyxDQUFDLENBQUE7UUFDckQsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDO1FBRU4sOERBQThEO0lBQ2hFLENBQUM7OzBHQVJVLGFBQWE7OEZBQWIsYUFBYTsyRkFBYixhQUFhO2tCQUh6QixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxRQUFRO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbIlxuXG5pbXBvcnQgeyBDb21wb25lbnQsIERpcmVjdGl2ZSwgRWxlbWVudFJlZiwgUmVuZGVyZXIyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2dyb3ddJ1xufSlcbmV4cG9ydCBjbGFzcyBEaXJlY3RpdmVHcm93IHtcbiAgY29uc3RydWN0b3IocHVibGljIGU6IEVsZW1lbnRSZWYsIHB1YmxpYyByZW5kZXJlcjogUmVuZGVyZXIyKSB7XG4gICAgc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAvLyBlLm5hdGl2ZUVsZW1lbnQuc3R5bGUuZmxleEdyb3cgPSAxO1xuICAgICAgcmVuZGVyZXIuc2V0U3R5bGUoZS5uYXRpdmVFbGVtZW50LCAnZmxleEdyb3cnLCAnMScpXG4gICAgfSwgMCk7XG5cbiAgICAvLyByZW5kZXJlci5zZXRFbGVtZW50U3R5bGUoZS5uYXRpdmVFbGVtZW50LCAnZmxleEdyb3cnLCAnMScpO1xuICB9XG59XG4iXX0=
@@ -0,0 +1,23 @@
1
+ import { Component, Input, HostBinding } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class ColumnComponent {
4
+ constructor() {
5
+ // this.ccwidth = 90;
6
+ }
7
+ ngOnInit() { }
8
+ }
9
+ ColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: ColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
10
+ ColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.6", type: ColumnComponent, selector: "column", inputs: { width: "width" }, host: { properties: { "style.flex.basis.px": "this.width", "style.minWidth.px": "this.width" } }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] });
11
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: ColumnComponent, decorators: [{
12
+ type: Component,
13
+ args: [{ selector: 'column', template: '<ng-content></ng-content>', styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }]
14
+ }], ctorParameters: function () { return []; }, propDecorators: { width: [{
15
+ type: HostBinding,
16
+ args: ['style.flex.basis.px']
17
+ }, {
18
+ type: HostBinding,
19
+ args: ['style.minWidth.px']
20
+ }, {
21
+ type: Input
22
+ }] } });
23
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3RtcC1saWJzLWZvci1idW5kbGUvc3RhdGljLWNvbHVtbnMvcHJvamVjdHMvc3RhdGljLWNvbHVtbnMvc3JjL2xpYi9jb2x1bW4vY29sdW1uLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFQSxPQUFPLEVBQUUsU0FBUyxFQUFVLEtBQUssRUFBRSxXQUFXLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBT3RFLE1BQU0sT0FBTyxlQUFlO0lBR3hCO1FBQ0kscUJBQXFCO0lBQ3pCLENBQUM7SUFFRCxRQUFRLEtBQUssQ0FBQzs7NEdBUEwsZUFBZTtnR0FBZixlQUFlLDRLQUhkLDJCQUEyQjsyRkFHNUIsZUFBZTtrQkFMM0IsU0FBUzsrQkFDSSxRQUFRLFlBQ1IsMkJBQTJCOzBFQUkwQyxLQUFLO3NCQUFuRixXQUFXO3VCQUFDLHFCQUFxQjs7c0JBQUcsV0FBVzt1QkFBQyxtQkFBbUI7O3NCQUFHLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJcblxuaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQsIElucHV0LCBIb3N0QmluZGluZyB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2NvbHVtbicsXG4gICAgdGVtcGxhdGU6ICc8bmctY29udGVudD48L25nLWNvbnRlbnQ+JyxcbiAgICBzdHlsZVVybHM6IFsnLi9jb2x1bW4uY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBDb2x1bW5Db21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICAgIEBIb3N0QmluZGluZygnc3R5bGUuZmxleC5iYXNpcy5weCcpIEBIb3N0QmluZGluZygnc3R5bGUubWluV2lkdGgucHgnKSBASW5wdXQoKSB3aWR0aDogbnVtYmVyO1xuXG4gICAgY29uc3RydWN0b3IoKSB7XG4gICAgICAgIC8vIHRoaXMuY2N3aWR0aCA9IDkwO1xuICAgIH1cblxuICAgIG5nT25Jbml0KCkgeyB9XG5cbn1cbiJdfQ==
@@ -0,0 +1,3 @@
1
+ export * from './column.component';
2
+ export * from './column-grow.directive';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlL3N0YXRpYy1jb2x1bW5zL3Byb2plY3RzL3N0YXRpYy1jb2x1bW5zL3NyYy9saWIvY29sdW1uL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyx5QkFBeUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIlxuXG5leHBvcnQgKiBmcm9tICcuL2NvbHVtbi5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9jb2x1bW4tZ3Jvdy5kaXJlY3RpdmUnO1xuIl19
@@ -0,0 +1,21 @@
1
+ import { Component, ViewChildren } from '@angular/core';
2
+ import { ColumnComponent } from './column';
3
+ import * as i0 from "@angular/core";
4
+ // import { Log, Level } from 'ng2-logger/index';
5
+ // const log = Log.create('test');
6
+ // log.i('asdas')
7
+ export class ColumnsComponent {
8
+ constructor() {
9
+ }
10
+ ngOnInit() { }
11
+ }
12
+ ColumnsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: ColumnsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
13
+ ColumnsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.6", type: ColumnsComponent, selector: "columns-container", viewQueries: [{ propertyName: "childrens", predicate: ColumnComponent, descendants: true }], ngImport: i0, template: "<ng-content></ng-content>\n", styles: [":host{display:flex;width:100%;align-content:streach;justify-content:space-between}\n"] });
14
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: ColumnsComponent, decorators: [{
15
+ type: Component,
16
+ args: [{ selector: 'columns-container', template: "<ng-content></ng-content>\n", styles: [":host{display:flex;width:100%;align-content:streach;justify-content:space-between}\n"] }]
17
+ }], ctorParameters: function () { return []; }, propDecorators: { childrens: [{
18
+ type: ViewChildren,
19
+ args: [ColumnComponent]
20
+ }] } });
21
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1ucy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlL3N0YXRpYy1jb2x1bW5zL3Byb2plY3RzL3N0YXRpYy1jb2x1bW5zL3NyYy9saWIvY29sdW1ucy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlL3N0YXRpYy1jb2x1bW5zL3Byb2plY3RzL3N0YXRpYy1jb2x1bW5zL3NyYy9saWIvY29sdW1ucy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFQSxPQUFPLEVBQUUsU0FBUyxFQUE2QixZQUFZLEVBQWEsTUFBTSxlQUFlLENBQUM7QUFDOUYsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLFVBQVUsQ0FBQzs7QUFDM0MsaURBQWlEO0FBQ2pELGtDQUFrQztBQUNsQyxpQkFBaUI7QUFPakIsTUFBTSxPQUFPLGdCQUFnQjtJQUd6QjtJQUVBLENBQUM7SUFDRCxRQUFRLEtBQUssQ0FBQzs7NkdBTkwsZ0JBQWdCO2lHQUFoQixnQkFBZ0IsdUZBQ1gsZUFBZSxnRENkakMsNkJBQ0E7MkZEWWEsZ0JBQWdCO2tCQUw1QixTQUFTOytCQUNJLG1CQUFtQjswRUFLRSxTQUFTO3NCQUF2QyxZQUFZO3VCQUFDLGVBQWUiLCJzb3VyY2VzQ29udGVudCI6WyJcblxuaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQsIFZpZXdFbmNhcHN1bGF0aW9uLCBWaWV3Q2hpbGRyZW4sIFF1ZXJ5TGlzdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29sdW1uQ29tcG9uZW50IH0gZnJvbSAnLi9jb2x1bW4nO1xuLy8gaW1wb3J0IHsgTG9nLCBMZXZlbCB9IGZyb20gJ25nMi1sb2dnZXIvaW5kZXgnO1xuLy8gY29uc3QgbG9nID0gTG9nLmNyZWF0ZSgndGVzdCcpO1xuLy8gbG9nLmkoJ2FzZGFzJylcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdjb2x1bW5zLWNvbnRhaW5lcicsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2NvbHVtbnMuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL2NvbHVtbnMuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBDb2x1bW5zQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcbiAgICBAVmlld0NoaWxkcmVuKENvbHVtbkNvbXBvbmVudCkgY2hpbGRyZW5zOiBRdWVyeUxpc3Q8Q29sdW1uQ29tcG9uZW50PjtcblxuICAgIGNvbnN0cnVjdG9yKCkge1xuXG4gICAgfVxuICAgIG5nT25Jbml0KCkgeyB9XG59XG4iLCI8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG4iXX0=
@@ -0,0 +1,19 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { ColumnComponent, DirectiveGrow } from './column';
3
+ import { ColumnsComponent } from './columns.component';
4
+ import * as i0 from "@angular/core";
5
+ export class StaticColumnsModule {
6
+ }
7
+ StaticColumnsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: StaticColumnsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
8
+ StaticColumnsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: StaticColumnsModule, declarations: [ColumnsComponent, ColumnComponent, DirectiveGrow], exports: [ColumnsComponent, ColumnComponent, DirectiveGrow] });
9
+ StaticColumnsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: StaticColumnsModule, providers: [], imports: [[]] });
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: StaticColumnsModule, decorators: [{
11
+ type: NgModule,
12
+ args: [{
13
+ imports: [],
14
+ exports: [ColumnsComponent, ColumnComponent, DirectiveGrow],
15
+ declarations: [ColumnsComponent, ColumnComponent, DirectiveGrow],
16
+ providers: [],
17
+ }]
18
+ }] });
19
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1ucy5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlL3N0YXRpYy1jb2x1bW5zL3Byb2plY3RzL3N0YXRpYy1jb2x1bW5zL3NyYy9saWIvY29sdW1ucy5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUV6QyxPQUFPLEVBQUUsZUFBZSxFQUFFLGFBQWEsRUFBRSxNQUFNLFVBQVUsQ0FBQztBQUMxRCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQzs7QUFRdkQsTUFBTSxPQUFPLG1CQUFtQjs7Z0hBQW5CLG1CQUFtQjtpSEFBbkIsbUJBQW1CLGlCQUhiLGdCQUFnQixFQUFFLGVBQWUsRUFBRSxhQUFhLGFBRHJELGdCQUFnQixFQUFFLGVBQWUsRUFBRSxhQUFhO2lIQUlqRCxtQkFBbUIsYUFGakIsRUFBRSxZQUhKLEVBQUU7MkZBS0YsbUJBQW1CO2tCQU4vQixRQUFRO21CQUFDO29CQUNOLE9BQU8sRUFBRSxFQUFFO29CQUNYLE9BQU8sRUFBRSxDQUFDLGdCQUFnQixFQUFFLGVBQWUsRUFBRSxhQUFhLENBQUM7b0JBQzNELFlBQVksRUFBRSxDQUFDLGdCQUFnQixFQUFFLGVBQWUsRUFBRSxhQUFhLENBQUM7b0JBQ2hFLFNBQVMsRUFBRSxFQUFFO2lCQUNoQiIsInNvdXJjZXNDb250ZW50IjpbIlxuXG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBDb2x1bW5Db21wb25lbnQsIERpcmVjdGl2ZUdyb3cgfSBmcm9tICcuL2NvbHVtbic7XG5pbXBvcnQgeyBDb2x1bW5zQ29tcG9uZW50IH0gZnJvbSAnLi9jb2x1bW5zLmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW10sXG4gICAgZXhwb3J0czogW0NvbHVtbnNDb21wb25lbnQsIENvbHVtbkNvbXBvbmVudCwgRGlyZWN0aXZlR3Jvd10sXG4gICAgZGVjbGFyYXRpb25zOiBbQ29sdW1uc0NvbXBvbmVudCwgQ29sdW1uQ29tcG9uZW50LCBEaXJlY3RpdmVHcm93XSxcbiAgICBwcm92aWRlcnM6IFtdLFxufSlcbmV4cG9ydCBjbGFzcyBTdGF0aWNDb2x1bW5zTW9kdWxlIHsgfVxuIl19
@@ -0,0 +1,6 @@
1
+ export * from './column';
2
+ export * from './columns.component';
3
+ export * from './column/column-grow.directive';
4
+ export * from './column/column.component';
5
+ export * from './columns.module';
6
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlL3N0YXRpYy1jb2x1bW5zL3Byb2plY3RzL3N0YXRpYy1jb2x1bW5zL3NyYy9saWIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyxrQkFBa0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIlxuXG5leHBvcnQgKiBmcm9tICcuL2NvbHVtbic7XG5leHBvcnQgKiBmcm9tICcuL2NvbHVtbnMuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vY29sdW1uL2NvbHVtbi1ncm93LmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL2NvbHVtbi9jb2x1bW4uY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vY29sdW1ucy5tb2R1bGUnO1xuIl19
@@ -0,0 +1,2 @@
1
+ export * from './lib';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3RtcC1saWJzLWZvci1idW5kbGUvc3RhdGljLWNvbHVtbnMvcHJvamVjdHMvc3RhdGljLWNvbHVtbnMvc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxPQUFPLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xpYic7XG4iXX0=
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RhdGljLWNvbHVtbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlL3N0YXRpYy1jb2x1bW5zL3Byb2plY3RzL3N0YXRpYy1jb2x1bW5zL3NyYy9zdGF0aWMtY29sdW1ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
@@ -0,0 +1,83 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, HostBinding, Input, Directive, ViewChildren, NgModule } from '@angular/core';
3
+
4
+ class ColumnComponent {
5
+ constructor() {
6
+ // this.ccwidth = 90;
7
+ }
8
+ ngOnInit() { }
9
+ }
10
+ ColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: ColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
11
+ ColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.6", 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"] });
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: ColumnComponent, decorators: [{
13
+ type: Component,
14
+ args: [{ selector: 'column', template: '<ng-content></ng-content>', styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }]
15
+ }], ctorParameters: function () { return []; }, propDecorators: { width: [{
16
+ type: HostBinding,
17
+ args: ['style.flex.basis.px']
18
+ }, {
19
+ type: HostBinding,
20
+ args: ['style.minWidth.px']
21
+ }, {
22
+ type: Input
23
+ }] } });
24
+
25
+ class DirectiveGrow {
26
+ constructor(e, renderer) {
27
+ this.e = e;
28
+ this.renderer = renderer;
29
+ setTimeout(() => {
30
+ // e.nativeElement.style.flexGrow = 1;
31
+ renderer.setStyle(e.nativeElement, 'flexGrow', '1');
32
+ }, 0);
33
+ // renderer.setElementStyle(e.nativeElement, 'flexGrow', '1');
34
+ }
35
+ }
36
+ DirectiveGrow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: DirectiveGrow, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
37
+ DirectiveGrow.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.6", type: DirectiveGrow, selector: "[grow]", ngImport: i0 });
38
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: DirectiveGrow, decorators: [{
39
+ type: Directive,
40
+ args: [{
41
+ selector: '[grow]'
42
+ }]
43
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; } });
44
+
45
+ // import { Log, Level } from 'ng2-logger/index';
46
+ // const log = Log.create('test');
47
+ // log.i('asdas')
48
+ class ColumnsComponent {
49
+ constructor() {
50
+ }
51
+ ngOnInit() { }
52
+ }
53
+ ColumnsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: ColumnsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
54
+ ColumnsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.6", type: ColumnsComponent, selector: "columns-container", viewQueries: [{ propertyName: "childrens", predicate: ColumnComponent, descendants: true }], ngImport: i0, template: "<ng-content></ng-content>\n", styles: [":host{display:flex;width:100%;align-content:streach;justify-content:space-between}\n"] });
55
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: ColumnsComponent, decorators: [{
56
+ type: Component,
57
+ args: [{ selector: 'columns-container', template: "<ng-content></ng-content>\n", styles: [":host{display:flex;width:100%;align-content:streach;justify-content:space-between}\n"] }]
58
+ }], ctorParameters: function () { return []; }, propDecorators: { childrens: [{
59
+ type: ViewChildren,
60
+ args: [ColumnComponent]
61
+ }] } });
62
+
63
+ class StaticColumnsModule {
64
+ }
65
+ StaticColumnsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: StaticColumnsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
66
+ StaticColumnsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: StaticColumnsModule, declarations: [ColumnsComponent, ColumnComponent, DirectiveGrow], exports: [ColumnsComponent, ColumnComponent, DirectiveGrow] });
67
+ StaticColumnsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: StaticColumnsModule, providers: [], imports: [[]] });
68
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: StaticColumnsModule, decorators: [{
69
+ type: NgModule,
70
+ args: [{
71
+ imports: [],
72
+ exports: [ColumnsComponent, ColumnComponent, DirectiveGrow],
73
+ declarations: [ColumnsComponent, ColumnComponent, DirectiveGrow],
74
+ providers: [],
75
+ }]
76
+ }] });
77
+
78
+ /**
79
+ * Generated bundle index. Do not edit.
80
+ */
81
+
82
+ export { ColumnComponent, ColumnsComponent, DirectiveGrow, StaticColumnsModule };
83
+ //# sourceMappingURL=static-columns.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"static-columns.mjs","sources":["../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/column/column.component.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/column/column-grow.directive.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/columns.component.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/columns.component.html","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/columns.module.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/static-columns.ts"],"sourcesContent":["\n\nimport { Component, OnInit, Input, HostBinding } from '@angular/core';\n\n@Component({\n selector: 'column',\n template: '<ng-content></ng-content>',\n styleUrls: ['./column.component.scss']\n})\nexport class ColumnComponent implements OnInit {\n @HostBinding('style.flex.basis.px') @HostBinding('style.minWidth.px') @Input() width: number;\n\n constructor() {\n // this.ccwidth = 90;\n }\n\n ngOnInit() { }\n\n}\n","\n\nimport { Component, Directive, ElementRef, Renderer2 } from '@angular/core';\n\n\n@Directive({\n selector: '[grow]'\n})\nexport class DirectiveGrow {\n constructor(public e: ElementRef, public renderer: Renderer2) {\n setTimeout(() => {\n // e.nativeElement.style.flexGrow = 1;\n renderer.setStyle(e.nativeElement, 'flexGrow', '1')\n }, 0);\n\n // renderer.setElementStyle(e.nativeElement, 'flexGrow', '1');\n }\n}\n","\n\nimport { Component, OnInit, ViewEncapsulation, ViewChildren, QueryList } from '@angular/core';\nimport { ColumnComponent } from './column';\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})\nexport class ColumnsComponent implements OnInit {\n @ViewChildren(ColumnComponent) childrens: QueryList<ColumnComponent>;\n\n constructor() {\n\n }\n ngOnInit() { }\n}\n","<ng-content></ng-content>\n","\n\nimport { NgModule } from '@angular/core';\n\nimport { ColumnComponent, DirectiveGrow } from './column';\nimport { ColumnsComponent } from './columns.component';\n\n@NgModule({\n imports: [],\n exports: [ColumnsComponent, ColumnComponent, DirectiveGrow],\n declarations: [ColumnsComponent, ColumnComponent, DirectiveGrow],\n providers: [],\n})\nexport class StaticColumnsModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,83 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, HostBinding, Input, Directive, ViewChildren, NgModule } from '@angular/core';
3
+
4
+ class ColumnComponent {
5
+ constructor() {
6
+ // this.ccwidth = 90;
7
+ }
8
+ ngOnInit() { }
9
+ }
10
+ ColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: ColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
11
+ ColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.6", 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"] });
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: ColumnComponent, decorators: [{
13
+ type: Component,
14
+ args: [{ selector: 'column', template: '<ng-content></ng-content>', styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }]
15
+ }], ctorParameters: function () { return []; }, propDecorators: { width: [{
16
+ type: HostBinding,
17
+ args: ['style.flex.basis.px']
18
+ }, {
19
+ type: HostBinding,
20
+ args: ['style.minWidth.px']
21
+ }, {
22
+ type: Input
23
+ }] } });
24
+
25
+ class DirectiveGrow {
26
+ constructor(e, renderer) {
27
+ this.e = e;
28
+ this.renderer = renderer;
29
+ setTimeout(() => {
30
+ // e.nativeElement.style.flexGrow = 1;
31
+ renderer.setStyle(e.nativeElement, 'flexGrow', '1');
32
+ }, 0);
33
+ // renderer.setElementStyle(e.nativeElement, 'flexGrow', '1');
34
+ }
35
+ }
36
+ DirectiveGrow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: DirectiveGrow, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
37
+ DirectiveGrow.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.6", type: DirectiveGrow, selector: "[grow]", ngImport: i0 });
38
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: DirectiveGrow, decorators: [{
39
+ type: Directive,
40
+ args: [{
41
+ selector: '[grow]'
42
+ }]
43
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; } });
44
+
45
+ // import { Log, Level } from 'ng2-logger/index';
46
+ // const log = Log.create('test');
47
+ // log.i('asdas')
48
+ class ColumnsComponent {
49
+ constructor() {
50
+ }
51
+ ngOnInit() { }
52
+ }
53
+ ColumnsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: ColumnsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
54
+ ColumnsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.6", type: ColumnsComponent, selector: "columns-container", viewQueries: [{ propertyName: "childrens", predicate: ColumnComponent, descendants: true }], ngImport: i0, template: "<ng-content></ng-content>\n", styles: [":host{display:flex;width:100%;align-content:streach;justify-content:space-between}\n"] });
55
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: ColumnsComponent, decorators: [{
56
+ type: Component,
57
+ args: [{ selector: 'columns-container', template: "<ng-content></ng-content>\n", styles: [":host{display:flex;width:100%;align-content:streach;justify-content:space-between}\n"] }]
58
+ }], ctorParameters: function () { return []; }, propDecorators: { childrens: [{
59
+ type: ViewChildren,
60
+ args: [ColumnComponent]
61
+ }] } });
62
+
63
+ class StaticColumnsModule {
64
+ }
65
+ StaticColumnsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: StaticColumnsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
66
+ StaticColumnsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: StaticColumnsModule, declarations: [ColumnsComponent, ColumnComponent, DirectiveGrow], exports: [ColumnsComponent, ColumnComponent, DirectiveGrow] });
67
+ StaticColumnsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: StaticColumnsModule, providers: [], imports: [[]] });
68
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.6", ngImport: i0, type: StaticColumnsModule, decorators: [{
69
+ type: NgModule,
70
+ args: [{
71
+ imports: [],
72
+ exports: [ColumnsComponent, ColumnComponent, DirectiveGrow],
73
+ declarations: [ColumnsComponent, ColumnComponent, DirectiveGrow],
74
+ providers: [],
75
+ }]
76
+ }] });
77
+
78
+ /**
79
+ * Generated bundle index. Do not edit.
80
+ */
81
+
82
+ export { ColumnComponent, ColumnsComponent, DirectiveGrow, StaticColumnsModule };
83
+ //# sourceMappingURL=static-columns.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"static-columns.mjs","sources":["../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/column/column.component.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/column/column-grow.directive.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/columns.component.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/columns.component.html","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/columns.module.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/static-columns.ts"],"sourcesContent":["\n\nimport { Component, OnInit, Input, HostBinding } from '@angular/core';\n\n@Component({\n selector: 'column',\n template: '<ng-content></ng-content>',\n styleUrls: ['./column.component.scss']\n})\nexport class ColumnComponent implements OnInit {\n @HostBinding('style.flex.basis.px') @HostBinding('style.minWidth.px') @Input() width: number;\n\n constructor() {\n // this.ccwidth = 90;\n }\n\n ngOnInit() { }\n\n}\n","\n\nimport { Component, Directive, ElementRef, Renderer2 } from '@angular/core';\n\n\n@Directive({\n selector: '[grow]'\n})\nexport class DirectiveGrow {\n constructor(public e: ElementRef, public renderer: Renderer2) {\n setTimeout(() => {\n // e.nativeElement.style.flexGrow = 1;\n renderer.setStyle(e.nativeElement, 'flexGrow', '1')\n }, 0);\n\n // renderer.setElementStyle(e.nativeElement, 'flexGrow', '1');\n }\n}\n","\n\nimport { Component, OnInit, ViewEncapsulation, ViewChildren, QueryList } from '@angular/core';\nimport { ColumnComponent } from './column';\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})\nexport class ColumnsComponent implements OnInit {\n @ViewChildren(ColumnComponent) childrens: QueryList<ColumnComponent>;\n\n constructor() {\n\n }\n ngOnInit() { }\n}\n","<ng-content></ng-content>\n","\n\nimport { NgModule } from '@angular/core';\n\nimport { ColumnComponent, DirectiveGrow } from './column';\nimport { ColumnsComponent } from './columns.component';\n\n@NgModule({\n imports: [],\n exports: [ColumnsComponent, ColumnComponent, DirectiveGrow],\n declarations: [ColumnsComponent, ColumnComponent, DirectiveGrow],\n providers: [],\n})\nexport class StaticColumnsModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,9 @@
1
+ import { ElementRef, Renderer2 } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DirectiveGrow {
4
+ e: ElementRef;
5
+ renderer: Renderer2;
6
+ constructor(e: ElementRef, renderer: Renderer2);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DirectiveGrow, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DirectiveGrow, "[grow]", never, {}, {}, never>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ColumnComponent implements OnInit {
4
+ width: number;
5
+ constructor();
6
+ ngOnInit(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ColumnComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnComponent, "column", never, { "width": "width"; }, {}, never, ["*"]>;
9
+ }
@@ -0,0 +1,2 @@
1
+ export * from './column.component';
2
+ export * from './column-grow.directive';
@@ -0,0 +1,10 @@
1
+ import { OnInit, QueryList } from '@angular/core';
2
+ import { ColumnComponent } from './column';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ColumnsComponent implements OnInit {
5
+ childrens: QueryList<ColumnComponent>;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnsComponent, "columns-container", never, {}, {}, never, ["*"]>;
10
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./columns.component";
3
+ import * as i2 from "./column/column.component";
4
+ import * as i3 from "./column/column-grow.directive";
5
+ export declare class StaticColumnsModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<StaticColumnsModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<StaticColumnsModule, [typeof i1.ColumnsComponent, typeof i2.ColumnComponent, typeof i3.DirectiveGrow], never, [typeof i1.ColumnsComponent, typeof i2.ColumnComponent, typeof i3.DirectiveGrow]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<StaticColumnsModule>;
9
+ }
@@ -0,0 +1,5 @@
1
+ export * from './column';
2
+ export * from './columns.component';
3
+ export * from './column/column-grow.directive';
4
+ export * from './column/column.component';
5
+ export * from './columns.module';
@@ -1,6 +1,31 @@
1
1
  {
2
- "dependencies": {},
3
- "devDependencies": {},
4
- "peerDependencies": {},
5
- "main": "esm2015/static-columns.js"
2
+ "name": "static-columns",
3
+ "version": "0.0.1",
4
+ "peerDependencies": {
5
+ "@angular/common": "^13.2.0",
6
+ "@angular/core": "^13.2.0"
7
+ },
8
+ "dependencies": {
9
+ "tslib": "^2.3.0"
10
+ },
11
+ "module": "fesm2015/static-columns.mjs",
12
+ "es2020": "fesm2020/static-columns.mjs",
13
+ "esm2020": "esm2020/static-columns.mjs",
14
+ "fesm2020": "fesm2020/static-columns.mjs",
15
+ "fesm2015": "fesm2015/static-columns.mjs",
16
+ "typings": "static-columns.d.ts",
17
+ "exports": {
18
+ "./package.json": {
19
+ "default": "./package.json"
20
+ },
21
+ ".": {
22
+ "types": "./static-columns.d.ts",
23
+ "esm2020": "./esm2020/static-columns.mjs",
24
+ "es2020": "./fesm2020/static-columns.mjs",
25
+ "es2015": "./fesm2015/static-columns.mjs",
26
+ "node": "./fesm2015/static-columns.mjs",
27
+ "default": "./fesm2020/static-columns.mjs"
28
+ }
29
+ },
30
+ "sideEffects": false
6
31
  }
@@ -0,0 +1 @@
1
+ export * from './lib';
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="static-columns" />
5
+ export * from './public-api';
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './lib';
package/index.js CHANGED
@@ -1,9 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./log"), exports);
5
- tslib_1.__exportStar(require("./level"), exports);
6
- tslib_1.__exportStar(require("./helpers"), exports);
7
- tslib_1.__exportStar(require("./logger"), exports);
8
- tslib_1.__exportStar(require("./display"), exports);
9
- //# sourceMappingURL=index.js.map
4
+ (0, tslib_1.__exportStar)(require("./lib"), exports);
5
+ //# sourceMappingURL=index.js.map
6
+ // @fixed
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../components/index.ts"],"names":[],"mappings":";;;AAEA,gDAAsB;AACtB,kDAAwB;AACxB,oDAA0B;AAC1B,mDAAyB;AACzB,oDAA0B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,qDAAsB"}
@@ -0,0 +1,6 @@
1
+ import { ElementRef, Renderer2 } from '@angular/core';
2
+ export declare class DirectiveGrow {
3
+ e: ElementRef;
4
+ renderer: Renderer2;
5
+ constructor(e: ElementRef, renderer: Renderer2);
6
+ }
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DirectiveGrow = void 0;
4
+ var tslib_1 = require("tslib");
5
+ var core_1 = require("@angular/core");
6
+ var DirectiveGrow = /** @class */ (function () {
7
+ function DirectiveGrow(e, renderer) {
8
+ this.e = e;
9
+ this.renderer = renderer;
10
+ setTimeout(function () {
11
+ // e.nativeElement.style.flexGrow = 1;
12
+ renderer.setStyle(e.nativeElement, 'flexGrow', '1');
13
+ }, 0);
14
+ // renderer.setElementStyle(e.nativeElement, 'flexGrow', '1');
15
+ }
16
+ DirectiveGrow = (0, tslib_1.__decorate)([
17
+ (0, core_1.Directive)({
18
+ selector: '[grow]'
19
+ }),
20
+ (0, tslib_1.__metadata)("design:paramtypes", [core_1.ElementRef, core_1.Renderer2])
21
+ ], DirectiveGrow);
22
+ return DirectiveGrow;
23
+ }());
24
+ exports.DirectiveGrow = DirectiveGrow;
25
+ //# sourceMappingURL=column-grow.directive.js.map
26
+ // @fixed
@@ -0,0 +1 @@
1
+ {"version":3,"file":"column-grow.directive.js","sourceRoot":"","sources":["../../../src/lib/column/column-grow.directive.ts"],"names":[],"mappings":";;;;AAAA,sCAA4E;AAM5E;IACE,uBAAmB,CAAa,EAAS,QAAmB;QAAzC,MAAC,GAAD,CAAC,CAAY;QAAS,aAAQ,GAAR,QAAQ,CAAW;QAC1D,UAAU,CAAC;YACT,sCAAsC;YACtC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,aAAa,EAAE,UAAU,EAAE,GAAG,CAAC,CAAA;QACrD,CAAC,EAAE,CAAC,CAAC,CAAC;QAEN,8DAA8D;IAChE,CAAC;IARU,aAAa;QAHzB,IAAA,gBAAS,EAAC;YACT,QAAQ,EAAE,QAAQ;SACnB,CAAC;sDAEsB,iBAAU,EAAmB,gBAAS;OADjD,aAAa,CASzB;IAAD,oBAAC;CAAA,AATD,IASC;AATY,sCAAa"}
@@ -0,0 +1,6 @@
1
+ import { OnInit } from '@angular/core';
2
+ export declare class ColumnComponent implements OnInit {
3
+ width: number;
4
+ constructor();
5
+ ngOnInit(): void;
6
+ }
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ColumnComponent = void 0;
4
+ var tslib_1 = require("tslib");
5
+ var core_1 = require("@angular/core");
6
+ var ColumnComponent = /** @class */ (function () {
7
+ function ColumnComponent() {
8
+ // this.ccwidth = 90;
9
+ }
10
+ ColumnComponent.prototype.ngOnInit = function () { };
11
+ (0, tslib_1.__decorate)([
12
+ (0, core_1.HostBinding)('style.flex.basis.px'),
13
+ (0, core_1.HostBinding)('style.minWidth.px'),
14
+ (0, core_1.Input)(),
15
+ (0, tslib_1.__metadata)("design:type", Number)
16
+ ], ColumnComponent.prototype, "width", void 0);
17
+ ColumnComponent = (0, tslib_1.__decorate)([
18
+ (0, core_1.Component)({
19
+ selector: 'column',
20
+ template: '<ng-content></ng-content>',
21
+ styleUrls: ['./column.component.scss']
22
+ }),
23
+ (0, tslib_1.__metadata)("design:paramtypes", [])
24
+ ], ColumnComponent);
25
+ return ColumnComponent;
26
+ }());
27
+ exports.ColumnComponent = ColumnComponent;
28
+ //# sourceMappingURL=column.component.js.map
29
+ // @fixed
@@ -0,0 +1 @@
1
+ {"version":3,"file":"column.component.js","sourceRoot":"","sources":["../../../src/lib/column/column.component.ts"],"names":[],"mappings":";;;;AAAA,sCAAsE;AAOtE;IAGI;QACI,qBAAqB;IACzB,CAAC;IAED,kCAAQ,GAAR,cAAa,CAAC;IANiE;QAA9E,IAAA,kBAAW,EAAC,qBAAqB,CAAC;QAAE,IAAA,kBAAW,EAAC,mBAAmB,CAAC;QAAE,IAAA,YAAK,GAAE;;kDAAe;IADpF,eAAe;QAL3B,IAAA,gBAAS,EAAC;YACP,QAAQ,EAAE,QAAQ;YAClB,QAAQ,EAAE,2BAA2B;YACrC,SAAS,EAAE,CAAC,yBAAyB,CAAC;SACzC,CAAC;;OACW,eAAe,CAS3B;IAAD,sBAAC;CAAA,AATD,IASC;AATY,0CAAe"}
@@ -0,0 +1,2 @@
1
+ export * from './column.component';
2
+ export * from './column-grow.directive';
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var tslib_1 = require("tslib");
4
+ (0, tslib_1.__exportStar)(require("./column.component"), exports);
5
+ (0, tslib_1.__exportStar)(require("./column-grow.directive"), exports);
6
+ //# sourceMappingURL=index.js.map
7
+ // @fixed
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/column/index.ts"],"names":[],"mappings":";;;AAAA,kEAAmC;AACnC,uEAAwC"}
@@ -0,0 +1,7 @@
1
+ import { OnInit, QueryList } from '@angular/core';
2
+ import { ColumnComponent } from './column';
3
+ export declare class ColumnsComponent implements OnInit {
4
+ childrens: QueryList<ColumnComponent>;
5
+ constructor();
6
+ ngOnInit(): void;
7
+ }
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ColumnsComponent = void 0;
4
+ var tslib_1 = require("tslib");
5
+ var core_1 = require("@angular/core");
6
+ var column_1 = require("./column");
7
+ // import { Log, Level } from 'ng2-logger/index';
8
+ // const log = Log.create('test');
9
+ // log.i('asdas')
10
+ var ColumnsComponent = /** @class */ (function () {
11
+ function ColumnsComponent() {
12
+ }
13
+ ColumnsComponent.prototype.ngOnInit = function () { };
14
+ (0, tslib_1.__decorate)([
15
+ (0, core_1.ViewChildren)(column_1.ColumnComponent),
16
+ (0, tslib_1.__metadata)("design:type", core_1.QueryList)
17
+ ], ColumnsComponent.prototype, "childrens", void 0);
18
+ ColumnsComponent = (0, tslib_1.__decorate)([
19
+ (0, core_1.Component)({
20
+ selector: 'columns-container',
21
+ templateUrl: './columns.component.html',
22
+ styleUrls: ['./columns.component.scss']
23
+ }),
24
+ (0, tslib_1.__metadata)("design:paramtypes", [])
25
+ ], ColumnsComponent);
26
+ return ColumnsComponent;
27
+ }());
28
+ exports.ColumnsComponent = ColumnsComponent;
29
+ //# sourceMappingURL=columns.component.js.map
30
+ // @fixed
@@ -0,0 +1 @@
1
+ {"version":3,"file":"columns.component.js","sourceRoot":"","sources":["../../src/lib/columns.component.ts"],"names":[],"mappings":";;;;AAAA,sCAA8F;AAC9F,mCAA2C;AAC3C,iDAAiD;AACjD,kCAAkC;AAClC,iBAAiB;AAOjB;IAGI;IAEA,CAAC;IACD,mCAAQ,GAAR,cAAa,CAAC;IALiB;QAA9B,IAAA,mBAAY,EAAC,wBAAe,CAAC;+CAAY,gBAAS;uDAAkB;IAD5D,gBAAgB;QAL5B,IAAA,gBAAS,EAAC;YACP,QAAQ,EAAE,mBAAmB;YAC7B,WAAW,EAAE,0BAA0B;YACvC,SAAS,EAAE,CAAC,0BAA0B,CAAC;SAC1C,CAAC;;OACW,gBAAgB,CAO5B;IAAD,uBAAC;CAAA,AAPD,IAOC;AAPY,4CAAgB"}
@@ -0,0 +1,2 @@
1
+ export declare class StaticColumnsModule {
2
+ }