@leanix/components 0.4.759 → 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/fesm2022/leanix-components.mjs +476 -475
- package/fesm2022/leanix-components.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/core-ui/core-ui.constants.d.ts +0 -13
- package/lib/core-ui/icon/icon-map.d.ts +13 -0
- package/lib/forms-ui/components/single-select/single-select.component.d.ts +1 -1
- package/package.json +1 -1
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;
|
|
@@ -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(): "
|
|
50
|
+
get cursorStyle(): "default" | "text" | "pointer";
|
|
51
51
|
/** @internal */
|
|
52
52
|
resetInput(): void;
|
|
53
53
|
/** @internal */
|