Merge branch 'master' into fix-pt-br
This commit is contained in:
commit
e357f97a0a
7
.babelrc
7
.babelrc
@ -1,13 +1,12 @@
|
||||
{
|
||||
"presets": [
|
||||
["env", { "modules": false }],
|
||||
"stage-2"
|
||||
["@babel/env", { "modules": false }]
|
||||
],
|
||||
"plugins": ["transform-runtime"],
|
||||
"plugins": ["@babel/plugin-transform-runtime"],
|
||||
"comments": false,
|
||||
"env": {
|
||||
"test": {
|
||||
"presets": ["env", "stage-2"],
|
||||
"presets": ["@babel/env"],
|
||||
"plugins": [ "istanbul" ]
|
||||
}
|
||||
}
|
||||
|
||||
39
.eslintrc.js
39
.eslintrc.js
@ -1,39 +0,0 @@
|
||||
// http://eslint.org/docs/user-guide/configuring
|
||||
|
||||
module.exports = {
|
||||
root: true,
|
||||
parser: 'babel-eslint',
|
||||
parserOptions: {
|
||||
sourceType: 'module'
|
||||
},
|
||||
env: {
|
||||
browser: true,
|
||||
},
|
||||
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
|
||||
extends: 'standard',
|
||||
// required to lint *.vue files
|
||||
plugins: [
|
||||
'html'
|
||||
],
|
||||
// add your custom rules here
|
||||
'rules': {
|
||||
// allow paren-less arrow functions
|
||||
'arrow-parens': 0,
|
||||
// allow async-await
|
||||
'generator-star-spacing': 0,
|
||||
// allow debugger during development
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
|
||||
'quotes': [
|
||||
'error',
|
||||
'single'
|
||||
],
|
||||
'semi': [
|
||||
'error',
|
||||
'always'
|
||||
],
|
||||
'no-console': 'off',
|
||||
'curly': ['error', 'multi-or-nest'],
|
||||
'space-before-function-paren': ['error', 'always'],
|
||||
'no-var': 'error'
|
||||
}
|
||||
}
|
||||
320
.eslintrc.json
Executable file
320
.eslintrc.json
Executable file
@ -0,0 +1,320 @@
|
||||
{
|
||||
"env": {
|
||||
"browser": true,
|
||||
"es6": true,
|
||||
"node": true
|
||||
},
|
||||
"extends": "eslint:recommended",
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 2018,
|
||||
"sourceType": "module"
|
||||
},
|
||||
"plugins": [
|
||||
"html"
|
||||
],
|
||||
"rules": {
|
||||
"accessor-pairs": "error",
|
||||
"array-bracket-newline": "off",
|
||||
"array-bracket-spacing": [
|
||||
"error",
|
||||
"never"
|
||||
],
|
||||
"array-callback-return": "off",
|
||||
"array-element-newline": "off",
|
||||
"arrow-body-style": "off",
|
||||
"arrow-parens": "off",
|
||||
"arrow-spacing": [
|
||||
"error",
|
||||
{
|
||||
"after": true,
|
||||
"before": true
|
||||
}
|
||||
],
|
||||
"block-scoped-var": "error",
|
||||
"block-spacing": "error",
|
||||
"brace-style": [
|
||||
"error",
|
||||
"1tbs"
|
||||
],
|
||||
"callback-return": "error",
|
||||
"capitalized-comments": "off",
|
||||
"class-methods-use-this": "off",
|
||||
"comma-dangle": "off",
|
||||
"comma-spacing": [
|
||||
"error",
|
||||
{
|
||||
"after": true,
|
||||
"before": false
|
||||
}
|
||||
],
|
||||
"comma-style": [
|
||||
"error",
|
||||
"last"
|
||||
],
|
||||
"complexity": "off",
|
||||
"computed-property-spacing": [
|
||||
"error",
|
||||
"never"
|
||||
],
|
||||
"consistent-return": "off",
|
||||
"consistent-this": "off",
|
||||
"curly": "off",
|
||||
"default-case": "off",
|
||||
"dot-location": [
|
||||
"error",
|
||||
"property"
|
||||
],
|
||||
"dot-notation": "off",
|
||||
"eol-last": "off",
|
||||
"eqeqeq": "off",
|
||||
"func-call-spacing": "error",
|
||||
"func-name-matching": "off",
|
||||
"func-names": "off",
|
||||
"func-style": "off",
|
||||
"function-paren-newline": "off",
|
||||
"generator-star-spacing": "error",
|
||||
"global-require": "off",
|
||||
"guard-for-in": "off",
|
||||
"handle-callback-err": "error",
|
||||
"id-blacklist": "error",
|
||||
"id-length": "off",
|
||||
"id-match": "error",
|
||||
"implicit-arrow-linebreak": "off",
|
||||
"indent": [
|
||||
"error",
|
||||
4,
|
||||
{
|
||||
"MemberExpression": "off",
|
||||
"SwitchCase": 1
|
||||
}
|
||||
],
|
||||
"indent-legacy": "off",
|
||||
"init-declarations": "off",
|
||||
"jsx-quotes": "error",
|
||||
"key-spacing": "error",
|
||||
"keyword-spacing": "off",
|
||||
"line-comment-position": "off",
|
||||
"linebreak-style": [
|
||||
"error",
|
||||
"unix"
|
||||
],
|
||||
"lines-around-comment": "off",
|
||||
"lines-around-directive": "error",
|
||||
"lines-between-class-members": "off",
|
||||
"max-classes-per-file": "off",
|
||||
"max-depth": "error",
|
||||
"max-len": "off",
|
||||
"max-lines": "off",
|
||||
"max-lines-per-function": "off",
|
||||
"max-nested-callbacks": "error",
|
||||
"max-params": "off",
|
||||
"max-statements": "off",
|
||||
"max-statements-per-line": "error",
|
||||
"multiline-comment-style": "off",
|
||||
"multiline-ternary": [
|
||||
"error",
|
||||
"always-multiline"
|
||||
],
|
||||
"new-parens": "off",
|
||||
"newline-after-var": "off",
|
||||
"newline-before-return": "off",
|
||||
"newline-per-chained-call": "off",
|
||||
"no-alert": "error",
|
||||
"no-array-constructor": "error",
|
||||
"no-await-in-loop": "off",
|
||||
"no-bitwise": "off",
|
||||
"no-buffer-constructor": "off",
|
||||
"no-caller": "error",
|
||||
"no-catch-shadow": "error",
|
||||
"no-case-declarations": "off",
|
||||
"no-confusing-arrow": "off",
|
||||
"no-constant-condition": [
|
||||
"error",
|
||||
{
|
||||
"checkLoops": false
|
||||
}
|
||||
],
|
||||
"no-console": "off",
|
||||
"no-continue": "off",
|
||||
"no-div-regex": "error",
|
||||
"no-duplicate-imports": "off",
|
||||
"no-else-return": "off",
|
||||
"no-empty": [
|
||||
"error",
|
||||
{
|
||||
"allowEmptyCatch": true
|
||||
}
|
||||
],
|
||||
"no-empty-function": "off",
|
||||
"no-eq-null": "error",
|
||||
"no-eval": "error",
|
||||
"no-extend-native": "error",
|
||||
"no-extra-bind": "error",
|
||||
"no-extra-label": "error",
|
||||
"no-extra-parens": "off",
|
||||
"no-floating-decimal": "error",
|
||||
"no-implicit-globals": "error",
|
||||
"no-implied-eval": "error",
|
||||
"no-inline-comments": "off",
|
||||
"no-invalid-this": "off",
|
||||
"no-iterator": "error",
|
||||
"no-label-var": "error",
|
||||
"no-labels": "error",
|
||||
"no-lone-blocks": "error",
|
||||
"no-lonely-if": "off",
|
||||
"no-loop-func": "off",
|
||||
"no-magic-numbers": "off",
|
||||
"no-mixed-operators": "off",
|
||||
"no-mixed-requires": "error",
|
||||
"no-multi-assign": "error",
|
||||
"no-multi-spaces": "error",
|
||||
"no-multi-str": "error",
|
||||
"no-multiple-empty-lines": "off",
|
||||
"no-native-reassign": "error",
|
||||
"no-negated-condition": "off",
|
||||
"no-negated-in-lhs": "error",
|
||||
"no-nested-ternary": "error",
|
||||
"no-new": "error",
|
||||
"no-new-func": "error",
|
||||
"no-new-object": "error",
|
||||
"no-new-require": "error",
|
||||
"no-new-wrappers": "error",
|
||||
"no-octal-escape": "error",
|
||||
"no-param-reassign": "off",
|
||||
"no-path-concat": "error",
|
||||
"no-plusplus": "off",
|
||||
"no-process-env": "off",
|
||||
"no-process-exit": "off",
|
||||
"no-proto": "off",
|
||||
"no-prototype-builtins": "off",
|
||||
"no-restricted-globals": "error",
|
||||
"no-restricted-imports": "error",
|
||||
"no-restricted-modules": "error",
|
||||
"no-restricted-properties": "error",
|
||||
"no-restricted-syntax": "error",
|
||||
"no-return-assign": "off",
|
||||
"no-return-await": "off",
|
||||
"no-script-url": "error",
|
||||
"no-self-compare": "error",
|
||||
"no-sequences": "error",
|
||||
"no-shadow": "off",
|
||||
"no-shadow-restricted-names": "error",
|
||||
"no-spaced-func": "error",
|
||||
"no-sync": "off",
|
||||
"no-tabs": "error",
|
||||
"no-template-curly-in-string": "error",
|
||||
"no-ternary": "off",
|
||||
"no-throw-literal": "error",
|
||||
"no-trailing-spaces": [
|
||||
"error",
|
||||
{
|
||||
"ignoreComments": true,
|
||||
"skipBlankLines": true
|
||||
}
|
||||
],
|
||||
"no-undef-init": "error",
|
||||
"no-undefined": "off",
|
||||
"no-underscore-dangle": "off",
|
||||
"no-unmodified-loop-condition": "error",
|
||||
"no-unneeded-ternary": "off",
|
||||
"no-unused-expressions": "off",
|
||||
"no-use-before-define": "off",
|
||||
"no-useless-call": "error",
|
||||
"no-useless-computed-key": "error",
|
||||
"no-useless-concat": "off",
|
||||
"no-useless-constructor": "error",
|
||||
"no-useless-return": "off",
|
||||
"no-var": "error",
|
||||
"no-void": "error",
|
||||
"no-warning-comments": "off",
|
||||
"no-whitespace-before-property": "error",
|
||||
"no-with": "error",
|
||||
"nonblock-statement-body-position": [
|
||||
"error",
|
||||
"any"
|
||||
],
|
||||
"object-curly-newline": "off",
|
||||
"object-curly-spacing": [
|
||||
"error",
|
||||
"always"
|
||||
],
|
||||
"object-property-newline": "error",
|
||||
"object-shorthand": "off",
|
||||
"one-var": "off",
|
||||
"one-var-declaration-per-line": [
|
||||
"error",
|
||||
"initializations"
|
||||
],
|
||||
"operator-assignment": "off",
|
||||
"operator-linebreak": [
|
||||
"error",
|
||||
"after"
|
||||
],
|
||||
"padded-blocks": "off",
|
||||
"padding-line-between-statements": "error",
|
||||
"prefer-arrow-callback": "off",
|
||||
"prefer-const": "error",
|
||||
"prefer-destructuring": "off",
|
||||
"prefer-numeric-literals": "error",
|
||||
"prefer-object-spread": "off",
|
||||
"prefer-promise-reject-errors": "error",
|
||||
"prefer-reflect": "off",
|
||||
"prefer-rest-params": "off",
|
||||
"prefer-spread": "off",
|
||||
"prefer-template": "off",
|
||||
"quote-props": "off",
|
||||
"quotes": [
|
||||
"error",
|
||||
"single"
|
||||
],
|
||||
"radix": "off",
|
||||
"require-await": "off",
|
||||
"require-jsdoc": "off",
|
||||
"rest-spread-spacing": [
|
||||
"error",
|
||||
"never"
|
||||
],
|
||||
"semi": "error",
|
||||
"semi-spacing": [
|
||||
"error",
|
||||
{
|
||||
"after": true,
|
||||
"before": false
|
||||
}
|
||||
],
|
||||
"semi-style": [
|
||||
"error",
|
||||
"last"
|
||||
],
|
||||
"sort-imports": "off",
|
||||
"sort-keys": "off",
|
||||
"sort-vars": "off",
|
||||
"space-before-blocks": "error",
|
||||
"space-before-function-paren": "off",
|
||||
"space-in-parens": [
|
||||
"error",
|
||||
"never"
|
||||
],
|
||||
"space-infix-ops": "error",
|
||||
"space-unary-ops": "error",
|
||||
"spaced-comment": "off",
|
||||
"strict": "error",
|
||||
"switch-colon-spacing": "error",
|
||||
"symbol-description": "error",
|
||||
"template-curly-spacing": [
|
||||
"error",
|
||||
"never"
|
||||
],
|
||||
"template-tag-spacing": "error",
|
||||
"unicode-bom": [
|
||||
"error",
|
||||
"never"
|
||||
],
|
||||
"valid-jsdoc": "off",
|
||||
"vars-on-top": "error",
|
||||
"wrap-iife": "error",
|
||||
"wrap-regex": "off",
|
||||
"yield-star-spacing": "error",
|
||||
"yoda": "off"
|
||||
}
|
||||
}
|
||||
41
.travis.yml
41
.travis.yml
@ -1,17 +1,44 @@
|
||||
language: node_js
|
||||
sudo: required
|
||||
dist: trusty
|
||||
os:
|
||||
- linux
|
||||
node_js:
|
||||
- "9.2.1"
|
||||
- "10.6.0"
|
||||
|
||||
before_install:
|
||||
- export CHROME_BIN=chromium-browser
|
||||
- export DISPLAY=:99.0
|
||||
- sh -e /etc/init.d/xvfb start
|
||||
script:
|
||||
- npm install --depth 0 --silent
|
||||
- npm run lint
|
||||
- travis_retry npm run test:export
|
||||
- travis_retry npm run test:docs
|
||||
- travis_retry npm run test:e2e
|
||||
|
||||
stages:
|
||||
- install
|
||||
- format
|
||||
- export
|
||||
- tests
|
||||
|
||||
jobs:
|
||||
include:
|
||||
- stage: install
|
||||
script: travis_retry npm install --depth 0 --silent
|
||||
|
||||
- stage: format
|
||||
script: travis_retry npm run lint
|
||||
env: LABEL=lint
|
||||
|
||||
- stage: export
|
||||
script: travis_retry npm run export
|
||||
env: LABEL=export
|
||||
- stage: export
|
||||
script: travis_retry npm run preview
|
||||
env: LABEL=preview
|
||||
|
||||
- stage: tests
|
||||
script: travis_retry npm run test:export
|
||||
env: LABEL=test:export
|
||||
- stage: tests
|
||||
script: travis_retry npm run test:docs
|
||||
env: LABEL=test:docs
|
||||
- stage: tests
|
||||
script: travis_retry npm run test:e2e
|
||||
env: LABEL=test:e2e
|
||||
|
||||
@ -23,6 +23,7 @@
|
||||
<br>
|
||||
|
||||
<p align="left">
|
||||
<img src="src/assets/preview/resume-creative.png" width="150" style="margin-right:5px; border: 1px solid #ccc;" />
|
||||
<img src="src/assets/preview/resume-purple.png" width="150" style="margin-right:5px; border: 1px solid #ccc;" />
|
||||
<img src="src/assets/preview/resume-side-bar-rtl.png" width="150" style="margin-right:5px; border: 1px solid #ccc;" />
|
||||
<img src="src/assets/preview/resume-left-right-rtl.png" width="150" style="margin-right:5px; border: 1px solid #ccc;" />
|
||||
@ -30,6 +31,7 @@
|
||||
<img src="src/assets/preview/resume-left-right.png" width="150" style="margin-right:5px; border: 1px solid #ccc;" />
|
||||
<img src="src/assets/preview/resume-side-bar.png" width="150" style="margin-right:5px; border: 1px solid #ccc;" />
|
||||
<img src="src/assets/preview/resume-oblique.png" width="150" style="margin-right:5px; border: 1px solid #ccc;" />
|
||||
<img src="src/assets/preview/resume-cool.png" width="150" style="margin-right:5px; border: 1px solid #ccc;" />
|
||||
</p>
|
||||
|
||||
<br>
|
||||
@ -91,3 +93,8 @@ This project uses several open source packages:
|
||||
> [sarasteiert.com](https://www.sarasteiert.com) ·
|
||||
> GitHub [@salomonelli](https://github.com/salomonelli) ·
|
||||
> Twitter [@salomonelli](https://twitter.com/salomonelli)
|
||||
|
||||
|
||||
## License
|
||||
|
||||
[MIT](https://github.com/salomonelli/best-resume-ever/blob/master/LICENCE.md)
|
||||
|
||||
@ -15,8 +15,7 @@ module.exports = {
|
||||
path: config.build.assetsRoot,
|
||||
filename: '[name].js',
|
||||
publicPath: process.env.NODE_ENV === 'production' ?
|
||||
config.build.assetsPublicPath :
|
||||
config.dev.assetsPublicPath
|
||||
config.build.assetsPublicPath : config.dev.assetsPublicPath
|
||||
},
|
||||
resolve: {
|
||||
extensions: ['.js', '.vue', '.json'],
|
||||
@ -60,16 +59,6 @@ module.exports = {
|
||||
limit: 10000,
|
||||
name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
|
||||
}
|
||||
},
|
||||
{
|
||||
test: /\.less$/,
|
||||
use: [{
|
||||
loader: "style-loader" // creates style nodes from JS strings
|
||||
}, {
|
||||
loader: "css-loader" // translates CSS into CommonJS
|
||||
}, {
|
||||
loader: "less-loader" // compiles Less to CSS
|
||||
}]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@ -5,19 +5,24 @@ var merge = require('webpack-merge')
|
||||
var baseWebpackConfig = require('./webpack.base.conf')
|
||||
var HtmlWebpackPlugin = require('html-webpack-plugin')
|
||||
var FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
|
||||
var VueLoaderPlugin = require('vue-loader/lib/plugin')
|
||||
|
||||
|
||||
// add hot-reload related code to entry chunks
|
||||
Object.keys(baseWebpackConfig.entry).forEach(function (name) {
|
||||
Object.keys(baseWebpackConfig.entry).forEach(function(name) {
|
||||
baseWebpackConfig.entry[name] = ['./build/dev-client'].concat(baseWebpackConfig.entry[name])
|
||||
})
|
||||
|
||||
module.exports = merge(baseWebpackConfig, {
|
||||
module: {
|
||||
rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap })
|
||||
rules: utils.styleLoaders({
|
||||
sourceMap: config.dev.cssSourceMap
|
||||
})
|
||||
},
|
||||
// cheap-module-eval-source-map is faster for development
|
||||
devtool: '#cheap-module-eval-source-map',
|
||||
plugins: [
|
||||
new VueLoaderPlugin(),
|
||||
new webpack.DefinePlugin({
|
||||
'process.env': config.dev.env
|
||||
}),
|
||||
|
||||
@ -8,10 +8,11 @@ var CopyWebpackPlugin = require('copy-webpack-plugin')
|
||||
var HtmlWebpackPlugin = require('html-webpack-plugin')
|
||||
var ExtractTextPlugin = require('extract-text-webpack-plugin')
|
||||
var OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin')
|
||||
var VueLoaderPlugin = require('vue-loader/lib/plugin')
|
||||
|
||||
var env = process.env.NODE_ENV === 'testing'
|
||||
? require('../config/test.env')
|
||||
: config.build.env
|
||||
var env = process.env.NODE_ENV === 'testing' ?
|
||||
require('../config/test.env') :
|
||||
config.build.env
|
||||
|
||||
var webpackConfig = merge(baseWebpackConfig, {
|
||||
module: {
|
||||
@ -26,14 +27,20 @@ var webpackConfig = merge(baseWebpackConfig, {
|
||||
filename: utils.assetsPath('js/[name].[chunkhash].js'),
|
||||
chunkFilename: utils.assetsPath('js/[id].[chunkhash].js')
|
||||
},
|
||||
optimization: {
|
||||
splitChunks: {
|
||||
chunks: "all"
|
||||
}
|
||||
},
|
||||
plugins: [
|
||||
new VueLoaderPlugin(),
|
||||
// http://vuejs.github.io/vue-loader/en/workflow/production.html
|
||||
new webpack.DefinePlugin({
|
||||
'process.env': env
|
||||
}),
|
||||
// extract css into its own file
|
||||
new ExtractTextPlugin({
|
||||
filename: utils.assetsPath('css/[name].[contenthash].css')
|
||||
filename: utils.assetsPath('css/[name].[hash].css')
|
||||
}),
|
||||
// Compress extracted CSS. We are using this plugin so that possible
|
||||
// duplicated CSS from different components can be deduped.
|
||||
@ -46,9 +53,8 @@ var webpackConfig = merge(baseWebpackConfig, {
|
||||
// you can customize output by editing /index.html
|
||||
// see https://github.com/ampedandwired/html-webpack-plugin
|
||||
new HtmlWebpackPlugin({
|
||||
filename: process.env.NODE_ENV === 'testing'
|
||||
? 'index.html'
|
||||
: config.build.index,
|
||||
filename: process.env.NODE_ENV === 'testing' ?
|
||||
'index.html' : config.build.index,
|
||||
template: 'index.html',
|
||||
inject: true,
|
||||
minify: {
|
||||
@ -60,33 +66,12 @@ var webpackConfig = merge(baseWebpackConfig, {
|
||||
},
|
||||
// necessary to consistently work with multiple chunks via CommonsChunkPlugin
|
||||
chunksSortMode: 'dependency'
|
||||
}),
|
||||
// split vendor js into its own file
|
||||
new webpack.optimize.CommonsChunkPlugin({
|
||||
name: 'vendor',
|
||||
minChunks: function (module, count) {
|
||||
// any required modules inside node_modules are extracted to vendor
|
||||
return (
|
||||
module.resource &&
|
||||
/\.js$/.test(module.resource) &&
|
||||
module.resource.indexOf(
|
||||
path.join(__dirname, '../node_modules')
|
||||
) === 0
|
||||
)
|
||||
}
|
||||
}),
|
||||
// extract webpack runtime and module manifest to its own file in order to
|
||||
// prevent vendor hash from being updated whenever app bundle is updated
|
||||
new webpack.optimize.CommonsChunkPlugin({
|
||||
name: 'manifest',
|
||||
chunks: ['vendor']
|
||||
}),
|
||||
})
|
||||
]
|
||||
})
|
||||
|
||||
if (config.build.productionGzip) {
|
||||
var CompressionWebpackPlugin = require('compression-webpack-plugin')
|
||||
|
||||
webpackConfig.plugins.push(
|
||||
new CompressionWebpackPlugin({
|
||||
asset: '[path].gz[query]',
|
||||
|
||||
@ -1 +1 @@
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><title>best-resume-ever</title><link href=/best-resume-ever/static/css/app.93b0b43de44566e679cbcb1192e60799.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=/best-resume-ever/static/js/manifest.9e85fafdfbbcf91af5e7.js></script><script type=text/javascript src=/best-resume-ever/static/js/vendor.651023c261ca8937f2d6.js></script><script type=text/javascript src=/best-resume-ever/static/js/app.e2c878cafbb20641fa24.js></script></body></html>
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><meta http-equiv=X-UA-Compatible content="ie=edge"><title>best-resume-ever</title><link href=/best-resume-ever/static/css/app.a4623530729577e160955f70a7311e40.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=/best-resume-ever/static/js/manifest.a1968370188ff6000ad1.js></script><script type=text/javascript src=/best-resume-ever/static/js/vendor.544f8f74b2921dd55bba.js></script><script type=text/javascript src=/best-resume-ever/static/js/app.7cb85790ecf110c80b21.js></script></body></html>
|
||||
File diff suppressed because one or more lines are too long
4
docs/static/css/app.a4623530729577e160955f70a7311e40.css
vendored
Normal file
4
docs/static/css/app.a4623530729577e160955f70a7311e40.css
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
docs/static/fonts/Roboto-Black.2a82f89.eot
vendored
BIN
docs/static/fonts/Roboto-Black.2a82f89.eot
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Black.2b8d692.woff2
vendored
BIN
docs/static/fonts/Roboto-Black.2b8d692.woff2
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Black.313a656.woff
vendored
Normal file
BIN
docs/static/fonts/Roboto-Black.313a656.woff
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Black.44236ad.ttf
vendored
BIN
docs/static/fonts/Roboto-Black.44236ad.ttf
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Black.4c3b622.woff
vendored
BIN
docs/static/fonts/Roboto-Black.4c3b622.woff
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Black.59eb360.woff2
vendored
Normal file
BIN
docs/static/fonts/Roboto-Black.59eb360.woff2
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Black.b8ff9b5.eot
vendored
Normal file
BIN
docs/static/fonts/Roboto-Black.b8ff9b5.eot
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Black.ec4c996.ttf
vendored
Normal file
BIN
docs/static/fonts/Roboto-Black.ec4c996.ttf
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-BlackItalic.38d14dd.woff2
vendored
BIN
docs/static/fonts/Roboto-BlackItalic.38d14dd.woff2
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-BlackItalic.3a99796.woff
vendored
BIN
docs/static/fonts/Roboto-BlackItalic.3a99796.woff
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-BlackItalic.4b7407c.eot
vendored
BIN
docs/static/fonts/Roboto-BlackItalic.4b7407c.eot
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-BlackItalic.50705c5.ttf
vendored
Normal file
BIN
docs/static/fonts/Roboto-BlackItalic.50705c5.ttf
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-BlackItalic.ad0f284.ttf
vendored
BIN
docs/static/fonts/Roboto-BlackItalic.ad0f284.ttf
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-BlackItalic.b283ac9.eot
vendored
Normal file
BIN
docs/static/fonts/Roboto-BlackItalic.b283ac9.eot
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-BlackItalic.cc2fadc.woff
vendored
Normal file
BIN
docs/static/fonts/Roboto-BlackItalic.cc2fadc.woff
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-BlackItalic.f75569f.woff2
vendored
Normal file
BIN
docs/static/fonts/Roboto-BlackItalic.f75569f.woff2
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Bold.50d75e4.woff
vendored
Normal file
BIN
docs/static/fonts/Roboto-Bold.50d75e4.woff
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Bold.56a76a2.ttf
vendored
BIN
docs/static/fonts/Roboto-Bold.56a76a2.ttf
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Bold.7345066.eot
vendored
Normal file
BIN
docs/static/fonts/Roboto-Bold.7345066.eot
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Bold.ab96cca.woff2
vendored
BIN
docs/static/fonts/Roboto-Bold.ab96cca.woff2
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Bold.ad140ff.woff
vendored
BIN
docs/static/fonts/Roboto-Bold.ad140ff.woff
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Bold.b52fac2.woff2
vendored
Normal file
BIN
docs/static/fonts/Roboto-Bold.b52fac2.woff2
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Bold.c8bcb1c.eot
vendored
BIN
docs/static/fonts/Roboto-Bold.c8bcb1c.eot
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Bold.ee7b96f.ttf
vendored
Normal file
BIN
docs/static/fonts/Roboto-Bold.ee7b96f.ttf
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-BoldItalic.1eb7a89.ttf
vendored
Normal file
BIN
docs/static/fonts/Roboto-BoldItalic.1eb7a89.ttf
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-BoldItalic.355e388.woff2
vendored
BIN
docs/static/fonts/Roboto-BoldItalic.355e388.woff2
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-BoldItalic.4b2cc52.eot
vendored
BIN
docs/static/fonts/Roboto-BoldItalic.4b2cc52.eot
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-BoldItalic.4fe0f73.woff
vendored
Normal file
BIN
docs/static/fonts/Roboto-BoldItalic.4fe0f73.woff
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-BoldItalic.94008e6.woff2
vendored
Normal file
BIN
docs/static/fonts/Roboto-BoldItalic.94008e6.woff2
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-BoldItalic.a7dce23.woff
vendored
BIN
docs/static/fonts/Roboto-BoldItalic.a7dce23.woff
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-BoldItalic.cd56bcf.eot
vendored
Normal file
BIN
docs/static/fonts/Roboto-BoldItalic.cd56bcf.eot
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-BoldItalic.d23d5bd.ttf
vendored
BIN
docs/static/fonts/Roboto-BoldItalic.d23d5bd.ttf
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Light.020877f.eot
vendored
Normal file
BIN
docs/static/fonts/Roboto-Light.020877f.eot
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Light.1830791.eot
vendored
BIN
docs/static/fonts/Roboto-Light.1830791.eot
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Light.37fbbba.woff
vendored
BIN
docs/static/fonts/Roboto-Light.37fbbba.woff
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Light.8e0860f.woff2
vendored
BIN
docs/static/fonts/Roboto-Light.8e0860f.woff2
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Light.a2b8c64.ttf
vendored
BIN
docs/static/fonts/Roboto-Light.a2b8c64.ttf
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Light.c73eb1c.woff
vendored
Normal file
BIN
docs/static/fonts/Roboto-Light.c73eb1c.woff
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Light.d26871e.woff2
vendored
Normal file
BIN
docs/static/fonts/Roboto-Light.d26871e.woff2
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Light.fc84e99.ttf
vendored
Normal file
BIN
docs/static/fonts/Roboto-Light.fc84e99.ttf
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-LightItalic.056caea.ttf
vendored
BIN
docs/static/fonts/Roboto-LightItalic.056caea.ttf
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-LightItalic.13efe6c.woff
vendored
Normal file
BIN
docs/static/fonts/Roboto-LightItalic.13efe6c.woff
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-LightItalic.76ce6e2.eot
vendored
Normal file
BIN
docs/static/fonts/Roboto-LightItalic.76ce6e2.eot
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-LightItalic.879d940.woff2
vendored
BIN
docs/static/fonts/Roboto-LightItalic.879d940.woff2
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-LightItalic.c7b4e74.woff
vendored
BIN
docs/static/fonts/Roboto-LightItalic.c7b4e74.woff
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-LightItalic.cdd1c48.eot
vendored
BIN
docs/static/fonts/Roboto-LightItalic.cdd1c48.eot
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-LightItalic.d1efcd4.ttf
vendored
Normal file
BIN
docs/static/fonts/Roboto-LightItalic.d1efcd4.ttf
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-LightItalic.e8eaae9.woff2
vendored
Normal file
BIN
docs/static/fonts/Roboto-LightItalic.e8eaae9.woff2
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Medium.1d65948.woff
vendored
Normal file
BIN
docs/static/fonts/Roboto-Medium.1d65948.woff
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Medium.2741a14.woff2
vendored
BIN
docs/static/fonts/Roboto-Medium.2741a14.woff2
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Medium.303ded6.woff
vendored
BIN
docs/static/fonts/Roboto-Medium.303ded6.woff
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Medium.76cad5b.eot
vendored
BIN
docs/static/fonts/Roboto-Medium.76cad5b.eot
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Medium.90d1676.woff2
vendored
Normal file
BIN
docs/static/fonts/Roboto-Medium.90d1676.woff2
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Medium.a7943c3.eot
vendored
Normal file
BIN
docs/static/fonts/Roboto-Medium.a7943c3.eot
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Medium.c54f2a3.ttf
vendored
BIN
docs/static/fonts/Roboto-Medium.c54f2a3.ttf
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Medium.d088405.ttf
vendored
Normal file
BIN
docs/static/fonts/Roboto-Medium.d088405.ttf
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-MediumItalic.13ec0eb.woff2
vendored
Normal file
BIN
docs/static/fonts/Roboto-MediumItalic.13ec0eb.woff2
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-MediumItalic.7a49ce7.eot
vendored
BIN
docs/static/fonts/Roboto-MediumItalic.7a49ce7.eot
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-MediumItalic.83e114c.woff
vendored
Normal file
BIN
docs/static/fonts/Roboto-MediumItalic.83e114c.woff
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-MediumItalic.91f50d0.eot
vendored
Normal file
BIN
docs/static/fonts/Roboto-MediumItalic.91f50d0.eot
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-MediumItalic.bd19ad6.ttf
vendored
Normal file
BIN
docs/static/fonts/Roboto-MediumItalic.bd19ad6.ttf
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-MediumItalic.da059a7.woff
vendored
BIN
docs/static/fonts/Roboto-MediumItalic.da059a7.woff
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-MediumItalic.f10d1f4.woff2
vendored
BIN
docs/static/fonts/Roboto-MediumItalic.f10d1f4.woff2
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-MediumItalic.fa18335.ttf
vendored
BIN
docs/static/fonts/Roboto-MediumItalic.fa18335.ttf
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Regular.081b11e.woff
vendored
BIN
docs/static/fonts/Roboto-Regular.081b11e.woff
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Regular.35b07eb.woff
vendored
Normal file
BIN
docs/static/fonts/Roboto-Regular.35b07eb.woff
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Regular.3e1af3e.ttf
vendored
Normal file
BIN
docs/static/fonts/Roboto-Regular.3e1af3e.ttf
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Regular.6866c2b.eot
vendored
Normal file
BIN
docs/static/fonts/Roboto-Regular.6866c2b.eot
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Regular.6a561d6.eot
vendored
BIN
docs/static/fonts/Roboto-Regular.6a561d6.eot
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Regular.73f0a88.woff2
vendored
Normal file
BIN
docs/static/fonts/Roboto-Regular.73f0a88.woff2
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Regular.99b14f0.ttf
vendored
BIN
docs/static/fonts/Roboto-Regular.99b14f0.ttf
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Regular.b2a6341.woff2
vendored
BIN
docs/static/fonts/Roboto-Regular.b2a6341.woff2
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-RegularItalic.35e55b1.eot
vendored
Normal file
BIN
docs/static/fonts/Roboto-RegularItalic.35e55b1.eot
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-RegularItalic.42bbe4e.ttf
vendored
Normal file
BIN
docs/static/fonts/Roboto-RegularItalic.42bbe4e.ttf
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-RegularItalic.4357beb.woff2
vendored
Normal file
BIN
docs/static/fonts/Roboto-RegularItalic.4357beb.woff2
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-RegularItalic.8add1ba.woff
vendored
BIN
docs/static/fonts/Roboto-RegularItalic.8add1ba.woff
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-RegularItalic.90dbf90.ttf
vendored
BIN
docs/static/fonts/Roboto-RegularItalic.90dbf90.ttf
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-RegularItalic.df8e3a9.woff2
vendored
BIN
docs/static/fonts/Roboto-RegularItalic.df8e3a9.woff2
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-RegularItalic.f3660f4.eot
vendored
BIN
docs/static/fonts/Roboto-RegularItalic.f3660f4.eot
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-RegularItalic.f5902d5.woff
vendored
Normal file
BIN
docs/static/fonts/Roboto-RegularItalic.f5902d5.woff
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Thin.790ebf4.woff2
vendored
BIN
docs/static/fonts/Roboto-Thin.790ebf4.woff2
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Thin.89e2666.ttf
vendored
Normal file
BIN
docs/static/fonts/Roboto-Thin.89e2666.ttf
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Thin.90d3804.woff
vendored
BIN
docs/static/fonts/Roboto-Thin.90d3804.woff
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Thin.9b2ed84.eot
vendored
Normal file
BIN
docs/static/fonts/Roboto-Thin.9b2ed84.eot
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Thin.ad538a6.woff2
vendored
Normal file
BIN
docs/static/fonts/Roboto-Thin.ad538a6.woff2
vendored
Normal file
Binary file not shown.
BIN
docs/static/fonts/Roboto-Thin.c25fd8d.eot
vendored
BIN
docs/static/fonts/Roboto-Thin.c25fd8d.eot
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Thin.cc85ce3.ttf
vendored
BIN
docs/static/fonts/Roboto-Thin.cc85ce3.ttf
vendored
Binary file not shown.
BIN
docs/static/fonts/Roboto-Thin.d3b4737.woff
vendored
Normal file
BIN
docs/static/fonts/Roboto-Thin.d3b4737.woff
vendored
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user