@hestia-earth/ui-components 0.32.57 → 0.32.59
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/click-outside.directive.d.ts +2 -2
- package/common/data-table/data-table.component.d.ts +7 -7
- package/common/utils.d.ts +1 -0
- package/fesm2022/hestia-earth-ui-components.mjs +99 -44
- package/fesm2022/hestia-earth-ui-components.mjs.map +1 -1
- package/guide/guide-overlay/guide-overlay.component.d.ts +1 -2
- package/guide/guide-overlay.service.d.ts +12 -0
- package/guide/guide.model.d.ts +4 -1
- package/node/node-logs-models/node-logs-models.component.d.ts +2 -0
- package/package.json +1 -1
|
@@ -2,8 +2,8 @@ import { AfterViewInit } from '@angular/core';
|
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class DocumentClickService {
|
|
5
|
-
private ngZone;
|
|
6
|
-
documentClick$: Subject<Event>;
|
|
5
|
+
private readonly ngZone;
|
|
6
|
+
readonly documentClick$: Subject<Event>;
|
|
7
7
|
constructor();
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentClickService, never>;
|
|
9
9
|
static ɵprov: i0.ɵɵInjectableDeclaration<DocumentClickService>;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AfterContentInit, OnDestroy } from '@angular/core';
|
|
2
2
|
import { ResizedEvent } from '../resized.directive';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class DataTableComponent implements
|
|
4
|
+
export declare class DataTableComponent implements AfterContentInit, OnDestroy {
|
|
5
|
+
private resizeObserver;
|
|
6
|
+
private readonly ngZone;
|
|
5
7
|
private readonly elementRef;
|
|
6
8
|
protected readonly minHeight: import("@angular/core").InputSignal<string | number>;
|
|
7
9
|
protected readonly maxHeight: import("@angular/core").InputSignal<string | number>;
|
|
8
10
|
protected readonly small: import("@angular/core").InputSignal<boolean>;
|
|
9
|
-
protected readonly height: import("@angular/core").WritableSignal<string>;
|
|
10
|
-
protected readonly width: import("@angular/core").WritableSignal<string>;
|
|
11
11
|
get isSmall(): boolean;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
ngAfterContentInit(): void;
|
|
13
|
+
ngOnDestroy(): void;
|
|
14
|
+
private get containerEl();
|
|
15
15
|
private get tableEl();
|
|
16
16
|
private updateTableSize;
|
|
17
17
|
protected onResized({ newRect: { width } }: ResizedEvent): void;
|
package/common/utils.d.ts
CHANGED
|
@@ -79,4 +79,5 @@ export declare const gitlabRawUrl: ({ repository, path, apiUrl, branch }: IGitla
|
|
|
79
79
|
export declare const bytesSize: (bytes: number) => string;
|
|
80
80
|
export declare const capitalize: <T extends string>(text: T) => Capitalize<T>;
|
|
81
81
|
export declare const uncapitalize: <T extends string>(text: T) => Uncapitalize<T>;
|
|
82
|
+
export declare const toSnakeCase: (value: string) => string;
|
|
82
83
|
export {};
|