@leanix/components 0.2.247 → 0.2.250
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/forms-ui/components/date-input/date-input.component.mjs +3 -12
- package/esm2020/lib/popover-ui/components/popover/popover.component.mjs +6 -3
- package/fesm2015/leanix-components.mjs +7 -13
- package/fesm2015/leanix-components.mjs.map +1 -1
- package/fesm2020/leanix-components.mjs +7 -13
- package/fesm2020/leanix-components.mjs.map +1 -1
- package/lib/forms-ui/components/date-input/date-input.component.d.ts +0 -1
- package/lib/popover-ui/components/popover/popover.component.d.ts +2 -1
- package/package.json +1 -1
@@ -61,7 +61,6 @@ export declare class DateInputComponent implements OnChanges, OnInit, OnDestroy,
|
|
61
61
|
showPopup(): void;
|
62
62
|
togglePopup(): void;
|
63
63
|
hidePopup(): void;
|
64
|
-
onTab(forward: boolean): boolean;
|
65
64
|
onDateStringChange(newDateString: string | null, emit?: boolean): void;
|
66
65
|
onSelectionDone(newDate: Date): void;
|
67
66
|
onBlur(): void;
|
@@ -58,6 +58,7 @@ export declare class PopoverComponent implements OnChanges {
|
|
58
58
|
verticalAlign: SatPopoverVerticalAlign;
|
59
59
|
noMargin: boolean;
|
60
60
|
allowOverflow: boolean;
|
61
|
+
autoFocus: boolean;
|
61
62
|
/**
|
62
63
|
* If you have a popover, that should usually be displayed above or below its anchor,
|
63
64
|
* and this anchor is in a scrollable container, you should set this to true.
|
@@ -91,5 +92,5 @@ export declare class PopoverComponent implements OnChanges {
|
|
91
92
|
private getMarginClassesForClassList;
|
92
93
|
private getDefaultMarginClasses;
|
93
94
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverComponent, never>;
|
94
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "lx-popover", never, { "trigger": "trigger"; "horizontalAlign": "horizontalAlign"; "verticalAlign": "verticalAlign"; "noMargin": "noMargin"; "allowOverflow": "allowOverflow"; "adaptMarginsForViewportAlignChange": "adaptMarginsForViewportAlignChange"; }, { "opened": "opened"; "closed": "closed"; }, ["explicitContent"], ["*"]>;
|
95
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "lx-popover", never, { "trigger": "trigger"; "horizontalAlign": "horizontalAlign"; "verticalAlign": "verticalAlign"; "noMargin": "noMargin"; "allowOverflow": "allowOverflow"; "autoFocus": "autoFocus"; "adaptMarginsForViewportAlignChange": "adaptMarginsForViewportAlignChange"; }, { "opened": "opened"; "closed": "closed"; }, ["explicitContent"], ["*"]>;
|
95
96
|
}
|