Skip to content

Commit 53c160b

Browse files
authored
Merge pull request #123 from czeckd/ng10
Update to Angular 10
2 parents 868cb27 + 7f2430b commit 53c160b

15 files changed

+9860
-5713
lines changed
File renamed without changes.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2019 David Czeck.
3+
Copyright (c) 2020 David Czeck.
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Angular Dual-Listbox
44
=========
55

6-
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.
6+
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.
77
The component supports multiple select options from the list, programatic setting of list sources, and layout with direction and button formatting.
88

99
A [working demo](http://czeckd.github.io/angular-dual-listbox/) shows the dual listbox in action.

angular.json

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"main": "src/main.ts",
4242
"polyfills": "src/polyfills.ts",
4343
"tsConfig": "tsconfig.app.json",
44-
"aot": false,
44+
"aot": true,
4545
"assets": [
4646
"src/favicon.ico",
4747
"src/assets"
@@ -64,7 +64,6 @@
6464
"sourceMap": false,
6565
"extractCss": true,
6666
"namedChunks": false,
67-
"aot": true,
6867
"extractLicenses": true,
6968
"vendorChunk": false,
7069
"buildOptimizer": true,
@@ -73,6 +72,10 @@
7372
"type": "initial",
7473
"maximumWarning": "2mb",
7574
"maximumError": "5mb"
75+
},
76+
{
77+
"type": "anyComponentStyle",
78+
"maximumWarning": "6kb"
7679
}
7780
]
7881
}
@@ -120,6 +123,11 @@
120123
"options": {
121124
"tsConfig": "projects/angular-dual-listbox/tsconfig.lib.json",
122125
"project": "projects/angular-dual-listbox/ng-package.json"
126+
},
127+
"configurations": {
128+
"production": {
129+
"tsConfig": "projects/angular-dual-listbox/tsconfig.lib.prod.json"
130+
}
123131
}
124132
},
125133
"test": {
@@ -145,4 +153,4 @@
145153
}
146154
}},
147155
"defaultProject": "dual-listbox"
148-
}
156+
}

0 commit comments

Comments
 (0)