@mintplayer/ng-bootstrap 15.6.1 → 15.7.0
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/esm2020/grid/src/directives/col-form-label/col-form-label.directive.mjs +19 -0
- package/esm2020/grid/src/directives/index.mjs +2 -1
- package/esm2020/grid/src/grid.module.mjs +5 -4
- package/esm2020/navbar/src/navbar/navbar.component.mjs +29 -3
- package/fesm2015/mintplayer-ng-bootstrap-grid.mjs +21 -4
- package/fesm2015/mintplayer-ng-bootstrap-grid.mjs.map +1 -1
- package/fesm2015/mintplayer-ng-bootstrap-navbar.mjs +28 -2
- package/fesm2015/mintplayer-ng-bootstrap-navbar.mjs.map +1 -1
- package/fesm2020/mintplayer-ng-bootstrap-grid.mjs +21 -4
- package/fesm2020/mintplayer-ng-bootstrap-grid.mjs.map +1 -1
- package/fesm2020/mintplayer-ng-bootstrap-navbar.mjs +28 -2
- package/fesm2020/mintplayer-ng-bootstrap-navbar.mjs.map +1 -1
- package/grid/src/directives/col-form-label/col-form-label.directive.d.ts +6 -0
- package/grid/src/directives/index.d.ts +1 -0
- package/grid/src/grid.module.d.ts +3 -2
- package/navbar/src/navbar/navbar.component.d.ts +7 -2
- package/package.json +1 -1
|
@@ -102,17 +102,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImpor
|
|
|
102
102
|
type: Input
|
|
103
103
|
}] } });
|
|
104
104
|
|
|
105
|
+
class BsColFormLabelDirective {
|
|
106
|
+
constructor() {
|
|
107
|
+
this.colFormLabelClass = true;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
BsColFormLabelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsColFormLabelDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
111
|
+
BsColFormLabelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: BsColFormLabelDirective, selector: "[bsColFormLabel]", host: { properties: { "class.col-form-label": "this.colFormLabelClass" } }, ngImport: i0 });
|
|
112
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsColFormLabelDirective, decorators: [{
|
|
113
|
+
type: Directive,
|
|
114
|
+
args: [{
|
|
115
|
+
selector: '[bsColFormLabel]'
|
|
116
|
+
}]
|
|
117
|
+
}], propDecorators: { colFormLabelClass: [{
|
|
118
|
+
type: HostBinding,
|
|
119
|
+
args: ['class.col-form-label']
|
|
120
|
+
}] } });
|
|
121
|
+
|
|
105
122
|
class BsGridModule {
|
|
106
123
|
}
|
|
107
124
|
BsGridModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsGridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
108
|
-
BsGridModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: BsGridModule, declarations: [BsGridComponent, BsGridRowDirective, BsGridColumnDirective], imports: [CommonModule], exports: [BsGridComponent, BsGridRowDirective, BsGridColumnDirective] });
|
|
125
|
+
BsGridModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: BsGridModule, declarations: [BsGridComponent, BsGridRowDirective, BsGridColumnDirective, BsColFormLabelDirective], imports: [CommonModule], exports: [BsGridComponent, BsGridRowDirective, BsGridColumnDirective, BsColFormLabelDirective] });
|
|
109
126
|
BsGridModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsGridModule, imports: [CommonModule] });
|
|
110
127
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsGridModule, decorators: [{
|
|
111
128
|
type: NgModule,
|
|
112
129
|
args: [{
|
|
113
|
-
declarations: [BsGridComponent, BsGridRowDirective, BsGridColumnDirective],
|
|
130
|
+
declarations: [BsGridComponent, BsGridRowDirective, BsGridColumnDirective, BsColFormLabelDirective],
|
|
114
131
|
imports: [CommonModule],
|
|
115
|
-
exports: [BsGridComponent, BsGridRowDirective, BsGridColumnDirective],
|
|
132
|
+
exports: [BsGridComponent, BsGridRowDirective, BsGridColumnDirective, BsColFormLabelDirective],
|
|
116
133
|
}]
|
|
117
134
|
}] });
|
|
118
135
|
|
|
@@ -120,5 +137,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImpor
|
|
|
120
137
|
* Generated bundle index. Do not edit.
|
|
121
138
|
*/
|
|
122
139
|
|
|
123
|
-
export { BsGridColumnDirective, BsGridComponent, BsGridModule, BsGridRowDirective };
|
|
140
|
+
export { BsColFormLabelDirective, BsGridColumnDirective, BsGridComponent, BsGridModule, BsGridRowDirective };
|
|
124
141
|
//# sourceMappingURL=mintplayer-ng-bootstrap-grid.mjs.map
|