@ecodev/natural 68.1.2 → 69.0.1
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
|
@@ -1482,10 +1482,6 @@ declare class NaturalAbstractList<TService extends NaturalAbstractModelService<a
|
|
|
1482
1482
|
* Search is visible in most cases, but hidden on a panel
|
|
1483
1483
|
*/
|
|
1484
1484
|
showSearch(): boolean;
|
|
1485
|
-
/**
|
|
1486
|
-
* Table should be shown only when there is data
|
|
1487
|
-
*/
|
|
1488
|
-
showTable(): boolean;
|
|
1489
1485
|
/**
|
|
1490
1486
|
* No results is shown when there is no items, but only in non-panel context only.
|
|
1491
1487
|
* In panels we want discrete mode, there is no search and no "no-results"
|
|
@@ -2364,7 +2360,7 @@ declare class NaturalDetailHeaderComponent {
|
|
|
2364
2360
|
* Typically should be similar to 'New product'.
|
|
2365
2361
|
*/
|
|
2366
2362
|
readonly newLabel: i0.InputSignal<string>;
|
|
2367
|
-
model: Literal
|
|
2363
|
+
readonly model: i0.InputSignal<Literal>;
|
|
2368
2364
|
readonly breadcrumbs: i0.InputSignal<NameOrFullName[]>;
|
|
2369
2365
|
readonly listRoute: i0.InputSignal<any[]>;
|
|
2370
2366
|
readonly listFragment: i0.InputSignal<string | undefined>;
|
|
@@ -2372,7 +2368,7 @@ declare class NaturalDetailHeaderComponent {
|
|
|
2372
2368
|
getRootLink(): string[];
|
|
2373
2369
|
getLink(id: string): any[];
|
|
2374
2370
|
static ɵfac: i0.ɵɵFactoryDeclaration<NaturalDetailHeaderComponent, never>;
|
|
2375
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NaturalDetailHeaderComponent, "natural-detail-header", never, { "currentBaseUrl": { "alias": "currentBaseUrl"; "required": false; "isSignal": true; }; "isPanel": { "alias": "isPanel"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "rootLabel": { "alias": "rootLabel"; "required": false; }; "newLabel": { "alias": "newLabel"; "required": false; "isSignal": true; }; "model": { "alias": "model"; "required": true; }; "breadcrumbs": { "alias": "breadcrumbs"; "required": false; "isSignal": true; }; "listRoute": { "alias": "listRoute"; "required": false; "isSignal": true; }; "listFragment": { "alias": "listFragment"; "required": false; "isSignal": true; }; "link": { "alias": "link"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
2371
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NaturalDetailHeaderComponent, "natural-detail-header", never, { "currentBaseUrl": { "alias": "currentBaseUrl"; "required": false; "isSignal": true; }; "isPanel": { "alias": "isPanel"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "rootLabel": { "alias": "rootLabel"; "required": false; }; "newLabel": { "alias": "newLabel"; "required": false; "isSignal": true; }; "model": { "alias": "model"; "required": true; "isSignal": true; }; "breadcrumbs": { "alias": "breadcrumbs"; "required": false; "isSignal": true; }; "listRoute": { "alias": "listRoute"; "required": false; "isSignal": true; }; "listFragment": { "alias": "listFragment"; "required": false; "isSignal": true; }; "link": { "alias": "link"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
2376
2372
|
}
|
|
2377
2373
|
|
|
2378
2374
|
type PossibleNullableOperatorKeys = 'any' | 'none';
|