Skip to content

Commit dff3d66

Browse files
committed
v2
1 parent b1a36a3 commit dff3d66

30 files changed

+10708
-2183
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true

.eslintignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
build
2+
.git
3+
.github
4+
custom
5+
dist
6+
demo
7+
node_modules

.eslintrc.js

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
module.exports = {
2+
'extends': 'airbnb-base',
3+
'plugins': [
4+
"import"
5+
],
6+
'globals': {
7+
"window": true,
8+
"document": true,
9+
"XMLHttpRequest": true,
10+
"Blob": true,
11+
"Document": true,
12+
"FormData": true,
13+
},
14+
rules: {
15+
'max-len': ['error', 1000, 2, {
16+
ignoreUrls: true,
17+
ignoreComments: false,
18+
ignoreRegExpLiterals: true,
19+
ignoreStrings: true,
20+
ignoreTemplateLiterals: true,
21+
}],
22+
'object-curly-newline': ['error', {
23+
ObjectExpression: { minProperties: 9, multiline: true, consistent: true },
24+
ObjectPattern: { minProperties: 9, multiline: true, consistent: true }
25+
}],
26+
'comma-dangle': ['error', {
27+
arrays: 'always-multiline',
28+
objects: 'always-multiline',
29+
imports: 'always-multiline',
30+
exports: 'always-multiline',
31+
functions: 'never',
32+
}],
33+
'prefer-destructuring': ['off'],
34+
},
35+
};

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.DS_Store
22
node_modules
33
build
4-
bower_components
5-
demo/libs
4+
demo/framework7

CHANGELOG.md

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
11
# Change Log
22

3-
## Framework7 Keypad v1.0.3 - Released on August 22, 2015
3+
# [v2.0.0](https://github.com/framework7io/framework7/compare/v1.0.3...v2.0.0) - February 25, 2018
4+
5+
* Reworked to be compatible with Framework7 v2
6+
* Added ES module version
7+
8+
# [v1.0.3](https://github.com/framework7io/framework7/compare/v1.0.2...v1.0.3) - August 22, 2015
49

510
* New parameter `closeByOutsideClick` (enabled by default). Will close Keypad when you click outside target input
611
* A bit improved support for Material theme
712

8-
## Framework7 Keypad v1.0.2 - Released on March 22, 2015
13+
# [v1.0.2](https://github.com/framework7io/framework7/compare/v1.0.1...v1.0.2) - March 22, 2015
914

1015
* New parameter `onlyInPopover` (disabled by default). Enable it and Keypad will be always opened in Popover
1116

12-
## Framework7 Keypad v1.0.1 - Released on February 4, 2015
17+
# [v1.0.1](https://github.com/framework7io/framework7/compare/v1.0.0...v1.0.1) - February 4, 2015
1318

1419
* Fixed issues with activable dummy button
1520
* Fixed demo issues
1621

17-
## Framework7 Keypad v1.0.0 - Released on February 2, 2015
22+
# v1.0.0 - February 2, 2015
1823

19-
* Initial release.
24+
* Initial release.

0 commit comments

Comments
 (0)