@mintplayer/ng-bootstrap 13.3.11 → 13.3.12
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/accordion/accordion/accordion.component.mjs +4 -23
- package/esm2020/lib/components/accordion/accordion-tab/accordion-tab.component.mjs +35 -4
- package/esm2020/lib/components/accordion/accordion-tab-header/accordion-tab-header.component.mjs +2 -7
- package/esm2020/lib/components/accordion/accordion.module.mjs +15 -5
- package/esm2020/lib/components/accordion/from-overlay/from-overlay.directive.mjs +61 -0
- package/esm2020/lib/components/accordion/from-overlay-id/from-overlay-id.directive.mjs +45 -0
- package/esm2020/lib/components/accordion/index.mjs +3 -1
- package/esm2020/lib/components/modal/component/modal/modal.component.mjs +1 -1
- package/esm2020/lib/components/modal/component/modal-content/modal-content.component.mjs +17 -5
- package/esm2020/lib/components/modal/service/modal.service.mjs +3 -2
- package/fesm2015/mintplayer-ng-bootstrap.mjs +160 -40
- package/fesm2015/mintplayer-ng-bootstrap.mjs.map +1 -1
- package/fesm2020/mintplayer-ng-bootstrap.mjs +160 -40
- package/fesm2020/mintplayer-ng-bootstrap.mjs.map +1 -1
- package/lib/components/accordion/accordion/accordion.component.d.ts +4 -7
- package/lib/components/accordion/accordion-tab/accordion-tab.component.d.ts +7 -2
- package/lib/components/accordion/accordion.module.d.ts +4 -2
- package/lib/components/accordion/from-overlay/from-overlay.directive.d.ts +20 -0
- package/lib/components/accordion/from-overlay-id/from-overlay-id.directive.d.ts +16 -0
- package/lib/components/accordion/index.d.ts +2 -0
- package/lib/components/modal/component/modal-content/modal-content.component.d.ts +2 -0
- package/lib/components/modal/service/modal.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { QueryList } from '@angular/core';
|
|
2
2
|
import { BsAccordionTabComponent } from '../accordion-tab/accordion-tab.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class BsAccordionComponent {
|
|
5
|
-
tabPages: BsAccordionTabComponent
|
|
6
|
-
|
|
7
|
-
private _activeTab;
|
|
8
|
-
get activeTab(): BsAccordionTabComponent | null;
|
|
9
|
-
set activeTab(value: BsAccordionTabComponent | null);
|
|
5
|
+
tabPages: QueryList<BsAccordionTabComponent>;
|
|
6
|
+
disableAnimations: boolean;
|
|
10
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<BsAccordionComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BsAccordionComponent, "bs-accordion", never, {
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BsAccordionComponent, "bs-accordion", never, {}, {}, ["tabPages"], ["*"]>;
|
|
12
9
|
}
|
|
@@ -1,10 +1,15 @@
|
|
|
1
|
-
import { QueryList } from '@angular/core';
|
|
1
|
+
import { EventEmitter, QueryList } from '@angular/core';
|
|
2
2
|
import { BsAccordionComponent } from '../accordion/accordion.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class BsAccordionTabComponent {
|
|
5
5
|
accordion: BsAccordionComponent;
|
|
6
6
|
childAccordions: QueryList<BsAccordionComponent>;
|
|
7
7
|
constructor(accordion: BsAccordionComponent);
|
|
8
|
+
private tabOverlayIdentifier;
|
|
9
|
+
isActiveChange: EventEmitter<boolean>;
|
|
10
|
+
private _isActive;
|
|
11
|
+
get isActive(): boolean;
|
|
12
|
+
set isActive(value: boolean);
|
|
8
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<BsAccordionTabComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BsAccordionTabComponent, "bs-accordion-tab", never, {}, {}, ["childAccordions"], ["bs-accordion-tab-header", "*"]>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BsAccordionTabComponent, "bs-accordion-tab", never, { "isActive": "isActive"; }, { "isActiveChange": "isActiveChange"; }, ["childAccordions"], ["bs-accordion-tab-header", "*"]>;
|
|
10
15
|
}
|
|
@@ -2,9 +2,11 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./accordion/accordion.component";
|
|
3
3
|
import * as i2 from "./accordion-tab/accordion-tab.component";
|
|
4
4
|
import * as i3 from "./accordion-tab-header/accordion-tab-header.component";
|
|
5
|
-
import * as i4 from "
|
|
5
|
+
import * as i4 from "./from-overlay/from-overlay.directive";
|
|
6
|
+
import * as i5 from "./from-overlay-id/from-overlay-id.directive";
|
|
7
|
+
import * as i6 from "@angular/common";
|
|
6
8
|
export declare class BsAccordionModule {
|
|
7
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<BsAccordionModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BsAccordionModule, [typeof i1.BsAccordionComponent, typeof i2.BsAccordionTabComponent, typeof i3.BsAccordionTabHeaderComponent], [typeof
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BsAccordionModule, [typeof i1.BsAccordionComponent, typeof i2.BsAccordionTabComponent, typeof i3.BsAccordionTabHeaderComponent, typeof i4.BsFromOverlayDirective, typeof i5.BsFromOverlayIdDirective], [typeof i6.CommonModule], [typeof i1.BsAccordionComponent, typeof i2.BsAccordionTabComponent, typeof i3.BsAccordionTabHeaderComponent, typeof i4.BsFromOverlayDirective, typeof i5.BsFromOverlayIdDirective]>;
|
|
9
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<BsAccordionModule>;
|
|
10
12
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { AfterContentInit, ElementRef, EventEmitter, OnDestroy, QueryList } from '@angular/core';
|
|
2
|
+
import { BsAccordionTabComponent } from '..';
|
|
3
|
+
import { BsAccordionComponent } from '../accordion/accordion.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BsFromOverlayDirective implements AfterContentInit, OnDestroy {
|
|
6
|
+
private accordion;
|
|
7
|
+
constructor(accordion: BsAccordionComponent);
|
|
8
|
+
private readonly inited$;
|
|
9
|
+
private readonly destroyed$;
|
|
10
|
+
private readonly activeOverlayIdentifier$;
|
|
11
|
+
bsFromOverlayChange: EventEmitter<string | null>;
|
|
12
|
+
private _bsFromOverlay;
|
|
13
|
+
get bsFromOverlay(): string | null;
|
|
14
|
+
set bsFromOverlay(value: string | null);
|
|
15
|
+
tabPages: QueryList<ElementRef<BsAccordionTabComponent>>;
|
|
16
|
+
ngAfterContentInit(): void;
|
|
17
|
+
ngOnDestroy(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BsFromOverlayDirective, never>;
|
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BsFromOverlayDirective, "bs-accordion[bsFromOverlay]", never, { "bsFromOverlay": "bsFromOverlay"; }, { "bsFromOverlayChange": "bsFromOverlayChange"; }, ["tabPages"]>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { BsAccordionTabComponent } from '../accordion-tab/accordion-tab.component';
|
|
3
|
+
import { BsFromOverlayDirective } from '../from-overlay/from-overlay.directive';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BsFromOverlayIdDirective implements OnDestroy {
|
|
6
|
+
private accordionTab;
|
|
7
|
+
private bsFromOverlay;
|
|
8
|
+
constructor(accordionTab: BsAccordionTabComponent, bsFromOverlay: BsFromOverlayDirective);
|
|
9
|
+
private destroyed$;
|
|
10
|
+
ngOnDestroy(): void;
|
|
11
|
+
private _bsFromOverlayId;
|
|
12
|
+
get bsFromOverlayId(): string;
|
|
13
|
+
set bsFromOverlayId(value: string);
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BsFromOverlayIdDirective, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BsFromOverlayIdDirective, "bs-accordion-tab[bsFromOverlayId]", never, { "bsFromOverlayId": "bsFromOverlayId"; }, {}, never>;
|
|
16
|
+
}
|
|
@@ -2,3 +2,5 @@ export * from './accordion.module';
|
|
|
2
2
|
export * from './accordion/accordion.component';
|
|
3
3
|
export * from './accordion-tab/accordion-tab.component';
|
|
4
4
|
export * from './accordion-tab-header/accordion-tab-header.component';
|
|
5
|
+
export * from './from-overlay/from-overlay.directive';
|
|
6
|
+
export * from './from-overlay-id/from-overlay-id.directive';
|
|
@@ -5,9 +5,11 @@ export declare class BsModalContentComponent {
|
|
|
5
5
|
constructor(content: TemplateRef<any>);
|
|
6
6
|
content: TemplateRef<any>;
|
|
7
7
|
private instance;
|
|
8
|
+
closeOnEscape: boolean;
|
|
8
9
|
animationState: string;
|
|
9
10
|
animationStateChanged: EventEmitter<AnimationEvent>;
|
|
10
11
|
onAnimationChanged(event: AnimationEvent): void;
|
|
12
|
+
private onKeyDown;
|
|
11
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<BsModalContentComponent, never>;
|
|
12
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<BsModalContentComponent, "bs-modal-content", never, {}, {}, never, never>;
|
|
13
15
|
}
|
|
@@ -7,7 +7,7 @@ export declare class BsModalService {
|
|
|
7
7
|
private parentInjector;
|
|
8
8
|
private componentFactoryResolver;
|
|
9
9
|
constructor(overlay: Overlay, parentInjector: Injector, componentFactoryResolver: ComponentFactoryResolver);
|
|
10
|
-
show(template: TemplateRef<any
|
|
10
|
+
show(template: TemplateRef<any>, closeOnEscape?: boolean): BsModalContentComponent;
|
|
11
11
|
hide(modal: BsModalContentComponent): void;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<BsModalService, never>;
|
|
13
13
|
static ɵprov: i0.ɵɵInjectableDeclaration<BsModalService>;
|