Browse Source
Merge remote-tracking branch 'origin/lts-4.3' into rc
pull/15182/head
Viacheslav Klimov
5 months ago
Failed to extract signature
2 changed files with
2 additions and
2 deletions
-
ui-ngx/src/app/shared/components/color-picker/hsla-input.component.ts
-
ui-ngx/src/app/shared/components/color-picker/rgba-input.component.ts
|
|
@ -41,7 +41,7 @@ export class HslaInputComponent { |
|
|
@Input() |
|
|
@Input() |
|
|
public suffixValue = '%'; |
|
|
public suffixValue = '%'; |
|
|
|
|
|
|
|
|
public get value() { |
|
|
public get value(): ReturnType<Color['getHsla']> { |
|
|
return this.color.getHsla(); |
|
|
return this.color.getHsla(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -41,7 +41,7 @@ export class RgbaInputComponent { |
|
|
@Input() |
|
|
@Input() |
|
|
public suffixValue = '%'; |
|
|
public suffixValue = '%'; |
|
|
|
|
|
|
|
|
public get value() { |
|
|
public get value(): ReturnType<Color['getRgba']> { |
|
|
return this.color.getRgba(); |
|
|
return this.color.getRgba(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|