Skip to content

Commit

Permalink
Merge pull request #123 from czeckd/ng10
Browse files Browse the repository at this point in the history
Update to Angular 10
  • Loading branch information
czeckd authored Jul 8, 2020
2 parents 868cb27 + 7f2430b commit 53c160b
Show file tree
Hide file tree
Showing 15 changed files with 9,860 additions and 5,713 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2019 David Czeck.
Copyright (c) 2020 David Czeck.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Angular Dual-Listbox
=========

The **angular-dual-listbox** is an Angular 8 component that provides two lists controls side-by-side that allows items in one list to be selected and moved* to the other list via drag-and-drop and/or a button-based interface.
The **angular-dual-listbox** is an Angular 10 component that provides two lists controls side-by-side that allows items in one list to be selected and moved* to the other list via drag-and-drop and/or a button-based interface.
The component supports multiple select options from the list, programatic setting of list sources, and layout with direction and button formatting.

A [working demo](http://czeckd.github.io/angular-dual-listbox/) shows the dual listbox in action.
Expand Down
14 changes: 11 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": false,
"aot": true,
"assets": [
"src/favicon.ico",
"src/assets"
Expand All @@ -64,7 +64,6 @@
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
Expand All @@ -73,6 +72,10 @@
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
]
}
Expand Down Expand Up @@ -120,6 +123,11 @@
"options": {
"tsConfig": "projects/angular-dual-listbox/tsconfig.lib.json",
"project": "projects/angular-dual-listbox/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/angular-dual-listbox/tsconfig.lib.prod.json"
}
}
},
"test": {
Expand All @@ -145,4 +153,4 @@
}
}},
"defaultProject": "dual-listbox"
}
}
Loading

0 comments on commit 53c160b

Please sign in to comment.