@myrtex-org/form 1.0.31 → 1.0.32

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.
@@ -9,6 +9,7 @@ export interface InputNumberOptionsBase extends OptionsBase {
9
9
  inputState: InputState;
10
10
  decimals: number;
11
11
  decimalSeparator: DecimalMarkerType;
12
+ formula: string;
12
13
  }
13
14
  export type DecimalMarkerType = '.' | ',' | ['.', ','];
14
15
  export interface InputNumberModel extends ComponentModelBase {
@@ -2,7 +2,8 @@ import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models'
2
2
  import { InputState } from '../../../../shared-form/enums';
3
3
  export interface InputSwitchOptionsBase extends OptionsBase {
4
4
  tooltip?: string;
5
- switchText: string;
5
+ switchTextOn: string;
6
+ switchTextOff: string;
6
7
  switchType: number;
7
8
  inputState: InputState;
8
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myrtex-org/form",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"