@angular-bootstrap/ngbootstrap 0.0.7 → 0.0.9
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": "@angular-bootstrap/ngbootstrap",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Angular UI library providing datagrid, drag-and-drop, pagination, and
|
|
3
|
+
"version": "0.0.9",
|
|
4
|
+
"description": "Angular UI library providing datagrid, drag-and-drop, pagination, stepper, splitter, typeahead and chips components with Bootstrap-friendly styling.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Harmeet Singh"
|
|
7
7
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { TemplateRef, AfterContentInit, OnChanges, EventEmitter, SimpleChanges, InjectionToken,
|
|
3
|
-
import { AbstractControl, FormGroup, FormControl } from '@angular/forms';
|
|
2
|
+
import { TemplateRef, AfterContentInit, OnChanges, EventEmitter, SimpleChanges, InjectionToken, QueryList, ElementRef, AfterViewInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
3
|
+
import { AbstractControl, FormGroup, FormControl, ControlValueAccessor } from '@angular/forms';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
|
|
6
6
|
type ColumnType = 'text' | 'number' | 'email' | 'boolean' | 'date' | 'select';
|
|
@@ -589,16 +589,48 @@ declare class NgbStepperComponent implements AfterContentInit {
|
|
|
589
589
|
}
|
|
590
590
|
|
|
591
591
|
declare class NgbSplitterPaneComponent {
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
592
|
+
size: string;
|
|
593
|
+
min: string;
|
|
594
|
+
max: string;
|
|
595
|
+
scrollable: boolean;
|
|
596
596
|
collapsible: boolean;
|
|
597
597
|
collapsed: boolean;
|
|
598
598
|
collapsedChange: EventEmitter<boolean>;
|
|
599
|
-
|
|
599
|
+
template: TemplateRef<any>;
|
|
600
600
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgbSplitterPaneComponent, never>;
|
|
601
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgbSplitterPaneComponent, "ngb-splitter-pane", never, { "size": { "alias": "size"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "collapsible": { "alias": "collapsible"; "required": false; }; "collapsed": { "alias": "collapsed"; "required": false; }; }, { "collapsedChange": "collapsedChange"; }, never, ["*"], true, never>;
|
|
601
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgbSplitterPaneComponent, "ngb-splitter-pane", never, { "size": { "alias": "size"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "collapsible": { "alias": "collapsible"; "required": false; }; "collapsed": { "alias": "collapsed"; "required": false; }; }, { "collapsedChange": "collapsedChange"; }, never, ["*"], true, never>;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
declare class NgbSplitterComponent {
|
|
605
|
+
private el;
|
|
606
|
+
panes: QueryList<NgbSplitterPaneComponent>;
|
|
607
|
+
orientation: 'horizontal' | 'vertical';
|
|
608
|
+
handleThickness: number;
|
|
609
|
+
handleIconColor: string;
|
|
610
|
+
verticalMinHeight: string;
|
|
611
|
+
resizable: boolean;
|
|
612
|
+
barColor: string;
|
|
613
|
+
lineColor: string;
|
|
614
|
+
private isDragging;
|
|
615
|
+
private currentHandleIndex;
|
|
616
|
+
constructor(el: ElementRef);
|
|
617
|
+
onMouseMove(event: MouseEvent): void;
|
|
618
|
+
onMouseUp(): void;
|
|
619
|
+
onMouseDown(event: MouseEvent, index: number): void;
|
|
620
|
+
private resize;
|
|
621
|
+
onHandleToggle(event: Event, index: number): void;
|
|
622
|
+
getCollapseIcon(pane: NgbSplitterPaneComponent): string;
|
|
623
|
+
getPaneFlex(pane: NgbSplitterPaneComponent): string;
|
|
624
|
+
private sizeToPercent;
|
|
625
|
+
togglePane(index: number): void;
|
|
626
|
+
getSeparatorAriaOrientation(): 'horizontal' | 'vertical';
|
|
627
|
+
getHandleValueNow(index: number): number | null;
|
|
628
|
+
getHandleValueMin(index: number): number | null;
|
|
629
|
+
getHandleValueMax(index: number): number | null;
|
|
630
|
+
onHandleKeyDown(event: KeyboardEvent, index: number): void;
|
|
631
|
+
private resizeByPercent;
|
|
632
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgbSplitterComponent, never>;
|
|
633
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgbSplitterComponent, "ngb-splitter", never, { "orientation": { "alias": "orientation"; "required": false; }; "handleThickness": { "alias": "handleThickness"; "required": false; }; "handleIconColor": { "alias": "handleIconColor"; "required": false; }; "verticalMinHeight": { "alias": "verticalMinHeight"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "barColor": { "alias": "barColor"; "required": false; }; "lineColor": { "alias": "lineColor"; "required": false; }; }, {}, ["panes"], never, true, never>;
|
|
602
634
|
}
|
|
603
635
|
|
|
604
636
|
type NgbSplitterOrientation = 'horizontal' | 'vertical';
|
|
@@ -608,42 +640,6 @@ interface NgbSplitterPaneSize {
|
|
|
608
640
|
max?: string;
|
|
609
641
|
}
|
|
610
642
|
|
|
611
|
-
type PaneState = {
|
|
612
|
-
sizePx?: number;
|
|
613
|
-
minPx?: number;
|
|
614
|
-
maxPx?: number;
|
|
615
|
-
id: string;
|
|
616
|
-
};
|
|
617
|
-
declare class NgbSplitterComponent implements AfterContentInit, OnDestroy, OnChanges {
|
|
618
|
-
panes: QueryList<NgbSplitterPaneComponent>;
|
|
619
|
-
container: ElementRef<HTMLElement>;
|
|
620
|
-
orientation: NgbSplitterOrientation;
|
|
621
|
-
handleThickness: number;
|
|
622
|
-
paneStates: PaneState[];
|
|
623
|
-
private resizeSub?;
|
|
624
|
-
private currentDrag?;
|
|
625
|
-
ngAfterContentInit(): void;
|
|
626
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
627
|
-
ngOnDestroy(): void;
|
|
628
|
-
onWindowResize(): void;
|
|
629
|
-
startResize(index: number, event: MouseEvent): void;
|
|
630
|
-
onHandleKeydown(index: number, event: KeyboardEvent): void;
|
|
631
|
-
toggleFromHandle(index: number): void;
|
|
632
|
-
private onDrag;
|
|
633
|
-
private stopDrag;
|
|
634
|
-
private adjustPaneSizes;
|
|
635
|
-
private initStates;
|
|
636
|
-
private computePaneSizes;
|
|
637
|
-
private resolveSize;
|
|
638
|
-
private getLimits;
|
|
639
|
-
private clamp;
|
|
640
|
-
private pointerPosition;
|
|
641
|
-
private getContainerSize;
|
|
642
|
-
private detachDragListeners;
|
|
643
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgbSplitterComponent, never>;
|
|
644
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgbSplitterComponent, "ngb-splitter", never, { "orientation": { "alias": "orientation"; "required": false; }; "handleThickness": { "alias": "handleThickness"; "required": false; }; }, {}, ["panes"], never, true, never>;
|
|
645
|
-
}
|
|
646
|
-
|
|
647
643
|
interface NgbTypeaheadItem {
|
|
648
644
|
id: string | number;
|
|
649
645
|
label: string;
|
|
@@ -654,50 +650,122 @@ interface NgbTypeaheadI18n {
|
|
|
654
650
|
placeholder?: string;
|
|
655
651
|
noResults?: string;
|
|
656
652
|
clearSelection?: string;
|
|
653
|
+
clear?: string;
|
|
654
|
+
dropdownButtonLabel?: string;
|
|
657
655
|
}
|
|
658
656
|
|
|
659
|
-
declare class NgbTypeaheadComponent implements AfterViewInit, OnChanges, OnDestroy {
|
|
657
|
+
declare class NgbTypeaheadComponent implements AfterViewInit, OnChanges, OnDestroy, ControlValueAccessor {
|
|
658
|
+
private host;
|
|
659
|
+
private cdr;
|
|
660
660
|
data: NgbTypeaheadItem[];
|
|
661
661
|
debounceTime: number;
|
|
662
662
|
characterTyped: number;
|
|
663
663
|
limit: number;
|
|
664
664
|
selectExact: boolean;
|
|
665
665
|
multiSelect: boolean;
|
|
666
|
+
matchSelection: boolean;
|
|
667
|
+
showDropdownButton: boolean;
|
|
668
|
+
showClearButton: boolean;
|
|
669
|
+
updateOnBlur: boolean;
|
|
670
|
+
updateOnTab: boolean;
|
|
671
|
+
separator: string | string[];
|
|
672
|
+
chips: boolean;
|
|
673
|
+
vScroll: boolean;
|
|
674
|
+
vItemSize: number;
|
|
675
|
+
itemTemplate?: any;
|
|
666
676
|
i18n?: NgbTypeaheadI18n;
|
|
667
|
-
|
|
677
|
+
projectedItemTemplate?: any;
|
|
678
|
+
completeMethod: EventEmitter<string>;
|
|
679
|
+
onSelect: EventEmitter<NgbTypeaheadItem>;
|
|
680
|
+
onUnselect: EventEmitter<NgbTypeaheadItem>;
|
|
681
|
+
onAdd: EventEmitter<NgbTypeaheadItem>;
|
|
682
|
+
onFocus: EventEmitter<FocusEvent>;
|
|
683
|
+
onBlur: EventEmitter<FocusEvent>;
|
|
684
|
+
onDropdownClick: EventEmitter<MouseEvent>;
|
|
685
|
+
onClear: EventEmitter<Event>;
|
|
686
|
+
onInputKeydown: EventEmitter<KeyboardEvent>;
|
|
687
|
+
onKeyUp: EventEmitter<KeyboardEvent>;
|
|
688
|
+
onShow: EventEmitter<Event>;
|
|
689
|
+
onHide: EventEmitter<Event>;
|
|
690
|
+
onLazyLoad: EventEmitter<void>;
|
|
668
691
|
selectedItems: EventEmitter<NgbTypeaheadItem[]>;
|
|
669
692
|
selectionChange: EventEmitter<NgbTypeaheadItem[]>;
|
|
670
693
|
onChange: EventEmitter<string>;
|
|
671
694
|
onScrollEvent: EventEmitter<void>;
|
|
672
695
|
scroller: ElementRef<HTMLElement>;
|
|
673
|
-
inputEl
|
|
696
|
+
inputEl?: ElementRef<HTMLInputElement>;
|
|
674
697
|
itemButtons?: QueryList<ElementRef<HTMLButtonElement>>;
|
|
698
|
+
disabled: boolean;
|
|
675
699
|
query: string;
|
|
676
700
|
filtered: NgbTypeaheadItem[];
|
|
677
701
|
visible: NgbTypeaheadItem[];
|
|
678
702
|
selected: NgbTypeaheadItem[];
|
|
703
|
+
overlayVisible: boolean;
|
|
704
|
+
private openedByDropdown;
|
|
705
|
+
private hasSearched;
|
|
706
|
+
activeIndex: number;
|
|
707
|
+
private inputFocused;
|
|
708
|
+
private pointerDownInside;
|
|
709
|
+
private lastFilterTerm;
|
|
710
|
+
private keepOpenOnEmpty;
|
|
711
|
+
readonly overlayId: string;
|
|
679
712
|
viewportHeight: number;
|
|
680
713
|
itemHeight: number;
|
|
681
714
|
beforePadding: number;
|
|
682
715
|
afterPadding: number;
|
|
716
|
+
private viewportStartIndex;
|
|
683
717
|
private debounceId?;
|
|
718
|
+
private onControlChange;
|
|
719
|
+
private onControlTouched;
|
|
720
|
+
private controlValue;
|
|
684
721
|
ngAfterViewInit(): void;
|
|
685
722
|
ngOnChanges(changes: SimpleChanges): void;
|
|
686
723
|
ngOnDestroy(): void;
|
|
724
|
+
constructor(host: ElementRef<HTMLElement>, cdr: ChangeDetectorRef);
|
|
725
|
+
onDocumentMouseDown(event: MouseEvent): void;
|
|
726
|
+
onDocumentFocusIn(event: FocusEvent): void;
|
|
727
|
+
get activeDescendantId(): string | null;
|
|
728
|
+
get showNoResults(): boolean;
|
|
729
|
+
get displayQuery(): string;
|
|
687
730
|
get selectionSummary(): string;
|
|
731
|
+
get resolvedItemTemplate(): any;
|
|
732
|
+
writeValue(value: any): void;
|
|
733
|
+
private applyControlValue;
|
|
734
|
+
registerOnChange(fn: any): void;
|
|
735
|
+
registerOnTouched(fn: any): void;
|
|
736
|
+
setDisabledState(isDisabled: boolean): void;
|
|
688
737
|
onInput(value: string): void;
|
|
738
|
+
onNativeInput(event: Event): void;
|
|
689
739
|
onKeydown(event: KeyboardEvent): void;
|
|
740
|
+
onKeyup(event: KeyboardEvent): void;
|
|
741
|
+
onInputFocus(event: FocusEvent): void;
|
|
742
|
+
onInputBlur(event: FocusEvent): void;
|
|
690
743
|
onScroll(event: Event): void;
|
|
691
744
|
selectItem(item: NgbTypeaheadItem): void;
|
|
745
|
+
focusInput(): void;
|
|
746
|
+
removeSelected(item: NgbTypeaheadItem): void;
|
|
692
747
|
clearSelection(): void;
|
|
693
748
|
isSelected(item: NgbTypeaheadItem): boolean;
|
|
694
749
|
trackById: (_: number, item: NgbTypeaheadItem) => string | number;
|
|
750
|
+
getOptionId(index: number): string;
|
|
751
|
+
onDropdownButtonClick(event: MouseEvent): void;
|
|
752
|
+
onClearClick(event: Event): void;
|
|
695
753
|
private applyFilter;
|
|
696
754
|
private updateViewport;
|
|
697
|
-
private
|
|
755
|
+
private activatePreferredOption;
|
|
756
|
+
private moveActive;
|
|
757
|
+
private activeGlobalIndex;
|
|
758
|
+
private setActiveGlobalIndex;
|
|
698
759
|
private validateItem;
|
|
760
|
+
private showOverlay;
|
|
761
|
+
private hideOverlay;
|
|
762
|
+
private commitInputOnClose;
|
|
763
|
+
private splitBySeparators;
|
|
764
|
+
private addToken;
|
|
765
|
+
private propagateControlValue;
|
|
766
|
+
private coerceToItem;
|
|
699
767
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgbTypeaheadComponent, never>;
|
|
700
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgbTypeaheadComponent, "ngb-typeahead", never, { "data": { "alias": "data"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "characterTyped": { "alias": "characterTyped"; "required": false; }; "limit": { "alias": "limit"; "required": false; }; "selectExact": { "alias": "selectExact"; "required": false; }; "multiSelect": { "alias": "multiSelect"; "required": false; }; "i18n": { "alias": "i18n"; "required": false; }; }, { "selectedItems": "selectedItems"; "selectionChange": "selectionChange"; "onChange": "onChange"; "onScrollEvent": "onScrollEvent"; }, ["
|
|
768
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgbTypeaheadComponent, "ngb-typeahead", never, { "data": { "alias": "data"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "characterTyped": { "alias": "characterTyped"; "required": false; }; "limit": { "alias": "limit"; "required": false; }; "selectExact": { "alias": "selectExact"; "required": false; }; "multiSelect": { "alias": "multiSelect"; "required": false; }; "matchSelection": { "alias": "matchSelection"; "required": false; }; "showDropdownButton": { "alias": "showDropdownButton"; "required": false; }; "showClearButton": { "alias": "showClearButton"; "required": false; }; "updateOnBlur": { "alias": "updateOnBlur"; "required": false; }; "updateOnTab": { "alias": "updateOnTab"; "required": false; }; "separator": { "alias": "separator"; "required": false; }; "chips": { "alias": "chips"; "required": false; }; "vScroll": { "alias": "vScroll"; "required": false; }; "vItemSize": { "alias": "vItemSize"; "required": false; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; }; "i18n": { "alias": "i18n"; "required": false; }; }, { "completeMethod": "completeMethod"; "onSelect": "onSelect"; "onUnselect": "onUnselect"; "onAdd": "onAdd"; "onFocus": "onFocus"; "onBlur": "onBlur"; "onDropdownClick": "onDropdownClick"; "onClear": "onClear"; "onInputKeydown": "onInputKeydown"; "onKeyUp": "onKeyUp"; "onShow": "onShow"; "onHide": "onHide"; "onLazyLoad": "onLazyLoad"; "selectedItems": "selectedItems"; "selectionChange": "selectionChange"; "onChange": "onChange"; "onScrollEvent": "onScrollEvent"; }, ["projectedItemTemplate"], never, true, never>;
|
|
701
769
|
}
|
|
702
770
|
|
|
703
771
|
type NgbTreeType = 'text' | 'json';
|
|
@@ -723,6 +791,10 @@ declare class NgbTreeComponent {
|
|
|
723
791
|
type: NgbTreeType;
|
|
724
792
|
showCheckbox: boolean;
|
|
725
793
|
i18n?: NgbTreeI18n;
|
|
794
|
+
expandIcon: string;
|
|
795
|
+
collapseIcon: string;
|
|
796
|
+
plusIcon: string;
|
|
797
|
+
minusIcon: string;
|
|
726
798
|
expand: EventEmitter<NgbTreeNode>;
|
|
727
799
|
collapse: EventEmitter<NgbTreeNode>;
|
|
728
800
|
expandAll: EventEmitter<void>;
|
|
@@ -740,8 +812,24 @@ declare class NgbTreeComponent {
|
|
|
740
812
|
private setExpanded;
|
|
741
813
|
private collectSelection;
|
|
742
814
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgbTreeComponent, never>;
|
|
743
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgbTreeComponent, "ngb-tree", never, { "nodes": { "alias": "nodes"; "required": false; }; "type": { "alias": "type"; "required": false; }; "showCheckbox": { "alias": "showCheckbox"; "required": false; }; "i18n": { "alias": "i18n"; "required": false; }; }, { "expand": "expand"; "collapse": "collapse"; "expandAll": "expandAll"; "collapseAll": "collapseAll"; "selectionChange": "selectionChange"; }, never, never, true, never>;
|
|
815
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgbTreeComponent, "ngb-tree", never, { "nodes": { "alias": "nodes"; "required": false; }; "type": { "alias": "type"; "required": false; }; "showCheckbox": { "alias": "showCheckbox"; "required": false; }; "i18n": { "alias": "i18n"; "required": false; }; "expandIcon": { "alias": "expandIcon"; "required": false; }; "collapseIcon": { "alias": "collapseIcon"; "required": false; }; "plusIcon": { "alias": "plusIcon"; "required": false; }; "minusIcon": { "alias": "minusIcon"; "required": false; }; }, { "expand": "expand"; "collapse": "collapse"; "expandAll": "expandAll"; "collapseAll": "collapseAll"; "selectionChange": "selectionChange"; }, never, never, true, never>;
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
type NgbChip = {
|
|
819
|
+
id: string | number;
|
|
820
|
+
label: string;
|
|
821
|
+
disabled?: boolean;
|
|
822
|
+
};
|
|
823
|
+
declare class NgbChipsComponent {
|
|
824
|
+
items: NgbChip[];
|
|
825
|
+
removable: boolean;
|
|
826
|
+
ariaLabel?: string;
|
|
827
|
+
removeLabel?: string;
|
|
828
|
+
remove: EventEmitter<NgbChip>;
|
|
829
|
+
trackById: (_: number, item: NgbChip) => string | number;
|
|
830
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgbChipsComponent, never>;
|
|
831
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgbChipsComponent, "ngb-chips", never, { "items": { "alias": "items"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "removeLabel": { "alias": "removeLabel"; "required": false; }; }, { "remove": "remove"; }, never, never, true, never>;
|
|
744
832
|
}
|
|
745
833
|
|
|
746
|
-
export { DATAGRID_TEMPLATE_DIRECTIVES, DND_I18N, DND_LIVE_ANNOUNCE, Datagrid, ExcelExportAdapter, ExportButtonDirective, JsPdfAdapter, NgbCellTemplate, NgbDndItemDirective, NgbDndListDirective, NgbDndState, NgbEditorTemplate, NgbExportService, NgbFilterTemplate, NgbGlobalFilterTemplate, NgbLiveAnnouncer, NgbPaginationComponent, NgbRowDetailTemplate, NgbSplitterComponent, NgbStepLabelDirective, NgbStepperComponent, NgbTreeComponent, NgbTypeaheadComponent, PdfExportAdapter, XlsxAdapter, defaultDndI18n };
|
|
747
|
-
export type { CellCtx, ColumnDef, ColumnType, DndCanDropFn, DndCanDropPayload, DndI18n, DndSession, EditCtx, ExcelExportPayload, ExportButtonContext, FilterCtx, GlobalFilterCtx, NgbDataGridExportOptions, NgbDataGridExportPages, NgbDataGridExportType, NgbDataGridResponsiveOptions, NgbDataGridTheme, NgbDndDropEvent, NgbSplitterOrientation, NgbSplitterPaneSize, NgbStepperContentPosition, NgbStepperLabelPosition, NgbStepperOrientation, NgbStepperSelectionChangeEvent, NgbStepperState, NgbStepperStep, NgbStepperTheme, NgbTreeI18n, NgbTreeNode, NgbTreeType, NgbTypeaheadI18n, NgbTypeaheadItem, PdfExportPayload };
|
|
834
|
+
export { DATAGRID_TEMPLATE_DIRECTIVES, DND_I18N, DND_LIVE_ANNOUNCE, Datagrid, ExcelExportAdapter, ExportButtonDirective, JsPdfAdapter, NgbCellTemplate, NgbChipsComponent, NgbDndItemDirective, NgbDndListDirective, NgbDndState, NgbEditorTemplate, NgbExportService, NgbFilterTemplate, NgbGlobalFilterTemplate, NgbLiveAnnouncer, NgbPaginationComponent, NgbRowDetailTemplate, NgbSplitterComponent, NgbSplitterPaneComponent, NgbStepLabelDirective, NgbStepperComponent, NgbTreeComponent, NgbTypeaheadComponent, PdfExportAdapter, XlsxAdapter, defaultDndI18n };
|
|
835
|
+
export type { CellCtx, ColumnDef, ColumnType, DndCanDropFn, DndCanDropPayload, DndI18n, DndSession, EditCtx, ExcelExportPayload, ExportButtonContext, FilterCtx, GlobalFilterCtx, NgbChip, NgbDataGridExportOptions, NgbDataGridExportPages, NgbDataGridExportType, NgbDataGridResponsiveOptions, NgbDataGridTheme, NgbDndDropEvent, NgbSplitterOrientation, NgbSplitterPaneSize, NgbStepperContentPosition, NgbStepperLabelPosition, NgbStepperOrientation, NgbStepperSelectionChangeEvent, NgbStepperState, NgbStepperStep, NgbStepperTheme, NgbTreeI18n, NgbTreeNode, NgbTreeType, NgbTypeaheadI18n, NgbTypeaheadItem, PdfExportPayload };
|