@smartbit4all/ng-client 7.0.1 → 7.0.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smartbit4all/ng-client",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.2",
|
|
4
4
|
"description": "Angular client library for the smartbit4all platform — a server-driven UI framework that renders views, pages, forms, grids, trees and dialogs from backend (ViewApi/PageApi) definitions. Provides reactive view-context state management, dynamic component layouts and OpenAPI-generated BFF clients.",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"peerDependencies": {
|
|
Binary file
|
|
@@ -10061,6 +10061,11 @@ interface SearchPageModel {
|
|
|
10061
10061
|
* If there is no result for the search, then show this text instead of the empty table.
|
|
10062
10062
|
*/
|
|
10063
10063
|
noResultText?: string;
|
|
10064
|
+
showTitle?: boolean;
|
|
10065
|
+
showToolbar?: boolean;
|
|
10066
|
+
showFilter?: boolean;
|
|
10067
|
+
showLayout?: boolean;
|
|
10068
|
+
showGrid?: boolean;
|
|
10064
10069
|
}
|
|
10065
10070
|
|
|
10066
10071
|
/**
|
|
@@ -10172,6 +10177,12 @@ declare class SearchPageComponent extends SmartComponent<SearchPageModel> implem
|
|
|
10172
10177
|
get layout(): SmartComponentLayoutDefinition | undefined;
|
|
10173
10178
|
set layout(layout: SmartComponentLayoutDefinition | undefined);
|
|
10174
10179
|
grid?: SmartGridComponent;
|
|
10180
|
+
/**
|
|
10181
|
+
* The page's own layout, handed to the grid so that the row layouts of a card grid never
|
|
10182
|
+
* look like the root of an embedded-view tree (#28870). A signal query: the template binds
|
|
10183
|
+
* it, and the layout is only rendered once the model arrives.
|
|
10184
|
+
*/
|
|
10185
|
+
readonly layoutComponent: i0.Signal<SmartComponentLayoutComponent | undefined>;
|
|
10175
10186
|
filter?: SmartFilter;
|
|
10176
10187
|
constructor(inject: Injector, filterService: SmartFilterEditorService, _myPageName?: string, _myComponentName?: string, element?: ElementRef, renderer?: Renderer2);
|
|
10177
10188
|
protected onUuidResolved(uuid: string): void;
|
|
Binary file
|