nuxeo-development-framework 4.5.5 → 4.5.6
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/bundles/nuxeo-development-framework.umd.js +35 -64
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/charts/components/base-chart.component.js +2 -5
- package/esm2015/lib/components/charts/components/chart.component.js +25 -33
- package/esm2015/lib/components/charts/components/data-chart.component.js +36 -38
- package/esm2015/lib/components/charts/defaults/doughnut.js +6 -9
- package/esm2015/lib/components/charts/defaults/line.js +9 -20
- package/esm2015/lib/components/charts/defaults/pie.js +6 -11
- package/esm2015/lib/components/pdf-tron/pdftron/pdftron.component.js +2 -2
- package/fesm2015/nuxeo-development-framework.js +77 -108
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/charts/components/base-chart.component.d.ts +1 -2
- package/package.json +1 -1
|
@@ -9,7 +9,6 @@ export declare abstract class BaseChartComponent<TType extends ChartType = Chart
|
|
|
9
9
|
width: string | undefined;
|
|
10
10
|
height: string | undefined;
|
|
11
11
|
responsive: boolean;
|
|
12
|
-
legend: boolean;
|
|
13
12
|
fontFamily: string;
|
|
14
13
|
fontSize: number;
|
|
15
14
|
onReady: EventEmitter<Chart>;
|
|
@@ -17,5 +16,5 @@ export declare abstract class BaseChartComponent<TType extends ChartType = Chart
|
|
|
17
16
|
getChart(): Chart<keyof import("chart.js").ChartTypeRegistry, (number | [number, number] | import("chart.js").Point | import("chart.js").BubbleDataPoint)[], unknown>;
|
|
18
17
|
protected refresh(): void;
|
|
19
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseChartComponent<any>, never>;
|
|
20
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseChartComponent<any>, never, never, { "type": "type"; "plugins": "plugins"; "width": "width"; "height": "height"; "responsive": "responsive"; "
|
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseChartComponent<any>, never, never, { "type": "type"; "plugins": "plugins"; "width": "width"; "height": "height"; "responsive": "responsive"; "fontFamily": "fontFamily"; "fontSize": "fontSize"; }, { "onReady": "onReady"; }, never>;
|
|
21
20
|
}
|