Skip to content

Commit e39bb67

Browse files
Add the Configurator component
The `Configurator` components allows the user to generate his custom option object via a form, and to copy it to the clipboard. Update Quasar to version `0.15.14` Create a 'formatting' mixin to share the `shownValue()` method Fix the import case, which allows to not having to specify it in the Webpack configuration Fix an error in the `AutoNumericOption` component, by allowing `defaultCustomValue` to be an object Minor improvements here and there Signed-off-by: Alexandre Bonneau <[email protected]>
1 parent 7c59a88 commit e39bb67

Some content is hidden

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

67 files changed

+6376
-4537
lines changed

Diff for: .babelrc

+13-28
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,15 @@
11
{
2-
"presets": [
3-
[
4-
"env",
5-
{
6-
"modules": false,
7-
"loose": true,
8-
"targets": {
9-
"browsers": [
10-
"last 2 versions",
11-
"safari >= 7"
12-
]
13-
}
14-
}
15-
],
16-
[
17-
"es2015",
18-
{
19-
"modules": false,
20-
"targets": "es5"
21-
}
22-
],
23-
"stage-2"
24-
],
25-
"plugins": [
26-
"transform-runtime",
27-
"transform-object-assign"
28-
],
29-
"comments": false
2+
"presets": [
3+
[
4+
"env",
5+
{
6+
"modules": false
7+
}
8+
],
9+
"stage-2"
10+
],
11+
"plugins": [
12+
"transform-runtime"
13+
],
14+
"comments": false
3015
}

Diff for: .eslintignore

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
build/*.js
2-
config/*.js
3-
dist/*.js
1+
/dist

Diff for: .gitignore

+15-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
1+
.quasar
12
.DS_Store
23
.thumbs.db
3-
node_modules/
4-
dist/
4+
node_modules
5+
/dist
6+
/src-cordova/platforms
7+
/src-cordova/plugins
8+
/src-cordova/www
59
npm-debug.log*
6-
cordova/platforms
7-
cordova/plugins
10+
yarn-debug.log*
11+
yarn-error.log*
812

9-
.idea/
13+
# Editor directories and files
14+
.idea
15+
.vscode
16+
*.suo
17+
*.ntvs*
18+
*.njsproj
19+
*.sln

Diff for: .postcssrc.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// https://github.com/michael-ciniawsky/postcss-load-config
2+
3+
module.exports = {
4+
plugins: [
5+
// to edit target browsers: use "browserslist" field in package.json
6+
require('autoprefixer'),
7+
],
8+
};

Diff for: LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright © 2017 Alexandre Bonneau <[email protected]>
3+
Copyright © 2018 Alexandre Bonneau <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Diff for: build/css-utils.js

-91
This file was deleted.

Diff for: build/env-utils.js

-13
This file was deleted.

Diff for: build/fs-utils.js

-13
This file was deleted.

Diff for: build/hot-reload.js

-3
This file was deleted.

Diff for: build/script.build.js

-53
This file was deleted.

Diff for: build/script.clean.js

-7
This file was deleted.

Diff for: build/script.dev.js

-86
This file was deleted.

Diff for: build/service-worker-dev.js

-17
This file was deleted.

0 commit comments

Comments
 (0)