-
Notifications
You must be signed in to change notification settings - Fork 607
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from FastReports/sync_branch_636791587289129476
* sync 11/30/2018
- Loading branch information
Showing
60 changed files
with
46,755 additions
and
138 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,25 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 15 | ||
VisualStudioVersion = 15.0.28010.2019 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FastReportCore.Vue", "FastReportCore.Vue\FastReportCore.Vue.csproj", "{C3AAF542-2737-4BF1-882E-25A21588464B}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{C3AAF542-2737-4BF1-882E-25A21588464B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{C3AAF542-2737-4BF1-882E-25A21588464B}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{C3AAF542-2737-4BF1-882E-25A21588464B}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{C3AAF542-2737-4BF1-882E-25A21588464B}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {84DE34A7-400E-497D-A9FC-B88D02198A08} | ||
EndGlobalSection | ||
EndGlobal |
12 changes: 12 additions & 0 deletions
12
Demos/Core/FastReportCore.Vue/FastReportCore.Vue/Client/.babelrc
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,12 @@ | ||
{ | ||
"presets": [ | ||
["env", { | ||
"modules": false, | ||
"targets": { | ||
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"] | ||
} | ||
}], | ||
"stage-2" | ||
], | ||
"plugins": ["transform-vue-jsx", "transform-runtime"] | ||
} |
9 changes: 9 additions & 0 deletions
9
Demos/Core/FastReportCore.Vue/FastReportCore.Vue/Client/.editorconfig
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,9 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true |
4 changes: 4 additions & 0 deletions
4
Demos/Core/FastReportCore.Vue/FastReportCore.Vue/Client/.eslintignore
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,4 @@ | ||
/build/ | ||
/config/ | ||
/dist/ | ||
/*.js |
29 changes: 29 additions & 0 deletions
29
Demos/Core/FastReportCore.Vue/FastReportCore.Vue/Client/.eslintrc.js
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,29 @@ | ||
// https://eslint.org/docs/user-guide/configuring | ||
|
||
module.exports = { | ||
root: true, | ||
parserOptions: { | ||
parser: 'babel-eslint' | ||
}, | ||
env: { | ||
browser: true, | ||
}, | ||
extends: [ | ||
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention | ||
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules. | ||
'plugin:vue/essential', | ||
// https://github.com/standard/standard/blob/master/docs/RULES-en.md | ||
'standard' | ||
], | ||
// required to lint *.vue files | ||
plugins: [ | ||
'vue' | ||
], | ||
// add your custom rules here | ||
rules: { | ||
// allow async-await | ||
'generator-star-spacing': 'off', | ||
// allow debugger during development | ||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off' | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
Demos/Core/FastReportCore.Vue/FastReportCore.Vue/Client/.gitignore
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,14 @@ | ||
.DS_Store | ||
node_modules/ | ||
/dist/ | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln |
10 changes: 10 additions & 0 deletions
10
Demos/Core/FastReportCore.Vue/FastReportCore.Vue/Client/.postcssrc.js
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,10 @@ | ||
// https://github.com/michael-ciniawsky/postcss-load-config | ||
|
||
module.exports = { | ||
"plugins": { | ||
"postcss-import": {}, | ||
"postcss-url": {}, | ||
// to edit target browsers: use "browserslist" field in package.json | ||
"autoprefixer": {} | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
Demos/Core/FastReportCore.Vue/FastReportCore.Vue/Client/README.md
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,21 @@ | ||
# client | ||
|
||
> A Vue.js project | ||
## Build Setup | ||
|
||
``` bash | ||
# install dependencies | ||
npm install | ||
|
||
# serve with hot reload at localhost:8080 | ||
npm run dev | ||
|
||
# build for production with minification | ||
npm run build | ||
|
||
# build for production and view the bundle analyzer report | ||
npm run build --report | ||
``` | ||
|
||
For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader). |
1 change: 1 addition & 0 deletions
1
Demos/Core/FastReportCore.Vue/FastReportCore.Vue/Client/_start_dev.bat
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 @@ | ||
start npm run dev |
7 changes: 7 additions & 0 deletions
7
Demos/Core/FastReportCore.Vue/FastReportCore.Vue/Client/config/dev.env.js
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,7 @@ | ||
'use strict' | ||
const merge = require('webpack-merge') | ||
const prodEnv = require('./prod.env') | ||
|
||
module.exports = merge(prodEnv, { | ||
NODE_ENV: '"development"' | ||
}) |
76 changes: 76 additions & 0 deletions
76
Demos/Core/FastReportCore.Vue/FastReportCore.Vue/Client/config/index.js
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,76 @@ | ||
'use strict' | ||
// Template version: 1.3.1 | ||
// see http://vuejs-templates.github.io/webpack for documentation. | ||
|
||
const path = require('path') | ||
|
||
module.exports = { | ||
dev: { | ||
|
||
// Paths | ||
assetsSubDirectory: 'static', | ||
assetsPublicPath: '/', | ||
proxyTable: {}, | ||
|
||
// Various Dev Server settings | ||
host: 'localhost', // can be overwritten by process.env.HOST | ||
port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined | ||
autoOpenBrowser: false, | ||
errorOverlay: true, | ||
notifyOnErrors: true, | ||
poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions- | ||
|
||
// Use Eslint Loader? | ||
// If true, your code will be linted during bundling and | ||
// linting errors and warnings will be shown in the console. | ||
useEslint: true, | ||
// If true, eslint errors and warnings will also be shown in the error overlay | ||
// in the browser. | ||
showEslintErrorsInOverlay: false, | ||
|
||
/** | ||
* Source Maps | ||
*/ | ||
|
||
// https://webpack.js.org/configuration/devtool/#development | ||
devtool: 'cheap-module-eval-source-map', | ||
|
||
// If you have problems debugging vue-files in devtools, | ||
// set this to false - it *may* help | ||
// https://vue-loader.vuejs.org/en/options.html#cachebusting | ||
cacheBusting: true, | ||
|
||
cssSourceMap: true | ||
}, | ||
|
||
build: { | ||
// Template for index.html | ||
index: path.resolve(__dirname, '../dist/index.html'), | ||
|
||
// Paths | ||
assetsRoot: path.resolve(__dirname, '../dist'), | ||
assetsSubDirectory: 'static', | ||
assetsPublicPath: '/', | ||
|
||
/** | ||
* Source Maps | ||
*/ | ||
|
||
productionSourceMap: true, | ||
// https://webpack.js.org/configuration/devtool/#production | ||
devtool: '#source-map', | ||
|
||
// Gzip off by default as many popular static hosts such as | ||
// Surge or Netlify already gzip all static assets for you. | ||
// Before setting to `true`, make sure to: | ||
// npm install --save-dev compression-webpack-plugin | ||
productionGzip: false, | ||
productionGzipExtensions: ['js', 'css'], | ||
|
||
// Run the build command with an extra argument to | ||
// View the bundle analyzer report after build finishes: | ||
// `npm run build --report` | ||
// Set to `true` or `false` to always turn it on or off | ||
bundleAnalyzerReport: process.env.npm_config_report | ||
} | ||
} |
4 changes: 4 additions & 0 deletions
4
Demos/Core/FastReportCore.Vue/FastReportCore.Vue/Client/config/prod.env.js
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,4 @@ | ||
'use strict' | ||
module.exports = { | ||
NODE_ENV: '"production"' | ||
} |
12 changes: 12 additions & 0 deletions
12
Demos/Core/FastReportCore.Vue/FastReportCore.Vue/Client/index.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,12 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0"> | ||
<title>client</title> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<!-- built files will be auto injected --> | ||
</body> | ||
</html> |
Oops, something went wrong.