myrta-ui 17.0.56 → 17.0.57
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/components/cdk-tooltip/cdk-tooltip.directive.mjs +4 -4
- package/esm2022/lib/components/form/select/select.component.mjs +4 -3
- package/esm2022/lib/components/icon-button/icon-button.component.mjs +3 -2
- package/esm2022/lib/components/paginator/paginator.component.mjs +3 -2
- package/esm2022/lib/components/popup/components/popup/popup.component.mjs +3 -3
- package/esm2022/lib/components/popup/components/popup-item/popup-item.component.mjs +11 -3
- package/esm2022/lib/components/popup/directives/popup-trigger.directive.mjs +3 -3
- package/esm2022/lib/components/table/table.component.mjs +2 -2
- package/esm2022/lib/enums/overlay/index.mjs +78 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/myrta-ui.mjs +41 -25
- package/fesm2022/myrta-ui.mjs.map +1 -1
- package/lib/components/cdk-tooltip/cdk-tooltip.directive.d.ts +2 -2
- package/lib/components/form/select/select.component.d.ts +2 -2
- package/lib/components/icon-button/icon-button.component.d.ts +2 -2
- package/lib/components/paginator/paginator.component.d.ts +3 -3
- package/lib/components/popup/components/popup-item/popup-item.component.d.ts +3 -1
- package/lib/components/popup/directives/popup-trigger.directive.d.ts +2 -2
- package/lib/components/table/table.component.d.ts +3 -4
- package/lib/enums/overlay/index.d.ts +13 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/esm2022/lib/components/cdk-tooltip/constants/index.mjs +0 -70
- package/lib/components/cdk-tooltip/constants/index.d.ts +0 -7
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ElementRef, OnDestroy, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { Overlay } from '@angular/cdk/overlay';
|
|
3
|
-
import { ConnectedPositionVariantsType } from './constants';
|
|
4
3
|
import { TooltipDataValue } from './models/tooltip-data';
|
|
4
|
+
import { PositionType } from '../../enums/overlay';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CdkTooltipDirective implements OnDestroy {
|
|
7
7
|
private element;
|
|
@@ -10,7 +10,7 @@ export declare class CdkTooltipDirective implements OnDestroy {
|
|
|
10
10
|
mrxCdkTooltip: TooltipDataValue;
|
|
11
11
|
tooltipActive: boolean;
|
|
12
12
|
autoCloseByScroll: boolean;
|
|
13
|
-
tooltipPosition:
|
|
13
|
+
tooltipPosition: PositionType;
|
|
14
14
|
tooltipMaxWidth: number | null;
|
|
15
15
|
private overlayRef;
|
|
16
16
|
constructor(element: ElementRef<HTMLElement>, overlay: Overlay, viewContainer: ViewContainerRef);
|
|
@@ -5,8 +5,8 @@ import { PopupComponent } from '../../popup/components/popup/popup.component';
|
|
|
5
5
|
import { SelectInnerItemModel } from './models/select-inner-item.model';
|
|
6
6
|
import { SelectItemModel } from './models/select-item.model';
|
|
7
7
|
import { Field } from '../../../services';
|
|
8
|
-
import { ConnectedPositionVariantsType } from '../../cdk-tooltip/constants';
|
|
9
8
|
import { TemplateOutputModel } from './models/template-output.model';
|
|
9
|
+
import { PositionType } from '../../../enums/overlay';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class SelectComponent implements ControlValueAccessor {
|
|
12
12
|
searchValue: string;
|
|
@@ -34,7 +34,7 @@ export declare class SelectComponent implements ControlValueAccessor {
|
|
|
34
34
|
invalid: boolean;
|
|
35
35
|
invalidMessage: string | string[];
|
|
36
36
|
checkInvalid: true | false | null;
|
|
37
|
-
popupPosition:
|
|
37
|
+
popupPosition: PositionType;
|
|
38
38
|
dropdown: PopupComponent;
|
|
39
39
|
optionTemplate: TemplateRef<TemplateOutputModel>;
|
|
40
40
|
labelTemplate: TemplateRef<TemplateOutputModel>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { IconButtonTypeTypes, IconButtonSizeTypes, IconButtonStateTypes } from './icon-button.enum';
|
|
3
|
-
import {
|
|
3
|
+
import { PositionType } from '../../enums/overlay';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class IconButtonComponent {
|
|
6
6
|
size: IconButtonSizeTypes;
|
|
@@ -9,7 +9,7 @@ export declare class IconButtonComponent {
|
|
|
9
9
|
iconClass: string;
|
|
10
10
|
disabled: boolean;
|
|
11
11
|
tooltip: string;
|
|
12
|
-
tooltipPosition:
|
|
12
|
+
tooltipPosition: PositionType;
|
|
13
13
|
tooltipMaxWidth: number | null;
|
|
14
14
|
isActive: boolean | null | undefined;
|
|
15
15
|
customClasses: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { PaginateOutputObject, PaginatorItem, PaginatorPosition } from './paginator.enum';
|
|
3
|
-
import { DropdownPosition } from '@ng-select/ng-select
|
|
4
|
-
import {
|
|
3
|
+
import { DropdownPosition } from '@ng-select/ng-select';
|
|
4
|
+
import { PositionEnum } from '../../enums/overlay';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class PaginatorComponent {
|
|
7
7
|
position: PaginatorPosition | undefined;
|
|
@@ -15,7 +15,7 @@ export declare class PaginatorComponent {
|
|
|
15
15
|
isPaginatorText: boolean;
|
|
16
16
|
paginatorText: string;
|
|
17
17
|
dropdownPosition: DropdownPosition;
|
|
18
|
-
popupPosition:
|
|
18
|
+
popupPosition: PositionEnum;
|
|
19
19
|
set setPosition(value: PaginatorPosition | undefined);
|
|
20
20
|
set setWithPageSize(value: boolean | undefined);
|
|
21
21
|
dataStateChanged: EventEmitter<PaginateOutputObject>;
|
|
@@ -3,8 +3,10 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class PopupItemComponent {
|
|
4
4
|
custom: boolean;
|
|
5
5
|
id: string | number;
|
|
6
|
+
disabled: boolean;
|
|
6
7
|
templateRef: TemplateRef<any>;
|
|
7
8
|
clicked: EventEmitter<void>;
|
|
9
|
+
itemClick(): void;
|
|
8
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopupItemComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PopupItemComponent, "mrx-popup-item", never, { "custom": { "alias": "custom"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "clicked": "clicked"; }, never, ["*"], false, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PopupItemComponent, "mrx-popup-item", never, { "custom": { "alias": "custom"; "required": false; }; "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "clicked": "clicked"; }, never, ["*"], false, never>;
|
|
10
12
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef, OnDestroy, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { PopupComponent } from '../components/popup/popup.component';
|
|
3
3
|
import { Overlay, OverlayOutsideClickDispatcher } from '@angular/cdk/overlay';
|
|
4
|
-
import {
|
|
4
|
+
import { PositionType } from '../../../enums/overlay';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class PopupTriggerDirective implements AfterViewInit, OnDestroy {
|
|
7
7
|
private overlay;
|
|
@@ -13,7 +13,7 @@ export declare class PopupTriggerDirective implements AfterViewInit, OnDestroy {
|
|
|
13
13
|
private _isDropdownOpen;
|
|
14
14
|
private _overlayRef;
|
|
15
15
|
popupPanel: PopupComponent;
|
|
16
|
-
popupPosition:
|
|
16
|
+
popupPosition: PositionType;
|
|
17
17
|
constructor(overlay: Overlay, elementRef: ElementRef<HTMLElement>, viewContainerRef: ViewContainerRef, dispatcher: OverlayOutsideClickDispatcher);
|
|
18
18
|
ngAfterViewInit(): void;
|
|
19
19
|
togglePopup(): void;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, EventEmitter, QueryList, TemplateRef } from '@angular/core';
|
|
2
2
|
import { ContentSettings, HeaderSettings, PaginatorSettings, SortDescriptor, TableBodyItem, TableType } from './table.enum';
|
|
3
3
|
import { ColumnComponent } from './components/column/column.component';
|
|
4
|
-
import { PagerSettings } from './models
|
|
5
|
-
import { DataStateChangeEvent } from './models/data-state-change.event';
|
|
4
|
+
import { PagerSettings, DataStateChangeEvent } from './models';
|
|
6
5
|
import { PaginateOutputObject } from '../paginator/paginator.enum';
|
|
7
|
-
import {
|
|
6
|
+
import { PositionType } from '../../enums/overlay';
|
|
8
7
|
import * as i0 from "@angular/core";
|
|
9
8
|
export declare class TableComponent implements AfterViewInit {
|
|
10
9
|
private changeDetector;
|
|
@@ -30,7 +29,7 @@ export declare class TableComponent implements AfterViewInit {
|
|
|
30
29
|
customClasses: string;
|
|
31
30
|
emptyResultMsg: string;
|
|
32
31
|
hovered: boolean;
|
|
33
|
-
popupPosition:
|
|
32
|
+
popupPosition: PositionType;
|
|
34
33
|
autoHeight: boolean;
|
|
35
34
|
headerSettings: HeaderSettings | undefined;
|
|
36
35
|
contentSettings: ContentSettings;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
2
|
+
export type PositionType = 'top' | 'bottom' | 'left' | 'right' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end';
|
|
3
|
+
export declare enum PositionEnum {
|
|
4
|
+
Top = "top",
|
|
5
|
+
Bottom = "bottom",
|
|
6
|
+
Left = "left",
|
|
7
|
+
Right = "right",
|
|
8
|
+
TopStart = "top-start",
|
|
9
|
+
TopEnd = "top-end",
|
|
10
|
+
BottomStart = "bottom-start",
|
|
11
|
+
BottomEnd = "bottom-end"
|
|
12
|
+
}
|
|
13
|
+
export declare const PositionStrategyEnum: Record<PositionType, ConnectedPosition[]>;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -177,6 +177,7 @@ export * from './lib/services/index';
|
|
|
177
177
|
export * from './lib/helpers/index';
|
|
178
178
|
export * from './lib/models/index';
|
|
179
179
|
export * from './lib/enums/index';
|
|
180
|
+
export * from './lib/enums/overlay/index';
|
|
180
181
|
export * from './lib/components/form/input-tel/input-tel.module';
|
|
181
182
|
export * from './lib/components/form/input-tel/input-tel.component';
|
|
182
183
|
export * from './lib/components/pdf-viewer/pdf-viewer.component';
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
const topPosition = {
|
|
2
|
-
originX: 'center',
|
|
3
|
-
originY: 'top',
|
|
4
|
-
overlayX: 'center',
|
|
5
|
-
overlayY: 'bottom',
|
|
6
|
-
panelClass: 'top',
|
|
7
|
-
};
|
|
8
|
-
const bottomPosition = {
|
|
9
|
-
originX: 'center',
|
|
10
|
-
originY: 'bottom',
|
|
11
|
-
overlayX: 'center',
|
|
12
|
-
overlayY: 'top',
|
|
13
|
-
panelClass: 'bottom',
|
|
14
|
-
};
|
|
15
|
-
const leftPosition = {
|
|
16
|
-
originX: 'start',
|
|
17
|
-
originY: 'center',
|
|
18
|
-
overlayX: 'end',
|
|
19
|
-
overlayY: 'center',
|
|
20
|
-
panelClass: 'start',
|
|
21
|
-
};
|
|
22
|
-
const rightPosition = {
|
|
23
|
-
originX: 'end',
|
|
24
|
-
originY: 'center',
|
|
25
|
-
overlayX: 'start',
|
|
26
|
-
overlayY: 'center',
|
|
27
|
-
panelClass: 'end',
|
|
28
|
-
};
|
|
29
|
-
const topStartPosition = {
|
|
30
|
-
originX: 'start',
|
|
31
|
-
originY: 'top',
|
|
32
|
-
overlayX: 'start',
|
|
33
|
-
overlayY: 'bottom',
|
|
34
|
-
panelClass: 'top-start',
|
|
35
|
-
};
|
|
36
|
-
const topEndPosition = {
|
|
37
|
-
originX: 'end',
|
|
38
|
-
originY: 'top',
|
|
39
|
-
overlayX: 'end',
|
|
40
|
-
overlayY: 'bottom',
|
|
41
|
-
panelClass: 'top-end',
|
|
42
|
-
};
|
|
43
|
-
const bottomStartPosition = {
|
|
44
|
-
originX: 'start',
|
|
45
|
-
originY: 'bottom',
|
|
46
|
-
overlayX: 'start',
|
|
47
|
-
overlayY: 'top',
|
|
48
|
-
panelClass: 'bottom-start',
|
|
49
|
-
};
|
|
50
|
-
const bottomEndPosition = {
|
|
51
|
-
originX: 'end',
|
|
52
|
-
originY: 'bottom',
|
|
53
|
-
overlayX: 'end',
|
|
54
|
-
overlayY: 'top',
|
|
55
|
-
panelClass: 'bottom-end',
|
|
56
|
-
};
|
|
57
|
-
export const positions = [
|
|
58
|
-
topPosition, bottomPosition, leftPosition, rightPosition
|
|
59
|
-
];
|
|
60
|
-
export const positionStrategy = {
|
|
61
|
-
top: [topPosition, bottomPosition, leftPosition, rightPosition],
|
|
62
|
-
bottom: [bottomPosition, topPosition, leftPosition, rightPosition],
|
|
63
|
-
left: [leftPosition, rightPosition, topPosition, bottomPosition],
|
|
64
|
-
right: [rightPosition, leftPosition, topPosition, bottomPosition],
|
|
65
|
-
'top-start': [topStartPosition, topPosition, bottomStartPosition, bottomPosition],
|
|
66
|
-
'top-end': [topEndPosition, topPosition, bottomEndPosition, bottomPosition],
|
|
67
|
-
'bottom-start': [bottomStartPosition, bottomPosition, topStartPosition, topPosition],
|
|
68
|
-
'bottom-end': [bottomEndPosition, bottomPosition, topEndPosition, topPosition],
|
|
69
|
-
};
|
|
70
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9teXJ0YS11aS9zcmMvbGliL2NvbXBvbmVudHMvY2RrLXRvb2x0aXAvY29uc3RhbnRzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLE1BQU0sV0FBVyxHQUFzQjtJQUNyQyxPQUFPLEVBQUUsUUFBUTtJQUNqQixPQUFPLEVBQUUsS0FBSztJQUNkLFFBQVEsRUFBRSxRQUFRO0lBQ2xCLFFBQVEsRUFBRSxRQUFRO0lBQ2xCLFVBQVUsRUFBRSxLQUFLO0NBQ2xCLENBQUE7QUFFRCxNQUFNLGNBQWMsR0FBc0I7SUFDeEMsT0FBTyxFQUFFLFFBQVE7SUFDakIsT0FBTyxFQUFFLFFBQVE7SUFDakIsUUFBUSxFQUFFLFFBQVE7SUFDbEIsUUFBUSxFQUFFLEtBQUs7SUFDZixVQUFVLEVBQUUsUUFBUTtDQUNyQixDQUFBO0FBRUQsTUFBTSxZQUFZLEdBQXNCO0lBQ3RDLE9BQU8sRUFBRSxPQUFPO0lBQ2hCLE9BQU8sRUFBRSxRQUFRO0lBQ2pCLFFBQVEsRUFBRSxLQUFLO0lBQ2YsUUFBUSxFQUFFLFFBQVE7SUFDbEIsVUFBVSxFQUFFLE9BQU87Q0FDcEIsQ0FBQTtBQUVELE1BQU0sYUFBYSxHQUFzQjtJQUN2QyxPQUFPLEVBQUUsS0FBSztJQUNkLE9BQU8sRUFBRSxRQUFRO0lBQ2pCLFFBQVEsRUFBRSxPQUFPO0lBQ2pCLFFBQVEsRUFBRSxRQUFRO0lBQ2xCLFVBQVUsRUFBRSxLQUFLO0NBQ2xCLENBQUE7QUFFRCxNQUFNLGdCQUFnQixHQUFzQjtJQUMxQyxPQUFPLEVBQUUsT0FBTztJQUNoQixPQUFPLEVBQUUsS0FBSztJQUNkLFFBQVEsRUFBRSxPQUFPO0lBQ2pCLFFBQVEsRUFBRSxRQUFRO0lBQ2xCLFVBQVUsRUFBRSxXQUFXO0NBQ3hCLENBQUE7QUFFRCxNQUFNLGNBQWMsR0FBc0I7SUFDeEMsT0FBTyxFQUFFLEtBQUs7SUFDZCxPQUFPLEVBQUUsS0FBSztJQUNkLFFBQVEsRUFBRSxLQUFLO0lBQ2YsUUFBUSxFQUFFLFFBQVE7SUFDbEIsVUFBVSxFQUFFLFNBQVM7Q0FDdEIsQ0FBQTtBQUVELE1BQU0sbUJBQW1CLEdBQXNCO0lBQzdDLE9BQU8sRUFBRSxPQUFPO0lBQ2hCLE9BQU8sRUFBRSxRQUFRO0lBQ2pCLFFBQVEsRUFBRSxPQUFPO0lBQ2pCLFFBQVEsRUFBRSxLQUFLO0lBQ2YsVUFBVSxFQUFFLGNBQWM7Q0FDM0IsQ0FBQTtBQUVELE1BQU0saUJBQWlCLEdBQXNCO0lBQzNDLE9BQU8sRUFBRSxLQUFLO0lBQ2QsT0FBTyxFQUFFLFFBQVE7SUFDakIsUUFBUSxFQUFFLEtBQUs7SUFDZixRQUFRLEVBQUUsS0FBSztJQUNmLFVBQVUsRUFBRSxZQUFZO0NBQ3pCLENBQUE7QUFFRCxNQUFNLENBQUMsTUFBTSxTQUFTLEdBQXdCO0lBQzVDLFdBQVcsRUFBRSxjQUFjLEVBQUUsWUFBWSxFQUFFLGFBQWE7Q0FDekQsQ0FBQTtBQU1ELE1BQU0sQ0FBQyxNQUFNLGdCQUFnQixHQUE4QjtJQUN6RCxHQUFHLEVBQUUsQ0FBQyxXQUFXLEVBQUUsY0FBYyxFQUFFLFlBQVksRUFBRSxhQUFhLENBQUM7SUFDL0QsTUFBTSxFQUFFLENBQUMsY0FBYyxFQUFFLFdBQVcsRUFBRSxZQUFZLEVBQUUsYUFBYSxDQUFDO0lBQ2xFLElBQUksRUFBRSxDQUFDLFlBQVksRUFBRSxhQUFhLEVBQUUsV0FBVyxFQUFFLGNBQWMsQ0FBQztJQUNoRSxLQUFLLEVBQUUsQ0FBQyxhQUFhLEVBQUUsWUFBWSxFQUFFLFdBQVcsRUFBRSxjQUFjLENBQUM7SUFDakUsV0FBVyxFQUFFLENBQUMsZ0JBQWdCLEVBQUUsV0FBVyxFQUFFLG1CQUFtQixFQUFFLGNBQWMsQ0FBQztJQUNqRixTQUFTLEVBQUUsQ0FBQyxjQUFjLEVBQUUsV0FBVyxFQUFFLGlCQUFpQixFQUFFLGNBQWMsQ0FBQztJQUMzRSxjQUFjLEVBQUUsQ0FBQyxtQkFBbUIsRUFBRSxjQUFjLEVBQUUsZ0JBQWdCLEVBQUUsV0FBVyxDQUFDO0lBQ3BGLFlBQVksRUFBRSxDQUFDLGlCQUFpQixFQUFFLGNBQWMsRUFBRSxjQUFjLEVBQUUsV0FBVyxDQUFDO0NBQy9FLENBQUEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb25uZWN0ZWRQb3NpdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9vdmVybGF5JztcclxuXHJcbmNvbnN0IHRvcFBvc2l0aW9uOiBDb25uZWN0ZWRQb3NpdGlvbiA9IHtcclxuICBvcmlnaW5YOiAnY2VudGVyJyxcclxuICBvcmlnaW5ZOiAndG9wJyxcclxuICBvdmVybGF5WDogJ2NlbnRlcicsXHJcbiAgb3ZlcmxheVk6ICdib3R0b20nLFxyXG4gIHBhbmVsQ2xhc3M6ICd0b3AnLFxyXG59XHJcblxyXG5jb25zdCBib3R0b21Qb3NpdGlvbjogQ29ubmVjdGVkUG9zaXRpb24gPSB7XHJcbiAgb3JpZ2luWDogJ2NlbnRlcicsXHJcbiAgb3JpZ2luWTogJ2JvdHRvbScsXHJcbiAgb3ZlcmxheVg6ICdjZW50ZXInLFxyXG4gIG92ZXJsYXlZOiAndG9wJyxcclxuICBwYW5lbENsYXNzOiAnYm90dG9tJyxcclxufVxyXG5cclxuY29uc3QgbGVmdFBvc2l0aW9uOiBDb25uZWN0ZWRQb3NpdGlvbiA9IHtcclxuICBvcmlnaW5YOiAnc3RhcnQnLFxyXG4gIG9yaWdpblk6ICdjZW50ZXInLFxyXG4gIG92ZXJsYXlYOiAnZW5kJyxcclxuICBvdmVybGF5WTogJ2NlbnRlcicsXHJcbiAgcGFuZWxDbGFzczogJ3N0YXJ0JyxcclxufVxyXG5cclxuY29uc3QgcmlnaHRQb3NpdGlvbjogQ29ubmVjdGVkUG9zaXRpb24gPSB7XHJcbiAgb3JpZ2luWDogJ2VuZCcsXHJcbiAgb3JpZ2luWTogJ2NlbnRlcicsXHJcbiAgb3ZlcmxheVg6ICdzdGFydCcsXHJcbiAgb3ZlcmxheVk6ICdjZW50ZXInLFxyXG4gIHBhbmVsQ2xhc3M6ICdlbmQnLFxyXG59XHJcblxyXG5jb25zdCB0b3BTdGFydFBvc2l0aW9uOiBDb25uZWN0ZWRQb3NpdGlvbiA9IHtcclxuICBvcmlnaW5YOiAnc3RhcnQnLFxyXG4gIG9yaWdpblk6ICd0b3AnLFxyXG4gIG92ZXJsYXlYOiAnc3RhcnQnLFxyXG4gIG92ZXJsYXlZOiAnYm90dG9tJyxcclxuICBwYW5lbENsYXNzOiAndG9wLXN0YXJ0JyxcclxufVxyXG5cclxuY29uc3QgdG9wRW5kUG9zaXRpb246IENvbm5lY3RlZFBvc2l0aW9uID0ge1xyXG4gIG9yaWdpblg6ICdlbmQnLFxyXG4gIG9yaWdpblk6ICd0b3AnLFxyXG4gIG92ZXJsYXlYOiAnZW5kJyxcclxuICBvdmVybGF5WTogJ2JvdHRvbScsXHJcbiAgcGFuZWxDbGFzczogJ3RvcC1lbmQnLFxyXG59XHJcblxyXG5jb25zdCBib3R0b21TdGFydFBvc2l0aW9uOiBDb25uZWN0ZWRQb3NpdGlvbiA9IHtcclxuICBvcmlnaW5YOiAnc3RhcnQnLFxyXG4gIG9yaWdpblk6ICdib3R0b20nLFxyXG4gIG92ZXJsYXlYOiAnc3RhcnQnLFxyXG4gIG92ZXJsYXlZOiAndG9wJyxcclxuICBwYW5lbENsYXNzOiAnYm90dG9tLXN0YXJ0JyxcclxufVxyXG5cclxuY29uc3QgYm90dG9tRW5kUG9zaXRpb246IENvbm5lY3RlZFBvc2l0aW9uID0ge1xyXG4gIG9yaWdpblg6ICdlbmQnLFxyXG4gIG9yaWdpblk6ICdib3R0b20nLFxyXG4gIG92ZXJsYXlYOiAnZW5kJyxcclxuICBvdmVybGF5WTogJ3RvcCcsXHJcbiAgcGFuZWxDbGFzczogJ2JvdHRvbS1lbmQnLFxyXG59XHJcblxyXG5leHBvcnQgY29uc3QgcG9zaXRpb25zOiBDb25uZWN0ZWRQb3NpdGlvbltdID0gW1xyXG4gIHRvcFBvc2l0aW9uLCBib3R0b21Qb3NpdGlvbiwgbGVmdFBvc2l0aW9uLCByaWdodFBvc2l0aW9uXHJcbl1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgQ29ubmVjdGVkUG9zaXRpb25WYXJpYW50cyB7XHJcbiAgW25hbWU6IHN0cmluZ106IENvbm5lY3RlZFBvc2l0aW9uW107XHJcbn1cclxuXHJcbmV4cG9ydCBjb25zdCBwb3NpdGlvblN0cmF0ZWd5OiBDb25uZWN0ZWRQb3NpdGlvblZhcmlhbnRzID0ge1xyXG4gIHRvcDogW3RvcFBvc2l0aW9uLCBib3R0b21Qb3NpdGlvbiwgbGVmdFBvc2l0aW9uLCByaWdodFBvc2l0aW9uXSxcclxuICBib3R0b206IFtib3R0b21Qb3NpdGlvbiwgdG9wUG9zaXRpb24sIGxlZnRQb3NpdGlvbiwgcmlnaHRQb3NpdGlvbl0sXHJcbiAgbGVmdDogW2xlZnRQb3NpdGlvbiwgcmlnaHRQb3NpdGlvbiwgdG9wUG9zaXRpb24sIGJvdHRvbVBvc2l0aW9uXSxcclxuICByaWdodDogW3JpZ2h0UG9zaXRpb24sIGxlZnRQb3NpdGlvbiwgdG9wUG9zaXRpb24sIGJvdHRvbVBvc2l0aW9uXSxcclxuICAndG9wLXN0YXJ0JzogW3RvcFN0YXJ0UG9zaXRpb24sIHRvcFBvc2l0aW9uLCBib3R0b21TdGFydFBvc2l0aW9uLCBib3R0b21Qb3NpdGlvbl0sXHJcbiAgJ3RvcC1lbmQnOiBbdG9wRW5kUG9zaXRpb24sIHRvcFBvc2l0aW9uLCBib3R0b21FbmRQb3NpdGlvbiwgYm90dG9tUG9zaXRpb25dLFxyXG4gICdib3R0b20tc3RhcnQnOiBbYm90dG9tU3RhcnRQb3NpdGlvbiwgYm90dG9tUG9zaXRpb24sIHRvcFN0YXJ0UG9zaXRpb24sIHRvcFBvc2l0aW9uXSxcclxuICAnYm90dG9tLWVuZCc6IFtib3R0b21FbmRQb3NpdGlvbiwgYm90dG9tUG9zaXRpb24sIHRvcEVuZFBvc2l0aW9uLCB0b3BQb3NpdGlvbl0sXHJcbn1cclxuXHJcbmV4cG9ydCB0eXBlIENvbm5lY3RlZFBvc2l0aW9uVmFyaWFudHNUeXBlID1cclxuICAndG9wJyB8XHJcbiAgJ2JvdHRvbScgfFxyXG4gICdsZWZ0JyB8XHJcbiAgJ3JpZ2h0JyB8XHJcbiAgJ3RvcC1zdGFydCcgfFxyXG4gICd0b3AtZW5kJyB8XHJcbiAgJ2JvdHRvbS1zdGFydCcgfFxyXG4gICdib3R0b20tZW5kJ1xyXG4iXX0=
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
2
|
-
export declare const positions: ConnectedPosition[];
|
|
3
|
-
export interface ConnectedPositionVariants {
|
|
4
|
-
[name: string]: ConnectedPosition[];
|
|
5
|
-
}
|
|
6
|
-
export declare const positionStrategy: ConnectedPositionVariants;
|
|
7
|
-
export type ConnectedPositionVariantsType = 'top' | 'bottom' | 'left' | 'right' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end';
|