@vixoniccom/modules 2.12.0 → 2.12.1-rc.0

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/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [2.12.1-rc.0](https://gitlab.com/mandomedio/vixonic/modules/compare/v2.12.0...v2.12.1-rc.0) (2021-10-20)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **release:** jest and standard-version were upgrade ([354f12c](https://gitlab.com/mandomedio/vixonic/modules/commit/354f12c218fa281b4b5eb2aeaf34c48e86b5a16a))
11
+ * **release:** new property was added to textArea input ([49df3f5](https://gitlab.com/mandomedio/vixonic/modules/commit/49df3f56c2e73bdc7c23dbb69f3c29e1b60204c8))
12
+
5
13
  ## [2.12.0](https://gitlab.com/mandomedio/vixonic/modules/compare/v2.12.0-rc.0...v2.12.0) (2021-09-13)
6
14
 
7
15
  ## [2.12.0-rc.0](https://gitlab.com/mandomedio/vixonic/modules/compare/v2.12.0-dev.2...v2.12.0-rc.0) (2021-08-24)
@@ -2,6 +2,7 @@ import { TextInput, ITextInput, TextInputJSON } from './text-input';
2
2
  import { ValueError } from '../errors';
3
3
  export interface ITextArea {
4
4
  rows?: number;
5
+ html?: boolean;
5
6
  }
6
7
  export interface TextAreaJSON extends ITextArea, TextInputJSON {
7
8
  }
@@ -15,6 +16,7 @@ export declare class TextArea extends TextInput {
15
16
  static type: string;
16
17
  type: string;
17
18
  readonly rows?: number;
19
+ readonly html?: boolean;
18
20
  constructor(options: ITextArea & ITextInput);
19
21
  static fromJSON(value: TextAreaJSON): TextArea;
20
22
  }
@@ -34,11 +34,12 @@ var TextArea = /** @class */ (function (_super) {
34
34
  var _this = _super.call(this, options) || this;
35
35
  _this.type = TextArea.type;
36
36
  _this.rows = options.rows;
37
+ _this.html = options.html || false;
37
38
  return _this;
38
39
  }
39
40
  TextArea.fromJSON = function (value) {
40
41
  var parsed = text_input_1.TextInput.parseJSON(value);
41
- return new TextArea(__assign(__assign({}, parsed), { rows: value.rows }));
42
+ return new TextArea(__assign(__assign({}, parsed), { rows: value.rows, html: value.html }));
42
43
  };
43
44
  TextArea.type = 'text-area';
44
45
  return TextArea;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vixoniccom/modules",
3
- "version": "2.12.0",
3
+ "version": "2.12.1-rc.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -16,8 +16,8 @@
16
16
  "license": "ISC",
17
17
  "devDependencies": {
18
18
  "@types/node": "^14.17.10",
19
- "jest": "^27.0.6",
20
- "standard-version": "^9.3.1",
19
+ "jest": "^27.3.1",
20
+ "standard-version": "^9.3.2",
21
21
  "ts-node": "^10.2.1",
22
22
  "typescript": "^4.3.5"
23
23
  }