@abp/ng.components 9.3.0-rc.2 → 9.3.0-rc.4
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/chart.js/index.d.ts +41 -5
- package/extensible/index.d.ts +662 -5
- package/fesm2022/abp-ng.components-chart.js.mjs +7 -7
- package/fesm2022/abp-ng.components-chart.js.mjs.map +1 -1
- package/fesm2022/abp-ng.components-extensible.mjs +163 -163
- package/fesm2022/abp-ng.components-extensible.mjs.map +1 -1
- package/fesm2022/abp-ng.components-page.mjs +19 -19
- package/fesm2022/abp-ng.components-page.mjs.map +1 -1
- package/fesm2022/abp-ng.components-tree.mjs +13 -13
- package/fesm2022/abp-ng.components-tree.mjs.map +1 -1
- package/fesm2022/abp-ng.components.mjs.map +1 -1
- package/index.d.ts +2 -5
- package/package.json +4 -4
- package/page/index.d.ts +80 -5
- package/tree/index.d.ts +114 -5
- package/chart.js/chart.component.d.ts +0 -30
- package/chart.js/chart.module.d.ts +0 -7
- package/chart.js/public-api.d.ts +0 -3
- package/chart.js/widget-utils.d.ts +0 -1
- package/extensible/lib/components/abstract-actions/abstract-actions.component.d.ts +0 -12
- package/extensible/lib/components/date-time-picker/extensible-date-time-picker.component.d.ts +0 -15
- package/extensible/lib/components/extensible-form/extensible-form-prop.component.d.ts +0 -46
- package/extensible/lib/components/extensible-form/extensible-form.component.d.ts +0 -25
- package/extensible/lib/components/extensible-table/extensible-table.component.d.ts +0 -65
- package/extensible/lib/components/grid-actions/grid-actions.component.d.ts +0 -13
- package/extensible/lib/components/index.d.ts +0 -8
- package/extensible/lib/components/multi-select/extensible-form-multiselect.component.d.ts +0 -20
- package/extensible/lib/components/multi-select/index.d.ts +0 -1
- package/extensible/lib/components/page-toolbar/page-toolbar.component.d.ts +0 -16
- package/extensible/lib/constants/extra-properties.d.ts +0 -1
- package/extensible/lib/directives/prop-data.directive.d.ts +0 -19
- package/extensible/lib/enums/components.d.ts +0 -3
- package/extensible/lib/enums/props.enum.d.ts +0 -16
- package/extensible/lib/extensible.module.d.ts +0 -19
- package/extensible/lib/models/actions.d.ts +0 -37
- package/extensible/lib/models/entity-actions.d.ts +0 -29
- package/extensible/lib/models/entity-props.d.ts +0 -36
- package/extensible/lib/models/form-props.d.ts +0 -67
- package/extensible/lib/models/internal/object-extensions.d.ts +0 -101
- package/extensible/lib/models/object-extensions.d.ts +0 -2
- package/extensible/lib/models/props.d.ts +0 -46
- package/extensible/lib/models/toolbar-actions.d.ts +0 -41
- package/extensible/lib/pipes/create-injector.pipe.d.ts +0 -8
- package/extensible/lib/services/extensible-form-prop.service.d.ts +0 -13
- package/extensible/lib/services/extensions.service.d.ts +0 -14
- package/extensible/lib/tokens/extensible-form-view-provider.token.d.ts +0 -5
- package/extensible/lib/tokens/extensions.token.d.ts +0 -21
- package/extensible/lib/utils/actions.util.d.ts +0 -7
- package/extensible/lib/utils/enum.util.d.ts +0 -7
- package/extensible/lib/utils/factory.util.d.ts +0 -1
- package/extensible/lib/utils/form-props.util.d.ts +0 -3
- package/extensible/lib/utils/localization.util.d.ts +0 -3
- package/extensible/lib/utils/model.utils.d.ts +0 -2
- package/extensible/lib/utils/props.util.d.ts +0 -12
- package/extensible/lib/utils/state.util.d.ts +0 -5
- package/extensible/lib/utils/typeahead.util.d.ts +0 -11
- package/extensible/lib/utils/validation.util.d.ts +0 -3
- package/extensible/public-api.d.ts +0 -28
- package/page/page-part.directive.d.ts +0 -31
- package/page/page-parts.component.d.ts +0 -18
- package/page/page.component.d.ts +0 -21
- package/page/page.module.d.ts +0 -12
- package/page/public-api.d.ts +0 -4
- package/public-api.d.ts +0 -1
- package/tree/lib/components/tree.component.d.ts +0 -50
- package/tree/lib/disable-tree-style-loading.token.d.ts +0 -2
- package/tree/lib/templates/expanded-icon-template.directive.d.ts +0 -8
- package/tree/lib/templates/tree-node-template.directive.d.ts +0 -8
- package/tree/lib/tree.module.d.ts +0 -9
- package/tree/lib/utils/nz-tree-adapter.d.ts +0 -38
- package/tree/public-api.d.ts +0 -6
package/chart.js/index.d.ts
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { AfterViewInit, OnDestroy, OnChanges, ElementRef, EventEmitter, ChangeDetectorRef, SimpleChanges } from '@angular/core';
|
|
3
|
+
|
|
4
|
+
declare class ChartComponent implements AfterViewInit, OnDestroy, OnChanges {
|
|
5
|
+
el: ElementRef;
|
|
6
|
+
private cdr;
|
|
7
|
+
type: string;
|
|
8
|
+
data: any;
|
|
9
|
+
options: any;
|
|
10
|
+
plugins: any[];
|
|
11
|
+
width?: string;
|
|
12
|
+
height?: string;
|
|
13
|
+
responsive: boolean;
|
|
14
|
+
dataSelect: EventEmitter<any>;
|
|
15
|
+
initialized: EventEmitter<boolean>;
|
|
16
|
+
canvas: ElementRef<HTMLCanvasElement>;
|
|
17
|
+
chart: any;
|
|
18
|
+
constructor(el: ElementRef, cdr: ChangeDetectorRef);
|
|
19
|
+
ngAfterViewInit(): void;
|
|
20
|
+
onCanvasClick(event: MouseEvent): void;
|
|
21
|
+
private initChart;
|
|
22
|
+
getCanvas: () => HTMLCanvasElement;
|
|
23
|
+
getBase64Image: () => any;
|
|
24
|
+
generateLegend: () => any;
|
|
25
|
+
refresh: () => void;
|
|
26
|
+
reinit: () => void;
|
|
27
|
+
ngOnDestroy(): void;
|
|
28
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChartComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChartComponent, "abp-chart", ["abpChart"], { "type": { "alias": "type"; "required": false; }; "data": { "alias": "data"; "required": false; }; "options": { "alias": "options"; "required": false; }; "plugins": { "alias": "plugins"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "responsive": { "alias": "responsive"; "required": false; }; }, { "dataSelect": "dataSelect"; "initialized": "initialized"; }, never, never, true, never>;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
declare class ChartModule {
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChartModule, never>;
|
|
35
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ChartModule, never, [typeof ChartComponent], [typeof ChartComponent]>;
|
|
36
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ChartModule>;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
declare function getRandomBackgroundColor(count: number): any[];
|
|
40
|
+
|
|
41
|
+
export { ChartComponent, ChartModule, getRandomBackgroundColor };
|