Use new npm packages from docs module

pull/626/head
Halil ibrahim Kalkan 6 years ago
parent 0be5a506c2
commit 733a503271

@ -4,6 +4,6 @@
"private": true,
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.basic": "^0.4.9",
"@abp/docs": "^0.5.0"
"@abp/docs": "^0.5.1"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

@ -0,0 +1,37 @@
{
"name": "malihu-custom-scrollbar-plugin",
"version": "3.1.5",
"author": "malihu (http://manos.malihu.gr)",
"description": "Highly customizable custom scrollbar jQuery plugin, featuring vertical/horizontal scrollbars, scrolling momentum, mouse-wheel, keyboard and touch support user defined callbacks etc.",
"license": "MIT",
"homepage": "http://manos.malihu.gr/jquery-custom-content-scroller",
"main": "./jquery.mCustomScrollbar.js",
"repository": {
"type": "git",
"url": "https://github.com/malihu/malihu-custom-scrollbar-plugin.git"
},
"bugs": {
"url": "https://github.com/malihu/malihu-custom-scrollbar-plugin/issues"
},
"keywords": [
"jquery-plugin",
"custom-scrollbar",
"scrollbar"
],
"files": [
"jquery.mCustomScrollbar.js",
"jquery.mCustomScrollbar.concat.min.js",
"jquery.mCustomScrollbar.css",
"mCSB_buttons.png",
"readme.md"
],
"jam": {
"dependencies": {
"jquery": ">=1.6",
"jquery-mousewheel": ">=3.0.6"
}
},
"dependencies": {
"jquery-mousewheel": ">=3.0.6"
}
}

