Merge tag '1.5.1' into develop

Tag hotfix
This commit is contained in:
root 2024-09-30 18:36:00 +03:00
commit 878c21258f
2 changed files with 4 additions and 4 deletions

View file

@ -1,8 +1,8 @@
import {Behavior, TextFormatter} from "@webbpm/base-package";
import {ReplaceValueModel} from "./model/ReplaceValueModel";
import {ErvuReplaceValueModel} from "./model/ErvuReplaceValueModel";
export class ReplaceValueTextFormatter extends Behavior implements TextFormatter {
public replaceModels: ReplaceValueModel[]
public replaceModels: ErvuReplaceValueModel[]
format(value: string): string {
if (this.replaceModels) {

View file

@ -1,4 +1,4 @@
export class ReplaceValueModel {
export class ErvuReplaceValueModel {
public valueToReplace: string;
public value: string;
}
}