@smartbit4all/ng-client 4.2.69 → 4.2.71
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/esm2022/lib/smart-client/smart-component-api-client.mjs +25 -3
- package/esm2022/lib/smart-client/smart.component.mjs +9 -2
- package/esm2022/lib/smart-component-layout/api/model/componentWidgetType.mjs +2 -1
- package/esm2022/lib/smart-component-layout/api/model/layoutDefinitionDescriptor.mjs +2 -0
- package/esm2022/lib/smart-component-layout/api/model/models.mjs +2 -1
- package/esm2022/lib/smart-component-layout/api/model/smartComponentLayoutDefinition.mjs +1 -1
- package/esm2022/lib/smart-component-layout/smart-component-layout-utility.mjs +18 -1
- package/esm2022/lib/smart-component-layout/smart-component-layout.component.mjs +33 -3
- package/esm2022/lib/smart-component-layout/smart-component-layout.module.mjs +7 -3
- package/esm2022/lib/smart-diagram/api/api/api.mjs +4 -0
- package/esm2022/lib/smart-diagram/api/api/diagramService.service.mjs +141 -0
- package/esm2022/lib/smart-diagram/api/api.module.mjs +40 -0
- package/esm2022/lib/smart-diagram/api/configuration.mjs +91 -0
- package/esm2022/lib/smart-diagram/api/encoder.mjs +19 -0
- package/esm2022/lib/smart-diagram/api/index.mjs +7 -0
- package/esm2022/lib/smart-diagram/api/model/diagramColor.mjs +13 -0
- package/esm2022/lib/smart-diagram/api/model/diagramDataContainer.mjs +2 -0
- package/esm2022/lib/smart-diagram/api/model/diagramDataItem.mjs +13 -0
- package/esm2022/lib/smart-diagram/api/model/diagramDataSet.mjs +2 -0
- package/esm2022/lib/smart-diagram/api/model/diagramDescriptor.mjs +2 -0
- package/esm2022/lib/smart-diagram/api/model/diagramModel.mjs +2 -0
- package/esm2022/lib/smart-diagram/api/model/diagramShape.mjs +2 -0
- package/esm2022/lib/smart-diagram/api/model/drawTime.mjs +18 -0
- package/esm2022/lib/smart-diagram/api/model/labelText.mjs +2 -0
- package/esm2022/lib/smart-diagram/api/model/models.mjs +10 -0
- package/esm2022/lib/smart-diagram/api/param.mjs +2 -0
- package/esm2022/lib/smart-diagram/api/variables.mjs +9 -0
- package/esm2022/lib/smart-diagram/component/default-smart-diagram-options.provider.mjs +289 -0
- package/esm2022/lib/smart-diagram/component/smart-diagram.component.mjs +341 -0
- package/esm2022/lib/smart-diagram/component/smart-diagram.module.mjs +39 -0
- package/esm2022/lib/smart-diagram/component/smart-diagram.util.mjs +10 -0
- package/esm2022/lib/smart-diagram/projects.mjs +5 -0
- package/esm2022/lib/smart-form/widgets/smartformwidget/smartformwidget.component.mjs +3 -3
- package/esm2022/lib/smart-grid/api/grid-api/model/gridExportDescriptor.mjs +1 -12
- package/esm2022/lib/smart-grid/api/grid-api/model/gridModel.mjs +1 -1
- package/esm2022/lib/smart-grid/smart-grid-toolbar-util.mjs +6 -3
- package/esm2022/lib/smart-grid/smart-grid.component.mjs +22 -3
- package/esm2022/lib/smart-table/tables/material-table/material-table.component.mjs +5 -3
- package/esm2022/lib/smart-table/tables/table.mjs +5 -2
- package/esm2022/lib/view-context/smart-ui-action/ui-action-toolbar.component.mjs +2 -2
- package/esm2022/projects.mjs +2 -1
- package/fesm2022/smartbit4all-ng-client.mjs +1255 -171
- package/fesm2022/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-client/smart-component-api-client.d.ts +4 -1
- package/lib/smart-client/smart.component.d.ts +3 -0
- package/lib/smart-component-layout/api/model/componentWidgetType.d.ts +2 -1
- package/lib/smart-component-layout/api/model/layoutDefinitionDescriptor.d.ts +19 -0
- package/lib/smart-component-layout/api/model/models.d.ts +1 -0
- package/lib/smart-component-layout/api/model/smartComponentLayoutDefinition.d.ts +2 -0
- package/lib/smart-component-layout/smart-component-layout-utility.d.ts +2 -0
- package/lib/smart-component-layout/smart-component-layout.component.d.ts +7 -0
- package/lib/smart-component-layout/smart-component-layout.module.d.ts +2 -1
- package/lib/smart-diagram/api/api/api.d.ts +3 -0
- package/lib/smart-diagram/api/api/diagramService.service.d.ts +36 -0
- package/lib/smart-diagram/api/encoder.d.ts +11 -0
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramColor.d.ts +2 -2
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramDataContainer.d.ts +2 -3
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramDataItem.d.ts +3 -3
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramDataSet.d.ts +4 -4
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramDescriptor.d.ts +10 -9
- package/{src/lib/smart-chart/smart-chart/smart-chart2/api/model/diagramUiModel.d.ts → lib/smart-diagram/api/model/diagramModel.d.ts} +5 -4
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/diagramShape.d.ts +2 -2
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/drawTime.d.ts +2 -2
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/labelText.d.ts +2 -2
- package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/models.d.ts +1 -2
- package/lib/smart-diagram/component/default-smart-diagram-options.provider.d.ts +32 -0
- package/lib/smart-diagram/component/smart-diagram.component.d.ts +40 -0
- package/lib/smart-diagram/component/smart-diagram.module.d.ts +11 -0
- package/lib/smart-diagram/component/smart-diagram.util.d.ts +1 -0
- package/lib/smart-diagram/projects.d.ts +4 -0
- package/lib/smart-grid/api/grid-api/model/gridExportDescriptor.d.ts +2 -2
- package/lib/smart-grid/api/grid-api/model/gridModel.d.ts +1 -0
- package/lib/smart-grid/smart-grid-toolbar-util.d.ts +1 -0
- package/lib/smart-grid/smart-grid.component.d.ts +3 -0
- package/lib/smart-table/tables/material-table/material-table.component.d.ts +1 -0
- package/lib/smart-table/tables/table.d.ts +1 -0
- package/package.json +1 -7
- package/projects.d.ts +1 -0
- package/smartbit4all-ng-client-4.2.71.tgz +0 -0
- package/esm2022/src/lib/smart-chart/smart-chart/api/model/chartData.mjs +0 -2
- package/esm2022/src/lib/smart-chart/smart-chart/api/model/chartDescriptor.mjs +0 -2
- package/esm2022/src/lib/smart-chart/smart-chart/api/model/chartOrientation.mjs +0 -16
- package/esm2022/src/lib/smart-chart/smart-chart/api/model/chartType.mjs +0 -21
- package/esm2022/src/lib/smart-chart/smart-chart/api/model/chartValue.mjs +0 -13
- package/esm2022/src/lib/smart-chart/smart-chart/api/model/models.mjs +0 -7
- package/esm2022/src/lib/smart-chart/smart-chart/api/model/pieChartLegendPosition.mjs +0 -16
- package/esm2022/src/lib/smart-chart/smart-chart/default-chart-options.provider.mjs +0 -233
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart.component.mjs +0 -285
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart.module.mjs +0 -39
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/api/api.mjs +0 -2
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/api.module.mjs +0 -40
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/configuration.mjs +0 -91
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/index.mjs +0 -7
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/model/diagramColor.mjs +0 -13
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/model/diagramDataContainer.mjs +0 -2
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/model/diagramDataItem.mjs +0 -13
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/model/diagramDataSet.mjs +0 -2
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/model/diagramDataSetConstructionInstruction.mjs +0 -13
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/model/diagramDescriptor.mjs +0 -2
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/model/diagramShape.mjs +0 -2
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/model/diagramUiModel.mjs +0 -2
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/model/drawTime.mjs +0 -18
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/model/labelText.mjs +0 -2
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/model/models.mjs +0 -11
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/param.mjs +0 -2
- package/esm2022/src/lib/smart-chart/smart-chart/smart-chart2/api/variables.mjs +0 -9
- package/esm2022/src/lib/smart-chart/smart-chart-projects.mjs +0 -9
- package/esm2022/src/lib/smart-chart/smartbit4all-ng-client-src-lib-smart-chart.mjs +0 -5
- package/esm2022/src/lib/smart-chart/view-context/utility/componentLibrary.mjs +0 -9
- package/fesm2022/smartbit4all-ng-client-src-lib-smart-chart.mjs +0 -686
- package/fesm2022/smartbit4all-ng-client-src-lib-smart-chart.mjs.map +0 -1
- package/smartbit4all-ng-client-4.2.69.tgz +0 -0
- package/src/lib/smart-chart/index.d.ts +0 -5
- package/src/lib/smart-chart/smart-chart/api/model/chartData.d.ts +0 -16
- package/src/lib/smart-chart/smart-chart/api/model/chartDescriptor.d.ts +0 -37
- package/src/lib/smart-chart/smart-chart/api/model/chartOrientation.d.ts +0 -16
- package/src/lib/smart-chart/smart-chart/api/model/chartType.d.ts +0 -21
- package/src/lib/smart-chart/smart-chart/api/model/chartValue.d.ts +0 -16
- package/src/lib/smart-chart/smart-chart/api/model/models.d.ts +0 -6
- package/src/lib/smart-chart/smart-chart/api/model/pieChartLegendPosition.d.ts +0 -16
- package/src/lib/smart-chart/smart-chart/default-chart-options.provider.d.ts +0 -31
- package/src/lib/smart-chart/smart-chart/smart-chart.component.d.ts +0 -33
- package/src/lib/smart-chart/smart-chart/smart-chart.module.d.ts +0 -11
- package/src/lib/smart-chart/smart-chart/smart-chart2/api/api/api.d.ts +0 -1
- package/src/lib/smart-chart/smart-chart/smart-chart2/api/model/diagramDataSetConstructionInstruction.d.ts +0 -21
- package/src/lib/smart-chart/smart-chart-projects.d.ts +0 -5
- package/src/lib/smart-chart/view-context/utility/componentLibrary.d.ts +0 -6
- /package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/api.module.d.ts +0 -0
- /package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/configuration.d.ts +0 -0
- /package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/index.d.ts +0 -0
- /package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/param.d.ts +0 -0
- /package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/variables.d.ts +0 -0
|
@@ -8,6 +8,7 @@ import { SmarttreeGenericService } from '../smart-tree/projects';
|
|
|
8
8
|
import { ComponentModel, ComponentModelChange, ExecuteUiActionOptions, SmartTranslateService, SmartViewContextService, UiAction, UiActionAdditionalParams, UiActionDescriptorService, UiActionModel, UiActionRequest, UiActionService, UiActionSpecificDemandResponse, UiActionToolbarComponent, UseUiAction2 } from '../view-context/projects';
|
|
9
9
|
import { SmartAuthenticationServiceInterface } from './smart-authentication.service';
|
|
10
10
|
import { SmartFilterEditorContentComponent } from '../smart-filter-editor/smart-filter-editor-content/smart-filter-editor-content.component';
|
|
11
|
+
import { SmartDiagramComponent } from '../smart-diagram/projects';
|
|
11
12
|
export declare abstract class SmartComponentApiClient<T> implements UseUiAction2 {
|
|
12
13
|
protected inject: Injector;
|
|
13
14
|
protected auth: SmartAuthenticationServiceInterface;
|
|
@@ -61,11 +62,13 @@ export declare abstract class SmartComponentApiClient<T> implements UseUiAction2
|
|
|
61
62
|
protected abstract getSmartUiActionToolbarsQL(): QueryList<UiActionToolbarComponent> | undefined;
|
|
62
63
|
protected abstract getSmartComponentLayoutsQL(): QueryList<SmartComponentLayoutComponent> | undefined;
|
|
63
64
|
protected abstract getSmartMapQL(): QueryList<SmartMapComponent> | undefined;
|
|
64
|
-
protected
|
|
65
|
+
protected abstract getSmartDiagramQL(): QueryList<SmartDiagramComponent> | undefined;
|
|
66
|
+
protected getWidgets(): Map<string, SmartGridComponent | SmarttreeGenericService | SmartFilterEditorContentComponent | SmartMapComponent | SmartDiagramComponent | undefined>;
|
|
65
67
|
initComponentByModel(): void;
|
|
66
68
|
protected getAllSmartFormComponents(): SmartformComponent[];
|
|
67
69
|
protected getAllSmartGridComponents(): SmartGridComponent[];
|
|
68
70
|
protected getAllSmartMapComponents(): Array<SmartMapComponent>;
|
|
71
|
+
protected getAllSmartDiagramComponents(): Array<SmartDiagramComponent>;
|
|
69
72
|
protected getAllSmartTreeComponents(): SmarttreeGenericService[];
|
|
70
73
|
protected getAllSmartFilterEditorContentComponents(): SmartFilterEditorContentComponent[];
|
|
71
74
|
protected getAllSmartUiActionToolbars(): UiActionToolbarComponent[];
|
|
@@ -8,6 +8,7 @@ import { SmarttreeGenericService } from '../smart-tree/projects';
|
|
|
8
8
|
import { UiActionToolbarComponent } from '../view-context/projects';
|
|
9
9
|
import { SmartAuthenticationServiceInterface } from './smart-authentication.service';
|
|
10
10
|
import { SmartComponentApiClient } from './smart-component-api-client';
|
|
11
|
+
import { SmartDiagramComponent } from '../smart-diagram/projects';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
export declare abstract class SmartComponent<T> extends SmartComponentApiClient<T> implements OnInit, OnDestroy, AfterViewInit {
|
|
13
14
|
smartFormsQL: QueryList<SmartformComponent>;
|
|
@@ -17,6 +18,7 @@ export declare abstract class SmartComponent<T> extends SmartComponentApiClient<
|
|
|
17
18
|
smartFilterEditorContentComponentsQL: QueryList<SmartFilterEditorContentComponent>;
|
|
18
19
|
smartUiActionToolbarsQL: QueryList<UiActionToolbarComponent>;
|
|
19
20
|
smartMapQL: QueryList<SmartMapComponent>;
|
|
21
|
+
smartDiagramQL: QueryList<SmartDiagramComponent>;
|
|
20
22
|
constructor(inject: Injector, auth: SmartAuthenticationServiceInterface, pageName?: string, _componentName?: string, element?: ElementRef, renderer?: Renderer2);
|
|
21
23
|
ngOnInit(): void;
|
|
22
24
|
ngOnDestroy(): void;
|
|
@@ -28,6 +30,7 @@ export declare abstract class SmartComponent<T> extends SmartComponentApiClient<
|
|
|
28
30
|
getSmartFilterEditorContentComponentsQL(): QueryList<SmartFilterEditorContentComponent> | undefined;
|
|
29
31
|
getSmartUiActionToolbarsQL(): QueryList<UiActionToolbarComponent> | undefined;
|
|
30
32
|
getSmartMapQL(): QueryList<SmartMapComponent> | undefined;
|
|
33
|
+
getSmartDiagramQL(): QueryList<SmartDiagramComponent> | undefined;
|
|
31
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartComponent<any>, never>;
|
|
32
35
|
static ɵcmp: i0.ɵɵComponentDeclaration<SmartComponent<any>, "ng-component", never, {}, {}, never, never, false, never>;
|
|
33
36
|
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Form layout definition
|
|
3
|
+
* Contains form layout definition objects.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
* Contact: info@it4all.hu
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { SmartComponentLayoutDefinition } from './smartComponentLayoutDefinition';
|
|
13
|
+
import { ViewConstraint } from '../../../view-context/api';
|
|
14
|
+
export interface LayoutDefinitionDescriptor {
|
|
15
|
+
uri?: string;
|
|
16
|
+
name?: string;
|
|
17
|
+
layout?: SmartComponentLayoutDefinition;
|
|
18
|
+
constraint?: ViewConstraint;
|
|
19
|
+
}
|
|
@@ -22,6 +22,8 @@ export interface SmartComponentLayoutDefinition {
|
|
|
22
22
|
type: ComponentType;
|
|
23
23
|
expandable?: boolean;
|
|
24
24
|
expandableSectionLabel?: string;
|
|
25
|
+
expandableSectionSubtitle?: string;
|
|
26
|
+
expandableSectionHeaderToolbarId?: string;
|
|
25
27
|
direction?: LayoutDirection;
|
|
26
28
|
components?: Array<SmartComponentLayoutDefinition>;
|
|
27
29
|
widget?: SmartComponentWidgetDefinition;
|
|
@@ -5,10 +5,12 @@ import { SmartMapComponent } from '../smart-map/smart-map.component';
|
|
|
5
5
|
import { SmarttreeGenericService } from '../smart-tree/projects';
|
|
6
6
|
import { Style, UiActionToolbarComponent } from '../view-context/projects';
|
|
7
7
|
import { SmartComponentLayoutComponent } from './smart-component-layout.component';
|
|
8
|
+
import { SmartDiagramComponent } from '../smart-diagram/projects';
|
|
8
9
|
export declare class SmartComponentLayoutUtility {
|
|
9
10
|
static getForms(comp: SmartComponentLayoutComponent): SmartformComponent[];
|
|
10
11
|
static getGrids(comp: SmartComponentLayoutComponent): SmartGridComponent[];
|
|
11
12
|
static getMaps(comp: SmartComponentLayoutComponent): Array<SmartMapComponent>;
|
|
13
|
+
static getDiagrams(comp: SmartComponentLayoutComponent): Array<SmartDiagramComponent>;
|
|
12
14
|
static getTrees(comp: SmartComponentLayoutComponent): SmarttreeGenericService[];
|
|
13
15
|
static getToolbars(comp: SmartComponentLayoutComponent): UiActionToolbarComponent[];
|
|
14
16
|
static getExpandableComponent(comp: SmartComponentLayoutComponent): SmartComponentLayoutComponent;
|
|
@@ -8,6 +8,7 @@ import { ExpandableSection, ExpandableSectionComponent } from '../smart-expandab
|
|
|
8
8
|
import { Subject } from 'rxjs';
|
|
9
9
|
import { UiActionToolbarComponent } from '../view-context/projects';
|
|
10
10
|
import { SmartMapComponent } from '../smart-map/smart-map.component';
|
|
11
|
+
import { SmartDiagramComponent } from '../smart-diagram/projects';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
export declare class SmartComponentLayoutComponent implements AfterViewInit, OnDestroy, OnChanges {
|
|
13
14
|
private layoutService;
|
|
@@ -29,6 +30,9 @@ export declare class SmartComponentLayoutComponent implements AfterViewInit, OnD
|
|
|
29
30
|
smartMapList: QueryList<SmartMapComponent>;
|
|
30
31
|
smartMapComponent?: SmartMapComponent;
|
|
31
32
|
mapId?: string;
|
|
33
|
+
smartDiagramList: QueryList<SmartDiagramComponent>;
|
|
34
|
+
smartDiagramComponent?: SmartDiagramComponent;
|
|
35
|
+
smartDiagramId?: string;
|
|
32
36
|
smartFilterList: QueryList<SmartFilterComponent>;
|
|
33
37
|
smartFilterComponent?: SmartFilterComponent;
|
|
34
38
|
smartFilter?: SmartFilter;
|
|
@@ -55,8 +59,11 @@ export declare class SmartComponentLayoutComponent implements AfterViewInit, OnD
|
|
|
55
59
|
setGridComponent(comp: SmartGridComponent): void;
|
|
56
60
|
bindGrid(): void;
|
|
57
61
|
constructMap(): void;
|
|
62
|
+
construcDiagram(): void;
|
|
58
63
|
setMapComponent(comp: SmartMapComponent): void;
|
|
64
|
+
setDiagramComponent(comp: SmartDiagramComponent): void;
|
|
59
65
|
bindMap(): void;
|
|
66
|
+
bindDiagram(): void;
|
|
60
67
|
setToolbarComponent(comp: UiActionToolbarComponent): void;
|
|
61
68
|
bindFilter(): void;
|
|
62
69
|
constructTree(): void;
|
|
@@ -7,8 +7,9 @@ import * as i5 from "../smart-expandable-section/smart-expandable-section.module
|
|
|
7
7
|
import * as i6 from "../smart-tree/smarttree.module";
|
|
8
8
|
import * as i7 from "../view-context/smart-view-context.module";
|
|
9
9
|
import * as i8 from "../smart-map/smart-map.module";
|
|
10
|
+
import * as i9 from "../smart-diagram/component/smart-diagram.module";
|
|
10
11
|
export declare class SmartComponentLayoutModule {
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartComponentLayoutModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartComponentLayoutModule, [typeof i1.SmartComponentLayoutComponent], [typeof i2.BrowserModule, typeof i3.MatCommonModule, typeof i4.SmartGridModule, typeof i5.SmartExpandableSectionModule, typeof i6.SmarttreeModule, typeof i7.SmartViewContextModule, typeof i8.SmartMapModule], [typeof i1.SmartComponentLayoutComponent]>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartComponentLayoutModule, [typeof i1.SmartComponentLayoutComponent], [typeof i2.BrowserModule, typeof i3.MatCommonModule, typeof i4.SmartGridModule, typeof i5.SmartExpandableSectionModule, typeof i6.SmarttreeModule, typeof i7.SmartViewContextModule, typeof i8.SmartMapModule, typeof i9.SmartDiagramModule], [typeof i1.SmartComponentLayoutComponent]>;
|
|
13
14
|
static ɵinj: i0.ɵɵInjectorDeclaration<SmartComponentLayoutModule>;
|
|
14
15
|
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { DiagramModel } from '../model/diagramModel';
|
|
4
|
+
import { Configuration } from '../configuration';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DiagramServiceService {
|
|
7
|
+
protected httpClient: HttpClient;
|
|
8
|
+
protected basePath: string;
|
|
9
|
+
defaultHeaders: HttpHeaders;
|
|
10
|
+
configuration: Configuration;
|
|
11
|
+
encoder: HttpParameterCodec;
|
|
12
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration: Configuration);
|
|
13
|
+
private addToHttpParams;
|
|
14
|
+
private addToHttpParamsRecursive;
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @param uuid
|
|
18
|
+
* @param identifier
|
|
19
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
20
|
+
* @param reportProgress flag to report request and response progress.
|
|
21
|
+
*/
|
|
22
|
+
load(uuid: string, identifier: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
23
|
+
httpHeaderAccept?: 'application/json';
|
|
24
|
+
context?: HttpContext;
|
|
25
|
+
}): Observable<DiagramModel>;
|
|
26
|
+
load(uuid: string, identifier: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
27
|
+
httpHeaderAccept?: 'application/json';
|
|
28
|
+
context?: HttpContext;
|
|
29
|
+
}): Observable<HttpResponse<DiagramModel>>;
|
|
30
|
+
load(uuid: string, identifier: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
31
|
+
httpHeaderAccept?: 'application/json';
|
|
32
|
+
context?: HttpContext;
|
|
33
|
+
}): Observable<HttpEvent<DiagramModel>>;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DiagramServiceService, [null, { optional: true; }, { optional: true; }]>;
|
|
35
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DiagramServiceService>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { HttpParameterCodec } from '@angular/common/http';
|
|
2
|
+
/**
|
|
3
|
+
* Custom HttpParameterCodec
|
|
4
|
+
* Workaround for https://github.com/angular/angular/issues/18261
|
|
5
|
+
*/
|
|
6
|
+
export declare class CustomHttpParameterCodec implements HttpParameterCodec {
|
|
7
|
+
encodeKey(k: string): string;
|
|
8
|
+
encodeValue(v: string): string;
|
|
9
|
+
decodeKey(k: string): string;
|
|
10
|
+
decodeValue(v: string): string;
|
|
11
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Describes a model for
|
|
2
|
+
* diagram API
|
|
3
|
+
* Describes a model for a diagram.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0.0
|
|
6
6
|
* Contact: info@it4all.hu
|
|
@@ -14,7 +14,6 @@ import { DiagramDataSet } from './diagramDataSet';
|
|
|
14
14
|
* Contains sets of data for a diagram.
|
|
15
15
|
*/
|
|
16
16
|
export interface DiagramDataContainer {
|
|
17
|
-
uri?: string;
|
|
18
17
|
items: Array<DiagramDataSet>;
|
|
19
18
|
labels: Array<string>;
|
|
20
19
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Describes a model for
|
|
2
|
+
* diagram API
|
|
3
|
+
* Describes a model for a diagram.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0.0
|
|
6
6
|
* Contact: info@it4all.hu
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Contains an items data, based on the type of the diagram.
|
|
14
14
|
*/
|
|
15
15
|
export interface DiagramDataItem {
|
|
16
|
-
|
|
16
|
+
itemUri?: string;
|
|
17
17
|
label?: string;
|
|
18
18
|
xValue?: number;
|
|
19
19
|
yValue?: number;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Describes a model for
|
|
2
|
+
* diagram API
|
|
3
|
+
* Describes a model for a diagram.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0.0
|
|
6
6
|
* Contact: info@it4all.hu
|
|
@@ -14,9 +14,9 @@ export interface DiagramDataSet {
|
|
|
14
14
|
/**
|
|
15
15
|
* The type can be set specifically for the dataset. This allows the dataset to be rendered as the specified type, while other datasets in the diagram remain rendered as the basic chart type. For example, you can render one dataset as a \'line\' type in a \'bar\' chart.
|
|
16
16
|
*/
|
|
17
|
-
|
|
17
|
+
type?: string;
|
|
18
18
|
label?: string;
|
|
19
|
-
|
|
19
|
+
color?: string;
|
|
20
20
|
pointStyle?: string;
|
|
21
21
|
items: Array<DiagramDataItem>;
|
|
22
22
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Describes a model for
|
|
2
|
+
* diagram API
|
|
3
|
+
* Describes a model for a diagram.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0.0
|
|
6
6
|
* Contact: info@it4all.hu
|
|
@@ -11,31 +11,32 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { DiagramColor } from './diagramColor';
|
|
13
13
|
import { DiagramShape } from './diagramShape';
|
|
14
|
+
import { LabelText } from './labelText';
|
|
14
15
|
/**
|
|
15
16
|
* A descriptor for the diagram.
|
|
16
17
|
*/
|
|
17
18
|
export interface DiagramDescriptor {
|
|
18
|
-
uri?: string;
|
|
19
19
|
/**
|
|
20
20
|
* The type of the diagram.
|
|
21
21
|
*/
|
|
22
|
-
|
|
22
|
+
type?: string;
|
|
23
|
+
title?: LabelText;
|
|
23
24
|
/**
|
|
24
25
|
* Specifies the starting point for rendering the chart\'s X-axis. For example, if the minimum X value in the dataset is -30 and this property is set to -35, an extra \"padding\" of 5 units will be added below the lowest data point.
|
|
25
26
|
*/
|
|
26
|
-
|
|
27
|
+
minX?: number;
|
|
27
28
|
/**
|
|
28
29
|
* Specifies the ending point for rendering the chart\'s X-axis. For instance, if the maximum X value in the dataset is 30 and this property is set to 35, an additional \"padding\" of 5 units will be added above the highest data point.
|
|
29
30
|
*/
|
|
30
|
-
|
|
31
|
+
maxX?: number;
|
|
31
32
|
/**
|
|
32
33
|
* Specifies the starting point for rendering the chart\'s Y-axis. For example, if the minimum Y value in the dataset is -30 and this property is set to -35, an extra \"padding\" of 5 units will be added below the lowest data point.
|
|
33
34
|
*/
|
|
34
|
-
|
|
35
|
+
minY?: number;
|
|
35
36
|
/**
|
|
36
37
|
* Specifies the ending point for rendering the chart\'s Y-axis. For instance, if the maximum Y value in the dataset is 30 and this property is set to 35, an additional \"padding\" of 5 units will be added above the highest data point.
|
|
37
38
|
*/
|
|
38
|
-
|
|
39
|
+
maxY?: number;
|
|
39
40
|
/**
|
|
40
41
|
* Determines whether the labels on the X-Axis are displayed on the chart. Set to `true` to show the labels, or `false` to hide them.
|
|
41
42
|
*/
|
|
@@ -49,5 +50,5 @@ export interface DiagramDescriptor {
|
|
|
49
50
|
*/
|
|
50
51
|
showLegendForChart?: boolean;
|
|
51
52
|
backgroundColor?: DiagramColor;
|
|
52
|
-
|
|
53
|
+
shapes?: Array<DiagramShape>;
|
|
53
54
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Describes a model for
|
|
2
|
+
* diagram API
|
|
3
|
+
* Describes a model for a diagram.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0.0
|
|
6
6
|
* Contact: info@it4all.hu
|
|
@@ -11,8 +11,9 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { DiagramDescriptor } from './diagramDescriptor';
|
|
13
13
|
import { DiagramDataContainer } from './diagramDataContainer';
|
|
14
|
-
export interface
|
|
15
|
-
|
|
14
|
+
export interface DiagramModel {
|
|
15
|
+
viewUuid?: string;
|
|
16
|
+
identifier?: string;
|
|
16
17
|
descriptor?: DiagramDescriptor;
|
|
17
18
|
diagramData?: DiagramDataContainer;
|
|
18
19
|
}
|
package/{src/lib/smart-chart/smart-chart/smart-chart2 → lib/smart-diagram}/api/model/models.d.ts
RENAMED
|
@@ -2,9 +2,8 @@ export * from './diagramColor';
|
|
|
2
2
|
export * from './diagramDataContainer';
|
|
3
3
|
export * from './diagramDataItem';
|
|
4
4
|
export * from './diagramDataSet';
|
|
5
|
-
export * from './diagramDataSetConstructionInstruction';
|
|
6
5
|
export * from './diagramDescriptor';
|
|
6
|
+
export * from './diagramModel';
|
|
7
7
|
export * from './diagramShape';
|
|
8
|
-
export * from './diagramUiModel';
|
|
9
8
|
export * from './drawTime';
|
|
10
9
|
export * from './labelText';
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { DiagramDataContainer } from '../api';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare const CUSTOM_DIAGRAM_OPTIONS: InjectionToken<DiagramFactory>;
|
|
5
|
+
export interface DiagramFactory {
|
|
6
|
+
readonly chartType: string;
|
|
7
|
+
readonly chartJsType: string;
|
|
8
|
+
createOptions(chartData: DiagramDataContainer): any;
|
|
9
|
+
transformData(chartData: DiagramDataContainer): any;
|
|
10
|
+
}
|
|
11
|
+
export declare function transformDataToBasicDataSets(chartData: DiagramDataContainer): any;
|
|
12
|
+
export declare function transformDataToBarLikeDataSet(chartData: DiagramDataContainer): any;
|
|
13
|
+
export declare function transformDataToScatter(chartData: DiagramDataContainer): any;
|
|
14
|
+
export declare function transformDataToBubble(chartData: DiagramDataContainer): any;
|
|
15
|
+
export declare function createBasicOptions(): any;
|
|
16
|
+
export declare const barChart: DiagramFactory;
|
|
17
|
+
export declare const horizontalBarChart: DiagramFactory;
|
|
18
|
+
export declare const stackedBarChart: DiagramFactory;
|
|
19
|
+
export declare const pieChart: DiagramFactory;
|
|
20
|
+
export declare const doughnutChart: DiagramFactory;
|
|
21
|
+
export declare const polarAreaChart: DiagramFactory;
|
|
22
|
+
export declare const radarChart: DiagramFactory;
|
|
23
|
+
export declare const scatterChart: DiagramFactory;
|
|
24
|
+
export declare const bubbleChart: DiagramFactory;
|
|
25
|
+
export declare const multiAxisLineChart: DiagramFactory;
|
|
26
|
+
export declare class DefaultChartOptionsProvider {
|
|
27
|
+
private readonly factoriesByType;
|
|
28
|
+
constructor(factories: DiagramFactory[] | undefined);
|
|
29
|
+
getFactory(chartType: string): DiagramFactory;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultChartOptionsProvider, [{ optional: true; }]>;
|
|
31
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DefaultChartOptionsProvider>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { UIChart } from 'primeng/chart';
|
|
3
|
+
import { DiagramModel, DiagramServiceService } from '../api';
|
|
4
|
+
import { ComponentLibrary } from '../../view-context/utility/componentLibrary';
|
|
5
|
+
import { DefaultChartOptionsProvider } from './default-smart-diagram-options.provider';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class SmartDiagramComponent {
|
|
8
|
+
private diagramApi;
|
|
9
|
+
private diagramOptionProvider;
|
|
10
|
+
chart?: UIChart;
|
|
11
|
+
uuid: string;
|
|
12
|
+
identifier: string;
|
|
13
|
+
parent?: any;
|
|
14
|
+
diagramModel?: DiagramModel;
|
|
15
|
+
options?: any;
|
|
16
|
+
plugins: any[];
|
|
17
|
+
elementSelect: EventEmitter<any>;
|
|
18
|
+
canvasClick: EventEmitter<any>;
|
|
19
|
+
dataClick: EventEmitter<any>;
|
|
20
|
+
data: any;
|
|
21
|
+
type: any;
|
|
22
|
+
compLib: ComponentLibrary;
|
|
23
|
+
componentLibrary: typeof ComponentLibrary;
|
|
24
|
+
constructor(diagramApi: DiagramServiceService, diagramOptionProvider: DefaultChartOptionsProvider, compLib?: ComponentLibrary);
|
|
25
|
+
load(): Promise<void>;
|
|
26
|
+
ngAfterViewInit(): void;
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
private setUp;
|
|
29
|
+
private convertBackendOptions;
|
|
30
|
+
onDataSelect(event: any): void;
|
|
31
|
+
handleChartClick(event: any): void;
|
|
32
|
+
handleOnDataClicked(event: any): void;
|
|
33
|
+
getBase64Image(): any;
|
|
34
|
+
refresh(): void | undefined;
|
|
35
|
+
getChart(): any;
|
|
36
|
+
getVisiblePoints(): any;
|
|
37
|
+
applyChartClass(): void;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmartDiagramComponent, [null, null, { optional: true; }]>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartDiagramComponent, "smart-diagram", never, { "uuid": { "alias": "uuid"; "required": false; }; "identifier": { "alias": "identifier"; "required": false; }; "parent": { "alias": "parent"; "required": false; }; "diagramModel": { "alias": "diagramModel"; "required": false; }; "options": { "alias": "options"; "required": false; }; "plugins": { "alias": "plugins"; "required": false; }; }, { "elementSelect": "elementSelect"; "canvasClick": "canvasClick"; "dataClick": "dataClick"; }, never, never, false, never>;
|
|
40
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ModuleWithProviders, Provider } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./smart-diagram.component";
|
|
4
|
+
import * as i2 from "@angular/platform-browser";
|
|
5
|
+
import * as i3 from "primeng/chart";
|
|
6
|
+
export declare class SmartDiagramModule {
|
|
7
|
+
static forRoot(providers: Provider[]): ModuleWithProviders<SmartDiagramModule>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmartDiagramModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartDiagramModule, [typeof i1.SmartDiagramComponent], [typeof i2.BrowserModule, typeof i3.ChartModule], [typeof i1.SmartDiagramComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SmartDiagramModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function deepMerge(target: any, source: any): any;
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { UiActionDescriptor } from '../../../../view-context/api';
|
|
12
13
|
export interface GridExportDescriptor {
|
|
13
14
|
isExportable?: boolean;
|
|
14
15
|
exportMimeType?: string;
|
|
15
16
|
columnsToExport: Array<string>;
|
|
16
|
-
buttonColor?: string;
|
|
17
17
|
buttonToolbar?: string;
|
|
18
|
-
|
|
18
|
+
uiActionDescriptor?: UiActionDescriptor;
|
|
19
19
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { UiAction } from '../view-context/api';
|
|
2
2
|
import { GridRow } from './api/grid-api';
|
|
3
3
|
export declare class SmartGridToolbarActionsUtil {
|
|
4
|
+
static defaultActionToolbarId: string;
|
|
4
5
|
static showMenu(row: GridRow, orderedColumns: string[]): boolean;
|
|
5
6
|
static showToolbar(row: GridRow, columnName: string): boolean;
|
|
6
7
|
static calculateCellToActionMap(rows: GridRow[], serviceToUse: any, gridId: string): Record<string, any[]>;
|
|
@@ -36,6 +36,8 @@ export declare class SmartGridComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
36
36
|
componentRefTable?: ComponentRef<SmarttableComponent>;
|
|
37
37
|
smartTable: SmartTable<GridRow>;
|
|
38
38
|
toolbar?: UiActionToolbarComponent;
|
|
39
|
+
_headerToolbar?: UiActionToolbarComponent;
|
|
40
|
+
defaultActionToolbarId: string;
|
|
39
41
|
expandableSections?: ExpandableSection<any>[];
|
|
40
42
|
pageEvent?: PageEvent;
|
|
41
43
|
datasource?: null;
|
|
@@ -73,6 +75,7 @@ export declare class SmartGridComponent implements AfterViewInit, OnDestroy, OnC
|
|
|
73
75
|
refresh(): Promise<void>;
|
|
74
76
|
getStyle(row: any): string[];
|
|
75
77
|
setupToolbar(): void;
|
|
78
|
+
get headerToolbar(): UiActionToolbarComponent | undefined;
|
|
76
79
|
private render;
|
|
77
80
|
private clearTable;
|
|
78
81
|
private renderTable;
|
|
@@ -2,6 +2,7 @@ import { Table } from '../table';
|
|
|
2
2
|
import { ComponentFactoryService } from '../../../component-factory-service/projects';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class MaterialTableComponent extends Table {
|
|
5
|
+
defaultActionToolbarId: string;
|
|
5
6
|
constructor(cfService: ComponentFactoryService);
|
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialTableComponent, never>;
|
|
7
8
|
static ɵcmp: i0.ɵɵComponentDeclaration<MaterialTableComponent, "lib-material-table", never, {}, {}, never, never, false, never>;
|
|
@@ -16,6 +16,7 @@ export declare class Table implements OnInit, OnDestroy {
|
|
|
16
16
|
componentRef?: ComponentRef<any>;
|
|
17
17
|
defaultActionMenuComponents: QueryList<DefaultActionsPopupComponent>;
|
|
18
18
|
myTableChild: MatTable<any>;
|
|
19
|
+
headerToolbar: any;
|
|
19
20
|
smartTable: SmartTable<any>;
|
|
20
21
|
tableType: typeof SmartTableType;
|
|
21
22
|
smartTableButtonType: typeof SmartTableButtonType;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smartbit4all/ng-client",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.71",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/animations": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
|
|
6
6
|
"@angular/common": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
|
|
@@ -34,12 +34,6 @@
|
|
|
34
34
|
"esm2022": "./esm2022/smartbit4all-ng-client.mjs",
|
|
35
35
|
"esm": "./esm2022/smartbit4all-ng-client.mjs",
|
|
36
36
|
"default": "./fesm2022/smartbit4all-ng-client.mjs"
|
|
37
|
-
},
|
|
38
|
-
"./src/lib/smart-chart": {
|
|
39
|
-
"types": "./src/lib/smart-chart/index.d.ts",
|
|
40
|
-
"esm2022": "./esm2022/src/lib/smart-chart/smartbit4all-ng-client-src-lib-smart-chart.mjs",
|
|
41
|
-
"esm": "./esm2022/src/lib/smart-chart/smartbit4all-ng-client-src-lib-smart-chart.mjs",
|
|
42
|
-
"default": "./fesm2022/smartbit4all-ng-client-src-lib-smart-chart.mjs"
|
|
43
37
|
}
|
|
44
38
|
},
|
|
45
39
|
"sideEffects": false
|
package/projects.d.ts
CHANGED
|
Binary file
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hhcnREYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvc21hcnQtbmctY2xpZW50L3NyYy9saWIvc21hcnQtY2hhcnQvYXBpL21vZGVsL2NoYXJ0RGF0YS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXHJcbiAqIENoYXJ0IEFQSVxyXG4gKiBBUEkgZm9yIGNvbnN1bWUgY2hhcnRzLlxyXG4gKlxyXG4gKiBUaGUgdmVyc2lvbiBvZiB0aGUgT3BlbkFQSSBkb2N1bWVudDogMS4wLjBcclxuICogQ29udGFjdDogaW5mb0BpdDRhbGwuaHVcclxuICpcclxuICogTk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSBPcGVuQVBJIEdlbmVyYXRvciAoaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoKS5cclxuICogaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoXHJcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cclxuICovXHJcbmltcG9ydCB7IENoYXJ0VmFsdWUgfSBmcm9tICcuL2NoYXJ0VmFsdWUnO1xyXG5cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgQ2hhcnREYXRhIHsgXHJcbiAgICB1cmk/OiBzdHJpbmc7XHJcbiAgICBjaGFydFZhbHVlczogQXJyYXk8Q2hhcnRWYWx1ZT47XHJcbn1cclxuXHJcbiJdfQ==
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hhcnREZXNjcmlwdG9yLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvc21hcnQtbmctY2xpZW50L3NyYy9saWIvc21hcnQtY2hhcnQvYXBpL21vZGVsL2NoYXJ0RGVzY3JpcHRvci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXHJcbiAqIENoYXJ0IEFQSVxyXG4gKiBBUEkgZm9yIGNvbnN1bWUgY2hhcnRzLlxyXG4gKlxyXG4gKiBUaGUgdmVyc2lvbiBvZiB0aGUgT3BlbkFQSSBkb2N1bWVudDogMS4wLjBcclxuICogQ29udGFjdDogaW5mb0BpdDRhbGwuaHVcclxuICpcclxuICogTk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSBPcGVuQVBJIEdlbmVyYXRvciAoaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoKS5cclxuICogaHR0cHM6Ly9vcGVuYXBpLWdlbmVyYXRvci50ZWNoXHJcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cclxuICovXHJcbmltcG9ydCB7IFBpZUNoYXJ0TGVnZW5kUG9zaXRpb24gfSBmcm9tICcuL3BpZUNoYXJ0TGVnZW5kUG9zaXRpb24nO1xyXG5pbXBvcnQgeyBDaGFydFR5cGUgfSBmcm9tICcuL2NoYXJ0VHlwZSc7XHJcbmltcG9ydCB7IENoYXJ0T3JpZW50YXRpb24gfSBmcm9tICcuL2NoYXJ0T3JpZW50YXRpb24nO1xyXG5cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgQ2hhcnREZXNjcmlwdG9yIHsgXHJcbiAgICB1cmk/OiBzdHJpbmc7XHJcbiAgICB0eXBlOiBDaGFydFR5cGU7XHJcbiAgICB4QXhpc0xhYmVsPzogc3RyaW5nO1xyXG4gICAgeUF4aXNMYWJlbD86IHN0cmluZztcclxuICAgIHNob3dYQXhpc0xhYmVsPzogYm9vbGVhbjtcclxuICAgIHNob3dZQXhpc0xhYmVsPzogYm9vbGVhbjtcclxuICAgIHJvdW5kRWRnZXM/OiBib29sZWFuO1xyXG4gICAgc2hvd0dyaWRMaW5lcz86IGJvb2xlYW47XHJcbiAgICBzaG93RGF0YUxhYmVsPzogYm9vbGVhbjtcclxuICAgIG9yaWVudGF0aW9uPzogQ2hhcnRPcmllbnRhdGlvbjtcclxuICAgIHNob3dMZWdlbmQ/OiBib29sZWFuO1xyXG4gICAgbGVnZW5kUG9zaXRpb24/OiBQaWVDaGFydExlZ2VuZFBvc2l0aW9uO1xyXG4gICAgZXhwbG9kZUNpY2xlcz86IGJvb2xlYW47XHJcbiAgICBkb3VnaG51dD86IGJvb2xlYW47XHJcbiAgICBsZWdlbmRUaXRsZT86IHN0cmluZztcclxuICAgIC8qKlxyXG4gICAgICogQ3VzdG9tIGZpbHRlciBvYmplY3QgYXR0YWNoYWJsZSB3aXRoIHRoaXMgdXJpLlxyXG4gICAgICovXHJcbiAgICBmaWx0ZXJVcmk/OiBzdHJpbmc7XHJcbn1cclxuZXhwb3J0IG5hbWVzcGFjZSBDaGFydERlc2NyaXB0b3Ige1xyXG59XHJcblxyXG5cclxuIl19
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Chart API
|
|
3
|
-
* API for consume charts.
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0
|
|
6
|
-
* Contact: info@it4all.hu
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
export const ChartOrientation = {
|
|
13
|
-
Horizontal: 'Horizontal',
|
|
14
|
-
Vertical: 'Vertical'
|
|
15
|
-
};
|
|
16
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hhcnRPcmllbnRhdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3NtYXJ0LW5nLWNsaWVudC9zcmMvbGliL3NtYXJ0LWNoYXJ0L2FwaS9tb2RlbC9jaGFydE9yaWVudGF0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7Ozs7O0dBVUc7QUFLSCxNQUFNLENBQUMsTUFBTSxnQkFBZ0IsR0FBRztJQUM1QixVQUFVLEVBQUUsWUFBZ0M7SUFDNUMsUUFBUSxFQUFFLFVBQThCO0NBQzNDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcclxuICogQ2hhcnQgQVBJXHJcbiAqIEFQSSBmb3IgY29uc3VtZSBjaGFydHMuXHJcbiAqXHJcbiAqIFRoZSB2ZXJzaW9uIG9mIHRoZSBPcGVuQVBJIGRvY3VtZW50OiAxLjAuMFxyXG4gKiBDb250YWN0OiBpbmZvQGl0NGFsbC5odVxyXG4gKlxyXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yIChodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2gpLlxyXG4gKiBodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2hcclxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxyXG4gKi9cclxuXHJcblxyXG5leHBvcnQgdHlwZSBDaGFydE9yaWVudGF0aW9uID0gJ0hvcml6b250YWwnIHwgJ1ZlcnRpY2FsJztcclxuXHJcbmV4cG9ydCBjb25zdCBDaGFydE9yaWVudGF0aW9uID0ge1xyXG4gICAgSG9yaXpvbnRhbDogJ0hvcml6b250YWwnIGFzIENoYXJ0T3JpZW50YXRpb24sXHJcbiAgICBWZXJ0aWNhbDogJ1ZlcnRpY2FsJyBhcyBDaGFydE9yaWVudGF0aW9uXHJcbn07XHJcblxyXG4iXX0=
|