@mintplayer/ng-bootstrap 13.1.6 → 13.1.7
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/lib/components/calendar/calendar.component.mjs +77 -34
- package/esm2020/lib/components/datepicker/datepicker.component.mjs +22 -0
- package/esm2020/lib/components/datepicker/datepicker.module.mjs +34 -0
- package/esm2020/lib/components/datepicker/index.mjs +3 -0
- package/esm2020/lib/components/dropdown/dropdown/dropdown.directive.mjs +31 -0
- package/esm2020/lib/components/dropdown/dropdown-menu/dropdown-menu.directive.mjs +64 -0
- package/esm2020/lib/components/dropdown/dropdown-toggle/dropdown-toggle.directive.mjs +29 -0
- package/esm2020/lib/components/dropdown/dropdown.module.mjs +40 -0
- package/esm2020/lib/components/dropdown/index.mjs +5 -0
- package/esm2020/lib/components/index.mjs +4 -1
- package/esm2020/lib/components/multiselect/index.mjs +3 -0
- package/esm2020/lib/components/multiselect/multiselect.component.mjs +33 -0
- package/esm2020/lib/components/multiselect/multiselect.module.mjs +30 -0
- package/esm2020/lib/components/navbar/nav-link/nav-link.directive.mjs +1 -1
- package/esm2020/lib/components/scrollspy/component/scrollspy.component.mjs +2 -2
- package/esm2020/lib/pipes/month-name/month-name.pipe.mjs +7 -2
- package/fesm2015/mintplayer-ng-bootstrap.mjs +339 -54
- package/fesm2015/mintplayer-ng-bootstrap.mjs.map +1 -1
- package/fesm2020/mintplayer-ng-bootstrap.mjs +337 -54
- package/fesm2020/mintplayer-ng-bootstrap.mjs.map +1 -1
- package/lib/components/calendar/calendar.component.d.ts +21 -13
- package/lib/components/datepicker/datepicker.component.d.ts +10 -0
- package/lib/components/datepicker/datepicker.module.d.ts +10 -0
- package/lib/components/datepicker/index.d.ts +2 -0
- package/lib/components/dropdown/dropdown/dropdown.directive.d.ts +13 -0
- package/lib/components/dropdown/dropdown-menu/dropdown-menu.directive.d.ts +17 -0
- package/lib/components/dropdown/dropdown-toggle/dropdown-toggle.directive.d.ts +11 -0
- package/lib/components/dropdown/dropdown.module.d.ts +11 -0
- package/lib/components/dropdown/index.d.ts +4 -0
- package/lib/components/index.d.ts +3 -0
- package/lib/components/multiselect/index.d.ts +2 -0
- package/lib/components/multiselect/multiselect.component.d.ts +11 -0
- package/lib/components/multiselect/multiselect.module.d.ts +9 -0
- package/lib/pipes/month-name/month-name.pipe.d.ts +1 -1
- package/package.json +2 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { BsDropdownDirective } from '../dropdown/dropdown.directive';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BsDropdownToggleDirective {
|
|
5
|
+
private dropdown;
|
|
6
|
+
constructor(dropdown: BsDropdownDirective, toggleButton: ElementRef);
|
|
7
|
+
toggleButton: ElementRef;
|
|
8
|
+
onClick(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BsDropdownToggleDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BsDropdownToggleDirective, "[bsDropdownToggle]", never, {}, {}, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./dropdown/dropdown.directive";
|
|
3
|
+
import * as i2 from "./dropdown-toggle/dropdown-toggle.directive";
|
|
4
|
+
import * as i3 from "./dropdown-menu/dropdown-menu.directive";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/cdk/overlay";
|
|
7
|
+
export declare class BsDropdownModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BsDropdownModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BsDropdownModule, [typeof i1.BsDropdownDirective, typeof i2.BsDropdownToggleDirective, typeof i3.BsDropdownMenuDirective], [typeof i4.CommonModule, typeof i5.OverlayModule], [typeof i1.BsDropdownDirective, typeof i2.BsDropdownToggleDirective, typeof i3.BsDropdownMenuDirective]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BsDropdownModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BsMultiselectComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
items: any[];
|
|
6
|
+
selectedItems: any[];
|
|
7
|
+
itemChange(item: any, event: Event): void;
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BsMultiselectComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BsMultiselectComponent, "bs-multiselect", never, { "items": "items"; "selectedItems": "selectedItems"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./multiselect.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../dropdown/dropdown.module";
|
|
5
|
+
export declare class BsMultiselectModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BsMultiselectModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BsMultiselectModule, [typeof i1.BsMultiselectComponent], [typeof i2.CommonModule, typeof i3.BsDropdownModule], [typeof i1.BsMultiselectComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BsMultiselectModule>;
|
|
9
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class MonthNamePipe implements PipeTransform {
|
|
4
|
-
transform(date: Date, ...args: any[]): string;
|
|
4
|
+
transform(date: Date | null, ...args: any[]): string;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<MonthNamePipe, never>;
|
|
6
6
|
static ɵpipe: i0.ɵɵPipeDeclaration<MonthNamePipe, "monthName">;
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mintplayer/ng-bootstrap",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "13.1.
|
|
4
|
+
"version": "13.1.7",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/MintPlayer/mintplayer-ng-bootstrap"
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"peerDependencies": {
|
|
10
10
|
"@angular/common": "^13.0.0",
|
|
11
11
|
"@angular/core": "^13.0.0",
|
|
12
|
+
"@angular/cdk": "^13.0.0",
|
|
12
13
|
"bootstrap": "^5.1.3",
|
|
13
14
|
"bootstrap-icons": "^1.7.2",
|
|
14
15
|
"@mintplayer/ng-click-outside": "^13.0.0",
|