Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update/Upgrade package depenency #1572

Merged
merged 10 commits into from
Jan 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions js/Release.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Release note

### version 1.19.1 (2021-01-05)

- Update package dependency

### version 1.19.0 (2020-12-18)

- Multiline component
Expand Down
4,412 changes: 1,591 additions & 2,821 deletions js/package-lock.json

Large diffs are not rendered by default.

46 changes: 22 additions & 24 deletions js/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "atkjs-ui",
"version": "1.19.0",
"version": "1.19.1",
"description": "Agile Toolkit Javascript library.",
"main": "lib/atkjs-ui.js",
"scripts": {
"build": "webpack --env.production",
"dev": "webpack --progress --colors --watch --env.development",
"profile": "webpack --env.production --profile --json > ./profile/atkjs-bundle-profile.json",
"build": "webpack --env production",
"dev": "webpack --progress --watch --env development",
"profile": "webpack --env production --profile --json > ./profile/atkjs-bundle-profile.json",
"analyze-profile": "webpack-bundle-analyzer ./profile/atkjs-bundle-profile.json",
"lint": "eslint -c .eslintrc.js --ext .js,.vue .",
"lint-fix": "eslint -c .eslintrc.js --ext .js,.vue . --fix"
Expand All @@ -22,34 +22,32 @@
},
"homepage": "http://www.agiletoolkit.org/",
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"babel-loader": "^8.1.0",
"css-loader": "^4.2.2",
"eslint": "^7.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-vue": "^6.2.2",
"serialize-javascript": "^4.0.0",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.1.0",
"vue-loader": "^15.9.2",
"eslint-plugin-vue": "^7.4.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.0.3",
"vue-loader": "^15.9.6",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"column-resizer": "^1.3.5",
"core-js": "^3.6.5",
"@babel/runtime": "^7.12.5",
"column-resizer": "^1.3.6",
"core-js": "^3.8.2",
"debounce": "^1.1.0",
"locutus": "^2.0.11",
"locutus": "^2.0.14",
"lodash.throttle": "^4.1.1",
"mitt": "^2.1.0",
"semantic-ui-vue": "^0.11.0",
"v-calendar": "^1.0.8",
"vue": "^2.6.12",
"vue-flatpickr-component": "^8.1.6",
"vue-query-builder": "^0.8.2"
Expand Down
3 changes: 1 addition & 2 deletions js/src/components/share/atk-lookup.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
* value: The selected value.
* optionalValue: The initial list of options for the dropdown.
*/
import { isArray } from 'v-calendar/src/utils/_';

const template = `<sui-dropdown
ref="drop"
Expand Down Expand Up @@ -47,7 +46,7 @@ export default {
},
mounted: function () {
if (this.optionalValue) {
this.dropdownProps.options = isArray(this.optionalValue) ? this.optionalValue : [this.optionalValue];
this.dropdownProps.options = Array.isArray(this.optionalValue) ? this.optionalValue : [this.optionalValue];
}
},
methods: {
Expand Down
2 changes: 1 addition & 1 deletion public/atk-vue-inline-edit.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/atk-vue-item-search.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading