@life-cockpit/angular-ui-kit 2.0.1 → 2.0.2
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/package.json
CHANGED
|
@@ -4643,6 +4643,10 @@ declare class FooterComponent {
|
|
|
4643
4643
|
type SparklineColor = 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info';
|
|
4644
4644
|
type SparklineCurve = 'linear' | 'smooth';
|
|
4645
4645
|
declare class SparklineComponent {
|
|
4646
|
+
private readonly _el;
|
|
4647
|
+
private readonly _destroyRef;
|
|
4648
|
+
private readonly _containerWidth;
|
|
4649
|
+
constructor();
|
|
4646
4650
|
/** Data points to plot. */
|
|
4647
4651
|
data: _angular_core.InputSignal<number[]>;
|
|
4648
4652
|
/** Stroke color theme. */
|
|
@@ -4668,6 +4672,7 @@ declare class SparklineComponent {
|
|
|
4668
4672
|
cy: number;
|
|
4669
4673
|
r: number;
|
|
4670
4674
|
} | null>;
|
|
4675
|
+
protected readonly effectiveWidth: _angular_core.Signal<number>;
|
|
4671
4676
|
protected readonly viewBox: _angular_core.Signal<string>;
|
|
4672
4677
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SparklineComponent, never>;
|
|
4673
4678
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SparklineComponent, "lc-sparkline", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "strokeWidth": { "alias": "strokeWidth"; "required": false; "isSignal": true; }; "filled": { "alias": "filled"; "required": false; "isSignal": true; }; "curve": { "alias": "curve"; "required": false; "isSignal": true; }; "showEndDot": { "alias": "showEndDot"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -4749,6 +4754,10 @@ interface BarChartItem {
|
|
|
4749
4754
|
}
|
|
4750
4755
|
type BarChartOrientation = 'vertical' | 'horizontal';
|
|
4751
4756
|
declare class BarChartComponent {
|
|
4757
|
+
private readonly _el;
|
|
4758
|
+
private readonly _destroyRef;
|
|
4759
|
+
private readonly _containerWidth;
|
|
4760
|
+
constructor();
|
|
4752
4761
|
/** Data items. */
|
|
4753
4762
|
data: _angular_core.InputSignal<BarChartItem[]>;
|
|
4754
4763
|
/** Chart width in pixels. */
|
|
@@ -4771,6 +4780,7 @@ declare class BarChartComponent {
|
|
|
4771
4780
|
private readonly PADDING_RIGHT;
|
|
4772
4781
|
private readonly PADDING_TOP;
|
|
4773
4782
|
private readonly PADDING_BOTTOM;
|
|
4783
|
+
protected readonly effectiveWidth: _angular_core.Signal<number>;
|
|
4774
4784
|
protected readonly viewBox: _angular_core.Signal<string>;
|
|
4775
4785
|
protected readonly maxValue: _angular_core.Signal<number>;
|
|
4776
4786
|
protected readonly gridLines: _angular_core.Signal<{
|
|
@@ -4811,6 +4821,10 @@ interface LineChartSeries {
|
|
|
4811
4821
|
color?: string;
|
|
4812
4822
|
}
|
|
4813
4823
|
declare class LineChartComponent {
|
|
4824
|
+
private readonly _el;
|
|
4825
|
+
private readonly _destroyRef;
|
|
4826
|
+
private readonly _containerWidth;
|
|
4827
|
+
constructor();
|
|
4814
4828
|
/** One or more data series. */
|
|
4815
4829
|
series: _angular_core.InputSignal<LineChartSeries[]>;
|
|
4816
4830
|
/** X-axis labels. */
|
|
@@ -4841,6 +4855,7 @@ declare class LineChartComponent {
|
|
|
4841
4855
|
private readonly PR;
|
|
4842
4856
|
private readonly PT;
|
|
4843
4857
|
private readonly PB;
|
|
4858
|
+
protected readonly effectiveWidth: _angular_core.Signal<number>;
|
|
4844
4859
|
protected readonly viewBox: _angular_core.Signal<string>;
|
|
4845
4860
|
protected readonly allValues: _angular_core.Signal<number[]>;
|
|
4846
4861
|
protected readonly minValue: _angular_core.Signal<number>;
|
|
@@ -4937,6 +4952,10 @@ interface StackedBarLegend {
|
|
|
4937
4952
|
}
|
|
4938
4953
|
type StackedBarOrientation = 'vertical' | 'horizontal';
|
|
4939
4954
|
declare class StackedBarChartComponent {
|
|
4955
|
+
private readonly _el;
|
|
4956
|
+
private readonly _destroyRef;
|
|
4957
|
+
private readonly _containerWidth;
|
|
4958
|
+
constructor();
|
|
4940
4959
|
/** Categories with stacked values. */
|
|
4941
4960
|
categories: _angular_core.InputSignal<StackedBarCategory[]>;
|
|
4942
4961
|
/** Legend items mapping to each value index. */
|
|
@@ -4953,6 +4972,7 @@ declare class StackedBarChartComponent {
|
|
|
4953
4972
|
private readonly PR;
|
|
4954
4973
|
private readonly PT;
|
|
4955
4974
|
private readonly PB;
|
|
4975
|
+
protected readonly effectiveWidth: _angular_core.Signal<number>;
|
|
4956
4976
|
protected readonly viewBox: _angular_core.Signal<string>;
|
|
4957
4977
|
protected readonly maxTotal: _angular_core.Signal<number>;
|
|
4958
4978
|
protected readonly gridLines: _angular_core.Signal<{
|
|
@@ -5000,6 +5020,10 @@ interface AreaChartSeries {
|
|
|
5000
5020
|
color?: string;
|
|
5001
5021
|
}
|
|
5002
5022
|
declare class AreaChartComponent {
|
|
5023
|
+
private readonly _el;
|
|
5024
|
+
private readonly _destroyRef;
|
|
5025
|
+
private readonly _containerWidth;
|
|
5026
|
+
constructor();
|
|
5003
5027
|
series: _angular_core.InputSignal<AreaChartSeries[]>;
|
|
5004
5028
|
labels: _angular_core.InputSignal<string[]>;
|
|
5005
5029
|
width: _angular_core.InputSignal<number>;
|
|
@@ -5019,6 +5043,7 @@ declare class AreaChartComponent {
|
|
|
5019
5043
|
private readonly PR;
|
|
5020
5044
|
private readonly PT;
|
|
5021
5045
|
private readonly PB;
|
|
5046
|
+
protected readonly effectiveWidth: _angular_core.Signal<number>;
|
|
5022
5047
|
protected readonly viewBox: _angular_core.Signal<string>;
|
|
5023
5048
|
protected readonly plotArea: _angular_core.Signal<{
|
|
5024
5049
|
x: number;
|
|
@@ -5245,6 +5270,10 @@ interface WaterfallItem {
|
|
|
5245
5270
|
type?: 'increase' | 'decrease' | 'total';
|
|
5246
5271
|
}
|
|
5247
5272
|
declare class WaterfallChartComponent {
|
|
5273
|
+
private readonly _el;
|
|
5274
|
+
private readonly _destroyRef;
|
|
5275
|
+
private readonly _containerWidth;
|
|
5276
|
+
constructor();
|
|
5248
5277
|
data: _angular_core.InputSignal<WaterfallItem[]>;
|
|
5249
5278
|
width: _angular_core.InputSignal<number>;
|
|
5250
5279
|
height: _angular_core.InputSignal<number>;
|
|
@@ -5259,6 +5288,7 @@ declare class WaterfallChartComponent {
|
|
|
5259
5288
|
private readonly PR;
|
|
5260
5289
|
private readonly PT;
|
|
5261
5290
|
private readonly PB;
|
|
5291
|
+
protected readonly effectiveWidth: _angular_core.Signal<number>;
|
|
5262
5292
|
protected readonly viewBox: _angular_core.Signal<string>;
|
|
5263
5293
|
protected readonly computedBars: _angular_core.Signal<{
|
|
5264
5294
|
bars: {
|
|
@@ -6136,6 +6166,10 @@ interface FunnelStep {
|
|
|
6136
6166
|
color?: string;
|
|
6137
6167
|
}
|
|
6138
6168
|
declare class FunnelChartComponent {
|
|
6169
|
+
private readonly _el;
|
|
6170
|
+
private readonly _destroyRef;
|
|
6171
|
+
private readonly _containerWidth;
|
|
6172
|
+
constructor();
|
|
6139
6173
|
readonly steps: _angular_core.InputSignal<FunnelStep[]>;
|
|
6140
6174
|
readonly width: _angular_core.InputSignal<number>;
|
|
6141
6175
|
readonly height: _angular_core.InputSignal<number>;
|
|
@@ -6143,6 +6177,7 @@ declare class FunnelChartComponent {
|
|
|
6143
6177
|
readonly showValues: _angular_core.InputSignal<boolean>;
|
|
6144
6178
|
readonly showPercentage: _angular_core.InputSignal<boolean>;
|
|
6145
6179
|
readonly orientation: _angular_core.InputSignal<"horizontal" | "vertical">;
|
|
6180
|
+
protected readonly effectiveWidth: _angular_core.Signal<number>;
|
|
6146
6181
|
protected readonly viewBox: _angular_core.Signal<string>;
|
|
6147
6182
|
protected readonly renderedSteps: _angular_core.Signal<{
|
|
6148
6183
|
path: string;
|