@mintplayer/ng-bootstrap 15.2.2 → 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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mintplayer/ng-bootstrap",
3
3
  "private": false,
4
- "version": "15.2.2",
4
+ "version": "15.2.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/MintPlayer/mintplayer-ng-bootstrap",
@@ -0,0 +1,7 @@
1
+ import { Color } from '@mintplayer/ng-bootstrap';
2
+ import * as i0 from "@angular/core";
3
+ export declare class BsButtonTypeMockDirective {
4
+ color: Color;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsButtonTypeMockDirective, never>;
6
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsButtonTypeMockDirective, "button[color],input[type=\"button\"][color],input[type=\"submit\"][color]", never, { "color": "color"; }, {}, never, never, false, never>;
7
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./button-type.directive";
3
+ import * as i2 from "@angular/common";
4
+ export declare class BsButtonTypeTestingModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsButtonTypeTestingModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsButtonTypeTestingModule, [typeof i1.BsButtonTypeMockDirective], [typeof i2.CommonModule], [typeof i1.BsButtonTypeMockDirective]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsButtonTypeTestingModule>;
8
+ }
@@ -0,0 +1,2 @@
1
+ export * from './button-type.directive';
2
+ export * from './button-type.module';
@@ -3,6 +3,7 @@ export * from './alert';
3
3
  export * from './badge';
4
4
  export * from './breadcrumb';
5
5
  export * from './button-group';
6
+ export * from './button-type';
6
7
  export * from './calendar';
7
8
  export * from './card';
8
9
  export * from './carousel';
@@ -21,6 +22,7 @@ export * from './for';
21
22
  export * from './grid';
22
23
  export * from './has-overlay';
23
24
  export * from './highlight';
25
+ export * from './input-group';
24
26
  export * from './list-group';
25
27
  export * from './modal';
26
28
  export * from './multiselect';
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsInputGroupMockComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsInputGroupMockComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsInputGroupMockComponent, "bs-input-group", never, {}, {}, never, ["*"], false, never>;
5
+ }
@@ -0,0 +1,2 @@
1
+ export * from './component/input-group.component';
2
+ export * from './input-group.module';
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./component/input-group.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class BsInputGroupTestingModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsInputGroupTestingModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsInputGroupTestingModule, [typeof i1.BsInputGroupMockComponent], [typeof i2.CommonModule], [typeof i1.BsInputGroupMockComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsInputGroupTestingModule>;
8
+ }