@leanix/components 0.4.487 → 0.4.489
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/esm2022/lib/forms-ui/components/multi-select/multi-select.component.mjs +4 -18
- package/esm2022/lib/forms-ui/components/single-select/single-select.component.mjs +4 -18
- package/fesm2022/leanix-components.mjs +6 -34
- package/fesm2022/leanix-components.mjs.map +1 -1
- package/lib/forms-ui/components/multi-select/multi-select.component.d.ts +1 -4
- package/lib/forms-ui/components/single-select/single-select.component.d.ts +1 -4
- package/package.json +1 -1
@@ -26,7 +26,6 @@ export declare class MultiSelectComponent extends BaseSelectDirective implements
|
|
26
26
|
markInvalid: boolean;
|
27
27
|
selection?: any[] | null;
|
28
28
|
size: MultiSelectSize;
|
29
|
-
dropdownWidthScale: '1x' | '1.5x' | '2x';
|
30
29
|
inputId?: string;
|
31
30
|
selectionChange: EventEmitter<any[]>;
|
32
31
|
blur: EventEmitter<void>;
|
@@ -52,8 +51,6 @@ export declare class MultiSelectComponent extends BaseSelectDirective implements
|
|
52
51
|
get tokenize(): boolean;
|
53
52
|
constructor(cd: ChangeDetectorRef);
|
54
53
|
/** @internal */
|
55
|
-
get dropdownWidth(): string | undefined;
|
56
|
-
/** @internal */
|
57
54
|
resetInput(): void;
|
58
55
|
/** @internal */
|
59
56
|
focus(): void;
|
@@ -88,5 +85,5 @@ export declare class MultiSelectComponent extends BaseSelectDirective implements
|
|
88
85
|
private onSelectionChange;
|
89
86
|
private scrollToEndOfSelection;
|
90
87
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
|
91
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "lx-multi-select", never, { "markInvalid": { "alias": "markInvalid"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "size": { "alias": "size"; "required": false; }; "
|
88
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "lx-multi-select", never, { "markInvalid": { "alias": "markInvalid"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "size": { "alias": "size"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; }, { "selectionChange": "selectionChange"; "blur": "blur"; }, ["explicitDropdown", "selectionTemplate"], [".pills", ".dropdownComponent"], true, never>;
|
92
89
|
}
|
@@ -26,7 +26,6 @@ export declare class SingleSelectComponent extends BaseSelectDirective implement
|
|
26
26
|
selection: any;
|
27
27
|
selectionBackground: 'white' | 'gray';
|
28
28
|
size: SingleSelectSize;
|
29
|
-
dropdownWidthScale: '1x' | '1.5x' | '2x';
|
30
29
|
padding?: SingleSelectPadding;
|
31
30
|
inputId?: string;
|
32
31
|
required: boolean;
|
@@ -59,8 +58,6 @@ export declare class SingleSelectComponent extends BaseSelectDirective implement
|
|
59
58
|
/** @internal */
|
60
59
|
get cursorStyle(): "text" | "default" | "pointer";
|
61
60
|
/** @internal */
|
62
|
-
get dropdownWidth(): string | undefined;
|
63
|
-
/** @internal */
|
64
61
|
resetInput(): void;
|
65
62
|
/** @internal */
|
66
63
|
focus(): void;
|
@@ -86,6 +83,6 @@ export declare class SingleSelectComponent extends BaseSelectDirective implement
|
|
86
83
|
focusedViaTab(): void;
|
87
84
|
private determineHighlightIndex;
|
88
85
|
static ɵfac: i0.ɵɵFactoryDeclaration<SingleSelectComponent, never>;
|
89
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SingleSelectComponent, "lx-single-select", never, { "selection": { "alias": "selection"; "required": false; }; "selectionBackground": { "alias": "selectionBackground"; "required": false; }; "size": { "alias": "size"; "required": false; }; "
|
86
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SingleSelectComponent, "lx-single-select", never, { "selection": { "alias": "selection"; "required": false; }; "selectionBackground": { "alias": "selectionBackground"; "required": false; }; "size": { "alias": "size"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "required": { "alias": "required"; "required": false; }; "allowClear": { "alias": "allowClear"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "markInvalid": { "alias": "markInvalid"; "required": false; }; }, { "selectionChange": "selectionChange"; "blur": "blur"; }, ["explicitDropdown", "explicitSelectedOption", "dropdownComponent"], [".selectedOption", ".dropdownComponent"], true, never>;
|
90
87
|
static ngAcceptInputType_required: unknown;
|
91
88
|
}
|