@coreui/angular-pro 4.0.0-alpha.4 → 4.0.0-alpha.5
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/multi-select/multi-select/multi-select.component.mjs +59 -41
- package/esm2020/lib/multi-select/multi-select-native-select/multi-select-native-select.component.mjs +5 -3
- package/esm2020/lib/multi-select/multi-select-optgroup/multi-select-optgroup-label.component.mjs +3 -3
- package/esm2020/lib/multi-select/multi-select-optgroup/multi-select-optgroup.component.mjs +3 -3
- package/esm2020/lib/multi-select/multi-select-option/multi-select-option.component.mjs +3 -3
- package/esm2020/lib/multi-select/multi-select-tag/multi-select-tag.component.mjs +3 -3
- package/esm2020/lib/multi-select/multi-select.module.mjs +1 -1
- package/esm2020/lib/multi-select/multi-select.service.mjs +1 -1
- package/esm2020/lib/multi-select/multi-select.type.mjs +1 -1
- package/esm2020/lib/multi-select/public_api.mjs +1 -1
- package/esm2020/lib/popover/popover.directive.mjs +1 -1
- package/esm2020/public-api.mjs +1 -1
- package/fesm2015/coreui-angular-pro.mjs +70 -50
- package/fesm2015/coreui-angular-pro.mjs.map +1 -1
- package/fesm2020/coreui-angular-pro.mjs +70 -50
- package/fesm2020/coreui-angular-pro.mjs.map +1 -1
- package/lib/multi-select/multi-select/multi-select.component.d.ts +2 -3
- package/lib/multi-select/multi-select-native-select/multi-select-native-select.component.d.ts +2 -1
- package/lib/multi-select/multi-select-option/multi-select-option.component.d.ts +5 -4
- package/package.json +1 -1
|
@@ -31,7 +31,6 @@ export declare class MultiSelectComponent implements IMultiSelect, ControlValueA
|
|
|
31
31
|
private _multiple;
|
|
32
32
|
nativeName: string;
|
|
33
33
|
nativeId: string;
|
|
34
|
-
options: never[];
|
|
35
34
|
optionsMaxHeight: string;
|
|
36
35
|
optionsStyle: 'checkbox' | 'text';
|
|
37
36
|
placeholder: string;
|
|
@@ -66,6 +65,7 @@ export declare class MultiSelectComponent implements IMultiSelect, ControlValueA
|
|
|
66
65
|
'form-multi-select': boolean;
|
|
67
66
|
'form-multi-select-selection-tags': boolean;
|
|
68
67
|
show: boolean;
|
|
68
|
+
disabled: boolean;
|
|
69
69
|
};
|
|
70
70
|
private get tabIndex();
|
|
71
71
|
private set tabIndex(value);
|
|
@@ -86,7 +86,6 @@ export declare class MultiSelectComponent implements IMultiSelect, ControlValueA
|
|
|
86
86
|
ngOnDestroy(): void;
|
|
87
87
|
ngAfterContentInit(): void;
|
|
88
88
|
ngAfterViewInit(): void;
|
|
89
|
-
handleInputClick($event: MouseEvent): void;
|
|
90
89
|
private multiselectSubscribe;
|
|
91
90
|
clearAllOptions($event: MouseEvent): void;
|
|
92
91
|
selectAllOptions(): void;
|
|
@@ -97,5 +96,5 @@ export declare class MultiSelectComponent implements IMultiSelect, ControlValueA
|
|
|
97
96
|
createNativeSelect(): void;
|
|
98
97
|
updateNativeSelect(): void;
|
|
99
98
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
|
|
100
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "c-multi-select", ["cMultiSelect"], { "cleaner": "cleaner"; "disabled": "disabled"; "multiple": "multiple"; "nativeName": "nativeName"; "nativeId": "nativeId"; "
|
|
99
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "c-multi-select", ["cMultiSelect"], { "cleaner": "cleaner"; "disabled": "disabled"; "multiple": "multiple"; "nativeName": "nativeName"; "nativeId": "nativeId"; "optionsMaxHeight": "optionsMaxHeight"; "optionsStyle": "optionsStyle"; "placeholder": "placeholder"; "search": "search"; "searchNoResultsLabel": "searchNoResultsLabel"; "selectAll": "selectAll"; "selectAllLabel": "selectAllLabel"; "selectionType": "selectionType"; "selectionTypeCounterText": "selectionTypeCounterText"; "value": "value"; "visible": "visible"; }, { "valueChange": "valueChange"; "visibleChange": "visibleChange"; }, ["multiSelectOptions"], ["*"]>;
|
|
101
100
|
}
|
package/lib/multi-select/multi-select-native-select/multi-select-native-select.component.d.ts
CHANGED
|
@@ -7,7 +7,8 @@ export declare class MultiSelectNativeSelectComponent {
|
|
|
7
7
|
multiple?: boolean;
|
|
8
8
|
name?: string;
|
|
9
9
|
options?: any;
|
|
10
|
+
disabled?: boolean;
|
|
10
11
|
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectNativeSelectComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectNativeSelectComponent, "c-multi-select-native-select", never, { "form": "form"; "id": "id"; "multiple": "multiple"; "name": "name"; "options": "options"; }, {}, never, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectNativeSelectComponent, "c-multi-select-native-select", never, { "form": "form"; "id": "id"; "multiple": "multiple"; "name": "name"; "options": "options"; "disabled": "disabled"; }, {}, never, never>;
|
|
13
14
|
}
|
|
@@ -10,11 +10,12 @@ export declare class MultiSelectOptionComponent implements AfterContentInit, Foc
|
|
|
10
10
|
private multiSelectService;
|
|
11
11
|
constructor(elementRef: ElementRef, renderer: Renderer2, focusMonitor: FocusMonitor, multiSelectService: MultiSelectService);
|
|
12
12
|
static ngAcceptInputType_disabled: BooleanInput;
|
|
13
|
+
static ngAcceptInputType_selected: BooleanInput;
|
|
13
14
|
set disabled(value: boolean);
|
|
14
15
|
get disabled(): boolean;
|
|
15
16
|
private _disabled;
|
|
16
|
-
set selected(value: boolean);
|
|
17
|
-
get selected(): boolean;
|
|
17
|
+
set selected(value: (boolean | undefined));
|
|
18
|
+
get selected(): (boolean | undefined);
|
|
18
19
|
private _selected;
|
|
19
20
|
optionsStyle: ('checkbox' | 'text');
|
|
20
21
|
label?: string;
|
|
@@ -24,9 +25,9 @@ export declare class MultiSelectOptionComponent implements AfterContentInit, Foc
|
|
|
24
25
|
content?: ElementRef;
|
|
25
26
|
hasContent: boolean;
|
|
26
27
|
get hostClasses(): {
|
|
27
|
-
[x: string]: boolean;
|
|
28
|
+
[x: string]: boolean | undefined;
|
|
28
29
|
'form-multi-select-option': boolean;
|
|
29
|
-
'form-multi-selected': boolean;
|
|
30
|
+
'form-multi-selected': boolean | undefined;
|
|
30
31
|
disabled: boolean;
|
|
31
32
|
'd-none': boolean;
|
|
32
33
|
};
|