@hestia-earth/ui-components 0.41.2 → 0.41.4
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
|
@@ -1054,10 +1054,8 @@ declare const typeaheadFocus: (e: Event) => void;
|
|
|
1054
1054
|
declare enum Repository {
|
|
1055
1055
|
glossary = "hestia-glossary",
|
|
1056
1056
|
models = "hestia-engine-models",
|
|
1057
|
-
orchestrator = "hestia-engine-orchestrator",
|
|
1058
1057
|
aggregation = "hestia-aggregation-engine",
|
|
1059
1058
|
community = "hestia-community-edition",
|
|
1060
|
-
poorenemeck = "hestia-convert-poore-nemecek",
|
|
1061
1059
|
frontend = "hestia-front-end",
|
|
1062
1060
|
schema = "hestia-schema"
|
|
1063
1061
|
}
|
|
@@ -1572,7 +1570,7 @@ declare class PopoverComponent {
|
|
|
1572
1570
|
protected readonly message: _angular_core.InputSignal<string>;
|
|
1573
1571
|
protected readonly content: _angular_core.InputSignal<TemplateRef<ContentContext>>;
|
|
1574
1572
|
protected readonly data: _angular_core.InputSignal<any>;
|
|
1575
|
-
protected readonly position: _angular_core.InputSignal<"top" | "left" | "
|
|
1573
|
+
protected readonly position: _angular_core.InputSignal<"top" | "left" | "right" | "bottom">;
|
|
1576
1574
|
protected onClick($event: any): void;
|
|
1577
1575
|
readonly active: _angular_core.WritableSignal<boolean>;
|
|
1578
1576
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PopoverComponent, never>;
|
|
@@ -2084,10 +2082,10 @@ declare class CyclesMetadataComponent {
|
|
|
2084
2082
|
private readonly ogirinalSelectedCycle;
|
|
2085
2083
|
protected readonly selectedCycle: _angular_core.Signal<ICycleJSONLD>;
|
|
2086
2084
|
protected readonly selectedOriginalValues: _angular_core.Signal<{
|
|
2087
|
-
[k: string]: string | number | boolean | string[] | _hestia_earth_schema.ISiteJSONLD | number[] |
|
|
2085
|
+
[k: string]: string | number | boolean | string[] | _hestia_earth_schema.ISiteJSONLD | number[] | Date | _hestia_earth_schema.Product[] | _hestia_earth_schema.Input[] | _hestia_earth_schema.Animal[] | _hestia_earth_schema.Emission[] | _hestia_earth_schema.Practice[] | _hestia_earth_schema.Transformation[] | _hestia_earth_schema.ISourceJSONLD | _hestia_earth_schema.ISourceJSONLD[] | (string | _hestia_earth_schema.IContext)[] | _hestia_earth_schema.Completeness | ICycleJSONLD[] | _hestia_earth_schema.ISiteJSONLD[] | null[][];
|
|
2088
2086
|
}>;
|
|
2089
2087
|
protected readonly selectedRecalculatedValues: _angular_core.Signal<{
|
|
2090
|
-
[k: string]: string | number | boolean | string[] | _hestia_earth_schema.ISiteJSONLD | number[] |
|
|
2088
|
+
[k: string]: string | number | boolean | string[] | _hestia_earth_schema.ISiteJSONLD | number[] | Date | _hestia_earth_schema.Product[] | _hestia_earth_schema.Input[] | _hestia_earth_schema.Animal[] | _hestia_earth_schema.Emission[] | _hestia_earth_schema.Practice[] | _hestia_earth_schema.Transformation[] | _hestia_earth_schema.ISourceJSONLD | _hestia_earth_schema.ISourceJSONLD[] | (string | _hestia_earth_schema.IContext)[] | _hestia_earth_schema.Completeness | ICycleJSONLD[] | _hestia_earth_schema.ISiteJSONLD[] | null[][];
|
|
2091
2089
|
}>;
|
|
2092
2090
|
protected readonly keys: _angular_core.Signal<(keyof ICycleJSONLD)[]>;
|
|
2093
2091
|
protected selectIndex({ target: { value } }: {
|
|
@@ -2583,8 +2581,6 @@ declare class EngineOrchestratorEditComponent {
|
|
|
2583
2581
|
protected readonly modelKeyName: (modelKey: string) => string;
|
|
2584
2582
|
protected readonly modelKeyUrl: ({ modelKey }: IModel, model: string) => string;
|
|
2585
2583
|
protected readonly isArray: (arg: any) => arg is any[];
|
|
2586
|
-
protected readonly generalDocsUrl: string;
|
|
2587
|
-
protected readonly strategiesDocs: string;
|
|
2588
2584
|
protected readonly search: _angular_core.WritableSignal<string>;
|
|
2589
2585
|
protected readonly onlyGapFilled: _angular_core.WritableSignal<boolean>;
|
|
2590
2586
|
protected readonly showAdvanced: _angular_core.WritableSignal<boolean>;
|
|
@@ -3601,8 +3597,8 @@ declare const suggestQuery: <T extends NodeType = searchableType>(query: string,
|
|
|
3601
3597
|
declare class HeSearchService {
|
|
3602
3598
|
protected readonly http: HttpClient;
|
|
3603
3599
|
protected readonly commonService: HeCommonService;
|
|
3604
|
-
search$<C extends JSONLD<T>, T extends NodeType = searchableType>(params: ISearchParams): rxjs.Observable<ISearchResults<C, T>>;
|
|
3605
|
-
count$(params?: {}): rxjs.Observable<number>;
|
|
3600
|
+
search$<C extends JSONLD<T>, T extends NodeType = searchableType>(params: ISearchParams, dataVersion?: string): rxjs.Observable<ISearchResults<C, T>>;
|
|
3601
|
+
count$(params?: {}, dataVersion?: string): rxjs.Observable<number>;
|
|
3606
3602
|
get$<C extends JSONLD<T>, T extends NodeType>(type: T, id: string): rxjs.Observable<C & ISearchResultExtended>;
|
|
3607
3603
|
suggest$<C extends JSONLD<T>, T extends NodeType = searchableType>(term: string, type?: T, extraQueries?: any[], fullQuery?: any, limit?: number, includes?: string[]): rxjs.Observable<Omit<C & ISearchResultExtended, "_score">[]>;
|
|
3608
3604
|
suggestSource$(term: string, limit?: number, fields?: string[], includes?: string[]): rxjs.Observable<Partial<Source>[]>;
|
|
@@ -4701,8 +4697,8 @@ declare class SchemaInfoComponent {
|
|
|
4701
4697
|
protected readonly type: _angular_core.InputSignal<SchemaType>;
|
|
4702
4698
|
protected readonly field: _angular_core.InputSignal<string>;
|
|
4703
4699
|
protected readonly content: _angular_core.InputSignal<string>;
|
|
4704
|
-
protected readonly placement: _angular_core.InputSignal<"top" | "left" | "
|
|
4705
|
-
protected readonly triggers: _angular_core.InputSignal<"
|
|
4700
|
+
protected readonly placement: _angular_core.InputSignal<"top" | "left" | "right" | "bottom">;
|
|
4701
|
+
protected readonly triggers: _angular_core.InputSignal<"click" | "hover">;
|
|
4706
4702
|
protected readonly container: _angular_core.InputSignal<"-" | "body">;
|
|
4707
4703
|
protected readonly iconName: _angular_core.InputSignal<svgIconNames>;
|
|
4708
4704
|
protected readonly iconSize: _angular_core.InputSignal<svgIconSizes>;
|