@testgorilla/tgo-ui 3.8.1 → 3.8.3

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.
@@ -1,6 +1,6 @@
1
1
  import { BadgeVariant, RebrandBadgeColor } from '../badge/badge.model';
2
2
  export type ButtonIconPosition = 'left' | 'right';
3
- export type ButtonColor = 'primary' | 'secondary' | 'ghost' | 'ghost-ai' | 'outlined' | 'destructive' | 'tertiary' | 'link' | 'tab' | 'text' | 'menuTrigger' | 'menuCell' | 'icon-button';
3
+ export type ButtonColor = 'primary' | 'secondary' | 'ghost' | 'ghost-ai' | 'outlined' | 'destructive' | 'tertiary' | 'link' | 'tab' | 'text' | 'text-inline' | 'menuTrigger' | 'menuCell' | 'icon-button';
4
4
  export type ButtonSize = 'big' | 'medium' | 'small';
5
5
  export type LinkUrlTarget = '' | '_self' | '_blank' | '_parent' | '_top';
6
6
  export type IconButtonSize = '24' | '32' | '40';
@@ -28,6 +28,11 @@ export declare class RadialProgressComponent {
28
28
  * @memberof RadialProgressComponent
29
29
  */
30
30
  variant: RadialProgressVariant;
31
+ /**
32
+ * @type {boolean}
33
+ * @memberof RadialProgressComponent
34
+ */
35
+ showPercentageSign: boolean;
31
36
  /**
32
37
  * Icon for icon button
33
38
  * @type {number}
@@ -62,7 +67,9 @@ export declare class RadialProgressComponent {
62
67
  ngOnChanges(changes: SimpleChanges): void;
63
68
  protected get progressSize(): number;
64
69
  protected get percentage(): number;
70
+ protected get strokeWidth(): number;
71
+ protected get displayValue(): string;
65
72
  protected onButtonClick(ev: Event): void;
66
73
  static ɵfac: i0.ɵɵFactoryDeclaration<RadialProgressComponent, [{ optional: true; }]>;
67
- static ɵcmp: i0.ɵɵComponentDeclaration<RadialProgressComponent, "ui-radial-progress", never, { "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; "total": { "alias": "total"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "buttonTooltip": { "alias": "buttonTooltip"; "required": false; }; "companyColor": { "alias": "companyColor"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; }, { "buttonClicked": "buttonClicked"; }, never, never, false, never>;
74
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadialProgressComponent, "ui-radial-progress", never, { "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; "total": { "alias": "total"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "showPercentageSign": { "alias": "showPercentageSign"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "buttonTooltip": { "alias": "buttonTooltip"; "required": false; }; "companyColor": { "alias": "companyColor"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; }, { "buttonClicked": "buttonClicked"; }, never, never, false, never>;
68
75
  }
@@ -7,4 +7,4 @@ export declare enum RadialProgressSizeEnum {
7
7
  LARGE = "large",
8
8
  SMALL = "small"
9
9
  }
10
- export type RadialProgressVariant = 'number' | 'icon-button';
10
+ export type RadialProgressVariant = 'number' | 'icon-button' | 'thin' | 'empty' | 'empty-thin';