@porscheinformatik/clr-addons 19.13.0 → 19.14.1
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/clr-addons.module.d.ts +2 -1
- package/fesm2022/clr-addons.mjs +562 -466
- package/fesm2022/clr-addons.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/package.json +4 -4
- package/signpost/index.d.ts +2 -0
- package/signpost/signpost.component.d.ts +22 -0
- package/signpost/signpost.module.d.ts +9 -0
package/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porscheinformatik/clr-addons",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.14.1",
|
|
4
4
|
"description": "Addon components for Clarity Angular",
|
|
5
5
|
"es2015": "esm2015/clr-addons.js",
|
|
6
6
|
"homepage": "https://porscheinformatik.github.io/clarity-addons/",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"@angular/common": "^19.0.0",
|
|
22
22
|
"@angular/core": "^19.0.0",
|
|
23
23
|
"@angular/compiler": "^19.0.0",
|
|
24
|
-
"@clr/angular": "^17.
|
|
25
|
-
"@cds/core": "^6.
|
|
26
|
-
"@clr/ui": "^17.
|
|
24
|
+
"@clr/angular": "^17.12.2",
|
|
25
|
+
"@cds/core": "^6.17.0",
|
|
26
|
+
"@clr/ui": "^17.12.2"
|
|
27
27
|
},
|
|
28
28
|
"author": "porscheinformatik",
|
|
29
29
|
"license": "MIT",
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter, OnDestroy, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ClrSignpostAddonComponent implements OnInit, OnDestroy {
|
|
4
|
+
private readonly renderer;
|
|
5
|
+
private readonly document;
|
|
6
|
+
open: boolean;
|
|
7
|
+
preventPropagationCall: (event: MouseEvent) => void;
|
|
8
|
+
targetAnchor: string;
|
|
9
|
+
position: string;
|
|
10
|
+
iconShape: string;
|
|
11
|
+
iconClass: string;
|
|
12
|
+
openContent: EventEmitter<void>;
|
|
13
|
+
signpostElement: ElementRef;
|
|
14
|
+
constructor(renderer: Renderer2, document: Document);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
preventPropagation(event: MouseEvent): void;
|
|
17
|
+
openChanged(isOpen: any): void;
|
|
18
|
+
private moveSignpostContentBelowTargetAnchor;
|
|
19
|
+
ngOnDestroy(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClrSignpostAddonComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ClrSignpostAddonComponent, "clr-signpost-addon", never, { "targetAnchor": { "alias": "targetAnchor"; "required": false; }; "position": { "alias": "position"; "required": false; }; "iconShape": { "alias": "iconShape"; "required": false; }; "iconClass": { "alias": "iconClass"; "required": false; }; }, { "openContent": "openContent"; }, never, ["*"], false, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./signpost.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@clr/angular";
|
|
5
|
+
export declare class ClrSignpostAddonModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClrSignpostAddonModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ClrSignpostAddonModule, [typeof i1.ClrSignpostAddonComponent], [typeof i2.CommonModule, typeof i3.ClrIconModule, typeof i3.ClrSignpostModule], [typeof i1.ClrSignpostAddonComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ClrSignpostAddonModule>;
|
|
9
|
+
}
|