Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordizzy <diosmosis@users.noreply.github.com>2021-09-28 12:07:16 +0300
committerGitHub <noreply@github.com>2021-09-28 12:07:16 +0300
commit2ac2bc1aeaf8efce6bb9af92506311da99e1757f (patch)
tree532874be8120221d30307680b2a437cc361d2a70 /node_modules/jquery.scrollto
parent1bc9fdf55352b61c278d298e9935451394230355 (diff)
[Vue] Introduce Vue + Workflow commands (#17940)
* adding vue * adding webpack config + example vue library project * forgot to add base tsconfig.json * Add build command that allows building all plugins + watching for changes. * autodetect umd bundles * initial externals detection * integrate vue CLI * add externals config via vue config * explain regenerator issue * remove ie11 * Build polyfills in separate library. * add command to quickly compute total asset size (minified + gzipped) * output tweak for --exclude-angular * Explicitly disable support for ie11 since Vue 3 does not support it. * rebuild and add option to clear webpack cache to build commands * Add example vue component that compiles w/ vue 3. * get example vue component to display * include tslib via polyfills so it is not compiled in each library * get async component loading to work * some tweaks and tests * Add generate vue component command and run to generate activity indicator template. * switch to using composition api since that is apparently better supported, and get activity indicator adapter to bind data properly * remove vue-class-component npm package * eslint changes * rever tracking JS change * tweak * Remove CoreVue vue dir which was just there for testing. * Update vue.config.js * apply some review feedback * add plugin to compute js asset size command * use local script to build * update changelog and apply review feedback * fix bower component mapping * update expected screenshots * update screenshot * Update and rename 4.5.0-b2.php to 4.6.0-b1.php * Update Version.php * update expected screenshot * updates expected UI test files Co-authored-by: sgiehl <stefan@matomo.org>
Diffstat (limited to 'node_modules/jquery.scrollto')
-rw-r--r--node_modules/jquery.scrollto/changes.txt150
-rw-r--r--node_modules/jquery.scrollto/package.json84
-rw-r--r--node_modules/jquery.scrollto/scrollTo.jquery.json29
3 files changed, 15 insertions, 248 deletions
diff --git a/node_modules/jquery.scrollto/changes.txt b/node_modules/jquery.scrollto/changes.txt
deleted file mode 100644
index a299c7b14f..0000000000
--- a/node_modules/jquery.scrollto/changes.txt
+++ /dev/null
@@ -1,150 +0,0 @@
-1.4.14
-[Misc]
-- Internal both() function will handle nulls correctly
-
-1.4.13
-[Misc]
-- Support for CommonJS / NPM added by durango
-
-1.4.12
-[Fix]
-- Fixed selector matching body fails on window scrolling
-
-1.4.11
-[Misc]
-- Reverted changes from 1.4.10
-
-1.4.10
-[Enhancement]
-- Giving the plugin an AMD module id so it can be required (f.e by localScroll)
-
-1.4.9
-[Enhancement]
-- "offset" setting can now be a function as well (#60)
-
-1.4.8
-[Enhancement]
-- Added support for AMD
-
-1.4.7
-[Misc]
-- Changed spacing
-- Changed licensing to MIT
-- Repo is compliant with official jquery plugins repository
-
-1.4.6
-[Fix]
-- Fixed first argument of onAfter and onAfterFirst was original target and should be "parsed" target
-
-1.4.5
-[Fix]
-- Fixed passing a negative scroll value crashes
-
-1.4.4
-[Change]
-- Re-released as 1.4.4 to avoid issues with bower
-
-1.4.3.1
-[Fix]
-- Fixed $.scrollTo(0) broken on 1.4.3
-
-1.4.3
-[Enhancement]
-- Limit calculations can be disabled by setting the option 'limit' to false.
-- Null target or unmatching selector don't break and fail silently
-[Misc]
-- Removed support for the deprecated setting 'speed'
-[Fix]
-- Removed $.browser.webkit so the plugin works with jQuery +1.8
-
-1.4.2
-[Feature]
-- The plugin support percentages as target ('50%' or {top:'50%', left:'45%'})
-- Exposed the max() calculation as $.scrollTo.max
-[Enhancement]
-- Renamed $.fn.scrollable to $.fn._scrollable to avoid conflicts with other plugins
-[Fix]
-- Fixing max calculations for regular DOM elements
-
-1.4.1
-[Feature]
-- The target can be 'max' to scroll to the end while keeping it elegant.
-[Enhancement]
-- Default duration is 0 for jquery +1.3. Means sync animation
-- The plugin works on all major browsers, on compat & quirks modes, including iframes.
-- In addition to window/document, if html or body are received, the plugin will choose the right one.
-[Fix]
-- The plugin accepts floating numbers, Thanks Ramin
-- Using jQuery.nodeName where neccessary so that this works on xml+xhtml
-- The max() internal function wasn't completely accurrate, now it is 98% (except for IE on quirks mode and it's not too noticeable).
-
-1.4
-[Fix]
-- Fixed the problem when scrolling the window to absolute positioned elements on Safari.
-- Fixed the problem on Opera 9.5 when scrolling the window. That it always scrolls to 0.
-[Feature]
-- Added the settings object as 2nd argument to the onAfter callback.
-- The 3rd argument of scrollTo can be just a function and it's used as the onAfter.
-- Added full support for iframes (even max scroll calculation).
-- Instead of $.scrollTo, $(window).scrollTo() and $(document).scrollTo() can be used.
-- Added $().scrollable() that returns the real element to scroll, f.e: $(window).scrollable() == [body|html], works for iframes.
-[Enhancement]
-- Cleaned the code a bit, specially the comments
-
-1.3.3
-[Change]
-- Changed the licensing from GPL to GPL+MIT.
-
-1.3.2
-[Enhancement]
-- Small improvements to make the code shorter.
-[Change]
-- Removed the last argument received by onAfter as it was the same as the 'this' but jqueryfied.
-
-1.3.1
-[Feature]
-- Exposed $.scrollTo.window() to get the element that needs to be animated, to scroll the window.
-- Added option 'over'.
-[Enhancement]
-- Made the code as short as possible.
-[Change]
-- Changed the arguments received by onAfter
-
-1.3
-[Enhancement]
-- Added semicolon to the start, for safe file concatenation
-- Added a limit check, values below 0 or over the maximum are fixed.
-- Now it should work faster, only one of html or body go through all the processing, instead of both for all browsers.
-[Fix]
-- Fixed the behavior for Opera, which seemed to react to both changes on <html> and <body>.
-- The border is also reduced, when 'margin' is set to true.
-[Change]
-- The option speed has been renamed to duration.
-[Feature]
-- The duration can be specified with a number as 2nd argument, and the rest of the settings as the third ( like $().animate )
-- Remade the demo
-
-1.2.4
-[Enhancement]
-- The target can be in the form of { top:x, left:y } allowing different position for each axis.
-[Feature]
-- The option 'offset' has been added, to scroll behind or past the target. Can be a number(both axes) or { top:x, left:y }.
-
-1.2.3
-[Feature]
-- Exposed the defaults.
-[Enhancement]
-- Made the callback functions receive more parameters.
-
-1.2.2
-[Fix]
-- Fixed a bug, I didn't have to add the scrolled amount if it was body or html.
-
-1.2
-[Change]
-- The option 'onafter' is now called 'onAfter'.
-[Feature]
-- Two axes can be scrolled together, this is set with the option 'axis'.
-- In case 2 axes are chosen, the scrolling can be queued: one scrolls, and then the other.
-- There's an intermediary event, 'onAfterFirst' called in case the axes are queued, after the first ends.
-- If the option 'margin' is set to true, the plugin will take in account, the margin of the target(no use if target is a value). \ No newline at end of file
diff --git a/node_modules/jquery.scrollto/package.json b/node_modules/jquery.scrollto/package.json
index 354d02e6b6..4e43a2a18f 100644
--- a/node_modules/jquery.scrollto/package.json
+++ b/node_modules/jquery.scrollto/package.json
@@ -1,74 +1,20 @@
{
- "_args": [
- [
- "jquery.scrollto@2.1.2",
- "/Users/benakamoorthi/Projects/matomo"
- ]
- ],
- "_from": "jquery.scrollto@2.1.2",
- "_id": "jquery.scrollto@2.1.2",
- "_inBundle": false,
- "_integrity": "sha1-51gNnHrEbvW7JTGUg/b0VxP9fGw=",
- "_location": "/jquery.scrollto",
- "_phantomChildren": {},
- "_requested": {
- "type": "version",
- "registry": true,
- "raw": "jquery.scrollto@2.1.2",
- "name": "jquery.scrollto",
- "escapedName": "jquery.scrollto",
- "rawSpec": "2.1.2",
- "saveSpec": null,
- "fetchSpec": "2.1.2"
- },
- "_requiredBy": [
- "/"
- ],
- "_resolved": "https://registry.npmjs.org/jquery.scrollto/-/jquery.scrollto-2.1.2.tgz",
- "_spec": "2.1.2",
- "_where": "/Users/benakamoorthi/Projects/matomo",
- "author": {
- "name": "Ariel Flesler",
- "url": "http://flesler.blogspot.com/"
- },
- "bugs": {
- "url": "https://github.com/flesler/jquery.scrollTo/issues"
- },
- "demo": "http://demos.flesler.com/jquery/scrollTo/",
- "dependencies": {
- "jquery": ">=1.8"
- },
+ "name": "jquery.scrollto",
+ "version": "2.1.2",
"description": "Lightweight, cross-browser and highly customizable animated scrolling with jQuery",
+ "main": "jquery.scrollTo.js",
+ "license": "MIT",
+ "ignore": ["**/.*","demo","tests","CHANGELOG","README.md","composer.json","bower.json"],
+ "dependencies": { "jquery": ">=1.8" },
+ "homepage": "https://github.com/flesler/jquery.scrollTo/",
"docs": "https://github.com/flesler/jquery.scrollTo/",
+ "demo": "http://demos.flesler.com/jquery/scrollTo/",
+ "bugs": "https://github.com/flesler/jquery.scrollTo/issues",
"download": "https://github.com/flesler/jquery.scrollTo/releases",
- "homepage": "https://github.com/flesler/jquery.scrollTo/",
- "ignore": [
- "**/.*",
- "demo",
- "tests",
- "CHANGELOG",
- "README.md",
- "composer.json",
- "bower.json"
- ],
- "keywords": [
- "browser",
- "animated",
- "animation",
- "scrolling",
- "scroll",
- "links",
- "anchors",
- "jquery",
- "jquery-plugin",
- "ecosystem:jquery"
- ],
- "license": "MIT",
- "main": "jquery.scrollTo.js",
- "name": "jquery.scrollto",
- "repository": {
- "type": "git",
- "url": "git://github.com/flesler/jquery.scrollTo.git"
- },
- "version": "2.1.2"
+ "repository": "git://github.com/flesler/jquery.scrollTo",
+ "keywords": ["browser","animated","animation","scrolling","scroll","links","anchors","jquery","jquery-plugin", "ecosystem:jquery"],
+ "author": {
+ "name": "Ariel Flesler",
+ "web": "http://flesler.blogspot.com/"
+ }
}
diff --git a/node_modules/jquery.scrollto/scrollTo.jquery.json b/node_modules/jquery.scrollto/scrollTo.jquery.json
deleted file mode 100644
index 7e51c080d4..0000000000
--- a/node_modules/jquery.scrollto/scrollTo.jquery.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "name": "scrollTo",
- "title": "Ariel Flesler's jQuery scrollTo",
- "description": "Easy element scrolling using jQuery.",
- "keywords": ["browser", "animated", "animation", "scrolling", "scroll", "links", "anchors"],
- "version": "1.4.14",
- "author": {
- "name": "Ariel Flesler",
- "email": "aflesler@gmail.com",
- "url": "http://flesler.blogspot.com"
- },
- "maintainers": [{
- "name": "Ariel Flesler",
- "email": "aflesler@gmail.com",
- "url": "http://flesler.blogspot.com"
- }],
- "licenses": [{
- "type": "MIT",
- "url": "https://github.com/flesler/jquery.scrollTo/blob/master/LICENSE"
- }],
- "homepage": "https://github.com/flesler/jquery.scrollTo",
- "docs": "http://flesler.blogspot.com/2007/10/jqueryscrollto.html",
- "bugs": "https://github.com/flesler/jquery.scrollTo/issues",
- "download": "https://github.com/flesler/jquery.scrollTo/releases",
- "demo": "http://demos.flesler.com/jquery/scrollTo",
- "dependencies": {
- "jquery": ">=1.4"
- }
-} \ No newline at end of file