@testgorilla/tgo-ui 2.0.1 → 2.0.2
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/components/button/button.component.d.ts +1 -1
- package/components/dialog/dialog.service.d.ts +3 -2
- package/components/tooltip/tooltip.component.d.ts +10 -2
- package/esm2022/components/button/button.component.mjs +4 -4
- package/esm2022/components/dialog/dialog.service.mjs +12 -6
- package/esm2022/components/tooltip/tooltip.component.mjs +14 -4
- package/fesm2022/testgorilla-tgo-ui.mjs +26 -10
- package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -175,7 +175,7 @@ export declare class ButtonComponent implements OnInit, AfterViewInit {
|
|
|
175
175
|
showLabel(): boolean;
|
|
176
176
|
setCssClass(): string;
|
|
177
177
|
setCssStyle(): any;
|
|
178
|
-
showSpinner(): boolean;
|
|
178
|
+
get showSpinner(): boolean;
|
|
179
179
|
showButtonLink(): boolean;
|
|
180
180
|
setIconButtonSize(): IconButtonSize;
|
|
181
181
|
onPressed(ev: Event): void;
|
|
@@ -5,8 +5,9 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export type DialogSize = 'small' | 'large';
|
|
6
6
|
export declare class DialogService {
|
|
7
7
|
private matDialog;
|
|
8
|
-
|
|
8
|
+
private readonly defaultAppTheme;
|
|
9
|
+
constructor(matDialog: MatDialog, defaultAppTheme: ApplicationTheme);
|
|
9
10
|
open(dialogComponent: ComponentType<any>, applicationTheme: ApplicationTheme, size?: DialogSize): MatDialogRef<any>;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DialogService,
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, [null, { optional: true; }]>;
|
|
11
12
|
static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
|
|
12
13
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { TooltipPositionType } from './tooltip.model';
|
|
3
3
|
import { TooltipPosition } from '@angular/material/tooltip';
|
|
4
|
-
import { ApplicationTheme } from
|
|
4
|
+
import { ApplicationTheme } from '../../models/application-theme.model';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class TooltipComponent implements OnInit {
|
|
7
7
|
private readonly defaultAppTheme;
|
|
@@ -12,6 +12,13 @@ export declare class TooltipComponent implements OnInit {
|
|
|
12
12
|
* @memberof TooltipComponent
|
|
13
13
|
*/
|
|
14
14
|
position: TooltipPositionType;
|
|
15
|
+
/**
|
|
16
|
+
* Disables the display of the tooltip.
|
|
17
|
+
*
|
|
18
|
+
* @type {boolean}
|
|
19
|
+
* @memberof TooltipComponent
|
|
20
|
+
*/
|
|
21
|
+
matTooltipDisabled: boolean;
|
|
15
22
|
/**
|
|
16
23
|
* The message to be displayed in the tooltip.
|
|
17
24
|
*
|
|
@@ -32,5 +39,6 @@ export declare class TooltipComponent implements OnInit {
|
|
|
32
39
|
ngOnInit(): void;
|
|
33
40
|
setPosition(): void;
|
|
34
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, [{ optional: true; }]>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "ui-tooltip", never, { "position": { "alias": "position"; "required": false; }; "message": { "alias": "message"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "ui-tooltip", never, { "position": { "alias": "position"; "required": false; }; "matTooltipDisabled": { "alias": "matTooltipDisabled"; "required": false; }; "message": { "alias": "message"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
43
|
+
static ngAcceptInputType_matTooltipDisabled: unknown;
|
|
36
44
|
}
|