Skip to content
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
8 changes: 4 additions & 4 deletions docs/en/framework/ui/mvc-razor-pages/bundling-minification.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The simplest way of creating a bundle is to use `abp-script-bundle` or `abp-styl
<abp-style-bundle name="MyGlobalBundle">
<abp-style src="/libs/bootstrap/css/bootstrap.css" />
<abp-style src="/libs/font-awesome/css/font-awesome.css" />
<abp-style src="/libs/toastr/toastr.css" />
<abp-style src="/libs/datatables.net-bs5/css/dataTables.bootstrap5.css" />
<abp-style src="/styles/my-global-style.css" />
</abp-style-bundle>
````
Expand Down Expand Up @@ -65,7 +65,7 @@ The `name` is **optional** for the razor bundle tag helpers. If you don't define
<abp-style-bundle>
<abp-style src="/libs/bootstrap/css/bootstrap.css" />
<abp-style src="/libs/font-awesome/css/font-awesome.css" />
<abp-style src="/libs/toastr/toastr.css" />
<abp-style src="/libs/datatables.net-bs5/css/dataTables.bootstrap5.css" />
@if (ViewBag.IncludeCustomStyles != false)
{
<abp-style src="/styles/my-global-style.css" />
Expand Down Expand Up @@ -115,7 +115,7 @@ public class MyWebModule : AbpModule
bundle.AddFiles(
"/libs/jquery/jquery.js",
"/libs/bootstrap/js/bootstrap.js",
"/libs/toastr/toastr.min.js",
"/libs/lodash/lodash.min.js",
"/scripts/my-global-scripts.js"
);
});
Expand Down Expand Up @@ -220,7 +220,7 @@ Contributors can also be used in the bundle tag helpers. Example:
<abp-style-bundle>
<abp-style type="@typeof(BootstrapStyleContributor)" />
<abp-style src="/libs/font-awesome/css/font-awesome.css" />
<abp-style src="/libs/toastr/toastr.css" />
<abp-style src="/libs/datatables.net-bs5/css/dataTables.bootstrap5.css" />
</abp-style-bundle>
````

Expand Down
4 changes: 1 addition & 3 deletions docs/en/framework/ui/mvc-razor-pages/overall.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,8 @@ There are a set of standard JavaScript/CSS libraries that comes pre-installed an
- [JQuery Validation](https://jqueryvalidation.org/) for client side & [unobtrusive](https://github.com/aspnet/jquery-validation-unobtrusive) validation
- [FontAwesome](https://fontawesome.com/) as the fundamental CSS font library.
- [SweetAlert](https://sweetalert.js.org/) to show fancy alert message and confirmation dialogs.
- [Toastr](https://github.com/CodeSeven/toastr) to show toast notifications.
- [Lodash](https://lodash.com/) as a utility library.
- [Luxon](https://moment.github.io/luxon/) for date/time operations.
- [JQuery Form](https://github.com/jquery-form/form) for AJAX forms.
- [bootstrap-datepicker](https://github.com/uxsolutions/bootstrap-datepicker) to show date pickers.
- [Select2](https://select2.org/) for better select/combo boxes.
- [Timeago](http://timeago.yarp.com/) to show automatically updating fuzzy timestamps.
Expand Down Expand Up @@ -140,7 +138,7 @@ ABP provides a flexible and modular Bundling & Minification system to create bun
<abp-style-bundle>
<abp-style src="/libs/bootstrap/css/bootstrap.css" />
<abp-style src="/libs/font-awesome/css/font-awesome.css" />
<abp-style src="/libs/toastr/toastr.css" />
<abp-style src="/libs/datatables.net-bs5/css/dataTables.bootstrap5.css" />
<abp-style src="/styles/my-global-style.css" />
</abp-style-bundle>
```
Expand Down
4 changes: 1 addition & 3 deletions docs/en/framework/ui/mvc-razor-pages/theming.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,8 @@ All the themes must depend on the [@abp/aspnetcore.mvc.ui.theme.shared](https://
* [JQuery Validation](https://github.com/jquery-validation/jquery-validation) for client side & [unobtrusive](https://github.com/aspnet/jquery-validation-unobtrusive) validation
* [FontAwesome](https://fontawesome.com/) as the fundamental CSS font library.
* [SweetAlert](https://sweetalert.js.org/) to show fancy alert message and confirmation dialogs.
* [Toastr](https://github.com/CodeSeven/toastr) to show toast notifications.
* [Lodash](https://lodash.com/) as a utility library.
* [Luxon](https://moment.github.io/luxon/) for date/time operations.
* [JQuery Form](https://github.com/jquery-form/form) for AJAX forms.
* [bootstrap-datepicker](https://github.com/uxsolutions/bootstrap-datepicker) to show date pickers.
* [Select2](https://select2.org/) for better select/combo boxes.
Comment on lines 46 to 50
* [Timeago](http://timeago.yarp.com/) to show automatically updating fuzzy timestamps.
Expand All @@ -60,7 +58,7 @@ These libraries are selected as the base libraries and available to the applicat
There are some abstractions in the ABP to make your code independent from some of these libraries too. Examples;

* [Tag Helpers](tag-helpers) makes it easy to generate the Bootstrap UIs.
* JavaScript [Message](javascript-api/message.md) and [Notification](javascript-api/notify.md) APIs provides abstractions to use the Sweetalert and Toastr.
* 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.
* [Forms & Validation](forms-validation.md) system automatically handles the validation, so you mostly don't directly type any validation code.

### The Standard Layouts
Expand Down
129 changes: 0 additions & 129 deletions npm/packs/jquery-form/README.md

This file was deleted.

5 changes: 0 additions & 5 deletions npm/packs/jquery-form/abp.resourcemapping.js

This file was deleted.

32 changes: 0 additions & 32 deletions npm/packs/jquery-form/package.json

This file was deleted.

22 changes: 0 additions & 22 deletions npm/packs/jquery-form/src/jquery.form.min.js

This file was deleted.

129 changes: 0 additions & 129 deletions npm/packs/toastr/README.md

This file was deleted.

5 changes: 0 additions & 5 deletions npm/packs/toastr/abp.resourcemapping.js

This file was deleted.

Loading
Loading