@mintplayer/ng-bootstrap 15.2.1 → 15.2.3
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/_bootstrap.scss +1 -1
- package/button-type/index.d.ts +1 -0
- package/button-type/src/button-type/button-type.directive.d.ts +9 -0
- package/button-type/src/button-type/button-type.module.d.ts +8 -0
- package/button-type/src/index.d.ts +2 -0
- package/esm2020/button-type/index.mjs +2 -0
- package/esm2020/button-type/mintplayer-ng-bootstrap-button-type.mjs +5 -0
- package/esm2020/button-type/src/button-type/button-type.directive.mjs +30 -0
- package/esm2020/button-type/src/button-type/button-type.module.mjs +24 -0
- package/esm2020/button-type/src/index.mjs +3 -0
- package/esm2020/input-group/index.mjs +2 -0
- package/esm2020/input-group/mintplayer-ng-bootstrap-input-group.mjs +5 -0
- package/esm2020/input-group/src/index.mjs +3 -0
- package/esm2020/input-group/src/input-group/input-group.component.mjs +11 -0
- package/esm2020/input-group/src/input-group.module.mjs +18 -0
- package/esm2020/testing/src/button-type/button-type.directive.mjs +25 -0
- package/esm2020/testing/src/button-type/button-type.module.mjs +18 -0
- package/esm2020/testing/src/button-type/index.mjs +3 -0
- package/esm2020/testing/src/index.mjs +3 -1
- package/esm2020/testing/src/input-group/component/input-group.component.mjs +16 -0
- package/esm2020/testing/src/input-group/index.mjs +3 -0
- package/esm2020/testing/src/input-group/input-group.module.mjs +24 -0
- package/fesm2015/mintplayer-ng-bootstrap-button-type.mjs +58 -0
- package/fesm2015/mintplayer-ng-bootstrap-button-type.mjs.map +1 -0
- package/fesm2015/mintplayer-ng-bootstrap-input-group.mjs +33 -0
- package/fesm2015/mintplayer-ng-bootstrap-input-group.mjs.map +1 -0
- package/fesm2015/mintplayer-ng-bootstrap-testing.mjs +70 -1
- package/fesm2015/mintplayer-ng-bootstrap-testing.mjs.map +1 -1
- package/fesm2020/mintplayer-ng-bootstrap-button-type.mjs +58 -0
- package/fesm2020/mintplayer-ng-bootstrap-button-type.mjs.map +1 -0
- package/fesm2020/mintplayer-ng-bootstrap-input-group.mjs +33 -0
- package/fesm2020/mintplayer-ng-bootstrap-input-group.mjs.map +1 -0
- package/fesm2020/mintplayer-ng-bootstrap-testing.mjs +70 -1
- package/fesm2020/mintplayer-ng-bootstrap-testing.mjs.map +1 -1
- package/input-group/index.d.ts +1 -0
- package/input-group/src/index.d.ts +2 -0
- package/input-group/src/input-group/input-group.component.d.ts +5 -0
- package/input-group/src/input-group.module.d.ts +8 -0
- package/package.json +17 -1
- package/testing/src/button-type/button-type.directive.d.ts +7 -0
- package/testing/src/button-type/button-type.module.d.ts +8 -0
- package/testing/src/button-type/index.d.ts +2 -0
- package/testing/src/index.d.ts +2 -0
- package/testing/src/input-group/component/input-group.component.d.ts +5 -0
- package/testing/src/input-group/index.d.ts +2 -0
- package/testing/src/input-group/input-group.module.d.ts +8 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Directive, HostBinding, Input, NgModule } from '@angular/core';
|
|
3
|
+
import { Color } from '@mintplayer/ng-bootstrap';
|
|
4
|
+
import { CommonModule } from '@angular/common';
|
|
5
|
+
|
|
6
|
+
class BsButtonTypeDirective {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.btnClass = true;
|
|
9
|
+
this.buttonClass = 'btn-transparent';
|
|
10
|
+
}
|
|
11
|
+
set color(value) {
|
|
12
|
+
const name = Color[value];
|
|
13
|
+
this.buttonClass = `btn-${name}`;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
BsButtonTypeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsButtonTypeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
17
|
+
BsButtonTypeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: BsButtonTypeDirective, selector: "button[color],input[type=\"button\"][color],input[type=\"submit\"][color]", inputs: { color: "color" }, host: { properties: { "class.btn": "this.btnClass", "class": "this.buttonClass" } }, ngImport: i0 });
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsButtonTypeDirective, decorators: [{
|
|
19
|
+
type: Directive,
|
|
20
|
+
args: [{
|
|
21
|
+
selector: 'button[color],input[type="button"][color],input[type="submit"][color]'
|
|
22
|
+
}]
|
|
23
|
+
}], propDecorators: { btnClass: [{
|
|
24
|
+
type: HostBinding,
|
|
25
|
+
args: ['class.btn']
|
|
26
|
+
}], buttonClass: [{
|
|
27
|
+
type: HostBinding,
|
|
28
|
+
args: ['class']
|
|
29
|
+
}], color: [{
|
|
30
|
+
type: Input
|
|
31
|
+
}] } });
|
|
32
|
+
|
|
33
|
+
class BsButtonTypeModule {
|
|
34
|
+
}
|
|
35
|
+
BsButtonTypeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsButtonTypeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
36
|
+
BsButtonTypeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: BsButtonTypeModule, declarations: [BsButtonTypeDirective], imports: [CommonModule], exports: [BsButtonTypeDirective] });
|
|
37
|
+
BsButtonTypeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsButtonTypeModule, imports: [CommonModule] });
|
|
38
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsButtonTypeModule, decorators: [{
|
|
39
|
+
type: NgModule,
|
|
40
|
+
args: [{
|
|
41
|
+
declarations: [
|
|
42
|
+
BsButtonTypeDirective
|
|
43
|
+
],
|
|
44
|
+
imports: [
|
|
45
|
+
CommonModule
|
|
46
|
+
],
|
|
47
|
+
exports: [
|
|
48
|
+
BsButtonTypeDirective
|
|
49
|
+
]
|
|
50
|
+
}]
|
|
51
|
+
}] });
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Generated bundle index. Do not edit.
|
|
55
|
+
*/
|
|
56
|
+
|
|
57
|
+
export { BsButtonTypeDirective, BsButtonTypeModule };
|
|
58
|
+
//# sourceMappingURL=mintplayer-ng-bootstrap-button-type.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mintplayer-ng-bootstrap-button-type.mjs","sources":["../esm2020/button-type/src/button-type/button-type.directive.mjs","../esm2020/button-type/src/button-type/button-type.module.mjs","../esm2020/button-type/mintplayer-ng-bootstrap-button-type.mjs"],"sourcesContent":["import { Directive, Input, HostBinding } from '@angular/core';\nimport { Color } from '@mintplayer/ng-bootstrap';\nimport * as i0 from \"@angular/core\";\nexport class BsButtonTypeDirective {\n constructor() {\n this.btnClass = true;\n this.buttonClass = 'btn-transparent';\n }\n set color(value) {\n const name = Color[value];\n this.buttonClass = `btn-${name}`;\n }\n}\nBsButtonTypeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.0.4\", ngImport: i0, type: BsButtonTypeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });\nBsButtonTypeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: \"14.0.0\", version: \"15.0.4\", type: BsButtonTypeDirective, selector: \"button[color],input[type=\\\"button\\\"][color],input[type=\\\"submit\\\"][color]\", inputs: { color: \"color\" }, host: { properties: { \"class.btn\": \"this.btnClass\", \"class\": \"this.buttonClass\" } }, ngImport: i0 });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.0.4\", ngImport: i0, type: BsButtonTypeDirective, decorators: [{\n type: Directive,\n args: [{\n selector: 'button[color],input[type=\"button\"][color],input[type=\"submit\"][color]'\n }]\n }], propDecorators: { btnClass: [{\n type: HostBinding,\n args: ['class.btn']\n }], buttonClass: [{\n type: HostBinding,\n args: ['class']\n }], color: [{\n type: Input\n }] } });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLXR5cGUuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9taW50cGxheWVyLW5nLWJvb3RzdHJhcC9idXR0b24tdHlwZS9zcmMvYnV0dG9uLXR5cGUvYnV0dG9uLXR5cGUuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLFdBQVcsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM5RCxPQUFPLEVBQUUsS0FBSyxFQUFFLE1BQU0sMEJBQTBCLENBQUM7O0FBS2pELE1BQU0sT0FBTyxxQkFBcUI7SUFIbEM7UUFJNEIsYUFBUSxHQUFHLElBQUksQ0FBQztRQUNwQixnQkFBVyxHQUFHLGlCQUFpQixDQUFDO0tBS3ZEO0lBSkMsSUFBb0IsS0FBSyxDQUFDLEtBQVk7UUFDcEMsTUFBTSxJQUFJLEdBQUcsS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQzFCLElBQUksQ0FBQyxXQUFXLEdBQUcsT0FBTyxJQUFJLEVBQUUsQ0FBQztJQUNuQyxDQUFDOztrSEFOVSxxQkFBcUI7c0dBQXJCLHFCQUFxQjsyRkFBckIscUJBQXFCO2tCQUhqQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSx1RUFBdUU7aUJBQ2xGOzhCQUUyQixRQUFRO3NCQUFqQyxXQUFXO3VCQUFDLFdBQVc7Z0JBQ0YsV0FBVztzQkFBaEMsV0FBVzt1QkFBQyxPQUFPO2dCQUNBLEtBQUs7c0JBQXhCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIElucHV0LCBIb3N0QmluZGluZyB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29sb3IgfSBmcm9tICdAbWludHBsYXllci9uZy1ib290c3RyYXAnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdidXR0b25bY29sb3JdLGlucHV0W3R5cGU9XCJidXR0b25cIl1bY29sb3JdLGlucHV0W3R5cGU9XCJzdWJtaXRcIl1bY29sb3JdJ1xufSlcbmV4cG9ydCBjbGFzcyBCc0J1dHRvblR5cGVEaXJlY3RpdmUge1xuICBASG9zdEJpbmRpbmcoJ2NsYXNzLmJ0bicpIGJ0bkNsYXNzID0gdHJ1ZTtcbiAgQEhvc3RCaW5kaW5nKCdjbGFzcycpIGJ1dHRvbkNsYXNzID0gJ2J0bi10cmFuc3BhcmVudCc7XG4gIEBJbnB1dCgpIHB1YmxpYyBzZXQgY29sb3IodmFsdWU6IENvbG9yKSB7XG4gICAgY29uc3QgbmFtZSA9IENvbG9yW3ZhbHVlXTtcbiAgICB0aGlzLmJ1dHRvbkNsYXNzID0gYGJ0bi0ke25hbWV9YDtcbiAgfVxufVxuIl19","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsButtonTypeDirective } from './button-type.directive';\nimport * as i0 from \"@angular/core\";\nexport class BsButtonTypeModule {\n}\nBsButtonTypeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.0.4\", ngImport: i0, type: BsButtonTypeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });\nBsButtonTypeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"15.0.4\", ngImport: i0, type: BsButtonTypeModule, declarations: [BsButtonTypeDirective], imports: [CommonModule], exports: [BsButtonTypeDirective] });\nBsButtonTypeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"15.0.4\", ngImport: i0, type: BsButtonTypeModule, imports: [CommonModule] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.0.4\", ngImport: i0, type: BsButtonTypeModule, decorators: [{\n type: NgModule,\n args: [{\n declarations: [\n BsButtonTypeDirective\n ],\n imports: [\n CommonModule\n ],\n exports: [\n BsButtonTypeDirective\n ]\n }]\n }] });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLXR5cGUubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9taW50cGxheWVyLW5nLWJvb3RzdHJhcC9idXR0b24tdHlwZS9zcmMvYnV0dG9uLXR5cGUvYnV0dG9uLXR5cGUubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLHlCQUF5QixDQUFDOztBQWFoRSxNQUFNLE9BQU8sa0JBQWtCOzsrR0FBbEIsa0JBQWtCO2dIQUFsQixrQkFBa0IsaUJBVDNCLHFCQUFxQixhQUdyQixZQUFZLGFBR1oscUJBQXFCO2dIQUdaLGtCQUFrQixZQU4zQixZQUFZOzJGQU1ILGtCQUFrQjtrQkFYOUIsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUU7d0JBQ1oscUJBQXFCO3FCQUN0QjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsWUFBWTtxQkFDYjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AscUJBQXFCO3FCQUN0QjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQnNCdXR0b25UeXBlRGlyZWN0aXZlIH0gZnJvbSAnLi9idXR0b24tdHlwZS5kaXJlY3RpdmUnO1xuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBCc0J1dHRvblR5cGVEaXJlY3RpdmVcbiAgXSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZVxuICBdLFxuICBleHBvcnRzOiBbXG4gICAgQnNCdXR0b25UeXBlRGlyZWN0aXZlXG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgQnNCdXR0b25UeXBlTW9kdWxlIHsgfVxuIl19","/**\n * Generated bundle index. Do not edit.\n */\nexport * from './index';\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWludHBsYXllci1uZy1ib290c3RyYXAtYnV0dG9uLXR5cGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL21pbnRwbGF5ZXItbmctYm9vdHN0cmFwL2J1dHRvbi10eXBlL21pbnRwbGF5ZXItbmctYm9vdHN0cmFwLWJ1dHRvbi10eXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxTQUFTLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vaW5kZXgnO1xuIl19"],"names":[],"mappings":";;;;;AAGO,MAAM,qBAAqB,CAAC;AACnC,IAAI,WAAW,GAAG;AAClB,QAAQ,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;AAC7B,QAAQ,IAAI,CAAC,WAAW,GAAG,iBAAiB,CAAC;AAC7C,KAAK;AACL,IAAI,IAAI,KAAK,CAAC,KAAK,EAAE;AACrB,QAAQ,MAAM,IAAI,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC;AAClC,QAAQ,IAAI,CAAC,WAAW,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC;AACzC,KAAK;AACL,CAAC;AACD,qBAAqB,CAAC,IAAI,GAAG,EAAE,CAAC,kBAAkB,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,qBAAqB,EAAE,IAAI,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,CAAC,eAAe,CAAC,SAAS,EAAE,CAAC,CAAC;AAC3L,qBAAqB,CAAC,IAAI,GAAG,EAAE,CAAC,oBAAoB,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,qBAAqB,EAAE,QAAQ,EAAE,2EAA2E,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,EAAE,UAAU,EAAE,EAAE,WAAW,EAAE,eAAe,EAAE,OAAO,EAAE,kBAAkB,EAAE,EAAE,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC,CAAC;AACrV,EAAE,CAAC,wBAAwB,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,qBAAqB,EAAE,UAAU,EAAE,CAAC;AAC/H,YAAY,IAAI,EAAE,SAAS;AAC3B,YAAY,IAAI,EAAE,CAAC;AACnB,oBAAoB,QAAQ,EAAE,uEAAuE;AACrG,iBAAiB,CAAC;AAClB,SAAS,CAAC,EAAE,cAAc,EAAE,EAAE,QAAQ,EAAE,CAAC;AACzC,gBAAgB,IAAI,EAAE,WAAW;AACjC,gBAAgB,IAAI,EAAE,CAAC,WAAW,CAAC;AACnC,aAAa,CAAC,EAAE,WAAW,EAAE,CAAC;AAC9B,gBAAgB,IAAI,EAAE,WAAW;AACjC,gBAAgB,IAAI,EAAE,CAAC,OAAO,CAAC;AAC/B,aAAa,CAAC,EAAE,KAAK,EAAE,CAAC;AACxB,gBAAgB,IAAI,EAAE,KAAK;AAC3B,aAAa,CAAC,EAAE,EAAE,CAAC;;ACxBZ,MAAM,kBAAkB,CAAC;AAChC,CAAC;AACD,kBAAkB,CAAC,IAAI,GAAG,EAAE,CAAC,kBAAkB,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,kBAAkB,EAAE,IAAI,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,CAAC,eAAe,CAAC,QAAQ,EAAE,CAAC,CAAC;AACpL,kBAAkB,CAAC,IAAI,GAAG,EAAE,CAAC,mBAAmB,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,kBAAkB,EAAE,YAAY,EAAE,CAAC,qBAAqB,CAAC,EAAE,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,OAAO,EAAE,CAAC,qBAAqB,CAAC,EAAE,CAAC,CAAC;AACxO,kBAAkB,CAAC,IAAI,GAAG,EAAE,CAAC,mBAAmB,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,kBAAkB,EAAE,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC;AAC/J,EAAE,CAAC,wBAAwB,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,kBAAkB,EAAE,UAAU,EAAE,CAAC;AAC5H,YAAY,IAAI,EAAE,QAAQ;AAC1B,YAAY,IAAI,EAAE,CAAC;AACnB,oBAAoB,YAAY,EAAE;AAClC,wBAAwB,qBAAqB;AAC7C,qBAAqB;AACrB,oBAAoB,OAAO,EAAE;AAC7B,wBAAwB,YAAY;AACpC,qBAAqB;AACrB,oBAAoB,OAAO,EAAE;AAC7B,wBAAwB,qBAAqB;AAC7C,qBAAqB;AACrB,iBAAiB,CAAC;AAClB,SAAS,CAAC,EAAE,CAAC;;ACtBb;AACA;AACA;;;;"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, NgModule } from '@angular/core';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
|
|
5
|
+
class BsInputGroupComponent {
|
|
6
|
+
}
|
|
7
|
+
BsInputGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsInputGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
8
|
+
BsInputGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.4", type: BsInputGroupComponent, selector: "bs-input-group", ngImport: i0, template: "<div class=\"input-group\">\n <ng-content></ng-content>\n</div>", styles: [":host ::ng-deep .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}:host ::ng-deep .input-group>.form-control,:host ::ng-deep .input-group>.form-select,:host ::ng-deep .input-group>.form-floating{position:relative;flex:1 1 auto;width:1%;min-width:0}:host ::ng-deep .input-group>.form-control:focus,:host ::ng-deep .input-group>.form-select:focus,:host ::ng-deep .input-group>.form-floating:focus-within{z-index:5}:host ::ng-deep .input-group .btn{position:relative;z-index:2}:host ::ng-deep .input-group .btn:focus{z-index:5}:host ::ng-deep .input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.375rem}:host ::ng-deep .input-group-lg>.form-control,:host ::ng-deep .input-group-lg>.form-select,:host ::ng-deep .input-group-lg>.input-group-text,:host ::ng-deep .input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}:host ::ng-deep .input-group-sm>.form-control,:host ::ng-deep .input-group-sm>.form-select,:host ::ng-deep .input-group-sm>.input-group-text,:host ::ng-deep .input-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.25rem}:host ::ng-deep .input-group-lg>.form-select,:host ::ng-deep .input-group-sm>.form-select{padding-right:3rem}:host ::ng-deep .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),:host ::ng-deep .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),:host ::ng-deep .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,:host ::ng-deep .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}:host ::ng-deep .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),:host ::ng-deep .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),:host ::ng-deep .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,:host ::ng-deep .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}:host ::ng-deep .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}:host ::ng-deep .input-group>.form-floating:not(:first-child)>.form-control,:host ::ng-deep .input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}\n"] });
|
|
9
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsInputGroupComponent, decorators: [{
|
|
10
|
+
type: Component,
|
|
11
|
+
args: [{ selector: 'bs-input-group', template: "<div class=\"input-group\">\n <ng-content></ng-content>\n</div>", styles: [":host ::ng-deep .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}:host ::ng-deep .input-group>.form-control,:host ::ng-deep .input-group>.form-select,:host ::ng-deep .input-group>.form-floating{position:relative;flex:1 1 auto;width:1%;min-width:0}:host ::ng-deep .input-group>.form-control:focus,:host ::ng-deep .input-group>.form-select:focus,:host ::ng-deep .input-group>.form-floating:focus-within{z-index:5}:host ::ng-deep .input-group .btn{position:relative;z-index:2}:host ::ng-deep .input-group .btn:focus{z-index:5}:host ::ng-deep .input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.375rem}:host ::ng-deep .input-group-lg>.form-control,:host ::ng-deep .input-group-lg>.form-select,:host ::ng-deep .input-group-lg>.input-group-text,:host ::ng-deep .input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}:host ::ng-deep .input-group-sm>.form-control,:host ::ng-deep .input-group-sm>.form-select,:host ::ng-deep .input-group-sm>.input-group-text,:host ::ng-deep .input-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.25rem}:host ::ng-deep .input-group-lg>.form-select,:host ::ng-deep .input-group-sm>.form-select{padding-right:3rem}:host ::ng-deep .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),:host ::ng-deep .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),:host ::ng-deep .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,:host ::ng-deep .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}:host ::ng-deep .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),:host ::ng-deep .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),:host ::ng-deep .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,:host ::ng-deep .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}:host ::ng-deep .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}:host ::ng-deep .input-group>.form-floating:not(:first-child)>.form-control,:host ::ng-deep .input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}\n"] }]
|
|
12
|
+
}] });
|
|
13
|
+
|
|
14
|
+
class BsInputGroupModule {
|
|
15
|
+
}
|
|
16
|
+
BsInputGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsInputGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
17
|
+
BsInputGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: BsInputGroupModule, declarations: [BsInputGroupComponent], imports: [CommonModule], exports: [BsInputGroupComponent] });
|
|
18
|
+
BsInputGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsInputGroupModule, imports: [CommonModule] });
|
|
19
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsInputGroupModule, decorators: [{
|
|
20
|
+
type: NgModule,
|
|
21
|
+
args: [{
|
|
22
|
+
declarations: [BsInputGroupComponent],
|
|
23
|
+
imports: [CommonModule],
|
|
24
|
+
exports: [BsInputGroupComponent],
|
|
25
|
+
}]
|
|
26
|
+
}] });
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Generated bundle index. Do not edit.
|
|
30
|
+
*/
|
|
31
|
+
|
|
32
|
+
export { BsInputGroupComponent, BsInputGroupModule };
|
|
33
|
+
//# sourceMappingURL=mintplayer-ng-bootstrap-input-group.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mintplayer-ng-bootstrap-input-group.mjs","sources":["../esm2020/input-group/src/input-group/input-group.component.mjs","../esm2020/input-group/src/input-group.module.mjs","../esm2020/input-group/mintplayer-ng-bootstrap-input-group.mjs"],"sourcesContent":["import { Component } from '@angular/core';\nimport * as i0 from \"@angular/core\";\nexport class BsInputGroupComponent {\n}\nBsInputGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.0.4\", ngImport: i0, type: BsInputGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });\nBsInputGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"15.0.4\", type: BsInputGroupComponent, selector: \"bs-input-group\", ngImport: i0, template: \"<div class=\\\"input-group\\\">\\n <ng-content></ng-content>\\n</div>\", styles: [\":host ::ng-deep .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}:host ::ng-deep .input-group>.form-control,:host ::ng-deep .input-group>.form-select,:host ::ng-deep .input-group>.form-floating{position:relative;flex:1 1 auto;width:1%;min-width:0}:host ::ng-deep .input-group>.form-control:focus,:host ::ng-deep .input-group>.form-select:focus,:host ::ng-deep .input-group>.form-floating:focus-within{z-index:5}:host ::ng-deep .input-group .btn{position:relative;z-index:2}:host ::ng-deep .input-group .btn:focus{z-index:5}:host ::ng-deep .input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.375rem}:host ::ng-deep .input-group-lg>.form-control,:host ::ng-deep .input-group-lg>.form-select,:host ::ng-deep .input-group-lg>.input-group-text,:host ::ng-deep .input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}:host ::ng-deep .input-group-sm>.form-control,:host ::ng-deep .input-group-sm>.form-select,:host ::ng-deep .input-group-sm>.input-group-text,:host ::ng-deep .input-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.25rem}:host ::ng-deep .input-group-lg>.form-select,:host ::ng-deep .input-group-sm>.form-select{padding-right:3rem}:host ::ng-deep .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),:host ::ng-deep .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),:host ::ng-deep .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,:host ::ng-deep .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}:host ::ng-deep .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),:host ::ng-deep .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),:host ::ng-deep .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,:host ::ng-deep .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}:host ::ng-deep .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}:host ::ng-deep .input-group>.form-floating:not(:first-child)>.form-control,:host ::ng-deep .input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}\\n\"] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.0.4\", ngImport: i0, type: BsInputGroupComponent, decorators: [{\n type: Component,\n args: [{ selector: 'bs-input-group', template: \"<div class=\\\"input-group\\\">\\n <ng-content></ng-content>\\n</div>\", styles: [\":host ::ng-deep .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}:host ::ng-deep .input-group>.form-control,:host ::ng-deep .input-group>.form-select,:host ::ng-deep .input-group>.form-floating{position:relative;flex:1 1 auto;width:1%;min-width:0}:host ::ng-deep .input-group>.form-control:focus,:host ::ng-deep .input-group>.form-select:focus,:host ::ng-deep .input-group>.form-floating:focus-within{z-index:5}:host ::ng-deep .input-group .btn{position:relative;z-index:2}:host ::ng-deep .input-group .btn:focus{z-index:5}:host ::ng-deep .input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.375rem}:host ::ng-deep .input-group-lg>.form-control,:host ::ng-deep .input-group-lg>.form-select,:host ::ng-deep .input-group-lg>.input-group-text,:host ::ng-deep .input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}:host ::ng-deep .input-group-sm>.form-control,:host ::ng-deep .input-group-sm>.form-select,:host ::ng-deep .input-group-sm>.input-group-text,:host ::ng-deep .input-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.25rem}:host ::ng-deep .input-group-lg>.form-select,:host ::ng-deep .input-group-sm>.form-select{padding-right:3rem}:host ::ng-deep .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),:host ::ng-deep .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),:host ::ng-deep .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,:host ::ng-deep .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}:host ::ng-deep .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),:host ::ng-deep .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),:host ::ng-deep .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,:host ::ng-deep .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}:host ::ng-deep .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}:host ::ng-deep .input-group>.form-floating:not(:first-child)>.form-control,:host ::ng-deep .input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}\\n\"] }]\n }] });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtZ3JvdXAuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9taW50cGxheWVyLW5nLWJvb3RzdHJhcC9pbnB1dC1ncm91cC9zcmMvaW5wdXQtZ3JvdXAvaW5wdXQtZ3JvdXAuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9taW50cGxheWVyLW5nLWJvb3RzdHJhcC9pbnB1dC1ncm91cC9zcmMvaW5wdXQtZ3JvdXAvaW5wdXQtZ3JvdXAuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFPMUMsTUFBTSxPQUFPLHFCQUFxQjs7a0hBQXJCLHFCQUFxQjtzR0FBckIscUJBQXFCLHNEQ1BsQyxvRUFFTTsyRkRLTyxxQkFBcUI7a0JBTGpDLFNBQVM7K0JBQ0UsZ0JBQWdCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2JzLWlucHV0LWdyb3VwJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2lucHV0LWdyb3VwLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vaW5wdXQtZ3JvdXAuY29tcG9uZW50LnNjc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgQnNJbnB1dEdyb3VwQ29tcG9uZW50IHt9XG4iLCI8ZGl2IGNsYXNzPVwiaW5wdXQtZ3JvdXBcIj5cbiAgICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG48L2Rpdj4iXX0=","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsInputGroupComponent } from './input-group/input-group.component';\nimport * as i0 from \"@angular/core\";\nexport class BsInputGroupModule {\n}\nBsInputGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"15.0.4\", ngImport: i0, type: BsInputGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });\nBsInputGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"15.0.4\", ngImport: i0, type: BsInputGroupModule, declarations: [BsInputGroupComponent], imports: [CommonModule], exports: [BsInputGroupComponent] });\nBsInputGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"15.0.4\", ngImport: i0, type: BsInputGroupModule, imports: [CommonModule] });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"15.0.4\", ngImport: i0, type: BsInputGroupModule, decorators: [{\n type: NgModule,\n args: [{\n declarations: [BsInputGroupComponent],\n imports: [CommonModule],\n exports: [BsInputGroupComponent],\n }]\n }] });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtZ3JvdXAubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9taW50cGxheWVyLW5nLWJvb3RzdHJhcC9pbnB1dC1ncm91cC9zcmMvaW5wdXQtZ3JvdXAubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLHFDQUFxQyxDQUFDOztBQU81RSxNQUFNLE9BQU8sa0JBQWtCOzsrR0FBbEIsa0JBQWtCO2dIQUFsQixrQkFBa0IsaUJBSmQscUJBQXFCLGFBQzFCLFlBQVksYUFDWixxQkFBcUI7Z0hBRXBCLGtCQUFrQixZQUhuQixZQUFZOzJGQUdYLGtCQUFrQjtrQkFMOUIsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUUsQ0FBQyxxQkFBcUIsQ0FBQztvQkFDckMsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixPQUFPLEVBQUUsQ0FBQyxxQkFBcUIsQ0FBQztpQkFDakMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IEJzSW5wdXRHcm91cENvbXBvbmVudCB9IGZyb20gJy4vaW5wdXQtZ3JvdXAvaW5wdXQtZ3JvdXAuY29tcG9uZW50JztcblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbQnNJbnB1dEdyb3VwQ29tcG9uZW50XSxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGV4cG9ydHM6IFtCc0lucHV0R3JvdXBDb21wb25lbnRdLFxufSlcbmV4cG9ydCBjbGFzcyBCc0lucHV0R3JvdXBNb2R1bGUge31cbiJdfQ==","/**\n * Generated bundle index. Do not edit.\n */\nexport * from './index';\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWludHBsYXllci1uZy1ib290c3RyYXAtaW5wdXQtZ3JvdXAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL21pbnRwbGF5ZXItbmctYm9vdHN0cmFwL2lucHV0LWdyb3VwL21pbnRwbGF5ZXItbmctYm9vdHN0cmFwLWlucHV0LWdyb3VwLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxTQUFTLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vaW5kZXgnO1xuIl19"],"names":[],"mappings":";;;;AAEO,MAAM,qBAAqB,CAAC;AACnC,CAAC;AACD,qBAAqB,CAAC,IAAI,GAAG,EAAE,CAAC,kBAAkB,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,qBAAqB,EAAE,IAAI,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,CAAC,eAAe,CAAC,SAAS,EAAE,CAAC,CAAC;AAC3L,qBAAqB,CAAC,IAAI,GAAG,EAAE,CAAC,oBAAoB,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,qBAAqB,EAAE,QAAQ,EAAE,gBAAgB,EAAE,QAAQ,EAAE,EAAE,EAAE,QAAQ,EAAE,oEAAoE,EAAE,MAAM,EAAE,CAAC,4rFAA4rF,CAAC,EAAE,CAAC,CAAC;AACj8F,EAAE,CAAC,wBAAwB,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,qBAAqB,EAAE,UAAU,EAAE,CAAC;AAC/H,YAAY,IAAI,EAAE,SAAS;AAC3B,YAAY,IAAI,EAAE,CAAC,EAAE,QAAQ,EAAE,gBAAgB,EAAE,QAAQ,EAAE,oEAAoE,EAAE,MAAM,EAAE,CAAC,4rFAA4rF,CAAC,EAAE,CAAC;AAC10F,SAAS,CAAC,EAAE,CAAC;;ACLN,MAAM,kBAAkB,CAAC;AAChC,CAAC;AACD,kBAAkB,CAAC,IAAI,GAAG,EAAE,CAAC,kBAAkB,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,kBAAkB,EAAE,IAAI,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,CAAC,eAAe,CAAC,QAAQ,EAAE,CAAC,CAAC;AACpL,kBAAkB,CAAC,IAAI,GAAG,EAAE,CAAC,mBAAmB,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,kBAAkB,EAAE,YAAY,EAAE,CAAC,qBAAqB,CAAC,EAAE,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,OAAO,EAAE,CAAC,qBAAqB,CAAC,EAAE,CAAC,CAAC;AACxO,kBAAkB,CAAC,IAAI,GAAG,EAAE,CAAC,mBAAmB,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,kBAAkB,EAAE,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC;AAC/J,EAAE,CAAC,wBAAwB,CAAC,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,kBAAkB,EAAE,UAAU,EAAE,CAAC;AAC5H,YAAY,IAAI,EAAE,QAAQ;AAC1B,YAAY,IAAI,EAAE,CAAC;AACnB,oBAAoB,YAAY,EAAE,CAAC,qBAAqB,CAAC;AACzD,oBAAoB,OAAO,EAAE,CAAC,YAAY,CAAC;AAC3C,oBAAoB,OAAO,EAAE,CAAC,qBAAqB,CAAC;AACpD,iBAAiB,CAAC;AAClB,SAAS,CAAC,EAAE,CAAC;;AChBb;AACA;AACA;;;;"}
|
|
@@ -8,6 +8,7 @@ import { BsAlertComponent, BsAlertCloseComponent } from '@mintplayer/ng-bootstra
|
|
|
8
8
|
import { BsBadgeComponent } from '@mintplayer/ng-bootstrap/badge';
|
|
9
9
|
import { BsBreadcrumbComponent, BsBreadcrumbItemComponent } from '@mintplayer/ng-bootstrap/breadcrumb';
|
|
10
10
|
import { BsButtonGroupComponent } from '@mintplayer/ng-bootstrap/button-group';
|
|
11
|
+
import { BsButtonTypeDirective } from '@mintplayer/ng-bootstrap/button-type';
|
|
11
12
|
import { BsCalendarComponent } from '@mintplayer/ng-bootstrap/calendar';
|
|
12
13
|
import { BsCardComponent, BsCardHeaderComponent } from '@mintplayer/ng-bootstrap/card';
|
|
13
14
|
import { BsCarouselComponent } from '@mintplayer/ng-bootstrap/carousel';
|
|
@@ -19,6 +20,7 @@ import { BsDatepickerComponent } from '@mintplayer/ng-bootstrap/datepicker';
|
|
|
19
20
|
import { BsDropdownItemComponent, BsDropdownMenuComponent } from '@mintplayer/ng-bootstrap/dropdown-menu';
|
|
20
21
|
import { BsFileUploadComponent } from '@mintplayer/ng-bootstrap/file-upload';
|
|
21
22
|
import { BsGridComponent } from '@mintplayer/ng-bootstrap/grid';
|
|
23
|
+
import { BsInputGroupComponent } from '@mintplayer/ng-bootstrap/input-group';
|
|
22
24
|
import { BsListGroupComponent, BsListGroupItemComponent } from '@mintplayer/ng-bootstrap/list-group';
|
|
23
25
|
import { BsMultiselectComponent } from '@mintplayer/ng-bootstrap/multiselect';
|
|
24
26
|
import { BsNavbarComponent, BsNavbarNavComponent, BsNavbarDropdownComponent, BsNavbarItemComponent, BsNavbarBrandComponent } from '@mintplayer/ng-bootstrap/navbar';
|
|
@@ -299,6 +301,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImpor
|
|
|
299
301
|
}]
|
|
300
302
|
}] });
|
|
301
303
|
|
|
304
|
+
class BsButtonTypeMockDirective {
|
|
305
|
+
constructor() {
|
|
306
|
+
this.color = Color$1.transparent;
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
BsButtonTypeMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsButtonTypeMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
310
|
+
BsButtonTypeMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: BsButtonTypeMockDirective, selector: "button[color],input[type=\"button\"][color],input[type=\"submit\"][color]", inputs: { color: "color" }, providers: [
|
|
311
|
+
{ provide: BsButtonTypeDirective, useExisting: BsButtonTypeMockDirective },
|
|
312
|
+
], ngImport: i0 });
|
|
313
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsButtonTypeMockDirective, decorators: [{
|
|
314
|
+
type: Directive,
|
|
315
|
+
args: [{
|
|
316
|
+
selector: 'button[color],input[type="button"][color],input[type="submit"][color]',
|
|
317
|
+
providers: [
|
|
318
|
+
{ provide: BsButtonTypeDirective, useExisting: BsButtonTypeMockDirective },
|
|
319
|
+
]
|
|
320
|
+
}]
|
|
321
|
+
}], propDecorators: { color: [{
|
|
322
|
+
type: Input
|
|
323
|
+
}] } });
|
|
324
|
+
|
|
325
|
+
class BsButtonTypeTestingModule {
|
|
326
|
+
}
|
|
327
|
+
BsButtonTypeTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsButtonTypeTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
328
|
+
BsButtonTypeTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: BsButtonTypeTestingModule, declarations: [BsButtonTypeMockDirective], imports: [CommonModule], exports: [BsButtonTypeMockDirective] });
|
|
329
|
+
BsButtonTypeTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsButtonTypeTestingModule, imports: [CommonModule] });
|
|
330
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsButtonTypeTestingModule, decorators: [{
|
|
331
|
+
type: NgModule,
|
|
332
|
+
args: [{
|
|
333
|
+
declarations: [BsButtonTypeMockDirective],
|
|
334
|
+
imports: [CommonModule],
|
|
335
|
+
exports: [BsButtonTypeMockDirective]
|
|
336
|
+
}]
|
|
337
|
+
}] });
|
|
338
|
+
|
|
302
339
|
class BsCalendarMockComponent {
|
|
303
340
|
}
|
|
304
341
|
BsCalendarMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsCalendarMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1059,6 +1096,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImpor
|
|
|
1059
1096
|
}]
|
|
1060
1097
|
}] });
|
|
1061
1098
|
|
|
1099
|
+
class BsInputGroupMockComponent {
|
|
1100
|
+
}
|
|
1101
|
+
BsInputGroupMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsInputGroupMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1102
|
+
BsInputGroupMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.4", type: BsInputGroupMockComponent, selector: "bs-input-group", providers: [
|
|
1103
|
+
{ provide: BsInputGroupComponent, useExisting: BsInputGroupMockComponent },
|
|
1104
|
+
], ngImport: i0, template: "<div>\n <ng-content></ng-content>\n</div>", styles: [""] });
|
|
1105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsInputGroupMockComponent, decorators: [{
|
|
1106
|
+
type: Component,
|
|
1107
|
+
args: [{ selector: 'bs-input-group', providers: [
|
|
1108
|
+
{ provide: BsInputGroupComponent, useExisting: BsInputGroupMockComponent },
|
|
1109
|
+
], template: "<div>\n <ng-content></ng-content>\n</div>" }]
|
|
1110
|
+
}] });
|
|
1111
|
+
|
|
1112
|
+
class BsInputGroupTestingModule {
|
|
1113
|
+
}
|
|
1114
|
+
BsInputGroupTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsInputGroupTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1115
|
+
BsInputGroupTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: BsInputGroupTestingModule, declarations: [BsInputGroupMockComponent], imports: [CommonModule], exports: [BsInputGroupMockComponent] });
|
|
1116
|
+
BsInputGroupTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsInputGroupTestingModule, providers: [
|
|
1117
|
+
{ provide: BsInputGroupComponent, useClass: BsInputGroupMockComponent },
|
|
1118
|
+
], imports: [CommonModule] });
|
|
1119
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsInputGroupTestingModule, decorators: [{
|
|
1120
|
+
type: NgModule,
|
|
1121
|
+
args: [{
|
|
1122
|
+
declarations: [BsInputGroupMockComponent],
|
|
1123
|
+
imports: [CommonModule],
|
|
1124
|
+
exports: [BsInputGroupMockComponent],
|
|
1125
|
+
providers: [
|
|
1126
|
+
{ provide: BsInputGroupComponent, useClass: BsInputGroupMockComponent },
|
|
1127
|
+
],
|
|
1128
|
+
}]
|
|
1129
|
+
}] });
|
|
1130
|
+
|
|
1062
1131
|
class BsListGroupMockComponent {
|
|
1063
1132
|
}
|
|
1064
1133
|
BsListGroupMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: BsListGroupMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -2418,5 +2487,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImpor
|
|
|
2418
2487
|
* Generated bundle index. Do not edit.
|
|
2419
2488
|
*/
|
|
2420
2489
|
|
|
2421
|
-
export { BsAccordionMockComponent, BsAccordionTabHeaderMockComponent, BsAccordionTabMockComponent, BsAccordionTestingModule, BsAddPropertiesMockPipe, BsAlertCloseMockComponent, BsAlertMockComponent, BsAlertTestingModule, BsBadgeMockComponent, BsBadgeTestingModule, BsBreadcrumbItemMockComponent, BsBreadcrumbMockComponent, BsBreadcrumbTestingModule, BsButtonGroupMockComponent, BsButtonGroupTestingModule, BsCalendarMockComponent, BsCalendarTestingModule, BsCardHeaderMockComponent, BsCardMockComponent, BsCardTestingModule, BsCarouselImageMockDirective, BsCarouselMockComponent, BsCarouselTestingModule, BsCloseMockComponent, BsCloseTestingModule, BsCodeSnippetMockComponent, BsCodeSnippetTestingModule, BsColumnMockDirective, BsContextMenuMockDirective, BsContextMenuTestingModule, BsCopyMockDirective, BsCopyTestingModule, BsDatatableColumnMockDirective, BsDatatableMockComponent, BsDatatableTestingModule, BsDatepickerMockComponent, BsDatepickerTestingModule, BsDropdownItemMockComponent, BsDropdownMenuMockComponent, BsDropdownMenuMockDirective, BsDropdownMenuTestingModule, BsDropdownMockDirective, BsDropdownTestingModule, BsDropdownToggleMockDirective, BsFileUploadMockComponent, BsFileUploadTemplateMockDirective, BsFileUploadTestingModule, BsForMockDirective, BsForTestingModule, BsGridMockComponent, BsGridTestingModule, BsHasOverlayMockComponent, BsHasOverlayTestingModule, BsListGroupItemMockComponent, BsListGroupMockComponent, BsListGroupTestingModule, BsModalHostMockComponent, BsModalTestingModule, BsMultiselectMockComponent, BsMultiselectTestingModule, BsNavbarBrandMockComponent, BsNavbarDropdownMockComponent, BsNavbarItemMockComponent, BsNavbarMockComponent, BsNavbarNavMockComponent, BsNavbarTestingModule, BsOffcanvasContentMockDirective, BsOffcanvasHostMockComponent, BsOffcanvasTestingModule, BsPaginationMockComponent, BsPaginationTestingModule, BsPlaceholderMockComponent, BsPlaceholderTestingModule, BsPopoverMockDirective, BsPopoverTestingModule, BsProgressBarMockComponent, BsProgressBarTestingModule, BsProgressMockComponent, BsRangeMockComponent, BsRangeMockValueAccessor, BsRangeTestingModule, BsRatingMockComponent, BsRatingTestingModule, BsRowMockDirective, BsRowTemplateMockDirective, BsSchedulerMockComponent, BsSchedulerTestingModule, BsScrollspyMockComponent, BsScrollspyMockDirective, BsScrollspyTestingModule, BsSelect2Component, BsSelect2TestingModule, BsSelectMockComponent, BsSelectMockValueAccessor, BsSelectOptionMock, BsSelectTestingModule, BsSnackbarMockService, BsSnackbarTestingModule, BsSpinnerMockComponent, BsSpinnerTestingModule, BsTabControlMockComponent, BsTabControlTestingModule, BsTabPageMockComponent, BsTableMockComponent, BsTableTestingModule, BsTimepickerMockComponent, BsTimepickerTestingModule, BsToastBodyMockComponent, BsToastContainerMockComponent, BsToastHeaderMockComponent, BsToastMockComponent, BsToastMockService, BsToastTestingModule, BsToggleButtonGroupMockDirective, BsToggleButtonMockComponent, BsToggleButtonMockValueAccessor, BsToggleButtonTestingModule, BsTooltipMockDirective, BsTooltipTestingModule, BsTypeaheadMockComponent, BsTypeaheadTestingModule, Color, DatatableSettingsMock, ESchedulerMode, EnhancedPasteMockDirective, EnhancedPasteTestingModule, HighlightMockDirective, HighlightTestingModule, NavbarContentMockDirective, PORTAL_FACTORY, UcFirstMockPipe, UcFirstTestingModule };
|
|
2490
|
+
export { BsAccordionMockComponent, BsAccordionTabHeaderMockComponent, BsAccordionTabMockComponent, BsAccordionTestingModule, BsAddPropertiesMockPipe, BsAlertCloseMockComponent, BsAlertMockComponent, BsAlertTestingModule, BsBadgeMockComponent, BsBadgeTestingModule, BsBreadcrumbItemMockComponent, BsBreadcrumbMockComponent, BsBreadcrumbTestingModule, BsButtonGroupMockComponent, BsButtonGroupTestingModule, BsButtonTypeMockDirective, BsButtonTypeTestingModule, BsCalendarMockComponent, BsCalendarTestingModule, BsCardHeaderMockComponent, BsCardMockComponent, BsCardTestingModule, BsCarouselImageMockDirective, BsCarouselMockComponent, BsCarouselTestingModule, BsCloseMockComponent, BsCloseTestingModule, BsCodeSnippetMockComponent, BsCodeSnippetTestingModule, BsColumnMockDirective, BsContextMenuMockDirective, BsContextMenuTestingModule, BsCopyMockDirective, BsCopyTestingModule, BsDatatableColumnMockDirective, BsDatatableMockComponent, BsDatatableTestingModule, BsDatepickerMockComponent, BsDatepickerTestingModule, BsDropdownItemMockComponent, BsDropdownMenuMockComponent, BsDropdownMenuMockDirective, BsDropdownMenuTestingModule, BsDropdownMockDirective, BsDropdownTestingModule, BsDropdownToggleMockDirective, BsFileUploadMockComponent, BsFileUploadTemplateMockDirective, BsFileUploadTestingModule, BsForMockDirective, BsForTestingModule, BsGridMockComponent, BsGridTestingModule, BsHasOverlayMockComponent, BsHasOverlayTestingModule, BsInputGroupMockComponent, BsInputGroupTestingModule, BsListGroupItemMockComponent, BsListGroupMockComponent, BsListGroupTestingModule, BsModalHostMockComponent, BsModalTestingModule, BsMultiselectMockComponent, BsMultiselectTestingModule, BsNavbarBrandMockComponent, BsNavbarDropdownMockComponent, BsNavbarItemMockComponent, BsNavbarMockComponent, BsNavbarNavMockComponent, BsNavbarTestingModule, BsOffcanvasContentMockDirective, BsOffcanvasHostMockComponent, BsOffcanvasTestingModule, BsPaginationMockComponent, BsPaginationTestingModule, BsPlaceholderMockComponent, BsPlaceholderTestingModule, BsPopoverMockDirective, BsPopoverTestingModule, BsProgressBarMockComponent, BsProgressBarTestingModule, BsProgressMockComponent, BsRangeMockComponent, BsRangeMockValueAccessor, BsRangeTestingModule, BsRatingMockComponent, BsRatingTestingModule, BsRowMockDirective, BsRowTemplateMockDirective, BsSchedulerMockComponent, BsSchedulerTestingModule, BsScrollspyMockComponent, BsScrollspyMockDirective, BsScrollspyTestingModule, BsSelect2Component, BsSelect2TestingModule, BsSelectMockComponent, BsSelectMockValueAccessor, BsSelectOptionMock, BsSelectTestingModule, BsSnackbarMockService, BsSnackbarTestingModule, BsSpinnerMockComponent, BsSpinnerTestingModule, BsTabControlMockComponent, BsTabControlTestingModule, BsTabPageMockComponent, BsTableMockComponent, BsTableTestingModule, BsTimepickerMockComponent, BsTimepickerTestingModule, BsToastBodyMockComponent, BsToastContainerMockComponent, BsToastHeaderMockComponent, BsToastMockComponent, BsToastMockService, BsToastTestingModule, BsToggleButtonGroupMockDirective, BsToggleButtonMockComponent, BsToggleButtonMockValueAccessor, BsToggleButtonTestingModule, BsTooltipMockDirective, BsTooltipTestingModule, BsTypeaheadMockComponent, BsTypeaheadTestingModule, Color, DatatableSettingsMock, ESchedulerMode, EnhancedPasteMockDirective, EnhancedPasteTestingModule, HighlightMockDirective, HighlightTestingModule, NavbarContentMockDirective, PORTAL_FACTORY, UcFirstMockPipe, UcFirstTestingModule };
|
|
2422
2491
|
//# sourceMappingURL=mintplayer-ng-bootstrap-testing.mjs.map
|