static-columns 13.0.23 → 13.1.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/app.component.js +2 -2
- package/app/app.component.js.map +1 -1
- package/app/app.module.js +1 -1
- package/app/app.module.js.map +1 -1
- package/browser/esm2020/lib/column/column-grow.directive.mjs +5 -5
- package/browser/esm2020/lib/column/column.component.mjs +4 -4
- package/browser/esm2020/lib/columns.component.mjs +5 -5
- package/browser/esm2020/lib/columns.module.mjs +5 -5
- package/browser/fesm2015/static-columns.mjs +13 -13
- package/browser/fesm2015/static-columns.mjs.map +1 -1
- package/browser/fesm2020/static-columns.mjs +13 -13
- package/browser/fesm2020/static-columns.mjs.map +1 -1
- package/client/esm2020/lib/column/column-grow.directive.mjs +5 -5
- package/client/esm2020/lib/column/column.component.mjs +4 -4
- package/client/esm2020/lib/columns.component.mjs +5 -5
- package/client/esm2020/lib/columns.module.mjs +5 -5
- package/client/fesm2015/static-columns.mjs +13 -13
- package/client/fesm2015/static-columns.mjs.map +1 -1
- package/client/fesm2020/static-columns.mjs +13 -13
- package/client/fesm2020/static-columns.mjs.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/lib/column/column-grow.directive.js +2 -2
- package/lib/column/column-grow.directive.js.map +1 -1
- package/lib/column/column.component.js +4 -4
- package/lib/column/column.component.js.map +1 -1
- package/lib/column/index.js +2 -2
- package/lib/column/index.js.map +1 -1
- package/lib/columns.component.js +4 -4
- package/lib/columns.component.js.map +1 -1
- package/lib/columns.module.js +1 -1
- package/lib/columns.module.js.map +1 -1
- package/lib/index.js +5 -5
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/package.json_tnp.json5 +8 -1
- package/tmp-environment.json +58 -55
- package/websql/README.md +24 -0
- package/websql/esm2020/lib/column/column-grow.directive.mjs +22 -0
- package/websql/esm2020/lib/column/column.component.mjs +23 -0
- package/websql/esm2020/lib/column/index.mjs +3 -0
- package/websql/esm2020/lib/columns.component.mjs +21 -0
- package/websql/esm2020/lib/columns.module.mjs +19 -0
- package/websql/esm2020/lib/index.mjs +6 -0
- package/websql/esm2020/public-api.mjs +2 -0
- package/websql/esm2020/static-columns.mjs +5 -0
- package/websql/fesm2015/static-columns.mjs +83 -0
- package/websql/fesm2015/static-columns.mjs.map +1 -0
- package/websql/fesm2020/static-columns.mjs +83 -0
- package/websql/fesm2020/static-columns.mjs.map +1 -0
- package/websql/lib/column/column-grow.directive.d.ts +9 -0
- package/websql/lib/column/column.component.d.ts +9 -0
- package/websql/lib/column/index.d.ts +2 -0
- package/websql/lib/columns.component.d.ts +10 -0
- package/websql/lib/columns.module.d.ts +9 -0
- package/websql/lib/index.d.ts +5 -0
- package/websql/package.json +31 -0
- package/websql/public-api.d.ts +1 -0
- package/websql/static-columns.d.ts +5 -0
|
@@ -7,9 +7,9 @@ class ColumnComponent {
|
|
|
7
7
|
}
|
|
8
8
|
ngOnInit() { }
|
|
9
9
|
}
|
|
10
|
-
ColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
11
|
-
ColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
12
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
10
|
+
ColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
11
|
+
ColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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.3.11", ngImport: i0, type: ColumnComponent, decorators: [{
|
|
13
13
|
type: Component,
|
|
14
14
|
args: [{ selector: 'column', template: '<ng-content></ng-content>', styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] }]
|
|
15
15
|
}], ctorParameters: function () { return []; }, propDecorators: { width: [{
|
|
@@ -33,9 +33,9 @@ class DirectiveGrow {
|
|
|
33
33
|
// renderer.setElementStyle(e.nativeElement, 'flexGrow', '1');
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
|
-
DirectiveGrow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
37
|
-
DirectiveGrow.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.
|
|
38
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
36
|
+
DirectiveGrow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", 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.3.11", type: DirectiveGrow, selector: "[grow]", ngImport: i0 });
|
|
38
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DirectiveGrow, decorators: [{
|
|
39
39
|
type: Directive,
|
|
40
40
|
args: [{
|
|
41
41
|
selector: '[grow]'
|
|
@@ -50,9 +50,9 @@ class ColumnsComponent {
|
|
|
50
50
|
}
|
|
51
51
|
ngOnInit() { }
|
|
52
52
|
}
|
|
53
|
-
ColumnsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
54
|
-
ColumnsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
55
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
53
|
+
ColumnsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ColumnsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
54
|
+
ColumnsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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.3.11", ngImport: i0, type: ColumnsComponent, decorators: [{
|
|
56
56
|
type: Component,
|
|
57
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
58
|
}], ctorParameters: function () { return []; }, propDecorators: { childrens: [{
|
|
@@ -62,10 +62,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
62
62
|
|
|
63
63
|
class StaticColumnsModule {
|
|
64
64
|
}
|
|
65
|
-
StaticColumnsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
66
|
-
StaticColumnsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.
|
|
67
|
-
StaticColumnsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.
|
|
68
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
65
|
+
StaticColumnsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: StaticColumnsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
66
|
+
StaticColumnsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: StaticColumnsModule, declarations: [ColumnsComponent, ColumnComponent, DirectiveGrow], exports: [ColumnsComponent, ColumnComponent, DirectiveGrow] });
|
|
67
|
+
StaticColumnsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: StaticColumnsModule, providers: [], imports: [[]] });
|
|
68
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: StaticColumnsModule, decorators: [{
|
|
69
69
|
type: NgModule,
|
|
70
70
|
args: [{
|
|
71
71
|
imports: [],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"static-columns.mjs","sources":["../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/column/column.component.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/column/column-grow.directive.ts","../../../tmp-libs-for-bundle/static-columns/projects/static-columns/src/lib/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":["import { Component, OnInit, Input, HostBinding } from '@angular/core';\n\n@Component({\n selector: 'column',\n template: '<ng-content></ng-content>',\n styleUrls: ['./column.component.scss']\n})\nexport class ColumnComponent implements OnInit {\n @HostBinding('style.flex.basis.px') @HostBinding('style.minWidth.px') @Input() width: number;\n\n constructor() {\n // this.ccwidth = 90;\n }\n\n ngOnInit() { }\n\n}\n","import { Component, Directive, ElementRef, Renderer2 } from '@angular/core';\n\n\n@Directive({\n selector: '[grow]'\n})\nexport class DirectiveGrow {\n constructor(public e: ElementRef, public renderer: Renderer2) {\n setTimeout(() => {\n // 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","import { 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","import { NgModule } from '@angular/core';\n\nimport { ColumnComponent, DirectiveGrow } from './column';\nimport { ColumnsComponent } from './columns.component';\n\n@NgModule({\n imports: [],\n exports: [ColumnsComponent, ColumnComponent, DirectiveGrow],\n declarations: [ColumnsComponent, ColumnComponent, DirectiveGrow],\n providers: [],\n})\nexport class StaticColumnsModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAOa,eAAe,CAAA;AAGxB,IAAA,WAAA,GAAA;;KAEC;AAED,IAAA,QAAQ,MAAM;;
|
|
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":["import { Component, OnInit, Input, HostBinding } from '@angular/core';\n\n@Component({\n selector: 'column',\n template: '<ng-content></ng-content>',\n styleUrls: ['./column.component.scss']\n})\nexport class ColumnComponent implements OnInit {\n @HostBinding('style.flex.basis.px') @HostBinding('style.minWidth.px') @Input() width: number;\n\n constructor() {\n // this.ccwidth = 90;\n }\n\n ngOnInit() { }\n\n}\n","import { Component, Directive, ElementRef, Renderer2 } from '@angular/core';\n\n\n@Directive({\n selector: '[grow]'\n})\nexport class DirectiveGrow {\n constructor(public e: ElementRef, public renderer: Renderer2) {\n setTimeout(() => {\n // 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","import { 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","import { NgModule } from '@angular/core';\n\nimport { ColumnComponent, DirectiveGrow } from './column';\nimport { ColumnsComponent } from './columns.component';\n\n@NgModule({\n imports: [],\n exports: [ColumnsComponent, ColumnComponent, DirectiveGrow],\n declarations: [ColumnsComponent, ColumnComponent, DirectiveGrow],\n providers: [],\n})\nexport class StaticColumnsModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
var tslib_1 = require("tslib");
|
|
4
|
-
|
|
4
|
+
tslib_1.__exportStar(require("./lib"), exports);
|
|
5
5
|
//# sourceMappingURL=/Users/dfilipiak/projects/npm/static-columns/tmp-bundle-release/bundle/project/static-columns/bundle-nocutsrc/index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,gDAAsB"}
|
|
@@ -13,11 +13,11 @@ var DirectiveGrow = /** @class */ (function () {
|
|
|
13
13
|
}, 0);
|
|
14
14
|
// renderer.setElementStyle(e.nativeElement, 'flexGrow', '1');
|
|
15
15
|
}
|
|
16
|
-
DirectiveGrow =
|
|
16
|
+
DirectiveGrow = tslib_1.__decorate([
|
|
17
17
|
(0, core_1.Directive)({
|
|
18
18
|
selector: '[grow]'
|
|
19
19
|
}),
|
|
20
|
-
|
|
20
|
+
tslib_1.__metadata("design:paramtypes", [core_1.ElementRef, core_1.Renderer2])
|
|
21
21
|
], DirectiveGrow);
|
|
22
22
|
return DirectiveGrow;
|
|
23
23
|
}());
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"column-grow.directive.js","sourceRoot":"","sources":["../../../
|
|
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;iDAEsB,iBAAU,EAAmB,gBAAS;OADjD,aAAa,CASzB;IAAD,oBAAC;CAAA,AATD,IASC;AATY,sCAAa"}
|
|
@@ -8,19 +8,19 @@ var ColumnComponent = /** @class */ (function () {
|
|
|
8
8
|
// this.ccwidth = 90;
|
|
9
9
|
}
|
|
10
10
|
ColumnComponent.prototype.ngOnInit = function () { };
|
|
11
|
-
|
|
11
|
+
tslib_1.__decorate([
|
|
12
12
|
(0, core_1.HostBinding)('style.flex.basis.px'),
|
|
13
13
|
(0, core_1.HostBinding)('style.minWidth.px'),
|
|
14
14
|
(0, core_1.Input)(),
|
|
15
|
-
|
|
15
|
+
tslib_1.__metadata("design:type", Number)
|
|
16
16
|
], ColumnComponent.prototype, "width", void 0);
|
|
17
|
-
ColumnComponent =
|
|
17
|
+
ColumnComponent = tslib_1.__decorate([
|
|
18
18
|
(0, core_1.Component)({
|
|
19
19
|
selector: 'column',
|
|
20
20
|
template: '<ng-content></ng-content>',
|
|
21
21
|
styleUrls: ['./column.component.scss']
|
|
22
22
|
}),
|
|
23
|
-
|
|
23
|
+
tslib_1.__metadata("design:paramtypes", [])
|
|
24
24
|
], ColumnComponent);
|
|
25
25
|
return ColumnComponent;
|
|
26
26
|
}());
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"column.component.js","sourceRoot":"","sources":["../../../
|
|
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"}
|
package/lib/column/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
var tslib_1 = require("tslib");
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
tslib_1.__exportStar(require("./column.component"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./column-grow.directive"), exports);
|
|
6
6
|
//# sourceMappingURL=/Users/dfilipiak/projects/npm/static-columns/tmp-bundle-release/bundle/project/static-columns/bundle-nocutsrc/lib/column/index.js.map
|
package/lib/column/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/column/index.ts"],"names":[],"mappings":";;;AAAA,6DAAmC;AACnC,kEAAwC"}
|
package/lib/columns.component.js
CHANGED
|
@@ -11,17 +11,17 @@ var ColumnsComponent = /** @class */ (function () {
|
|
|
11
11
|
function ColumnsComponent() {
|
|
12
12
|
}
|
|
13
13
|
ColumnsComponent.prototype.ngOnInit = function () { };
|
|
14
|
-
|
|
14
|
+
tslib_1.__decorate([
|
|
15
15
|
(0, core_1.ViewChildren)(column_1.ColumnComponent),
|
|
16
|
-
|
|
16
|
+
tslib_1.__metadata("design:type", core_1.QueryList)
|
|
17
17
|
], ColumnsComponent.prototype, "childrens", void 0);
|
|
18
|
-
ColumnsComponent =
|
|
18
|
+
ColumnsComponent = tslib_1.__decorate([
|
|
19
19
|
(0, core_1.Component)({
|
|
20
20
|
selector: 'columns-container',
|
|
21
21
|
templateUrl: './columns.component.html',
|
|
22
22
|
styleUrls: ['./columns.component.scss']
|
|
23
23
|
}),
|
|
24
|
-
|
|
24
|
+
tslib_1.__metadata("design:paramtypes", [])
|
|
25
25
|
], ColumnsComponent);
|
|
26
26
|
return ColumnsComponent;
|
|
27
27
|
}());
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"columns.component.js","sourceRoot":"","sources":["../../
|
|
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;0CAAY,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"}
|
package/lib/columns.module.js
CHANGED
|
@@ -8,7 +8,7 @@ var columns_component_1 = require("./columns.component");
|
|
|
8
8
|
var StaticColumnsModule = /** @class */ (function () {
|
|
9
9
|
function StaticColumnsModule() {
|
|
10
10
|
}
|
|
11
|
-
StaticColumnsModule =
|
|
11
|
+
StaticColumnsModule = tslib_1.__decorate([
|
|
12
12
|
(0, core_1.NgModule)({
|
|
13
13
|
imports: [],
|
|
14
14
|
exports: [columns_component_1.ColumnsComponent, column_1.ColumnComponent, column_1.DirectiveGrow],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"columns.module.js","sourceRoot":"","sources":["../../
|
|
1
|
+
{"version":3,"file":"columns.module.js","sourceRoot":"","sources":["../../src/lib/columns.module.ts"],"names":[],"mappings":";;;;AAAA,sCAAyC;AAEzC,mCAA0D;AAC1D,yDAAuD;AAQvD;IAAA;IAAmC,CAAC;IAAvB,mBAAmB;QAN/B,IAAA,eAAQ,EAAC;YACN,OAAO,EAAE,EAAE;YACX,OAAO,EAAE,CAAC,oCAAgB,EAAE,wBAAe,EAAE,sBAAa,CAAC;YAC3D,YAAY,EAAE,CAAC,oCAAgB,EAAE,wBAAe,EAAE,sBAAa,CAAC;YAChE,SAAS,EAAE,EAAE;SAChB,CAAC;OACW,mBAAmB,CAAI;IAAD,0BAAC;CAAA,AAApC,IAAoC;AAAvB,kDAAmB"}
|
package/lib/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
var tslib_1 = require("tslib");
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
tslib_1.__exportStar(require("./column"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./columns.component"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./column/column-grow.directive"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./column/column.component"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./columns.module"), exports);
|
|
9
9
|
//# sourceMappingURL=/Users/dfilipiak/projects/npm/static-columns/tmp-bundle-release/bundle/project/static-columns/bundle-nocutsrc/lib/index.js.map
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/lib/index.ts"],"names":[],"mappings":";;;AAAA,mDAAyB;AACzB,8DAAoC;AACpC,yEAA+C;AAC/C,oEAA0C;AAC1C,2DAAiC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "static-columns",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.1.25",
|
|
4
4
|
"description": "Static columns with flexbox for Agnular2",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"homepage": "https://github.com/darekf77/static-columns#readme",
|
|
25
25
|
"dependencies": {},
|
|
26
26
|
"private": false,
|
|
27
|
-
"lastBuildTagHash": "
|
|
27
|
+
"lastBuildTagHash": "c4e84e3016415d05f46212b6638f2bfb379fc14f",
|
|
28
28
|
"devDependencies": {}
|
|
29
29
|
}
|
package/package.json_tnp.json5
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
"README.md",
|
|
4
4
|
"screen.png"
|
|
5
5
|
],
|
|
6
|
+
|
|
6
7
|
"overrided": {
|
|
7
8
|
"ignoreDepsPattern": [],
|
|
8
9
|
"includeAsDev": [],
|
|
@@ -10,12 +11,16 @@
|
|
|
10
11
|
"dependencies": {},
|
|
11
12
|
"linkedFolders": []
|
|
12
13
|
},
|
|
14
|
+
|
|
13
15
|
"linkedProjects": [],
|
|
16
|
+
'linkedRepos': [],
|
|
17
|
+
|
|
14
18
|
"libReleaseOptions": {
|
|
15
19
|
"nodts": false,
|
|
16
20
|
"obscure": false,
|
|
17
21
|
"ugly": false
|
|
18
22
|
},
|
|
23
|
+
|
|
19
24
|
"type": "isomorphic-lib",
|
|
20
25
|
"isCoreProject": false,
|
|
21
26
|
"version": "v3",
|
|
@@ -26,6 +31,7 @@
|
|
|
26
31
|
"description": "Static columns with flexbox for Agnular2",
|
|
27
32
|
"author": "Dariusz Filipiak",
|
|
28
33
|
"homepage": "https://github.com/darekf77/static-columns#readme",
|
|
34
|
+
|
|
29
35
|
"keywords": [
|
|
30
36
|
"angular2",
|
|
31
37
|
"static",
|
|
@@ -36,5 +42,6 @@
|
|
|
36
42
|
"flexbox",
|
|
37
43
|
"columns"
|
|
38
44
|
],
|
|
39
|
-
|
|
45
|
+
|
|
46
|
+
"workerPlugins": {},
|
|
40
47
|
}
|
package/tmp-environment.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"linkedFolders": []
|
|
18
18
|
},
|
|
19
19
|
"linkedProjects": [],
|
|
20
|
+
"linkedRepos": [],
|
|
20
21
|
"libReleaseOptions": {
|
|
21
22
|
"nodts": false,
|
|
22
23
|
"obscure": false,
|
|
@@ -45,7 +46,7 @@
|
|
|
45
46
|
"workerPlugins": {}
|
|
46
47
|
},
|
|
47
48
|
"name": "static-columns",
|
|
48
|
-
"version": "13.
|
|
49
|
+
"version": "13.1.25",
|
|
49
50
|
"description": "Static columns with flexbox for Agnular2",
|
|
50
51
|
"repository": {
|
|
51
52
|
"type": "git",
|
|
@@ -68,23 +69,22 @@
|
|
|
68
69
|
},
|
|
69
70
|
"homepage": "https://github.com/darekf77/static-columns#readme",
|
|
70
71
|
"dependencies": {
|
|
71
|
-
"@angular-devkit/build-angular": "~13.
|
|
72
|
-
"@angular-devkit/core": "~13.
|
|
73
|
-
"@angular/
|
|
74
|
-
"@angular/
|
|
75
|
-
"@angular/
|
|
76
|
-
"@angular/
|
|
77
|
-
"@angular/compiler": "~13.
|
|
78
|
-
"@angular/
|
|
79
|
-
"@angular/core": "~13.2.0",
|
|
72
|
+
"@angular-devkit/build-angular": "~13.3.9",
|
|
73
|
+
"@angular-devkit/core": "~13.3.9",
|
|
74
|
+
"@angular/cdk": "~13.3.9",
|
|
75
|
+
"@angular/cli": "~13.3.9",
|
|
76
|
+
"@angular/common": "~13.3.0",
|
|
77
|
+
"@angular/compiler": "~13.3.0",
|
|
78
|
+
"@angular/compiler-cli": "~13.3.0",
|
|
79
|
+
"@angular/core": "~13.3.0",
|
|
80
80
|
"@angular/flex-layout": "~13.0.0-beta.38",
|
|
81
|
-
"@angular/forms": "~13.
|
|
82
|
-
"@angular/material": "~13.
|
|
83
|
-
"@angular/platform-browser": "~13.
|
|
84
|
-
"@angular/platform-browser-dynamic": "~13.
|
|
85
|
-
"@angular/pwa": "~13.
|
|
86
|
-
"@angular/router": "~13.
|
|
87
|
-
"@angular/service-worker": "~13.
|
|
81
|
+
"@angular/forms": "~13.3.0",
|
|
82
|
+
"@angular/material": "~13.3.9",
|
|
83
|
+
"@angular/platform-browser": "~13.3.0",
|
|
84
|
+
"@angular/platform-browser-dynamic": "~13.3.0",
|
|
85
|
+
"@angular/pwa": "~13.3.9",
|
|
86
|
+
"@angular/router": "~13.3.0",
|
|
87
|
+
"@angular/service-worker": "~13.3.11",
|
|
88
88
|
"@babel/cli": "7.18.6",
|
|
89
89
|
"@iconify/icons-fa-solid": "1.2.2",
|
|
90
90
|
"@iconify/icons-mdi": "1.2.1",
|
|
@@ -137,13 +137,14 @@
|
|
|
137
137
|
"@types/vinyl": "2.0.2",
|
|
138
138
|
"@types/watch": "1.0.0",
|
|
139
139
|
"accepts": "1.3.4",
|
|
140
|
+
"any-project-cli": "~0.0.11",
|
|
140
141
|
"axios": "0.17.1",
|
|
141
|
-
"background-worker-process": "~13.0.
|
|
142
|
+
"background-worker-process": "~13.0.22",
|
|
142
143
|
"bcryptjs": "2.4.3",
|
|
143
|
-
"better-sqlite3": "7.
|
|
144
|
+
"better-sqlite3": "7.6.2",
|
|
144
145
|
"body-parser": "1.18.2",
|
|
145
146
|
"bootstrap": "5.1.3",
|
|
146
|
-
"bs4-breakpoint": "13.0.
|
|
147
|
+
"bs4-breakpoint": "13.0.32",
|
|
147
148
|
"buffer-shims": "1.0.0",
|
|
148
149
|
"callsite-record": "4.1.3",
|
|
149
150
|
"chai": "4.2.0",
|
|
@@ -178,10 +179,11 @@
|
|
|
178
179
|
"fbgraph": "1.4.1",
|
|
179
180
|
"file-loader": "1.1.5",
|
|
180
181
|
"firedev": "^13",
|
|
181
|
-
"firedev-crud": "~13.0.
|
|
182
|
-
"firedev-crud-deamon": "~13.0.
|
|
183
|
-
"firedev-ports": "~13.0.
|
|
184
|
-
"firedev-storage": "~13.0.
|
|
182
|
+
"firedev-crud": "~13.0.30",
|
|
183
|
+
"firedev-crud-deamon": "~13.0.21",
|
|
184
|
+
"firedev-ports": "~13.0.24",
|
|
185
|
+
"firedev-storage": "~13.0.16",
|
|
186
|
+
"firedev-typeorm": "~13.1.2",
|
|
185
187
|
"fkill": "6.1.0",
|
|
186
188
|
"font-awesome": "4.7.0",
|
|
187
189
|
"fs-extra": "8.1.0",
|
|
@@ -192,17 +194,17 @@
|
|
|
192
194
|
"http-proxy": "1.16.2",
|
|
193
195
|
"http-proxy-middleware": "0.19.1",
|
|
194
196
|
"http-server": "0.11.1",
|
|
195
|
-
"incremental-compiler": "~13.
|
|
197
|
+
"incremental-compiler": "~13.1.3",
|
|
196
198
|
"inquirer": "7.3.3",
|
|
197
199
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
198
200
|
"is-elevated": "3.0.0",
|
|
199
|
-
"isomorphic-region-loader": "1.0.2",
|
|
201
|
+
"isomorphic-region-loader": "~1.0.2",
|
|
200
202
|
"istanbul-instrumenter-loader": "2.0.0",
|
|
201
203
|
"jasmine-core": "4.0.0",
|
|
202
204
|
"jscodeshift": "0.6.3",
|
|
203
205
|
"json-stringify-safe": "5.0.1",
|
|
204
|
-
"json10": "~13.
|
|
205
|
-
"json10-writer": "~13.0.
|
|
206
|
+
"json10": "~13.1.24",
|
|
207
|
+
"json10-writer": "~13.0.21",
|
|
206
208
|
"json5": "2.1.3",
|
|
207
209
|
"json5-writer": "0.2.0",
|
|
208
210
|
"karma": "6.3.0",
|
|
@@ -214,26 +216,26 @@
|
|
|
214
216
|
"lnk": "1.0.1",
|
|
215
217
|
"lockfile": "1.0.4",
|
|
216
218
|
"lodash": "4.17.4",
|
|
217
|
-
"lodash-walk-object": "~13.
|
|
219
|
+
"lodash-walk-object": "~13.1.24",
|
|
218
220
|
"lodash.get": ">= 4",
|
|
219
221
|
"lodash.isequal": ">= 4",
|
|
220
222
|
"lodash.merge": ">= 4",
|
|
221
223
|
"lodash.set": ">= 4",
|
|
222
224
|
"lowdb": "1.0.0",
|
|
223
|
-
"magic-renamer": "~13.0.
|
|
225
|
+
"magic-renamer": "~13.0.13",
|
|
224
226
|
"material-design-icons": "3.0.1",
|
|
225
227
|
"method-override": "2.3.10",
|
|
226
228
|
"minimist": "1.2.0",
|
|
227
229
|
"mkdirp": "0.5.1",
|
|
228
230
|
"mocha": "5.2.0",
|
|
229
231
|
"moment": "2.22.2",
|
|
230
|
-
"morphi": "~13.0.
|
|
232
|
+
"morphi": "~13.0.48",
|
|
231
233
|
"ng-packagr": "13.0.0",
|
|
232
|
-
"ng-talkback": "~13.0.
|
|
233
|
-
"ng2-logger": "~13.
|
|
234
|
-
"ng2-rest": "~13.
|
|
235
|
-
"ng4-icons": "~13.0.
|
|
236
|
-
"ng4-modal": "~13.0.
|
|
234
|
+
"ng-talkback": "~13.0.15",
|
|
235
|
+
"ng2-logger": "~13.1.2",
|
|
236
|
+
"ng2-rest": "~13.1.2",
|
|
237
|
+
"ng4-icons": "~13.0.17",
|
|
238
|
+
"ng4-modal": "~13.0.19",
|
|
237
239
|
"ngx-bootstrap": "8.0.0",
|
|
238
240
|
"ngx-editor": "12.2.1",
|
|
239
241
|
"ngx-moment": "6.0.2",
|
|
@@ -241,7 +243,7 @@
|
|
|
241
243
|
"ngx-store": "3.1.1",
|
|
242
244
|
"ngx-toastr": "14.2.2",
|
|
243
245
|
"ngx-wig": "13.0.3",
|
|
244
|
-
"node-cli-tester": "~13.0.
|
|
246
|
+
"node-cli-tester": "~13.0.15",
|
|
245
247
|
"node-localstorage": "2.1.6",
|
|
246
248
|
"node-notifier": "6.0.0",
|
|
247
249
|
"nodemon": "1.14.11",
|
|
@@ -261,7 +263,7 @@
|
|
|
261
263
|
"ps-node": "0.1.6",
|
|
262
264
|
"q": "1.5.1",
|
|
263
265
|
"randomcolor": "0.5.3",
|
|
264
|
-
"record-replay-req-res-scenario": "~13.0.
|
|
266
|
+
"record-replay-req-res-scenario": "~13.0.16",
|
|
265
267
|
"reflect-metadata": "0.1.10",
|
|
266
268
|
"rimraf": "2.6.2",
|
|
267
269
|
"rxjs": "~7.5.0",
|
|
@@ -270,41 +272,42 @@
|
|
|
270
272
|
"sloc": "0.2.0",
|
|
271
273
|
"socket.io": "2.4.1",
|
|
272
274
|
"sort-package-json": "1.11.0",
|
|
273
|
-
"
|
|
275
|
+
"sql.js": "1.8.0",
|
|
276
|
+
"static-columns": "~13.0.24",
|
|
274
277
|
"string-similarity": "4.0.2",
|
|
275
278
|
"sudo-block": "3.0.0",
|
|
276
279
|
"systeminformation": "3.45.7",
|
|
277
280
|
"task.js": "0.1.5",
|
|
278
|
-
"tnp-cli": "~13.
|
|
279
|
-
"tnp-config": "~13.
|
|
280
|
-
"tnp-core": "~13.
|
|
281
|
-
"tnp-db": "~13.
|
|
282
|
-
"tnp-helpers": "~13.
|
|
283
|
-
"tnp-models": "~13.
|
|
284
|
-
"tnp-ui": "~13.0.
|
|
281
|
+
"tnp-cli": "~13.1.28",
|
|
282
|
+
"tnp-config": "~13.1.37",
|
|
283
|
+
"tnp-core": "~13.1.22",
|
|
284
|
+
"tnp-db": "~13.1.1",
|
|
285
|
+
"tnp-helpers": "~13.1.1",
|
|
286
|
+
"tnp-models": "~13.1.1",
|
|
287
|
+
"tnp-ui": "~13.0.20",
|
|
285
288
|
"ts-debug": "1.3.0",
|
|
286
289
|
"ts-loader": "2.3.1",
|
|
287
290
|
"ts-node": "10.7.0",
|
|
288
291
|
"tslib": "~2.3.0",
|
|
289
|
-
"typeorm": "~0.
|
|
290
|
-
"typescript": "~4.
|
|
291
|
-
"typescript-class-helpers": "~13.
|
|
292
|
+
"typeorm": "~0.3.10",
|
|
293
|
+
"typescript": "~4.6.2",
|
|
294
|
+
"typescript-class-helpers": "~13.1.3",
|
|
292
295
|
"typescript-formatter": "~7.2.2",
|
|
293
296
|
"underscore": "1.9.1",
|
|
294
297
|
"uuid": "8.3.2",
|
|
295
298
|
"validator": "9.2.0",
|
|
296
|
-
"vpn-split": "~13.0.
|
|
299
|
+
"vpn-split": "~13.0.20",
|
|
297
300
|
"watch": "1.0.2",
|
|
298
301
|
"zone.js": "~0.11.4"
|
|
299
302
|
},
|
|
300
303
|
"private": false,
|
|
301
|
-
"lastBuildTagHash": "
|
|
304
|
+
"lastBuildTagHash": "c4e84e3016415d05f46212b6638f2bfb379fc14f",
|
|
302
305
|
"devDependencies": {}
|
|
303
306
|
},
|
|
304
307
|
"build": {
|
|
305
|
-
"number":
|
|
306
|
-
"date": "2022-
|
|
307
|
-
"hash": "
|
|
308
|
+
"number": 247,
|
|
309
|
+
"date": "2022-11-21T08:18:06.000Z",
|
|
310
|
+
"hash": "3cd368ab0f9acc7b7db6813abd5cd6528f140df6",
|
|
308
311
|
"options": {}
|
|
309
312
|
},
|
|
310
313
|
"currentProjectName": "static-columns",
|
|
@@ -312,7 +315,7 @@
|
|
|
312
315
|
"currentProjectLaunchConfiguration": "{\"version\":\"0.2.0\",\"configurations\":[{\"type\":\"node\",\"request\":\"launch\",\"name\":\"Launch Server standalone\",\"program\":\"${workspaceFolder}/run.js\",\"args\":[\"--ENVoverride=%7B%0A%20%20%20%20%22clientProjectName%22%3A%20%22static-columns%22%0A%7D\"],\"runtimeArgs\":[\"--nolazy\",\"-r\",\"ts-node/register\",\"--experimental-worker\"]},{\"name\":\"Debugger with ng serve\",\"type\":\"chrome\",\"request\":\"launch\",\"preLaunchTask\":\"Ng Serve\",\"postDebugTask\":\"terminateall\",\"sourceMaps\":true,\"webRoot\":\"${workspaceFolder}\",\"sourceMapPathOverrides\":{\"webpack:/*\":\"${webRoot}/*\",\"/./*\":\"${webRoot}/*\",\"/tmp-src/*\":\"${webRoot}/*\",\"/*\":\"*\",\"/./~/*\":\"${webRoot}/node_modules/*\"}},{\"type\":\"node\",\"request\":\"attach\",\"name\":\"Attach to global cli tool\",\"port\":9229,\"skipFiles\":[\"<node_internals>/**\"]}],\"compounds\":[{\"name\":\"Debug backend/frontend\",\"configurations\":[\"Launch Server standalone\",\"Debugger with ng serve\"]}]}",
|
|
313
316
|
"currentProjectTasksConfiguration": "{\"version\":\"2.0.0\",\"tasks\":[{\"label\":\"terminateall\",\"command\":\"echo ${input:terminate}\",\"type\":\"shell\",\"problemMatcher\":[]},{\"label\":\"Ng Serve\",\"type\":\"shell\",\"command\":\"tnp build\",\"isBackground\":true,\"presentation\":{\"reveal\":\"always\"},\"group\":{\"kind\":\"build\",\"isDefault\":true},\"problemMatcher\":{\"owner\":\"typescript\",\"source\":\"ts\",\"applyTo\":\"closedDocuments\",\"fileLocation\":[\"relative\",\"${cwd}\"],\"pattern\":\"$tsc\",\"background\":{\"activeOnStart\":true,\"beginsPattern\":{\"regexp\":\"(.*?)\"},\"endsPattern\":{\"regexp\":\"Compiled |Failed to compile.\"}}}}],\"inputs\":[{\"id\":\"terminate\",\"type\":\"command\",\"command\":\"workbench.action.tasks.terminate\",\"args\":\"terminateAll\"}]}",
|
|
314
317
|
"currentProjectType": "isomorphic-lib",
|
|
315
|
-
"currentFrameworkVersion": "13.
|
|
318
|
+
"currentFrameworkVersion": "13.1.104",
|
|
316
319
|
"currentProjectIsStrictSite": false,
|
|
317
320
|
"currentProjectIsDependencySite": false,
|
|
318
321
|
"currentProjectIsStatic": false,
|
package/websql/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Directive, ElementRef, Renderer2 } 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.3.11", 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.3.11", type: DirectiveGrow, selector: "[grow]", ngImport: i0 });
|
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", 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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1uLWdyb3cuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vdG1wLWxpYnMtZm9yLWJ1bmRsZS13ZWJzcWwvc3RhdGljLWNvbHVtbnMvcHJvamVjdHMvc3RhdGljLWNvbHVtbnMvc3JjL2xpYi9jb2x1bW4vY29sdW1uLWdyb3cuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBYSxTQUFTLEVBQUUsVUFBVSxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFNNUUsTUFBTSxPQUFPLGFBQWE7SUFDeEIsWUFBbUIsQ0FBYSxFQUFTLFFBQW1CO1FBQXpDLE1BQUMsR0FBRCxDQUFDLENBQVk7UUFBUyxhQUFRLEdBQVIsUUFBUSxDQUFXO1FBQzFELFVBQVUsQ0FBQyxHQUFHLEVBQUU7WUFDZCxzQ0FBc0M7WUFDdEMsUUFBUSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsYUFBYSxFQUFFLFVBQVUsRUFBRSxHQUFHLENBQUMsQ0FBQTtRQUNyRCxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFFTiw4REFBOEQ7SUFDaEUsQ0FBQzs7MkdBUlUsYUFBYTsrRkFBYixhQUFhOzRGQUFiLGFBQWE7a0JBSHpCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLFFBQVE7aUJBQ25CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBEaXJlY3RpdmUsIEVsZW1lbnRSZWYsIFJlbmRlcmVyMiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1tncm93XSdcbn0pXG5leHBvcnQgY2xhc3MgRGlyZWN0aXZlR3JvdyB7XG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBlOiBFbGVtZW50UmVmLCBwdWJsaWMgcmVuZGVyZXI6IFJlbmRlcmVyMikge1xuICAgIHNldFRpbWVvdXQoKCkgPT4ge1xuICAgICAgLy8gZS5uYXRpdmVFbGVtZW50LnN0eWxlLmZsZXhHcm93ID0gMTtcbiAgICAgIHJlbmRlcmVyLnNldFN0eWxlKGUubmF0aXZlRWxlbWVudCwgJ2ZsZXhHcm93JywgJzEnKVxuICAgIH0sIDApO1xuXG4gICAgLy8gcmVuZGVyZXIuc2V0RWxlbWVudFN0eWxlKGUubmF0aXZlRWxlbWVudCwgJ2ZsZXhHcm93JywgJzEnKTtcbiAgfVxufVxuIl19
|
|
@@ -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.3.11", ngImport: i0, type: ColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
10
|
+
ColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ColumnComponent, selector: "column", inputs: { width: "width" }, host: { properties: { "style.flex.basis.px": "this.width", "style.minWidth.px": "this.width" } }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [":host{flex-grow:0;flex-shrink:0;width:0px}\n"] });
|
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", 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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3RtcC1saWJzLWZvci1idW5kbGUtd2Vic3FsL3N0YXRpYy1jb2x1bW5zL3Byb2plY3RzL3N0YXRpYy1jb2x1bW5zL3NyYy9saWIvY29sdW1uL2NvbHVtbi5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxLQUFLLEVBQUUsV0FBVyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQU90RSxNQUFNLE9BQU8sZUFBZTtJQUd4QjtRQUNJLHFCQUFxQjtJQUN6QixDQUFDO0lBRUQsUUFBUSxLQUFLLENBQUM7OzZHQVBMLGVBQWU7aUdBQWYsZUFBZSw0S0FIZCwyQkFBMkI7NEZBRzVCLGVBQWU7a0JBTDNCLFNBQVM7K0JBQ0ksUUFBUSxZQUNSLDJCQUEyQjswRUFJMEMsS0FBSztzQkFBbkYsV0FBVzt1QkFBQyxxQkFBcUI7O3NCQUFHLFdBQVc7dUJBQUMsbUJBQW1COztzQkFBRyxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQsIElucHV0LCBIb3N0QmluZGluZyB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2NvbHVtbicsXG4gICAgdGVtcGxhdGU6ICc8bmctY29udGVudD48L25nLWNvbnRlbnQ+JyxcbiAgICBzdHlsZVVybHM6IFsnLi9jb2x1bW4uY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBDb2x1bW5Db21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICAgIEBIb3N0QmluZGluZygnc3R5bGUuZmxleC5iYXNpcy5weCcpIEBIb3N0QmluZGluZygnc3R5bGUubWluV2lkdGgucHgnKSBASW5wdXQoKSB3aWR0aDogbnVtYmVyO1xuXG4gICAgY29uc3RydWN0b3IoKSB7XG4gICAgICAgIC8vIHRoaXMuY2N3aWR0aCA9IDkwO1xuICAgIH1cblxuICAgIG5nT25Jbml0KCkgeyB9XG5cbn1cbiJdfQ==
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export * from './column.component';
|
|
2
|
+
export * from './column-grow.directive';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlLXdlYnNxbC9zdGF0aWMtY29sdW1ucy9wcm9qZWN0cy9zdGF0aWMtY29sdW1ucy9zcmMvbGliL2NvbHVtbi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMseUJBQXlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2NvbHVtbi5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9jb2x1bW4tZ3Jvdy5kaXJlY3RpdmUnO1xuIl19
|