Skip to content

Commit

Permalink
Release 1.0.5
Browse files Browse the repository at this point in the history
- **Bugfixes:**
  - getValues() method was not returning only last index of radio list or checkbox list
  - page indexes generated by �ddPage() were set wrong
- **New:**
  - Added 
eplacePage() method
  - Introduced a .browserslistrc file
- **Docs:**
  - Added Method Descriptions to README.md
  • Loading branch information
bfiessinger committed Jan 19, 2021
1 parent f62d4e9 commit 55378c6
Show file tree
Hide file tree
Showing 65 changed files with 411 additions and 161 deletions.
28 changes: 19 additions & 9 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,32 @@
**1.0.3**
- Bugfixes:
### 1.0.5
- **Bugfixes:**
- `getValues()` method was not returning only last index of radio list or checkbox list
- page indexes generated by `addPage()` were set wrong
- **New:**
- Added `replacePage()` method
- Introduced a `.browserslistrc` file
- **Docs:**
- Added Method Descriptions to `README.md`

### 1.0.4
**- Bugfixes:**
- package.json `main` field was set wrong

**1.0.2**
- Bugfixes:
### 1.0.2
- **Bugfixes:**
- createElement function would render attributes like `className` as it is under some circumstances
- `getValues()` method was not working on the types `checkbox`, `radio`, and `select-multiple`
- Enhancements:
- **Enhancements:**
- Added `libraryExport`: `default` in webpack config
- `getElements()` is now available on single pages and the whole form
- `getValues()` is now available on single pages and the whole form

**1.0.1**
- Bugfixes:
### 1.0.1
- **Bugfixes:**
- Fixed an error where importing the library from node_modules was not possible
- Enhancements:
- **Enhancements:**
- Added amd, umd, esm and cjs versions
- Code Quality:
- **Code Quality:**
- Fixed some TypeScript Errors

**1.0.0**
Expand Down
1 change: 1 addition & 0 deletions dist/amd/utils/DOMUtils.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/utils/DOMUtils.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion dist/amd/utils/array.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/utils/array.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions dist/amd/utils/input.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/utils/input.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/amd/utils/object.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export declare const ObjValues: (obj: Object) => any[];
export declare const ObjEntries: (obj: Object) => any[];
export declare const ObjValues: (obj: Object) => Array<any>;
export declare const ObjEntries: (obj: Object) => Array<any>;
7 changes: 5 additions & 2 deletions dist/amd/utils/object.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/utils/object.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/amd/utils/validation.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 55378c6

Please sign in to comment.