Skip to content

Commit

Permalink
fix(filter): update multiple-select to fix select filtering
Browse files Browse the repository at this point in the history
- fixes Angular-Slickgrid issue [#865](ghiscoding/Angular-Slickgrid#865)
- recent commit to add multiple-select fixed height (with variable `slick-multiselect-item-height`) conflicted with multiple-select styling since that external lib only changed the child <label> display, while in fact it should be hiding its <li> parent, this is now exactly what the new version of multiple-select does
- also update few npm packages
  • Loading branch information
ghiscoding committed Dec 16, 2021
1 parent 0f911b5 commit 63dcd08
Show file tree
Hide file tree
Showing 5 changed files with 353 additions and 396 deletions.
10 changes: 5 additions & 5 deletions examples/webpack-demo-vanilla-bundle/package.json
Expand Up @@ -39,25 +39,25 @@
"@slickgrid-universal/text-export": "^1.1.1",
"@slickgrid-universal/vanilla-bundle": "^1.1.1",
"bulma": "^0.9.3",
"esbuild-loader": "^2.16.0",
"esbuild-loader": "^2.17.0",
"moment-mini": "^2.24.0",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@types/jquery": "^3.5.10",
"@types/moment": "^2.13.0",
"@types/node": "^16.11.12",
"@types/node": "^17.0.0",
"@types/webpack": "^5.28.0",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^10.1.0",
"css-loader": "^6.5.1",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"html-loader": "^3.0.1",
"html-webpack-plugin": "5.5.0",
"mini-css-extract-plugin": "^2.4.5",
"rxjs": "^7.4.0",
"sass": "^1.44.0",
"sass": "^1.45.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"ts-node": "^10.4.0",
Expand All @@ -66,4 +66,4 @@
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
}
}
}
14 changes: 7 additions & 7 deletions package.json
Expand Up @@ -60,16 +60,16 @@
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"cypress": "^9.1.1",
"eslint": "^8.4.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^27.4.3",
"jest-cli": "^27.4.3",
"jest-environment-jsdom": "^27.4.3",
"jest": "^27.4.5",
"jest-cli": "^27.4.5",
"jest-environment-jsdom": "^27.4.4",
"jest-extended": "^1.2.0",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
Expand All @@ -80,7 +80,7 @@
"rxjs": "^7.4.0",
"serve": "^13.0.2",
"ts-jest": "^27.1.1",
"typescript": "^4.5.3"
"typescript": "^4.5.4"
},
"engines": {
"node": ">=14.17.0",
Expand Down
12 changes: 6 additions & 6 deletions packages/common/package.json
Expand Up @@ -77,12 +77,12 @@
"jquery": "~3.5.1",
"jquery-ui-dist": "^1.12.1",
"moment-mini": "^2.24.0",
"multiple-select-modified": "^1.3.15",
"multiple-select-modified": "^1.3.17",
"slickgrid": "^2.4.44",
"un-flatten-tree": "^2.0.12"
},
"devDependencies": {
"@types/dompurify": "^2.3.1",
"@types/dompurify": "^2.3.2",
"@types/jquery": "^3.5.10",
"@types/moment": "^2.13.0",
"autoprefixer": "^10.4.0",
Expand All @@ -91,13 +91,13 @@
"mini-css-extract-plugin": "^2.4.5",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.4",
"postcss-cli": "^9.0.2",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"rimraf": "^3.0.2",
"sass": "^1.44.0"
"sass": "^1.45.0"
},
"engines": {
"node": ">=14.17.0",
"npm": ">=6.14.8"
}
}
}
4 changes: 2 additions & 2 deletions packages/vanilla-force-bundle/package.json
Expand Up @@ -74,6 +74,6 @@
"html-loader": "^3.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"webpack": "^5.64.4"
"webpack": "^5.65.0"
}
}
}

0 comments on commit 63dcd08

Please sign in to comment.