@leanix/components 0.4.757 → 0.4.759
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/fesm2022/leanix-components-ui5.mjs.map +1 -1
- package/fesm2022/leanix-components.mjs +2 -2
- package/fesm2022/leanix-components.mjs.map +1 -1
- package/lib/core-ui/tooltip/tooltip.directive.d.ts +1 -1
- package/lib/tab-ui/components/tab-group/tab-group.component.d.ts +1 -1
- package/package.json +1 -1
- package/ui5/components/breadcrumbs.component.d.ts +1 -1
- package/ui5/index.d.ts +1 -1
|
@@ -25,7 +25,7 @@ export declare class TooltipDirective implements OnChanges, OnDestroy {
|
|
|
25
25
|
private overlayRef?;
|
|
26
26
|
private tooltipRef?;
|
|
27
27
|
private mouseOrFocusOnHost;
|
|
28
|
-
get positionStrategy(): import("@angular/cdk/overlay
|
|
28
|
+
get positionStrategy(): import("@angular/cdk/overlay").FlexibleConnectedPositionStrategy;
|
|
29
29
|
constructor(overlayPositionBuilder: OverlayPositionBuilder, elementRef: ElementRef, overlay: Overlay, ariaDescriber: AriaDescriber);
|
|
30
30
|
ngOnChanges(changes: SimpleChanges): void;
|
|
31
31
|
/** @internal */
|
|
@@ -25,7 +25,7 @@ export declare class TabGroupComponent implements OnChanges, AfterContentInit, O
|
|
|
25
25
|
get tabIds(): string[];
|
|
26
26
|
private get tabs();
|
|
27
27
|
/** @internal */
|
|
28
|
-
get activeTabPortal(): import("@angular/cdk/portal
|
|
28
|
+
get activeTabPortal(): import("@angular/cdk/portal").TemplatePortal<any> | undefined;
|
|
29
29
|
/** @internal */
|
|
30
30
|
readonly destroyed$: Subject<void>;
|
|
31
31
|
constructor(cd: ChangeDetectorRef);
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BreadcrumbsComponent as Ui5BreadcrumbsComponent } from '@ui5/webcomponents-ngx/main/breadcrumbs';
|
|
2
|
-
import { BreadcrumbsItemClickEventDetail } from '@ui5/webcomponents/dist/Breadcrumbs';
|
|
2
|
+
import { BreadcrumbsItemClickEventDetail } from '@ui5/webcomponents/dist/Breadcrumbs.js';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/**
|
|
5
5
|
* Enables users to navigate between items by providing a list of links to previous steps in the user's navigation path.
|
package/ui5/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
export * from './ui5.provider';
|
|
5
5
|
export { BusyIndicatorComponent } from '@ui5/webcomponents-ngx/main/busy-indicator';
|
|
6
6
|
export { IconComponent } from '@ui5/webcomponents-ngx/main/icon';
|
|
7
|
-
export type { BreadcrumbsItemClickEventDetail } from '@ui5/webcomponents/dist/Breadcrumbs';
|
|
7
|
+
export type { BreadcrumbsItemClickEventDetail } from '@ui5/webcomponents/dist/Breadcrumbs.js';
|
|
8
8
|
export { BreadcrumbsItemComponent } from './components/breadcrumbs-item.component';
|
|
9
9
|
export { BreadcrumbsComponent } from './components/breadcrumbs.component';
|
|
10
10
|
export { getOuterHtmlWithShadowDom } from './utils/get-outer-html-with-shadow-dom';
|