Skip to content

Commit 93f5a81

Browse files
authored
Merge pull request #26037 from abpframework/maliming/complete-vendored-pack-metadata
Add missing dependencies and license file to vendored npm packs
2 parents 466e149 + cc78e41 commit 93f5a81

6 files changed

Lines changed: 32 additions & 5 deletions

File tree

docs/en/framework/ui/mvc-razor-pages/theming.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ These libraries are selected as the base libraries and available to the applicat
5757
There are some abstractions in the ABP to make your code independent from some of these libraries too. Examples;
5858

5959
* [Tag Helpers](tag-helpers) makes it easy to generate the Bootstrap UIs.
60-
* JavaScript [Message](javascript-api/message.md) and [Notification](javascript-api/notify.md) APIs provides abstractions to use the Sweetalert and the built-in toast implementation.
60+
* JavaScript [Message](javascript-api/message.md) and [Notification](javascript-api/notify.md) APIs provide abstractions to use the SweetAlert and the built-in toast implementations.
6161
* [Forms & Validation](forms-validation.md) system automatically handles the validation, so you mostly don't directly type any validation code.
6262

6363
### The Standard Layouts

npm/packs/bootstrap-datepicker/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"access": "public"
1111
},
1212
"dependencies": {
13-
"bootstrap-datepicker": "1.10.1"
13+
"bootstrap-datepicker": "1.10.1",
14+
"jquery": "~4.0.0"
1415
},
1516
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
1617
"homepage": "https://abp.io",

npm/packs/bootstrap-daterangepicker/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
"access": "public"
1111
},
1212
"dependencies": {
13-
"@abp/moment": "~10.7.0-rc.3"
13+
"@abp/moment": "~10.7.0-rc.3",
14+
"jquery": "~4.0.0",
15+
"moment": "^2.30.1"
1416
},
1517
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
1618
"homepage": "https://abp.io",
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) .NET Foundation and Contributors
4+
5+
All rights reserved.
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy
8+
of this software and associated documentation files (the "Software"), to deal
9+
in the Software without restriction, including without limitation the rights
10+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
copies of the Software, and to permit persons to whom the Software is
12+
furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE.

npm/packs/jquery-validation-unobtrusive/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"access": "public"
1111
},
1212
"dependencies": {
13-
"@abp/jquery-validation": "~10.7.0-rc.3"
13+
"@abp/jquery-validation": "~10.7.0-rc.3",
14+
"jquery-validation": "^1.22.1"
1415
},
1516
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
1617
"homepage": "https://abp.io",

npm/packs/jquery-validation-unobtrusive/src/jquery.validate.unobtrusive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @license
33
* Unobtrusive validation support library for jQuery and jQuery Validate
44
* Copyright (c) .NET Foundation. All rights reserved.
5-
* Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
5+
* Licensed under the MIT License. See License.txt in the package root for license information.
66
* @version v4.0.0
77
* Patched copy: uses JSON.parse, typeof and Function.prototype.bind instead of the jQuery APIs removed or deprecated in jQuery 4.
88
*/

0 commit comments

Comments
 (0)