From c044d3180bb9fb9196397245c1d269b72b1b076c Mon Sep 17 00:00:00 2001 From: Avior Date: Mon, 2 Dec 2019 14:41:37 +0100 Subject: [PATCH] BUMP -> 0.3.0 Signed-off-by: Avior --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ package.json | 4 ++-- 2 files changed, 28 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e855fc2..dcd070c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed ### Removed +## [0.3.0] - 2019-12-02 + +### Added + +- Attribute Manager + - attribute Abstract to create new Attributes + - AttributeListeners that are the list of listeners + - Multiple event listeners to the Attribute Manager + - AutosetAttribute +- fm.mode to get the active mode +- Function file with utility functions +- Better description of `package.json` + +### Changed + +- Input inheritance from `FMInput` to `InputAbstract` +- all the input names now don't starts with `FM` + +### Fixed + +- AutosetAttribute not supporting text variables + +### Removed + +- `interface.ts` file + ## [0.2.1] - 2019-10-24 ### Changed diff --git a/package.json b/package.json index 206567b..4a1fade 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@dzeio/form-manager", - "version": "0.2.1", + "version": "0.3.0", "homepage": "https://dze.io/", "main": "./FormManager.js", "types": "./FormManager.d.ts", @@ -32,7 +32,7 @@ }, "scripts": { "build": "tsc", - "clean": "rm *.js; rm *.d.ts; rm -r modules/; exit 0" + "clean": "rm *.js; rm *.d.ts; rm -r modules/;rm -r attributes/; exit 0" }, "installConfig": { "pnp": false