@leanix/components 0.4.758 → 0.4.760

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/index.d.ts CHANGED
@@ -109,6 +109,7 @@ export * from './lib/forms-ui/directives/selected-option.directive';
109
109
  export * from './lib/forms-ui/models/base-select.directive';
110
110
  export * from './lib/forms-ui/models/single-select-padding.interface';
111
111
  export * from './lib/forms-ui/models/sorting.interface';
112
+ export { ICON_MAP, getSapIcon } from './lib/core-ui/icon/icon-map';
112
113
  export * from './lib/forms-ui/components/currency/currency-symbol-map.constant';
113
114
  export * from './lib/forms-ui/components/date-picker-ui/datepicker.config';
114
115
  export * from './lib/forms-ui/helpers/key-codes.constants';
@@ -14,16 +14,3 @@ export interface GlobalTranslationOptionsProvider {
14
14
  export interface TranslationOptions {
15
15
  [key: string]: string;
16
16
  }
17
- /**
18
- * map Font Awesome -> SAP icons
19
- * [0]: regular icon
20
- * [1]: solid icon alternative (if available)
21
- */
22
- export declare const ICON_MAP: Record<string, string[]>;
23
- /**
24
- * Retrieves the SAP icon for a given Font Awesome icon name.
25
- * @param faIcon Font Awesome icon name (e.g., 'fa-check')
26
- * @param solid If true, returns solid variant when available
27
- * @returns SAP icon name or undefined if not mapped
28
- */
29
- export declare function getSapIcon(faIcon: string, solid?: boolean): string | undefined;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * map Font Awesome -> SAP icons
3
+ * [0]: regular icon
4
+ * [1]: solid icon alternative (if available)
5
+ */
6
+ export declare const ICON_MAP: Record<string, string[]>;
7
+ /**
8
+ * Retrieves the SAP icon for a given Font Awesome icon name.
9
+ * @param faIcon Font Awesome icon name (e.g., 'fa-check')
10
+ * @param solid If true, returns solid variant when available
11
+ * @returns SAP icon name or undefined if not mapped
12
+ */
13
+ export declare function getSapIcon(faIcon: string, solid?: boolean): string | undefined;
@@ -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-module.d-B3qEQtts").F;
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 */
@@ -47,7 +47,7 @@ export declare class SingleSelectComponent extends BaseSelectDirective implement
47
47
  isInputFocusedViaTab: boolean;
48
48
  constructor(cd: ChangeDetectorRef);
49
49
  /** @internal */
50
- get cursorStyle(): "text" | "default" | "pointer";
50
+ get cursorStyle(): "default" | "text" | "pointer";
51
51
  /** @internal */
52
52
  resetInput(): void;
53
53
  /** @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-directives.d-BoG39gYN").T<any> | undefined;
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@leanix/components",
3
- "version": "0.4.758",
3
+ "version": "0.4.760",
4
4
  "license": "Apache-2.0",
5
5
  "author": "LeanIX GmbH",
6
6
  "repository": {
@@ -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';