-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
5,447 additions
and
2,201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[*.{js,jsx,ts,tsx,vue}] | ||
indent_style = space | ||
indent_size = 2 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,21 @@ | ||
.DS_Store | ||
node_modules/ | ||
npm-debug.log | ||
yarn-error.log | ||
node_modules | ||
/dist | ||
|
||
# local env files | ||
.env.local | ||
.env.*.local | ||
|
||
# Log files | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module.exports = { | ||
presets: [ | ||
'@vue/cli-plugin-babel/preset' | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,51 @@ | ||
{ | ||
"name": "vuedt", | ||
"description": "crazy lightweight Vuejs Date and Time picker component", | ||
"version": "0.2.0", | ||
"author": "koehr <[email protected]>", | ||
"main": "./dist/index.js", | ||
"version": "0.1.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot", | ||
"build": "webpack --progress --hide-modules" | ||
"serve": "vue-cli-service serve", | ||
"build": "vue-cli-service build --target lib --name vuedt src/VueDT.vue", | ||
"lint": "vue-cli-service lint" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/nkoehring/vuedt.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/nkoehring/vuedt/issues" | ||
"dependencies": { | ||
"core-js": "^3.6.4", | ||
"vue": "^2.6.11" | ||
}, | ||
"homepage": "https://github.com/nkoehring/vuedt#readme", | ||
"keywords": [ | ||
"vue", | ||
"datetime", | ||
"date", | ||
"time", | ||
"calendar", | ||
"datepicker", | ||
"timepicker" | ||
], | ||
"devDependencies": { | ||
"babel-core": "^6.24.0", | ||
"babel-loader": "^7.0.0", | ||
"babel-plugin-transform-runtime": "^6.23.0", | ||
"babel-runtime": "^6.23.0", | ||
"cross-env": "^3.0.0", | ||
"css-loader": "^0.28.0", | ||
"style-loader": "^0.17.0", | ||
"vue": "^2.2.4", | ||
"vue-html-loader": "^1.2.4", | ||
"vue-loader": "^12.0.3", | ||
"vue-style-loader": "^3.0.1", | ||
"vue-template-compiler": "^2.2.4", | ||
"webpack": "^2.2.1", | ||
"webpack-dev-server": "^2.2.1" | ||
"@vue/cli-plugin-babel": "~4.3.0", | ||
"@vue/cli-plugin-eslint": "~4.3.0", | ||
"@vue/cli-service": "~4.3.0", | ||
"@vue/eslint-config-standard": "^5.1.2", | ||
"eslint": "^6.7.2", | ||
"eslint-plugin-import": "^2.20.2", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-standard": "^4.0.0", | ||
"eslint-plugin-vue": "^6.2.2", | ||
"vue-template-compiler": "^2.6.11" | ||
}, | ||
"browserify": { | ||
"transform": [ | ||
"vueify" | ||
] | ||
"eslintConfig": { | ||
"root": true, | ||
"env": { | ||
"node": true | ||
}, | ||
"extends": [ | ||
"plugin:vue/essential", | ||
"@vue/standard" | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": 2020 | ||
}, | ||
"rules": {} | ||
}, | ||
"dependencies": { | ||
"babel-preset-latest": "^6.24.0" | ||
} | ||
"vue": { | ||
"css": { | ||
"extract": false | ||
} | ||
}, | ||
"browserslist": [ | ||
"> 1%", | ||
"last 2 versions", | ||
"not dead" | ||
] | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0"> | ||
<link rel="icon" href="<%= BASE_URL %>favicon.ico"> | ||
<title><%= htmlWebpackPlugin.options.title %></title> | ||
</head> | ||
<body> | ||
<noscript> | ||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> | ||
</noscript> | ||
<div id="app"></div> | ||
<!-- built files will be auto injected --> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<template> | ||
<vue-d-t v-model="date" :time="false" lang="de" /> | ||
</template> | ||
|
||
<script> | ||
import VueDT from './VueDT.vue' | ||
export default { | ||
components: { VueDT }, | ||
data () { | ||
return { | ||
date: new Date() | ||
} | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.