@hestia-earth/ui-components 0.31.31 → 0.31.33
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/sidenav.store.d.ts +12 -86
- package/common/navigation-menu/navigation-menu.component.d.ts +1 -0
- package/common/search-extend/search-extend.component.d.ts +2 -2
- package/cycles/cycles-nodes/cycles-nodes.component.d.ts +1 -0
- package/engine/engine-models-version-link/engine-models-version-link.component.d.ts +1 -1
- package/fesm2022/hestia-earth-ui-components.mjs +56 -46
- 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/svg-icons/icons.json +1 -1
|
@@ -34,98 +34,24 @@ export declare const sidenavStore: import("@angular/core").Type<{
|
|
|
34
34
|
hasMenuWidthChanged: import("@angular/core").Signal<boolean>;
|
|
35
35
|
isResizing: import("@angular/core").Signal<boolean>;
|
|
36
36
|
contentContainerTransform: import("@angular/core").Signal<number>;
|
|
37
|
-
setExpanded:
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
setSide: ((input: drawerPosition | import("rxjs").Observable<drawerPosition> | import("@angular/core").Signal<drawerPosition>, config?: {
|
|
45
|
-
injector?: import("@angular/core").Injector;
|
|
46
|
-
}) => {
|
|
47
|
-
destroy: () => void;
|
|
48
|
-
}) & {
|
|
49
|
-
destroy: () => void;
|
|
50
|
-
};
|
|
51
|
-
setMinMenuDistance: ((input: number | import("rxjs").Observable<number> | import("@angular/core").Signal<number>, config?: {
|
|
52
|
-
injector?: import("@angular/core").Injector;
|
|
53
|
-
}) => {
|
|
54
|
-
destroy: () => void;
|
|
55
|
-
}) & {
|
|
56
|
-
destroy: () => void;
|
|
57
|
-
};
|
|
58
|
-
setMinWidth: ((input: number | import("rxjs").Observable<number> | import("@angular/core").Signal<number>, config?: {
|
|
59
|
-
injector?: import("@angular/core").Injector;
|
|
60
|
-
}) => {
|
|
61
|
-
destroy: () => void;
|
|
62
|
-
}) & {
|
|
63
|
-
destroy: () => void;
|
|
64
|
-
};
|
|
65
|
-
setMaxWidth: ((input: number | import("rxjs").Observable<number> | import("@angular/core").Signal<number>, config?: {
|
|
66
|
-
injector?: import("@angular/core").Injector;
|
|
67
|
-
}) => {
|
|
68
|
-
destroy: () => void;
|
|
69
|
-
}) & {
|
|
70
|
-
destroy: () => void;
|
|
71
|
-
};
|
|
72
|
-
setWidth: ((input: number | import("rxjs").Observable<number> | import("@angular/core").Signal<number>, config?: {
|
|
73
|
-
injector?: import("@angular/core").Injector;
|
|
74
|
-
}) => {
|
|
75
|
-
destroy: () => void;
|
|
76
|
-
}) & {
|
|
77
|
-
destroy: () => void;
|
|
78
|
-
};
|
|
79
|
-
setSidenavWidthCss: ((input: {
|
|
37
|
+
setExpanded: import("@ngrx/signals/rxjs-interop").RxMethod<boolean>;
|
|
38
|
+
setSide: import("@ngrx/signals/rxjs-interop").RxMethod<drawerPosition>;
|
|
39
|
+
setMinMenuDistance: import("@ngrx/signals/rxjs-interop").RxMethod<number>;
|
|
40
|
+
setMinWidth: import("@ngrx/signals/rxjs-interop").RxMethod<number>;
|
|
41
|
+
setMaxWidth: import("@ngrx/signals/rxjs-interop").RxMethod<number>;
|
|
42
|
+
setWidth: import("@ngrx/signals/rxjs-interop").RxMethod<number>;
|
|
43
|
+
setSidenavWidthCss: import("@ngrx/signals/rxjs-interop").RxMethod<{
|
|
80
44
|
position: drawerPosition;
|
|
81
45
|
width: number;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
width: number;
|
|
85
|
-
}> | import("@angular/core").Signal<{
|
|
86
|
-
position: drawerPosition;
|
|
87
|
-
width: number;
|
|
88
|
-
}>, config?: {
|
|
89
|
-
injector?: import("@angular/core").Injector;
|
|
90
|
-
}) => {
|
|
91
|
-
destroy: () => void;
|
|
92
|
-
}) & {
|
|
93
|
-
destroy: () => void;
|
|
94
|
-
};
|
|
95
|
-
setContentTransformCss: ((input: {
|
|
96
|
-
expanded: boolean;
|
|
97
|
-
position: drawerPosition;
|
|
98
|
-
value: number;
|
|
99
|
-
} | import("rxjs").Observable<{
|
|
100
|
-
expanded: boolean;
|
|
101
|
-
position: drawerPosition;
|
|
102
|
-
value: number;
|
|
103
|
-
}> | import("@angular/core").Signal<{
|
|
46
|
+
}>;
|
|
47
|
+
setContentTransformCss: import("@ngrx/signals/rxjs-interop").RxMethod<{
|
|
104
48
|
expanded: boolean;
|
|
105
49
|
position: drawerPosition;
|
|
106
50
|
value: number;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
}) => {
|
|
110
|
-
destroy: () => void;
|
|
111
|
-
}) & {
|
|
112
|
-
destroy: () => void;
|
|
113
|
-
};
|
|
114
|
-
setContentContainerSpacing: ((input: number | import("rxjs").Observable<number> | import("@angular/core").Signal<number>, config?: {
|
|
115
|
-
injector?: import("@angular/core").Injector;
|
|
116
|
-
}) => {
|
|
117
|
-
destroy: () => void;
|
|
118
|
-
}) & {
|
|
119
|
-
destroy: () => void;
|
|
120
|
-
};
|
|
51
|
+
}>;
|
|
52
|
+
setContentContainerSpacing: import("@ngrx/signals/rxjs-interop").RxMethod<number>;
|
|
121
53
|
startResizing: (event: MouseEvent) => void;
|
|
122
|
-
updateResizing:
|
|
123
|
-
injector?: import("@angular/core").Injector;
|
|
124
|
-
}) => {
|
|
125
|
-
destroy: () => void;
|
|
126
|
-
}) & {
|
|
127
|
-
destroy: () => void;
|
|
128
|
-
};
|
|
54
|
+
updateResizing: import("@ngrx/signals/rxjs-interop").RxMethod<MouseEvent>;
|
|
129
55
|
stopResizing: () => void;
|
|
130
56
|
} & import("@ngrx/signals").StateSource<{
|
|
131
57
|
minWidth: number;
|
|
@@ -54,6 +54,7 @@ export declare class NavigationMenuComponent {
|
|
|
54
54
|
protected trackByLink({ title, url, queryParams, fragment }: INavigationMenuLink): string;
|
|
55
55
|
protected readonly primaryLinkExpandable: (link: INavigationMenuLink) => boolean;
|
|
56
56
|
protected readonly withPrimaryIcons: import("@angular/core").Signal<boolean>;
|
|
57
|
+
protected toggleLink(link: INavigationMenuLink): boolean;
|
|
57
58
|
private collapseOtherLinks;
|
|
58
59
|
protected primaryLinkActiveChange(item: INavigationMenuLink): void;
|
|
59
60
|
protected toggleSecondaryLink(item: INavigationMenuLink, index: number): void;
|
|
@@ -7,12 +7,12 @@ export declare class SearchExtendComponent {
|
|
|
7
7
|
protected readonly disabled: import("@angular/core").InputSignal<boolean>;
|
|
8
8
|
protected readonly placeholder: import("@angular/core").InputSignal<string>;
|
|
9
9
|
protected readonly class: import("@angular/core").InputSignal<string>;
|
|
10
|
-
protected readonly
|
|
10
|
+
protected readonly searchText: import("@angular/core").OutputEmitterRef<any>;
|
|
11
11
|
protected readonly extended: import("@angular/core").WritableSignal<boolean>;
|
|
12
12
|
private extend;
|
|
13
13
|
private applySearch;
|
|
14
14
|
protected clear(): void;
|
|
15
15
|
protected submit(): void;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchExtendComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchExtendComponent, "he-search-extend", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchExtendComponent, "he-search-extend", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "searchText": "searchText"; }, never, never, true, never>;
|
|
18
18
|
}
|
|
@@ -126,6 +126,7 @@ export declare class CyclesNodesComponent {
|
|
|
126
126
|
methodClassification?: import("@hestia-earth/schema").AnimalMethodClassification;
|
|
127
127
|
methodClassificationDescription?: string;
|
|
128
128
|
source?: import("@hestia-earth/schema").Source;
|
|
129
|
+
otherSources?: import("@hestia-earth/schema").Source[];
|
|
129
130
|
properties?: import("@hestia-earth/schema").Property[];
|
|
130
131
|
inputs?: HestiaInput[];
|
|
131
132
|
practices?: Practice[];
|
|
@@ -3,7 +3,7 @@ export declare class EngineModelsVersionLinkComponent {
|
|
|
3
3
|
protected readonly faExternalLinkAlt: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
4
4
|
protected readonly node: import("@angular/core").InputSignal<any>;
|
|
5
5
|
protected readonly showDetails: import("@angular/core").InputSignal<boolean>;
|
|
6
|
-
protected readonly ENGINE_VERSION = "0.68.
|
|
6
|
+
protected readonly ENGINE_VERSION = "0.68.1";
|
|
7
7
|
protected readonly version: import("@angular/core").Signal<string>;
|
|
8
8
|
protected readonly url: import("@angular/core").Signal<string>;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<EngineModelsVersionLinkComponent, never>;
|