@ -0,0 +1,82 @@
malihu custom scrollbar plugin
================================
Highly customizable custom scrollbar jQuery plugin ([Demo](http://manos.malihu.gr/repository/custom-scrollbar/demo/examples/complete_examples.html)). Features include:
* Vertical and/or horizontal scrollbar(s)
* Adjustable scrolling momentum
* Mouse-wheel, keyboard and touch support
* Ready-to-use themes and customization via CSS
* RTL direction support
* Option parameters for full control of scrollbar functionality
* Methods for triggering actions like scroll-to, update, destroy etc.
* User-defined callbacks
* Selectable/searchable content
**[Plugin homepage and documentation](http://manos.malihu.gr/jquery-custom-content-scroller/)** ([Changelog](http://manos.malihu.gr/jquery-custom-content-scroller/2/))
#### Installation
npm: `npm install malihu-custom-scrollbar-plugin`
Bower: `bower install malihu-custom-scrollbar-plugin`
[Manual](http://manos.malihu.gr/jquery-custom-content-scroller/#get-started-section)
#### Usage
Manual: `$(selector).mCustomScrollbar();`
[Browserify](http://browserify.org/):
var $ = require('jquery');
require('malihu-custom-scrollbar-plugin')($);
[webpack](https://webpack.github.io/):
npm install imports-loader
npm install jquery-mousewheel
npm install malihu-custom-scrollbar-plugin
module.exports = {
module: {
loaders: [
{ test: /jquery-mousewheel/, loader: "imports?define=>false&this=>window" },
{ test: /malihu-custom-scrollbar-plugin/, loader: "imports?define=>false&this=>window" }
]
}
};
var $ = require('jquery');
require("jquery-mousewheel")($);
require('malihu-custom-scrollbar-plugin')($);
Requirements
-------------------------
jQuery version **1.6.0** or higher
Browser compatibility
-------------------------
* Internet Explorer 8+
* Firefox
* Chrome
* Opera
* Safari
* iOS
* Android
* Windows Phone
License
-------------------------
MIT License (MIT)
http://opensource.org/licenses/MIT
Donate
-------------------------
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UYJ5G65M6ZA28

@ -2,9 +2,9 @@
# yarn lockfile v1
"@abp/anchor-js@^0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-0.5.0.tgz#6284b2b44fc4c7b5266fae609629ba2b55200d75"
"@abp/anchor-js@^0.5.1":
version "0.5.1"
resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-0.5.1.tgz#5693bb317f08f9a05bb579f63d6ee011033d3632"
dependencies:
"@abp/core" "^0.4.9"
anchor-js "^4.1.1"
@ -49,9 +49,9 @@
"@abp/core" "^0.4.9"
bootstrap "^4.1.1"
"@abp/clipboard@^0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-0.5.0.tgz#a90e47b22743bae9d7b921e86f496662198a71ef"
"@abp/clipboard@^0.5.1":
version "0.5.1"
resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-0.5.1.tgz#bd799e3ed5eb316b718125fbd1010967cf0b5ec5"
dependencies:
"@abp/core" "^0.4.9"
clipboard "^2.0.4"
@ -74,15 +74,15 @@
"@abp/core" "^0.4.9"
datatables.net "^1.10.16"
"@abp/docs@^0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-0.5.0.tgz#74df66150658b16b50d4fa756f0744f8c3171083"
"@abp/docs@^0.5.1":
version "0.5.1"
resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-0.5.1.tgz#401a34eb13ad9b773a3d70319c50bb40f6f39c25"
dependencies:
"@abp/anchor-js" "^0.5.0"
"@abp/clipboard" "^0.5.0"
"@abp/malihu-custom-scrollbar-plugin" "^0.5.0"
"@abp/popper.js" "^0.5.0"
"@abp/prismjs" "^0.5.0"
"@abp/anchor-js" "^0.5.1"
"@abp/clipboard" "^0.5.1"
"@abp/malihu-custom-scrollbar-plugin" "^0.5.1"
"@abp/popper.js" "^0.5.1"
"@abp/prismjs" "^0.5.1"
"@abp/font-awesome@^0.4.9":
version "0.4.9"
@ -126,23 +126,23 @@
"@abp/core" "^0.4.9"
lodash "^4.17.10"
"@abp/malihu-custom-scrollbar-plugin@^0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-0.5.0.tgz#987d2fe165ff1ae6f700ffe9bd551a5f8a4abe46"
"@abp/malihu-custom-scrollbar-plugin@^0.5.1":
version "0.5.1"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-0.5.1.tgz#0b293c6164292aa9cb016b042735d2640ccc63fe"
dependencies:
"@abp/core" "^0.4.9"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/popper.js@^0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-0.5.0.tgz#ff89d181799f20f8faac58285a8863fe493108d7"
"@abp/popper.js@^0.5.1":
version "0.5.1"
resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-0.5.1.tgz#9bb1d1c88d467963b5acbdcfe01b7e2dbe773b0f"
dependencies:
"@abp/core" "^0.4.9"
popper.js "^1.14.6"
"@abp/prismjs@^0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-0.5.0.tgz#883c300e7065cffe6e2cc215287ca17ddfd34789"
"@abp/prismjs@^0.5.1":
version "0.5.1"
resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-0.5.1.tgz#0df2d40fe0c2a0992df03d6f8fc14682873b7f44"
dependencies:
"@abp/core" "^0.4.9"
prismjs "^1.15.0"

@ -15,25 +15,25 @@
<abp-style-bundle name="@typeof(IndexModel).FullName">
<abp-style src="/Pages/Documents/Shared/Styles/vs.css" />
<abp-style src="/Pages/Documents/Project/bootstrap-toc.css" />
<abp-style src="/libs/prismjs/prism-okaidia.css" />
<abp-style src="/libs/prismjs/prism-line-highlight.css" />
<abp-style src="/libs/prismjs/prism-toolbar.css" />
<abp-style src="/libs/mCustomScrollbar/jquery.mCustomScrollbar.css" />
<abp-style src="/libs/prismjs/themes/prism-okaidia.css" />
<abp-style src="/libs/prismjs/plugins/line-highlight/prism-line-highlight.css" />
<abp-style src="/libs/prismjs/plugins/toolbar/prism-toolbar.css" />
<abp-style src="/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css" />
</abp-style-bundle>
}
@section scripts {
<abp-script-bundle name="@typeof(IndexModel).FullName">
<abp-script src="/libs/anchor-js/anchor.js" />
<abp-script src="/libs/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js" />
<abp-script src="/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.concat.min.js" />
<abp-script src="/libs/clipboard/clipboard.js" />
<abp-script src="/libs/prismjs/prism.js" />
<abp-script src="/libs/prismjs/prism-toolbar.js" />
<abp-script src="/libs/prismjs/prism-show-language.js" />
<abp-script src="/libs/prismjs/prism-copy-to-clipboard.js" />
<abp-script src="/libs/prismjs/prism-line-highlight.js" />
<abp-script src="/Pages/Documents/Project/bootstrap-toc.js" />
<abp-script src="/libs/prismjs/prism-csharp.js" />
<abp-script src="/libs/prismjs/plugins/toolbar/prism-toolbar.js" />
<abp-script src="/libs/prismjs/plugins/show-language/prism-show-language.js" />
<abp-script src="/libs/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js" />
<abp-script src="/libs/prismjs/plugins/line-highlight/prism-line-highlight.js" />
<abp-script src="/libs/prismjs/components/prism-csharp.js" />
<abp-script src="/libs/popper.js/popper.min.js" />
<abp-script src="/Pages/Documents/Project/bootstrap-toc.js" />
<abp-script src="/Pages/Documents/Shared/Scripts/vs.js" />
<abp-script src="/Pages/Documents/Project/index.js" />
</abp-script-bundle>

@ -1,5 +1,5 @@
{
"version": "0.5.0",
"version": "0.5.1",
"packages": [
"packs/*"
],

@ -1,5 +1,5 @@
{
"version": "0.5.0",
"version": "0.5.1",
"name": "@abp/anchor-js",
"publishConfig": {
"access": "public"

@ -1,5 +1,5 @@
{
"version": "0.5.0",
"version": "0.5.1",
"name": "@abp/clipboard",
"publishConfig": {
"access": "public"

@ -1,15 +1,15 @@
{
"version": "0.5.0",
"version": "0.5.1",
"name": "@abp/docs",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/anchor-js": "^0.5.0",
"@abp/clipboard": "^0.5.0",
"@abp/malihu-custom-scrollbar-plugin": "^0.5.0",
"@abp/popper.js": "^0.5.0",
"@abp/prismjs": "^0.5.0"
"@abp/anchor-js": "^0.5.1",
"@abp/clipboard": "^0.5.1",
"@abp/malihu-custom-scrollbar-plugin": "^0.5.1",
"@abp/popper.js": "^0.5.1",
"@abp/prismjs": "^0.5.1"
},
"gitHead": "2e846ad3e5a8cbe04100484865335fbcd845a342"
}

@ -1,5 +1,5 @@
{
"version": "0.5.0",
"version": "0.5.1",
"name": "@abp/malihu-custom-scrollbar-plugin",
"publishConfig": {
"access": "public"

@ -1,5 +1,5 @@
{
"version": "0.5.0",
"version": "0.5.1",
"name": "@abp/popper.js",
"publishConfig": {
"access": "public"

@ -1,5 +1,5 @@
{
"version": "0.5.0",
"version": "0.5.1",
"name": "@abp/prismjs",
"publishConfig": {
"access": "public"

Loading…
Cancel
Save