@smartbit4all/ng-client 4.2.138 → 4.2.140
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-component-layout/api/model/componentWidgetType.mjs +1 -1
- package/esm2022/lib/smart-component-layout/api/model/layoutDefinitionDescriptor.mjs +1 -1
- 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/api/model/smartComponentWidgetDefinition.mjs +1 -1
- package/esm2022/lib/smart-component-layout/api/model/toolbarProperties.mjs +13 -0
- package/esm2022/lib/smart-component-layout/smart-component-layout.component.mjs +7 -3
- package/esm2022/lib/smart-diagram/component/default-smart-diagram-options.provider.mjs +28 -1
- package/esm2022/lib/smart-diagram/component/smart-diagram.module.mjs +3 -2
- package/esm2022/lib/smart-filter-editor/smart-filter-editor-content/smart-filter-editor-content.component.mjs +1 -1
- package/esm2022/lib/smart-form/widgets/components/smart-file-editor/smart-file-editor.component.mjs +1 -1
- package/esm2022/lib/smart-form/widgets/smartformwidget/smartformwidget.component.mjs +2 -2
- package/esm2022/lib/smart-grid/smart-grid.component.mjs +1 -1
- package/esm2022/lib/smart-table/tables/material-table/material-table.component.mjs +2 -2
- package/esm2022/lib/smart-tree/smarttree.component.mjs +1 -1
- package/esm2022/lib/view-context/smart-ui-action/ui-action-toolbar.component.mjs +7 -2
- package/fesm2022/smartbit4all-ng-client.mjs +59 -10
- package/fesm2022/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-component-layout/api/model/models.d.ts +1 -0
- package/lib/smart-component-layout/api/model/smartComponentWidgetDefinition.d.ts +6 -0
- package/lib/smart-component-layout/api/model/toolbarProperties.d.ts +14 -0
- package/lib/smart-component-layout/smart-component-layout.component.d.ts +2 -1
- package/lib/smart-diagram/component/default-smart-diagram-options.provider.d.ts +1 -0
- package/lib/view-context/smart-ui-action/ui-action-toolbar.component.d.ts +3 -1
- package/package.json +1 -1
- package/smartbit4all-ng-client-4.2.140.tgz +0 -0
- package/smartbit4all-ng-client-4.2.138.tgz +0 -0
|
@@ -17,4 +17,10 @@ export interface SmartComponentWidgetDefinition {
|
|
|
17
17
|
identifier?: string;
|
|
18
18
|
filterExpressionFieldList?: FilterExpressionFieldList;
|
|
19
19
|
filterType?: SmartFilterType;
|
|
20
|
+
/**
|
|
21
|
+
* Additional properties the client may use to customise the appearance or behaviour of the widget.
|
|
22
|
+
*/
|
|
23
|
+
properties?: {
|
|
24
|
+
[key: string]: object;
|
|
25
|
+
};
|
|
20
26
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
export interface ToolbarProperties {
|
|
13
|
+
scrollable?: boolean;
|
|
14
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef, OnChanges, OnDestroy, QueryList, Renderer2, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { ComponentType, SmartComponentLayoutDefinition } from './api';
|
|
2
|
+
import { ComponentType, SmartComponentLayoutDefinition, ToolbarProperties } from './api';
|
|
3
3
|
import { SmartForm, SmartFormWidgetDirection, SmartformComponent, SmartformLayoutDefinitionService } from '../smart-form/projects';
|
|
4
4
|
import { SmartGrid, SmartGridComponent } from '../smart-grid/projects';
|
|
5
5
|
import { SmartFilter, SmartFilterComponent } from '../smart-filter/projects';
|
|
@@ -39,6 +39,7 @@ export declare class SmartComponentLayoutComponent implements AfterViewInit, OnD
|
|
|
39
39
|
toolbarList: QueryList<UiActionToolbarComponent>;
|
|
40
40
|
toolbar?: UiActionToolbarComponent;
|
|
41
41
|
toolbarId?: string;
|
|
42
|
+
toolbarPropertes?: ToolbarProperties;
|
|
42
43
|
treeService?: SmarttreeGenericService;
|
|
43
44
|
expandableSection?: ExpandableSection<SmartComponentLayoutDefinition>;
|
|
44
45
|
expandableComponents: QueryList<ExpandableSectionComponent>;
|
|
@@ -16,6 +16,7 @@ export declare function createBasicOptions(): any;
|
|
|
16
16
|
export declare const barChart: DiagramFactory;
|
|
17
17
|
export declare const horizontalBarChart: DiagramFactory;
|
|
18
18
|
export declare const stackedBarChart: DiagramFactory;
|
|
19
|
+
export declare const horizontalStackedBarChart: DiagramFactory;
|
|
19
20
|
export declare const pieChart: DiagramFactory;
|
|
20
21
|
export declare const doughnutChart: DiagramFactory;
|
|
21
22
|
export declare const polarAreaChart: DiagramFactory;
|
|
@@ -5,6 +5,7 @@ import { UiActionDescriptorService } from './ui-action.descriptor.service';
|
|
|
5
5
|
import { UiActionModel } from './ui-action.model';
|
|
6
6
|
import { UiActionService } from './ui-action.service';
|
|
7
7
|
import { ComponentLibrary } from '../utility/componentLibrary';
|
|
8
|
+
import { ToolbarProperties } from '../../smart-component-layout/api';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
export declare class UiActionToolbarComponent implements OnInit, OnChanges, OnDestroy {
|
|
10
11
|
private service;
|
|
@@ -19,6 +20,7 @@ export declare class UiActionToolbarComponent implements OnInit, OnChanges, OnDe
|
|
|
19
20
|
uiActionDescriptorService?: UiActionDescriptorService;
|
|
20
21
|
id?: string;
|
|
21
22
|
scrollOnWrap: boolean;
|
|
23
|
+
toolbarPropertes?: ToolbarProperties;
|
|
22
24
|
uiActionModelsWithDescriptions?: UiActionModel[];
|
|
23
25
|
private manager;
|
|
24
26
|
private languageChangedSubscription?;
|
|
@@ -54,5 +56,5 @@ export declare class UiActionToolbarComponent implements OnInit, OnChanges, OnDe
|
|
|
54
56
|
buttonLeft: UiActionDescriptor;
|
|
55
57
|
buttonRight: UiActionDescriptor;
|
|
56
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiActionToolbarComponent, never>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UiActionToolbarComponent, "smart-ui-action-toolbar", never, { "uiActionModels": { "alias": "uiActionModels"; "required": false; }; "uiActionDescriptorService": { "alias": "uiActionDescriptorService"; "required": false; }; "id": { "alias": "id"; "required": false; }; "scrollOnWrap": { "alias": "scrollOnWrap"; "required": false; }; }, {}, never, never, false, never>;
|
|
59
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UiActionToolbarComponent, "smart-ui-action-toolbar", never, { "uiActionModels": { "alias": "uiActionModels"; "required": false; }; "uiActionDescriptorService": { "alias": "uiActionDescriptorService"; "required": false; }; "id": { "alias": "id"; "required": false; }; "scrollOnWrap": { "alias": "scrollOnWrap"; "required": false; }; "toolbarPropertes": { "alias": "toolbarPropertes"; "required": false; }; }, {}, never, never, false, never>;
|
|
58
60
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|