@smartbit4all/ng-client 3.3.128 → 3.3.130
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/esm2020/lib/smart-client/smart-component-api-client.mjs +1 -3
- package/esm2020/lib/smart-component-layout/api/model/smartComponentLayoutDefinition.mjs +1 -1
- package/esm2020/lib/smart-component-layout/api/model/smartComponentWidgetDefinition.mjs +1 -1
- package/esm2020/lib/smart-component-layout/smart-component-layout-utility.mjs +1 -23
- package/esm2020/lib/smart-component-layout/smart-component-layout.component.mjs +30 -23
- package/fesm2015/smartbit4all-ng-client.mjs +110 -127
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +101 -117
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-component-layout/api/model/smartComponentLayoutDefinition.d.ts +1 -5
- package/lib/smart-component-layout/smart-component-layout-utility.d.ts +0 -3
- package/lib/smart-component-layout/smart-component-layout.component.d.ts +4 -2
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.130.tgz +0 -0
- package/smartbit4all-ng-client-3.3.128.tgz +0 -0
|
@@ -9,19 +9,15 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { SmartWidgetDefinition } from '../../../smart-form/api/model/smartWidgetDefinition';
|
|
13
12
|
import { ComponentType } from './componentType';
|
|
14
13
|
import { LayoutDirection } from './layoutDirection';
|
|
15
14
|
import { SmartComponentWidgetDefinition } from './smartComponentWidgetDefinition';
|
|
15
|
+
import { SmartWidgetDefinition } from '../../../smart-form/api/model/smartWidgetDefinition';
|
|
16
16
|
export interface SmartComponentLayoutDefinition {
|
|
17
17
|
type: ComponentType;
|
|
18
18
|
expandable?: boolean;
|
|
19
19
|
expandableSectionLabel?: string;
|
|
20
20
|
direction?: LayoutDirection;
|
|
21
|
-
/**
|
|
22
|
-
* This is a placeholder for SmartComponentApiClient. You might want to describe this further.
|
|
23
|
-
*/
|
|
24
|
-
parentComponent?: object;
|
|
25
21
|
components?: Array<SmartComponentLayoutDefinition>;
|
|
26
22
|
widget?: SmartComponentWidgetDefinition;
|
|
27
23
|
form?: Array<SmartWidgetDefinition>;
|
|
@@ -2,11 +2,8 @@ import { SmartformComponent } from '../smart-form/projects';
|
|
|
2
2
|
import { SmartGridComponent } from '../smart-grid/projects';
|
|
3
3
|
import { SmarttreeGenericService } from '../smart-tree/projects';
|
|
4
4
|
import { UiActionToolbarComponent } from '../view-context/projects';
|
|
5
|
-
import { SmartComponentLayoutDefinition } from './api';
|
|
6
5
|
import { SmartComponentLayoutComponent } from './smart-component-layout.component';
|
|
7
6
|
export declare class SmartComponentLayoutUtility {
|
|
8
|
-
static setParent(layout: SmartComponentLayoutDefinition, parent: any): void;
|
|
9
|
-
static equals(layout1?: SmartComponentLayoutDefinition, layout2?: SmartComponentLayoutDefinition): boolean;
|
|
10
7
|
static getForms(comp: SmartComponentLayoutComponent): SmartformComponent[];
|
|
11
8
|
static getGrids(comp: SmartComponentLayoutComponent): SmartGridComponent[];
|
|
12
9
|
static getTrees(comp: SmartComponentLayoutComponent): SmarttreeGenericService[];
|
|
@@ -12,6 +12,9 @@ export declare class SmartComponentLayoutComponent implements AfterViewInit, OnD
|
|
|
12
12
|
private layoutService;
|
|
13
13
|
protected _destroy$: Subject<void>;
|
|
14
14
|
smartComponentLayout?: SmartComponentLayoutDefinition;
|
|
15
|
+
parentLayoutComponent?: SmartComponentLayoutComponent;
|
|
16
|
+
parentSmartComponent: any;
|
|
17
|
+
currentLayout?: SmartComponentLayoutDefinition;
|
|
15
18
|
uuid?: string;
|
|
16
19
|
smartFormList: QueryList<SmartformComponent>;
|
|
17
20
|
smartFormComponent?: SmartformComponent;
|
|
@@ -25,7 +28,6 @@ export declare class SmartComponentLayoutComponent implements AfterViewInit, OnD
|
|
|
25
28
|
toolbarList: QueryList<UiActionToolbarComponent>;
|
|
26
29
|
toolbar?: UiActionToolbarComponent;
|
|
27
30
|
toolbarId?: string;
|
|
28
|
-
parent?: any;
|
|
29
31
|
treeService?: SmarttreeGenericService;
|
|
30
32
|
expandableSection?: ExpandableSection<SmartComponentLayoutDefinition>;
|
|
31
33
|
expandableComponents: QueryList<ExpandableSectionComponent>;
|
|
@@ -50,5 +52,5 @@ export declare class SmartComponentLayoutComponent implements AfterViewInit, OnD
|
|
|
50
52
|
constructTree(): void;
|
|
51
53
|
constructToolbar(): void;
|
|
52
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartComponentLayoutComponent, never>;
|
|
53
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartComponentLayoutComponent, "smart-component-layout", never, { "smartComponentLayout": "smartComponentLayout"; }, {}, never, never>;
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartComponentLayoutComponent, "smart-component-layout", never, { "smartComponentLayout": "smartComponentLayout"; "parentLayoutComponent": "parentLayoutComponent"; "parentSmartComponent": "parentSmartComponent"; }, {}, never, never>;
|
|
54
56
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|