@coreui/angular-pro 4.0.0-beta.0 → 4.0.0-beta.2
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/README.md +1 -1
- package/esm2020/lib/dropdown/dropdown/dropdown.component.mjs +39 -29
- package/fesm2015/coreui-angular-pro.mjs +38 -28
- package/fesm2015/coreui-angular-pro.mjs.map +1 -1
- package/fesm2020/coreui-angular-pro.mjs +38 -28
- package/fesm2020/coreui-angular-pro.mjs.map +1 -1
- package/lib/dropdown/dropdown/dropdown.component.d.ts +9 -4
- package/package.json +2 -2
|
@@ -2636,6 +2636,11 @@ class DropdownComponent {
|
|
|
2636
2636
|
*/
|
|
2637
2637
|
this.placement = 'bottom-start';
|
|
2638
2638
|
this._popper = true;
|
|
2639
|
+
this._popperOptions = {
|
|
2640
|
+
placement: this.placement,
|
|
2641
|
+
modifiers: [],
|
|
2642
|
+
strategy: 'absolute'
|
|
2643
|
+
};
|
|
2639
2644
|
/**
|
|
2640
2645
|
* Set the dropdown variant to an btn-group, dropdown, input-group, and nav-item.
|
|
2641
2646
|
*/
|
|
@@ -2645,11 +2650,6 @@ class DropdownComponent {
|
|
|
2645
2650
|
this.dropdownContext = { $implicit: this.visible };
|
|
2646
2651
|
this.activeTrap = false;
|
|
2647
2652
|
this.listeners = [];
|
|
2648
|
-
this._popperOptions = {
|
|
2649
|
-
placement: this.placement,
|
|
2650
|
-
modifiers: [],
|
|
2651
|
-
strategy: 'absolute',
|
|
2652
|
-
};
|
|
2653
2653
|
}
|
|
2654
2654
|
/**
|
|
2655
2655
|
* Sets a darker color scheme to match a dark navbar.
|
|
@@ -2674,6 +2674,36 @@ class DropdownComponent {
|
|
|
2674
2674
|
get popper() {
|
|
2675
2675
|
return this._popper;
|
|
2676
2676
|
}
|
|
2677
|
+
/**
|
|
2678
|
+
* Optional popper Options object, placement prop takes precedence over
|
|
2679
|
+
* @type Partial<Options>
|
|
2680
|
+
*/
|
|
2681
|
+
set popperOptions(value) {
|
|
2682
|
+
this._popperOptions = { ...this._popperOptions, ...value };
|
|
2683
|
+
}
|
|
2684
|
+
;
|
|
2685
|
+
get popperOptions() {
|
|
2686
|
+
let placement = this.placement;
|
|
2687
|
+
switch (this.direction) {
|
|
2688
|
+
case 'dropup': {
|
|
2689
|
+
placement = 'top-start';
|
|
2690
|
+
break;
|
|
2691
|
+
}
|
|
2692
|
+
case 'dropend': {
|
|
2693
|
+
placement = 'right-start';
|
|
2694
|
+
break;
|
|
2695
|
+
}
|
|
2696
|
+
case 'dropstart': {
|
|
2697
|
+
placement = 'left-start';
|
|
2698
|
+
break;
|
|
2699
|
+
}
|
|
2700
|
+
}
|
|
2701
|
+
if (this.alignment === 'end') {
|
|
2702
|
+
placement = 'bottom-end';
|
|
2703
|
+
}
|
|
2704
|
+
this._popperOptions = { ...this._popperOptions, placement: placement };
|
|
2705
|
+
return this._popperOptions;
|
|
2706
|
+
}
|
|
2677
2707
|
/**
|
|
2678
2708
|
* Toggle the visibility of dropdown menu component.
|
|
2679
2709
|
* @type boolean
|
|
@@ -2704,28 +2734,6 @@ class DropdownComponent {
|
|
|
2704
2734
|
get hostStyle() {
|
|
2705
2735
|
return this.variant === 'input-group' ? { display: 'contents' } : {};
|
|
2706
2736
|
}
|
|
2707
|
-
get popperOptions() {
|
|
2708
|
-
let placement = this.placement;
|
|
2709
|
-
switch (this.direction) {
|
|
2710
|
-
case 'dropup': {
|
|
2711
|
-
placement = 'top-start';
|
|
2712
|
-
break;
|
|
2713
|
-
}
|
|
2714
|
-
case 'dropend': {
|
|
2715
|
-
placement = 'right-start';
|
|
2716
|
-
break;
|
|
2717
|
-
}
|
|
2718
|
-
case 'dropstart': {
|
|
2719
|
-
placement = 'left-start';
|
|
2720
|
-
break;
|
|
2721
|
-
}
|
|
2722
|
-
}
|
|
2723
|
-
if (this.alignment === 'end') {
|
|
2724
|
-
placement = 'bottom-end';
|
|
2725
|
-
}
|
|
2726
|
-
this._popperOptions = { ...this._popperOptions, placement: placement };
|
|
2727
|
-
return this._popperOptions;
|
|
2728
|
-
}
|
|
2729
2737
|
dropdownStateSubscribe(subscribe = true) {
|
|
2730
2738
|
if (subscribe) {
|
|
2731
2739
|
this.dropdownStateSubscription =
|
|
@@ -2830,7 +2838,7 @@ class DropdownComponent {
|
|
|
2830
2838
|
}
|
|
2831
2839
|
}
|
|
2832
2840
|
DropdownComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.0", ngImport: i0, type: DropdownComponent, deps: [{ token: DOCUMENT }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: DropdownService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2833
|
-
DropdownComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.0", type: DropdownComponent, selector: "c-dropdown", inputs: { alignment: "alignment", autoClose: "autoClose", dark: "dark", direction: "direction", placement: "placement", popper: "popper", variant: "variant", visible: "visible" }, outputs: { visibleChange: "visibleChange" }, host: { properties: { "class": "this.hostClasses", "style": "this.hostStyle" } }, providers: [DropdownService], queries: [{ propertyName: "_toggler", first: true, predicate: DropdownToggleDirective, descendants: true }, { propertyName: "_menu", first: true, predicate: DropdownMenuDirective, descendants: true }], exportAs: ["cDropdown"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [":host-context(html:not([dir=rtl])) :host-context(.input-group) :host:first-child::ng-deep :first-child{border-top-right-radius:0;border-bottom-right-radius:0}:host-context(html:not([dir=rtl])) :host-context(.input-group) :host:first-child::ng-deep :not(:first-child):not(.dropdown-menu){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}:host-context(html:not([dir=rtl])) :host-context(.input-group) :host:first-child::ng-deep :not(:first-child):not(.dropdown-menu):not(:only-of-type){border-top-right-radius:0;border-bottom-right-radius:0}:host-context(html:not([dir=rtl])) :host-context(.input-group) :host:last-child::ng-deep :first-child{border-top-left-radius:0;border-bottom-left-radius:0}:host-context(html:not([dir=rtl])) :host-context(.input-group) :host:last-child::ng-deep :first-child:not(:only-of-type){border-top-right-radius:0;border-bottom-right-radius:0}:host-context(html:not([dir=rtl])) :host-context(.input-group) :host:last-child::ng-deep :not(:first-child):not(.dropdown-menu){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}:host-context([dir=rtl] .input-group) :host{direction:rtl}:host-context([dir=rtl] .input-group) :host:first-child::ng-deep :first-child{border-top-left-radius:0;border-bottom-left-radius:0}:host-context([dir=rtl] .input-group) :host:first-child::ng-deep :not(:first-child):not(.dropdown-menu){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}:host-context([dir=rtl] .input-group) :host:first-child::ng-deep :not(:first-child):not(.dropdown-menu):not(:only-of-type){border-top-left-radius:0;border-bottom-left-radius:0}:host-context([dir=rtl] .input-group) :host:last-child::ng-deep :first-child{border-top-right-radius:0;border-bottom-right-radius:0}:host-context([dir=rtl] .input-group) :host:last-child::ng-deep :first-child:not(:only-of-type){border-top-left-radius:0;border-bottom-left-radius:0}:host-context([dir=rtl] .input-group) :host:last-child::ng-deep :not(:first-child):not(.dropdown-menu){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}\n"] });
|
|
2841
|
+
DropdownComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.0", type: DropdownComponent, selector: "c-dropdown", inputs: { alignment: "alignment", autoClose: "autoClose", dark: "dark", direction: "direction", placement: "placement", popper: "popper", popperOptions: "popperOptions", variant: "variant", visible: "visible" }, outputs: { visibleChange: "visibleChange" }, host: { properties: { "class": "this.hostClasses", "style": "this.hostStyle" } }, providers: [DropdownService], queries: [{ propertyName: "_toggler", first: true, predicate: DropdownToggleDirective, descendants: true }, { propertyName: "_menu", first: true, predicate: DropdownMenuDirective, descendants: true }], exportAs: ["cDropdown"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [":host-context(html:not([dir=rtl])) :host-context(.input-group) :host:first-child::ng-deep :first-child{border-top-right-radius:0;border-bottom-right-radius:0}:host-context(html:not([dir=rtl])) :host-context(.input-group) :host:first-child::ng-deep :not(:first-child):not(.dropdown-menu){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}:host-context(html:not([dir=rtl])) :host-context(.input-group) :host:first-child::ng-deep :not(:first-child):not(.dropdown-menu):not(:only-of-type){border-top-right-radius:0;border-bottom-right-radius:0}:host-context(html:not([dir=rtl])) :host-context(.input-group) :host:last-child::ng-deep :first-child{border-top-left-radius:0;border-bottom-left-radius:0}:host-context(html:not([dir=rtl])) :host-context(.input-group) :host:last-child::ng-deep :first-child:not(:only-of-type){border-top-right-radius:0;border-bottom-right-radius:0}:host-context(html:not([dir=rtl])) :host-context(.input-group) :host:last-child::ng-deep :not(:first-child):not(.dropdown-menu){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}:host-context([dir=rtl] .input-group) :host{direction:rtl}:host-context([dir=rtl] .input-group) :host:first-child::ng-deep :first-child{border-top-left-radius:0;border-bottom-left-radius:0}:host-context([dir=rtl] .input-group) :host:first-child::ng-deep :not(:first-child):not(.dropdown-menu){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}:host-context([dir=rtl] .input-group) :host:first-child::ng-deep :not(:first-child):not(.dropdown-menu):not(:only-of-type){border-top-left-radius:0;border-bottom-left-radius:0}:host-context([dir=rtl] .input-group) :host:last-child::ng-deep :first-child{border-top-right-radius:0;border-bottom-right-radius:0}:host-context([dir=rtl] .input-group) :host:last-child::ng-deep :first-child:not(:only-of-type){border-top-left-radius:0;border-bottom-left-radius:0}:host-context([dir=rtl] .input-group) :host:last-child::ng-deep :not(:first-child):not(.dropdown-menu){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}\n"] });
|
|
2834
2842
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.0", ngImport: i0, type: DropdownComponent, decorators: [{
|
|
2835
2843
|
type: Component,
|
|
2836
2844
|
args: [{ selector: 'c-dropdown', template: '<ng-content></ng-content>', exportAs: 'cDropdown', providers: [DropdownService], styles: [":host-context(html:not([dir=rtl])) :host-context(.input-group) :host:first-child::ng-deep :first-child{border-top-right-radius:0;border-bottom-right-radius:0}:host-context(html:not([dir=rtl])) :host-context(.input-group) :host:first-child::ng-deep :not(:first-child):not(.dropdown-menu){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}:host-context(html:not([dir=rtl])) :host-context(.input-group) :host:first-child::ng-deep :not(:first-child):not(.dropdown-menu):not(:only-of-type){border-top-right-radius:0;border-bottom-right-radius:0}:host-context(html:not([dir=rtl])) :host-context(.input-group) :host:last-child::ng-deep :first-child{border-top-left-radius:0;border-bottom-left-radius:0}:host-context(html:not([dir=rtl])) :host-context(.input-group) :host:last-child::ng-deep :first-child:not(:only-of-type){border-top-right-radius:0;border-bottom-right-radius:0}:host-context(html:not([dir=rtl])) :host-context(.input-group) :host:last-child::ng-deep :not(:first-child):not(.dropdown-menu){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}:host-context([dir=rtl] .input-group) :host{direction:rtl}:host-context([dir=rtl] .input-group) :host:first-child::ng-deep :first-child{border-top-left-radius:0;border-bottom-left-radius:0}:host-context([dir=rtl] .input-group) :host:first-child::ng-deep :not(:first-child):not(.dropdown-menu){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}:host-context([dir=rtl] .input-group) :host:first-child::ng-deep :not(:first-child):not(.dropdown-menu):not(:only-of-type){border-top-left-radius:0;border-bottom-left-radius:0}:host-context([dir=rtl] .input-group) :host:last-child::ng-deep :first-child{border-top-right-radius:0;border-bottom-right-radius:0}:host-context([dir=rtl] .input-group) :host:last-child::ng-deep :first-child:not(:only-of-type){border-top-left-radius:0;border-bottom-left-radius:0}:host-context([dir=rtl] .input-group) :host:last-child::ng-deep :not(:first-child):not(.dropdown-menu){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}\n"] }]
|
|
@@ -2849,6 +2857,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.0", ngImpor
|
|
|
2849
2857
|
type: Input
|
|
2850
2858
|
}], popper: [{
|
|
2851
2859
|
type: Input
|
|
2860
|
+
}], popperOptions: [{
|
|
2861
|
+
type: Input
|
|
2852
2862
|
}], variant: [{
|
|
2853
2863
|
type: Input
|
|
2854
2864
|
}], visible: [{
|