Skip to content

Commit b84bd89

Browse files
committed
1.0.0
0 parents  commit b84bd89

File tree

336 files changed

+32206
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

336 files changed

+32206
-0
lines changed

.eslintignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
dist
3+
lib
4+
es
5+
node_modules
6+
/locale
7+
/index.*

.eslintrc.js

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
jest: true,
5+
es6: true,
6+
node: true,
7+
},
8+
parser: 'vue-eslint-parser',
9+
parserOptions: {
10+
parser: '@typescript-eslint/parser', // Specifies the ESLint parser
11+
ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features
12+
sourceType: 'module', // Allows for the use of imports
13+
ecmaFeatures: {
14+
// tsx: true, // Allows for the parsing of JSX
15+
tsx: true,
16+
},
17+
},
18+
extends: [
19+
'plugin:vue/vue3-recommended',
20+
'eslint:recommended',
21+
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin
22+
'plugin:prettier/recommended', // Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
23+
],
24+
rules: {
25+
'@typescript-eslint/explicit-module-boundary-types': 'off',
26+
'@typescript-eslint/no-explicit-any': 'off',
27+
'@typescript-eslint/no-non-null-assertion': 'off',
28+
'@typescript-eslint/no-empty-function': 'off',
29+
'vue/require-default-prop': 'off',
30+
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
31+
// e.g. "@typescript-eslint/explicit-function-return-type": "off",
32+
},
33+
};

.github/FUNDING.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These are supported funding model platforms
2+
3+
custom: https://www.paypal.me/mengxiong10

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[Bug]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Vue2-datepicker version**:
11+
**Vue version**:
12+
**Browser**:
13+
14+
**Steps to reproduce**
15+
16+
17+
**Reproduction Link or Source Code**
18+
19+
20+
**Expected behavior**
21+
22+
23+
**Actual behavior**
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[Feature request]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**What problem does this feature solve?**
11+
12+
13+
**What does the proposed API look like?**

.github/ISSUE_TEMPLATE/question.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Question
3+
about: Need some help
4+
title: '[Question]'
5+
labels: ''
6+
assignees: ''
7+
---
8+
9+
**Vue-datepicker-next version**:
10+
**Vue version**:
11+
**Browser**:
12+
13+
**Reproduction Link or Source Code**

.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.vscode
2+
.cache
3+
.DS_Store
4+
5+
_site
6+
7+
node_modules
8+
9+
index.*
10+
!index.html
11+
12+
dist
13+
14+
/scss
15+
16+
/temp

.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"trailingComma": "es5",
3+
"tabWidth": 2,
4+
"semi": true,
5+
"singleQuote": true,
6+
"printWidth": 100
7+
}

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: node_js
2+
node_js: 16
3+
script: 'npm test'
4+
after_script: npm run cov
5+
branches:
6+
only:
7+
- main

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 xiemengxiong
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)