@leanix/components 0.4.408 → 0.4.409
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/index.mjs +2 -1
- package/esm2022/lib/core-ui/components/tokenizer/tokenizer-overflow-popover/tokenizer-overflow-popover.component.mjs +44 -0
- package/esm2022/lib/core-ui/components/tokenizer/tokenizer.component.mjs +3 -3
- package/fesm2022/leanix-components.mjs +70 -33
- package/fesm2022/leanix-components.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/core-ui/components/tokenizer/tokenizer-overflow-popover/tokenizer-overflow-popover.component.d.ts +19 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -38,6 +38,7 @@ export * from './lib/core-ui/components/table/table-header/table-header.componen
|
|
38
38
|
export * from './lib/core-ui/components/table/table.component';
|
39
39
|
export * from './lib/core-ui/components/tiny-spinner/tiny-spinner.component';
|
40
40
|
export * from './lib/core-ui/components/tokenizer/token/token.component';
|
41
|
+
export * from './lib/core-ui/components/tokenizer/tokenizer-overflow-popover/tokenizer-overflow-popover.component';
|
41
42
|
export * from './lib/core-ui/components/tokenizer/tokenizer.component';
|
42
43
|
export * from './lib/core-ui/tooltip/tooltip-position.interface';
|
43
44
|
export * from './lib/core-ui/tooltip/tooltip.component';
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
2
|
+
import { SatPopoverComponent, SatPopoverHorizontalAlign, SatPopoverVerticalAlign } from '@ncstate/sat-popover';
|
3
|
+
import { TokenizerComponent } from '../tokenizer.component';
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
export declare class TokenizerOverflowPopoverComponent {
|
6
|
+
private destroyRef;
|
7
|
+
private overflowClickSubscription?;
|
8
|
+
protected startIndex: import("@angular/core").WritableSignal<number>;
|
9
|
+
private changeDetectorRef;
|
10
|
+
protected readonly popoverTemplate?: TemplateRef<unknown>;
|
11
|
+
protected readonly popover: SatPopoverComponent;
|
12
|
+
tokenizer: import("@angular/core").InputSignal<TokenizerComponent>;
|
13
|
+
horizontalAlign: import("@angular/core").InputSignal<SatPopoverHorizontalAlign>;
|
14
|
+
verticalAlign: import("@angular/core").InputSignal<SatPopoverVerticalAlign>;
|
15
|
+
constructor();
|
16
|
+
protected closePopover(): void;
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TokenizerOverflowPopoverComponent, never>;
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TokenizerOverflowPopoverComponent, "lx-tokenizer-overflow-popover", never, { "tokenizer": { "alias": "tokenizer"; "required": true; "isSignal": true; }; "horizontalAlign": { "alias": "horizontalAlign"; "required": false; "isSignal": true; }; "verticalAlign": { "alias": "verticalAlign"; "required": false; "isSignal": true; }; }, {}, ["popoverTemplate"], never, true, never>;
|
19
|
+
}
|