@hestia-earth/ui-components 0.32.29 → 0.32.31
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/common/drawer-container/drawer-container.component.d.ts +4 -1
- package/cycles/cycles-nodes/cycles-nodes.component.d.ts +4 -4
- package/fesm2022/hestia-earth-ui-components.mjs +166 -14
- package/fesm2022/hestia-earth-ui-components.mjs.map +1 -1
- package/node/node-logs-models/node-logs-models.component.d.ts +1 -1
- package/package.json +1 -1
- package/select/filter-accordion.component.d.ts +52 -0
- package/select/index.d.ts +1 -0
|
@@ -25,11 +25,14 @@ export declare class DrawerContainerComponent {
|
|
|
25
25
|
protected readonly width: import("@angular/core").ModelSignal<number>;
|
|
26
26
|
protected readonly max: import("@angular/core").InputSignal<number>;
|
|
27
27
|
protected readonly resizable: import("@angular/core").InputSignal<boolean>;
|
|
28
|
+
protected readonly contentStyles: import("@angular/core").InputSignal<string>;
|
|
28
29
|
protected readonly contentPaddingStyles: import("@angular/core").InputSignal<string>;
|
|
29
30
|
protected readonly menuOverlap: import("@angular/core").InputSignal<boolean>;
|
|
30
31
|
protected readonly links: import("@angular/core").InputSignal<INavigationMenuLink[]>;
|
|
31
32
|
protected readonly drawerHeaderTemplate: import("@angular/core").InputSignal<TemplateRef<any>>;
|
|
32
33
|
protected readonly drawerMenuHeaderTemplate: import("@angular/core").InputSignal<TemplateRef<any>>;
|
|
34
|
+
protected readonly drawerContentTemplate: import("@angular/core").InputSignal<TemplateRef<any>>;
|
|
35
|
+
protected readonly compactMenuLabel: import("@angular/core").InputSignal<string>;
|
|
33
36
|
protected readonly compactHeaderClass: import("@angular/core").InputSignal<string | string[] | Set<string> | {
|
|
34
37
|
[klass: string]: any;
|
|
35
38
|
}>;
|
|
@@ -67,5 +70,5 @@ export declare class DrawerContainerComponent {
|
|
|
67
70
|
protected animationDone(event: AnimationEvent): void;
|
|
68
71
|
private _getContentLeftSideSpace;
|
|
69
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrawerContainerComponent, never>;
|
|
70
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DrawerContainerComponent, "he-drawer-container", never, { "compactBreakpoint": { "alias": "compactBreakpoint"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "resizable": { "alias": "resizable"; "required": false; "isSignal": true; }; "contentPaddingStyles": { "alias": "contentPaddingStyles"; "required": false; "isSignal": true; }; "menuOverlap": { "alias": "menuOverlap"; "required": false; "isSignal": true; }; "links": { "alias": "links"; "required": false; "isSignal": true; }; "drawerHeaderTemplate": { "alias": "drawerHeaderTemplate"; "required": false; "isSignal": true; }; "drawerMenuHeaderTemplate": { "alias": "drawerMenuHeaderTemplate"; "required": false; "isSignal": true; }; "compactHeaderClass": { "alias": "compactHeaderClass"; "required": false; "isSignal": true; }; "minMenuDistance": { "alias": "minMenuDistance"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, { "width": "widthChange"; "opened": "opened"; "closed": "closed"; }, never, ["[drawer-content]"], true, never>;
|
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrawerContainerComponent, "he-drawer-container", never, { "compactBreakpoint": { "alias": "compactBreakpoint"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "resizable": { "alias": "resizable"; "required": false; "isSignal": true; }; "contentStyles": { "alias": "contentStyles"; "required": false; "isSignal": true; }; "contentPaddingStyles": { "alias": "contentPaddingStyles"; "required": false; "isSignal": true; }; "menuOverlap": { "alias": "menuOverlap"; "required": false; "isSignal": true; }; "links": { "alias": "links"; "required": false; "isSignal": true; }; "drawerHeaderTemplate": { "alias": "drawerHeaderTemplate"; "required": false; "isSignal": true; }; "drawerMenuHeaderTemplate": { "alias": "drawerMenuHeaderTemplate"; "required": false; "isSignal": true; }; "drawerContentTemplate": { "alias": "drawerContentTemplate"; "required": false; "isSignal": true; }; "compactMenuLabel": { "alias": "compactMenuLabel"; "required": false; "isSignal": true; }; "compactHeaderClass": { "alias": "compactHeaderClass"; "required": false; "isSignal": true; }; "minMenuDistance": { "alias": "minMenuDistance"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, { "width": "widthChange"; "opened": "opened"; "closed": "closed"; }, never, ["[drawer-content]"], true, never>;
|
|
71
74
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DataState } from '@hestia-earth/api';
|
|
2
|
-
import { ICycleJSONLD, Input as HestiaInput, Product, NodeType, Animal, Emission, Practice, TermTermType, EmissionMethodTier,
|
|
2
|
+
import { ICycleJSONLD, Input as HestiaInput, Product, NodeType, Animal, Emission, Practice, TermTermType, EmissionMethodTier, Transformation, BlankNodesKey, blankNodesType } from '@hestia-earth/schema';
|
|
3
3
|
import { IGroupedKeys } from '../../common/node-utils';
|
|
4
4
|
import { svgIconNames } from '../../svg-icons/icons';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -113,7 +113,7 @@ export declare class CyclesNodesComponent {
|
|
|
113
113
|
type: NodeType;
|
|
114
114
|
dataState: DataState;
|
|
115
115
|
animalId?: string;
|
|
116
|
-
term?: Term;
|
|
116
|
+
term?: import("@hestia-earth/schema").Term;
|
|
117
117
|
description?: string;
|
|
118
118
|
referencePeriod?: import("@hestia-earth/schema").AnimalReferencePeriod;
|
|
119
119
|
value?: number;
|
|
@@ -145,7 +145,7 @@ export declare class CyclesNodesComponent {
|
|
|
145
145
|
type: NodeType;
|
|
146
146
|
dataState: DataState;
|
|
147
147
|
transformationId?: string;
|
|
148
|
-
term?: Term;
|
|
148
|
+
term?: import("@hestia-earth/schema").Term;
|
|
149
149
|
description?: string;
|
|
150
150
|
startDate?: string;
|
|
151
151
|
endDate?: string;
|
|
@@ -193,7 +193,7 @@ export declare class CyclesNodesComponent {
|
|
|
193
193
|
value: any;
|
|
194
194
|
};
|
|
195
195
|
}): void;
|
|
196
|
-
protected cycleNode(cycle: ICycleJSONLD | groupedNode): Term | ICycleJSONLD | groupedNode;
|
|
196
|
+
protected cycleNode(cycle: ICycleJSONLD | groupedNode): import("@hestia-earth/schema").Term | ICycleJSONLD | groupedNode;
|
|
197
197
|
protected showDownload(): void;
|
|
198
198
|
static ɵfac: i0.ɵɵFactoryDeclaration<CyclesNodesComponent, never>;
|
|
199
199
|
static ɵcmp: i0.ɵɵComponentDeclaration<CyclesNodesComponent, "he-cycles-nodes", never, { "dataState": { "alias": "dataState"; "required": false; "isSignal": true; }; "nodeKeys": { "alias": "nodeKeys"; "required": true; "isSignal": true; }; "nodeKeyGroup": { "alias": "nodeKeyGroup"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|