@porscheinformatik/clr-addons 19.15.2 → 19.17.0
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/charts/area-chart/area-chart.component.d.ts +40 -0
- package/charts/bar-chart/bar-chart.component.d.ts +92 -0
- package/charts/chart-alert-overlay/chart-alert-overlay.component.d.ts +7 -0
- package/charts/chart-export/chart-export-button.component.d.ts +9 -0
- package/charts/chart-export/chart-export.service.d.ts +10 -0
- package/charts/chart-legend/chart-legend.component.d.ts +12 -0
- package/charts/chart-tooltip/chart-tooltip.component.d.ts +16 -0
- package/charts/charts.module.d.ts +21 -0
- package/charts/combo-chart/combo-chart.component.d.ts +77 -0
- package/charts/constants/alert-message-constants.d.ts +5 -0
- package/charts/constants/index.d.ts +1 -0
- package/charts/directives/auto-position.directive.d.ts +16 -0
- package/charts/directives/index.d.ts +4 -0
- package/charts/directives/outside-click.directive.d.ts +10 -0
- package/charts/directives/screen-state.service.d.ts +35 -0
- package/charts/directives/tenant-full-date-range.directive.d.ts +10 -0
- package/charts/directives/window-resize.directive.d.ts +12 -0
- package/charts/funnel-chart/funnel-chart.component.d.ts +153 -0
- package/charts/index.d.ts +8 -0
- package/charts/line-chart/line-chart.component.d.ts +40 -0
- package/charts/pie-chart/pie-chart.component.d.ts +39 -0
- package/charts/shared/chart-base.d.ts +37 -0
- package/charts/shared/chart-skeleton.component.d.ts +8 -0
- package/charts/shared/d3-chart-axes.d.ts +28 -0
- package/charts/shared/d3-dots.d.ts +10 -0
- package/charts/shared/xy-chart.types.d.ts +35 -0
- package/charts/utils/color.utils.d.ts +9 -0
- package/charts/utils/index.d.ts +3 -0
- package/charts/utils/text.utils.d.ts +8 -0
- package/charts/utils/utils.d.ts +2 -0
- package/clr-addons.module.d.ts +4 -3
- package/control-enter-submit/clr-control-enter-submit.directive.d.ts +1 -1
- package/copy-to-clipboard/copy-to-clipboard.d.ts +30 -0
- package/copy-to-clipboard/index.d.ts +1 -0
- package/fesm2022/clr-addons.mjs +2834 -308
- package/fesm2022/clr-addons.mjs.map +1 -1
- package/index.d.ts +2 -2
- package/package.json +1 -1
- package/styles/clr-addons-phs.css +52 -0
- package/styles/clr-addons-phs.css.map +1 -1
- package/styles/clr-addons-phs.min.css +1 -1
- package/styles/clr-addons-phs.min.css.map +1 -1
- package/summary-area/index.d.ts +0 -1
- package/summary-area/summary-item-value-copy-button/summary-item-value-copy-button.d.ts +0 -24
package/summary-area/index.d.ts
CHANGED
|
@@ -5,4 +5,3 @@ export * from './summary-area-toggle/summary-area-toggle';
|
|
|
5
5
|
export * from './summary-item/summary-item';
|
|
6
6
|
export * from './summary-item/summary-item.model';
|
|
7
7
|
export * from './summary-item-value/summary-item-value';
|
|
8
|
-
export * from './summary-item-value-copy-button/summary-item-value-copy-button';
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ClrSummaryItemValueCopyButton implements OnInit, AfterViewInit, OnDestroy {
|
|
4
|
-
value: import("@angular/core").InputSignal<string>;
|
|
5
|
-
tooltipText: import("@angular/core").InputSignal<string>;
|
|
6
|
-
showCopiedIcon: boolean;
|
|
7
|
-
protected tooltipSize: string;
|
|
8
|
-
tooltipPosition: 'bottom-right' | 'bottom-left';
|
|
9
|
-
private readonly cdr;
|
|
10
|
-
private readonly elementRef;
|
|
11
|
-
private resetTimeout;
|
|
12
|
-
private resizeListener?;
|
|
13
|
-
ngOnInit(): void;
|
|
14
|
-
ngAfterViewInit(): void;
|
|
15
|
-
ngOnDestroy(): void;
|
|
16
|
-
/**
|
|
17
|
-
* Called when the clipboard copy operation completes.
|
|
18
|
-
* @param success Whether the copy was successful
|
|
19
|
-
*/
|
|
20
|
-
onCopied(success: boolean): void;
|
|
21
|
-
private updateTooltipPosition;
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ClrSummaryItemValueCopyButton, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ClrSummaryItemValueCopyButton, "clr-summary-area-value-copy-button", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "tooltipText": { "alias": "tooltipText"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
24
|
-
}
|